summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/linux.yml50
-rw-r--r--.github/workflows/mac.yml30
-rw-r--r--.github/workflows/windows.yml24
-rw-r--r--.gitignore1
-rw-r--r--include/assets/ast_7_ti_1.h355
-rw-r--r--include/assets/ast_7_ti_2.h81
-rw-r--r--include/assets/ast_8_ti.h123
-rw-r--r--include/assets/ast_9_ti.h79
-rw-r--r--include/assets/ast_A_ti.h57
-rw-r--r--include/assets/ast_allies.h109
-rw-r--r--include/assets/ast_andross.h452
-rw-r--r--include/assets/ast_aquas.h1058
-rw-r--r--include/assets/ast_area_6.h392
-rw-r--r--include/assets/ast_arwing.h373
-rw-r--r--include/assets/ast_audio.h8870
-rw-r--r--include/assets/ast_bg_planet.h125
-rw-r--r--include/assets/ast_bg_space.h89
-rw-r--r--include/assets/ast_blue_marine.h113
-rw-r--r--include/assets/ast_bolse.h286
-rw-r--r--include/assets/ast_common.h881
-rw-r--r--include/assets/ast_corneria.h964
-rw-r--r--include/assets/ast_ending.h241
-rw-r--r--include/assets/ast_ending_award_back.h7
-rw-r--r--include/assets/ast_ending_award_front.h7
-rw-r--r--include/assets/ast_ending_expert.h9
-rw-r--r--include/assets/ast_enmy_planet.h205
-rw-r--r--include/assets/ast_enmy_space.h271
-rw-r--r--include/assets/ast_font_3d.h271
-rw-r--r--include/assets/ast_fortuna.h185
-rw-r--r--include/assets/ast_great_fox.h191
-rw-r--r--include/assets/ast_katina.h299
-rw-r--r--include/assets/ast_landmaster.h109
-rw-r--r--include/assets/ast_logo.h7
-rw-r--r--include/assets/ast_macbeth.h1406
-rw-r--r--include/assets/ast_map.h435
-rw-r--r--include/assets/ast_meteo.h498
-rw-r--r--include/assets/ast_option.h137
-rw-r--r--include/assets/ast_radio.h1637
-rw-r--r--include/assets/ast_sector_x.h600
-rw-r--r--include/assets/ast_sector_y.h647
-rw-r--r--include/assets/ast_sector_z.h160
-rw-r--r--include/assets/ast_solar.h286
-rw-r--r--include/assets/ast_star_wolf.h115
-rw-r--r--include/assets/ast_text.h213
-rw-r--r--include/assets/ast_titania.h144
-rw-r--r--include/assets/ast_title.h761
-rw-r--r--include/assets/ast_training.h84
-rw-r--r--include/assets/ast_ve1_boss.h551
-rw-r--r--include/assets/ast_venom_1.h160
-rw-r--r--include/assets/ast_venom_2.h355
-rw-r--r--include/assets/ast_versus.h1050
-rw-r--r--include/assets/ast_vs_menu.h139
-rw-r--r--include/assets/ast_warp_zone.h55
-rw-r--r--include/assets/ast_zoness.h808
-rw-r--r--include/assets/rcp_setup.h176
55 files changed, 26730 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
new file mode 100644
index 00000000..8e667c64
--- /dev/null
+++ b/.github/workflows/linux.yml
@@ -0,0 +1,50 @@
+name: Linux Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Install dependencies
+ run: sudo apt-get install gcc g++ git cmake ninja-build lsb-release libsdl2-dev libpng-dev libsdl2-net-dev libzip-dev zipcmp zipmerge ziptool nlohmann-json3-dev libtinyxml2-dev libspdlog-dev libboost-dev libopengl-dev
+ - name: Install latest SDL
+ run: |
+ export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
+ wget https://www.libsdl.org/release/SDL2-2.24.1.tar.gz
+ tar -xzf SDL2-2.24.1.tar.gz
+ cd SDL2-2.24.1
+ ./configure
+ make -j 10
+ sudo make install
+ - name: Install latest tinyxml2
+ run: |
+ export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
+ wget https://github.com/leethomason/tinyxml2/archive/refs/tags/10.0.0.tar.gz
+ tar -xzf 10.0.0.tar.gz
+ cd tinyxml2-10.0.0
+ mkdir build
+ cd build
+ cmake ..
+ make
+ sudo make install
+ - name: Build
+ run: |
+ cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
+ cmake --build build-cmake -j
+ - name: Create Package
+ run: |
+ mkdir starship-release
+ mv build-cmake/UltraViewer starship-release/
+ - name: Publish packaged artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: starship-linux-x64
+ path: starship-release \ No newline at end of file
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml
new file mode 100644
index 00000000..8ba4827d
--- /dev/null
+++ b/.github/workflows/mac.yml
@@ -0,0 +1,30 @@
+name: Macos Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: macOS-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Install dependencies
+ run: brew install sdl2 libpng glew ninja cmake libzip nlohmann-json tinyxml2 spdlog
+ - name: Build
+ run: |
+ cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Release
+ cmake --build build-cmake -j
+ - name: Create Package
+ run: |
+ mkdir starship-release
+ mv build-cmake/UltraViewer starship-release/
+ - name: Publish packaged artifacts
+ uses: actions/upload-artifact@v4
+ with:
+ name: starship-mac-x64
+ path: starship-release \ No newline at end of file
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 00000000..d339fb27
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,24 @@
+name: Windows Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: windows-2022
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ submodules: recursive
+ - name: Build
+ run: |
+ cmake -S . -B "build/x64" -G "Visual Studio 17 2022" -T v143 -A x64 -DCMAKE_BUILD_TYPE=Release
+ cmake --build ./build/x64
+ - name: Upload build
+ uses: actions/upload-artifact@v4
+ with:
+ name: starship-windows
+ path: ./build/x64/Debug \ No newline at end of file
diff --git a/.gitignore b/.gitignore
index d8a373e1..197cd865 100644
--- a/.gitignore
+++ b/.gitignore
@@ -20,7 +20,6 @@ ctx.c.m2c
assets/yaml/us/ast_test.yaml
/audio_data
src/assets/*
-include/assets/*
/build
build-new/
tools/mio0
diff --git a/include/assets/ast_7_ti_1.h b/include/assets/ast_7_ti_1.h
new file mode 100644
index 00000000..3bf3c0dc
--- /dev/null
+++ b/include/assets/ast_7_ti_1.h
@@ -0,0 +1,355 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_AST_7_TI_1_7000000[] = "__OTR__ast_7_ti_1/D_AST_7_TI_1_7000000";
+
+static const ALIGN_ASSET(2) char D_TI1_7000A80[] = "__OTR__ast_7_ti_1/D_TI1_7000A80";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B88[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B88";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C88[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C88";
+
+static const ALIGN_ASSET(2) char D_TI1_7000D08[] = "__OTR__ast_7_ti_1/D_TI1_7000D08";
+
+static const ALIGN_ASSET(2) char D_TI1_7001108[] = "__OTR__ast_7_ti_1/D_TI1_7001108";
+
+static const ALIGN_ASSET(2) char D_TI1_7001268[] = "__OTR__ast_7_ti_1/D_TI1_7001268";
+
+static const ALIGN_ASSET(2) char D_TI1_7002270[] = "__OTR__ast_7_ti_1/D_TI1_7002270";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2330[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2330";
+
+static const ALIGN_ASSET(2) char D_TI1_7002490[] = "__OTR__ast_7_ti_1/D_TI1_7002490";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_25A0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_25A0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2620[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2620";
+
+static const ALIGN_ASSET(2) char D_TI1_7002730[] = "__OTR__ast_7_ti_1/D_TI1_7002730";
+
+static const ALIGN_ASSET(2) char D_TI1_7002930[] = "__OTR__ast_7_ti_1/D_TI1_7002930";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2AB8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2AB8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2AF8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2AF8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2B58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2B58";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_2BD8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_2BD8";
+
+static const ALIGN_ASSET(2) char D_TI1_7002C88[] = "__OTR__ast_7_ti_1/D_TI1_7002C88";
+
+static const ALIGN_ASSET(2) char D_TI1_7003488[] = "__OTR__ast_7_ti_1/D_TI1_7003488";
+
+static const ALIGN_ASSET(2) char D_TI1_7003888[] = "__OTR__ast_7_ti_1/D_TI1_7003888";
+
+static const ALIGN_ASSET(2) char D_TI1_7003A90[] = "__OTR__ast_7_ti_1/D_TI1_7003A90";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3B30[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3B30";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3BE0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3BE0";
+
+static const ALIGN_ASSET(2) char D_TI1_7003C50[] = "__OTR__ast_7_ti_1/D_TI1_7003C50";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3D10[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3D10";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3DB0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3DB0";
+
+static const ALIGN_ASSET(2) char D_TI1_7003E30[] = "__OTR__ast_7_ti_1/D_TI1_7003E30";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3EE8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3EE8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_3F28[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_3F28";
+
+static const ALIGN_ASSET(2) char D_TI1_7003FC0[] = "__OTR__ast_7_ti_1/D_TI1_7003FC0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4060[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4060";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4100[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4100";
+
+static const ALIGN_ASSET(2) char D_TI1_7004170[] = "__OTR__ast_7_ti_1/D_TI1_7004170";
+
+static const ALIGN_ASSET(2) char D_TI1_7004370[] = "__OTR__ast_7_ti_1/D_TI1_7004370";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4430[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4430";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_44D0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_44D0";
+
+static const ALIGN_ASSET(2) char D_TI1_7004560[] = "__OTR__ast_7_ti_1/D_TI1_7004560";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4658[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4658";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_46B8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_46B8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_46E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_46E8";
+
+static const ALIGN_ASSET(2) char D_TI1_7004780[] = "__OTR__ast_7_ti_1/D_TI1_7004780";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4870[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4870";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_48F0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_48F0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4960[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4960";
+
+static const ALIGN_ASSET(2) char D_TI1_70049A0[] = "__OTR__ast_7_ti_1/D_TI1_70049A0";
+
+static const ALIGN_ASSET(2) char D_TI1_7004BA0[] = "__OTR__ast_7_ti_1/D_TI1_7004BA0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4CC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4CC8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4D68[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4D68";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4D98[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4D98";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_4DC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_4DC8";
+
+static const ALIGN_ASSET(2) char D_TI1_7004E78[] = "__OTR__ast_7_ti_1/D_TI1_7004E78";
+
+static const ALIGN_ASSET(2) char D_TI1_7005078[] = "__OTR__ast_7_ti_1/D_TI1_7005078";
+
+static const ALIGN_ASSET(2) char D_TI1_7005280[] = "__OTR__ast_7_ti_1/D_TI1_7005280";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5338[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5338";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5378[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5378";
+
+static const ALIGN_ASSET(2) char D_TI1_7005420[] = "__OTR__ast_7_ti_1/D_TI1_7005420";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5518[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5518";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_5578[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_5578";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_55A8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_55A8";
+
+static const ALIGN_ASSET(2) char D_TI1_70067C4[] = "__OTR__ast_7_ti_1/D_TI1_70067C4";
+
+static const ALIGN_ASSET(2) char aTi1DesertCrawlerSkel[] = "__OTR__ast_7_ti_1/aTi1DesertCrawlerSkel";
+
+static const ALIGN_ASSET(2) char D_TI1_7006F74[] = "__OTR__ast_7_ti_1/D_TI1_7006F74";
+
+static const ALIGN_ASSET(2) char D_TI1_7007130[] = "__OTR__ast_7_ti_1/D_TI1_7007130";
+
+static const ALIGN_ASSET(2) char D_TI1_7007234[] = "__OTR__ast_7_ti_1/D_TI1_7007234";
+
+static const ALIGN_ASSET(2) char D_TI1_700733C[] = "__OTR__ast_7_ti_1/D_TI1_700733C";
+
+static const ALIGN_ASSET(2) char D_TI1_7007350[] = "__OTR__ast_7_ti_1/D_TI1_7007350";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7580[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7580";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7770[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7770";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7950[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7950";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7980[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7980";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_7A60[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_7A60";
+
+static const ALIGN_ASSET(2) char D_TI1_7007AB0[] = "__OTR__ast_7_ti_1/D_TI1_7007AB0";
+
+static const ALIGN_ASSET(2) char D_TI1_7007EB0[] = "__OTR__ast_7_ti_1/D_TI1_7007EB0";
+
+static const ALIGN_ASSET(2) char D_TI1_7008090[] = "__OTR__ast_7_ti_1/D_TI1_7008090";
+
+static const ALIGN_ASSET(2) char D_TI1_7008490[] = "__OTR__ast_7_ti_1/D_TI1_7008490";
+
+static const ALIGN_ASSET(2) char D_TI1_7008680[] = "__OTR__ast_7_ti_1/D_TI1_7008680";
+
+static const ALIGN_ASSET(2) char D_TI1_7008780[] = "__OTR__ast_7_ti_1/D_TI1_7008780";
+
+static const ALIGN_ASSET(2) char D_TI1_7008930[] = "__OTR__ast_7_ti_1/D_TI1_7008930";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8AA0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8AA0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8AE0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8AE0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8B70[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8B70";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8BC0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8BC0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_8C60[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_8C60";
+
+static const ALIGN_ASSET(2) char D_TI1_7008D10[] = "__OTR__ast_7_ti_1/D_TI1_7008D10";
+
+static const ALIGN_ASSET(2) char D_TI1_7008F10[] = "__OTR__ast_7_ti_1/D_TI1_7008F10";
+
+static const ALIGN_ASSET(2) char D_TI1_7009110[] = "__OTR__ast_7_ti_1/D_TI1_7009110";
+
+static const ALIGN_ASSET(2) char D_TI1_7009310[] = "__OTR__ast_7_ti_1/D_TI1_7009310";
+
+static const ALIGN_ASSET(2) char D_TI1_7009510[] = "__OTR__ast_7_ti_1/D_TI1_7009510";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9588[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9588";
+
+static const ALIGN_ASSET(2) char D_TI1_70096D8[] = "__OTR__ast_7_ti_1/D_TI1_70096D8";
+
+static const ALIGN_ASSET(2) char aTiDelphorDL[] = "__OTR__ast_7_ti_1/aTiDelphorDL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_99F8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_99F8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9A58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9A58";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9A98[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9A98";
+
+static const ALIGN_ASSET(2) char D_TI1_7009B58[] = "__OTR__ast_7_ti_1/D_TI1_7009B58";
+
+static const ALIGN_ASSET(2) char aTi1Bomb1DL[] = "__OTR__ast_7_ti_1/aTi1Bomb1DL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9F00[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9F00";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_9FC0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_9FC0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_A0E0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_A0E0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_A160[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_A160";
+
+static const ALIGN_ASSET(2) char D_TI1_700A190[] = "__OTR__ast_7_ti_1/D_TI1_700A190";
+
+static const ALIGN_ASSET(2) char aTi1Bomb2DL[] = "__OTR__ast_7_ti_1/aTi1Bomb2DL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_AA38[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_AA38";
+
+static const ALIGN_ASSET(2) char D_TI1_700AAD8[] = "__OTR__ast_7_ti_1/D_TI1_700AAD8";
+
+static const ALIGN_ASSET(2) char D_TI1_700AB58[] = "__OTR__ast_7_ti_1/D_TI1_700AB58";
+
+static const ALIGN_ASSET(2) char aTi1LandmineDL[] = "__OTR__ast_7_ti_1/aTi1LandmineDL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_ACA8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_ACA8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_ADC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_ADC8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_AE58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_AE58";
+
+static const ALIGN_ASSET(2) char D_TI1_700AEA8[] = "__OTR__ast_7_ti_1/D_TI1_700AEA8";
+
+static const ALIGN_ASSET(2) char D_TI1_700AF30[] = "__OTR__ast_7_ti_1/D_TI1_700AF30";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B158[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B158";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B188[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B188";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B1B8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B1B8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B258[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B258";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B418[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B418";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B458[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B458";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_B538[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_B538";
+
+static const ALIGN_ASSET(2) char D_TI1_700B5B8[] = "__OTR__ast_7_ti_1/D_TI1_700B5B8";
+
+static const ALIGN_ASSET(2) char D_TI1_700B7B8[] = "__OTR__ast_7_ti_1/D_TI1_700B7B8";
+
+static const ALIGN_ASSET(2) char aTi1FekudaGun1DL[] = "__OTR__ast_7_ti_1/aTi1FekudaGun1DL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BA70[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BA70";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BAC0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BAC0";
+
+static const ALIGN_ASSET(2) char D_TI1_700BB10[] = "__OTR__ast_7_ti_1/D_TI1_700BB10";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BC38[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BC38";
+
+static const ALIGN_ASSET(2) char aTiBridgeDL[] = "__OTR__ast_7_ti_1/aTiBridgeDL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_BEB0[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_BEB0";
+
+static const ALIGN_ASSET(2) char D_TI1_700BFB0[] = "__OTR__ast_7_ti_1/D_TI1_700BFB0";
+
+static const ALIGN_ASSET(2) char D_TI1_700C3B0[] = "__OTR__ast_7_ti_1/D_TI1_700C3B0";
+
+static const ALIGN_ASSET(2) char aTi1FekudaDL[] = "__OTR__ast_7_ti_1/aTi1FekudaDL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C5E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C5E8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C6B8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C6B8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C748[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C748";
+
+static const ALIGN_ASSET(2) char aTi1DesertRoverAnim[] = "__OTR__ast_7_ti_1/aTi1DesertRoverAnim";
+
+static const ALIGN_ASSET(2) char aTi1DesertRoverSkel[] = "__OTR__ast_7_ti_1/aTi1DesertRoverSkel";
+
+static const ALIGN_ASSET(2) char aTi1FekudaGun2DL[] = "__OTR__ast_7_ti_1/aTi1FekudaGun2DL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_C9E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_C9E8";
+
+static const ALIGN_ASSET(2) char aTiBomberAnim[] = "__OTR__ast_7_ti_1/aTiBomberAnim";
+
+static const ALIGN_ASSET(2) char aTiBomberSkel[] = "__OTR__ast_7_ti_1/aTiBomberSkel";
+
+static const ALIGN_ASSET(2) char aTiRascoAnim[] = "__OTR__ast_7_ti_1/aTiRascoAnim";
+
+static const ALIGN_ASSET(2) char aTiRascoSkel[] = "__OTR__ast_7_ti_1/aTiRascoSkel";
+
+static const ALIGN_ASSET(2) char D_TI1_700D740[] = "__OTR__ast_7_ti_1/D_TI1_700D740";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D7D8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D7D8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D818[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D818";
+
+static const ALIGN_ASSET(2) char D_TI1_700D880[] = "__OTR__ast_7_ti_1/D_TI1_700D880";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D928[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D928";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_D968[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_D968";
+
+static const ALIGN_ASSET(2) char D_TI1_700D9B0[] = "__OTR__ast_7_ti_1/D_TI1_700D9B0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DA18[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DA18";
+
+static const ALIGN_ASSET(2) char D_TI1_700DAD0[] = "__OTR__ast_7_ti_1/D_TI1_700DAD0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DB38[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DB38";
+
+static const ALIGN_ASSET(2) char D_TI1_700DBB0[] = "__OTR__ast_7_ti_1/D_TI1_700DBB0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DC10[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DC10";
+
+static const ALIGN_ASSET(2) char D_TI1_700DC50[] = "__OTR__ast_7_ti_1/D_TI1_700DC50";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DCB8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DCB8";
+
+static const ALIGN_ASSET(2) char D_TI1_700DD68[] = "__OTR__ast_7_ti_1/D_TI1_700DD68";
+
+static const ALIGN_ASSET(2) char D_TI1_700DDF0[] = "__OTR__ast_7_ti_1/D_TI1_700DDF0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DE58[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DE58";
+
+static const ALIGN_ASSET(2) char D_TI1_700DED0[] = "__OTR__ast_7_ti_1/D_TI1_700DED0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DF30[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DF30";
+
+static const ALIGN_ASSET(2) char D_TI1_700DF70[] = "__OTR__ast_7_ti_1/D_TI1_700DF70";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_DFC8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_DFC8";
+
+static const ALIGN_ASSET(2) char D_TI1_700E030[] = "__OTR__ast_7_ti_1/D_TI1_700E030";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E118[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E118";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E148[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E148";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E198[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E198";
+
+static const ALIGN_ASSET(2) char D_TI1_700E1E8[] = "__OTR__ast_7_ti_1/D_TI1_700E1E8";
+
+static const ALIGN_ASSET(2) char aTiBoulderDL[] = "__OTR__ast_7_ti_1/aTiBoulderDL";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E4E8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E4E8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_E6D8[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_E6D8";
+
+static const ALIGN_ASSET(2) char D_TI1_700E858[] = "__OTR__ast_7_ti_1/D_TI1_700E858";
+
+static const ALIGN_ASSET(2) char D_TI1_700EA60[] = "__OTR__ast_7_ti_1/D_TI1_700EA60";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_EB50[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_EB50";
+
+static const ALIGN_ASSET(2) char ast_7_ti_1_seg7_vtx_ED50[] = "__OTR__ast_7_ti_1/ast_7_ti_1_seg7_vtx_ED50";
+
diff --git a/include/assets/ast_7_ti_2.h b/include/assets/ast_7_ti_2.h
new file mode 100644
index 00000000..12f4513a
--- /dev/null
+++ b/include/assets/ast_7_ti_2.h
@@ -0,0 +1,81 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_TI2_7003EE8[] = "__OTR__ast_7_ti_2/D_TI2_7003EE8";
+
+static const ALIGN_ASSET(2) char D_TI2_7003F00[] = "__OTR__ast_7_ti_2/D_TI2_7003F00";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_40D8[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_40D8";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4138[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4138";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_41C8[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_41C8";
+
+static const ALIGN_ASSET(2) char D_TI2_7004270[] = "__OTR__ast_7_ti_2/D_TI2_7004270";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4328[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4328";
+
+static const ALIGN_ASSET(2) char D_TI2_7004400[] = "__OTR__ast_7_ti_2/D_TI2_7004400";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4520[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4520";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4570[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4570";
+
+static const ALIGN_ASSET(2) char D_TI2_70045D0[] = "__OTR__ast_7_ti_2/D_TI2_70045D0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4700[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4700";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4770[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4770";
+
+static const ALIGN_ASSET(2) char D_TI2_70047B0[] = "__OTR__ast_7_ti_2/D_TI2_70047B0";
+
+static const ALIGN_ASSET(2) char D_TI2_70048B0[] = "__OTR__ast_7_ti_2/D_TI2_70048B0";
+
+static const ALIGN_ASSET(2) char D_TI2_70049C0[] = "__OTR__ast_7_ti_2/D_TI2_70049C0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_4A60[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_4A60";
+
+static const ALIGN_ASSET(2) char D_TI2_7004AB0[] = "__OTR__ast_7_ti_2/D_TI2_7004AB0";
+
+static const ALIGN_ASSET(2) char D_TI2_7004CB0[] = "__OTR__ast_7_ti_2/D_TI2_7004CB0";
+
+static const ALIGN_ASSET(2) char D_TI2_7004E80[] = "__OTR__ast_7_ti_2/D_TI2_7004E80";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_50D0[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_50D0";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5140[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5140";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5180[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5180";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5210[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5210";
+
+static const ALIGN_ASSET(2) char D_TI2_7005300[] = "__OTR__ast_7_ti_2/D_TI2_7005300";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_5370[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_5370";
+
+static const ALIGN_ASSET(2) char D_TI2_70054C0[] = "__OTR__ast_7_ti_2/D_TI2_70054C0";
+
+static const ALIGN_ASSET(2) char D_TI2_70084CC[] = "__OTR__ast_7_ti_2/D_TI2_70084CC";
+
+static const ALIGN_ASSET(2) char D_TI2_70096EC[] = "__OTR__ast_7_ti_2/D_TI2_70096EC";
+
+static const ALIGN_ASSET(2) char D_TI2_7009700[] = "__OTR__ast_7_ti_2/D_TI2_7009700";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_97B0[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_97B0";
+
+static const ALIGN_ASSET(2) char D_TI2_7009890[] = "__OTR__ast_7_ti_2/D_TI2_7009890";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_9958[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_9958";
+
+static const ALIGN_ASSET(2) char D_TI2_7009A80[] = "__OTR__ast_7_ti_2/D_TI2_7009A80";
+
+static const ALIGN_ASSET(2) char ast_7_ti_2_seg7_vtx_9B18[] = "__OTR__ast_7_ti_2/ast_7_ti_2_seg7_vtx_9B18";
+
+static const ALIGN_ASSET(2) char D_TI2_7009B48[] = "__OTR__ast_7_ti_2/D_TI2_7009B48";
+
+static const ALIGN_ASSET(2) char D_TI2_7009D48[] = "__OTR__ast_7_ti_2/D_TI2_7009D48";
+
+static const ALIGN_ASSET(2) char D_TI2_700E244[] = "__OTR__ast_7_ti_2/D_TI2_700E244";
+
diff --git a/include/assets/ast_8_ti.h b/include/assets/ast_8_ti.h
new file mode 100644
index 00000000..ad920cd0
--- /dev/null
+++ b/include/assets/ast_8_ti.h
@@ -0,0 +1,123 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_TI_8000708[] = "__OTR__ast_8_ti/D_TI_8000708";
+
+static const ALIGN_ASSET(2) char D_TI_8000D80[] = "__OTR__ast_8_ti/D_TI_8000D80";
+
+static const ALIGN_ASSET(2) char D_TI_8000D90[] = "__OTR__ast_8_ti/D_TI_8000D90";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_E50[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_E50";
+
+static const ALIGN_ASSET(2) char D_TI_8000FC0[] = "__OTR__ast_8_ti/D_TI_8000FC0";
+
+static const ALIGN_ASSET(2) char D_TI_80011C0[] = "__OTR__ast_8_ti/D_TI_80011C0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1278[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1278";
+
+static const ALIGN_ASSET(2) char D_TI_80012E8[] = "__OTR__ast_8_ti/D_TI_80012E8";
+
+static const ALIGN_ASSET(2) char D_TI_80013E8[] = "__OTR__ast_8_ti/D_TI_80013E8";
+
+static const ALIGN_ASSET(2) char D_TI_80014A0[] = "__OTR__ast_8_ti/D_TI_80014A0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1558[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1558";
+
+static const ALIGN_ASSET(2) char D_TI_8001630[] = "__OTR__ast_8_ti/D_TI_8001630";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1770[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1770";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1830[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1830";
+
+static const ALIGN_ASSET(2) char D_TI_80018D0[] = "__OTR__ast_8_ti/D_TI_80018D0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_19F0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_19F0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1A30[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1A30";
+
+static const ALIGN_ASSET(2) char D_TI_8001A80[] = "__OTR__ast_8_ti/D_TI_8001A80";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1BC0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1BC0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1C50[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1C50";
+
+static const ALIGN_ASSET(2) char D_TI_8001D20[] = "__OTR__ast_8_ti/D_TI_8001D20";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1DB8[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1DB8";
+
+static const ALIGN_ASSET(2) char D_TI_8001E20[] = "__OTR__ast_8_ti/D_TI_8001E20";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_1EF0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_1EF0";
+
+static const ALIGN_ASSET(2) char D_TI_8001FB0[] = "__OTR__ast_8_ti/D_TI_8001FB0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2058[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2058";
+
+static const ALIGN_ASSET(2) char D_TI_80020D0[] = "__OTR__ast_8_ti/D_TI_80020D0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2210[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2210";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_22E0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_22E0";
+
+static const ALIGN_ASSET(2) char D_TI_8002360[] = "__OTR__ast_8_ti/D_TI_8002360";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_25F8[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_25F8";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2658[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2658";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2688[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2688";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_26D8[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_26D8";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_2788[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_2788";
+
+static const ALIGN_ASSET(2) char D_TI_8002858[] = "__OTR__ast_8_ti/D_TI_8002858";
+
+static const ALIGN_ASSET(2) char D_TI_8002C58[] = "__OTR__ast_8_ti/D_TI_8002C58";
+
+static const ALIGN_ASSET(2) char D_TI_8002E48[] = "__OTR__ast_8_ti/D_TI_8002E48";
+
+static const ALIGN_ASSET(2) char D_TI_8002F48[] = "__OTR__ast_8_ti/D_TI_8002F48";
+
+static const ALIGN_ASSET(2) char D_TI_80030F8[] = "__OTR__ast_8_ti/D_TI_80030F8";
+
+static const ALIGN_ASSET(2) char D_TI_80031F8[] = "__OTR__ast_8_ti/D_TI_80031F8";
+
+static const ALIGN_ASSET(2) char D_TI_8003378[] = "__OTR__ast_8_ti/D_TI_8003378";
+
+static const ALIGN_ASSET(2) char D_TI_8003478[] = "__OTR__ast_8_ti/D_TI_8003478";
+
+static const ALIGN_ASSET(2) char D_TI_80034A8[] = "__OTR__ast_8_ti/D_TI_80034A8";
+
+static const ALIGN_ASSET(2) char D_TI_80035A8[] = "__OTR__ast_8_ti/D_TI_80035A8";
+
+static const ALIGN_ASSET(2) char D_TI_8003640[] = "__OTR__ast_8_ti/D_TI_8003640";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3A00[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3A00";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3B30[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3B30";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3BA0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3BA0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3C20[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3C20";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3CF0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3CF0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_3EF0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_3EF0";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_40D0[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_40D0";
+
+static const ALIGN_ASSET(2) char D_TI_8004200[] = "__OTR__ast_8_ti/D_TI_8004200";
+
+static const ALIGN_ASSET(2) char D_TI_8004600[] = "__OTR__ast_8_ti/D_TI_8004600";
+
+static const ALIGN_ASSET(2) char D_TI_8008FE8[] = "__OTR__ast_8_ti/D_TI_8008FE8";
+
+static const ALIGN_ASSET(2) char D_TI_8009000[] = "__OTR__ast_8_ti/D_TI_8009000";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_9130[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_9130";
+
+static const ALIGN_ASSET(2) char ast_8_ti_seg8_vtx_9190[] = "__OTR__ast_8_ti/ast_8_ti_seg8_vtx_9190";
+
diff --git a/include/assets/ast_9_ti.h b/include/assets/ast_9_ti.h
new file mode 100644
index 00000000..2faab4f5
--- /dev/null
+++ b/include/assets/ast_9_ti.h
@@ -0,0 +1,79 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_TI_9004288[] = "__OTR__ast_9_ti/D_TI_9004288";
+
+static const ALIGN_ASSET(2) char D_TI_90042A0[] = "__OTR__ast_9_ti/D_TI_90042A0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4348[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4348";
+
+static const ALIGN_ASSET(2) char D_TI_90043D0[] = "__OTR__ast_9_ti/D_TI_90043D0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4470[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4470";
+
+static const ALIGN_ASSET(2) char D_TI_90044E0[] = "__OTR__ast_9_ti/D_TI_90044E0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4580[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4580";
+
+static const ALIGN_ASSET(2) char D_TI_90045F0[] = "__OTR__ast_9_ti/D_TI_90045F0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4718[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4718";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_4778[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_4778";
+
+static const ALIGN_ASSET(2) char D_TI_9004858[] = "__OTR__ast_9_ti/D_TI_9004858";
+
+static const ALIGN_ASSET(2) char D_TI_9004958[] = "__OTR__ast_9_ti/D_TI_9004958";
+
+static const ALIGN_ASSET(2) char D_TI_9004A68[] = "__OTR__ast_9_ti/D_TI_9004A68";
+
+static const ALIGN_ASSET(2) char D_TI_9004E68[] = "__OTR__ast_9_ti/D_TI_9004E68";
+
+static const ALIGN_ASSET(2) char D_TI_9005040[] = "__OTR__ast_9_ti/D_TI_9005040";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_50E8[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_50E8";
+
+static const ALIGN_ASSET(2) char D_TI_90051C0[] = "__OTR__ast_9_ti/D_TI_90051C0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_52F0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_52F0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_53B0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_53B0";
+
+static const ALIGN_ASSET(2) char D_TI_9005450[] = "__OTR__ast_9_ti/D_TI_9005450";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_5570[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_5570";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_55B0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_55B0";
+
+static const ALIGN_ASSET(2) char D_TI_9005600[] = "__OTR__ast_9_ti/D_TI_9005600";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_5740[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_5740";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_57D0[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_57D0";
+
+static const ALIGN_ASSET(2) char D_TI_90058A0[] = "__OTR__ast_9_ti/D_TI_90058A0";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_5948[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_5948";
+
+static const ALIGN_ASSET(2) char D_TI_90059B8[] = "__OTR__ast_9_ti/D_TI_90059B8";
+
+static const ALIGN_ASSET(2) char D_TI_9005AB8[] = "__OTR__ast_9_ti/D_TI_9005AB8";
+
+static const ALIGN_ASSET(2) char D_TI_900FC4C[] = "__OTR__ast_9_ti/D_TI_900FC4C";
+
+static const ALIGN_ASSET(2) char D_TI_900FC60[] = "__OTR__ast_9_ti/D_TI_900FC60";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_FD00[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_FD00";
+
+static const ALIGN_ASSET(2) char D_TI_900FD70[] = "__OTR__ast_9_ti/D_TI_900FD70";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_FE10[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_FE10";
+
+static const ALIGN_ASSET(2) char D_TI_900FE80[] = "__OTR__ast_9_ti/D_TI_900FE80";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_FFC8[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_FFC8";
+
+static const ALIGN_ASSET(2) char ast_9_ti_seg9_vtx_10078[] = "__OTR__ast_9_ti/ast_9_ti_seg9_vtx_10078";
+
diff --git a/include/assets/ast_A_ti.h b/include/assets/ast_A_ti.h
new file mode 100644
index 00000000..89d241da
--- /dev/null
+++ b/include/assets/ast_A_ti.h
@@ -0,0 +1,57 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_TI_A000000[] = "__OTR__ast_A_ti/D_TI_A000000";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_98[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_98";
+
+static const ALIGN_ASSET(2) char D_TI_A0000C8[] = "__OTR__ast_A_ti/D_TI_A0000C8";
+
+static const ALIGN_ASSET(2) char D_TI_A0001C8[] = "__OTR__ast_A_ti/D_TI_A0001C8";
+
+static const ALIGN_ASSET(2) char D_TI_A0002BC[] = "__OTR__ast_A_ti/D_TI_A0002BC";
+
+static const ALIGN_ASSET(2) char D_TI_A00047C[] = "__OTR__ast_A_ti/D_TI_A00047C";
+
+static const ALIGN_ASSET(2) char D_TI_A000568[] = "__OTR__ast_A_ti/D_TI_A000568";
+
+static const ALIGN_ASSET(2) char D_TI_A000858[] = "__OTR__ast_A_ti/D_TI_A000858";
+
+static const ALIGN_ASSET(2) char D_TI_A000934[] = "__OTR__ast_A_ti/D_TI_A000934";
+
+static const ALIGN_ASSET(2) char D_TI_A000D50[] = "__OTR__ast_A_ti/D_TI_A000D50";
+
+static const ALIGN_ASSET(2) char D_TI_A000EDC[] = "__OTR__ast_A_ti/D_TI_A000EDC";
+
+static const ALIGN_ASSET(2) char D_TI_A001A70[] = "__OTR__ast_A_ti/D_TI_A001A70";
+
+static const ALIGN_ASSET(2) char D_TI_A001BE0[] = "__OTR__ast_A_ti/D_TI_A001BE0";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1D08[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1D08";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1D58[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1D58";
+
+static const ALIGN_ASSET(2) char D_TI_A001DB0[] = "__OTR__ast_A_ti/D_TI_A001DB0";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1E50[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1E50";
+
+static const ALIGN_ASSET(2) char D_TI_A001EC0[] = "__OTR__ast_A_ti/D_TI_A001EC0";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_1F60[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_1F60";
+
+static const ALIGN_ASSET(2) char D_TI_A001FA0[] = "__OTR__ast_A_ti/D_TI_A001FA0";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_20C8[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_20C8";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_2118[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_2118";
+
+static const ALIGN_ASSET(2) char D_TI_A002170[] = "__OTR__ast_A_ti/D_TI_A002170";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_2298[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_2298";
+
+static const ALIGN_ASSET(2) char ast_A_ti_seg10_vtx_2308[] = "__OTR__ast_A_ti/ast_A_ti_seg10_vtx_2308";
+
+static const ALIGN_ASSET(2) char D_TI_A009990[] = "__OTR__ast_A_ti/D_TI_A009990";
+
diff --git a/include/assets/ast_allies.h b/include/assets/ast_allies.h
new file mode 100644
index 00000000..1fd91aef
--- /dev/null
+++ b/include/assets/ast_allies.h
@@ -0,0 +1,109 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aKattMarkDL[] = "__OTR__ast_allies/aKattMarkDL";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_00000098[] = "__OTR__ast_allies/ast_allies_seg13_vtx_00000098";
+
+static const ALIGN_ASSET(2) char D_D0000C8[] = "__OTR__ast_allies/D_D0000C8";
+
+static const ALIGN_ASSET(2) char aKattMarkTex[] = "__OTR__ast_allies/aKattMarkTex";
+
+static const ALIGN_ASSET(2) char aKattMarkTLUT[] = "__OTR__ast_allies/aKattMarkTLUT";
+
+static const ALIGN_ASSET(2) char D_D000170[] = "__OTR__ast_allies/D_D000170";
+
+static const ALIGN_ASSET(2) char D_D001090[] = "__OTR__ast_allies/D_D001090";
+
+static const ALIGN_ASSET(2) char D_D001FB0[] = "__OTR__ast_allies/D_D001FB0";
+
+static const ALIGN_ASSET(2) char D_D002ED0[] = "__OTR__ast_allies/D_D002ED0";
+
+static const ALIGN_ASSET(2) char D_D003DF0[] = "__OTR__ast_allies/D_D003DF0";
+
+static const ALIGN_ASSET(2) char D_D004D10[] = "__OTR__ast_allies/D_D004D10";
+
+static const ALIGN_ASSET(2) char D_D005C30[] = "__OTR__ast_allies/D_D005C30";
+
+static const ALIGN_ASSET(2) char D_D006B50[] = "__OTR__ast_allies/D_D006B50";
+
+static const ALIGN_ASSET(2) char D_D007A70[] = "__OTR__ast_allies/D_D007A70";
+
+static const ALIGN_ASSET(2) char D_D008990[] = "__OTR__ast_allies/D_D008990";
+
+static const ALIGN_ASSET(2) char aKattRadarMarkDL[] = "__OTR__ast_allies/aKattRadarMarkDL";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9908[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9908";
+
+static const ALIGN_ASSET(2) char aKattRadarMarkTex[] = "__OTR__ast_allies/aKattRadarMarkTex";
+
+static const ALIGN_ASSET(2) char aKattShipDL[] = "__OTR__ast_allies/aKattShipDL";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9C58[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9C58";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9E58[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9E58";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9EE8[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9EE8";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_9F48[] = "__OTR__ast_allies/ast_allies_seg13_vtx_9F48";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_A148[] = "__OTR__ast_allies/ast_allies_seg13_vtx_A148";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_A1A8[] = "__OTR__ast_allies/ast_allies_seg13_vtx_A1A8";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_A368[] = "__OTR__ast_allies/ast_allies_seg13_vtx_A368";
+
+static const ALIGN_ASSET(2) char D_D00A3B8[] = "__OTR__ast_allies/D_D00A3B8";
+
+static const ALIGN_ASSET(2) char D_D00ABB8[] = "__OTR__ast_allies/D_D00ABB8";
+
+static const ALIGN_ASSET(2) char D_D00ADB8[] = "__OTR__ast_allies/D_D00ADB8";
+
+static const ALIGN_ASSET(2) char D_D00AFB8[] = "__OTR__ast_allies/D_D00AFB8";
+
+static const ALIGN_ASSET(2) char D_D00B3B8[] = "__OTR__ast_allies/D_D00B3B8";
+
+static const ALIGN_ASSET(2) char aBillMarkDL[] = "__OTR__ast_allies/aBillMarkDL";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_B658[] = "__OTR__ast_allies/ast_allies_seg13_vtx_B658";
+
+static const ALIGN_ASSET(2) char aBillMarkTex[] = "__OTR__ast_allies/aBillMarkTex";
+
+static const ALIGN_ASSET(2) char aBillMarkTLUT[] = "__OTR__ast_allies/aBillMarkTLUT";
+
+static const ALIGN_ASSET(2) char aJamesMarkDL[] = "__OTR__ast_allies/aJamesMarkDL";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_B7C0[] = "__OTR__ast_allies/ast_allies_seg13_vtx_B7C0";
+
+static const ALIGN_ASSET(2) char aJamesMarkTex[] = "__OTR__ast_allies/aJamesMarkTex";
+
+static const ALIGN_ASSET(2) char aJamesMarkTLUT[] = "__OTR__ast_allies/aJamesMarkTLUT";
+
+static const ALIGN_ASSET(2) char aBillShipDL[] = "__OTR__ast_allies/aBillShipDL";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BB70[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BB70";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BD60[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BD60";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BE20[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BE20";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BE70[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BE70";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_BFB0[] = "__OTR__ast_allies/ast_allies_seg13_vtx_BFB0";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C030[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C030";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C230[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C230";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C3D0[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C3D0";
+
+static const ALIGN_ASSET(2) char ast_allies_seg13_vtx_C410[] = "__OTR__ast_allies/ast_allies_seg13_vtx_C410";
+
+static const ALIGN_ASSET(2) char D_D00C470[] = "__OTR__ast_allies/D_D00C470";
+
+static const ALIGN_ASSET(2) char D_D00C670[] = "__OTR__ast_allies/D_D00C670";
+
+static const ALIGN_ASSET(2) char D_D00C870[] = "__OTR__ast_allies/D_D00C870";
+
diff --git a/include/assets/ast_andross.h b/include/assets/ast_andross.h
new file mode 100644
index 00000000..c496134f
--- /dev/null
+++ b/include/assets/ast_andross.h
@@ -0,0 +1,452 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C000000[] = "__OTR__ast_andross/D_ANDROSS_C000000";
+
+static const ALIGN_ASSET(2) char aAndTitleCardTex[] = "__OTR__ast_andross/aAndTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C001880[] = "__OTR__ast_andross/D_ANDROSS_C001880";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_18E8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_18E8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0019E8[] = "__OTR__ast_andross/D_ANDROSS_C0019E8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C00208C[] = "__OTR__ast_andross/D_ANDROSS_C00208C";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C002654[] = "__OTR__ast_andross/D_ANDROSS_C002654";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C002B08[] = "__OTR__ast_andross/D_ANDROSS_C002B08";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C002B20[] = "__OTR__ast_andross/D_ANDROSS_C002B20";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_2C40[] = "__OTR__ast_andross/ast_andross_seg12_vtx_2C40";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_2D00[] = "__OTR__ast_andross/ast_andross_seg12_vtx_2D00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_2DC0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_2DC0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C002F00[] = "__OTR__ast_andross/D_ANDROSS_C002F00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_3000[] = "__OTR__ast_andross/ast_andross_seg12_vtx_3000";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_3040[] = "__OTR__ast_andross/ast_andross_seg12_vtx_3040";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_3080[] = "__OTR__ast_andross/ast_andross_seg12_vtx_3080";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0031D0[] = "__OTR__ast_andross/D_ANDROSS_C0031D0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0039D0[] = "__OTR__ast_andross/D_ANDROSS_C0039D0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0041D0[] = "__OTR__ast_andross/D_ANDROSS_C0041D0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0043D0[] = "__OTR__ast_andross/D_ANDROSS_C0043D0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_44D8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_44D8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C004658[] = "__OTR__ast_andross/D_ANDROSS_C004658";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C004860[] = "__OTR__ast_andross/D_ANDROSS_C004860";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_4978[] = "__OTR__ast_andross/ast_andross_seg12_vtx_4978";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_4B78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_4B78";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_4BE8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_4BE8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C006F08[] = "__OTR__ast_andross/D_ANDROSS_C006F08";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_6F20[] = "__OTR__ast_andross/ast_andross_seg12_gfx_6F20";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7250[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7250";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_73F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_73F0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7460[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7460";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_74C0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_74C0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_76C0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_76C0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_78A0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_78A0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7A80[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7A80";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7C70[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7C70";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7E00[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7E00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_7F30[] = "__OTR__ast_andross/ast_andross_seg12_vtx_7F30";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C007FC0[] = "__OTR__ast_andross/D_ANDROSS_C007FC0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0087C0[] = "__OTR__ast_andross/D_ANDROSS_C0087C0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C00DE48[] = "__OTR__ast_andross/D_ANDROSS_C00DE48";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C00E598[] = "__OTR__ast_andross/D_ANDROSS_C00E598";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_E5B0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_E5B0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_E8A8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_E8A8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_E8E8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_E8E8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_E9F8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_E9F8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_EBF8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_EBF8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_ED68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_ED68";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_EDE8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_EDE8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_EF68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_EF68";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_F098[] = "__OTR__ast_andross/ast_andross_seg12_vtx_F098";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C00F108[] = "__OTR__ast_andross/D_ANDROSS_C00F108";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C010108[] = "__OTR__ast_andross/D_ANDROSS_C010108";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C010188[] = "__OTR__ast_andross/D_ANDROSS_C010188";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C010988[] = "__OTR__ast_andross/D_ANDROSS_C010988";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C011988[] = "__OTR__ast_andross/D_ANDROSS_C011988";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C012188[] = "__OTR__ast_andross/D_ANDROSS_C012188";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C012988[] = "__OTR__ast_andross/D_ANDROSS_C012988";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_13190[] = "__OTR__ast_andross/ast_andross_seg12_gfx_13190";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_13308[] = "__OTR__ast_andross/ast_andross_seg12_vtx_13308";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_13508[] = "__OTR__ast_andross/ast_andross_seg12_vtx_13508";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_13578[] = "__OTR__ast_andross/ast_andross_seg12_vtx_13578";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_136F8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_136F8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C013738[] = "__OTR__ast_andross/D_ANDROSS_C013738";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C013F38[] = "__OTR__ast_andross/D_ANDROSS_C013F38";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C014738[] = "__OTR__ast_andross/D_ANDROSS_C014738";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C015740[] = "__OTR__ast_andross/D_ANDROSS_C015740";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15848[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15848";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_159D0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_159D0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15AD0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15AD0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15B50[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15B50";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15B90[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15B90";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_15C00[] = "__OTR__ast_andross/ast_andross_seg12_gfx_15C00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15D00[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15D00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15DA0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15DA0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15DE0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15DE0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_15E50[] = "__OTR__ast_andross/ast_andross_seg12_gfx_15E50";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_15F10[] = "__OTR__ast_andross/ast_andross_seg12_vtx_15F10";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C016100[] = "__OTR__ast_andross/D_ANDROSS_C016100";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C017050[] = "__OTR__ast_andross/D_ANDROSS_C017050";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C017430[] = "__OTR__ast_andross/D_ANDROSS_C017430";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C017440[] = "__OTR__ast_andross/D_ANDROSS_C017440";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C017598[] = "__OTR__ast_andross/D_ANDROSS_C017598";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0177B8[] = "__OTR__ast_andross/D_ANDROSS_C0177B8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C018BC4[] = "__OTR__ast_andross/D_ANDROSS_C018BC4";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_18BD0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_18BD0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_18CE8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_18CE8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_18ED8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_18ED8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C01C490[] = "__OTR__ast_andross/D_ANDROSS_C01C490";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C01CC3C[] = "__OTR__ast_andross/D_ANDROSS_C01CC3C";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1CD40[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1CD40";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1CE50[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1CE50";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D050[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D050";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1D150[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1D150";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D248[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D248";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1D450[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1D450";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D548[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D548";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1D750[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1D750";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1D870[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1D870";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1DA60[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1DA60";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1DB80[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1DB80";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1DC78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1DC78";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1DE80[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1DE80";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1DFA8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1DFA8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E1A8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E1A8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1E2C0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1E2C0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E3B8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E3B8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1E5C0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1E5C0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E6C8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E6C8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1E8D0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1E8D0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1E9C8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1E9C8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1EBD0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1EBD0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1ED78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1ED78";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1EF78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1EF78";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F158[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F158";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1F2E0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1F2E0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F3F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F3F0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F5F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F5F0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1F750[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1F750";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1F848[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1F848";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1FA20[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1FA20";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1FB38[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1FB38";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1FD38[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1FD38";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_1FE60[] = "__OTR__ast_andross/ast_andross_seg12_gfx_1FE60";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_1FF58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_1FF58";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C020128[] = "__OTR__ast_andross/D_ANDROSS_C020128";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_20930[] = "__OTR__ast_andross/ast_andross_seg12_gfx_20930";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_20A40[] = "__OTR__ast_andross/ast_andross_seg12_vtx_20A40";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_20C30[] = "__OTR__ast_andross/ast_andross_seg12_vtx_20C30";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_20E00[] = "__OTR__ast_andross/ast_andross_seg12_gfx_20E00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_20EF8[] = "__OTR__ast_andross/ast_andross_seg12_vtx_20EF8";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_21100[] = "__OTR__ast_andross/ast_andross_seg12_gfx_21100";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21210[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21210";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21400[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21400";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_215A0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_215A0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21698[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21698";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_218A0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_218A0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_219A0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_219A0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_21BA0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_21BA0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_21C98[] = "__OTR__ast_andross/ast_andross_seg12_vtx_21C98";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_21EA0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_21EA0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22040[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22040";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22240[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22240";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22430[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22430";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C022520[] = "__OTR__ast_andross/D_ANDROSS_C022520";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22640[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22640";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22820[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22820";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_22970[] = "__OTR__ast_andross/ast_andross_seg12_vtx_22970";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C022A10[] = "__OTR__ast_andross/D_ANDROSS_C022A10";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C022A90[] = "__OTR__ast_andross/D_ANDROSS_C022A90";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C023B54[] = "__OTR__ast_andross/D_ANDROSS_C023B54";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0240D0[] = "__OTR__ast_andross/D_ANDROSS_C0240D0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C025C00[] = "__OTR__ast_andross/D_ANDROSS_C025C00";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_25C10[] = "__OTR__ast_andross/ast_andross_seg12_gfx_25C10";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_25D88[] = "__OTR__ast_andross/ast_andross_seg12_vtx_25D88";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_25F78[] = "__OTR__ast_andross/ast_andross_seg12_vtx_25F78";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26028[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26028";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26158[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26158";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_261A0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_261A0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_263B0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_263B0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26430[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26430";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26630[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26630";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_267B0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_267B0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26870[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26870";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_268F0[] = "__OTR__ast_andross/ast_andross_seg12_vtx_268F0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_26950[] = "__OTR__ast_andross/ast_andross_seg12_gfx_26950";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26A68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26A68";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26C68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26C68";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_26E58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_26E58";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C029F74[] = "__OTR__ast_andross/D_ANDROSS_C029F74";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C02E494[] = "__OTR__ast_andross/D_ANDROSS_C02E494";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C02EDA0[] = "__OTR__ast_andross/D_ANDROSS_C02EDA0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C02F634[] = "__OTR__ast_andross/D_ANDROSS_C02F634";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C030244[] = "__OTR__ast_andross/D_ANDROSS_C030244";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C033780[] = "__OTR__ast_andross/D_ANDROSS_C033780";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C033D98[] = "__OTR__ast_andross/D_ANDROSS_C033D98";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_33DB0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_33DB0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_33E88[] = "__OTR__ast_andross/ast_andross_seg12_vtx_33E88";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34088[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34088";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_340C0[] = "__OTR__ast_andross/ast_andross_seg12_gfx_340C0";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34198[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34198";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34398[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34398";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_34590[] = "__OTR__ast_andross/ast_andross_seg12_gfx_34590";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34668[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34668";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34868[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34868";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_gfx_34A50[] = "__OTR__ast_andross/ast_andross_seg12_gfx_34A50";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34B68[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34B68";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34D58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34D58";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_34F58[] = "__OTR__ast_andross/ast_andross_seg12_vtx_34F58";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C035110[] = "__OTR__ast_andross/D_ANDROSS_C035110";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C035154[] = "__OTR__ast_andross/D_ANDROSS_C035154";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0356A4[] = "__OTR__ast_andross/D_ANDROSS_C0356A4";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0356CC[] = "__OTR__ast_andross/D_ANDROSS_C0356CC";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C036310[] = "__OTR__ast_andross/D_ANDROSS_C036310";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C036B6C[] = "__OTR__ast_andross/D_ANDROSS_C036B6C";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C03733C[] = "__OTR__ast_andross/D_ANDROSS_C03733C";
+
+static const char D_ANDROSS_C037E3C[] = "__OTR__ast_andross/D_ANDROSS_C037E3C";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C037FCC[] = "__OTR__ast_andross/D_ANDROSS_C037FCC";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0380C0[] = "__OTR__ast_andross/D_ANDROSS_C0380C0";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0381B4[] = "__OTR__ast_andross/D_ANDROSS_C0381B4";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C0382A8[] = "__OTR__ast_andross/D_ANDROSS_C0382A8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C03839C[] = "__OTR__ast_andross/D_ANDROSS_C03839C";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038490[] = "__OTR__ast_andross/D_ANDROSS_C038490";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038584[] = "__OTR__ast_andross/D_ANDROSS_C038584";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038678[] = "__OTR__ast_andross/D_ANDROSS_C038678";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C03876C[] = "__OTR__ast_andross/D_ANDROSS_C03876C";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038860[] = "__OTR__ast_andross/D_ANDROSS_C038860";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038954[] = "__OTR__ast_andross/D_ANDROSS_C038954";
+
+static const ALIGN_ASSET(2) char aAndDoorHitbox[] = "__OTR__ast_andross/aAndDoorHitbox";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038AC4[] = "__OTR__ast_andross/D_ANDROSS_C038AC4";
+
+static const ALIGN_ASSET(2) char aAndPathHitbox[] = "__OTR__ast_andross/aAndPathHitbox";
+
+static const ALIGN_ASSET(2) char aAndPathIntersectionHitbox[] = "__OTR__ast_andross/aAndPathIntersectionHitbox";
+
+static const ALIGN_ASSET(2) char aAndPassageHitbox[] = "__OTR__ast_andross/aAndPassageHitbox";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038CCC[] = "__OTR__ast_andross/D_ANDROSS_C038CCC";
+
+static const ALIGN_ASSET(2) char aAndAndrossHitbox[] = "__OTR__ast_andross/aAndAndrossHitbox";
+
+static const ALIGN_ASSET(2) char aAndBrainHitbox[] = "__OTR__ast_andross/aAndBrainHitbox";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C038FE8[] = "__OTR__ast_andross/D_ANDROSS_C038FE8";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C039208[] = "__OTR__ast_andross/D_ANDROSS_C039208";
+
+static const ALIGN_ASSET(2) char ast_andross_seg12_vtx_39260[] = "__OTR__ast_andross/ast_andross_seg12_vtx_39260";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C039290[] = "__OTR__ast_andross/D_ANDROSS_C039290";
+
+static const ALIGN_ASSET(2) char D_ANDROSS_C03A290[] = "__OTR__ast_andross/D_ANDROSS_C03A290";
+
diff --git a/include/assets/ast_aquas.h b/include/assets/ast_aquas.h
new file mode 100644
index 00000000..c7419465
--- /dev/null
+++ b/include/assets/ast_aquas.h
@@ -0,0 +1,1058 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aAqTitleCardTex[] = "__OTR__ast_aquas/aAqTitleCardTex";
+
+static const ALIGN_ASSET(2) char aAqSquidAnim[] = "__OTR__ast_aquas/aAqSquidAnim";
+
+static const ALIGN_ASSET(2) char aAqSquidSkel[] = "__OTR__ast_aquas/aAqSquidSkel";
+
+static const ALIGN_ASSET(2) char aAqShellDL[] = "__OTR__ast_aquas/aAqShellDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_EB0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_EB0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_10A0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_10A0";
+
+static const ALIGN_ASSET(2) char D_AQ_6001130[] = "__OTR__ast_aquas/D_AQ_6001130";
+
+static const ALIGN_ASSET(2) char aAqAnglerFishAnim[] = "__OTR__ast_aquas/aAqAnglerFishAnim";
+
+static const ALIGN_ASSET(2) char aAqAnglerFishSkel[] = "__OTR__ast_aquas/aAqAnglerFishSkel";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_28C0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_28C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2A38[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2A38";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2A98[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2A98";
+
+static const ALIGN_ASSET(2) char aAqOysterDL[] = "__OTR__ast_aquas/aAqOysterDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2CC8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2CC8";
+
+static const ALIGN_ASSET(2) char D_AQ_6002D58[] = "__OTR__ast_aquas/D_AQ_6002D58";
+
+static const ALIGN_ASSET(2) char D_AQ_6003158[] = "__OTR__ast_aquas/D_AQ_6003158";
+
+static const ALIGN_ASSET(2) char D_AQ_6003350[] = "__OTR__ast_aquas/D_AQ_6003350";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_3430[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_3430";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_3590[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_3590";
+
+static const ALIGN_ASSET(2) char D_AQ_6003610[] = "__OTR__ast_aquas/D_AQ_6003610";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_3E10[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_3E10";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_3E80[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_3E80";
+
+static const ALIGN_ASSET(2) char D_AQ_6003FF0[] = "__OTR__ast_aquas/D_AQ_6003FF0";
+
+static const ALIGN_ASSET(2) char D_AQ_60040F0[] = "__OTR__ast_aquas/D_AQ_60040F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_41D0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_41D0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_4330[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_4330";
+
+static const ALIGN_ASSET(2) char D_AQ_60043B0[] = "__OTR__ast_aquas/D_AQ_60043B0";
+
+static const ALIGN_ASSET(2) char D_AQ_6004BB0[] = "__OTR__ast_aquas/D_AQ_6004BB0";
+
+static const ALIGN_ASSET(2) char D_AQ_6004DB0[] = "__OTR__ast_aquas/D_AQ_6004DB0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_4E90[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_4E90";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_4FF0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_4FF0";
+
+static const ALIGN_ASSET(2) char D_AQ_60050F0[] = "__OTR__ast_aquas/D_AQ_60050F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_51A0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_51A0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_5230[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_5230";
+
+static const ALIGN_ASSET(2) char aAqSculpinAnim[] = "__OTR__ast_aquas/aAqSculpinAnim";
+
+static const ALIGN_ASSET(2) char aAqSculpinSkel[] = "__OTR__ast_aquas/aAqSculpinSkel";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_5AB0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_5AB0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_5C00[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_5C00";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_5C60[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_5C60";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_5CE0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_5CE0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_5ED0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_5ED0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_60D0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_60D0";
+
+static const ALIGN_ASSET(2) char D_AQ_6006160[] = "__OTR__ast_aquas/D_AQ_6006160";
+
+static const ALIGN_ASSET(2) char D_AQ_6006960[] = "__OTR__ast_aquas/D_AQ_6006960";
+
+static const ALIGN_ASSET(2) char D_AQ_6007160[] = "__OTR__ast_aquas/D_AQ_6007160";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_71D8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_71D8";
+
+static const ALIGN_ASSET(2) char D_AQ_6007378[] = "__OTR__ast_aquas/D_AQ_6007378";
+
+static const ALIGN_ASSET(2) char D_AQ_6007B80[] = "__OTR__ast_aquas/D_AQ_6007B80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_7C08[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_7C08";
+
+static const ALIGN_ASSET(2) char D_AQ_6007D70[] = "__OTR__ast_aquas/D_AQ_6007D70";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_7E28[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_7E28";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_7EA8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_7EA8";
+
+static const ALIGN_ASSET(2) char D_AQ_6007F68[] = "__OTR__ast_aquas/D_AQ_6007F68";
+
+static const ALIGN_ASSET(2) char D_AQ_6008168[] = "__OTR__ast_aquas/D_AQ_6008168";
+
+static const ALIGN_ASSET(2) char aAqStarfishDL[] = "__OTR__ast_aquas/aAqStarfishDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_8AE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_8AE8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_8CE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_8CE8";
+
+static const ALIGN_ASSET(2) char D_AQ_6008EC8[] = "__OTR__ast_aquas/D_AQ_6008EC8";
+
+static const ALIGN_ASSET(2) char D_AQ_6008FC8[] = "__OTR__ast_aquas/D_AQ_6008FC8";
+
+static const ALIGN_ASSET(2) char D_AQ_6009188[] = "__OTR__ast_aquas/D_AQ_6009188";
+
+static const ALIGN_ASSET(2) char D_AQ_6009990[] = "__OTR__ast_aquas/D_AQ_6009990";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_9A78[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_9A78";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_9B48[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_9B48";
+
+static const ALIGN_ASSET(2) char D_AQ_6009C28[] = "__OTR__ast_aquas/D_AQ_6009C28";
+
+static const ALIGN_ASSET(2) char D_AQ_600A028[] = "__OTR__ast_aquas/D_AQ_600A028";
+
+static const ALIGN_ASSET(2) char D_AQ_600A220[] = "__OTR__ast_aquas/D_AQ_600A220";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A298[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A298";
+
+static const ALIGN_ASSET(2) char D_AQ_600A480[] = "__OTR__ast_aquas/D_AQ_600A480";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A4D8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A4D8";
+
+static const ALIGN_ASSET(2) char D_AQ_600A520[] = "__OTR__ast_aquas/D_AQ_600A520";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A5D8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A5D8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A658[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A658";
+
+static const ALIGN_ASSET(2) char D_AQ_600A720[] = "__OTR__ast_aquas/D_AQ_600A720";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A798[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A798";
+
+static const ALIGN_ASSET(2) char D_AQ_600A840[] = "__OTR__ast_aquas/D_AQ_600A840";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A898[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A898";
+
+static const ALIGN_ASSET(2) char D_AQ_600A8E0[] = "__OTR__ast_aquas/D_AQ_600A8E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_A938[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_A938";
+
+static const ALIGN_ASSET(2) char D_AQ_600A970[] = "__OTR__ast_aquas/D_AQ_600A970";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_AA20[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_AA20";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_AA80[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_AA80";
+
+static const ALIGN_ASSET(2) char D_AQ_600AB10[] = "__OTR__ast_aquas/D_AQ_600AB10";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_AB28[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_AB28";
+
+static const ALIGN_ASSET(2) char D_AQ_600AB68[] = "__OTR__ast_aquas/D_AQ_600AB68";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_B370[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_B370";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_B3C8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_B3C8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_B400[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_B400";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_B488[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_B488";
+
+static const ALIGN_ASSET(2) char D_AQ_600B518[] = "__OTR__ast_aquas/D_AQ_600B518";
+
+static const ALIGN_ASSET(2) char D_AQ_600BD20[] = "__OTR__ast_aquas/D_AQ_600BD20";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_BD80[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_BD80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_BE40[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_BE40";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_BEA0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_BEA0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_BEF0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_BEF0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_BF48[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_BF48";
+
+static const ALIGN_ASSET(2) char aAqTunnel2DL[] = "__OTR__ast_aquas/aAqTunnel2DL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_C1D0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_C1D0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_C200[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_C200";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_C2E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_C2E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_C380[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_C380";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_C450[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_C450";
+
+static const ALIGN_ASSET(2) char D_AQ_600C530[] = "__OTR__ast_aquas/D_AQ_600C530";
+
+static const ALIGN_ASSET(2) char D_AQ_600C930[] = "__OTR__ast_aquas/D_AQ_600C930";
+
+static const ALIGN_ASSET(2) char D_AQ_600CB20[] = "__OTR__ast_aquas/D_AQ_600CB20";
+
+static const ALIGN_ASSET(2) char D_AQ_600CF20[] = "__OTR__ast_aquas/D_AQ_600CF20";
+
+static const ALIGN_ASSET(2) char D_AQ_600CFF0[] = "__OTR__ast_aquas/D_AQ_600CFF0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D0D0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D0D0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D170[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D170";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D360[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D360";
+
+static const ALIGN_ASSET(2) char D_AQ_600D390[] = "__OTR__ast_aquas/D_AQ_600D390";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D3F0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D3F0";
+
+static const ALIGN_ASSET(2) char D_AQ_600D4A0[] = "__OTR__ast_aquas/D_AQ_600D4A0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D550[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D550";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D5E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D5E0";
+
+static const ALIGN_ASSET(2) char D_AQ_600D720[] = "__OTR__ast_aquas/D_AQ_600D720";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D780[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D780";
+
+static const ALIGN_ASSET(2) char D_AQ_600D810[] = "__OTR__ast_aquas/D_AQ_600D810";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D870[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D870";
+
+static const ALIGN_ASSET(2) char D_AQ_600D900[] = "__OTR__ast_aquas/D_AQ_600D900";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_D9A8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_D9A8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DA68[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DA68";
+
+static const ALIGN_ASSET(2) char D_AQ_600DB80[] = "__OTR__ast_aquas/D_AQ_600DB80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DDC8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DDC8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DDF8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DDF8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DE28[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DE28";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DE58[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DE58";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DE88[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DE88";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DEB8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DEB8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DEE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DEE8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_DF18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_DF18";
+
+static const ALIGN_ASSET(2) char D_AQ_600DF48[] = "__OTR__ast_aquas/D_AQ_600DF48";
+
+static const ALIGN_ASSET(2) char D_AQ_600E150[] = "__OTR__ast_aquas/D_AQ_600E150";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_E1C0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_E1C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_E2E0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_E2E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_E338[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_E338";
+
+static const ALIGN_ASSET(2) char D_AQ_600E368[] = "__OTR__ast_aquas/D_AQ_600E368";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_EB70[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_EB70";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_EBC8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_EBC8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_EC00[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_EC00";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_EC60[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_EC60";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_ECB0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_ECB0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_ED38[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_ED38";
+
+static const ALIGN_ASSET(2) char aAqWall1DL[] = "__OTR__ast_aquas/aAqWall1DL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_EEA8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_EEA8";
+
+static const ALIGN_ASSET(2) char aAqBump2DL[] = "__OTR__ast_aquas/aAqBump2DL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_EFA0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_EFA0";
+
+static const ALIGN_ASSET(2) char D_AQ_600F030[] = "__OTR__ast_aquas/D_AQ_600F030";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_F0A0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_F0A0";
+
+static const ALIGN_ASSET(2) char D_AQ_600F1A0[] = "__OTR__ast_aquas/D_AQ_600F1A0";
+
+static const ALIGN_ASSET(2) char D_AQ_600F9A0[] = "__OTR__ast_aquas/D_AQ_600F9A0";
+
+static const ALIGN_ASSET(2) char D_AQ_60101A0[] = "__OTR__ast_aquas/D_AQ_60101A0";
+
+static const ALIGN_ASSET(2) char D_AQ_60109A0[] = "__OTR__ast_aquas/D_AQ_60109A0";
+
+static const ALIGN_ASSET(2) char D_AQ_60111A0[] = "__OTR__ast_aquas/D_AQ_60111A0";
+
+static const ALIGN_ASSET(2) char D_AQ_60119A0[] = "__OTR__ast_aquas/D_AQ_60119A0";
+
+static const ALIGN_ASSET(2) char D_AQ_6011A78[] = "__OTR__ast_aquas/D_AQ_6011A78";
+
+static const ALIGN_ASSET(2) char D_AQ_6011CD8[] = "__OTR__ast_aquas/D_AQ_6011CD8";
+
+static const ALIGN_ASSET(2) char aAqTunnel1DL[] = "__OTR__ast_aquas/aAqTunnel1DL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_11FB0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_11FB0";
+
+static const ALIGN_ASSET(2) char aAqRoofDL[] = "__OTR__ast_aquas/aAqRoofDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12358[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12358";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12428[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12428";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12508[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12508";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12548[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12548";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12568[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12568";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12618[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12618";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_12668[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_12668";
+
+static const ALIGN_ASSET(2) char D_AQ_60126A8[] = "__OTR__ast_aquas/D_AQ_60126A8";
+
+static const ALIGN_ASSET(2) char D_AQ_6012AA8[] = "__OTR__ast_aquas/D_AQ_6012AA8";
+
+static const ALIGN_ASSET(2) char D_AQ_6012C98[] = "__OTR__ast_aquas/D_AQ_6012C98";
+
+static const ALIGN_ASSET(2) char D_AQ_6012D98[] = "__OTR__ast_aquas/D_AQ_6012D98";
+
+static const ALIGN_ASSET(2) char D_AQ_6012EA8[] = "__OTR__ast_aquas/D_AQ_6012EA8";
+
+static const ALIGN_ASSET(2) char D_AQ_60132A8[] = "__OTR__ast_aquas/D_AQ_60132A8";
+
+static const ALIGN_ASSET(2) char aAqFishGroupAnim[] = "__OTR__ast_aquas/aAqFishGroupAnim";
+
+static const ALIGN_ASSET(2) char aAqFishGroupSkel1[] = "__OTR__ast_aquas/aAqFishGroupSkel1";
+
+static const ALIGN_ASSET(2) char aAqFishGroupSkel2[] = "__OTR__ast_aquas/aAqFishGroupSkel2";
+
+static const ALIGN_ASSET(2) char D_AQ_60137F0[] = "__OTR__ast_aquas/D_AQ_60137F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_13960[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_13960";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_13AE0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_13AE0";
+
+static const ALIGN_ASSET(2) char D_AQ_6013CC0[] = "__OTR__ast_aquas/D_AQ_6013CC0";
+
+static const ALIGN_ASSET(2) char D_AQ_6013EC0[] = "__OTR__ast_aquas/D_AQ_6013EC0";
+
+static const ALIGN_ASSET(2) char D_AQ_6014030[] = "__OTR__ast_aquas/D_AQ_6014030";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14180[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14180";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_142C0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_142C0";
+
+static const ALIGN_ASSET(2) char aAqStoneColumnAnim[] = "__OTR__ast_aquas/aAqStoneColumnAnim";
+
+static const ALIGN_ASSET(2) char aAqStoneColumnSkel[] = "__OTR__ast_aquas/aAqStoneColumnSkel";
+
+static const ALIGN_ASSET(2) char D_AQ_6014520[] = "__OTR__ast_aquas/D_AQ_6014520";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14670[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14670";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14730[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14730";
+
+static const ALIGN_ASSET(2) char D_AQ_60148B0[] = "__OTR__ast_aquas/D_AQ_60148B0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_149D8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_149D8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14A18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14A18";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_14B30[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_14B30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14BE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14BE8";
+
+static const ALIGN_ASSET(2) char D_AQ_6014CD0[] = "__OTR__ast_aquas/D_AQ_6014CD0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14D90[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14D90";
+
+static const ALIGN_ASSET(2) char D_AQ_6014E50[] = "__OTR__ast_aquas/D_AQ_6014E50";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_14F10[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_14F10";
+
+static const ALIGN_ASSET(2) char aAqBoulderDL[] = "__OTR__ast_aquas/aAqBoulderDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15100[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15100";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15300[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15300";
+
+static const ALIGN_ASSET(2) char D_AQ_6015430[] = "__OTR__ast_aquas/D_AQ_6015430";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_154C8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_154C8";
+
+static const ALIGN_ASSET(2) char D_AQ_60154F8[] = "__OTR__ast_aquas/D_AQ_60154F8";
+
+static const ALIGN_ASSET(2) char D_AQ_60155F8[] = "__OTR__ast_aquas/D_AQ_60155F8";
+
+static const ALIGN_ASSET(2) char aAqArchDL[] = "__OTR__ast_aquas/aAqArchDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15838[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15838";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15A28[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15A28";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_15B30[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_15B30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15BE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15BE8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_15C80[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_15C80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15D38[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15D38";
+
+static const ALIGN_ASSET(2) char D_AQ_6015DD0[] = "__OTR__ast_aquas/D_AQ_6015DD0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15EF8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15EF8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_15F88[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_15F88";
+
+static const ALIGN_ASSET(2) char D_AQ_6015FF0[] = "__OTR__ast_aquas/D_AQ_6015FF0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_161A8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_161A8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_163A8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_163A8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_164E8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_164E8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_16540[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_16540";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_16640[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_16640";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_16790[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_16790";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_16890[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_16890";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_169E0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_169E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_16AE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_16AE8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_16C00[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_16C00";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_16D78[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_16D78";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_16E38[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_16E38";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_16F40[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_16F40";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_17080[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_17080";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_17110[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_17110";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_171A0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_171A0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_17458[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_17458";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_175C8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_175C8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_177A8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_177A8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_17988[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_17988";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_17B78[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_17B78";
+
+static const ALIGN_ASSET(2) char D_AQ_6017BD8[] = "__OTR__ast_aquas/D_AQ_6017BD8";
+
+static const ALIGN_ASSET(2) char D_AQ_6017CD8[] = "__OTR__ast_aquas/D_AQ_6017CD8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_17D60[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_17D60";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_17F70[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_17F70";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_180F0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_180F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_182E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_182E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_184E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_184E0";
+
+static const ALIGN_ASSET(2) char D_AQ_6018640[] = "__OTR__ast_aquas/D_AQ_6018640";
+
+static const ALIGN_ASSET(2) char D_AQ_6018878[] = "__OTR__ast_aquas/D_AQ_6018878";
+
+static const ALIGN_ASSET(2) char D_AQ_6018C78[] = "__OTR__ast_aquas/D_AQ_6018C78";
+
+static const ALIGN_ASSET(2) char D_AQ_6019078[] = "__OTR__ast_aquas/D_AQ_6019078";
+
+static const ALIGN_ASSET(2) char D_AQ_6019238[] = "__OTR__ast_aquas/D_AQ_6019238";
+
+static const ALIGN_ASSET(2) char D_AQ_6019338[] = "__OTR__ast_aquas/D_AQ_6019338";
+
+static const ALIGN_ASSET(2) char D_AQ_60194D0[] = "__OTR__ast_aquas/D_AQ_60194D0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_19648[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_19648";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_19768[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_19768";
+
+static const ALIGN_ASSET(2) char D_AQ_6019880[] = "__OTR__ast_aquas/D_AQ_6019880";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_199F8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_199F8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_19B18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_19B18";
+
+static const ALIGN_ASSET(2) char D_AQ_6019C28[] = "__OTR__ast_aquas/D_AQ_6019C28";
+
+static const ALIGN_ASSET(2) char D_AQ_6019D28[] = "__OTR__ast_aquas/D_AQ_6019D28";
+
+static const ALIGN_ASSET(2) char D_AQ_6019E80[] = "__OTR__ast_aquas/D_AQ_6019E80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1A000[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1A000";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1A120[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1A120";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_1A230[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_1A230";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1A2C8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1A2C8";
+
+static const ALIGN_ASSET(2) char D_AQ_601A308[] = "__OTR__ast_aquas/D_AQ_601A308";
+
+static const ALIGN_ASSET(2) char D_AQ_601A708[] = "__OTR__ast_aquas/D_AQ_601A708";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_1A900[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_1A900";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1A9D8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1A9D8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_1AB30[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_1AB30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1AC80[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1AC80";
+
+static const ALIGN_ASSET(2) char D_AQ_601AE70[] = "__OTR__ast_aquas/D_AQ_601AE70";
+
+static const ALIGN_ASSET(2) char D_AQ_601AF70[] = "__OTR__ast_aquas/D_AQ_601AF70";
+
+static const ALIGN_ASSET(2) char D_AQ_601AFF0[] = "__OTR__ast_aquas/D_AQ_601AFF0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1B040[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1B040";
+
+static const ALIGN_ASSET(2) char D_AQ_601B080[] = "__OTR__ast_aquas/D_AQ_601C110";
+
+static const ALIGN_ASSET(2) char D_AQ_601C080[] = "__OTR__ast_aquas/D_AQ_601C080";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1C0D0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1C0D0";
+
+static const ALIGN_ASSET(2) char D_AQ_601C110[] = "__OTR__ast_aquas/D_AQ_601B080";
+
+static const ALIGN_ASSET(2) char D_AQ_601D110[] = "__OTR__ast_aquas/D_AQ_601D110";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1D1F0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1D1F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1D3F0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1D3F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1D5E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1D5E0";
+
+static const ALIGN_ASSET(2) char D_AQ_601DE50[] = "__OTR__ast_aquas/D_AQ_601DE50";
+
+static const ALIGN_ASSET(2) char aAqCoralReef2DL[] = "__OTR__ast_aquas/aAqCoralReef2DL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1DF30[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1DF30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1E130[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1E130";
+
+static const ALIGN_ASSET(2) char D_AQ_601E1F0[] = "__OTR__ast_aquas/D_AQ_601E1F0";
+
+static const ALIGN_ASSET(2) char D_AQ_601E9F0[] = "__OTR__ast_aquas/D_AQ_601E9F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1EA78[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1EA78";
+
+static const ALIGN_ASSET(2) char aAqCoralAnim[] = "__OTR__ast_aquas/aAqCoralAnim";
+
+static const ALIGN_ASSET(2) char aAqCoralSkel[] = "__OTR__ast_aquas/aAqCoralSkel";
+
+static const ALIGN_ASSET(2) char D_AQ_601EDE0[] = "__OTR__ast_aquas/D_AQ_601EDE0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1EEB8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1EEB8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1F0B8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1F0B8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1F2B8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1F2B8";
+
+static const ALIGN_ASSET(2) char D_AQ_601F2F0[] = "__OTR__ast_aquas/D_AQ_601F2F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1F3C8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1F3C8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1F5B8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1F5B8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1F798[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1F798";
+
+static const ALIGN_ASSET(2) char D_AQ_601F830[] = "__OTR__ast_aquas/D_AQ_601F830";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1F908[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1F908";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1FAE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1FAE8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1FCD8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1FCD8";
+
+static const ALIGN_ASSET(2) char D_AQ_601FD70[] = "__OTR__ast_aquas/D_AQ_601FD70";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_1FE58[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_1FE58";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20048[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20048";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20248[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20248";
+
+static const ALIGN_ASSET(2) char aAqSeaweedAnim[] = "__OTR__ast_aquas/aAqSeaweedAnim";
+
+static const ALIGN_ASSET(2) char aAqSeaweedSkel[] = "__OTR__ast_aquas/aAqSeaweedSkel";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_20CC0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_20CC0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20D18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20D18";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_20D50[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_20D50";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20DA8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20DA8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_20DF0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_20DF0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20E48[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20E48";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_20E90[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_20E90";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20EE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20EE8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_20F30[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_20F30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_20F88[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_20F88";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_20FD0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_20FD0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_21028[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_21028";
+
+static const ALIGN_ASSET(2) char D_AQ_6021058[] = "__OTR__ast_aquas/D_AQ_6021058";
+
+static const ALIGN_ASSET(2) char D_AQ_6021858[] = "__OTR__ast_aquas/D_AQ_6021858";
+
+static const ALIGN_ASSET(2) char D_AQ_6021C58[] = "__OTR__ast_aquas/D_AQ_6021C58";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_21E30[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_21E30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_21E90[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_21E90";
+
+static const ALIGN_ASSET(2) char aAqOysterAnim[] = "__OTR__ast_aquas/aAqOysterAnim";
+
+static const ALIGN_ASSET(2) char aAqOysterSkel[] = "__OTR__ast_aquas/aAqOysterSkel";
+
+static const ALIGN_ASSET(2) char D_AQ_6022110[] = "__OTR__ast_aquas/D_AQ_6022110";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_22168[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_22168";
+
+static const ALIGN_ASSET(2) char D_AQ_6022198[] = "__OTR__ast_aquas/D_AQ_6022198";
+
+static const ALIGN_ASSET(2) char D_AQ_6022598[] = "__OTR__ast_aquas/D_AQ_6022598";
+
+static const ALIGN_ASSET(2) char D_AQ_6022788[] = "__OTR__ast_aquas/D_AQ_6022788";
+
+static const ALIGN_ASSET(2) char D_AQ_6022888[] = "__OTR__ast_aquas/D_AQ_6022888";
+
+static const ALIGN_ASSET(2) char D_AQ_60229B8[] = "__OTR__ast_aquas/D_AQ_60229B8";
+
+static const ALIGN_ASSET(2) char aAqCoralReef1DL[] = "__OTR__ast_aquas/aAqCoralReef1DL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_23290[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_23290";
+
+static const ALIGN_ASSET(2) char aAqJellyfishAnim[] = "__OTR__ast_aquas/aAqJellyfishAnim";
+
+static const ALIGN_ASSET(2) char aAqJellyfishSkel[] = "__OTR__ast_aquas/aAqJellyfishSkel";
+
+static const ALIGN_ASSET(2) char D_AQ_6023940[] = "__OTR__ast_aquas/D_AQ_6023940";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_239F0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_239F0";
+
+static const ALIGN_ASSET(2) char D_AQ_6023B80[] = "__OTR__ast_aquas/D_AQ_6023B80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_23C40[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_23C40";
+
+static const ALIGN_ASSET(2) char D_AQ_6023D70[] = "__OTR__ast_aquas/D_AQ_6023D70";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_23DE8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_23DE8";
+
+static const ALIGN_ASSET(2) char D_AQ_6023EB0[] = "__OTR__ast_aquas/D_AQ_6023EB0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_23F08[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_23F08";
+
+static const ALIGN_ASSET(2) char D_AQ_6023F38[] = "__OTR__ast_aquas/D_AQ_6023F38";
+
+static const ALIGN_ASSET(2) char D_AQ_6024738[] = "__OTR__ast_aquas/D_AQ_6024738";
+
+static const ALIGN_ASSET(2) char D_AQ_6024938[] = "__OTR__ast_aquas/D_AQ_6024938";
+
+static const ALIGN_ASSET(2) char D_AQ_60249C0[] = "__OTR__ast_aquas/D_AQ_60249C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_24A18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_24A18";
+
+static const ALIGN_ASSET(2) char aAqPearlDL[] = "__OTR__ast_aquas/aAqPearlDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_24AA8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_24AA8";
+
+static const ALIGN_ASSET(2) char D_AQ_6024F80[] = "__OTR__ast_aquas/D_AQ_6024F80";
+
+static const ALIGN_ASSET(2) char aAqGaroaSkel[] = "__OTR__ast_aquas/aAqGaroaSkel";
+
+static const ALIGN_ASSET(2) char aAqSpindlyFishAnim[] = "__OTR__ast_aquas/aAqSpindlyFishAnim";
+
+static const ALIGN_ASSET(2) char aAqSpindlyFishSkel[] = "__OTR__ast_aquas/aAqSpindlyFishSkel";
+
+static const ALIGN_ASSET(2) char D_AQ_6026460[] = "__OTR__ast_aquas/D_AQ_6026460";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26528[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26528";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_265E8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_265E8";
+
+static const ALIGN_ASSET(2) char D_AQ_60266B0[] = "__OTR__ast_aquas/D_AQ_60266B0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26780[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26780";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26840[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26840";
+
+static const ALIGN_ASSET(2) char D_AQ_6026950[] = "__OTR__ast_aquas/D_AQ_6026950";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26A20[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26A20";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26AE0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26AE0";
+
+static const ALIGN_ASSET(2) char D_AQ_6026BF0[] = "__OTR__ast_aquas/D_AQ_6026BF0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26C48[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26C48";
+
+static const ALIGN_ASSET(2) char D_AQ_6026C80[] = "__OTR__ast_aquas/D_AQ_6026C80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26CD8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26CD8";
+
+static const ALIGN_ASSET(2) char D_AQ_6026D10[] = "__OTR__ast_aquas/D_AQ_6026D10";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26D68[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26D68";
+
+static const ALIGN_ASSET(2) char D_AQ_6026DA0[] = "__OTR__ast_aquas/D_AQ_6026DA0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26DF8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26DF8";
+
+static const ALIGN_ASSET(2) char D_AQ_6026E30[] = "__OTR__ast_aquas/D_AQ_6026E30";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26E88[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26E88";
+
+static const ALIGN_ASSET(2) char D_AQ_6026EC0[] = "__OTR__ast_aquas/D_AQ_6026EC0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_26F18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_26F18";
+
+static const ALIGN_ASSET(2) char D_AQ_6026F60[] = "__OTR__ast_aquas/D_AQ_6026F60";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27090[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27090";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27280[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27280";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_272E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_272E0";
+
+static const ALIGN_ASSET(2) char D_AQ_6027330[] = "__OTR__ast_aquas/D_AQ_6027330";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27388[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27388";
+
+static const ALIGN_ASSET(2) char D_AQ_60273C0[] = "__OTR__ast_aquas/D_AQ_60273C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27418[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27418";
+
+static const ALIGN_ASSET(2) char D_AQ_6027460[] = "__OTR__ast_aquas/D_AQ_6027460";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27538[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27538";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_275F8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_275F8";
+
+static const ALIGN_ASSET(2) char D_AQ_60276F0[] = "__OTR__ast_aquas/D_AQ_60276F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_277A0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_277A0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_277E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_277E0";
+
+static const ALIGN_ASSET(2) char D_AQ_6027810[] = "__OTR__ast_aquas/D_AQ_6027810";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_278C0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_278C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27900[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27900";
+
+static const ALIGN_ASSET(2) char D_AQ_6027930[] = "__OTR__ast_aquas/D_AQ_6027930";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27A18[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27A18";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27A78[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27A78";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27C58[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27C58";
+
+static const ALIGN_ASSET(2) char D_AQ_6027C90[] = "__OTR__ast_aquas/D_AQ_6027C90";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27D60[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27D60";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_27E50[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_27E50";
+
+static const ALIGN_ASSET(2) char D_AQ_6027FA0[] = "__OTR__ast_aquas/D_AQ_6027FA0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28068[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28068";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_281B8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_281B8";
+
+static const ALIGN_ASSET(2) char D_AQ_6028240[] = "__OTR__ast_aquas/D_AQ_6028240";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28310[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28310";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28400[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28400";
+
+static const ALIGN_ASSET(2) char D_AQ_6028550[] = "__OTR__ast_aquas/D_AQ_6028550";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28618[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28618";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28768[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28768";
+
+static const ALIGN_ASSET(2) char D_AQ_60287F0[] = "__OTR__ast_aquas/D_AQ_60287F0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28850[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28850";
+
+static const ALIGN_ASSET(2) char D_AQ_6028910[] = "__OTR__ast_aquas/D_AQ_6028910";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_289C0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_289C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28A20[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28A20";
+
+static const ALIGN_ASSET(2) char D_AQ_6028A80[] = "__OTR__ast_aquas/D_AQ_6028A80";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28B48[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28B48";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_28D48[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_28D48";
+
+static const ALIGN_ASSET(2) char D_AQ_6028F50[] = "__OTR__ast_aquas/D_AQ_6028F50";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29000[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29000";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29090[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29090";
+
+static const ALIGN_ASSET(2) char D_AQ_60290C0[] = "__OTR__ast_aquas/D_AQ_60290C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29120[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29120";
+
+static const ALIGN_ASSET(2) char D_AQ_60291B0[] = "__OTR__ast_aquas/D_AQ_60291B0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29208[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29208";
+
+static const ALIGN_ASSET(2) char D_AQ_6029240[] = "__OTR__ast_aquas/D_AQ_6029240";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_292A0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_292A0";
+
+static const ALIGN_ASSET(2) char D_AQ_6029330[] = "__OTR__ast_aquas/D_AQ_6029330";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_293E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_293E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29470[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29470";
+
+static const ALIGN_ASSET(2) char D_AQ_60294A0[] = "__OTR__ast_aquas/D_AQ_60294A0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_294F8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_294F8";
+
+static const ALIGN_ASSET(2) char D_AQ_6029530[] = "__OTR__ast_aquas/D_AQ_6029530";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_295E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_295E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29670[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29670";
+
+static const ALIGN_ASSET(2) char D_AQ_60296A0[] = "__OTR__ast_aquas/D_AQ_60296A0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29700[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29700";
+
+static const ALIGN_ASSET(2) char D_AQ_6029790[] = "__OTR__ast_aquas/D_AQ_6029790";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29840[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29840";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_298D0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_298D0";
+
+static const ALIGN_ASSET(2) char D_AQ_6029900[] = "__OTR__ast_aquas/D_AQ_6029900";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_29960[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_29960";
+
+static const ALIGN_ASSET(2) char D_AQ_602AC28[] = "__OTR__ast_aquas/D_AQ_602AC28";
+
+static const ALIGN_ASSET(2) char D_AQ_602AC40[] = "__OTR__ast_aquas/D_AQ_602AC40";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2AC60[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2AC60";
+
+static const ALIGN_ASSET(2) char D_AQ_602ACC0[] = "__OTR__ast_aquas/D_AQ_602ACC0";
+
+static const ALIGN_ASSET(2) char aAqRockDL[] = "__OTR__ast_aquas/aAqRockDL";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2B590[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2B590";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2B790[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2B790";
+
+static const ALIGN_ASSET(2) char D_AQ_602B9D4[] = "__OTR__ast_aquas/D_AQ_602B9D4";
+
+static const ALIGN_ASSET(2) char D_AQ_602BD60[] = "__OTR__ast_aquas/D_AQ_602BD60";
+
+static const ALIGN_ASSET(2) char D_AQ_602BF88[] = "__OTR__ast_aquas/D_AQ_602BF88";
+
+static const ALIGN_ASSET(2) char D_AQ_602C014[] = "__OTR__ast_aquas/D_AQ_602C014";
+
+static const ALIGN_ASSET(2) char D_AQ_602C030[] = "__OTR__ast_aquas/D_AQ_602C030";
+
+static const ALIGN_ASSET(2) char D_AQ_602C088[] = "__OTR__ast_aquas/D_AQ_602C088";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2C0E0[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2C0E0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2C120[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2C120";
+
+static const ALIGN_ASSET(2) char D_AQ_602C160[] = "__OTR__ast_aquas/D_AQ_602C160";
+
+static const ALIGN_ASSET(2) char D_AQ_602C960[] = "__OTR__ast_aquas/D_AQ_602C960";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_2D160[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_2D160";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D208[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D208";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D268[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D268";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_2D2C0[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_2D2C0";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D4A8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D4A8";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D528[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D528";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D728[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D728";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D828[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D828";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2D8A8[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2D8A8";
+
+static const ALIGN_ASSET(2) char D_AQ_602DA28[] = "__OTR__ast_aquas/D_AQ_602DA28";
+
+static const ALIGN_ASSET(2) char D_AQ_602DC28[] = "__OTR__ast_aquas/D_AQ_602DC28";
+
+static const ALIGN_ASSET(2) char D_AQ_602DE28[] = "__OTR__ast_aquas/D_AQ_602DE28";
+
+static const ALIGN_ASSET(2) char D_AQ_602E028[] = "__OTR__ast_aquas/D_AQ_602E028";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_gfx_2E230[] = "__OTR__ast_aquas/ast_aquas_seg6_gfx_2E230";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2E328[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2E328";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2E418[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2E418";
+
+static const ALIGN_ASSET(2) char ast_aquas_seg6_vtx_2E478[] = "__OTR__ast_aquas/ast_aquas_seg6_vtx_2E478";
+
+static const ALIGN_ASSET(2) char D_AQ_602E540[] = "__OTR__ast_aquas/D_AQ_602E540";
+
+static const ALIGN_ASSET(2) char D_AQ_602E584[] = "__OTR__ast_aquas/D_AQ_602E584";
+
+static const ALIGN_ASSET(2) char D_AQ_602E5C8[] = "__OTR__ast_aquas/D_AQ_602E5C8";
+
+static const char D_AQ_60308B8[] = "__OTR__ast_aquas/D_AQ_60308B8";
+
+static const ALIGN_ASSET(2) char aBoss301Hitbox[] = "__OTR__ast_aquas/aBoss301Hitbox";
+
+static const ALIGN_ASSET(2) char aAqShellHitbox[] = "__OTR__ast_aquas/aAqShellHitbox";
+
+static const ALIGN_ASSET(2) char aAqStarfishHitbox[] = "__OTR__ast_aquas/aAqStarfishHitbox";
+
+static const ALIGN_ASSET(2) char aAqOysterEvHitbox[] = "__OTR__ast_aquas/aAqOysterEvHitbox";
+
+static const ALIGN_ASSET(2) char D_AQ_6030B68[] = "__OTR__ast_aquas/D_AQ_6030B68";
+
+static const ALIGN_ASSET(2) char D_AQ_6030BAC[] = "__OTR__ast_aquas/D_AQ_6030BAC";
+
+static const ALIGN_ASSET(2) char aAqActor188Hitbox[] = "__OTR__ast_aquas/aAqActor188Hitbox";
+
+static const ALIGN_ASSET(2) char aAqActor255Hitbox[] = "__OTR__ast_aquas/aAqActor255Hitbox";
+
+static const ALIGN_ASSET(2) char aAqActor256Hitbox[] = "__OTR__ast_aquas/aAqActor256Hitbox";
+
+static const ALIGN_ASSET(2) char aAqActor257Hitbox[] = "__OTR__ast_aquas/aAqActor257Hitbox";
+
+static const ALIGN_ASSET(2) char aAqCoralReef1Hitbox[] = "__OTR__ast_aquas/aAqCoralReef1Hitbox";
+
+static const ALIGN_ASSET(2) char aAqTunnel1Hitbox[] = "__OTR__ast_aquas/aAqTunnel1Hitbox";
+
+static const ALIGN_ASSET(2) char aAqStoneColumnHitbox[] = "__OTR__ast_aquas/aAqStoneColumnHitbox";
+
+static const ALIGN_ASSET(2) char D_AQ_6030D3C[] = "__OTR__ast_aquas/D_AQ_6030D3C";
+
+static const ALIGN_ASSET(2) char D_AQ_6030D58[] = "__OTR__ast_aquas/D_AQ_6030D58";
+
+static const ALIGN_ASSET(2) char aAqArchHitbox[] = "__OTR__ast_aquas/aAqArchHitbox";
+
+static const ALIGN_ASSET(2) char aAqCoralReef2Hitbox[] = "__OTR__ast_aquas/aAqCoralReef2Hitbox";
+
+static const ALIGN_ASSET(2) char aAqRockHitbox[] = "__OTR__ast_aquas/aAqRockHitbox";
+
+static const ALIGN_ASSET(2) char aAqWall1Hitbox[] = "__OTR__ast_aquas/aAqWall1Hitbox";
+
+static const ALIGN_ASSET(2) char aAqRoofHitbox[] = "__OTR__ast_aquas/aAqRoofHitbox";
+
+static const ALIGN_ASSET(2) char aAqTunnel2Hitbox[] = "__OTR__ast_aquas/aAqTunnel2Hitbox";
+
+static const ALIGN_ASSET(2) char aAqBacoonHitbox[] = "__OTR__ast_aquas/aAqBacoonHitbox";
+
+static const ALIGN_ASSET(2) char aAqAnglerFishHitbox[] = "__OTR__ast_aquas/aAqAnglerFishHitbox";
+
+static const ALIGN_ASSET(2) char aAqGaroaHitbox[] = "__OTR__ast_aquas/aAqGaroaHitbox";
+
+static const ALIGN_ASSET(2) char aAqSculpinHitbox[] = "__OTR__ast_aquas/aAqSculpinHitbox";
+
+static const ALIGN_ASSET(2) char aAqSpindlyFishHitbox[] = "__OTR__ast_aquas/aAqSpindlyFishHitbox";
+
+static const ALIGN_ASSET(2) char aAqSquidHitbox[] = "__OTR__ast_aquas/aAqSquidHitbox";
+
+static const ALIGN_ASSET(2) char D_AQ_60314AC[] = "__OTR__ast_aquas/D_AQ_60314AC";
+
+static const ALIGN_ASSET(2) char aAqOysterHitbox[] = "__OTR__ast_aquas/aAqOysterHitbox";
+
+static const ALIGN_ASSET(2) char D_AQ_60314E4[] = "__OTR__ast_aquas/D_AQ_60314E4";
+
+static const ALIGN_ASSET(2) char aAqBoulderHitbox[] = "__OTR__ast_aquas/aAqBoulderHitbox";
+
+static const ALIGN_ASSET(2) char D_AQ_603151C[] = "__OTR__ast_aquas/D_AQ_603151C";
+
+static const ALIGN_ASSET(2) char aAqCoralHitbox[] = "__OTR__ast_aquas/aAqCoralHitbox";
+
+static const ALIGN_ASSET(2) char aAqJellyfishHitbox[] = "__OTR__ast_aquas/aAqJellyfishHitbox";
+
+static const ALIGN_ASSET(2) char aAqFishGroupHitbox[] = "__OTR__ast_aquas/aAqFishGroupHitbox";
+
+static const ALIGN_ASSET(2) char D_AQ_603158C[] = "__OTR__ast_aquas/D_AQ_603158C";
+
+static const ALIGN_ASSET(2) char D_AQ_6031D90[] = "__OTR__ast_aquas/D_AQ_6031D90";
+
+static const ALIGN_ASSET(2) char D_AQ_6031FB0[] = "__OTR__ast_aquas/D_AQ_6031FB0";
+
+static const ALIGN_ASSET(2) char D_AQ_6031FE0[] = "__OTR__ast_aquas/D_AQ_6031FE0";
+
+static const ALIGN_ASSET(2) char D_AQ_603204C[] = "__OTR__ast_aquas/D_AQ_603204C";
+
+static const ALIGN_ASSET(2) char D_AQ_60320B8[] = "__OTR__ast_aquas/D_AQ_60320B8";
+
+static const ALIGN_ASSET(2) char D_AQ_603216C[] = "__OTR__ast_aquas/D_AQ_603216C";
+
+static const ALIGN_ASSET(2) char D_AQ_6032388[] = "__OTR__ast_aquas/D_AQ_6032388";
+
+static const ALIGN_ASSET(2) char D_AQ_6032430[] = "__OTR__ast_aquas/D_AQ_6032430";
+
diff --git a/include/assets/ast_area_6.h b/include/assets/ast_area_6.h
new file mode 100644
index 00000000..b0549287
--- /dev/null
+++ b/include/assets/ast_area_6.h
@@ -0,0 +1,392 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aA6TitleCardTex[] = "__OTR__ast_area_6/aA6TitleCardTex";
+
+static const ALIGN_ASSET(2) char D_A6_6000B60[] = "__OTR__ast_area_6/D_A6_6000B60";
+
+static const ALIGN_ASSET(2) char D_A6_6001A80[] = "__OTR__ast_area_6/D_A6_6001A80";
+
+static const ALIGN_ASSET(2) char D_A6_60029A0[] = "__OTR__ast_area_6/D_A6_60029A0";
+
+static const ALIGN_ASSET(2) char D_A6_60038C0[] = "__OTR__ast_area_6/D_A6_60038C0";
+
+static const ALIGN_ASSET(2) char D_A6_60047E0[] = "__OTR__ast_area_6/D_A6_60047E0";
+
+static const ALIGN_ASSET(2) char D_A6_6005700[] = "__OTR__ast_area_6/D_A6_6005700";
+
+static const ALIGN_ASSET(2) char D_A6_6006620[] = "__OTR__ast_area_6/D_A6_6006620";
+
+static const ALIGN_ASSET(2) char D_A6_6006A40[] = "__OTR__ast_area_6/D_A6_6006A40";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_6A50[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_6A50";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_6ED8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_6ED8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_70B8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_70B8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7298[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7298";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7498[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7498";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7698[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7698";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7898[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7898";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7A98[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7A98";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7C98[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7C98";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7DB8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7DB8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_7FA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_7FA8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8188[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8188";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8378[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8378";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8498[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8498";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8698[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8698";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_8888[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_8888";
+
+static const ALIGN_ASSET(2) char D_A6_6008918[] = "__OTR__ast_area_6/D_A6_6008918";
+
+static const ALIGN_ASSET(2) char D_A6_6008B18[] = "__OTR__ast_area_6/D_A6_6008B18";
+
+static const ALIGN_ASSET(2) char D_A6_6008D18[] = "__OTR__ast_area_6/D_A6_6008D18";
+
+static const ALIGN_ASSET(2) char D_A6_6008F18[] = "__OTR__ast_area_6/D_A6_6008F18";
+
+static const ALIGN_ASSET(2) char D_A6_6009718[] = "__OTR__ast_area_6/D_A6_6009718";
+
+static const ALIGN_ASSET(2) char D_A6_6009B18[] = "__OTR__ast_area_6/D_A6_6009B18";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_A320[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_A320";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_A7A8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_A7A8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_A988[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_A988";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_AB68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_AB68";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_AD68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_AD68";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_AF68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_AF68";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B168[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B168";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B368[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B368";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B568[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B568";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B688[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B688";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_B878[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_B878";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BA58[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BA58";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BC48[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BC48";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BD68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BD68";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_BF68[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_BF68";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_C158[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_C158";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_C1F0[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_C1F0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_C678[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_C678";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_C858[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_C858";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_CA38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_CA38";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_CC38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_CC38";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_CE38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_CE38";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D038[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D038";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D238[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D238";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D438[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D438";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D558[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D558";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D748[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D748";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_D928[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_D928";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_DB18[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_DB18";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_DC38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_DC38";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_DE38[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_DE38";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E028[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E028";
+
+static const ALIGN_ASSET(2) char aA6UmbraStationDL[] = "__OTR__ast_area_6/aA6UmbraStationDL";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E2D8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E2D8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E448[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E448";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E648[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E648";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E7E8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E7E8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_E9E8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_E9E8";
+
+static const ALIGN_ASSET(2) char D_A6_600EBE8[] = "__OTR__ast_area_6/D_A6_600EBE8";
+
+static const ALIGN_ASSET(2) char D_A6_600EFE8[] = "__OTR__ast_area_6/D_A6_600EFE8";
+
+static const ALIGN_ASSET(2) char D_A6_600F1F0[] = "__OTR__ast_area_6/D_A6_600F1F0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F350[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F350";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F540[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F540";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F610[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F610";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_F6A0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_F6A0";
+
+static const ALIGN_ASSET(2) char D_A6_600F850[] = "__OTR__ast_area_6/D_A6_600F850";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_gfx_10050[] = "__OTR__ast_area_6/ast_area_6_seg6_gfx_10050";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10338[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10338";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10438[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10438";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10638[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10638";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_106C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_106C8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10788[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10788";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10978[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10978";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_10A08[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_10A08";
+
+static const ALIGN_ASSET(2) char D_A6_6010A88[] = "__OTR__ast_area_6/D_A6_6010A88";
+
+static const ALIGN_ASSET(2) char D_A6_6011288[] = "__OTR__ast_area_6/D_A6_6011288";
+
+static const ALIGN_ASSET(2) char D_A6_6011688[] = "__OTR__ast_area_6/D_A6_6011688";
+
+static const ALIGN_ASSET(2) char D_A6_6011888[] = "__OTR__ast_area_6/D_A6_6011888";
+
+static const ALIGN_ASSET(2) char D_A6_6011910[] = "__OTR__ast_area_6/D_A6_6011910";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_119C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_119C8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_11BA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_11BA8";
+
+static const ALIGN_ASSET(2) char D_A6_6011D48[] = "__OTR__ast_area_6/D_A6_6011D48";
+
+static const ALIGN_ASSET(2) char D_A6_6012550[] = "__OTR__ast_area_6/D_A6_6012550";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12600[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12600";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12800[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12800";
+
+static const ALIGN_ASSET(2) char D_A6_6012840[] = "__OTR__ast_area_6/D_A6_6012840";
+
+static const ALIGN_ASSET(2) char aA6HarlockFrigateDL[] = "__OTR__ast_area_6/aA6HarlockFrigateDL";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12D78[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12D78";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_12F78[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_12F78";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_130C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_130C8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_132C8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_132C8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13338[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13338";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13478[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13478";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_134D8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_134D8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_136D8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_136D8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_138B8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_138B8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13AB8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13AB8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_13CA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_13CA8";
+
+static const ALIGN_ASSET(2) char D_A6_6013CD8[] = "__OTR__ast_area_6/D_A6_6013CD8";
+
+static const ALIGN_ASSET(2) char D_A6_60144D8[] = "__OTR__ast_area_6/D_A6_60144D8";
+
+static const ALIGN_ASSET(2) char D_A6_6014CD8[] = "__OTR__ast_area_6/D_A6_6014CD8";
+
+static const ALIGN_ASSET(2) char D_A6_60154D8[] = "__OTR__ast_area_6/D_A6_60154D8";
+
+static const ALIGN_ASSET(2) char D_A6_6015CD8[] = "__OTR__ast_area_6/D_A6_6015CD8";
+
+static const ALIGN_ASSET(2) char D_A6_6015EE0[] = "__OTR__ast_area_6/D_A6_6015EE0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_15FA8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_15FA8";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16098[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16098";
+
+static const ALIGN_ASSET(2) char aA6ZeramClassCruiserDL[] = "__OTR__ast_area_6/aA6ZeramClassCruiserDL";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_164E0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_164E0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_166D0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_166D0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_168D0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_168D0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16AD0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16AD0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16B80[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16B80";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16C80[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16C80";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_16E00[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_16E00";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_17000[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_17000";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_17080[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_17080";
+
+static const ALIGN_ASSET(2) char D_A6_6017120[] = "__OTR__ast_area_6/D_A6_6017120";
+
+static const ALIGN_ASSET(2) char D_A6_6017920[] = "__OTR__ast_area_6/D_A6_6017920";
+
+static const ALIGN_ASSET(2) char D_A6_6017B20[] = "__OTR__ast_area_6/D_A6_6017B20";
+
+static const ALIGN_ASSET(2) char D_A6_6017D20[] = "__OTR__ast_area_6/D_A6_6017D20";
+
+static const ALIGN_ASSET(2) char D_A6_6017F20[] = "__OTR__ast_area_6/D_A6_6017F20";
+
+static const ALIGN_ASSET(2) char D_A6_6018720[] = "__OTR__ast_area_6/D_A6_6018720";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_187B8[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_187B8";
+
+static const ALIGN_ASSET(2) char D_A6_60187F8[] = "__OTR__ast_area_6/D_A6_60187F8";
+
+static const ALIGN_ASSET(2) char D_A6_6018878[] = "__OTR__ast_area_6/D_A6_6018878";
+
+static const ALIGN_ASSET(2) char D_A6_6018994[] = "__OTR__ast_area_6/D_A6_6018994";
+
+static const ALIGN_ASSET(2) char D_A6_6018BA0[] = "__OTR__ast_area_6/D_A6_6018BA0";
+
+static const ALIGN_ASSET(2) char aA6NinjinMissileDL[] = "__OTR__ast_area_6/aA6NinjinMissileDL";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_18D30[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_18D30";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_18DD0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_18DD0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_18FD0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_18FD0";
+
+static const ALIGN_ASSET(2) char D_A6_6019130[] = "__OTR__ast_area_6/D_A6_6019130";
+
+static const ALIGN_ASSET(2) char D_A6_6019330[] = "__OTR__ast_area_6/D_A6_6019330";
+
+static const ALIGN_ASSET(2) char D_A6_6019530[] = "__OTR__ast_area_6/D_A6_6019530";
+
+static const ALIGN_ASSET(2) char aA6RocketDL[] = "__OTR__ast_area_6/aA6RocketDL";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19880[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19880";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19940[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19940";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19AA0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19AA0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_19AE0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_19AE0";
+
+static const ALIGN_ASSET(2) char D_A6_6019B20[] = "__OTR__ast_area_6/D_A6_6019B20";
+
+static const ALIGN_ASSET(2) char D_A6_6019D20[] = "__OTR__ast_area_6/D_A6_6019D20";
+
+static const ALIGN_ASSET(2) char D_A6_6019F20[] = "__OTR__ast_area_6/D_A6_6019F20";
+
+static const ALIGN_ASSET(2) char aA6SpaceMineDL[] = "__OTR__ast_area_6/aA6SpaceMineDL";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1A1B0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1A1B0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1A1E0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1A1E0";
+
+static const ALIGN_ASSET(2) char D_A6_601A220[] = "__OTR__ast_area_6/D_A6_601A220";
+
+static const ALIGN_ASSET(2) char D_A6_601AA20[] = "__OTR__ast_area_6/D_A6_601AA20";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1AA78[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1AA78";
+
+static const ALIGN_ASSET(2) char D_A6_601AAA8[] = "__OTR__ast_area_6/D_A6_601AAA8";
+
+static const ALIGN_ASSET(2) char D_A6_601B2B0[] = "__OTR__ast_area_6/D_A6_601B2B0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1B308[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1B308";
+
+static const ALIGN_ASSET(2) char D_A6_601B338[] = "__OTR__ast_area_6/D_A6_601B338";
+
+static const ALIGN_ASSET(2) char D_A6_601BB40[] = "__OTR__ast_area_6/D_A6_601BB40";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BD20[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BD20";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BD60[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BD60";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BDA0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BDA0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BDE0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BDE0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BE20[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BE20";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BE60[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BE60";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BEA0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BEA0";
+
+static const ALIGN_ASSET(2) char ast_area_6_seg6_vtx_1BEE0[] = "__OTR__ast_area_6/ast_area_6_seg6_vtx_1BEE0";
+
+static const ALIGN_ASSET(2) char D_A6_601BF20[] = "__OTR__ast_area_6/D_A6_601BF20";
+
+static const ALIGN_ASSET(2) char D_A6_601CF20[] = "__OTR__ast_area_6/D_A6_601CF20";
+
+static const ALIGN_ASSET(2) char D_A6_601DF20[] = "__OTR__ast_area_6/D_A6_601DF20";
+
+static const ALIGN_ASSET(2) char D_A6_601EF20[] = "__OTR__ast_area_6/D_A6_601EF20";
+
+static const ALIGN_ASSET(2) char D_A6_601FF20[] = "__OTR__ast_area_6/D_A6_601FF20";
+
+static const ALIGN_ASSET(2) char D_A6_6020F20[] = "__OTR__ast_area_6/D_A6_6020F20";
+
+static const ALIGN_ASSET(2) char D_A6_6021F20[] = "__OTR__ast_area_6/D_A6_6021F20";
+
+static const ALIGN_ASSET(2) char D_A6_6022F20[] = "__OTR__ast_area_6/D_A6_6022F20";
+
+static const ALIGN_ASSET(2) char D_A6_6023F20[] = "__OTR__ast_area_6/D_A6_6023F20";
+
+static const ALIGN_ASSET(2) char D_A6_6023F64[] = "__OTR__ast_area_6/D_A6_6023F64";
+
+static const char D_A6_6027F50[] = "__OTR__ast_area_6/D_A6_6027F50";
+
+static const ALIGN_ASSET(2) char aA6UmbraStationHitbox[] = "__OTR__ast_area_6/aA6UmbraStationHitbox";
+
+static const ALIGN_ASSET(2) char aA6HarlockFrigateHitbox[] = "__OTR__ast_area_6/aA6HarlockFrigateHitbox";
+
+static const ALIGN_ASSET(2) char aA6ZeramClassCruiserHitbox[] = "__OTR__ast_area_6/aA6ZeramClassCruiserHitbox";
+
+static const ALIGN_ASSET(2) char aA6GorgonHitbox[] = "__OTR__ast_area_6/aA6GorgonHitbox";
+
+static const ALIGN_ASSET(2) char D_A6_6028578[] = "__OTR__ast_area_6/D_A6_6028578";
+
+static const ALIGN_ASSET(2) char D_A6_6028760[] = "__OTR__ast_area_6/D_A6_6028760";
+
+static const ALIGN_ASSET(2) char D_A6_60287A4[] = "__OTR__ast_area_6/D_A6_60287A4";
+
+static const char D_A6_60289FC[] = "__OTR__ast_area_6/D_A6_60289FC";
+
diff --git a/include/assets/ast_arwing.h b/include/assets/ast_arwing.h
new file mode 100644
index 00000000..e8439147
--- /dev/null
+++ b/include/assets/ast_arwing.h
@@ -0,0 +1,373 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aArwingLifeIconTex[] = "__OTR__ast_arwing/aArwingLifeIconTex";
+
+static const ALIGN_ASSET(2) char aArwingLifeIconTLUT[] = "__OTR__ast_arwing/aArwingLifeIconTLUT";
+
+static const ALIGN_ASSET(2) char aAwFoxHeadDL[] = "__OTR__ast_arwing/aAwFoxHeadDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_668[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_668";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_868[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_868";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A68[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A68";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_C68[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_C68";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_D58[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_D58";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_F48[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_F48";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_1148[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_1148";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_12F8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_12F8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_1418[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_1418";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15D8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17D8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_19D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_19D8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_1AC8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_1AC8";
+
+static const ALIGN_ASSET(2) char aAwJamesHeadDL[] = "__OTR__ast_arwing/aAwJamesHeadDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_22E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_22E0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_24C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_24C0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_26C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_26C0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_28C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_28C0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2980[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2980";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2B80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2B80";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2D80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2D80";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_2F00[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_2F00";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_3020[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_3020";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_31D0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_31D0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_33D0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_33D0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_35D0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_35D0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_3660[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_3660";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_3820[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_3820";
+
+static const ALIGN_ASSET(2) char D_arwing_3003960[] = "__OTR__ast_arwing/D_arwing_3003960";
+
+static const ALIGN_ASSET(2) char D_arwing_30039E0[] = "__OTR__ast_arwing/D_arwing_30039E0";
+
+static const ALIGN_ASSET(2) char D_arwing_3003A60[] = "__OTR__ast_arwing/D_arwing_3003A60";
+
+static const ALIGN_ASSET(2) char D_arwing_3003AE0[] = "__OTR__ast_arwing/D_arwing_3003AE0";
+
+static const ALIGN_ASSET(2) char D_arwing_3003B60[] = "__OTR__ast_arwing/D_arwing_3003B60";
+
+static const ALIGN_ASSET(2) char D_arwing_3003BE0[] = "__OTR__ast_arwing/D_arwing_3003BE0";
+
+static const ALIGN_ASSET(2) char D_arwing_3003C60[] = "__OTR__ast_arwing/D_arwing_3003C60";
+
+static const ALIGN_ASSET(2) char aAwPeppyHeadDL[] = "__OTR__ast_arwing/aAwPeppyHeadDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4300[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4300";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_44F0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_44F0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_46E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_46E0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_48E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_48E0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4A30[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4A30";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4B50[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4B50";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4D30[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4D30";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4D80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4D80";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4F80[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4F80";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_4FE0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_4FE0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_51E0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_51E0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_53C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_53C0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_55C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_55C0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_57A0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_57A0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_5950[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_5950";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_5A50[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_5A50";
+
+static const ALIGN_ASSET(2) char aAwSlippyHeadDL[] = "__OTR__ast_arwing/aAwSlippyHeadDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6050[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6050";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6090[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6090";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6170[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6170";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6370[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6370";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_64F0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_64F0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_66B0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_66B0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_68B0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_68B0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6AB0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6AB0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6C90[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6C90";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_6E90[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_6E90";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7070[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7070";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7170[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7170";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7370[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7370";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7470[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7470";
+
+static const ALIGN_ASSET(2) char D_arwing_30074D0[] = "__OTR__ast_arwing/D_arwing_30074D0";
+
+static const ALIGN_ASSET(2) char D_arwing_3007550[] = "__OTR__ast_arwing/D_arwing_3007550";
+
+static const ALIGN_ASSET(2) char D_arwing_30075D0[] = "__OTR__ast_arwing/D_arwing_30075D0";
+
+static const ALIGN_ASSET(2) char aArwingItemLasersDL[] = "__OTR__ast_arwing/aArwingItemLasersDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_7A20[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_7A20";
+
+static const ALIGN_ASSET(2) char D_arwing_3008960[] = "__OTR__ast_arwing/D_arwing_3008960";
+
+static const ALIGN_ASSET(2) char D_arwing_3009960[] = "__OTR__ast_arwing/D_arwing_3009960";
+
+static const ALIGN_ASSET(2) char aAwBodyDL[] = "__OTR__ast_arwing/aAwBodyDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A068[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A068";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A198[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A198";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A398[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A398";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A598[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A598";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A5C8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A5C8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A648[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A648";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A678[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A678";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A6D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A6D8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A798[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A798";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A858[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A858";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A8E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A8E8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_A928[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_A928";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AAA8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AAA8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AAD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AAD8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AB38[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AB38";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_ABD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_ABD8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_AC18[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_AC18";
+
+static const ALIGN_ASSET(2) char D_arwing_300AC48[] = "__OTR__ast_arwing/D_arwing_300AC48";
+
+static const ALIGN_ASSET(2) char D_arwing_300B448[] = "__OTR__ast_arwing/D_arwing_300B448";
+
+static const ALIGN_ASSET(2) char D_arwing_300BC48[] = "__OTR__ast_arwing/D_arwing_300BC48";
+
+static const ALIGN_ASSET(2) char D_arwing_300C448[] = "__OTR__ast_arwing/D_arwing_300C448";
+
+static const ALIGN_ASSET(2) char D_arwing_300CC48[] = "__OTR__ast_arwing/D_arwing_300CC48";
+
+static const ALIGN_ASSET(2) char D_arwing_300D448[] = "__OTR__ast_arwing/D_arwing_300D448";
+
+static const ALIGN_ASSET(2) char D_arwing_300DC48[] = "__OTR__ast_arwing/D_arwing_300DC48";
+
+static const ALIGN_ASSET(2) char D_arwing_300E448[] = "__OTR__ast_arwing/D_arwing_300E448";
+
+static const ALIGN_ASSET(2) char D_arwing_300EC48[] = "__OTR__ast_arwing/D_arwing_300EC48";
+
+static const ALIGN_ASSET(2) char D_arwing_300F448[] = "__OTR__ast_arwing/D_arwing_300F448";
+
+static const ALIGN_ASSET(2) char D_arwing_3010448[] = "__OTR__ast_arwing/D_arwing_3010448";
+
+static const ALIGN_ASSET(2) char aAwLaserGun2L[] = "__OTR__ast_arwing/aAwLaserGun2L";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11550[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11550";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11650[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11650";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_116C0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_116C0";
+
+static const ALIGN_ASSET(2) char aAwLaserGun1DL[] = "__OTR__ast_arwing/aAwLaserGun1DL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11820[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11820";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11890[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11890";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_11990[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_11990";
+
+static const ALIGN_ASSET(2) char D_arwing_30119F0[] = "__OTR__ast_arwing/D_arwing_30119F0";
+
+static const ALIGN_ASSET(2) char D_arwing_30121F0[] = "__OTR__ast_arwing/D_arwing_30121F0";
+
+static const ALIGN_ASSET(2) char D_arwing_30129F0[] = "__OTR__ast_arwing/D_arwing_30129F0";
+
+static const ALIGN_ASSET(2) char aAwCockpitViewDL[] = "__OTR__ast_arwing/aAwCockpitViewDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13468[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13468";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13498[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13498";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_134C8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_134C8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_134F8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_134F8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13538[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13538";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13578[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13578";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_136D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_136D8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_13758[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_13758";
+
+static const ALIGN_ASSET(2) char D_arwing_30137E8[] = "__OTR__ast_arwing/D_arwing_30137E8";
+
+static const ALIGN_ASSET(2) char D_arwing_3013FE8[] = "__OTR__ast_arwing/D_arwing_3013FE8";
+
+static const ALIGN_ASSET(2) char D_arwing_30147E8[] = "__OTR__ast_arwing/D_arwing_30147E8";
+
+static const ALIGN_ASSET(2) char aAwRightWingBrokenDL[] = "__OTR__ast_arwing/aAwRightWingBrokenDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_14D00[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_14D00";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_14DF0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_14DF0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_14EF0[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_14EF0";
+
+static const ALIGN_ASSET(2) char D_arwing_3014F20[] = "__OTR__ast_arwing/D_arwing_3014F20";
+
+static const ALIGN_ASSET(2) char aAwLeftWingBrokenDL[] = "__OTR__ast_arwing/aAwLeftWingBrokenDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15230[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15230";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15340[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15340";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15470[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15470";
+
+static const ALIGN_ASSET(2) char aAwFlap2DL[] = "__OTR__ast_arwing/aAwFlap2DL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15508[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15508";
+
+static const ALIGN_ASSET(2) char aAwFlap1DL[] = "__OTR__ast_arwing/aAwFlap1DL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15648[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15648";
+
+static const ALIGN_ASSET(2) char aAwFlap3DL[] = "__OTR__ast_arwing/aAwFlap3DL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15798[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15798";
+
+static const ALIGN_ASSET(2) char aAwFlap4DL[] = "__OTR__ast_arwing/aAwFlap4DL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_158E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_158E8";
+
+static const ALIGN_ASSET(2) char D_arwing_3015AF4[] = "__OTR__ast_arwing/D_arwing_3015AF4";
+
+static const ALIGN_ASSET(2) char D_arwing_3015C28[] = "__OTR__ast_arwing/D_arwing_3015C28";
+
+static const ALIGN_ASSET(2) char D_arwing_3015D68[] = "__OTR__ast_arwing/D_arwing_3015D68";
+
+static const ALIGN_ASSET(2) char aAwRightWingDL[] = "__OTR__ast_arwing/aAwRightWingDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_15E48[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_15E48";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16048[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16048";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16238[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16238";
+
+static const ALIGN_ASSET(2) char D_arwing_30163C4[] = "__OTR__ast_arwing/D_arwing_30163C4";
+
+static const ALIGN_ASSET(2) char D_arwing_3016610[] = "__OTR__ast_arwing/D_arwing_3016610";
+
+static const ALIGN_ASSET(2) char aAwLeftWingDL[] = "__OTR__ast_arwing/aAwLeftWingDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16728[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16728";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16928[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16928";
+
+static const ALIGN_ASSET(2) char D_arwing_3016B30[] = "__OTR__ast_arwing/D_arwing_3016B30";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_16B88[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_16B88";
+
+static const ALIGN_ASSET(2) char D_arwing_3016BB8[] = "__OTR__ast_arwing/D_arwing_3016BB8";
+
+static const ALIGN_ASSET(2) char aAwFalcoHeadDL[] = "__OTR__ast_arwing/aAwFalcoHeadDL";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_171E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_171E8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_172C8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_172C8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_173E8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_173E8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_175A8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_175A8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17798[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17798";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_178D8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_178D8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17AD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17AD8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17CD8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17CD8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_17E68[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_17E68";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18068[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18068";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18118[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18118";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_181F8[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_181F8";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18238[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18238";
+
+static const ALIGN_ASSET(2) char D_arwing_30182C8[] = "__OTR__ast_arwing/D_arwing_30182C8";
+
+static const ALIGN_ASSET(2) char D_arwing_3018348[] = "__OTR__ast_arwing/D_arwing_3018348";
+
+static const ALIGN_ASSET(2) char D_arwing_30183D0[] = "__OTR__ast_arwing/D_arwing_30183D0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_18438[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_18438";
+
+static const ALIGN_ASSET(2) char aWindshieldClouldReflextionTex[] = "__OTR__ast_arwing/aWindshieldClouldReflextionTex";
+
+static const ALIGN_ASSET(2) char D_ARWING_BLOB_1[] = "__OTR__ast_arwing/D_ARWING_BLOB_1";
+
+static const ALIGN_ASSET(2) char D_arwing_30194E0[] = "__OTR__ast_arwing/D_arwing_30194E0";
+
+static const ALIGN_ASSET(2) char ast_arwing_seg3_vtx_19548[] = "__OTR__ast_arwing/ast_arwing_seg3_vtx_19548";
+
+static const ALIGN_ASSET(2) char D_arwing_30195E8[] = "__OTR__ast_arwing/D_arwing_30195E8";
+
diff --git a/include/assets/ast_audio.h b/include/assets/ast_audio.h
new file mode 100644
index 00000000..b90f4530
--- /dev/null
+++ b/include/assets/ast_audio.h
@@ -0,0 +1,8870 @@
+#pragma once
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_200_B_0[] = "__OTR__ast_audio/Sample_P_0_O_200_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_210[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_210";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_260";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_270_B_0[] = "__OTR__ast_audio/Sample_P_0_O_270_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2D0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_340[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_340";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_350_B_0[] = "__OTR__ast_audio/Sample_P_0_O_350_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_360[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_3E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_3E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_3F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_3F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_440";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_470_B_0[] = "__OTR__ast_audio/Sample_P_0_O_470_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_480[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4D0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_500_B_0[] = "__OTR__ast_audio/Sample_P_0_O_500_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_510[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_510";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_560";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_590_B_0[] = "__OTR__ast_audio/Sample_P_0_O_590_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_5A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_5A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5F0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_620_B_0[] = "__OTR__ast_audio/Sample_P_0_O_620_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_630[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_630";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_680[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_680";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_690_B_0[] = "__OTR__ast_audio/Sample_P_0_O_690_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6F0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_720_B_0[] = "__OTR__ast_audio/Sample_P_0_O_720_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_730[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_730";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_780";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_7B0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_7B0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_7C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_7C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_810[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_810";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_820_B_0[] = "__OTR__ast_audio/Sample_P_0_O_820_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_830[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_830";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_880";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_890_B_0[] = "__OTR__ast_audio/Sample_P_0_O_890_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_8A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_8A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8F0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_920_B_0[] = "__OTR__ast_audio/Sample_P_0_O_920_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_930[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_930";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_980";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_990_B_0[] = "__OTR__ast_audio/Sample_P_0_O_990_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_9A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_9A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9F0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_A00_B_0[] = "__OTR__ast_audio/Sample_P_0_O_A00_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_A10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_A10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A60";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_A70_B_0[] = "__OTR__ast_audio/Sample_P_0_O_A70_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_A80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AD0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_AE0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_AE0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_AF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_AF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B40";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_B50_B_0[] = "__OTR__ast_audio/Sample_P_0_O_B50_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_B60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BB0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_BC0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_BC0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_BD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_BD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_C20";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_C30_B_0[] = "__OTR__ast_audio/Sample_P_0_O_C30_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_C40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_C90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_C90";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_CA0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_CA0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_CB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_CB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D00";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_D10_B_0[] = "__OTR__ast_audio/Sample_P_0_O_D10_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_D20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_DB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_DB0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_DC0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_DC0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_DD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_DD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E20";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_E30_B_0[] = "__OTR__ast_audio/Sample_P_0_O_E30_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E90";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_EA0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_EA0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_EB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_EB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F00";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_F30_B_0[] = "__OTR__ast_audio/Sample_P_0_O_F30_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F90";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_FC0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_FC0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_FD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_FD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1020";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1050_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1050_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_10E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_10E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_10F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_10F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1140";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1150_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1150_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1160[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_11E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_11E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_11F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_11F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1240";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1250_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1250_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_12C0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_12C0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_12D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_12D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1320[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1320";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1330_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1330_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1340[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1390[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1390";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_13C0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_13C0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_13D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_13D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1420[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1420";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1450_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1450_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_14C0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_14C0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_14D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_14D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1520";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1530_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1530_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1590[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1590";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_15C0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_15C0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_15D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_15D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1620[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1620";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1630_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1630_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1690[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1690";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_16C0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_16C0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1720";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1750_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1750_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_17E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_17E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1840";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1870_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1870_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18D0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_18E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_18E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1940";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1970_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1970_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19D0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_19E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_19E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A40";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1A70_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1A70_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1AD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1AD0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1AE0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1AE0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1AF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1AF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B40";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1B70_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1B70_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BD0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1C00_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1C00_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C60";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1C90_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1C90_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1CA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1CF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1CF0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1D00_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1D00_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D60";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1D90_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1D90_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1DA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1DF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1DF0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1E00_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1E00_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1E10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1E10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1E60";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1E70_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1E70_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1E80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1ED0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1ED0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1F00_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1F00_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1F10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1F10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1F60";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_1F90_B_0[] = "__OTR__ast_audio/Sample_P_0_O_1F90_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1FF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1FF0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2020_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2020_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2030[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2030";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2080";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_20B0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_20B0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_20C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_20C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2110[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2110";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2140_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2140_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2150[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_21A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_21A0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_21B0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_21B0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_21C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_21C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2210[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2210";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2220_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2220_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2230[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2230";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2280";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2290_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2290_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_22A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_22A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_22F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_22F0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2300_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2300_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2310[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2310";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2360[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2360";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2370_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2370_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2380[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_23D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_23D0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_23E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_23E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_23F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_23F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2440";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2450_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2450_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_24B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_24B0";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_24E0_B_0[] = "__OTR__ast_audio/Sample_P_0_O_24E0_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_24F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_24F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_2540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_2540";
+
+static const ALIGN_ASSET(2) char Sample_P_0_O_2550_B_0[] = "__OTR__ast_audio/Sample_P_0_O_2550_B_0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_2560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_2560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_25B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_25B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_25C0[] = "__OTR__ast_audio/ast_audio_v1_envelope_25C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_25E0[] = "__OTR__ast_audio/ast_audio_v1_envelope_25E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2600[] = "__OTR__ast_audio/ast_audio_v1_instrument_2600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2620[] = "__OTR__ast_audio/ast_audio_v1_instrument_2620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2640[] = "__OTR__ast_audio/ast_audio_v1_instrument_2640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2660[] = "__OTR__ast_audio/ast_audio_v1_instrument_2660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2680[] = "__OTR__ast_audio/ast_audio_v1_instrument_2680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_26A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_26A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_26C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_26C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_26E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_26E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2700[] = "__OTR__ast_audio/ast_audio_v1_instrument_2700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2720[] = "__OTR__ast_audio/ast_audio_v1_instrument_2720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2740[] = "__OTR__ast_audio/ast_audio_v1_instrument_2740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2760[] = "__OTR__ast_audio/ast_audio_v1_instrument_2760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2780[] = "__OTR__ast_audio/ast_audio_v1_instrument_2780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_27A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_27A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_27C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_27C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_27E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_27E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2800[] = "__OTR__ast_audio/ast_audio_v1_instrument_2800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2820[] = "__OTR__ast_audio/ast_audio_v1_instrument_2820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2840[] = "__OTR__ast_audio/ast_audio_v1_instrument_2840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2860[] = "__OTR__ast_audio/ast_audio_v1_instrument_2860";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2880[] = "__OTR__ast_audio/ast_audio_v1_instrument_2880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_28A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_28A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_28C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_28C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_28E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_28E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2900[] = "__OTR__ast_audio/ast_audio_v1_instrument_2900";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2920[] = "__OTR__ast_audio/ast_audio_v1_instrument_2920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2940[] = "__OTR__ast_audio/ast_audio_v1_instrument_2940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2960[] = "__OTR__ast_audio/ast_audio_v1_instrument_2960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2980[] = "__OTR__ast_audio/ast_audio_v1_instrument_2980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_29A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_29A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_29C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_29C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_29E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_29E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2A00[] = "__OTR__ast_audio/ast_audio_v1_instrument_2A00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2A20[] = "__OTR__ast_audio/ast_audio_v1_instrument_2A20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2A40[] = "__OTR__ast_audio/ast_audio_v1_instrument_2A40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2A60[] = "__OTR__ast_audio/ast_audio_v1_instrument_2A60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2A80[] = "__OTR__ast_audio/ast_audio_v1_instrument_2A80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2AA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2AA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2AC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2AC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2AE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2AE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2B00[] = "__OTR__ast_audio/ast_audio_v1_instrument_2B00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2B20[] = "__OTR__ast_audio/ast_audio_v1_instrument_2B20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2B40[] = "__OTR__ast_audio/ast_audio_v1_instrument_2B40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2B60[] = "__OTR__ast_audio/ast_audio_v1_instrument_2B60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2B80[] = "__OTR__ast_audio/ast_audio_v1_instrument_2B80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2BA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2BA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2BC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2BC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2BE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2BE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2C00[] = "__OTR__ast_audio/ast_audio_v1_instrument_2C00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2C20[] = "__OTR__ast_audio/ast_audio_v1_instrument_2C20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2C40[] = "__OTR__ast_audio/ast_audio_v1_instrument_2C40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2C60[] = "__OTR__ast_audio/ast_audio_v1_instrument_2C60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2C80[] = "__OTR__ast_audio/ast_audio_v1_instrument_2C80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2CA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2CA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2CC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2CC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2CE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2CE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2D00[] = "__OTR__ast_audio/ast_audio_v1_instrument_2D00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2D20[] = "__OTR__ast_audio/ast_audio_v1_instrument_2D20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2D40[] = "__OTR__ast_audio/ast_audio_v1_instrument_2D40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2D60[] = "__OTR__ast_audio/ast_audio_v1_instrument_2D60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2D80[] = "__OTR__ast_audio/ast_audio_v1_instrument_2D80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2DA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2DA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2DC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2DC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2DE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2DE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2E00[] = "__OTR__ast_audio/ast_audio_v1_instrument_2E00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2E20[] = "__OTR__ast_audio/ast_audio_v1_instrument_2E20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2E40[] = "__OTR__ast_audio/ast_audio_v1_instrument_2E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2E60[] = "__OTR__ast_audio/ast_audio_v1_instrument_2E60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2E80[] = "__OTR__ast_audio/ast_audio_v1_instrument_2E80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2EA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2EA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2EC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2EC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_2EE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_2EE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_2F00[] = "__OTR__ast_audio/ast_audio_v1_sound_font_2F00";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3100_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3100_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_3110[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_3110";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_31A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_31A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_31B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_31B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_31C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_31C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_31D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_31D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_31E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_31E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_31F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_31F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3200[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3200";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3210_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3210_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3220[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3220";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3230_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3230_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3240";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3250_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3250_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3260";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3270_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3270_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3280";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3290_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3290_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_32A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_32A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_32B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_32B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_32C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_32C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_32D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_32D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_32E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_32E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_32F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_32F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3300[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3300";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3310_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3310_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3320[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3320";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3330_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3330_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3340[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3340";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3350_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3350_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3360[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3360";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3370_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3370_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3380[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3380";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3390_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3390_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_33A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_33A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_33B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_33B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_33C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_33C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_33D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_33D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_33E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_33E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_33F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_33F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3400";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3410_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3410_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3420[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3420";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3430_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3430_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3440";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3450_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3450_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3460";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3470_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3470_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3480[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3480";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3490_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3490_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_34A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_34A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_34B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_34B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_34C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_34C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_34D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_34D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_34E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_34E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_34F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_34F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3500[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3500";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3510_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3510_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3520";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3530_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3530_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3540";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3550_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3550_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3560";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3570_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3570_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3580[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3580";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3590_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3590_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_35A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_35A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_35B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_35B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_35C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_35C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_35D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_35D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_35E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_35E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_35F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_35F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3600[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3600";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3610_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3610_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3620[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3620";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3630_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3630_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3640";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3650_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3650_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3660[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3660";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3670_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3670_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3680[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3680";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3690_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3690_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_36A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_36A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_36B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_36B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_36C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_36C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_36D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_36D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_36E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_36E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_36F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_36F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3700";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3710_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3710_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3720";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3730_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3730_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3740";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3750_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3750_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3760";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3770_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3770_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3780";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3790_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3790_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_37A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_37A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_37B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_37B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_37C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_37C0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_37D0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_37D0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_37E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_37E0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_37F0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_37F0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3800";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3810_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3810_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3820";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3830_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3830_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3840";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3850_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3850_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3860";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3870_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3870_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3880";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3890_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3890_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_38A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_38A0";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_38B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_38B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_38C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_38C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3910[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3910";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_3920_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_3920_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_3930[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_3930";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3980";
+
+static const ALIGN_ASSET(2) char Sample_P_2F00_O_39B0_B_1[] = "__OTR__ast_audio/Sample_P_2F00_O_39B0_B_1";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_39C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_39C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_3A10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_3A10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_3A20[] = "__OTR__ast_audio/ast_audio_v1_envelope_3A20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3A40[] = "__OTR__ast_audio/ast_audio_v1_instrument_3A40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3A60[] = "__OTR__ast_audio/ast_audio_v1_instrument_3A60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3A80[] = "__OTR__ast_audio/ast_audio_v1_instrument_3A80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3AA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3AA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3AC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3AC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3AE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3AE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3B00[] = "__OTR__ast_audio/ast_audio_v1_instrument_3B00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3B20[] = "__OTR__ast_audio/ast_audio_v1_instrument_3B20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3B40[] = "__OTR__ast_audio/ast_audio_v1_instrument_3B40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3B60[] = "__OTR__ast_audio/ast_audio_v1_instrument_3B60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3B80[] = "__OTR__ast_audio/ast_audio_v1_instrument_3B80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3BA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3BA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3BC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3BC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3BE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3BE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3C00[] = "__OTR__ast_audio/ast_audio_v1_instrument_3C00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3C20[] = "__OTR__ast_audio/ast_audio_v1_instrument_3C20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3C40[] = "__OTR__ast_audio/ast_audio_v1_instrument_3C40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3C60[] = "__OTR__ast_audio/ast_audio_v1_instrument_3C60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3C80[] = "__OTR__ast_audio/ast_audio_v1_instrument_3C80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3CA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3CA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3CC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3CC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3CE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3CE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3D00[] = "__OTR__ast_audio/ast_audio_v1_instrument_3D00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3D20[] = "__OTR__ast_audio/ast_audio_v1_instrument_3D20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3D40[] = "__OTR__ast_audio/ast_audio_v1_instrument_3D40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3D60[] = "__OTR__ast_audio/ast_audio_v1_instrument_3D60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3D80[] = "__OTR__ast_audio/ast_audio_v1_instrument_3D80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3DA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3DA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3DC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3DC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3DE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3DE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3E00[] = "__OTR__ast_audio/ast_audio_v1_instrument_3E00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3E20[] = "__OTR__ast_audio/ast_audio_v1_instrument_3E20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3E40[] = "__OTR__ast_audio/ast_audio_v1_instrument_3E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3E60[] = "__OTR__ast_audio/ast_audio_v1_instrument_3E60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3E80[] = "__OTR__ast_audio/ast_audio_v1_instrument_3E80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3EA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3EA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_3EC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_3EC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_3EE0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_3EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_40E0_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_40E0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_40F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_40F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4180";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_4190_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_4190_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_41A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_41A0";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_41B0_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_41B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_41C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_41C0";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_41D0_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_41D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_41E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_41E0";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_41F0_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_41F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4200[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4200";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_4210_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_4210_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4220[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4220";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_4230_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_4230_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4240";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_4250_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_4250_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4260";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_4270_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_4270_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_4280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_4280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_42D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_42D0";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_42E0_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_42E0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_42F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_42F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4340[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4340";
+
+static const ALIGN_ASSET(2) char Sample_P_3EE0_O_4370_B_2[] = "__OTR__ast_audio/Sample_P_3EE0_O_4370_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_4380[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_4380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_43D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_43D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_43E0[] = "__OTR__ast_audio/ast_audio_v1_envelope_43E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_4400[] = "__OTR__ast_audio/ast_audio_v1_instrument_4400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_4420[] = "__OTR__ast_audio/ast_audio_v1_instrument_4420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_4440[] = "__OTR__ast_audio/ast_audio_v1_instrument_4440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_4460[] = "__OTR__ast_audio/ast_audio_v1_instrument_4460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_4480[] = "__OTR__ast_audio/ast_audio_v1_instrument_4480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_44A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_44A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_44C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_44C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_44E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_44E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_4500[] = "__OTR__ast_audio/ast_audio_v1_instrument_4500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_4520[] = "__OTR__ast_audio/ast_audio_v1_sound_font_4520";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4720_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4720_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_4730[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_4730";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_47C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_47C0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_47D0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_47D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_47E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_47E0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_47F0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_47F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4800";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4810_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4820";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4830_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4840";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4850_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4860";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4870_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4880";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4890_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_48A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_48A0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_48B0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_48B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_48C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_48C0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_48D0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_48D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_48E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_48E0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_48F0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_48F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4900";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4910_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4920";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4930_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4940";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4950_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4960";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4970_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4980";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4990_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_49A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_49A0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_49B0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_49B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_49C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_49C0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_49D0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_49D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_49E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_49E0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_49F0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_49F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4A00";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4A10_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4A20";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4A30_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4A40";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4A50_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4A60";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4A70_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4A80";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4A90_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4AB0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4AD0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4AF0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4B00";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4B10_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4B20";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4B30_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4B40";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4B50_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4B60";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4B70_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4B80";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4B90_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4BB0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4BD0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4BF0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4C00";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4C10_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4C20";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4C30_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4C40";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4C50_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4C60";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4C70_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4C80";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4C90_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4CB0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4CD0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4CF0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4D00";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4D10_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4D20";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4D30_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4D40";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4D50_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4D60";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4D70_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4D80";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4D90_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4DB0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4DD0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4DF0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4E00";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4E10_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4E20";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4E30_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4E40";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4E50_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4E60";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4E70_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4E80";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4E90_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4EB0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4ED0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4EF0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4F00";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4F10_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4F20";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4F30_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4F40";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4F50_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4F50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4F60";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4F70_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4F70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4F80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4F80";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4F90_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4F90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4FA0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4FB0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4FB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4FC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4FC0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4FD0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4FD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_4FE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_4FE0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_4FF0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_4FF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5000";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5010_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5010_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5020";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5030_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5030_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5040";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5050_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5050_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5060";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5070_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5070_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5080";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5090_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5090_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_50A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_50A0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_50B0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_50B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_50C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_50C0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_50D0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_50D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_50E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_50E0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_50F0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_50F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5100";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5110_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5110_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5120[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5120";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5130_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5130_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5140";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5150_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5150_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5160[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5160";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5170_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5170_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5180";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5190_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5190_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_51A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_51A0";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_51B0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_51B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_51C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_51C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5210[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5210";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_5220_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_5220_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_5230[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_5230";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5280";
+
+static const ALIGN_ASSET(2) char Sample_P_4520_O_52B0_B_2[] = "__OTR__ast_audio/Sample_P_4520_O_52B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_52C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_52C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5310[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5310";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_5320[] = "__OTR__ast_audio/ast_audio_v1_envelope_5320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5340[] = "__OTR__ast_audio/ast_audio_v1_instrument_5340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5360[] = "__OTR__ast_audio/ast_audio_v1_instrument_5360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5380[] = "__OTR__ast_audio/ast_audio_v1_instrument_5380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_53A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_53A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_53C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_53C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_53E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_53E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5400[] = "__OTR__ast_audio/ast_audio_v1_instrument_5400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5420[] = "__OTR__ast_audio/ast_audio_v1_instrument_5420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5440[] = "__OTR__ast_audio/ast_audio_v1_instrument_5440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5460[] = "__OTR__ast_audio/ast_audio_v1_instrument_5460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5480[] = "__OTR__ast_audio/ast_audio_v1_instrument_5480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_54A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_54A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_54C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_54C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_54E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_54E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5500[] = "__OTR__ast_audio/ast_audio_v1_instrument_5500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5520[] = "__OTR__ast_audio/ast_audio_v1_instrument_5520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5540[] = "__OTR__ast_audio/ast_audio_v1_instrument_5540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5560[] = "__OTR__ast_audio/ast_audio_v1_instrument_5560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5580[] = "__OTR__ast_audio/ast_audio_v1_instrument_5580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_55A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_55A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_55C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_55C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_55E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_55E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5600[] = "__OTR__ast_audio/ast_audio_v1_instrument_5600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5620[] = "__OTR__ast_audio/ast_audio_v1_instrument_5620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5640[] = "__OTR__ast_audio/ast_audio_v1_instrument_5640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5660[] = "__OTR__ast_audio/ast_audio_v1_instrument_5660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5680[] = "__OTR__ast_audio/ast_audio_v1_instrument_5680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_56A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_56A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_56C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_56C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_56E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_56E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5700[] = "__OTR__ast_audio/ast_audio_v1_instrument_5700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5720[] = "__OTR__ast_audio/ast_audio_v1_instrument_5720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5740[] = "__OTR__ast_audio/ast_audio_v1_instrument_5740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5760[] = "__OTR__ast_audio/ast_audio_v1_instrument_5760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5780[] = "__OTR__ast_audio/ast_audio_v1_instrument_5780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_57A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_57A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_57C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_57C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_57E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_57E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5800[] = "__OTR__ast_audio/ast_audio_v1_instrument_5800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5820[] = "__OTR__ast_audio/ast_audio_v1_instrument_5820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5840[] = "__OTR__ast_audio/ast_audio_v1_instrument_5840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5860[] = "__OTR__ast_audio/ast_audio_v1_instrument_5860";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5880[] = "__OTR__ast_audio/ast_audio_v1_instrument_5880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_58A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_58A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_58C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_58C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_58E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_58E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5900[] = "__OTR__ast_audio/ast_audio_v1_instrument_5900";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5920[] = "__OTR__ast_audio/ast_audio_v1_instrument_5920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5940[] = "__OTR__ast_audio/ast_audio_v1_instrument_5940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5960[] = "__OTR__ast_audio/ast_audio_v1_instrument_5960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5980[] = "__OTR__ast_audio/ast_audio_v1_instrument_5980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_59A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_59A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_59C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_59C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_59E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_59E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5A00[] = "__OTR__ast_audio/ast_audio_v1_instrument_5A00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5A20[] = "__OTR__ast_audio/ast_audio_v1_instrument_5A20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5A40[] = "__OTR__ast_audio/ast_audio_v1_instrument_5A40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_5A60[] = "__OTR__ast_audio/ast_audio_v1_instrument_5A60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_5A80[] = "__OTR__ast_audio/ast_audio_v1_sound_font_5A80";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5C80_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5C80_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_5C90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_5C90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5D20";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5D30_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5D40";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5D50_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5D60";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5D70_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5D80";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5D90_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5DB0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5DD0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5DF0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5E00";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5E10_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5E20";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5E30_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5E40";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5E50_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5E60";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5E70_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5E80";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5E90_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5EB0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5ED0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5EF0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5F00";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5F10_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5F20";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5F30_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5F40";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5F50_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5F50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5F60";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5F70_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5F70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5F80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5F80";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5F90_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5F90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5FA0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5FB0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5FB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5FC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5FC0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5FD0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5FD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_5FE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_5FE0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_5FF0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_5FF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6000";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6010_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6010_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6020";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6030_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6030_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6040";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6050_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6050_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6060";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6070_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6070_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6080";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6090_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6090_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_60A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_60A0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_60B0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_60B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_60C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_60C0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_60D0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_60D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_60E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_60E0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_60F0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_60F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6100";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6110_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6110_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6120[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6120";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6130_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6130_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6140";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6150_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6150_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6160[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_61B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_61B0";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_61C0_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_61C0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_61D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_61D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6220[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6220";
+
+static const ALIGN_ASSET(2) char Sample_P_5A80_O_6250_B_2[] = "__OTR__ast_audio/Sample_P_5A80_O_6250_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_62B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_62B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_62C0[] = "__OTR__ast_audio/ast_audio_v1_envelope_62C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_62E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_62E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6300[] = "__OTR__ast_audio/ast_audio_v1_instrument_6300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6320[] = "__OTR__ast_audio/ast_audio_v1_instrument_6320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6340[] = "__OTR__ast_audio/ast_audio_v1_instrument_6340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6360[] = "__OTR__ast_audio/ast_audio_v1_instrument_6360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6380[] = "__OTR__ast_audio/ast_audio_v1_instrument_6380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_63A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_63A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_63C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_63C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_63E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_63E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6400[] = "__OTR__ast_audio/ast_audio_v1_instrument_6400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6420[] = "__OTR__ast_audio/ast_audio_v1_instrument_6420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6440[] = "__OTR__ast_audio/ast_audio_v1_instrument_6440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6460[] = "__OTR__ast_audio/ast_audio_v1_instrument_6460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6480[] = "__OTR__ast_audio/ast_audio_v1_instrument_6480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_64A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_64A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_64C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_64C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_64E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_64E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6500[] = "__OTR__ast_audio/ast_audio_v1_instrument_6500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6520[] = "__OTR__ast_audio/ast_audio_v1_instrument_6520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6540[] = "__OTR__ast_audio/ast_audio_v1_instrument_6540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6560[] = "__OTR__ast_audio/ast_audio_v1_instrument_6560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6580[] = "__OTR__ast_audio/ast_audio_v1_instrument_6580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_65A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_65A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_65C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_65C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_65E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_65E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6600[] = "__OTR__ast_audio/ast_audio_v1_instrument_6600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6620[] = "__OTR__ast_audio/ast_audio_v1_instrument_6620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6640[] = "__OTR__ast_audio/ast_audio_v1_instrument_6640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6660[] = "__OTR__ast_audio/ast_audio_v1_instrument_6660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_6680[] = "__OTR__ast_audio/ast_audio_v1_sound_font_6680";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6880_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6880_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6890[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6890";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6920";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6930_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6940";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6950_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6960";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6970_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6980";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6990_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_69A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_69A0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_69B0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_69B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_69C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_69C0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_69D0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_69D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_69E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_69E0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_69F0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_69F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6A00";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6A10_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6A20";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6A30_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6A40";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6A50_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6A60";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6A70_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6A80";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6A90_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6AB0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6AD0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6AF0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6B00";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6B10_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6B20";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6B30_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6B40";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6B50_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6B60";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6B70_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6B80";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6B90_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6BB0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6BD0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6BF0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6C00";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6C10_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6C20";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6C30_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6C40";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6C50_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6C60";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6C70_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6C80";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6C90_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6CB0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6CD0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6CF0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6D00";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6D10_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6D20";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6D30_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6D40";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6D50_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6D60";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6D70_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6D80";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6D90_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6DB0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6DD0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6DF0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6E00";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6E10_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6E20";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6E30_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6E90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6E90";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6EA0_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6EA0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6EB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6EB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6F00";
+
+static const ALIGN_ASSET(2) char Sample_P_6680_O_6F30_B_2[] = "__OTR__ast_audio/Sample_P_6680_O_6F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_6F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_6F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_6F90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_6F90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_6FA0[] = "__OTR__ast_audio/ast_audio_v1_envelope_6FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6FC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_6FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_6FE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_6FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7000[] = "__OTR__ast_audio/ast_audio_v1_instrument_7000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7020[] = "__OTR__ast_audio/ast_audio_v1_instrument_7020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7040[] = "__OTR__ast_audio/ast_audio_v1_instrument_7040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7060[] = "__OTR__ast_audio/ast_audio_v1_instrument_7060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7080[] = "__OTR__ast_audio/ast_audio_v1_instrument_7080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_70A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_70A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_70C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_70C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_70E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_70E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7100[] = "__OTR__ast_audio/ast_audio_v1_instrument_7100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7120[] = "__OTR__ast_audio/ast_audio_v1_instrument_7120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7140[] = "__OTR__ast_audio/ast_audio_v1_instrument_7140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7160[] = "__OTR__ast_audio/ast_audio_v1_instrument_7160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7180[] = "__OTR__ast_audio/ast_audio_v1_instrument_7180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_71A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_71A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_71C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_71C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_71E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_71E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7200[] = "__OTR__ast_audio/ast_audio_v1_instrument_7200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7220[] = "__OTR__ast_audio/ast_audio_v1_instrument_7220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7240[] = "__OTR__ast_audio/ast_audio_v1_instrument_7240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7260[] = "__OTR__ast_audio/ast_audio_v1_instrument_7260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7280[] = "__OTR__ast_audio/ast_audio_v1_instrument_7280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_72A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_72A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_72C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_72C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_72E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_72E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7300[] = "__OTR__ast_audio/ast_audio_v1_instrument_7300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7320[] = "__OTR__ast_audio/ast_audio_v1_instrument_7320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7340[] = "__OTR__ast_audio/ast_audio_v1_instrument_7340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7360[] = "__OTR__ast_audio/ast_audio_v1_instrument_7360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7380[] = "__OTR__ast_audio/ast_audio_v1_instrument_7380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_73A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_73A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_73C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_73C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_73E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_73E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7400[] = "__OTR__ast_audio/ast_audio_v1_instrument_7400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7420[] = "__OTR__ast_audio/ast_audio_v1_instrument_7420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_7440[] = "__OTR__ast_audio/ast_audio_v1_instrument_7440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_7460[] = "__OTR__ast_audio/ast_audio_v1_sound_font_7460";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7660_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7660_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_7670[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_7670";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7700";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7710_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7710_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7720";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7730_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7730_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7740";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7750_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7750_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7760";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7770_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7770_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7780";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7790_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_77A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_77A0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_77B0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_77B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_77C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_77C0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_77D0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_77D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_77E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_77E0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_77F0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_77F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7800";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7810_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7820";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7830_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7840";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7850_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7860";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7870_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7880";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7890_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_78A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_78A0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_78B0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_78B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_78C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_78C0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_78D0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_78D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_78E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_78E0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_78F0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_78F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7900";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7910_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7920";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7930_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7940";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7950_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7960";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7970_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7980";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7990_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_79A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_79A0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_79B0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_79B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_79C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_79C0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_79D0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_79D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_79E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_79E0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_79F0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_79F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7A00";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7A10_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7A20";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7A30_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7A40";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7A50_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7A60";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7A70_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7A80";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7A90_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7AB0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7AD0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7AF0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7B00";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7B10_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7B20";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7B30_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7B40";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7B50_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7B60";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7B70_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7B80";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7B90_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7BB0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7BD0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7BF0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7C00";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7C10_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7C20";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7C30_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7C40";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7C50_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7C60";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7C70_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7C80";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7C90_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7CB0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7CD0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7CF0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7D00";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7D10_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7D20";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7D30_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7D40";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7D50_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7D60";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7D70_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7D80";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7D90_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7DB0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7DD0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7DF0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7E00";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7E10_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7E20";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7E30_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7E40";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7E50_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7E60";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7E70_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7E80";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7E90_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7EB0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7ED0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7EF0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7F00";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7F10_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7F20";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7F30_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_7F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_7F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_7F90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_7F90";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_7FA0_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_7FA0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_7FB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_7FB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8000";
+
+static const ALIGN_ASSET(2) char Sample_P_7460_O_8030_B_2[] = "__OTR__ast_audio/Sample_P_7460_O_8030_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_8040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_8040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8090[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8090";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_80A0[] = "__OTR__ast_audio/ast_audio_v1_envelope_80A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_80C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_80C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_80E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_80E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8100[] = "__OTR__ast_audio/ast_audio_v1_instrument_8100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8120[] = "__OTR__ast_audio/ast_audio_v1_instrument_8120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8140[] = "__OTR__ast_audio/ast_audio_v1_instrument_8140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8160[] = "__OTR__ast_audio/ast_audio_v1_instrument_8160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8180[] = "__OTR__ast_audio/ast_audio_v1_instrument_8180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_81A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_81A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_81C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_81C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_81E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_81E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8200[] = "__OTR__ast_audio/ast_audio_v1_instrument_8200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8220[] = "__OTR__ast_audio/ast_audio_v1_instrument_8220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8240[] = "__OTR__ast_audio/ast_audio_v1_instrument_8240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8260[] = "__OTR__ast_audio/ast_audio_v1_instrument_8260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8280[] = "__OTR__ast_audio/ast_audio_v1_instrument_8280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_82A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_82A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_82C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_82C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_82E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_82E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8300[] = "__OTR__ast_audio/ast_audio_v1_instrument_8300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8320[] = "__OTR__ast_audio/ast_audio_v1_instrument_8320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8340[] = "__OTR__ast_audio/ast_audio_v1_instrument_8340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8360[] = "__OTR__ast_audio/ast_audio_v1_instrument_8360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8380[] = "__OTR__ast_audio/ast_audio_v1_instrument_8380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_83A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_83A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_83C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_83C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_83E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_83E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8400[] = "__OTR__ast_audio/ast_audio_v1_instrument_8400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8420[] = "__OTR__ast_audio/ast_audio_v1_instrument_8420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8440[] = "__OTR__ast_audio/ast_audio_v1_instrument_8440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8460[] = "__OTR__ast_audio/ast_audio_v1_instrument_8460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8480[] = "__OTR__ast_audio/ast_audio_v1_instrument_8480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_84A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_84A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_84C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_84C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_84E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_84E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8500[] = "__OTR__ast_audio/ast_audio_v1_instrument_8500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8520[] = "__OTR__ast_audio/ast_audio_v1_instrument_8520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8540[] = "__OTR__ast_audio/ast_audio_v1_instrument_8540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8560[] = "__OTR__ast_audio/ast_audio_v1_instrument_8560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8580[] = "__OTR__ast_audio/ast_audio_v1_instrument_8580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_85A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_85A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_85C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_85C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_85E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_85E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8600[] = "__OTR__ast_audio/ast_audio_v1_instrument_8600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8620[] = "__OTR__ast_audio/ast_audio_v1_instrument_8620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_8640[] = "__OTR__ast_audio/ast_audio_v1_instrument_8640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_8660[] = "__OTR__ast_audio/ast_audio_v1_sound_font_8660";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8860_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8860_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_8870[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_8870";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8900";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8910_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8920";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8930_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8940";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8950_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8960";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8970_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8980";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8990_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_89A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_89A0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_89B0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_89B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_89C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_89C0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_89D0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_89D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_89E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_89E0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_89F0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_89F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8A00";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8A10_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8A20";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8A30_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8A40";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8A50_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8A60";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8A70_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8A80";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8A90_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8AB0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8AD0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8AF0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8B00";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8B10_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8B20";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8B30_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8B40";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8B50_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8B60";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8B70_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8B80";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8B90_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8BB0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8BD0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8BF0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8C00";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8C10_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8C20";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8C30_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8C40";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8C50_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8C60";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8C70_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8C80";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8C90_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8CB0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8CD0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8CF0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8D00";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8D10_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8D20";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8D30_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8D40";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8D50_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8D60";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8D70_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8D80";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8D90_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8DB0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8DD0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8DF0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8E00";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8E10_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8E20";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8E30_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8E40";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8E50_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8E60";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8E70_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8E80";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8E90_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8EB0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8ED0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8EF0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8F00";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8F10_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8F20";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8F30_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8F40";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8F50_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8F50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8F60";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8F70_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8F70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8F80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8F80";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8F90_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8F90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_8FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_8FA0";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_8FB0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_8FB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_8FC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_8FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9010[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9010";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_9020_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_9020_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_9030[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_9030";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9080";
+
+static const ALIGN_ASSET(2) char Sample_P_8660_O_90B0_B_2[] = "__OTR__ast_audio/Sample_P_8660_O_90B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_90C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_90C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9110[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9110";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_9120[] = "__OTR__ast_audio/ast_audio_v1_envelope_9120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9140[] = "__OTR__ast_audio/ast_audio_v1_instrument_9140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9160[] = "__OTR__ast_audio/ast_audio_v1_instrument_9160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9180[] = "__OTR__ast_audio/ast_audio_v1_instrument_9180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_91A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_91A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_91C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_91C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_91E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_91E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9200[] = "__OTR__ast_audio/ast_audio_v1_instrument_9200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9220[] = "__OTR__ast_audio/ast_audio_v1_instrument_9220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9240[] = "__OTR__ast_audio/ast_audio_v1_instrument_9240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9260[] = "__OTR__ast_audio/ast_audio_v1_instrument_9260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9280[] = "__OTR__ast_audio/ast_audio_v1_instrument_9280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_92A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_92A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_92C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_92C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_92E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_92E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9300[] = "__OTR__ast_audio/ast_audio_v1_instrument_9300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9320[] = "__OTR__ast_audio/ast_audio_v1_instrument_9320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9340[] = "__OTR__ast_audio/ast_audio_v1_instrument_9340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9360[] = "__OTR__ast_audio/ast_audio_v1_instrument_9360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9380[] = "__OTR__ast_audio/ast_audio_v1_instrument_9380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_93A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_93A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_93C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_93C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_93E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_93E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9400[] = "__OTR__ast_audio/ast_audio_v1_instrument_9400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9420[] = "__OTR__ast_audio/ast_audio_v1_instrument_9420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9440[] = "__OTR__ast_audio/ast_audio_v1_instrument_9440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9460[] = "__OTR__ast_audio/ast_audio_v1_instrument_9460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9480[] = "__OTR__ast_audio/ast_audio_v1_instrument_9480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_94A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_94A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_94C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_94C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_94E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_94E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9500[] = "__OTR__ast_audio/ast_audio_v1_instrument_9500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9520[] = "__OTR__ast_audio/ast_audio_v1_instrument_9520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9540[] = "__OTR__ast_audio/ast_audio_v1_instrument_9540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9560[] = "__OTR__ast_audio/ast_audio_v1_instrument_9560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9580[] = "__OTR__ast_audio/ast_audio_v1_instrument_9580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_95A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_95A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_95C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_95C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_95E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_95E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9600[] = "__OTR__ast_audio/ast_audio_v1_instrument_9600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9620[] = "__OTR__ast_audio/ast_audio_v1_instrument_9620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9640[] = "__OTR__ast_audio/ast_audio_v1_instrument_9640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9660[] = "__OTR__ast_audio/ast_audio_v1_instrument_9660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_9680[] = "__OTR__ast_audio/ast_audio_v1_instrument_9680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_96A0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_96A0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_98A0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_98A0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_98B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_98B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9940";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9950_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9960";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9970_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9980";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9990_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_99A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_99A0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_99B0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_99B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_99C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_99C0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_99D0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_99D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_99E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_99E0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_99F0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_99F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9A00";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9A10_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9A20";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9A30_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9A40";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9A50_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9A60";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9A70_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9A80";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9A90_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9AB0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9AD0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9AF0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9B00";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9B10_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9B20";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9B30_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9B40";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9B50_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9B60";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9B70_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9B80";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9B90_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9BB0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9BD0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9BF0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9C00";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9C10_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9C20";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9C30_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9C40";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9C50_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9C60";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9C70_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9C80";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9C90_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9CB0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9CD0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9CF0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9D00";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9D10_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9D20";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9D30_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9D40";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9D50_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9D60";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9D70_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9D80";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9D90_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9DB0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9DD0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9DF0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9E00";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9E10_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9E20";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9E30_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9E40";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9E50_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9E60";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9E70_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9E80";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9E90_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9EB0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9ED0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9EF0_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9F00";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9F10_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_9F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_9F20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9F70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9F70";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_9F80_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_9F80_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_9F90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_9F90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_9FE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_9FE0";
+
+static const ALIGN_ASSET(2) char Sample_P_96A0_O_A010_B_2[] = "__OTR__ast_audio/Sample_P_96A0_O_A010_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_A020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_A020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A070[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A070";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_A080[] = "__OTR__ast_audio/ast_audio_v1_envelope_A080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A0A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A0A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A0C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A0C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A0E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A0E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A100[] = "__OTR__ast_audio/ast_audio_v1_instrument_A100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A120[] = "__OTR__ast_audio/ast_audio_v1_instrument_A120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A140[] = "__OTR__ast_audio/ast_audio_v1_instrument_A140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A160[] = "__OTR__ast_audio/ast_audio_v1_instrument_A160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A180[] = "__OTR__ast_audio/ast_audio_v1_instrument_A180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A1A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A1A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A1C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A1C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A1E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A1E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A200[] = "__OTR__ast_audio/ast_audio_v1_instrument_A200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A220[] = "__OTR__ast_audio/ast_audio_v1_instrument_A220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A240[] = "__OTR__ast_audio/ast_audio_v1_instrument_A240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A260[] = "__OTR__ast_audio/ast_audio_v1_instrument_A260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A280[] = "__OTR__ast_audio/ast_audio_v1_instrument_A280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A2A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A2A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A2C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A2C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A2E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A2E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A300[] = "__OTR__ast_audio/ast_audio_v1_instrument_A300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A320[] = "__OTR__ast_audio/ast_audio_v1_instrument_A320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A340[] = "__OTR__ast_audio/ast_audio_v1_instrument_A340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A360[] = "__OTR__ast_audio/ast_audio_v1_instrument_A360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A380[] = "__OTR__ast_audio/ast_audio_v1_instrument_A380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A3A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A3A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A3C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A3C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A3E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A3E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A400[] = "__OTR__ast_audio/ast_audio_v1_instrument_A400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A420[] = "__OTR__ast_audio/ast_audio_v1_instrument_A420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A440[] = "__OTR__ast_audio/ast_audio_v1_instrument_A440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A460[] = "__OTR__ast_audio/ast_audio_v1_instrument_A460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A480[] = "__OTR__ast_audio/ast_audio_v1_instrument_A480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A4A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A4A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_A4C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_A4C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_A4E0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_A4E0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A6E0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A6E0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_A6F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_A6F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A780";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A790_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A7A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A7A0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A7B0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A7B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A7C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A7C0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A7D0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A7D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A7E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A7E0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A7F0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A7F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A800";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A810_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A820";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A830_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A840";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A850_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A860";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A870_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A880";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A890_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A8A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A8A0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A8B0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A8B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A8C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A8C0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A8D0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A8D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A8E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A8E0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A8F0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A8F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A900";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A910_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A920";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A930_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A940";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A950_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A960";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A970_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A980";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A990_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A9A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A9A0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A9B0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A9B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A9C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A9C0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A9D0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A9D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_A9E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_A9E0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_A9F0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_A9F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AA00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AA00";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AA10_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AA10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AA20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AA20";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AA30_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AA30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AA40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AA40";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AA50_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AA50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AA60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AA60";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AA70_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AA70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AA80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AA80";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AA90_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AA90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AAA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AAA0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AAB0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AAB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AAC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AAC0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AAD0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AAD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AAE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AAE0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AAF0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AAF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AB00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AB00";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AB10_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AB10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AB20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AB20";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AB30_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AB30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AB40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AB40";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AB50_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AB50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AB60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AB60";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AB70_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AB70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AB80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AB80";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AB90_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AB90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_ABA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_ABA0";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_ABB0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_ABB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_ABC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_ABC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AC10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AC10";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_AC20_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_AC20_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_AC30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_AC30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AC80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AC80";
+
+static const ALIGN_ASSET(2) char Sample_P_A4E0_O_ACB0_B_2[] = "__OTR__ast_audio/Sample_P_A4E0_O_ACB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_ACC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_ACC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_AD10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_AD10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_AD20[] = "__OTR__ast_audio/ast_audio_v1_envelope_AD20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AD40[] = "__OTR__ast_audio/ast_audio_v1_instrument_AD40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AD60[] = "__OTR__ast_audio/ast_audio_v1_instrument_AD60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AD80[] = "__OTR__ast_audio/ast_audio_v1_instrument_AD80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_ADA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_ADA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_ADC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_ADC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_ADE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_ADE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AE00[] = "__OTR__ast_audio/ast_audio_v1_instrument_AE00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AE20[] = "__OTR__ast_audio/ast_audio_v1_instrument_AE20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AE40[] = "__OTR__ast_audio/ast_audio_v1_instrument_AE40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AE60[] = "__OTR__ast_audio/ast_audio_v1_instrument_AE60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AE80[] = "__OTR__ast_audio/ast_audio_v1_instrument_AE80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AEA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_AEA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AEC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_AEC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AEE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_AEE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AF00[] = "__OTR__ast_audio/ast_audio_v1_instrument_AF00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AF20[] = "__OTR__ast_audio/ast_audio_v1_instrument_AF20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AF40[] = "__OTR__ast_audio/ast_audio_v1_instrument_AF40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AF60[] = "__OTR__ast_audio/ast_audio_v1_instrument_AF60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AF80[] = "__OTR__ast_audio/ast_audio_v1_instrument_AF80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AFA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_AFA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AFC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_AFC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_AFE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_AFE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B000[] = "__OTR__ast_audio/ast_audio_v1_instrument_B000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B020[] = "__OTR__ast_audio/ast_audio_v1_instrument_B020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B040[] = "__OTR__ast_audio/ast_audio_v1_instrument_B040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B060[] = "__OTR__ast_audio/ast_audio_v1_instrument_B060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B080[] = "__OTR__ast_audio/ast_audio_v1_instrument_B080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B0A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_B0A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B0C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_B0C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_B0E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_B0E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_B100[] = "__OTR__ast_audio/ast_audio_v1_sound_font_B100";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B300_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B300_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_B310[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_B310";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B3A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B3A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B3B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B3B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B3C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B3C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B3D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B3D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B3E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B3E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B3F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B3F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B400";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B410_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B410_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B420[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B420";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B430_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B430_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B440";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B450_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B450_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B460";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B470_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B470_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B480[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B480";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B490_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B490_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B4A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B4A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B4B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B4B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B4C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B4C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B4D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B4D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B4E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B4E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B4F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B4F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B500[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B500";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B510_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B510_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B520";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B530_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B530_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B540";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B550_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B550_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B560";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B570_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B570_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B580[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B580";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B590_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B590_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B5A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B5A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B5B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B5B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B5C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B5C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B5D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B5D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B5E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B5E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B5F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B5F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B600[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B600";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B610_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B610_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B620[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B620";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B630_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B630_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B640";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B650_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B650_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B660[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B660";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B670_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B670_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B680[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B680";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B690_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B690_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B6A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B6A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B6B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B6B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B6C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B6C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B6D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B6D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B6E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B6E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B6F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B6F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B700";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B710_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B710_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B720";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B730_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B730_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B740";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B750_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B750_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B760";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B770_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B770_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B780";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B790_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B7A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B7A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B7B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B7B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B7C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B7C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B7D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B7D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B7E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B7E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B7F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B7F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B800";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B810_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B820";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B830_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B840";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B850_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B860";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B870_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B880";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B890_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B8A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B8A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B8B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B8B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B8C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B8C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B8D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B8D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B8E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B8E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B8F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B8F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B900";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B910_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B920";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B930_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B940";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B950_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B960";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B970_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B980";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B990_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B9A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B9A0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B9B0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B9B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B9C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B9C0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B9D0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B9D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_B9E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_B9E0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_B9F0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_B9F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BA00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BA00";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BA10_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BA10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BA20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BA20";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BA30_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BA30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BA40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BA40";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BA50_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BA50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BA60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BA60";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BA70_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BA70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BA80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BA80";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BA90_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BA90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BAA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BAA0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BAB0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BAB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BAC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BAC0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BAD0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BAD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BAE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BAE0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BAF0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BAF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BB00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BB00";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BB10_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BB10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BB20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BB20";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BB30_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BB30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BB40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BB40";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BB50_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BB50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BB60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BB60";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BB70_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BB70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BB80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BB80";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BB90_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BB90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BBA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BBA0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BBB0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BBB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BBC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BBC0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BBD0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BBD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BBE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BBE0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BBF0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BBF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BC00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BC00";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BC10_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BC10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BC20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BC20";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BC30_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BC30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BC40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BC40";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BC50_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BC50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BC60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BC60";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BC70_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BC70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BC80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BC80";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BC90_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BC90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BCA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BCA0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BCB0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BCB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BCC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BCC0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BCD0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BCD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BCE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BCE0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BCF0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BCF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BD00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BD00";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BD10_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BD10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BD20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BD20";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BD30_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BD30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BD40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BD40";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BD50_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BD50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BD60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BD60";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BD70_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BD70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BD80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BD80";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BD90_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BD90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BDA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BDA0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BDB0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BDB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BDC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BDC0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BDD0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BDD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BDE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BDE0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BDF0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BDF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BE00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BE00";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BE10_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BE10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BE20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BE20";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BE30_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BE30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BE40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BE40";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BE50_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BE50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BE60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BE60";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BE70_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BE70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BE80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BE80";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BE90_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BE90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BEA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BEA0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BEB0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BEB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BEC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BEC0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BED0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BEE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BEE0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BEF0_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BEF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BF00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BF00";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BF10_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BF10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BF20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BF20";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BF30_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BF30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BF40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BF40";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BF50_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BF50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BF60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BF60";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BF70_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BF70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BF80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BF80";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_BF90_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_BF90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_BFA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_BFA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_BFF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_BFF0";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_C000_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_C000_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_C010[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_C010";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_C060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_C060";
+
+static const ALIGN_ASSET(2) char Sample_P_B100_O_C090_B_2[] = "__OTR__ast_audio/Sample_P_B100_O_C090_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_C0A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_C0A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_C0F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_C0F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_C100[] = "__OTR__ast_audio/ast_audio_v1_envelope_C100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C120[] = "__OTR__ast_audio/ast_audio_v1_instrument_C120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C140[] = "__OTR__ast_audio/ast_audio_v1_instrument_C140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C160[] = "__OTR__ast_audio/ast_audio_v1_instrument_C160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C180[] = "__OTR__ast_audio/ast_audio_v1_instrument_C180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C1A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C1A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C1C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C1C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C1E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C1E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C200[] = "__OTR__ast_audio/ast_audio_v1_instrument_C200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C220[] = "__OTR__ast_audio/ast_audio_v1_instrument_C220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C240[] = "__OTR__ast_audio/ast_audio_v1_instrument_C240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C260[] = "__OTR__ast_audio/ast_audio_v1_instrument_C260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C280[] = "__OTR__ast_audio/ast_audio_v1_instrument_C280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C2A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C2A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C2C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C2C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C2E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C2E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C300[] = "__OTR__ast_audio/ast_audio_v1_instrument_C300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C320[] = "__OTR__ast_audio/ast_audio_v1_instrument_C320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C340[] = "__OTR__ast_audio/ast_audio_v1_instrument_C340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C360[] = "__OTR__ast_audio/ast_audio_v1_instrument_C360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C380[] = "__OTR__ast_audio/ast_audio_v1_instrument_C380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C3A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C3A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C3C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C3C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C3E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C3E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C400[] = "__OTR__ast_audio/ast_audio_v1_instrument_C400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C420[] = "__OTR__ast_audio/ast_audio_v1_instrument_C420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C440[] = "__OTR__ast_audio/ast_audio_v1_instrument_C440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C460[] = "__OTR__ast_audio/ast_audio_v1_instrument_C460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C480[] = "__OTR__ast_audio/ast_audio_v1_instrument_C480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C4A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C4A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C4C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C4C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C4E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C4E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C500[] = "__OTR__ast_audio/ast_audio_v1_instrument_C500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C520[] = "__OTR__ast_audio/ast_audio_v1_instrument_C520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C540[] = "__OTR__ast_audio/ast_audio_v1_instrument_C540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C560[] = "__OTR__ast_audio/ast_audio_v1_instrument_C560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C580[] = "__OTR__ast_audio/ast_audio_v1_instrument_C580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C5A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C5A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C5C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C5C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C5E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C5E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C600[] = "__OTR__ast_audio/ast_audio_v1_instrument_C600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C620[] = "__OTR__ast_audio/ast_audio_v1_instrument_C620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C640[] = "__OTR__ast_audio/ast_audio_v1_instrument_C640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C660[] = "__OTR__ast_audio/ast_audio_v1_instrument_C660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C680[] = "__OTR__ast_audio/ast_audio_v1_instrument_C680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C6A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C6A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C6C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C6C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C6E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C6E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C700[] = "__OTR__ast_audio/ast_audio_v1_instrument_C700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C720[] = "__OTR__ast_audio/ast_audio_v1_instrument_C720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C740[] = "__OTR__ast_audio/ast_audio_v1_instrument_C740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C760[] = "__OTR__ast_audio/ast_audio_v1_instrument_C760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C780[] = "__OTR__ast_audio/ast_audio_v1_instrument_C780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C7A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C7A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C7C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C7C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C7E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C7E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C800[] = "__OTR__ast_audio/ast_audio_v1_instrument_C800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C820[] = "__OTR__ast_audio/ast_audio_v1_instrument_C820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C840[] = "__OTR__ast_audio/ast_audio_v1_instrument_C840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C860[] = "__OTR__ast_audio/ast_audio_v1_instrument_C860";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C880[] = "__OTR__ast_audio/ast_audio_v1_instrument_C880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C8A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C8A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C8C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C8C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C8E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C8E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C900[] = "__OTR__ast_audio/ast_audio_v1_instrument_C900";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C920[] = "__OTR__ast_audio/ast_audio_v1_instrument_C920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C940[] = "__OTR__ast_audio/ast_audio_v1_instrument_C940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C960[] = "__OTR__ast_audio/ast_audio_v1_instrument_C960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C980[] = "__OTR__ast_audio/ast_audio_v1_instrument_C980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C9A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C9A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C9C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C9C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_C9E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_C9E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_CA00[] = "__OTR__ast_audio/ast_audio_v1_instrument_CA00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_CA20[] = "__OTR__ast_audio/ast_audio_v1_sound_font_CA20";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CC20_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CC20_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_CC30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_CC30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CCC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CCC0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CCD0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CCD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CCE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CCE0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CCF0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CCF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CD00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CD00";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CD10_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CD10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CD20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CD20";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CD30_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CD30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CD40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CD40";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CD50_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CD50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CD60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CD60";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CD70_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CD70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CD80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CD80";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CD90_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CD90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CDA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CDA0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CDB0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CDB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CDC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CDC0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CDD0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CDD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CDE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CDE0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CDF0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CDF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CE00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CE00";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CE10_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CE10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CE20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CE20";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CE30_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CE30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CE40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CE40";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CE50_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CE50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CE60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CE60";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CE70_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CE70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CE80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CE80";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CE90_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CE90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CEA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CEA0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CEB0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CEB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CEC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CEC0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CED0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CEE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CEE0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CEF0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CEF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CF00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CF00";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CF10_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CF10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CF20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CF20";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CF30_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CF30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CF40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CF40";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CF50_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CF50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CF60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CF60";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CF70_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CF70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CF80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CF80";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CF90_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CF90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CFA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CFA0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CFB0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CFB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CFC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CFC0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CFD0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CFD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_CFE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_CFE0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_CFF0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_CFF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_D000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_D000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D050[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D050";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_D060_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_D060_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_D070[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_D070";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D0C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D0C0";
+
+static const ALIGN_ASSET(2) char Sample_P_CA20_O_D0F0_B_2[] = "__OTR__ast_audio/Sample_P_CA20_O_D0F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_D100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_D100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D150[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_D160[] = "__OTR__ast_audio/ast_audio_v1_envelope_D160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D180[] = "__OTR__ast_audio/ast_audio_v1_instrument_D180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D1A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D1A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D1C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D1C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D1E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D1E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D200[] = "__OTR__ast_audio/ast_audio_v1_instrument_D200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D220[] = "__OTR__ast_audio/ast_audio_v1_instrument_D220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D240[] = "__OTR__ast_audio/ast_audio_v1_instrument_D240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D260[] = "__OTR__ast_audio/ast_audio_v1_instrument_D260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D280[] = "__OTR__ast_audio/ast_audio_v1_instrument_D280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D2A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D2A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D2C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D2C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D2E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D2E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D300[] = "__OTR__ast_audio/ast_audio_v1_instrument_D300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D320[] = "__OTR__ast_audio/ast_audio_v1_instrument_D320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D340[] = "__OTR__ast_audio/ast_audio_v1_instrument_D340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D360[] = "__OTR__ast_audio/ast_audio_v1_instrument_D360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D380[] = "__OTR__ast_audio/ast_audio_v1_instrument_D380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D3A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D3A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D3C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D3C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D3E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_D3E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D400[] = "__OTR__ast_audio/ast_audio_v1_instrument_D400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_D420[] = "__OTR__ast_audio/ast_audio_v1_instrument_D420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_D440[] = "__OTR__ast_audio/ast_audio_v1_sound_font_D440";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D640_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D640_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_D650[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_D650";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D6E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D6E0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D6F0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D6F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D700";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D710_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D710_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D720";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D730_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D730_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D740";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D750_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D750_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D760";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D770_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D770_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D780";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D790_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D7A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D7A0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D7B0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D7B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D7C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D7C0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D7D0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D7D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D7E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D7E0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D7F0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D7F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D800";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D810_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D820";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D830_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D840";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D850_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D860";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D870_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D880";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D890_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D8A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D8A0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D8B0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D8B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D8C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D8C0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D8D0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D8D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D8E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D8E0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D8F0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D8F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D900";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D910_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D920";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D930_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D940";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D950_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D960";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D970_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D980";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D990_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D9A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D9A0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D9B0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D9B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D9C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D9C0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D9D0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D9D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_D9E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_D9E0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_D9F0_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_D9F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_DA00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_DA00";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_DA10_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_DA10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_DA20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_DA20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_DA70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_DA70";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_DA80_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_DA80_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_DA90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_DA90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_DAE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_DAE0";
+
+static const ALIGN_ASSET(2) char Sample_P_D440_O_DB10_B_2[] = "__OTR__ast_audio/Sample_P_D440_O_DB10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_DB20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_DB20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_DB70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_DB70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_DB80[] = "__OTR__ast_audio/ast_audio_v1_envelope_DB80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DBA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DBA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DBC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DBC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DBE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DBE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DC00[] = "__OTR__ast_audio/ast_audio_v1_instrument_DC00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DC20[] = "__OTR__ast_audio/ast_audio_v1_instrument_DC20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DC40[] = "__OTR__ast_audio/ast_audio_v1_instrument_DC40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DC60[] = "__OTR__ast_audio/ast_audio_v1_instrument_DC60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DC80[] = "__OTR__ast_audio/ast_audio_v1_instrument_DC80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DCA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DCA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DCC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DCC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DCE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DCE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DD00[] = "__OTR__ast_audio/ast_audio_v1_instrument_DD00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DD20[] = "__OTR__ast_audio/ast_audio_v1_instrument_DD20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DD40[] = "__OTR__ast_audio/ast_audio_v1_instrument_DD40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DD60[] = "__OTR__ast_audio/ast_audio_v1_instrument_DD60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DD80[] = "__OTR__ast_audio/ast_audio_v1_instrument_DD80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DDA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DDA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DDC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DDC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DDE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_DDE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DE00[] = "__OTR__ast_audio/ast_audio_v1_instrument_DE00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_DE20[] = "__OTR__ast_audio/ast_audio_v1_instrument_DE20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_DE40[] = "__OTR__ast_audio/ast_audio_v1_sound_font_DE40";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E040_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E040_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_E050[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_E050";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E0E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E0E0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E0F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E0F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E100";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E110_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E110_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E120[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E120";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E130_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E130_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E140";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E150_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E150_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E160[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E160";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E170_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E170_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E180";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E190_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E190_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E1A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E1A0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E1B0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E1B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E1C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E1C0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E1D0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E1D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E1E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E1E0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E1F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E1F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E200[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E200";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E210_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E210_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E220[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E220";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E230_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E230_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E240";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E250_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E250_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E260";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E270_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E270_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E280";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E290_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E290_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E2A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E2A0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E2B0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E2B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E2C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E2C0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E2D0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E2D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E2E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E2E0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E2F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E2F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E300[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E300";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E310_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E310_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E320[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E320";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E330_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E330_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E340[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E340";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E350_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E350_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E360[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E360";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E370_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E370_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E380[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E380";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E390_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E390_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E3A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E3A0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E3B0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E3B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E3C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E3C0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E3D0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E3D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E3E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E3E0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E3F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E3F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E400";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E410_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E410_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E420[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E420";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E430_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E430_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E440";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E450_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E450_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E460";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E470_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E470_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E480[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E480";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E490_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E490_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E4A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E4A0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E4B0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E4B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E4C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E4C0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E4D0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E4D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E4E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E4E0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E4F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E4F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E500[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E500";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E510_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E510_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E520";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E530_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E530_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E540";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E550_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E550_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E560";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E570_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E570_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E580[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E580";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E590_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E590_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E5A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E5A0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E5B0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E5B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E5C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E5C0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E5D0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E5D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E5E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E5E0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E5F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E5F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_E600[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_E600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E650[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E650";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E660_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E660_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_E670[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_E670";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E6C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E6C0";
+
+static const ALIGN_ASSET(2) char Sample_P_DE40_O_E6F0_B_2[] = "__OTR__ast_audio/Sample_P_DE40_O_E6F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_E700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_E700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_E750[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_E750";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_E760[] = "__OTR__ast_audio/ast_audio_v1_envelope_E760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E780[] = "__OTR__ast_audio/ast_audio_v1_instrument_E780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E7A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E7A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E7C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E7C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E7E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E7E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E800[] = "__OTR__ast_audio/ast_audio_v1_instrument_E800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E820[] = "__OTR__ast_audio/ast_audio_v1_instrument_E820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E840[] = "__OTR__ast_audio/ast_audio_v1_instrument_E840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E860[] = "__OTR__ast_audio/ast_audio_v1_instrument_E860";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E880[] = "__OTR__ast_audio/ast_audio_v1_instrument_E880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E8A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E8A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E8C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E8C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E8E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E8E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E900[] = "__OTR__ast_audio/ast_audio_v1_instrument_E900";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E920[] = "__OTR__ast_audio/ast_audio_v1_instrument_E920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E940[] = "__OTR__ast_audio/ast_audio_v1_instrument_E940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E960[] = "__OTR__ast_audio/ast_audio_v1_instrument_E960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E980[] = "__OTR__ast_audio/ast_audio_v1_instrument_E980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E9A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E9A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E9C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E9C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_E9E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_E9E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EA00[] = "__OTR__ast_audio/ast_audio_v1_instrument_EA00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EA20[] = "__OTR__ast_audio/ast_audio_v1_instrument_EA20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EA40[] = "__OTR__ast_audio/ast_audio_v1_instrument_EA40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EA60[] = "__OTR__ast_audio/ast_audio_v1_instrument_EA60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EA80[] = "__OTR__ast_audio/ast_audio_v1_instrument_EA80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EAA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_EAA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EAC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_EAC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EAE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_EAE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EB00[] = "__OTR__ast_audio/ast_audio_v1_instrument_EB00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EB20[] = "__OTR__ast_audio/ast_audio_v1_instrument_EB20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EB40[] = "__OTR__ast_audio/ast_audio_v1_instrument_EB40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EB60[] = "__OTR__ast_audio/ast_audio_v1_instrument_EB60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_EB80[] = "__OTR__ast_audio/ast_audio_v1_instrument_EB80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_EBA0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_EBA0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EDA0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EDA0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_EDB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_EDB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EE40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EE40";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EE50_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EE50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EE60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EE60";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EE70_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EE70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EE80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EE80";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EE90_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EE90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EEA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EEA0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EEB0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EEB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EEC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EEC0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EED0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EEE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EEE0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EEF0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EEF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EF00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EF00";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EF10_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EF10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EF20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EF20";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EF30_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EF30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EF40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EF40";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EF50_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EF50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EF60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EF60";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EF70_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EF70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EF80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EF80";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EF90_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EF90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EFA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EFA0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EFB0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EFB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EFC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EFC0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EFD0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EFD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_EFE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_EFE0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_EFF0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_EFF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F000";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F010_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F010_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F020";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F030_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F030_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F040";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F050_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F050_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F060";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F070_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F070_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F080";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F090_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F090_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F0A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F0A0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F0B0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F0B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F0C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F0C0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F0D0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F0D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F0E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F0E0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F0F0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F0F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F100";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F110_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F110_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F120[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F120";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F130_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F130_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F140";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F150_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F150_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F160[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F160";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F170_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F170_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F180";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F190_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F190_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F1A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F1A0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F1B0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F1B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F1C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F1C0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F1D0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F1D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F1E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F1E0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F1F0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F1F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F200[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F200";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F210_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F210_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F220[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F220";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F230_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F230_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F240";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F250_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F250_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F260";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F270_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F270_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F280";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F290_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F290_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F2A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F2A0";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F2B0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F2B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_F2C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_F2C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F310[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F310";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F320_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F320_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_F330[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_F330";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F380[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F380";
+
+static const ALIGN_ASSET(2) char Sample_P_EBA0_O_F3B0_B_2[] = "__OTR__ast_audio/Sample_P_EBA0_O_F3B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_F3C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_F3C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_F410[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_F410";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_F420[] = "__OTR__ast_audio/ast_audio_v1_envelope_F420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F440[] = "__OTR__ast_audio/ast_audio_v1_instrument_F440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F460[] = "__OTR__ast_audio/ast_audio_v1_instrument_F460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F480[] = "__OTR__ast_audio/ast_audio_v1_instrument_F480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F4A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F4A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F4C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F4C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F4E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F4E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F500[] = "__OTR__ast_audio/ast_audio_v1_instrument_F500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F520[] = "__OTR__ast_audio/ast_audio_v1_instrument_F520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F540[] = "__OTR__ast_audio/ast_audio_v1_instrument_F540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F560[] = "__OTR__ast_audio/ast_audio_v1_instrument_F560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F580[] = "__OTR__ast_audio/ast_audio_v1_instrument_F580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F5A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F5A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F5C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F5C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F5E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F5E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F600[] = "__OTR__ast_audio/ast_audio_v1_instrument_F600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F620[] = "__OTR__ast_audio/ast_audio_v1_instrument_F620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F640[] = "__OTR__ast_audio/ast_audio_v1_instrument_F640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F660[] = "__OTR__ast_audio/ast_audio_v1_instrument_F660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F680[] = "__OTR__ast_audio/ast_audio_v1_instrument_F680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F6A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F6A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F6C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F6C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F6E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F6E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F700[] = "__OTR__ast_audio/ast_audio_v1_instrument_F700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F720[] = "__OTR__ast_audio/ast_audio_v1_instrument_F720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F740[] = "__OTR__ast_audio/ast_audio_v1_instrument_F740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F760[] = "__OTR__ast_audio/ast_audio_v1_instrument_F760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F780[] = "__OTR__ast_audio/ast_audio_v1_instrument_F780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_F7A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_F7A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_F7C0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_F7C0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_F9C0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_F9C0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_F9D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_F9D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FA60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FA60";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FA70_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FA70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FA80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FA80";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FA90_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FA90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FAA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FAA0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FAB0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FAB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FAC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FAC0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FAD0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FAD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FAE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FAE0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FAF0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FAF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FB00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FB00";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FB10_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FB10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FB20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FB20";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FB30_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FB30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FB40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FB40";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FB50_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FB50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FB60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FB60";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FB70_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FB70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FB80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FB80";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FB90_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FB90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FBA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FBA0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FBB0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FBB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FBC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FBC0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FBD0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FBD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FBE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FBE0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FBF0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FBF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FC00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FC00";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FC10_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FC10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FC20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FC20";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FC30_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FC30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FC40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FC40";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FC50_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FC50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FC60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FC60";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FC70_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FC70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FC80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FC80";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FC90_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FC90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FCA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FCA0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FCB0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FCB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FCC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FCC0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FCD0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FCD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FCE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FCE0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FCF0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FCF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FD00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FD00";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FD10_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FD10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FD20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FD20";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FD30_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FD30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FD40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FD40";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FD50_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FD50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FD60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FD60";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FD70_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FD70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FD80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FD80";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FD90_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FD90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FDA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FDA0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FDB0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FDB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FDC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FDC0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FDD0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FDD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FDE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FDE0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FDF0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FDF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FE00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FE00";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FE10_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FE10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FE20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FE20";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FE30_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FE30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FE40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FE40";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FE50_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FE50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FE60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FE60";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FE70_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FE70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FE80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FE80";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FE90_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FE90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FEA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FEA0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FEB0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FEB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FEC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FEC0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FED0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FEE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FEE0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FEF0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FEF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FF00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FF00";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FF10_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FF10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FF20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FF20";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FF30_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FF30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FF40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FF40";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FF50_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FF50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FF60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FF60";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FF70_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FF70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FF80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FF80";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FF90_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FF90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FFA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FFA0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FFB0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FFB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FFC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FFC0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FFD0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FFD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_FFE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_FFE0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_FFF0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_FFF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10000";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_10010_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_10010_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10020";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_10030_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_10030_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10040";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_10050_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_10050_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10060";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_10070_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_10070_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_10080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_10080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_100D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_100D0";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_100E0_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_100E0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_100F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_100F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10140";
+
+static const ALIGN_ASSET(2) char Sample_P_F7C0_O_10170_B_2[] = "__OTR__ast_audio/Sample_P_F7C0_O_10170_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_10180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_10180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_101D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_101D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_101E0[] = "__OTR__ast_audio/ast_audio_v1_envelope_101E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10200[] = "__OTR__ast_audio/ast_audio_v1_instrument_10200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10220[] = "__OTR__ast_audio/ast_audio_v1_instrument_10220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10240[] = "__OTR__ast_audio/ast_audio_v1_instrument_10240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10260[] = "__OTR__ast_audio/ast_audio_v1_instrument_10260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10280[] = "__OTR__ast_audio/ast_audio_v1_instrument_10280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_102A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_102A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_102C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_102C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_102E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_102E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10300[] = "__OTR__ast_audio/ast_audio_v1_instrument_10300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10320[] = "__OTR__ast_audio/ast_audio_v1_instrument_10320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10340[] = "__OTR__ast_audio/ast_audio_v1_instrument_10340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10360[] = "__OTR__ast_audio/ast_audio_v1_instrument_10360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10380[] = "__OTR__ast_audio/ast_audio_v1_instrument_10380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_103A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_103A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_103C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_103C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_103E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_103E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10400[] = "__OTR__ast_audio/ast_audio_v1_instrument_10400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10420[] = "__OTR__ast_audio/ast_audio_v1_instrument_10420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10440[] = "__OTR__ast_audio/ast_audio_v1_instrument_10440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10460[] = "__OTR__ast_audio/ast_audio_v1_instrument_10460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10480[] = "__OTR__ast_audio/ast_audio_v1_instrument_10480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_104A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_104A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_104C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_104C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_104E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_104E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10500[] = "__OTR__ast_audio/ast_audio_v1_instrument_10500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10520[] = "__OTR__ast_audio/ast_audio_v1_instrument_10520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10540[] = "__OTR__ast_audio/ast_audio_v1_instrument_10540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10560[] = "__OTR__ast_audio/ast_audio_v1_instrument_10560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10580[] = "__OTR__ast_audio/ast_audio_v1_instrument_10580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_105A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_105A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_105C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_105C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_105E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_105E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10600[] = "__OTR__ast_audio/ast_audio_v1_instrument_10600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10620[] = "__OTR__ast_audio/ast_audio_v1_instrument_10620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10640[] = "__OTR__ast_audio/ast_audio_v1_instrument_10640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10660[] = "__OTR__ast_audio/ast_audio_v1_instrument_10660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_10680[] = "__OTR__ast_audio/ast_audio_v1_instrument_10680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_106A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_106A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_106C0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_106C0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_108C0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_108C0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_108D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_108D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10960";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10970_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10980";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10990_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_109A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_109A0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_109B0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_109B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_109C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_109C0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_109D0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_109D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_109E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_109E0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_109F0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_109F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10A00";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10A10_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10A20";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10A30_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10A40";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10A50_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10A60";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10A70_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10A80";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10A90_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10AB0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10AD0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10AF0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10B00";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10B10_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10B20";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10B30_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10B40";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10B50_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10B60";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10B70_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10B80";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10B90_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10BB0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10BD0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10BF0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10C00";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10C10_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10C20";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10C30_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10C40";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10C50_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10C60";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10C70_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10C80";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10C90_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10CB0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10CD0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10CF0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10D00";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10D10_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10D20";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10D30_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10D40";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10D50_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10D60";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10D70_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10D80";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10D90_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10DB0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10DD0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10DF0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10E00";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10E10_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10E20";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10E30_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10E40";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10E50_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10E60";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10E70_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10E80";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10E90_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10EB0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10ED0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10EF0_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10F00";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10F10_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10F20";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10F30_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10F40";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10F50_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10F50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10F60";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10F70_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10F70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10F80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10F80";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_10F90_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_10F90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_10FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_10FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_10FF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_10FF0";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_11000_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_11000_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_11010[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_11010";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11060";
+
+static const ALIGN_ASSET(2) char Sample_P_106C0_O_11090_B_2[] = "__OTR__ast_audio/Sample_P_106C0_O_11090_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_110A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_110A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_110F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_110F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_11100[] = "__OTR__ast_audio/ast_audio_v1_envelope_11100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11120[] = "__OTR__ast_audio/ast_audio_v1_instrument_11120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11140[] = "__OTR__ast_audio/ast_audio_v1_instrument_11140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11160[] = "__OTR__ast_audio/ast_audio_v1_instrument_11160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11180[] = "__OTR__ast_audio/ast_audio_v1_instrument_11180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_111A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_111A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_111C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_111C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_111E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_111E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11200[] = "__OTR__ast_audio/ast_audio_v1_instrument_11200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11220[] = "__OTR__ast_audio/ast_audio_v1_instrument_11220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11240[] = "__OTR__ast_audio/ast_audio_v1_instrument_11240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11260[] = "__OTR__ast_audio/ast_audio_v1_instrument_11260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11280[] = "__OTR__ast_audio/ast_audio_v1_instrument_11280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_112A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_112A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_112C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_112C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_112E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_112E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11300[] = "__OTR__ast_audio/ast_audio_v1_instrument_11300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11320[] = "__OTR__ast_audio/ast_audio_v1_instrument_11320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11340[] = "__OTR__ast_audio/ast_audio_v1_instrument_11340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11360[] = "__OTR__ast_audio/ast_audio_v1_instrument_11360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11380[] = "__OTR__ast_audio/ast_audio_v1_instrument_11380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_113A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_113A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_113C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_113C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_113E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_113E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11400[] = "__OTR__ast_audio/ast_audio_v1_instrument_11400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11420[] = "__OTR__ast_audio/ast_audio_v1_instrument_11420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11440[] = "__OTR__ast_audio/ast_audio_v1_instrument_11440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11460[] = "__OTR__ast_audio/ast_audio_v1_instrument_11460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11480[] = "__OTR__ast_audio/ast_audio_v1_instrument_11480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_114A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_114A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_114C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_114C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_114E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_114E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11500[] = "__OTR__ast_audio/ast_audio_v1_instrument_11500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11520[] = "__OTR__ast_audio/ast_audio_v1_instrument_11520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11540[] = "__OTR__ast_audio/ast_audio_v1_instrument_11540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11560[] = "__OTR__ast_audio/ast_audio_v1_instrument_11560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11580[] = "__OTR__ast_audio/ast_audio_v1_instrument_11580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_115A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_115A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_115C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_115C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_115E0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_115E0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_117E0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_117E0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_117F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_117F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11880";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11890_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_118A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_118A0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_118B0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_118B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_118C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_118C0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_118D0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_118D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_118E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_118E0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_118F0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_118F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11900";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11910_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11920";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11930_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11940";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11950_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11960";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11970_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11980";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11990_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_119A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_119A0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_119B0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_119B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_119C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_119C0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_119D0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_119D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_119E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_119E0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_119F0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_119F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11A00";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11A10_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11A20";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11A30_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11A40";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11A50_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11A60";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11A70_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11A80";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11A90_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11AB0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11AD0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11AF0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11B00";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11B10_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11B20";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11B30_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11B40";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11B50_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11B60";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11B70_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11B80";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11B90_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11BB0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11BD0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11BF0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11C00";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11C10_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11C20";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11C30_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11C40";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11C50_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11C60";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11C70_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11C80";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11C90_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11CB0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11CD0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11CF0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11D00";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11D10_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11D20";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11D30_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11D40";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11D50_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11D60";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11D70_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11D80";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11D90_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11DB0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11DD0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11DF0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_11E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_11E00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11E50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11E50";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11E60_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11E60_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_11E70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_11E70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_115E0_O_11EF0_B_2[] = "__OTR__ast_audio/Sample_P_115E0_O_11EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_11F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_11F00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_11F50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_11F50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_11F60[] = "__OTR__ast_audio/ast_audio_v1_envelope_11F60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11F80[] = "__OTR__ast_audio/ast_audio_v1_instrument_11F80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11FA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_11FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11FC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_11FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_11FE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_11FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12000[] = "__OTR__ast_audio/ast_audio_v1_instrument_12000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12020[] = "__OTR__ast_audio/ast_audio_v1_instrument_12020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12040[] = "__OTR__ast_audio/ast_audio_v1_instrument_12040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12060[] = "__OTR__ast_audio/ast_audio_v1_instrument_12060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12080[] = "__OTR__ast_audio/ast_audio_v1_instrument_12080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_120A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_120A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_120C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_120C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_120E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_120E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12100[] = "__OTR__ast_audio/ast_audio_v1_instrument_12100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12120[] = "__OTR__ast_audio/ast_audio_v1_instrument_12120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12140[] = "__OTR__ast_audio/ast_audio_v1_instrument_12140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12160[] = "__OTR__ast_audio/ast_audio_v1_instrument_12160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12180[] = "__OTR__ast_audio/ast_audio_v1_instrument_12180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_121A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_121A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_121C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_121C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_121E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_121E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12200[] = "__OTR__ast_audio/ast_audio_v1_instrument_12200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12220[] = "__OTR__ast_audio/ast_audio_v1_instrument_12220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12240[] = "__OTR__ast_audio/ast_audio_v1_instrument_12240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12260[] = "__OTR__ast_audio/ast_audio_v1_instrument_12260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12280[] = "__OTR__ast_audio/ast_audio_v1_instrument_12280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_122A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_122A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_122C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_122C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_122E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_122E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12300[] = "__OTR__ast_audio/ast_audio_v1_instrument_12300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12320[] = "__OTR__ast_audio/ast_audio_v1_instrument_12320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12340[] = "__OTR__ast_audio/ast_audio_v1_instrument_12340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12360[] = "__OTR__ast_audio/ast_audio_v1_instrument_12360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12380[] = "__OTR__ast_audio/ast_audio_v1_instrument_12380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_123A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_123A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_123C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_123C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_123E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_123E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_12400[] = "__OTR__ast_audio/ast_audio_v1_sound_font_12400";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12600_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12600_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_12610[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_12610";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_126A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_126A0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_126B0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_126B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_126C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_126C0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_126D0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_126D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_126E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_126E0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_126F0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_126F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12700";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12710_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12710_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12720";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12730_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12730_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12740";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12750_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12750_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12760";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12770_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12770_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12780";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12790_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_127A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_127A0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_127B0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_127B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_127C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_127C0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_127D0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_127D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_127E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_127E0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_127F0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_127F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12800";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12810_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12820";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12830_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12840";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12850_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12860";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12870_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12880";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12890_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_128A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_128A0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_128B0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_128B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_128C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_128C0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_128D0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_128D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_128E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_128E0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_128F0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_128F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12900";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12910_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12920";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12930_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12940";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12950_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12960";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12970_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12980";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12990_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_129A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_129A0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_129B0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_129B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_129C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_129C0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_129D0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_129D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_129E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_129E0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_129F0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_129F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12A00";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12A10_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12A20";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12A30_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12A40";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12A50_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12A60";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12A70_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12A80";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12A90_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12AB0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12AD0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12AF0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12B00";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12B10_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12B20";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12B30_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12B40";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12B50_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12B60";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12B70_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12B80";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12B90_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12BB0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12BD0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12BF0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12C00";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12C10_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12C20";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12C30_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12C40";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12C50_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12C60";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12C70_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12C80";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12C90_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12CB0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12CD0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12CF0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12D00";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12D10_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12D20";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12D30_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12D40";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12D50_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12D60";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12D70_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12D80";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12D90_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12DB0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_12DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_12DC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12E10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12E10";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12E20_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12E20_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_12E30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_12E30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12E80";
+
+static const ALIGN_ASSET(2) char Sample_P_12400_O_12EB0_B_2[] = "__OTR__ast_audio/Sample_P_12400_O_12EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_12EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_12EC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_12F10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_12F10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_12F20[] = "__OTR__ast_audio/ast_audio_v1_envelope_12F20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12F40[] = "__OTR__ast_audio/ast_audio_v1_instrument_12F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12F60[] = "__OTR__ast_audio/ast_audio_v1_instrument_12F60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12F80[] = "__OTR__ast_audio/ast_audio_v1_instrument_12F80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12FA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_12FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12FC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_12FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_12FE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_12FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13000[] = "__OTR__ast_audio/ast_audio_v1_instrument_13000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13020[] = "__OTR__ast_audio/ast_audio_v1_instrument_13020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13040[] = "__OTR__ast_audio/ast_audio_v1_instrument_13040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13060[] = "__OTR__ast_audio/ast_audio_v1_instrument_13060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13080[] = "__OTR__ast_audio/ast_audio_v1_instrument_13080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_130A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_130A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_130C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_130C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_130E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_130E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13100[] = "__OTR__ast_audio/ast_audio_v1_instrument_13100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13120[] = "__OTR__ast_audio/ast_audio_v1_instrument_13120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13140[] = "__OTR__ast_audio/ast_audio_v1_instrument_13140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13160[] = "__OTR__ast_audio/ast_audio_v1_instrument_13160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13180[] = "__OTR__ast_audio/ast_audio_v1_instrument_13180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_131A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_131A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_131C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_131C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_131E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_131E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13200[] = "__OTR__ast_audio/ast_audio_v1_instrument_13200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13220[] = "__OTR__ast_audio/ast_audio_v1_instrument_13220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13240[] = "__OTR__ast_audio/ast_audio_v1_instrument_13240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13260[] = "__OTR__ast_audio/ast_audio_v1_instrument_13260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13280[] = "__OTR__ast_audio/ast_audio_v1_instrument_13280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_132A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_132A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_132C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_132C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_132E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_132E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13300[] = "__OTR__ast_audio/ast_audio_v1_instrument_13300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13320[] = "__OTR__ast_audio/ast_audio_v1_instrument_13320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13340[] = "__OTR__ast_audio/ast_audio_v1_instrument_13340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13360[] = "__OTR__ast_audio/ast_audio_v1_instrument_13360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13380[] = "__OTR__ast_audio/ast_audio_v1_instrument_13380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_133A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_133A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_133C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_133C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_133E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_133E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13400[] = "__OTR__ast_audio/ast_audio_v1_instrument_13400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13420[] = "__OTR__ast_audio/ast_audio_v1_instrument_13420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13440[] = "__OTR__ast_audio/ast_audio_v1_instrument_13440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13460[] = "__OTR__ast_audio/ast_audio_v1_instrument_13460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_13480[] = "__OTR__ast_audio/ast_audio_v1_instrument_13480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_134A0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_134A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_136A0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_136A0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_136B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_136B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13740";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13750_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13750_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13760";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13770_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13770_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13780";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13790_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_137A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_137A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_137B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_137B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_137C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_137C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_137D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_137D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_137E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_137E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_137F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_137F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13800";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13810_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13820";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13830_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13840";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13850_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13860";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13870_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13880";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13890_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_138A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_138A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_138B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_138B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_138C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_138C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_138D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_138D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_138E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_138E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_138F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_138F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13900";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13910_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13920";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13930_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13940";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13950_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13960";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13970_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13980";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13990_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_139A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_139A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_139B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_139B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_139C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_139C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_139D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_139D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_139E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_139E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_139F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_139F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13A00";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13A10_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13A10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13A20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13A20";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13A30_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13A30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13A40";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13A50_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13A50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13A60";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13A70_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13A70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13A80";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13A90_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13A90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13AB0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13AB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13AC0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13AD0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13AE0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13AF0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13AF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13B00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13B00";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13B10_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13B10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13B20";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13B30_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13B30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13B40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13B40";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13B50_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13B50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13B60";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13B70_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13B70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13B80";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13B90_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13B90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13BB0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13BB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13BC0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13BD0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13BD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13BE0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13BF0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13BF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13C00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13C00";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13C10_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13C10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13C20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13C20";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13C30_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13C30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13C40";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13C50_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13C50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13C60";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13C70_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13C70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13C80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13C80";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13C90_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13C90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13CB0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13CB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13CD0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13CF0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13D00";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13D10_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13D20";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13D30_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13D40";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13D50_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13D60";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13D70_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13D80";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13D90_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13DB0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13DD0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13DF0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13E00";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13E10_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13E20";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13E30_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13E40";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13E50_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13E60";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13E70_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13E80";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13E90_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13EB0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13ED0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13EF0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13F00";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13F10_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13F20";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13F30_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13F40";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13F50_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13F50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13F60";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13F70_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13F70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13F80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13F80";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13F90_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13F90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13FA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13FB0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13FB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13FC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13FC0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13FD0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13FD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_13FE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_13FE0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_13FF0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_13FF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14000";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14010_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14010_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14020";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14030_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14030_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14040";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14050_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14050_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14060";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14070_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14070_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14080[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14080";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14090_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14090_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_140A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_140A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_140B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_140B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_140C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_140C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_140D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_140D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_140E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_140E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_140F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_140F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14100";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14110_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14110_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14120[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14120";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14130_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14130_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14140";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14150_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14150_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14160[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14160";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14170_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14170_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14180";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14190_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14190_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_141A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_141A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_141B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_141B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_141C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_141C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_141D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_141D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_141E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_141E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_141F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_141F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14200[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14200";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14210_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14210_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14220[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14220";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14230_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14230_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14240";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14250_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14250_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14260";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14270_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14270_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14280[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14280";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14290_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14290_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_142A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_142A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_142B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_142B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_142C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_142C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_142D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_142D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_142E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_142E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_142F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_142F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14300[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14300";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14310_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14310_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14320[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14320";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14330_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14330_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14340[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14340";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14350_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14350_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14360[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14360";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14370_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14370_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14380[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14380";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14390_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14390_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_143A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_143A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_143B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_143B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_143C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_143C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_143D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_143D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_143E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_143E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_143F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_143F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14400";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14410_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14410_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14420[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14420";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14430_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14430_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14440";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14450_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14450_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14460";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14470_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14470_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14480[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14480";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14490_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14490_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_144A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_144A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_144B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_144B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_144C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_144C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_144D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_144D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_144E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_144E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_144F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_144F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14500[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14500";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14510_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14510_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14520";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14530_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14530_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14540";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14550_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14550_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14560";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14570_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14570_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14580[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14580";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14590_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14590_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_145A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_145A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_145B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_145B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_145C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_145C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_145D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_145D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_145E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_145E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_145F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_145F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14600[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14600";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14610_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14610_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14620[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14620";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14630_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14630_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14640";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14650_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14650_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14660[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14660";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14670_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14670_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14680[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14680";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14690_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14690_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_146A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_146A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_146B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_146B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_146C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_146C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_146D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_146D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_146E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_146E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_146F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_146F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14700";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14710_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14710_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14720";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14730_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14730_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14740";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14750_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14750_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14760";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14770_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14770_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14780";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14790_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14790_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_147A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_147A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_147B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_147B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_147C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_147C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_147D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_147D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_147E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_147E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_147F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_147F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14800";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14810_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14810_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14820";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14830_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14830_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14840[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14840";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14850_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14850_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14860";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14870_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14870_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14880";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14890_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14890_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_148A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_148A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_148B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_148B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_148C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_148C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_148D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_148D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_148E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_148E0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_148F0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_148F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14900";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14910_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14910_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14920";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14930_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14930_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14940";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14950_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14950_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14960[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14960";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14970_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14970_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14980";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14990_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14990_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_149A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_149A0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_149B0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_149B0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_149C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_149C0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_149D0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_149D0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_149E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_149E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14A30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14A30";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14A40_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14A40_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_14A50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_14A50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14AA0";
+
+static const ALIGN_ASSET(2) char Sample_P_134A0_O_14AD0_B_2[] = "__OTR__ast_audio/Sample_P_134A0_O_14AD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_14AE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_14AE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_14B30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_14B30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_14B40[] = "__OTR__ast_audio/ast_audio_v1_envelope_14B40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14B60[] = "__OTR__ast_audio/ast_audio_v1_instrument_14B60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14B80[] = "__OTR__ast_audio/ast_audio_v1_instrument_14B80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14BA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14BA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14BC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14BC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14BE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14BE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14C00[] = "__OTR__ast_audio/ast_audio_v1_instrument_14C00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14C20[] = "__OTR__ast_audio/ast_audio_v1_instrument_14C20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14C40[] = "__OTR__ast_audio/ast_audio_v1_instrument_14C40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14C60[] = "__OTR__ast_audio/ast_audio_v1_instrument_14C60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14C80[] = "__OTR__ast_audio/ast_audio_v1_instrument_14C80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14CA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14CA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14CC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14CC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14CE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14CE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14D00[] = "__OTR__ast_audio/ast_audio_v1_instrument_14D00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14D20[] = "__OTR__ast_audio/ast_audio_v1_instrument_14D20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14D40[] = "__OTR__ast_audio/ast_audio_v1_instrument_14D40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14D60[] = "__OTR__ast_audio/ast_audio_v1_instrument_14D60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14D80[] = "__OTR__ast_audio/ast_audio_v1_instrument_14D80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14DA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14DA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14DC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14DC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14DE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14DE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14E00[] = "__OTR__ast_audio/ast_audio_v1_instrument_14E00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14E20[] = "__OTR__ast_audio/ast_audio_v1_instrument_14E20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14E40[] = "__OTR__ast_audio/ast_audio_v1_instrument_14E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14E60[] = "__OTR__ast_audio/ast_audio_v1_instrument_14E60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14E80[] = "__OTR__ast_audio/ast_audio_v1_instrument_14E80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14EA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14EA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14EC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14EC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14EE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14EE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14F00[] = "__OTR__ast_audio/ast_audio_v1_instrument_14F00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14F20[] = "__OTR__ast_audio/ast_audio_v1_instrument_14F20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14F40[] = "__OTR__ast_audio/ast_audio_v1_instrument_14F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14F60[] = "__OTR__ast_audio/ast_audio_v1_instrument_14F60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14F80[] = "__OTR__ast_audio/ast_audio_v1_instrument_14F80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14FA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14FC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_14FE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_14FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15000[] = "__OTR__ast_audio/ast_audio_v1_instrument_15000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15020[] = "__OTR__ast_audio/ast_audio_v1_instrument_15020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15040[] = "__OTR__ast_audio/ast_audio_v1_instrument_15040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15060[] = "__OTR__ast_audio/ast_audio_v1_instrument_15060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15080[] = "__OTR__ast_audio/ast_audio_v1_instrument_15080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_150A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_150A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_150C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_150C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_150E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_150E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15100[] = "__OTR__ast_audio/ast_audio_v1_instrument_15100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15120[] = "__OTR__ast_audio/ast_audio_v1_instrument_15120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15140[] = "__OTR__ast_audio/ast_audio_v1_instrument_15140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15160[] = "__OTR__ast_audio/ast_audio_v1_instrument_15160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15180[] = "__OTR__ast_audio/ast_audio_v1_instrument_15180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_151A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_151A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_151C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_151C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_151E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_151E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15200[] = "__OTR__ast_audio/ast_audio_v1_instrument_15200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15220[] = "__OTR__ast_audio/ast_audio_v1_instrument_15220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15240[] = "__OTR__ast_audio/ast_audio_v1_instrument_15240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15260[] = "__OTR__ast_audio/ast_audio_v1_instrument_15260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15280[] = "__OTR__ast_audio/ast_audio_v1_instrument_15280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_152A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_152A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_152C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_152C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_152E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_152E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15300[] = "__OTR__ast_audio/ast_audio_v1_instrument_15300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15320[] = "__OTR__ast_audio/ast_audio_v1_instrument_15320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15340[] = "__OTR__ast_audio/ast_audio_v1_instrument_15340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15360[] = "__OTR__ast_audio/ast_audio_v1_instrument_15360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15380[] = "__OTR__ast_audio/ast_audio_v1_instrument_15380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_153A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_153A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_153C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_153C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_153E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_153E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15400[] = "__OTR__ast_audio/ast_audio_v1_instrument_15400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15420[] = "__OTR__ast_audio/ast_audio_v1_instrument_15420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15440[] = "__OTR__ast_audio/ast_audio_v1_instrument_15440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15460[] = "__OTR__ast_audio/ast_audio_v1_instrument_15460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15480[] = "__OTR__ast_audio/ast_audio_v1_instrument_15480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_154A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_154A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_154C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_154C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_154E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_154E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15500[] = "__OTR__ast_audio/ast_audio_v1_instrument_15500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15520[] = "__OTR__ast_audio/ast_audio_v1_instrument_15520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15540[] = "__OTR__ast_audio/ast_audio_v1_instrument_15540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15560[] = "__OTR__ast_audio/ast_audio_v1_instrument_15560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15580[] = "__OTR__ast_audio/ast_audio_v1_instrument_15580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_155A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_155A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_155C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_155C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_155E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_155E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15600[] = "__OTR__ast_audio/ast_audio_v1_instrument_15600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15620[] = "__OTR__ast_audio/ast_audio_v1_instrument_15620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15640[] = "__OTR__ast_audio/ast_audio_v1_instrument_15640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15660[] = "__OTR__ast_audio/ast_audio_v1_instrument_15660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15680[] = "__OTR__ast_audio/ast_audio_v1_instrument_15680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_156A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_156A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_156C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_156C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_156E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_156E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15700[] = "__OTR__ast_audio/ast_audio_v1_instrument_15700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15720[] = "__OTR__ast_audio/ast_audio_v1_instrument_15720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15740[] = "__OTR__ast_audio/ast_audio_v1_instrument_15740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15760[] = "__OTR__ast_audio/ast_audio_v1_instrument_15760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15780[] = "__OTR__ast_audio/ast_audio_v1_instrument_15780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_157A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_157A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_157C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_157C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_157E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_157E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15800[] = "__OTR__ast_audio/ast_audio_v1_instrument_15800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15820[] = "__OTR__ast_audio/ast_audio_v1_instrument_15820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15840[] = "__OTR__ast_audio/ast_audio_v1_instrument_15840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15860[] = "__OTR__ast_audio/ast_audio_v1_instrument_15860";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15880[] = "__OTR__ast_audio/ast_audio_v1_instrument_15880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_158A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_158A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_158C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_158C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_158E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_158E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15900[] = "__OTR__ast_audio/ast_audio_v1_instrument_15900";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15920[] = "__OTR__ast_audio/ast_audio_v1_instrument_15920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15940[] = "__OTR__ast_audio/ast_audio_v1_instrument_15940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15960[] = "__OTR__ast_audio/ast_audio_v1_instrument_15960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15980[] = "__OTR__ast_audio/ast_audio_v1_instrument_15980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_159A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_159A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_159C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_159C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_159E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_159E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_15A00[] = "__OTR__ast_audio/ast_audio_v1_instrument_15A00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_15A20[] = "__OTR__ast_audio/ast_audio_v1_sound_font_15A20";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15C20_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15C20_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_15C30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_15C30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15CD0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15CD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15CE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15CE0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15CF0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15CF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15D00";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15D10_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15D10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15D20";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15D30_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15D30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15D40";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15D50_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15D50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15D60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15D60";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15D70_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15D70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15D80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15D80";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15D90_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15D90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15DB0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15DB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15DD0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15DD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15DE0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15DF0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15DF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15E00";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15E10_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15E10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15E20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15E20";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15E30_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15E30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15E40";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15E50_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15E50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15E60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15E60";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15E70_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15E70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15E80";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15E90_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15E90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15EA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15EA0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15EB0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15EB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15ED0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15ED0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15EE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15EE0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15EF0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15EF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15F00";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15F10_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15F10_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15F20";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15F30_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15F30_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15F40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15F40";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15F50_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15F50_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15F60";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15F70_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15F70_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15F80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15F80";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15F90_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15F90_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15FA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15FA0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15FB0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15FB0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15FC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15FC0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15FD0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15FD0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_15FE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_15FE0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_15FF0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_15FF0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16000[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16050[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16050";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_16060_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_16060_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16070[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16070";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_160C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_160C0";
+
+static const ALIGN_ASSET(2) char Sample_P_15A20_O_160F0_B_2[] = "__OTR__ast_audio/Sample_P_15A20_O_160F0_B_2";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16150[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16160[] = "__OTR__ast_audio/ast_audio_v1_envelope_16160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16180[] = "__OTR__ast_audio/ast_audio_v1_instrument_16180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_161A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_161A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_161C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_161C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_161E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_161E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16200[] = "__OTR__ast_audio/ast_audio_v1_instrument_16200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16220[] = "__OTR__ast_audio/ast_audio_v1_instrument_16220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16240[] = "__OTR__ast_audio/ast_audio_v1_instrument_16240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16260[] = "__OTR__ast_audio/ast_audio_v1_instrument_16260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16280[] = "__OTR__ast_audio/ast_audio_v1_instrument_16280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_162A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_162A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_162C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_162C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_162E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_162E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16300[] = "__OTR__ast_audio/ast_audio_v1_instrument_16300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16320[] = "__OTR__ast_audio/ast_audio_v1_instrument_16320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16340[] = "__OTR__ast_audio/ast_audio_v1_instrument_16340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16360[] = "__OTR__ast_audio/ast_audio_v1_instrument_16360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16380[] = "__OTR__ast_audio/ast_audio_v1_instrument_16380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_163A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_163A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_163C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_163C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_163E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_163E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_16400[] = "__OTR__ast_audio/ast_audio_v1_sound_font_16400";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16450_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16450_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16460[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_164B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_164B0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_164E0_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_164E0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_164F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_164F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16540[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16540";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16570_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16570_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16580[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_165D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_165D0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16600_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16600_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16610[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16610";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16660[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16660";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16690_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16690_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_166A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_166A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_166F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_166F0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16720_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16720_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16730[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16730";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16780[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16780";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_167B0_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_167B0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_167C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_167C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16810[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16810";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16840_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16840_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16850[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16850";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_168A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_168A0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_168B0_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_168B0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_168C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_168C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16910[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16910";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16920_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16920_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16930[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16930";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16980[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16980";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16990_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16990_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_169A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_169A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_169F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_169F0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16A00_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16A00_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16A10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16A10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16A60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16A60";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16A90_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16A90_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16AA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16AA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16AF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16AF0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16B20_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16B20_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16B30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16B30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16B80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16B80";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16BB0_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16BB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16BC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16BC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16C10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16C10";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16C40_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16C40_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16C50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16C50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16CA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16CA0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16CB0_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16CB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16CC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16D10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16D10";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16D40_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16D40_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16D50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16D50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16DB0_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16DB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16DC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16E10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16E10";
+
+static const ALIGN_ASSET(2) char Sample_P_16400_O_16E20_B_3[] = "__OTR__ast_audio/Sample_P_16400_O_16E20_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_16E30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_16E30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_16E80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_16E80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F00[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F10[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F20[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F30[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F40[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F50[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F60[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F70[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F80[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_16F90[] = "__OTR__ast_audio/ast_audio_v1_envelope_16F90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16FA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_16FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16FC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_16FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_16FE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_16FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17000[] = "__OTR__ast_audio/ast_audio_v1_instrument_17000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17020[] = "__OTR__ast_audio/ast_audio_v1_instrument_17020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17040[] = "__OTR__ast_audio/ast_audio_v1_instrument_17040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17060[] = "__OTR__ast_audio/ast_audio_v1_instrument_17060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17080[] = "__OTR__ast_audio/ast_audio_v1_instrument_17080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_170A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_170A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_170C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_170C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_170E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_170E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17100[] = "__OTR__ast_audio/ast_audio_v1_instrument_17100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17120[] = "__OTR__ast_audio/ast_audio_v1_drum_17120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17130[] = "__OTR__ast_audio/ast_audio_v1_drum_17130";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17140[] = "__OTR__ast_audio/ast_audio_v1_drum_17140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17150[] = "__OTR__ast_audio/ast_audio_v1_drum_17150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17160[] = "__OTR__ast_audio/ast_audio_v1_drum_17160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17170[] = "__OTR__ast_audio/ast_audio_v1_drum_17170";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17180[] = "__OTR__ast_audio/ast_audio_v1_drum_17180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17190[] = "__OTR__ast_audio/ast_audio_v1_drum_17190";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_171A0[] = "__OTR__ast_audio/ast_audio_v1_drum_171A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_171B0[] = "__OTR__ast_audio/ast_audio_v1_drum_171B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_171C0[] = "__OTR__ast_audio/ast_audio_v1_drum_171C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_171D0[] = "__OTR__ast_audio/ast_audio_v1_drum_171D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_171E0[] = "__OTR__ast_audio/ast_audio_v1_drum_171E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_171F0[] = "__OTR__ast_audio/ast_audio_v1_drum_171F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17200[] = "__OTR__ast_audio/ast_audio_v1_drum_17200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17210[] = "__OTR__ast_audio/ast_audio_v1_drum_17210";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17220[] = "__OTR__ast_audio/ast_audio_v1_drum_17220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17230[] = "__OTR__ast_audio/ast_audio_v1_drum_17230";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17240[] = "__OTR__ast_audio/ast_audio_v1_drum_17240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17250[] = "__OTR__ast_audio/ast_audio_v1_drum_17250";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17260[] = "__OTR__ast_audio/ast_audio_v1_drum_17260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17270[] = "__OTR__ast_audio/ast_audio_v1_drum_17270";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17280[] = "__OTR__ast_audio/ast_audio_v1_drum_17280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17290[] = "__OTR__ast_audio/ast_audio_v1_drum_17290";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_172A0[] = "__OTR__ast_audio/ast_audio_v1_drum_172A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_172B0[] = "__OTR__ast_audio/ast_audio_v1_drum_172B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_172C0[] = "__OTR__ast_audio/ast_audio_v1_drum_172C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_172D0[] = "__OTR__ast_audio/ast_audio_v1_drum_172D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_172E0[] = "__OTR__ast_audio/ast_audio_v1_drum_172E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_172F0[] = "__OTR__ast_audio/ast_audio_v1_drum_172F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17300[] = "__OTR__ast_audio/ast_audio_v1_drum_17300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17310[] = "__OTR__ast_audio/ast_audio_v1_drum_17310";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17320[] = "__OTR__ast_audio/ast_audio_v1_drum_17320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17330[] = "__OTR__ast_audio/ast_audio_v1_drum_17330";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17340[] = "__OTR__ast_audio/ast_audio_v1_drum_17340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17350[] = "__OTR__ast_audio/ast_audio_v1_drum_17350";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17360[] = "__OTR__ast_audio/ast_audio_v1_drum_17360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17370[] = "__OTR__ast_audio/ast_audio_v1_drum_17370";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17380[] = "__OTR__ast_audio/ast_audio_v1_drum_17380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17390[] = "__OTR__ast_audio/ast_audio_v1_drum_17390";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_173A0[] = "__OTR__ast_audio/ast_audio_v1_drum_173A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_173B0[] = "__OTR__ast_audio/ast_audio_v1_drum_173B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_173C0[] = "__OTR__ast_audio/ast_audio_v1_drum_173C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_173D0[] = "__OTR__ast_audio/ast_audio_v1_drum_173D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_173E0[] = "__OTR__ast_audio/ast_audio_v1_drum_173E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_173F0[] = "__OTR__ast_audio/ast_audio_v1_drum_173F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17400[] = "__OTR__ast_audio/ast_audio_v1_drum_17400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17410[] = "__OTR__ast_audio/ast_audio_v1_drum_17410";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17420[] = "__OTR__ast_audio/ast_audio_v1_drum_17420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17430[] = "__OTR__ast_audio/ast_audio_v1_drum_17430";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17440[] = "__OTR__ast_audio/ast_audio_v1_drum_17440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17450[] = "__OTR__ast_audio/ast_audio_v1_drum_17450";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17460[] = "__OTR__ast_audio/ast_audio_v1_drum_17460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17470[] = "__OTR__ast_audio/ast_audio_v1_drum_17470";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17480[] = "__OTR__ast_audio/ast_audio_v1_drum_17480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17490[] = "__OTR__ast_audio/ast_audio_v1_drum_17490";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_174A0[] = "__OTR__ast_audio/ast_audio_v1_drum_174A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_174B0[] = "__OTR__ast_audio/ast_audio_v1_drum_174B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_174C0[] = "__OTR__ast_audio/ast_audio_v1_drum_174C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_174D0[] = "__OTR__ast_audio/ast_audio_v1_drum_174D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_174E0[] = "__OTR__ast_audio/ast_audio_v1_drum_174E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_174F0[] = "__OTR__ast_audio/ast_audio_v1_drum_174F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17500[] = "__OTR__ast_audio/ast_audio_v1_drum_17500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_17510[] = "__OTR__ast_audio/ast_audio_v1_drum_17510";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_17620[] = "__OTR__ast_audio/ast_audio_v1_sound_font_17620";
+
+static const ALIGN_ASSET(2) char Sample_P_17620_O_17630_B_3[] = "__OTR__ast_audio/Sample_P_17620_O_17630_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17690[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17690";
+
+static const ALIGN_ASSET(2) char Sample_P_17620_O_176C0_B_3[] = "__OTR__ast_audio/Sample_P_17620_O_176C0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_176D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_176D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_17730[] = "__OTR__ast_audio/ast_audio_v1_envelope_17730";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17740[] = "__OTR__ast_audio/ast_audio_v1_instrument_17740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17760[] = "__OTR__ast_audio/ast_audio_v1_instrument_17760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_17780[] = "__OTR__ast_audio/ast_audio_v1_instrument_17780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_177A0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_177A0";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_177F0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_177F0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17850[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17850";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17880_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17880_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17890[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17890";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_178E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_178E0";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17910_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17910_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17920[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17970[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17970";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_179A0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_179A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_179B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_179B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17A00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17A00";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17A30_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17A30_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17A40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17A40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17A90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17A90";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17AC0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17AC0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17AD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17AD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17B20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17B20";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17B50_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17B50_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17B60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17B60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17BB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17BB0";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17BE0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17BE0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17BF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17BF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17C40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17C40";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17C50_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17C50_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17C60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17C60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17CB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17CB0";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17CC0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17CC0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17CD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17CD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17D20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17D20";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17D30_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17D30_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17D40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17D40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17D90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17D90";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17DA0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17DA0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17DB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17DB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17E00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17E00";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17E30_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17E30_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17E40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17E90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17E90";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17EC0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17EC0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17ED0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17ED0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17F20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17F20";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17F50_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17F50_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17F60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17F60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_17FB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_17FB0";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_17FE0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_17FE0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_17FF0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_17FF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18040[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18040";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_18050_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_18050_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_180B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_180B0";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_180E0_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_180E0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_180F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_180F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18140";
+
+static const ALIGN_ASSET(2) char Sample_P_177A0_O_18170_B_3[] = "__OTR__ast_audio/Sample_P_177A0_O_18170_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_181D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_181D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18200[] = "__OTR__ast_audio/ast_audio_v1_envelope_18200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18210[] = "__OTR__ast_audio/ast_audio_v1_envelope_18210";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18220[] = "__OTR__ast_audio/ast_audio_v1_envelope_18220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18230[] = "__OTR__ast_audio/ast_audio_v1_envelope_18230";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18240[] = "__OTR__ast_audio/ast_audio_v1_envelope_18240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18250[] = "__OTR__ast_audio/ast_audio_v1_envelope_18250";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18260[] = "__OTR__ast_audio/ast_audio_v1_envelope_18260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18270[] = "__OTR__ast_audio/ast_audio_v1_envelope_18270";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18280[] = "__OTR__ast_audio/ast_audio_v1_instrument_18280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_182A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_182A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_182C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_182C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_182E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_182E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18300[] = "__OTR__ast_audio/ast_audio_v1_instrument_18300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18320[] = "__OTR__ast_audio/ast_audio_v1_instrument_18320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18340[] = "__OTR__ast_audio/ast_audio_v1_instrument_18340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18360[] = "__OTR__ast_audio/ast_audio_v1_instrument_18360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18380[] = "__OTR__ast_audio/ast_audio_v1_instrument_18380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_183A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_183A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_183C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_183C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_183E0[] = "__OTR__ast_audio/ast_audio_v1_instrument_183E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18400[] = "__OTR__ast_audio/ast_audio_v1_instrument_18400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18420[] = "__OTR__ast_audio/ast_audio_v1_instrument_18420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18440[] = "__OTR__ast_audio/ast_audio_v1_instrument_18440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18460[] = "__OTR__ast_audio/ast_audio_v1_drum_18460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18470[] = "__OTR__ast_audio/ast_audio_v1_drum_18470";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18480[] = "__OTR__ast_audio/ast_audio_v1_drum_18480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18490[] = "__OTR__ast_audio/ast_audio_v1_drum_18490";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_184A0[] = "__OTR__ast_audio/ast_audio_v1_drum_184A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_184B0[] = "__OTR__ast_audio/ast_audio_v1_drum_184B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_184C0[] = "__OTR__ast_audio/ast_audio_v1_drum_184C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_184D0[] = "__OTR__ast_audio/ast_audio_v1_drum_184D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_184E0[] = "__OTR__ast_audio/ast_audio_v1_drum_184E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_184F0[] = "__OTR__ast_audio/ast_audio_v1_drum_184F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18500[] = "__OTR__ast_audio/ast_audio_v1_drum_18500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18510[] = "__OTR__ast_audio/ast_audio_v1_drum_18510";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18520[] = "__OTR__ast_audio/ast_audio_v1_drum_18520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18530[] = "__OTR__ast_audio/ast_audio_v1_drum_18530";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18540[] = "__OTR__ast_audio/ast_audio_v1_drum_18540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18550[] = "__OTR__ast_audio/ast_audio_v1_drum_18550";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18560[] = "__OTR__ast_audio/ast_audio_v1_drum_18560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18570[] = "__OTR__ast_audio/ast_audio_v1_drum_18570";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18580[] = "__OTR__ast_audio/ast_audio_v1_drum_18580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18590[] = "__OTR__ast_audio/ast_audio_v1_drum_18590";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_185A0[] = "__OTR__ast_audio/ast_audio_v1_drum_185A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_185B0[] = "__OTR__ast_audio/ast_audio_v1_drum_185B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_185C0[] = "__OTR__ast_audio/ast_audio_v1_drum_185C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_185D0[] = "__OTR__ast_audio/ast_audio_v1_drum_185D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_185E0[] = "__OTR__ast_audio/ast_audio_v1_drum_185E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_185F0[] = "__OTR__ast_audio/ast_audio_v1_drum_185F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18600[] = "__OTR__ast_audio/ast_audio_v1_drum_18600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18610[] = "__OTR__ast_audio/ast_audio_v1_drum_18610";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18620[] = "__OTR__ast_audio/ast_audio_v1_drum_18620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18630[] = "__OTR__ast_audio/ast_audio_v1_drum_18630";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18640[] = "__OTR__ast_audio/ast_audio_v1_drum_18640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18650[] = "__OTR__ast_audio/ast_audio_v1_drum_18650";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18660[] = "__OTR__ast_audio/ast_audio_v1_drum_18660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18670[] = "__OTR__ast_audio/ast_audio_v1_drum_18670";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18680[] = "__OTR__ast_audio/ast_audio_v1_drum_18680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18690[] = "__OTR__ast_audio/ast_audio_v1_drum_18690";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_186A0[] = "__OTR__ast_audio/ast_audio_v1_drum_186A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_186B0[] = "__OTR__ast_audio/ast_audio_v1_drum_186B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_186C0[] = "__OTR__ast_audio/ast_audio_v1_drum_186C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_186D0[] = "__OTR__ast_audio/ast_audio_v1_drum_186D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_186E0[] = "__OTR__ast_audio/ast_audio_v1_drum_186E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_186F0[] = "__OTR__ast_audio/ast_audio_v1_drum_186F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18700[] = "__OTR__ast_audio/ast_audio_v1_drum_18700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18710[] = "__OTR__ast_audio/ast_audio_v1_drum_18710";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18720[] = "__OTR__ast_audio/ast_audio_v1_drum_18720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18730[] = "__OTR__ast_audio/ast_audio_v1_drum_18730";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18740[] = "__OTR__ast_audio/ast_audio_v1_drum_18740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18750[] = "__OTR__ast_audio/ast_audio_v1_drum_18750";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18760[] = "__OTR__ast_audio/ast_audio_v1_drum_18760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18770[] = "__OTR__ast_audio/ast_audio_v1_drum_18770";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18780[] = "__OTR__ast_audio/ast_audio_v1_drum_18780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18790[] = "__OTR__ast_audio/ast_audio_v1_drum_18790";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_187A0[] = "__OTR__ast_audio/ast_audio_v1_drum_187A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_187B0[] = "__OTR__ast_audio/ast_audio_v1_drum_187B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_187C0[] = "__OTR__ast_audio/ast_audio_v1_drum_187C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_187D0[] = "__OTR__ast_audio/ast_audio_v1_drum_187D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_187E0[] = "__OTR__ast_audio/ast_audio_v1_drum_187E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_187F0[] = "__OTR__ast_audio/ast_audio_v1_drum_187F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18800[] = "__OTR__ast_audio/ast_audio_v1_drum_18800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18810[] = "__OTR__ast_audio/ast_audio_v1_drum_18810";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18820[] = "__OTR__ast_audio/ast_audio_v1_drum_18820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18830[] = "__OTR__ast_audio/ast_audio_v1_drum_18830";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18840[] = "__OTR__ast_audio/ast_audio_v1_drum_18840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18850[] = "__OTR__ast_audio/ast_audio_v1_drum_18850";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_18960[] = "__OTR__ast_audio/ast_audio_v1_sound_font_18960";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18990_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18990_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_189A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_189A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_189F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_189F0";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18A20_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18A20_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18A30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18A30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18A80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18A80";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18AB0_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18AB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18AC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18AC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18B10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18B10";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18B40_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18B40_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18B50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18B50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18BA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18BA0";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18BD0_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18BD0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18BE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18BE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18C30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18C30";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18C60_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18C60_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18C70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18C70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18CC0";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18CF0_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18CF0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18D00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18D00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18D50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18D50";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18D60_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18D60_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18D70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18D70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18DC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18DC0";
+
+static const ALIGN_ASSET(2) char Sample_P_18960_O_18DD0_B_3[] = "__OTR__ast_audio/Sample_P_18960_O_18DD0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_18DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_18DE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_18E30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_18E30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18E40[] = "__OTR__ast_audio/ast_audio_v1_envelope_18E40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18E50[] = "__OTR__ast_audio/ast_audio_v1_envelope_18E50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18E60[] = "__OTR__ast_audio/ast_audio_v1_envelope_18E60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18E70[] = "__OTR__ast_audio/ast_audio_v1_envelope_18E70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_18E80[] = "__OTR__ast_audio/ast_audio_v1_envelope_18E80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18E90[] = "__OTR__ast_audio/ast_audio_v1_instrument_18E90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18EB0[] = "__OTR__ast_audio/ast_audio_v1_instrument_18EB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18ED0[] = "__OTR__ast_audio/ast_audio_v1_instrument_18ED0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18EF0[] = "__OTR__ast_audio/ast_audio_v1_instrument_18EF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_18F10[] = "__OTR__ast_audio/ast_audio_v1_instrument_18F10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F30[] = "__OTR__ast_audio/ast_audio_v1_drum_18F30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F40[] = "__OTR__ast_audio/ast_audio_v1_drum_18F40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F50[] = "__OTR__ast_audio/ast_audio_v1_drum_18F50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F60[] = "__OTR__ast_audio/ast_audio_v1_drum_18F60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F70[] = "__OTR__ast_audio/ast_audio_v1_drum_18F70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F80[] = "__OTR__ast_audio/ast_audio_v1_drum_18F80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18F90[] = "__OTR__ast_audio/ast_audio_v1_drum_18F90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18FA0[] = "__OTR__ast_audio/ast_audio_v1_drum_18FA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18FB0[] = "__OTR__ast_audio/ast_audio_v1_drum_18FB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18FC0[] = "__OTR__ast_audio/ast_audio_v1_drum_18FC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18FD0[] = "__OTR__ast_audio/ast_audio_v1_drum_18FD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18FE0[] = "__OTR__ast_audio/ast_audio_v1_drum_18FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_18FF0[] = "__OTR__ast_audio/ast_audio_v1_drum_18FF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19000[] = "__OTR__ast_audio/ast_audio_v1_drum_19000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19010[] = "__OTR__ast_audio/ast_audio_v1_drum_19010";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19020[] = "__OTR__ast_audio/ast_audio_v1_drum_19020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19030[] = "__OTR__ast_audio/ast_audio_v1_drum_19030";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19040[] = "__OTR__ast_audio/ast_audio_v1_drum_19040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19050[] = "__OTR__ast_audio/ast_audio_v1_drum_19050";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19060[] = "__OTR__ast_audio/ast_audio_v1_drum_19060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19070[] = "__OTR__ast_audio/ast_audio_v1_drum_19070";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19080[] = "__OTR__ast_audio/ast_audio_v1_drum_19080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19090[] = "__OTR__ast_audio/ast_audio_v1_drum_19090";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_190A0[] = "__OTR__ast_audio/ast_audio_v1_drum_190A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_190B0[] = "__OTR__ast_audio/ast_audio_v1_drum_190B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_190C0[] = "__OTR__ast_audio/ast_audio_v1_drum_190C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_190D0[] = "__OTR__ast_audio/ast_audio_v1_drum_190D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_190E0[] = "__OTR__ast_audio/ast_audio_v1_drum_190E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_190F0[] = "__OTR__ast_audio/ast_audio_v1_drum_190F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19100[] = "__OTR__ast_audio/ast_audio_v1_drum_19100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19110[] = "__OTR__ast_audio/ast_audio_v1_drum_19110";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19120[] = "__OTR__ast_audio/ast_audio_v1_drum_19120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19130[] = "__OTR__ast_audio/ast_audio_v1_drum_19130";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19140[] = "__OTR__ast_audio/ast_audio_v1_drum_19140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19150[] = "__OTR__ast_audio/ast_audio_v1_drum_19150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19160[] = "__OTR__ast_audio/ast_audio_v1_drum_19160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19170[] = "__OTR__ast_audio/ast_audio_v1_drum_19170";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19180[] = "__OTR__ast_audio/ast_audio_v1_drum_19180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19190[] = "__OTR__ast_audio/ast_audio_v1_drum_19190";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_192A0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_192A0";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_192D0_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_192D0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_192E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_192E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19330[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19330";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_19360_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_19360_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19370[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19370";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_193C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_193C0";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_193F0_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_193F0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19450[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19450";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_19480_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_19480_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19490[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19490";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_194E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_194E0";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_19510_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_19510_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19570[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19570";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_195A0_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_195A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_195B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_195B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19600[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19600";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_19630_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_19630_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19690[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19690";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_196C0_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_196C0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_196D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_196D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19720[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19720";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_19730_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_19730_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19740[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19790[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19790";
+
+static const ALIGN_ASSET(2) char Sample_P_192A0_O_197A0_B_3[] = "__OTR__ast_audio/Sample_P_192A0_O_197A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_197B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_197B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19800[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_19810[] = "__OTR__ast_audio/ast_audio_v1_envelope_19810";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_19820[] = "__OTR__ast_audio/ast_audio_v1_envelope_19820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_19830[] = "__OTR__ast_audio/ast_audio_v1_envelope_19830";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_19840[] = "__OTR__ast_audio/ast_audio_v1_envelope_19840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_19850[] = "__OTR__ast_audio/ast_audio_v1_envelope_19850";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_19860[] = "__OTR__ast_audio/ast_audio_v1_envelope_19860";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_19870[] = "__OTR__ast_audio/ast_audio_v1_instrument_19870";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_19890[] = "__OTR__ast_audio/ast_audio_v1_instrument_19890";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_198B0[] = "__OTR__ast_audio/ast_audio_v1_instrument_198B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_198D0[] = "__OTR__ast_audio/ast_audio_v1_instrument_198D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_198F0[] = "__OTR__ast_audio/ast_audio_v1_instrument_198F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19910[] = "__OTR__ast_audio/ast_audio_v1_drum_19910";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19920[] = "__OTR__ast_audio/ast_audio_v1_drum_19920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19930[] = "__OTR__ast_audio/ast_audio_v1_drum_19930";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19940[] = "__OTR__ast_audio/ast_audio_v1_drum_19940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19950[] = "__OTR__ast_audio/ast_audio_v1_drum_19950";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19960[] = "__OTR__ast_audio/ast_audio_v1_drum_19960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19970[] = "__OTR__ast_audio/ast_audio_v1_drum_19970";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19980[] = "__OTR__ast_audio/ast_audio_v1_drum_19980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19990[] = "__OTR__ast_audio/ast_audio_v1_drum_19990";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_199A0[] = "__OTR__ast_audio/ast_audio_v1_drum_199A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_199B0[] = "__OTR__ast_audio/ast_audio_v1_drum_199B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_199C0[] = "__OTR__ast_audio/ast_audio_v1_drum_199C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_199D0[] = "__OTR__ast_audio/ast_audio_v1_drum_199D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_199E0[] = "__OTR__ast_audio/ast_audio_v1_drum_199E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_199F0[] = "__OTR__ast_audio/ast_audio_v1_drum_199F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A00[] = "__OTR__ast_audio/ast_audio_v1_drum_19A00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A10[] = "__OTR__ast_audio/ast_audio_v1_drum_19A10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A20[] = "__OTR__ast_audio/ast_audio_v1_drum_19A20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A30[] = "__OTR__ast_audio/ast_audio_v1_drum_19A30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A40[] = "__OTR__ast_audio/ast_audio_v1_drum_19A40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A50[] = "__OTR__ast_audio/ast_audio_v1_drum_19A50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A60[] = "__OTR__ast_audio/ast_audio_v1_drum_19A60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A70[] = "__OTR__ast_audio/ast_audio_v1_drum_19A70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A80[] = "__OTR__ast_audio/ast_audio_v1_drum_19A80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19A90[] = "__OTR__ast_audio/ast_audio_v1_drum_19A90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19AA0[] = "__OTR__ast_audio/ast_audio_v1_drum_19AA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19AB0[] = "__OTR__ast_audio/ast_audio_v1_drum_19AB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19AC0[] = "__OTR__ast_audio/ast_audio_v1_drum_19AC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19AD0[] = "__OTR__ast_audio/ast_audio_v1_drum_19AD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19AE0[] = "__OTR__ast_audio/ast_audio_v1_drum_19AE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19AF0[] = "__OTR__ast_audio/ast_audio_v1_drum_19AF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B00[] = "__OTR__ast_audio/ast_audio_v1_drum_19B00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B10[] = "__OTR__ast_audio/ast_audio_v1_drum_19B10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B20[] = "__OTR__ast_audio/ast_audio_v1_drum_19B20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B30[] = "__OTR__ast_audio/ast_audio_v1_drum_19B30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B40[] = "__OTR__ast_audio/ast_audio_v1_drum_19B40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B50[] = "__OTR__ast_audio/ast_audio_v1_drum_19B50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B60[] = "__OTR__ast_audio/ast_audio_v1_drum_19B60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_19B70[] = "__OTR__ast_audio/ast_audio_v1_drum_19B70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_19C80[] = "__OTR__ast_audio/ast_audio_v1_sound_font_19C80";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_19CB0_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_19CB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19CC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19CC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19D10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19D10";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_19D40_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_19D40_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19D50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19D50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19DA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19DA0";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_19DD0_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_19DD0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19DE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19DE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19E30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19E30";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_19E60_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_19E60_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19E70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19E70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19EC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19EC0";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_19EF0_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_19EF0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19F00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19F00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19F50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19F50";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_19F80_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_19F80_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_19F90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_19F90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_19FE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_19FE0";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_1A010_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_1A010_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A070[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A070";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_1A080_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_1A080_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A090[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A090";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A0E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A0E0";
+
+static const ALIGN_ASSET(2) char Sample_P_19C80_O_1A0F0_B_3[] = "__OTR__ast_audio/Sample_P_19C80_O_1A0F0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A100[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A150[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1A160[] = "__OTR__ast_audio/ast_audio_v1_envelope_1A160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1A170[] = "__OTR__ast_audio/ast_audio_v1_envelope_1A170";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1A180[] = "__OTR__ast_audio/ast_audio_v1_envelope_1A180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1A190[] = "__OTR__ast_audio/ast_audio_v1_envelope_1A190";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1A1A0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1A1A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1A1B0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1A1B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1A1D0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1A1D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1A1F0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1A1F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1A210[] = "__OTR__ast_audio/ast_audio_v1_instrument_1A210";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A230[] = "__OTR__ast_audio/ast_audio_v1_drum_1A230";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A240[] = "__OTR__ast_audio/ast_audio_v1_drum_1A240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A250[] = "__OTR__ast_audio/ast_audio_v1_drum_1A250";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A260[] = "__OTR__ast_audio/ast_audio_v1_drum_1A260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A270[] = "__OTR__ast_audio/ast_audio_v1_drum_1A270";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A280[] = "__OTR__ast_audio/ast_audio_v1_drum_1A280";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A290[] = "__OTR__ast_audio/ast_audio_v1_drum_1A290";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A2A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A2A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A2B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A2B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A2C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A2C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A2D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A2D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A2E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A2E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A2F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A2F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A300[] = "__OTR__ast_audio/ast_audio_v1_drum_1A300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A310[] = "__OTR__ast_audio/ast_audio_v1_drum_1A310";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A320[] = "__OTR__ast_audio/ast_audio_v1_drum_1A320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A330[] = "__OTR__ast_audio/ast_audio_v1_drum_1A330";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A340[] = "__OTR__ast_audio/ast_audio_v1_drum_1A340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A350[] = "__OTR__ast_audio/ast_audio_v1_drum_1A350";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A360[] = "__OTR__ast_audio/ast_audio_v1_drum_1A360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A370[] = "__OTR__ast_audio/ast_audio_v1_drum_1A370";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A380[] = "__OTR__ast_audio/ast_audio_v1_drum_1A380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A390[] = "__OTR__ast_audio/ast_audio_v1_drum_1A390";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A3A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A3A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A3B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A3B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A3C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A3C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A3D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A3D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A3E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A3E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A3F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1A3F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A400[] = "__OTR__ast_audio/ast_audio_v1_drum_1A400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A410[] = "__OTR__ast_audio/ast_audio_v1_drum_1A410";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A420[] = "__OTR__ast_audio/ast_audio_v1_drum_1A420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A430[] = "__OTR__ast_audio/ast_audio_v1_drum_1A430";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A440[] = "__OTR__ast_audio/ast_audio_v1_drum_1A440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A450[] = "__OTR__ast_audio/ast_audio_v1_drum_1A450";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A460[] = "__OTR__ast_audio/ast_audio_v1_drum_1A460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A470[] = "__OTR__ast_audio/ast_audio_v1_drum_1A470";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A480[] = "__OTR__ast_audio/ast_audio_v1_drum_1A480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1A490[] = "__OTR__ast_audio/ast_audio_v1_drum_1A490";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_1A5A0[] = "__OTR__ast_audio/ast_audio_v1_sound_font_1A5A0";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A5D0_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A5D0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A5E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A5E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A630[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A630";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A660_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A660_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A670[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A670";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A6C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A6C0";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A6F0_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A6F0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A700[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A750[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A750";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A780_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A780_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A790[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A790";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A7E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A7E0";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A810_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A810_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A870[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A870";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A8A0_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A8A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A8B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A8B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A900";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A930_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A930_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1A990[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1A990";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1A9C0_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1A9C0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1A9D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1A9D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1AA20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1AA20";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1AA30_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1AA30_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1AA40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1AA40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1AA90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1AA90";
+
+static const ALIGN_ASSET(2) char Sample_P_1A5A0_O_1AAA0_B_3[] = "__OTR__ast_audio/Sample_P_1A5A0_O_1AAA0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1AAB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1AAB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1AB00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1AB00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1AB10[] = "__OTR__ast_audio/ast_audio_v1_envelope_1AB10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1AB20[] = "__OTR__ast_audio/ast_audio_v1_envelope_1AB20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1AB30[] = "__OTR__ast_audio/ast_audio_v1_envelope_1AB30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1AB40[] = "__OTR__ast_audio/ast_audio_v1_envelope_1AB40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1AB50[] = "__OTR__ast_audio/ast_audio_v1_envelope_1AB50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1AB60[] = "__OTR__ast_audio/ast_audio_v1_envelope_1AB60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1AB70[] = "__OTR__ast_audio/ast_audio_v1_instrument_1AB70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1AB90[] = "__OTR__ast_audio/ast_audio_v1_instrument_1AB90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1ABB0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1ABB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1ABD0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1ABD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1ABF0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1ABF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC10[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC20[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC30[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC40[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC50[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC60[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC70[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC80[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AC90[] = "__OTR__ast_audio/ast_audio_v1_drum_1AC90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ACA0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ACA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ACB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ACB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ACC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ACC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ACD0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ACD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ACE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ACE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ACF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ACF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD00[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD10[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD20[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD30[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD40[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD50[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD60[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD70[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD80[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AD90[] = "__OTR__ast_audio/ast_audio_v1_drum_1AD90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ADA0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ADA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ADB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ADB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ADC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ADC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ADD0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ADD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ADE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ADE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1ADF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1ADF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE00[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE10[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE20[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE30[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE40[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE50[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE60[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1AE70[] = "__OTR__ast_audio/ast_audio_v1_drum_1AE70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_1AF80[] = "__OTR__ast_audio/ast_audio_v1_sound_font_1AF80";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1AFB0_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1AFB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1AFC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1AFC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B010[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B010";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B040_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B040_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B050[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B050";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B0A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B0A0";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B0D0_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B0D0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B0E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B0E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B130[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B130";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B160_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B160_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B170[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B170";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B1C0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B1C0";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B1F0_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B1F0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B200[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B250[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B250";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B280_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B280_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B290[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B290";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B2E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B2E0";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B310_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B310_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B320[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B370[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B370";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B3A0_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B3A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B3B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B3B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B400";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B410_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B410_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B420[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B470[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B470";
+
+static const ALIGN_ASSET(2) char Sample_P_1AF80_O_1B480_B_3[] = "__OTR__ast_audio/Sample_P_1AF80_O_1B480_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B490[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B490";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B4E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B4E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1B4F0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1B4F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1B500[] = "__OTR__ast_audio/ast_audio_v1_envelope_1B500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1B510[] = "__OTR__ast_audio/ast_audio_v1_envelope_1B510";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1B520[] = "__OTR__ast_audio/ast_audio_v1_envelope_1B520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1B530[] = "__OTR__ast_audio/ast_audio_v1_envelope_1B530";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1B540[] = "__OTR__ast_audio/ast_audio_v1_envelope_1B540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1B550[] = "__OTR__ast_audio/ast_audio_v1_instrument_1B550";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1B570[] = "__OTR__ast_audio/ast_audio_v1_instrument_1B570";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1B590[] = "__OTR__ast_audio/ast_audio_v1_instrument_1B590";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1B5B0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1B5B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1B5D0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1B5D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B5F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B5F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B600[] = "__OTR__ast_audio/ast_audio_v1_drum_1B600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B610[] = "__OTR__ast_audio/ast_audio_v1_drum_1B610";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B620[] = "__OTR__ast_audio/ast_audio_v1_drum_1B620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B630[] = "__OTR__ast_audio/ast_audio_v1_drum_1B630";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B640[] = "__OTR__ast_audio/ast_audio_v1_drum_1B640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B650[] = "__OTR__ast_audio/ast_audio_v1_drum_1B650";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B660[] = "__OTR__ast_audio/ast_audio_v1_drum_1B660";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B670[] = "__OTR__ast_audio/ast_audio_v1_drum_1B670";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B680[] = "__OTR__ast_audio/ast_audio_v1_drum_1B680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B690[] = "__OTR__ast_audio/ast_audio_v1_drum_1B690";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B6A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B6A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B6B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B6B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B6C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B6C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B6D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B6D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B6E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B6E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B6F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B6F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B700[] = "__OTR__ast_audio/ast_audio_v1_drum_1B700";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B710[] = "__OTR__ast_audio/ast_audio_v1_drum_1B710";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B720[] = "__OTR__ast_audio/ast_audio_v1_drum_1B720";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B730[] = "__OTR__ast_audio/ast_audio_v1_drum_1B730";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B740[] = "__OTR__ast_audio/ast_audio_v1_drum_1B740";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B750[] = "__OTR__ast_audio/ast_audio_v1_drum_1B750";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B760[] = "__OTR__ast_audio/ast_audio_v1_drum_1B760";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B770[] = "__OTR__ast_audio/ast_audio_v1_drum_1B770";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B780[] = "__OTR__ast_audio/ast_audio_v1_drum_1B780";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B790[] = "__OTR__ast_audio/ast_audio_v1_drum_1B790";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B7A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B7A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B7B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B7B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B7C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B7C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B7D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B7D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B7E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B7E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B7F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1B7F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B800[] = "__OTR__ast_audio/ast_audio_v1_drum_1B800";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B810[] = "__OTR__ast_audio/ast_audio_v1_drum_1B810";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B820[] = "__OTR__ast_audio/ast_audio_v1_drum_1B820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B830[] = "__OTR__ast_audio/ast_audio_v1_drum_1B830";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B840[] = "__OTR__ast_audio/ast_audio_v1_drum_1B840";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1B850[] = "__OTR__ast_audio/ast_audio_v1_drum_1B850";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_1B960[] = "__OTR__ast_audio/ast_audio_v1_sound_font_1B960";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1B990_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1B990_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1B9A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1B9A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1B9F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1B9F0";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BA20_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BA20_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BA30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BA30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BA80[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BA80";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BAB0_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BAB0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BAC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BAC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BB10[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BB10";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BB40_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BB40_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BB50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BB50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BBA0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BBA0";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BBD0_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BBD0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BBE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BBE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BC30[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BC30";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BC60_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BC60_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BC70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BC70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BCC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BCC0";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BCF0_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BCF0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BD00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BD00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BD50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BD50";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BD80_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BD80_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BD90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BD90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BDE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BDE0";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BDF0_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BDF0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BE00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BE00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BE50[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BE50";
+
+static const ALIGN_ASSET(2) char Sample_P_1B960_O_1BE60_B_3[] = "__OTR__ast_audio/Sample_P_1B960_O_1BE60_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1BE70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1BE70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1BEC0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1BEC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BED0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BED0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BEE0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BEE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BEF0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BEF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BF00[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BF00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BF10[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BF10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BF20[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BF20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1BF30[] = "__OTR__ast_audio/ast_audio_v1_envelope_1BF30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1BF40[] = "__OTR__ast_audio/ast_audio_v1_instrument_1BF40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1BF60[] = "__OTR__ast_audio/ast_audio_v1_instrument_1BF60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1BF80[] = "__OTR__ast_audio/ast_audio_v1_instrument_1BF80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1BFA0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1BFA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1BFC0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1BFC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1BFE0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1BFE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C000[] = "__OTR__ast_audio/ast_audio_v1_drum_1C000";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C010[] = "__OTR__ast_audio/ast_audio_v1_drum_1C010";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C020[] = "__OTR__ast_audio/ast_audio_v1_drum_1C020";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C030[] = "__OTR__ast_audio/ast_audio_v1_drum_1C030";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C040[] = "__OTR__ast_audio/ast_audio_v1_drum_1C040";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C050[] = "__OTR__ast_audio/ast_audio_v1_drum_1C050";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C060[] = "__OTR__ast_audio/ast_audio_v1_drum_1C060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C070[] = "__OTR__ast_audio/ast_audio_v1_drum_1C070";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C080[] = "__OTR__ast_audio/ast_audio_v1_drum_1C080";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C090[] = "__OTR__ast_audio/ast_audio_v1_drum_1C090";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C0A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C0A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C0B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C0B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C0C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C0C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C0D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C0D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C0E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C0E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C0F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C0F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C100[] = "__OTR__ast_audio/ast_audio_v1_drum_1C100";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C110[] = "__OTR__ast_audio/ast_audio_v1_drum_1C110";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C120[] = "__OTR__ast_audio/ast_audio_v1_drum_1C120";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C130[] = "__OTR__ast_audio/ast_audio_v1_drum_1C130";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C140[] = "__OTR__ast_audio/ast_audio_v1_drum_1C140";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C150[] = "__OTR__ast_audio/ast_audio_v1_drum_1C150";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C160[] = "__OTR__ast_audio/ast_audio_v1_drum_1C160";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C170[] = "__OTR__ast_audio/ast_audio_v1_drum_1C170";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C180[] = "__OTR__ast_audio/ast_audio_v1_drum_1C180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C190[] = "__OTR__ast_audio/ast_audio_v1_drum_1C190";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C1A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C1A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C1B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C1B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C1C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C1C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C1D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C1D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C1E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C1E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C1F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C1F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C200[] = "__OTR__ast_audio/ast_audio_v1_drum_1C200";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C210[] = "__OTR__ast_audio/ast_audio_v1_drum_1C210";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C220[] = "__OTR__ast_audio/ast_audio_v1_drum_1C220";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C230[] = "__OTR__ast_audio/ast_audio_v1_drum_1C230";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C240[] = "__OTR__ast_audio/ast_audio_v1_drum_1C240";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C250[] = "__OTR__ast_audio/ast_audio_v1_drum_1C250";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C260[] = "__OTR__ast_audio/ast_audio_v1_drum_1C260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_1C370[] = "__OTR__ast_audio/ast_audio_v1_sound_font_1C370";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C3A0_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C3A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C3B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C3B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C400[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C400";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C430_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C430_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C440[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C490[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C490";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C4C0_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C4C0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C4D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C4D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C520[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C520";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C550_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C550_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C560[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C5B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C5B0";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C5E0_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C5E0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C5F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C5F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C640[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C640";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C670_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C670_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C680[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C680";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C6D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C6D0";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C700_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C700_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C710[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C710";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C760[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C760";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C790_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C790_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C7A0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C7A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C7F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C7F0";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C800_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C800_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C810[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C810";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C860[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C860";
+
+static const ALIGN_ASSET(2) char Sample_P_1C370_O_1C870_B_3[] = "__OTR__ast_audio/Sample_P_1C370_O_1C870_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1C880[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1C880";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1C8D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1C8D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1C8E0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1C8E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1C8F0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1C8F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1C900[] = "__OTR__ast_audio/ast_audio_v1_envelope_1C900";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1C910[] = "__OTR__ast_audio/ast_audio_v1_envelope_1C910";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1C920[] = "__OTR__ast_audio/ast_audio_v1_envelope_1C920";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1C930[] = "__OTR__ast_audio/ast_audio_v1_envelope_1C930";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1C940[] = "__OTR__ast_audio/ast_audio_v1_instrument_1C940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1C960[] = "__OTR__ast_audio/ast_audio_v1_instrument_1C960";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1C980[] = "__OTR__ast_audio/ast_audio_v1_instrument_1C980";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1C9A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1C9A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1C9C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1C9C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C9E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C9E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1C9F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1C9F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA00[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA10[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA20[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA30[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA40[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA50[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA60[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA70[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA80[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CA90[] = "__OTR__ast_audio/ast_audio_v1_drum_1CA90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CAA0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CAA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CAB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CAB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CAC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CAC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CAD0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CAD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CAE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CAE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CAF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CAF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB00[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB10[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB20[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB30[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB40[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB50[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB60[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB70[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB80[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CB90[] = "__OTR__ast_audio/ast_audio_v1_drum_1CB90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CBA0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CBA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CBB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CBB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CBC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CBC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CBD0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CBD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CBE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CBE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CBF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1CBF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CC00[] = "__OTR__ast_audio/ast_audio_v1_drum_1CC00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CC10[] = "__OTR__ast_audio/ast_audio_v1_drum_1CC10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CC20[] = "__OTR__ast_audio/ast_audio_v1_drum_1CC20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CC30[] = "__OTR__ast_audio/ast_audio_v1_drum_1CC30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1CC40[] = "__OTR__ast_audio/ast_audio_v1_drum_1CC40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_1CD50[] = "__OTR__ast_audio/ast_audio_v1_sound_font_1CD50";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1CD80_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1CD80_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1CD90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1CD90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1CDE0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1CDE0";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1CE10_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1CE10_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1CE20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1CE20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1CE70[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1CE70";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1CEA0_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1CEA0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1CEB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1CEB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1CF00[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1CF00";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1CF30_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1CF30_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1CF40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1CF40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1CF90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1CF90";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1CFC0_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1CFC0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1CFD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1CFD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D020[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D020";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1D050_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1D050_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D060[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D060";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D0B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D0B0";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1D0E0_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1D0E0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D0F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D0F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D140[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D140";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1D170_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1D170_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D180[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D180";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D1D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D1D0";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1D1E0_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1D1E0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D1F0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D1F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D240[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D240";
+
+static const ALIGN_ASSET(2) char Sample_P_1CD50_O_1D250_B_3[] = "__OTR__ast_audio/Sample_P_1CD50_O_1D250_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D260[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D260";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D2B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D2B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1D2C0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1D2C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1D2D0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1D2D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1D2E0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1D2E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1D2F0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1D2F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1D300[] = "__OTR__ast_audio/ast_audio_v1_envelope_1D300";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1D310[] = "__OTR__ast_audio/ast_audio_v1_envelope_1D310";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1D320[] = "__OTR__ast_audio/ast_audio_v1_instrument_1D320";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1D340[] = "__OTR__ast_audio/ast_audio_v1_instrument_1D340";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1D360[] = "__OTR__ast_audio/ast_audio_v1_instrument_1D360";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1D380[] = "__OTR__ast_audio/ast_audio_v1_instrument_1D380";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1D3A0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1D3A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1D3C0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1D3C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D3E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D3E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D3F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D3F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D400[] = "__OTR__ast_audio/ast_audio_v1_drum_1D400";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D410[] = "__OTR__ast_audio/ast_audio_v1_drum_1D410";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D420[] = "__OTR__ast_audio/ast_audio_v1_drum_1D420";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D430[] = "__OTR__ast_audio/ast_audio_v1_drum_1D430";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D440[] = "__OTR__ast_audio/ast_audio_v1_drum_1D440";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D450[] = "__OTR__ast_audio/ast_audio_v1_drum_1D450";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D460[] = "__OTR__ast_audio/ast_audio_v1_drum_1D460";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D470[] = "__OTR__ast_audio/ast_audio_v1_drum_1D470";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D480[] = "__OTR__ast_audio/ast_audio_v1_drum_1D480";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D490[] = "__OTR__ast_audio/ast_audio_v1_drum_1D490";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D4A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D4A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D4B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D4B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D4C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D4C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D4D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D4D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D4E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D4E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D4F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D4F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D500[] = "__OTR__ast_audio/ast_audio_v1_drum_1D500";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D510[] = "__OTR__ast_audio/ast_audio_v1_drum_1D510";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D520[] = "__OTR__ast_audio/ast_audio_v1_drum_1D520";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D530[] = "__OTR__ast_audio/ast_audio_v1_drum_1D530";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D540[] = "__OTR__ast_audio/ast_audio_v1_drum_1D540";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D550[] = "__OTR__ast_audio/ast_audio_v1_drum_1D550";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D560[] = "__OTR__ast_audio/ast_audio_v1_drum_1D560";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D570[] = "__OTR__ast_audio/ast_audio_v1_drum_1D570";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D580[] = "__OTR__ast_audio/ast_audio_v1_drum_1D580";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D590[] = "__OTR__ast_audio/ast_audio_v1_drum_1D590";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D5A0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D5A0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D5B0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D5B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D5C0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D5C0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D5D0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D5D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D5E0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D5E0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D5F0[] = "__OTR__ast_audio/ast_audio_v1_drum_1D5F0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D600[] = "__OTR__ast_audio/ast_audio_v1_drum_1D600";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D610[] = "__OTR__ast_audio/ast_audio_v1_drum_1D610";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D620[] = "__OTR__ast_audio/ast_audio_v1_drum_1D620";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D630[] = "__OTR__ast_audio/ast_audio_v1_drum_1D630";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1D640[] = "__OTR__ast_audio/ast_audio_v1_drum_1D640";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_sound_font_1D750[] = "__OTR__ast_audio/ast_audio_v1_sound_font_1D750";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1D780_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1D780_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D790[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D790";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D7E0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D7E0";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1D810_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1D810_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D820[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D820";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D870[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D870";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1D8A0_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1D8A0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D8B0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D8B0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D900[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D900";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1D930_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1D930_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D940[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D940";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1D990[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1D990";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1D9C0_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1D9C0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1D9D0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1D9D0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1DA20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1DA20";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1DA50_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1DA50_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1DA60[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1DA60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1DAB0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1DAB0";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1DAC0_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1DAC0_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1DAD0[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1DAD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1DB20[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1DB20";
+
+static const ALIGN_ASSET(2) char Sample_P_1D750_O_1DB30_B_3[] = "__OTR__ast_audio/Sample_P_1D750_O_1DB30_B_3";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_book_1DB40[] = "__OTR__ast_audio/ast_audio_v1_adpcm_book_1DB40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_adpcm_loop_1DB90[] = "__OTR__ast_audio/ast_audio_v1_adpcm_loop_1DB90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1DBA0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1DBA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1DBB0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1DBB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1DBC0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1DBC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1DBD0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1DBD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_envelope_1DBE0[] = "__OTR__ast_audio/ast_audio_v1_envelope_1DBE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1DBF0[] = "__OTR__ast_audio/ast_audio_v1_instrument_1DBF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1DC10[] = "__OTR__ast_audio/ast_audio_v1_instrument_1DC10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1DC30[] = "__OTR__ast_audio/ast_audio_v1_instrument_1DC30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1DC50[] = "__OTR__ast_audio/ast_audio_v1_instrument_1DC50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1DC70[] = "__OTR__ast_audio/ast_audio_v1_instrument_1DC70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_instrument_1DC90[] = "__OTR__ast_audio/ast_audio_v1_instrument_1DC90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DCB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DCB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DCC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DCC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DCD0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DCD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DCE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DCE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DCF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DCF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD00[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD10[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD20[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD30[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD40[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD50[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD60[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD70[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD80[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DD90[] = "__OTR__ast_audio/ast_audio_v1_drum_1DD90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DDA0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DDA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DDB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DDB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DDC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DDC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DDD0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DDD0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DDE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DDE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DDF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DDF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE00[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE10[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE10";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE20[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE20";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE30[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE30";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE40[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE40";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE50[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE50";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE60[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE60";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE70[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE70";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE80[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE80";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DE90[] = "__OTR__ast_audio/ast_audio_v1_drum_1DE90";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DEA0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DEA0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DEB0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DEB0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DEC0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DEC0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DED0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DED0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DEE0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DEE0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DEF0[] = "__OTR__ast_audio/ast_audio_v1_drum_1DEF0";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DF00[] = "__OTR__ast_audio/ast_audio_v1_drum_1DF00";
+
+static const ALIGN_ASSET(2) char ast_audio_v1_drum_1DF10[] = "__OTR__ast_audio/ast_audio_v1_drum_1DF10";
+
+static const ALIGN_ASSET(2) char gSampleBankTableInit[] = "__OTR__ast_audio/audio_sample_bank_table";
+
+static const ALIGN_ASSET(2) char gSeqTableInit[] = "__OTR__ast_audio/audio_seq_table";
+
+static const ALIGN_ASSET(2) char gSoundFontTableInit[] = "__OTR__ast_audio/audio_soundfont_table";
+
+static const ALIGN_ASSET(2) char gSeqFontTableInit[] = "__OTR__ast_audio/audio_seq_font_table";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_DEA20[] = "__OTR__ast_audio/ast_audio_blob_DEA20";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_E2510[] = "__OTR__ast_audio/ast_audio_blob_E2510";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_E7BC0[] = "__OTR__ast_audio/ast_audio_blob_E7BC0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_EA940[] = "__OTR__ast_audio/ast_audio_blob_EA940";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_EBD50[] = "__OTR__ast_audio/ast_audio_blob_EBD50";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_ED350[] = "__OTR__ast_audio/ast_audio_blob_ED350";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_EE270[] = "__OTR__ast_audio/ast_audio_blob_EE270";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_EF610[] = "__OTR__ast_audio/ast_audio_blob_EF610";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F0710[] = "__OTR__ast_audio/ast_audio_blob_F0710";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F20F0[] = "__OTR__ast_audio/ast_audio_blob_F20F0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F34D0[] = "__OTR__ast_audio/ast_audio_blob_F34D0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F47C0[] = "__OTR__ast_audio/ast_audio_blob_F47C0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F5330[] = "__OTR__ast_audio/ast_audio_blob_F5330";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F7790[] = "__OTR__ast_audio/ast_audio_blob_F7790";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F84D0[] = "__OTR__ast_audio/ast_audio_blob_F84D0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_F8CC0[] = "__OTR__ast_audio/ast_audio_blob_F8CC0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_FA100[] = "__OTR__ast_audio/ast_audio_blob_FA100";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_FBC20[] = "__OTR__ast_audio/ast_audio_blob_FBC20";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_FD750[] = "__OTR__ast_audio/ast_audio_blob_FD750";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_FE800[] = "__OTR__ast_audio/ast_audio_blob_FE800";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_FFC10[] = "__OTR__ast_audio/ast_audio_blob_FFC10";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_100B40[] = "__OTR__ast_audio/ast_audio_blob_100B40";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_103670[] = "__OTR__ast_audio/ast_audio_blob_103670";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_103E60[] = "__OTR__ast_audio/ast_audio_blob_103E60";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_105210[] = "__OTR__ast_audio/ast_audio_blob_105210";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_105E80[] = "__OTR__ast_audio/ast_audio_blob_105E80";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_106000[] = "__OTR__ast_audio/ast_audio_blob_106000";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_1065C0[] = "__OTR__ast_audio/ast_audio_blob_1065C0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_10B400[] = "__OTR__ast_audio/ast_audio_blob_10B400";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_10C8E0[] = "__OTR__ast_audio/ast_audio_blob_10C8E0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_10CCE0[] = "__OTR__ast_audio/ast_audio_blob_10CCE0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_10D4E0[] = "__OTR__ast_audio/ast_audio_blob_10D4E0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_10EF90[] = "__OTR__ast_audio/ast_audio_blob_10EF90";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_110A30[] = "__OTR__ast_audio/ast_audio_blob_110A30";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_111DA0[] = "__OTR__ast_audio/ast_audio_blob_111DA0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_112920[] = "__OTR__ast_audio/ast_audio_blob_112920";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_112EE0[] = "__OTR__ast_audio/ast_audio_blob_112EE0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_113430[] = "__OTR__ast_audio/ast_audio_blob_113430";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_113790[] = "__OTR__ast_audio/ast_audio_blob_113790";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_113DB0[] = "__OTR__ast_audio/ast_audio_blob_113DB0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_114820[] = "__OTR__ast_audio/ast_audio_blob_114820";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_1152D0[] = "__OTR__ast_audio/ast_audio_blob_1152D0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_1166A0[] = "__OTR__ast_audio/ast_audio_blob_1166A0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_1168F0[] = "__OTR__ast_audio/ast_audio_blob_1168F0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_116FE0[] = "__OTR__ast_audio/ast_audio_blob_116FE0";
+
+static const ALIGN_ASSET(2) char ast_audio_blob_117F90[] = "__OTR__ast_audio/ast_audio_blob_117F90";
+
diff --git a/include/assets/ast_bg_planet.h b/include/assets/ast_bg_planet.h
new file mode 100644
index 00000000..04257d92
--- /dev/null
+++ b/include/assets/ast_bg_planet.h
@@ -0,0 +1,125 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2000000[] = "__OTR__ast_bg_planet/D_BG_PLANET_2000000";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_58[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_58";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2000088[] = "__OTR__ast_bg_planet/D_BG_PLANET_2000088";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2001090[] = "__OTR__ast_bg_planet/D_BG_PLANET_2001090";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_10E8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_10E8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2001118[] = "__OTR__ast_bg_planet/D_BG_PLANET_2001118";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2002120[] = "__OTR__ast_bg_planet/D_BG_PLANET_2002120";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_2178[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_2178";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20021A8[] = "__OTR__ast_bg_planet/D_BG_PLANET_20021A8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20031B0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20031B0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_3208[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_3208";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2003238[] = "__OTR__ast_bg_planet/D_BG_PLANET_2003238";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2004240[] = "__OTR__ast_bg_planet/D_BG_PLANET_2004240";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_4298[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_4298";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20042C8[] = "__OTR__ast_bg_planet/D_BG_PLANET_20042C8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20052D0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20052D0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_5328[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_5328";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2005358[] = "__OTR__ast_bg_planet/D_BG_PLANET_2005358";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2006360[] = "__OTR__ast_bg_planet/D_BG_PLANET_2006360";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_63B8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_63B8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20063E8[] = "__OTR__ast_bg_planet/D_BG_PLANET_20063E8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20073F0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20073F0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_7448[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_7448";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2007478[] = "__OTR__ast_bg_planet/D_BG_PLANET_2007478";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2008480[] = "__OTR__ast_bg_planet/D_BG_PLANET_2008480";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_84D8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_84D8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2008508[] = "__OTR__ast_bg_planet/D_BG_PLANET_2008508";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2009510[] = "__OTR__ast_bg_planet/D_BG_PLANET_2009510";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_9568[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_9568";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2009598[] = "__OTR__ast_bg_planet/D_BG_PLANET_2009598";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200A5A0[] = "__OTR__ast_bg_planet/D_BG_PLANET_200A5A0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_A5F8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_A5F8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200A628[] = "__OTR__ast_bg_planet/D_BG_PLANET_200A628";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200B630[] = "__OTR__ast_bg_planet/D_BG_PLANET_200B630";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_B688[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_B688";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200B6B8[] = "__OTR__ast_bg_planet/D_BG_PLANET_200B6B8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200C6C0[] = "__OTR__ast_bg_planet/D_BG_PLANET_200C6C0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_C718[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_C718";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200C748[] = "__OTR__ast_bg_planet/D_BG_PLANET_200C748";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200D750[] = "__OTR__ast_bg_planet/D_BG_PLANET_200D750";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_D7A8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_D7A8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200D7E8[] = "__OTR__ast_bg_planet/D_BG_PLANET_200D7E8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200E7F0[] = "__OTR__ast_bg_planet/D_BG_PLANET_200E7F0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_E848[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_E848";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200E878[] = "__OTR__ast_bg_planet/D_BG_PLANET_200E878";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200F080[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F080";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_F0D8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_F0D8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200F108[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F108";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200F910[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F910";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_F968[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_F968";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_200F998[] = "__OTR__ast_bg_planet/D_BG_PLANET_200F998";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20101A0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20101A0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_101F8[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_101F8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2010228[] = "__OTR__ast_bg_planet/D_BG_PLANET_2010228";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2010A30[] = "__OTR__ast_bg_planet/D_BG_PLANET_2010A30";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_10A88[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_10A88";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2010AB8[] = "__OTR__ast_bg_planet/D_BG_PLANET_2010AB8";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_20112C0[] = "__OTR__ast_bg_planet/D_BG_PLANET_20112C0";
+
+static const ALIGN_ASSET(2) char ast_bg_planet_seg2_vtx_11318[] = "__OTR__ast_bg_planet/ast_bg_planet_seg2_vtx_11318";
+
+static const ALIGN_ASSET(2) char D_BG_PLANET_2011358[] = "__OTR__ast_bg_planet/D_BG_PLANET_2011358";
+
diff --git a/include/assets/ast_bg_space.h b/include/assets/ast_bg_space.h
new file mode 100644
index 00000000..579f3d3d
--- /dev/null
+++ b/include/assets/ast_bg_space.h
@@ -0,0 +1,89 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2000000[] = "__OTR__ast_bg_space/D_BG_SPACE_2000000";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_58[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_58";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2000088[] = "__OTR__ast_bg_space/D_BG_SPACE_2000088";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2000890[] = "__OTR__ast_bg_space/D_BG_SPACE_2000890";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_8E8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_8E8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2000918[] = "__OTR__ast_bg_space/D_BG_SPACE_2000918";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2001120[] = "__OTR__ast_bg_space/D_BG_SPACE_2001120";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_1178[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_1178";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_20011A8[] = "__OTR__ast_bg_space/D_BG_SPACE_20011A8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_20019B0[] = "__OTR__ast_bg_space/D_BG_SPACE_20019B0";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_1A08[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_1A08";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2001A38[] = "__OTR__ast_bg_space/D_BG_SPACE_2001A38";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2002240[] = "__OTR__ast_bg_space/D_BG_SPACE_2002240";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_2298[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_2298";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_20022C8[] = "__OTR__ast_bg_space/D_BG_SPACE_20022C8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2002AD0[] = "__OTR__ast_bg_space/D_BG_SPACE_2002AD0";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_2B28[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_2B28";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2002B58[] = "__OTR__ast_bg_space/D_BG_SPACE_2002B58";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2003360[] = "__OTR__ast_bg_space/D_BG_SPACE_2003360";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_33B8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_33B8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_20033E8[] = "__OTR__ast_bg_space/D_BG_SPACE_20033E8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2003BF0[] = "__OTR__ast_bg_space/D_BG_SPACE_2003BF0";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_3C48[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_3C48";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2003C78[] = "__OTR__ast_bg_space/D_BG_SPACE_2003C78";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2004480[] = "__OTR__ast_bg_space/D_BG_SPACE_2004480";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_44D8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_44D8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2004508[] = "__OTR__ast_bg_space/D_BG_SPACE_2004508";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2004D10[] = "__OTR__ast_bg_space/D_BG_SPACE_2004D10";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_4D68[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_4D68";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2004D98[] = "__OTR__ast_bg_space/D_BG_SPACE_2004D98";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_20055A0[] = "__OTR__ast_bg_space/D_BG_SPACE_20055A0";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_55F8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_55F8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2005628[] = "__OTR__ast_bg_space/D_BG_SPACE_2005628";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2005E30[] = "__OTR__ast_bg_space/D_BG_SPACE_2005E30";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_5E88[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_5E88";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2005EB8[] = "__OTR__ast_bg_space/D_BG_SPACE_2005EB8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_20066C0[] = "__OTR__ast_bg_space/D_BG_SPACE_20066C0";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_6718[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_6718";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2006748[] = "__OTR__ast_bg_space/D_BG_SPACE_2006748";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2006F50[] = "__OTR__ast_bg_space/D_BG_SPACE_2006F50";
+
+static const ALIGN_ASSET(2) char ast_bg_space_seg2_vtx_6FA8[] = "__OTR__ast_bg_space/ast_bg_space_seg2_vtx_6FA8";
+
+static const ALIGN_ASSET(2) char D_BG_SPACE_2006FD8[] = "__OTR__ast_bg_space/D_BG_SPACE_2006FD8";
+
diff --git a/include/assets/ast_blue_marine.h b/include/assets/ast_blue_marine.h
new file mode 100644
index 00000000..316e15e5
--- /dev/null
+++ b/include/assets/ast_blue_marine.h
@@ -0,0 +1,113 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aBlueMarineLifeIconTex[] = "__OTR__ast_blue_marine/aBlueMarineLifeIconTex";
+
+static const ALIGN_ASSET(2) char aBlueMarineLifeIconTLUT[] = "__OTR__ast_blue_marine/aBlueMarineLifeIconTLUT";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000090[] = "__OTR__ast_blue_marine/D_blue_marine_3000090";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000120[] = "__OTR__ast_blue_marine/D_blue_marine_3000120";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000130[] = "__OTR__ast_blue_marine/D_blue_marine_3000130";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_228[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_228";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000418[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_00000418";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000470[] = "__OTR__ast_blue_marine/D_blue_marine_3000470";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_528[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_528";
+
+static const ALIGN_ASSET(2) char D_blue_marine_30005E8[] = "__OTR__ast_blue_marine/D_blue_marine_30005E8";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000600[] = "__OTR__ast_blue_marine/D_blue_marine_3000600";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000640[] = "__OTR__ast_blue_marine/D_blue_marine_3000640";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000660[] = "__OTR__ast_blue_marine/D_blue_marine_3000660";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6B8[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6B8";
+
+static const ALIGN_ASSET(2) char D_blue_marine_30006E8[] = "__OTR__ast_blue_marine/D_blue_marine_30006E8";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000AF0[] = "__OTR__ast_blue_marine/D_blue_marine_3000AF0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_B60[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_B60";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3000C70[] = "__OTR__ast_blue_marine/D_blue_marine_3000C70";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_FD0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_FD0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_11D0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_11D0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_13C0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_13C0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1400[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1400";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_15D0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_15D0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1700[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1700";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1760[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1760";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1790[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1790";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_1840[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_1840";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3001900[] = "__OTR__ast_blue_marine/D_blue_marine_3001900";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3001980[] = "__OTR__ast_blue_marine/D_blue_marine_3001980";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3002180[] = "__OTR__ast_blue_marine/D_blue_marine_3002180";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3002980[] = "__OTR__ast_blue_marine/D_blue_marine_3002980";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3003180[] = "__OTR__ast_blue_marine/D_blue_marine_3003180";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3003980[] = "__OTR__ast_blue_marine/D_blue_marine_3003980";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3004180[] = "__OTR__ast_blue_marine/D_blue_marine_3004180";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3004980[] = "__OTR__ast_blue_marine/D_blue_marine_3004980";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3005980[] = "__OTR__ast_blue_marine/D_blue_marine_3005980";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5C18[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5C18";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5E18[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5E18";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5E78[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5E78";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_5EB8[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_5EB8";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6098[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6098";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6158[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6158";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_61B8[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_61B8";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6218[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6218";
+
+static const ALIGN_ASSET(2) char D_blue_marine_30062E8[] = "__OTR__ast_blue_marine/D_blue_marine_30062E8";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3006AF0[] = "__OTR__ast_blue_marine/D_blue_marine_3006AF0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6B60[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6B60";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3006C70[] = "__OTR__ast_blue_marine/D_blue_marine_3006C70";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6CF0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6CF0";
+
+static const ALIGN_ASSET(2) char D_blue_marine_3006DE0[] = "__OTR__ast_blue_marine/D_blue_marine_3006DE0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_6F20[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_6F20";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_7090[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_7090";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_71D0[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_71D0";
+
+static const ALIGN_ASSET(2) char ast_blue_marine_seg3_vtx_7290[] = "__OTR__ast_blue_marine/ast_blue_marine_seg3_vtx_7290";
+
diff --git a/include/assets/ast_bolse.h b/include/assets/ast_bolse.h
new file mode 100644
index 00000000..59ad2bb9
--- /dev/null
+++ b/include/assets/ast_bolse.h
@@ -0,0 +1,286 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aBoTitleCardTex[] = "__OTR__ast_bolse/aBoTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_BO_6000C80[] = "__OTR__ast_bolse/D_BO_6000C80";
+
+static const ALIGN_ASSET(2) char D_BO_6000D80[] = "__OTR__ast_bolse/D_BO_6000D80";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_F38[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_F38";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_1138[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_1138";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_1318[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_1318";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_1508[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_1508";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_16E8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_16E8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_18C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_18C8";
+
+static const ALIGN_ASSET(2) char D_BO_6001908[] = "__OTR__ast_bolse/D_BO_6001908";
+
+static const ALIGN_ASSET(2) char aBoBaseCoreAnim[] = "__OTR__ast_bolse/aBoBaseCoreAnim";
+
+static const ALIGN_ASSET(2) char aBoBaseCoreSkel[] = "__OTR__ast_bolse/aBoBaseCoreSkel";
+
+static const ALIGN_ASSET(2) char D_BO_6002020[] = "__OTR__ast_bolse/D_BO_6002020";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2608[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2608";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2788[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2788";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2958[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2958";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2B58[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2B58";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2D38[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2D38";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_2F18[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_2F18";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3108[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3108";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_32F8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_32F8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_34E8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_34E8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3518[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3518";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_36F8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_36F8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_38D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_38D8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3AD8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3AD8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3CD8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3CD8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_3ED8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_3ED8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_40D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_40D8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_42C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_42C8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_44C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_44C8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_46A8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_46A8";
+
+static const ALIGN_ASSET(2) char D_BO_6004848[] = "__OTR__ast_bolse/D_BO_6004848";
+
+static const ALIGN_ASSET(2) char D_BO_6005048[] = "__OTR__ast_bolse/D_BO_6005048";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_5450[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_5450";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_5538[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_5538";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_5708[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_5708";
+
+static const ALIGN_ASSET(2) char D_BO_6005908[] = "__OTR__ast_bolse/D_BO_6005908";
+
+static const ALIGN_ASSET(2) char D_BO_6006108[] = "__OTR__ast_bolse/D_BO_6006108";
+
+static const ALIGN_ASSET(2) char D_BO_6006910[] = "__OTR__ast_bolse/D_BO_6006910";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_6990[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_6990";
+
+static const ALIGN_ASSET(2) char D_BO_6006AD0[] = "__OTR__ast_bolse/D_BO_6006AD0";
+
+static const ALIGN_ASSET(2) char D_BO_6006ED0[] = "__OTR__ast_bolse/D_BO_6006ED0";
+
+static const ALIGN_ASSET(2) char D_BO_6006F50[] = "__OTR__ast_bolse/D_BO_6006F50";
+
+static const ALIGN_ASSET(2) char D_BO_6006FD0[] = "__OTR__ast_bolse/D_BO_6006FD0";
+
+static const ALIGN_ASSET(2) char D_BO_60077D0[] = "__OTR__ast_bolse/D_BO_60077D0";
+
+static const ALIGN_ASSET(2) char D_BO_6007BD0[] = "__OTR__ast_bolse/D_BO_6007BD0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_7C50[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_7C50";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_7D08[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_7D08";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_7DC8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_7DC8";
+
+static const ALIGN_ASSET(2) char D_BO_6007DF8[] = "__OTR__ast_bolse/D_BO_6007DF8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_8200[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_8200";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_82C0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_82C0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8400[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8400";
+
+static const ALIGN_ASSET(2) char D_BO_6008440[] = "__OTR__ast_bolse/D_BO_6008440";
+
+static const ALIGN_ASSET(2) char D_BO_6008668[] = "__OTR__ast_bolse/D_BO_6008668";
+
+static const ALIGN_ASSET(2) char D_BO_60086B4[] = "__OTR__ast_bolse/D_BO_60086B4";
+
+static const ALIGN_ASSET(2) char D_BO_60086F4[] = "__OTR__ast_bolse/D_BO_60086F4";
+
+static const ALIGN_ASSET(2) char D_BO_6008760[] = "__OTR__ast_bolse/D_BO_6008760";
+
+static const ALIGN_ASSET(2) char D_BO_6008770[] = "__OTR__ast_bolse/D_BO_6008770";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_88C8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_88C8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8978[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8978";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8A48[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8A48";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_8B58[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_8B58";
+
+static const ALIGN_ASSET(2) char D_BO_6008BB8[] = "__OTR__ast_bolse/D_BO_6008BB8";
+
+static const ALIGN_ASSET(2) char D_BO_60093B8[] = "__OTR__ast_bolse/D_BO_60093B8";
+
+static const ALIGN_ASSET(2) char D_BO_6009BC0[] = "__OTR__ast_bolse/D_BO_6009BC0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9C68[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9C68";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9D68[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9D68";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_9DB0[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_9DB0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9E20[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9E20";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_9F20[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_9F20";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_9F78[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_9F78";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_9FC0[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_9FC0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A0D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A0D8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A258[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A258";
+
+static const ALIGN_ASSET(2) char D_BO_600A2C0[] = "__OTR__ast_bolse/D_BO_600A2C0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A3D8[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A3D8";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A558[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A558";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_A5C0[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_A5C0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A680[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A680";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A7C0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A7C0";
+
+static const ALIGN_ASSET(2) char D_BO_600A810[] = "__OTR__ast_bolse/D_BO_600A810";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_A910[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_A910";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_AA90[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_AA90";
+
+static const ALIGN_ASSET(2) char D_BO_600AB90[] = "__OTR__ast_bolse/D_BO_600AB90";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_AC40[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_AC40";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_AC80[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_AC80";
+
+static const ALIGN_ASSET(2) char D_BO_600AD80[] = "__OTR__ast_bolse/D_BO_600AD80";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_gfx_B580[] = "__OTR__ast_bolse/ast_bolse_seg6_gfx_B580";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B698[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B698";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B708[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B708";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B848[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B848";
+
+static const ALIGN_ASSET(2) char aBoBuildingDL[] = "__OTR__ast_bolse/aBoBuildingDL";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B960[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B960";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_B9A0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_B9A0";
+
+static const ALIGN_ASSET(2) char D_BO_600BAA0[] = "__OTR__ast_bolse/D_BO_600BAA0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BC00[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BC00";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BC80[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BC80";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BD80[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BD80";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BDC0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BDC0";
+
+static const ALIGN_ASSET(2) char D_BO_600BEC0[] = "__OTR__ast_bolse/D_BO_600BEC0";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_BEF0[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_BEF0";
+
+static const ALIGN_ASSET(2) char D_BO_600BF30[] = "__OTR__ast_bolse/D_BO_600BF30";
+
+static const ALIGN_ASSET(2) char D_BO_600C0B8[] = "__OTR__ast_bolse/D_BO_600C0B8";
+
+static const ALIGN_ASSET(2) char D_BO_600C2D8[] = "__OTR__ast_bolse/D_BO_600C2D8";
+
+static const ALIGN_ASSET(2) char aBoBaseShieldDL[] = "__OTR__ast_bolse/aBoBaseShieldDL";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_C638[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_C638";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_C828[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_C828";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_CA28[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_CA28";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_CC08[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_CC08";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_CE08[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_CE08";
+
+static const ALIGN_ASSET(2) char aBoBaseShieldTex[] = "__OTR__ast_bolse/aBoBaseShieldTex";
+
+static const ALIGN_ASSET(2) char D_BO_600D190[] = "__OTR__ast_bolse/D_BO_600D190";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_D220[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_D220";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_D260[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_D260";
+
+static const ALIGN_ASSET(2) char D_BO_600D2A0[] = "__OTR__ast_bolse/D_BO_600D2A0";
+
+static const ALIGN_ASSET(2) char D_BO_600E2A0[] = "__OTR__ast_bolse/D_BO_600E2A0";
+
+static const ALIGN_ASSET(2) char aBoLaserCannonAnim[] = "__OTR__ast_bolse/aBoLaserCannonAnim";
+
+static const ALIGN_ASSET(2) char aBoLaserCannonSkel[] = "__OTR__ast_bolse/aBoLaserCannonSkel";
+
+static const ALIGN_ASSET(2) char aBoShieldReactorAnim[] = "__OTR__ast_bolse/aBoShieldReactorAnim";
+
+static const ALIGN_ASSET(2) char aBoShieldReactorSkel[] = "__OTR__ast_bolse/aBoShieldReactorSkel";
+
+static const ALIGN_ASSET(2) char aBoPoleDL[] = "__OTR__ast_bolse/aBoPoleDL";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_F578[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_F578";
+
+static const ALIGN_ASSET(2) char ast_bolse_seg6_vtx_F668[] = "__OTR__ast_bolse/ast_bolse_seg6_vtx_F668";
+
+static const ALIGN_ASSET(2) char D_BO_600F728[] = "__OTR__ast_bolse/D_BO_600F728";
+
+static const ALIGN_ASSET(2) char D_BO_600FF30[] = "__OTR__ast_bolse/D_BO_600FF30";
+
+static const ALIGN_ASSET(2) char D_BO_600FF74[] = "__OTR__ast_bolse/D_BO_600FF74";
+
+static const ALIGN_ASSET(2) char D_BO_6010294[] = "__OTR__ast_bolse/D_BO_6010294";
+
+static const ALIGN_ASSET(2) char D_BO_601170C[] = "__OTR__ast_bolse/D_BO_601170C";
+
+static const ALIGN_ASSET(2) char D_BO_6011B20[] = "__OTR__ast_bolse/D_BO_6011B20";
+
+static const ALIGN_ASSET(2) char aBoShieldReactorHitbox[] = "__OTR__ast_bolse/aBoShieldReactorHitbox";
+
+static const ALIGN_ASSET(2) char D_BO_6011BA4[] = "__OTR__ast_bolse/D_BO_6011BA4";
+
+static const ALIGN_ASSET(2) char aBoLaserCannonHitbox[] = "__OTR__ast_bolse/aBoLaserCannonHitbox";
+
+static const ALIGN_ASSET(2) char aBoPoleHitbox[] = "__OTR__ast_bolse/aBoPoleHitbox";
+
+static const ALIGN_ASSET(2) char aBoBuildingHitbox[] = "__OTR__ast_bolse/aBoBuildingHitbox";
+
+static const ALIGN_ASSET(2) char aBoBaseCoreHitbox[] = "__OTR__ast_bolse/aBoBaseCoreHitbox";
+
+static const ALIGN_ASSET(2) char D_BO_6011E28[] = "__OTR__ast_bolse/D_BO_6011E28";
+
diff --git a/include/assets/ast_common.h b/include/assets/ast_common.h
new file mode 100644
index 00000000..24f975f7
--- /dev/null
+++ b/include/assets/ast_common.h
@@ -0,0 +1,881 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_1000000[] = "__OTR__ast_common/D_1000000";
+
+static const ALIGN_ASSET(2) char D_1000280[] = "__OTR__ast_common/D_1000280";
+
+static const ALIGN_ASSET(2) char D_1000640[] = "__OTR__ast_common/D_1000640";
+
+static const ALIGN_ASSET(2) char aBoostGaugeFrameTex[] = "__OTR__ast_common/aBoostGaugeFrameTex";
+
+static const ALIGN_ASSET(2) char D_1001030[] = "__OTR__ast_common/D_1001030";
+
+static const ALIGN_ASSET(2) char D_1001070[] = "__OTR__ast_common/D_1001070";
+
+static const ALIGN_ASSET(2) char D_1001480[] = "__OTR__ast_common/D_1001480";
+
+static const ALIGN_ASSET(2) char D_1001720[] = "__OTR__ast_common/D_1001720";
+
+static const ALIGN_ASSET(2) char D_1001CC0[] = "__OTR__ast_common/D_1001CC0";
+
+static const ALIGN_ASSET(2) char D_1002040[] = "__OTR__ast_common/D_1002040";
+
+static const ALIGN_ASSET(2) char D_1002220[] = "__OTR__ast_common/D_1002220";
+
+static const ALIGN_ASSET(2) char aShieldGaugeFrameEdgeTex[] = "__OTR__ast_common/aShieldGaugeFrameEdgeTex";
+
+static const ALIGN_ASSET(2) char D_10022E0[] = "__OTR__ast_common/D_10022E0";
+
+static const ALIGN_ASSET(2) char D_1002340[] = "__OTR__ast_common/D_1002340";
+
+static const ALIGN_ASSET(2) char D_10024D0[] = "__OTR__ast_common/D_10024D0";
+
+static const ALIGN_ASSET(2) char aShieldGaugeFrameTex[] = "__OTR__ast_common/aShieldGaugeFrameTex";
+
+static const ALIGN_ASSET(2) char D_1003130[] = "__OTR__ast_common/D_1003130";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31C8[] = "__OTR__ast_common/ast_common_seg1_vtx_31C8";
+
+static const ALIGN_ASSET(2) char D_1003208[] = "__OTR__ast_common/D_1003208";
+
+static const ALIGN_ASSET(2) char D_1003288[] = "__OTR__ast_common/D_1003288";
+
+static const ALIGN_ASSET(2) char aFalcoPortraitTex[] = "__OTR__ast_common/aFalcoPortraitTex";
+
+static const ALIGN_ASSET(2) char D_10041C0[] = "__OTR__ast_common/D_10041C0";
+
+static const ALIGN_ASSET(2) char aFoxPortraitTex[] = "__OTR__ast_common/aFoxPortraitTex";
+
+static const ALIGN_ASSET(2) char D_1006000[] = "__OTR__ast_common/D_1006000";
+
+static const ALIGN_ASSET(2) char D_1006F20[] = "__OTR__ast_common/D_1006F20";
+
+static const ALIGN_ASSET(2) char D_1007E40[] = "__OTR__ast_common/D_1007E40";
+
+static const ALIGN_ASSET(2) char D_1008D60[] = "__OTR__ast_common/D_1008D60";
+
+static const ALIGN_ASSET(2) char D_1009C80[] = "__OTR__ast_common/D_1009C80";
+
+static const ALIGN_ASSET(2) char D_100ABA0[] = "__OTR__ast_common/D_100ABA0";
+
+static const ALIGN_ASSET(2) char aPeppyPortraitTex[] = "__OTR__ast_common/aPeppyPortraitTex";
+
+static const ALIGN_ASSET(2) char D_100C9E0[] = "__OTR__ast_common/D_100C9E0";
+
+static const ALIGN_ASSET(2) char aSlippyPortraitTex[] = "__OTR__ast_common/aSlippyPortraitTex";
+
+static const ALIGN_ASSET(2) char D_100E820[] = "__OTR__ast_common/D_100E820";
+
+static const ALIGN_ASSET(2) char D_100F740[] = "__OTR__ast_common/D_100F740";
+
+static const ALIGN_ASSET(2) char D_1010660[] = "__OTR__ast_common/D_1010660";
+
+static const ALIGN_ASSET(2) char D_10106A0[] = "__OTR__ast_common/D_10106A0";
+
+static const ALIGN_ASSET(2) char D_10106B0[] = "__OTR__ast_common/D_10106B0";
+
+static const ALIGN_ASSET(2) char D_10106F0[] = "__OTR__ast_common/D_10106F0";
+
+static const ALIGN_ASSET(2) char D_1010700[] = "__OTR__ast_common/D_1010700";
+
+static const ALIGN_ASSET(2) char D_1010740[] = "__OTR__ast_common/D_1010740";
+
+static const ALIGN_ASSET(2) char D_1010750[] = "__OTR__ast_common/D_1010750";
+
+static const ALIGN_ASSET(2) char D_1010790[] = "__OTR__ast_common/D_1010790";
+
+static const ALIGN_ASSET(2) char D_10107A0[] = "__OTR__ast_common/D_10107A0";
+
+static const ALIGN_ASSET(2) char D_10107E0[] = "__OTR__ast_common/D_10107E0";
+
+static const ALIGN_ASSET(2) char D_10107F0[] = "__OTR__ast_common/D_10107F0";
+
+static const ALIGN_ASSET(2) char D_1010830[] = "__OTR__ast_common/D_1010830";
+
+static const ALIGN_ASSET(2) char D_1010840[] = "__OTR__ast_common/D_1010840";
+
+static const ALIGN_ASSET(2) char D_1010880[] = "__OTR__ast_common/D_1010880";
+
+static const ALIGN_ASSET(2) char D_1010890[] = "__OTR__ast_common/D_1010890";
+
+static const ALIGN_ASSET(2) char D_10108D0[] = "__OTR__ast_common/D_10108D0";
+
+static const ALIGN_ASSET(2) char D_10108E0[] = "__OTR__ast_common/D_10108E0";
+
+static const ALIGN_ASSET(2) char D_1010920[] = "__OTR__ast_common/D_1010920";
+
+static const ALIGN_ASSET(2) char D_1010930[] = "__OTR__ast_common/D_1010930";
+
+static const ALIGN_ASSET(2) char D_1010970[] = "__OTR__ast_common/D_1010970";
+
+static const ALIGN_ASSET(2) char D_1010980[] = "__OTR__ast_common/D_1010980";
+
+static const ALIGN_ASSET(2) char D_1010A00[] = "__OTR__ast_common/D_1010A00";
+
+static const ALIGN_ASSET(2) char D_1010A10[] = "__OTR__ast_common/D_1010A10";
+
+static const ALIGN_ASSET(2) char D_1010A80[] = "__OTR__ast_common/D_1010A80";
+
+static const ALIGN_ASSET(2) char D_1010A90[] = "__OTR__ast_common/D_1010A90";
+
+static const ALIGN_ASSET(2) char D_10110B0[] = "__OTR__ast_common/D_10110B0";
+
+static const ALIGN_ASSET(2) char D_10110C0[] = "__OTR__ast_common/D_10110C0";
+
+static const ALIGN_ASSET(2) char D_10110F8[] = "__OTR__ast_common/D_10110F8";
+
+static const ALIGN_ASSET(2) char D_1011110[] = "__OTR__ast_common/D_1011110";
+
+static const ALIGN_ASSET(2) char D_1011148[] = "__OTR__ast_common/D_1011148";
+
+static const ALIGN_ASSET(2) char D_1011160[] = "__OTR__ast_common/D_1011160";
+
+static const ALIGN_ASSET(2) char D_1011198[] = "__OTR__ast_common/D_1011198";
+
+static const ALIGN_ASSET(2) char D_10111B0[] = "__OTR__ast_common/D_10111B0";
+
+static const ALIGN_ASSET(2) char D_10111E8[] = "__OTR__ast_common/D_10111E8";
+
+static const ALIGN_ASSET(2) char D_1011200[] = "__OTR__ast_common/D_1011200";
+
+static const ALIGN_ASSET(2) char D_1011270[] = "__OTR__ast_common/D_1011270";
+
+static const ALIGN_ASSET(2) char aRadarFrameTex[] = "__OTR__ast_common/aRadarFrameTex";
+
+static const ALIGN_ASSET(2) char aRadarFrameTLUT[] = "__OTR__ast_common/aRadarFrameTLUT";
+
+static const ALIGN_ASSET(2) char aVsBombIconTex[] = "__OTR__ast_common/aVsBombIconTex";
+
+static const ALIGN_ASSET(2) char aVsBombIconTLUT[] = "__OTR__ast_common/aVsBombIconTLUT";
+
+static const ALIGN_ASSET(2) char D_1011750[] = "__OTR__ast_common/D_1011750";
+
+static const ALIGN_ASSET(2) char D_1011958[] = "__OTR__ast_common/D_1011958";
+
+static const ALIGN_ASSET(2) char D_1011980[] = "__OTR__ast_common/D_1011980";
+
+static const ALIGN_ASSET(2) char D_1011A28[] = "__OTR__ast_common/D_1011A28";
+
+static const ALIGN_ASSET(2) char D_1011A40[] = "__OTR__ast_common/D_1011A40";
+
+static const ALIGN_ASSET(2) char D_1011AB0[] = "__OTR__ast_common/D_1011AB0";
+
+static const ALIGN_ASSET(2) char aIncomingMsgButtonTex[] = "__OTR__ast_common/aIncomingMsgButtonTex";
+
+static const ALIGN_ASSET(2) char aIncomingMsgButtonTLUT[] = "__OTR__ast_common/aIncomingMsgButtonTLUT";
+
+static const ALIGN_ASSET(2) char aIncomingMsgSignal1Tex[] = "__OTR__ast_common/aIncomingMsgSignal1Tex";
+
+static const ALIGN_ASSET(2) char aIncomingMsgSignal1TLUT[] = "__OTR__ast_common/aIncomingMsgSignal1TLUT";
+
+static const ALIGN_ASSET(2) char aIncomingMsgSignal2Tex[] = "__OTR__ast_common/aIncomingMsgSignal2Tex";
+
+static const ALIGN_ASSET(2) char aIncomingMsgSignal2TLUT[] = "__OTR__ast_common/aIncomingMsgSignal2TLUT";
+
+static const ALIGN_ASSET(2) char aIncomingMsgSignal3Tex[] = "__OTR__ast_common/aIncomingMsgSignal3Tex";
+
+static const ALIGN_ASSET(2) char aIncomingMsgSignal3TLUT[] = "__OTR__ast_common/aIncomingMsgSignal3TLUT";
+
+static const ALIGN_ASSET(2) char D_1011E80[] = "__OTR__ast_common/D_1011E80";
+
+static const ALIGN_ASSET(2) char D_1011EC0[] = "__OTR__ast_common/D_1011EC0";
+
+static const ALIGN_ASSET(2) char aXTex[] = "__OTR__ast_common/aXTex";
+
+static const ALIGN_ASSET(2) char aXTLUT[] = "__OTR__ast_common/aXTLUT";
+
+static const ALIGN_ASSET(2) char D_1011F20[] = "__OTR__ast_common/D_1011F20";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_11FC0[] = "__OTR__ast_common/ast_common_seg1_vtx_11FC0";
+
+static const ALIGN_ASSET(2) char D_1012000[] = "__OTR__ast_common/D_1012000";
+
+static const ALIGN_ASSET(2) char D_1012100[] = "__OTR__ast_common/D_1012100";
+
+static const ALIGN_ASSET(2) char aGoldRingEmptySlotDL[] = "__OTR__ast_common/aGoldRingEmptySlotDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_12160[] = "__OTR__ast_common/ast_common_seg1_vtx_12160";
+
+static const ALIGN_ASSET(2) char aGoldRingEmptySlotTex[] = "__OTR__ast_common/aGoldRingEmptySlotTex";
+
+static const ALIGN_ASSET(2) char D_1012290[] = "__OTR__ast_common/D_1012290";
+
+static const ALIGN_ASSET(2) char D_10126B0[] = "__OTR__ast_common/D_10126B0";
+
+static const ALIGN_ASSET(2) char D_10126F0[] = "__OTR__ast_common/D_10126F0";
+
+static const ALIGN_ASSET(2) char D_1012750[] = "__OTR__ast_common/D_1012750";
+
+static const ALIGN_ASSET(2) char aBoostGaugeCoolTex[] = "__OTR__ast_common/aBoostGaugeCoolTex";
+
+static const ALIGN_ASSET(2) char aBoostGaugeCoolTLUT[] = "__OTR__ast_common/aBoostGaugeCoolTLUT";
+
+static const ALIGN_ASSET(2) char aBoostGaugeOverheatTex[] = "__OTR__ast_common/aBoostGaugeOverheatTex";
+
+static const ALIGN_ASSET(2) char aBoostGaugeOverheatTLUT[] = "__OTR__ast_common/aBoostGaugeOverheatTLUT";
+
+static const ALIGN_ASSET(2) char D_10129C0[] = "__OTR__ast_common/D_10129C0";
+
+static const ALIGN_ASSET(2) char D_1013090[] = "__OTR__ast_common/D_1013090";
+
+static const ALIGN_ASSET(2) char aMsgWindowBgTex[] = "__OTR__ast_common/aMsgWindowBgTex";
+
+static const ALIGN_ASSET(2) char aMsgWindowBgTLUT[] = "__OTR__ast_common/aMsgWindowBgTLUT";
+
+static const ALIGN_ASSET(2) char aShieldGaugeTex[] = "__OTR__ast_common/aShieldGaugeTex";
+
+static const ALIGN_ASSET(2) char aShieldGaugeTLUT[] = "__OTR__ast_common/aShieldGaugeTLUT";
+
+static const ALIGN_ASSET(2) char D_1013780[] = "__OTR__ast_common/D_1013780";
+
+static const ALIGN_ASSET(2) char D_10151F0[] = "__OTR__ast_common/D_10151F0";
+
+static const ALIGN_ASSET(2) char D_1015320[] = "__OTR__ast_common/D_1015320";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_153B8[] = "__OTR__ast_common/ast_common_seg1_vtx_153B8";
+
+static const ALIGN_ASSET(2) char D_10153F8[] = "__OTR__ast_common/D_10153F8";
+
+static const ALIGN_ASSET(2) char D_10154F8[] = "__OTR__ast_common/D_10154F8";
+
+static const ALIGN_ASSET(2) char aRadarMarkArwingDL[] = "__OTR__ast_common/aRadarMarkArwingDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15568[] = "__OTR__ast_common/ast_common_seg1_vtx_15568";
+
+static const ALIGN_ASSET(2) char aRadarMarkArwingTex[] = "__OTR__ast_common/aRadarMarkArwingTex";
+
+static const ALIGN_ASSET(2) char D_10156A0[] = "__OTR__ast_common/D_10156A0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15738[] = "__OTR__ast_common/ast_common_seg1_vtx_15738";
+
+static const ALIGN_ASSET(2) char D_1015778[] = "__OTR__ast_common/D_1015778";
+
+static const ALIGN_ASSET(2) char D_10157F8[] = "__OTR__ast_common/D_10157F8";
+
+static const ALIGN_ASSET(2) char D_1015810[] = "__OTR__ast_common/D_1015810";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_158A8[] = "__OTR__ast_common/ast_common_seg1_vtx_158A8";
+
+static const ALIGN_ASSET(2) char D_10158E8[] = "__OTR__ast_common/D_10158E8";
+
+static const ALIGN_ASSET(2) char D_1015968[] = "__OTR__ast_common/D_1015968";
+
+static const ALIGN_ASSET(2) char D_1015980[] = "__OTR__ast_common/D_1015980";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15A18[] = "__OTR__ast_common/ast_common_seg1_vtx_15A18";
+
+static const ALIGN_ASSET(2) char D_1015A58[] = "__OTR__ast_common/D_1015A58";
+
+static const ALIGN_ASSET(2) char D_1015B58[] = "__OTR__ast_common/D_1015B58";
+
+static const ALIGN_ASSET(2) char D_1015B70[] = "__OTR__ast_common/D_1015B70";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15C08[] = "__OTR__ast_common/ast_common_seg1_vtx_15C08";
+
+static const ALIGN_ASSET(2) char D_1015C48[] = "__OTR__ast_common/D_1015C48";
+
+static const ALIGN_ASSET(2) char D_1015CC8[] = "__OTR__ast_common/D_1015CC8";
+
+static const ALIGN_ASSET(2) char D_1015CE0[] = "__OTR__ast_common/D_1015CE0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15D78[] = "__OTR__ast_common/ast_common_seg1_vtx_15D78";
+
+static const ALIGN_ASSET(2) char D_1015DB8[] = "__OTR__ast_common/D_1015DB8";
+
+static const ALIGN_ASSET(2) char D_1015E38[] = "__OTR__ast_common/D_1015E38";
+
+static const ALIGN_ASSET(2) char D_1015E50[] = "__OTR__ast_common/D_1015E50";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_15EE8[] = "__OTR__ast_common/ast_common_seg1_vtx_15EE8";
+
+static const ALIGN_ASSET(2) char D_1015F28[] = "__OTR__ast_common/D_1015F28";
+
+static const ALIGN_ASSET(2) char D_1015FA8[] = "__OTR__ast_common/D_1015FA8";
+
+static const ALIGN_ASSET(2) char D_1015FC0[] = "__OTR__ast_common/D_1015FC0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16058[] = "__OTR__ast_common/ast_common_seg1_vtx_16058";
+
+static const ALIGN_ASSET(2) char D_1016098[] = "__OTR__ast_common/D_1016098";
+
+static const ALIGN_ASSET(2) char D_1016118[] = "__OTR__ast_common/D_1016118";
+
+static const ALIGN_ASSET(2) char D_1016130[] = "__OTR__ast_common/D_1016130";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_161C8[] = "__OTR__ast_common/ast_common_seg1_vtx_161C8";
+
+static const ALIGN_ASSET(2) char D_1016208[] = "__OTR__ast_common/D_1016208";
+
+static const ALIGN_ASSET(2) char D_1016288[] = "__OTR__ast_common/D_1016288";
+
+static const ALIGN_ASSET(2) char D_10162A0[] = "__OTR__ast_common/D_10162A0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16338[] = "__OTR__ast_common/ast_common_seg1_vtx_16338";
+
+static const ALIGN_ASSET(2) char D_1016378[] = "__OTR__ast_common/D_1016378";
+
+static const ALIGN_ASSET(2) char D_10163F8[] = "__OTR__ast_common/D_10163F8";
+
+static const ALIGN_ASSET(2) char D_1016410[] = "__OTR__ast_common/D_1016410";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_164A8[] = "__OTR__ast_common/ast_common_seg1_vtx_164A8";
+
+static const ALIGN_ASSET(2) char D_10164E8[] = "__OTR__ast_common/D_10164E8";
+
+static const ALIGN_ASSET(2) char D_1016568[] = "__OTR__ast_common/D_1016568";
+
+static const ALIGN_ASSET(2) char D_1016580[] = "__OTR__ast_common/D_1016580";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16618[] = "__OTR__ast_common/ast_common_seg1_vtx_16618";
+
+static const ALIGN_ASSET(2) char D_1016658[] = "__OTR__ast_common/D_1016658";
+
+static const ALIGN_ASSET(2) char D_1016858[] = "__OTR__ast_common/D_1016858";
+
+static const ALIGN_ASSET(2) char D_1016870[] = "__OTR__ast_common/D_1016870";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16998[] = "__OTR__ast_common/ast_common_seg1_vtx_16998";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_16B88[] = "__OTR__ast_common/ast_common_seg1_vtx_16B88";
+
+static const ALIGN_ASSET(2) char D_1016BC8[] = "__OTR__ast_common/D_1016BC8";
+
+static const ALIGN_ASSET(2) char D_1016FC8[] = "__OTR__ast_common/D_1016FC8";
+
+static const ALIGN_ASSET(2) char D_10171D0[] = "__OTR__ast_common/D_10171D0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_17268[] = "__OTR__ast_common/ast_common_seg1_vtx_17268";
+
+static const ALIGN_ASSET(2) char D_10172A8[] = "__OTR__ast_common/D_10172A8";
+
+static const ALIGN_ASSET(2) char D_10173A8[] = "__OTR__ast_common/D_10173A8";
+
+static const ALIGN_ASSET(2) char D_10173D0[] = "__OTR__ast_common/D_10173D0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_17468[] = "__OTR__ast_common/ast_common_seg1_vtx_17468";
+
+static const ALIGN_ASSET(2) char D_10174A8[] = "__OTR__ast_common/D_10174A8";
+
+static const ALIGN_ASSET(2) char D_10175A8[] = "__OTR__ast_common/D_10175A8";
+
+static const ALIGN_ASSET(2) char D_10175C0[] = "__OTR__ast_common/D_10175C0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_17658[] = "__OTR__ast_common/ast_common_seg1_vtx_17658";
+
+static const ALIGN_ASSET(2) char D_1017698[] = "__OTR__ast_common/D_1017698";
+
+static const ALIGN_ASSET(2) char D_1017798[] = "__OTR__ast_common/D_1017798";
+
+static const ALIGN_ASSET(2) char aActorSuppliesDL[] = "__OTR__ast_common/aActorSuppliesDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_178B8[] = "__OTR__ast_common/ast_common_seg1_vtx_178B8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_179B8[] = "__OTR__ast_common/ast_common_seg1_vtx_179B8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_179F8[] = "__OTR__ast_common/ast_common_seg1_vtx_179F8";
+
+static const ALIGN_ASSET(2) char D_1017A38[] = "__OTR__ast_common/D_1017A38";
+
+static const ALIGN_ASSET(2) char D_1018238[] = "__OTR__ast_common/D_1018238";
+
+static const ALIGN_ASSET(2) char D_10182C0[] = "__OTR__ast_common/D_10182C0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18630[] = "__OTR__ast_common/ast_common_seg1_vtx_18630";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18830[] = "__OTR__ast_common/ast_common_seg1_vtx_18830";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18A30[] = "__OTR__ast_common/ast_common_seg1_vtx_18A30";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18C30[] = "__OTR__ast_common/ast_common_seg1_vtx_18C30";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_18E30[] = "__OTR__ast_common/ast_common_seg1_vtx_18E30";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19030[] = "__OTR__ast_common/ast_common_seg1_vtx_19030";
+
+static const ALIGN_ASSET(2) char D_10190C0[] = "__OTR__ast_common/D_10190C0";
+
+static const ALIGN_ASSET(2) char D_10194C0[] = "__OTR__ast_common/D_10194C0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19520[] = "__OTR__ast_common/ast_common_seg1_vtx_19520";
+
+static const ALIGN_ASSET(2) char D_1019620[] = "__OTR__ast_common/D_1019620";
+
+static const ALIGN_ASSET(2) char D_1019820[] = "__OTR__ast_common/D_1019820";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19980[] = "__OTR__ast_common/ast_common_seg1_vtx_19980";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19A40[] = "__OTR__ast_common/ast_common_seg1_vtx_19A40";
+
+static const ALIGN_ASSET(2) char D_1019AF0[] = "__OTR__ast_common/D_1019AF0";
+
+static const ALIGN_ASSET(2) char D_1019BF0[] = "__OTR__ast_common/D_1019BF0";
+
+static const ALIGN_ASSET(2) char D_1019CA0[] = "__OTR__ast_common/D_1019CA0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_19E20[] = "__OTR__ast_common/ast_common_seg1_vtx_19E20";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A000[] = "__OTR__ast_common/ast_common_seg1_vtx_1A000";
+
+static const ALIGN_ASSET(2) char D_101A140[] = "__OTR__ast_common/D_101A140";
+
+static const ALIGN_ASSET(2) char D_101A540[] = "__OTR__ast_common/D_101A540";
+
+static const ALIGN_ASSET(2) char D_101A570[] = "__OTR__ast_common/D_101A570";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A6A8[] = "__OTR__ast_common/ast_common_seg1_vtx_1A6A8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A8A8[] = "__OTR__ast_common/ast_common_seg1_vtx_1A8A8";
+
+static const ALIGN_ASSET(2) char D_101A8E0[] = "__OTR__ast_common/D_101A8E0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1A978[] = "__OTR__ast_common/ast_common_seg1_vtx_1A978";
+
+static const ALIGN_ASSET(2) char D_101A9B8[] = "__OTR__ast_common/D_101A9B8";
+
+static const ALIGN_ASSET(2) char D_101ABB8[] = "__OTR__ast_common/D_101ABB8";
+
+static const ALIGN_ASSET(2) char D_101ABD0[] = "__OTR__ast_common/D_101ABD0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1AC38[] = "__OTR__ast_common/ast_common_seg1_vtx_1AC38";
+
+static const ALIGN_ASSET(2) char D_101AC98[] = "__OTR__ast_common/D_101AC98";
+
+static const ALIGN_ASSET(2) char D_101AD20[] = "__OTR__ast_common/D_101AD20";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1AD88[] = "__OTR__ast_common/ast_common_seg1_vtx_1AD88";
+
+static const ALIGN_ASSET(2) char D_101AE48[] = "__OTR__ast_common/D_101AE48";
+
+static const ALIGN_ASSET(2) char D_101AED0[] = "__OTR__ast_common/D_101AED0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1AF38[] = "__OTR__ast_common/ast_common_seg1_vtx_1AF38";
+
+static const ALIGN_ASSET(2) char D_101AF98[] = "__OTR__ast_common/D_101AF98";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame12DL[] = "__OTR__ast_common/aGoldRingFrame12DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B238[] = "__OTR__ast_common/ast_common_seg1_vtx_1B238";
+
+static const ALIGN_ASSET(2) char D_101B268[] = "__OTR__ast_common/D_101B268";
+
+static const ALIGN_ASSET(2) char D_101B2E8[] = "__OTR__ast_common/D_101B2E8";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame11DL[] = "__OTR__ast_common/aGoldRingFrame11DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B3A8[] = "__OTR__ast_common/ast_common_seg1_vtx_1B3A8";
+
+static const ALIGN_ASSET(2) char D_101B3D8[] = "__OTR__ast_common/D_101B3D8";
+
+static const ALIGN_ASSET(2) char D_101B458[] = "__OTR__ast_common/D_101B458";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame10DL[] = "__OTR__ast_common/aGoldRingFrame10DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B518[] = "__OTR__ast_common/ast_common_seg1_vtx_1B518";
+
+static const ALIGN_ASSET(2) char D_101B548[] = "__OTR__ast_common/D_101B548";
+
+static const ALIGN_ASSET(2) char D_101B5C8[] = "__OTR__ast_common/D_101B5C8";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame9DL[] = "__OTR__ast_common/aGoldRingFrame9DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B688[] = "__OTR__ast_common/ast_common_seg1_vtx_1B688";
+
+static const ALIGN_ASSET(2) char D_101B6B8[] = "__OTR__ast_common/D_101B6B8";
+
+static const ALIGN_ASSET(2) char D_101B738[] = "__OTR__ast_common/D_101B738";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame8DL[] = "__OTR__ast_common/aGoldRingFrame8DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B7F8[] = "__OTR__ast_common/ast_common_seg1_vtx_1B7F8";
+
+static const ALIGN_ASSET(2) char D_101B828[] = "__OTR__ast_common/D_101B828";
+
+static const ALIGN_ASSET(2) char D_101B8A8[] = "__OTR__ast_common/D_101B8A8";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame7DL[] = "__OTR__ast_common/aGoldRingFrame7DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1B968[] = "__OTR__ast_common/ast_common_seg1_vtx_1B968";
+
+static const ALIGN_ASSET(2) char D_101B998[] = "__OTR__ast_common/D_101B998";
+
+static const ALIGN_ASSET(2) char D_101BA18[] = "__OTR__ast_common/D_101BA18";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame6DL[] = "__OTR__ast_common/aGoldRingFrame6DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BAD8[] = "__OTR__ast_common/ast_common_seg1_vtx_1BAD8";
+
+static const ALIGN_ASSET(2) char D_101BB08[] = "__OTR__ast_common/D_101BB08";
+
+static const ALIGN_ASSET(2) char D_101BB88[] = "__OTR__ast_common/D_101BB88";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame5DL[] = "__OTR__ast_common/aGoldRingFrame5DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BC48[] = "__OTR__ast_common/ast_common_seg1_vtx_1BC48";
+
+static const ALIGN_ASSET(2) char D_101BC78[] = "__OTR__ast_common/D_101BC78";
+
+static const ALIGN_ASSET(2) char D_101BCF8[] = "__OTR__ast_common/D_101BCF8";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame4DL[] = "__OTR__ast_common/aGoldRingFrame4DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BDB8[] = "__OTR__ast_common/ast_common_seg1_vtx_1BDB8";
+
+static const ALIGN_ASSET(2) char D_101BDE8[] = "__OTR__ast_common/D_101BDE8";
+
+static const ALIGN_ASSET(2) char D_101BE68[] = "__OTR__ast_common/D_101BE68";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame3DL[] = "__OTR__ast_common/aGoldRingFrame3DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1BF28[] = "__OTR__ast_common/ast_common_seg1_vtx_1BF28";
+
+static const ALIGN_ASSET(2) char D_101BF58[] = "__OTR__ast_common/D_101BF58";
+
+static const ALIGN_ASSET(2) char D_101BFD8[] = "__OTR__ast_common/D_101BFD8";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame2DL[] = "__OTR__ast_common/aGoldRingFrame2DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C098[] = "__OTR__ast_common/ast_common_seg1_vtx_1C098";
+
+static const ALIGN_ASSET(2) char D_101C0C8[] = "__OTR__ast_common/D_101C0C8";
+
+static const ALIGN_ASSET(2) char D_101C148[] = "__OTR__ast_common/D_101C148";
+
+static const ALIGN_ASSET(2) char aGoldRingFrame1DL[] = "__OTR__ast_common/aGoldRingFrame1DL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C208[] = "__OTR__ast_common/ast_common_seg1_vtx_1C208";
+
+static const ALIGN_ASSET(2) char D_101C238[] = "__OTR__ast_common/D_101C238";
+
+static const ALIGN_ASSET(2) char D_101C2B8[] = "__OTR__ast_common/D_101C2B8";
+
+static const ALIGN_ASSET(2) char aStarDL[] = "__OTR__ast_common/aStarDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C338[] = "__OTR__ast_common/ast_common_seg1_vtx_1C338";
+
+static const ALIGN_ASSET(2) char aStarTex[] = "__OTR__ast_common/aStarTex";
+
+static const ALIGN_ASSET(2) char D_101C770[] = "__OTR__ast_common/D_101C770";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1C860[] = "__OTR__ast_common/ast_common_seg1_vtx_1C860";
+
+static const ALIGN_ASSET(2) char D_101C920[] = "__OTR__ast_common/D_101C920";
+
+static const ALIGN_ASSET(2) char D_101CA20[] = "__OTR__ast_common/D_101CA20";
+
+static const ALIGN_ASSET(2) char D_101CAE0[] = "__OTR__ast_common/D_101CAE0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1CB80[] = "__OTR__ast_common/ast_common_seg1_vtx_1CB80";
+
+static const ALIGN_ASSET(2) char D_101CBC0[] = "__OTR__ast_common/D_101CBC0";
+
+static const ALIGN_ASSET(2) char D_101CCC0[] = "__OTR__ast_common/D_101CCC0";
+
+static const ALIGN_ASSET(2) char aUnusedShieldDL[] = "__OTR__ast_common/aUnusedShieldDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1CE80[] = "__OTR__ast_common/ast_common_seg1_vtx_1CE80";
+
+static const ALIGN_ASSET(2) char aUnusedShieldTex[] = "__OTR__ast_common/aUnusedShieldTex";
+
+static const ALIGN_ASSET(2) char D_101D870[] = "__OTR__ast_common/D_101D870";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1D9C8[] = "__OTR__ast_common/ast_common_seg1_vtx_1D9C8";
+
+static const ALIGN_ASSET(2) char aBarrelRollTex[] = "__OTR__ast_common/aBarrelRollTex";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_1DD20[] = "__OTR__ast_common/ast_common_seg1_vtx_1DD20";
+
+static const ALIGN_ASSET(2) char D_101DE20[] = "__OTR__ast_common/D_101DE20";
+
+static const ALIGN_ASSET(2) char D_101EE20[] = "__OTR__ast_common/D_101EE20";
+
+static const ALIGN_ASSET(2) char D_101FE20[] = "__OTR__ast_common/D_101FE20";
+
+static const ALIGN_ASSET(2) char D_1020E20[] = "__OTR__ast_common/D_1020E20";
+
+static const ALIGN_ASSET(2) char D_1021E20[] = "__OTR__ast_common/D_1021E20";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_21EB8[] = "__OTR__ast_common/ast_common_seg1_vtx_21EB8";
+
+static const ALIGN_ASSET(2) char D_1021EF8[] = "__OTR__ast_common/D_1021EF8";
+
+static const ALIGN_ASSET(2) char D_10220F8[] = "__OTR__ast_common/D_10220F8";
+
+static const ALIGN_ASSET(2) char D_1022120[] = "__OTR__ast_common/D_1022120";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_22480[] = "__OTR__ast_common/ast_common_seg1_vtx_22480";
+
+static const ALIGN_ASSET(2) char D_1022C40[] = "__OTR__ast_common/D_1022C40";
+
+static const ALIGN_ASSET(2) char D_1022CC0[] = "__OTR__ast_common/D_1022CC0";
+
+static const ALIGN_ASSET(2) char D_1022CE0[] = "__OTR__ast_common/D_1022CE0";
+
+static const ALIGN_ASSET(2) char D_1022D60[] = "__OTR__ast_common/D_1022D60";
+
+static const ALIGN_ASSET(2) char D_1022D80[] = "__OTR__ast_common/D_1022D80";
+
+static const ALIGN_ASSET(2) char D_1022E80[] = "__OTR__ast_common/D_1022E80";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_22F20[] = "__OTR__ast_common/ast_common_seg1_vtx_22F20";
+
+static const ALIGN_ASSET(2) char D_1022F80[] = "__OTR__ast_common/D_1022F80";
+
+static const ALIGN_ASSET(2) char D_1023180[] = "__OTR__ast_common/D_1023180";
+
+static const ALIGN_ASSET(2) char D_10231A0[] = "__OTR__ast_common/D_10231A0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23288[] = "__OTR__ast_common/ast_common_seg1_vtx_23288";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23468[] = "__OTR__ast_common/ast_common_seg1_vtx_23468";
+
+static const ALIGN_ASSET(2) char D_1023518[] = "__OTR__ast_common/D_1023518";
+
+static const ALIGN_ASSET(2) char D_1023530[] = "__OTR__ast_common/D_1023530";
+
+static const ALIGN_ASSET(2) char D_1023630[] = "__OTR__ast_common/D_1023630";
+
+static const ALIGN_ASSET(2) char D_1023700[] = "__OTR__ast_common/D_1023700";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23718[] = "__OTR__ast_common/ast_common_seg1_vtx_23718";
+
+static const ALIGN_ASSET(2) char D_1023750[] = "__OTR__ast_common/D_1023750";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_237A8[] = "__OTR__ast_common/ast_common_seg1_vtx_237A8";
+
+static const ALIGN_ASSET(2) char D_10237E0[] = "__OTR__ast_common/D_10237E0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23838[] = "__OTR__ast_common/ast_common_seg1_vtx_23838";
+
+static const ALIGN_ASSET(2) char D_1023878[] = "__OTR__ast_common/D_1023878";
+
+static const ALIGN_ASSET(2) char D_1023C80[] = "__OTR__ast_common/D_1023C80";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23D90[] = "__OTR__ast_common/ast_common_seg1_vtx_23D90";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_23DD0[] = "__OTR__ast_common/ast_common_seg1_vtx_23DD0";
+
+static const ALIGN_ASSET(2) char D_1023E10[] = "__OTR__ast_common/D_1023E10";
+
+static const ALIGN_ASSET(2) char D_1024010[] = "__OTR__ast_common/D_1024010";
+
+static const ALIGN_ASSET(2) char D_1024020[] = "__OTR__ast_common/D_1024020";
+
+static const ALIGN_ASSET(2) char D_1024220[] = "__OTR__ast_common/D_1024220";
+
+static const ALIGN_ASSET(2) char D_1024230[] = "__OTR__ast_common/D_1024230";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24248[] = "__OTR__ast_common/ast_common_seg1_vtx_24248";
+
+static const ALIGN_ASSET(2) char D_1024290[] = "__OTR__ast_common/D_1024290";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_242F0[] = "__OTR__ast_common/ast_common_seg1_vtx_242F0";
+
+static const ALIGN_ASSET(2) char aPeppyMarkDL[] = "__OTR__ast_common/aPeppyMarkDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_244A8[] = "__OTR__ast_common/ast_common_seg1_vtx_244A8";
+
+static const ALIGN_ASSET(2) char aPeppyMarkTex[] = "__OTR__ast_common/aPeppyMarkTex";
+
+static const ALIGN_ASSET(2) char aPeppyMarkTLUT[] = "__OTR__ast_common/aPeppyMarkTLUT";
+
+static const ALIGN_ASSET(2) char aFalcoMarkDL[] = "__OTR__ast_common/aFalcoMarkDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24608[] = "__OTR__ast_common/ast_common_seg1_vtx_24608";
+
+static const ALIGN_ASSET(2) char aFalcoMarkTex[] = "__OTR__ast_common/aFalcoMarkTex";
+
+static const ALIGN_ASSET(2) char aFalcoMarkTLUT[] = "__OTR__ast_common/aFalcoMarkTLUT";
+
+static const ALIGN_ASSET(2) char aSlippyMarkDL[] = "__OTR__ast_common/aSlippyMarkDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24768[] = "__OTR__ast_common/ast_common_seg1_vtx_24768";
+
+static const ALIGN_ASSET(2) char aSlippyMarkTex[] = "__OTR__ast_common/aSlippyMarkTex";
+
+static const ALIGN_ASSET(2) char aSlippyMarkTLUT[] = "__OTR__ast_common/aSlippyMarkTLUT";
+
+static const ALIGN_ASSET(2) char aRadarMarkBossDL[] = "__OTR__ast_common/aRadarMarkBossDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_248C8[] = "__OTR__ast_common/ast_common_seg1_vtx_248C8";
+
+static const ALIGN_ASSET(2) char D_10248F8[] = "__OTR__ast_common/D_10248F8";
+
+static const ALIGN_ASSET(2) char D_1024978[] = "__OTR__ast_common/D_1024978";
+
+static const ALIGN_ASSET(2) char aArrowDL[] = "__OTR__ast_common/aArrowDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24A28[] = "__OTR__ast_common/ast_common_seg1_vtx_24A28";
+
+static const ALIGN_ASSET(2) char D_1024A58[] = "__OTR__ast_common/D_1024A58";
+
+static const ALIGN_ASSET(2) char D_1024A98[] = "__OTR__ast_common/D_1024A98";
+
+static const ALIGN_ASSET(2) char aOrbDL[] = "__OTR__ast_common/aOrbDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24B18[] = "__OTR__ast_common/ast_common_seg1_vtx_24B18";
+
+static const ALIGN_ASSET(2) char D_1024B58[] = "__OTR__ast_common/D_1024B58";
+
+static const ALIGN_ASSET(2) char D_1024F60[] = "__OTR__ast_common/D_1024F60";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_24FB8[] = "__OTR__ast_common/ast_common_seg1_vtx_24FB8";
+
+static const ALIGN_ASSET(2) char D_1024FF8[] = "__OTR__ast_common/D_1024FF8";
+
+static const ALIGN_ASSET(2) char D_1025800[] = "__OTR__ast_common/D_1025800";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_25858[] = "__OTR__ast_common/ast_common_seg1_vtx_25858";
+
+static const ALIGN_ASSET(2) char D_1025888[] = "__OTR__ast_common/D_1025888";
+
+static const ALIGN_ASSET(2) char D_1026090[] = "__OTR__ast_common/D_1026090";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_260E8[] = "__OTR__ast_common/ast_common_seg1_vtx_260E8";
+
+static const ALIGN_ASSET(2) char D_1026120[] = "__OTR__ast_common/D_1026120";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_261B0[] = "__OTR__ast_common/ast_common_seg1_vtx_261B0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_261F0[] = "__OTR__ast_common/ast_common_seg1_vtx_261F0";
+
+static const ALIGN_ASSET(2) char D_1026230[] = "__OTR__ast_common/D_1026230";
+
+static const ALIGN_ASSET(2) char D_1027230[] = "__OTR__ast_common/D_1027230";
+
+static const ALIGN_ASSET(2) char D_1028230[] = "__OTR__ast_common/D_1028230";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_283C8[] = "__OTR__ast_common/ast_common_seg1_vtx_283C8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28508[] = "__OTR__ast_common/ast_common_seg1_vtx_28508";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28608[] = "__OTR__ast_common/ast_common_seg1_vtx_28608";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28748[] = "__OTR__ast_common/ast_common_seg1_vtx_28748";
+
+static const ALIGN_ASSET(2) char D_10288D8[] = "__OTR__ast_common/D_10288D8";
+
+static const ALIGN_ASSET(2) char D_1028AD8[] = "__OTR__ast_common/D_1028AD8";
+
+static const ALIGN_ASSET(2) char D_1028B58[] = "__OTR__ast_common/D_1028B58";
+
+static const ALIGN_ASSET(2) char D_1028D58[] = "__OTR__ast_common/D_1028D58";
+
+static const ALIGN_ASSET(2) char D_1028DE0[] = "__OTR__ast_common/D_1028DE0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28E38[] = "__OTR__ast_common/ast_common_seg1_vtx_28E38";
+
+static const ALIGN_ASSET(2) char D_1028E68[] = "__OTR__ast_common/D_1028E68";
+
+static const ALIGN_ASSET(2) char D_1028EF0[] = "__OTR__ast_common/D_1028EF0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_28F48[] = "__OTR__ast_common/ast_common_seg1_vtx_28F48";
+
+static const ALIGN_ASSET(2) char D_1028F78[] = "__OTR__ast_common/D_1028F78";
+
+static const ALIGN_ASSET(2) char D_1029780[] = "__OTR__ast_common/D_1029780";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_297D8[] = "__OTR__ast_common/ast_common_seg1_vtx_297D8";
+
+static const ALIGN_ASSET(2) char D_1029808[] = "__OTR__ast_common/D_1029808";
+
+static const ALIGN_ASSET(2) char D_102A010[] = "__OTR__ast_common/D_102A010";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2A068[] = "__OTR__ast_common/ast_common_seg1_vtx_2A068";
+
+static const ALIGN_ASSET(2) char D_102A098[] = "__OTR__ast_common/D_102A098";
+
+static const ALIGN_ASSET(2) char aRadarMarkKaSaucererDL[] = "__OTR__ast_common/aRadarMarkKaSaucererDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2A8F8[] = "__OTR__ast_common/ast_common_seg1_vtx_2A8F8";
+
+static const ALIGN_ASSET(2) char D_102A928[] = "__OTR__ast_common/D_102A928";
+
+static const ALIGN_ASSET(2) char D_102AB30[] = "__OTR__ast_common/D_102AB30";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2ABC0[] = "__OTR__ast_common/ast_common_seg1_vtx_2ABC0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2AC00[] = "__OTR__ast_common/ast_common_seg1_vtx_2AC00";
+
+static const ALIGN_ASSET(2) char D_102AC40[] = "__OTR__ast_common/D_102AC40";
+
+static const ALIGN_ASSET(2) char D_102BC40[] = "__OTR__ast_common/D_102BC40";
+
+static const ALIGN_ASSET(2) char D_102CC40[] = "__OTR__ast_common/D_102CC40";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2CCD0[] = "__OTR__ast_common/ast_common_seg1_vtx_2CCD0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2CD10[] = "__OTR__ast_common/ast_common_seg1_vtx_2CD10";
+
+static const ALIGN_ASSET(2) char D_102CD50[] = "__OTR__ast_common/D_102CD50";
+
+static const ALIGN_ASSET(2) char D_102DD50[] = "__OTR__ast_common/D_102DD50";
+
+static const ALIGN_ASSET(2) char aBlueSphereDL[] = "__OTR__ast_common/aBlueSphereDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2EDA8[] = "__OTR__ast_common/ast_common_seg1_vtx_2EDA8";
+
+static const ALIGN_ASSET(2) char D_102EDD8[] = "__OTR__ast_common/D_102EDD8";
+
+static const ALIGN_ASSET(2) char D_102F5E0[] = "__OTR__ast_common/D_102F5E0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2F638[] = "__OTR__ast_common/ast_common_seg1_vtx_2F638";
+
+static const ALIGN_ASSET(2) char D_102F678[] = "__OTR__ast_common/D_102F678";
+
+static const ALIGN_ASSET(2) char D_102FE80[] = "__OTR__ast_common/D_102FE80";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_2FED8[] = "__OTR__ast_common/ast_common_seg1_vtx_2FED8";
+
+static const ALIGN_ASSET(2) char D_102FF08[] = "__OTR__ast_common/D_102FF08";
+
+static const ALIGN_ASSET(2) char D_102FF90[] = "__OTR__ast_common/D_102FF90";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_301C8[] = "__OTR__ast_common/ast_common_seg1_vtx_301C8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_303C8[] = "__OTR__ast_common/ast_common_seg1_vtx_303C8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_305B8[] = "__OTR__ast_common/ast_common_seg1_vtx_305B8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30798[] = "__OTR__ast_common/ast_common_seg1_vtx_30798";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30998[] = "__OTR__ast_common/ast_common_seg1_vtx_30998";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30B78[] = "__OTR__ast_common/ast_common_seg1_vtx_30B78";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30D78[] = "__OTR__ast_common/ast_common_seg1_vtx_30D78";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_30F68[] = "__OTR__ast_common/ast_common_seg1_vtx_30F68";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31168[] = "__OTR__ast_common/ast_common_seg1_vtx_31168";
+
+static const ALIGN_ASSET(2) char D_1031228[] = "__OTR__ast_common/D_1031228";
+
+static const ALIGN_ASSET(2) char D_1031630[] = "__OTR__ast_common/D_1031630";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_317D0[] = "__OTR__ast_common/ast_common_seg1_vtx_317D0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_319D0[] = "__OTR__ast_common/ast_common_seg1_vtx_319D0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31BD0[] = "__OTR__ast_common/ast_common_seg1_vtx_31BD0";
+
+static const ALIGN_ASSET(2) char D_1031CC0[] = "__OTR__ast_common/D_1031CC08";
+
+static const ALIGN_ASSET(2) char D_1031EC0[] = "__OTR__ast_common/D_1031EC0";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_31FE8[] = "__OTR__ast_common/ast_common_seg1_vtx_31FE8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_321E8[] = "__OTR__ast_common/ast_common_seg1_vtx_321E8";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_323E8[] = "__OTR__ast_common/ast_common_seg1_vtx_323E8";
+
+static const ALIGN_ASSET(2) char D_1032578[] = "__OTR__ast_common/D_1032578";
+
+static const ALIGN_ASSET(2) char aArwingShadowDL[] = "__OTR__ast_common/aArwingShadowDL";
+
+static const ALIGN_ASSET(2) char ast_common_seg1_vtx_327D8[] = "__OTR__ast_common/ast_common_seg1_vtx_327D8";
+
+static const ALIGN_ASSET(2) char D_1032808[] = "__OTR__ast_common/D_1032808";
+
diff --git a/include/assets/ast_corneria.h b/include/assets/ast_corneria.h
new file mode 100644
index 00000000..8c129fa4
--- /dev/null
+++ b/include/assets/ast_corneria.h
@@ -0,0 +1,964 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aCoTitleCardTex[] = "__OTR__ast_corneria/aCoTitleCardTex";
+
+static const ALIGN_ASSET(2) char aCoWaterfallDL[] = "__OTR__ast_corneria/aCoWaterfallDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FF8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_11F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_11F8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13D8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14A8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1698[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1698";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1878[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1878";
+
+static const ALIGN_ASSET(2) char D_CO_60018F8[] = "__OTR__ast_corneria/D_CO_60018F8";
+
+static const ALIGN_ASSET(2) char D_CO_60020F8[] = "__OTR__ast_corneria/D_CO_60020F8";
+
+static const ALIGN_ASSET(2) char D_CO_60028F8[] = "__OTR__ast_corneria/D_CO_60028F8";
+
+static const ALIGN_ASSET(2) char D_CO_60038F8[] = "__OTR__ast_corneria/D_CO_60038F8";
+
+static const ALIGN_ASSET(2) char D_CO_60040F8[] = "__OTR__ast_corneria/D_CO_60040F8";
+
+static const ALIGN_ASSET(2) char D_CO_6004900[] = "__OTR__ast_corneria/D_CO_6004900";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_4970[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_4970";
+
+static const ALIGN_ASSET(2) char D_CO_60049F0[] = "__OTR__ast_corneria/D_CO_60049F0";
+
+static const ALIGN_ASSET(2) char D_CO_60059F0[] = "__OTR__ast_corneria/D_CO_60059F0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_5A40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_5A40";
+
+static const ALIGN_ASSET(2) char D_CO_6005A80[] = "__OTR__ast_corneria/D_CO_6005A80";
+
+static const ALIGN_ASSET(2) char aCoArch3DL[] = "__OTR__ast_corneria/aCoArch3DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6BC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6BC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6CC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6CC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6D88[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6D88";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_6DC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_6DC8";
+
+static const ALIGN_ASSET(2) char D_CO_6006E08[] = "__OTR__ast_corneria/D_CO_6006E08";
+
+static const ALIGN_ASSET(2) char D_CO_6007610[] = "__OTR__ast_corneria/D_CO_6007610";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7C88[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7C88";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7CC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7CC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7D08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7D08";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7ED8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7ED8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_7FF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_7FF8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_81D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_81D8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8268[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8268";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_82E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_82E8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8488[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8488";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8658[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8658";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8858[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8858";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8A48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8A48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8C48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8C48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8CC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8CC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8D48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8D48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_8E48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_8E48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_9028[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_9028";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_9068[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_9068";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_90A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_90A8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_9188[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_9188";
+
+static const ALIGN_ASSET(2) char D_CO_60091C8[] = "__OTR__ast_corneria/D_CO_60091C8";
+
+static const ALIGN_ASSET(2) char D_CO_60099C8[] = "__OTR__ast_corneria/D_CO_60099C8";
+
+static const ALIGN_ASSET(2) char D_CO_6009BC8[] = "__OTR__ast_corneria/D_CO_6009BC8";
+
+static const ALIGN_ASSET(2) char D_CO_600A3C8[] = "__OTR__ast_corneria/D_CO_600A3C8";
+
+static const ALIGN_ASSET(2) char D_CO_600ABC8[] = "__OTR__ast_corneria/D_CO_600ABC8";
+
+static const ALIGN_ASSET(2) char D_CO_600B3C8[] = "__OTR__ast_corneria/D_CO_600B3C8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_BBD0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_BBD0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_BE68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_BE68";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_BF68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_BF68";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C138[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C138";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C1F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C1F8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C278[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C278";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C358[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C358";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_C398[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_C398";
+
+static const ALIGN_ASSET(2) char D_CO_600C3D8[] = "__OTR__ast_corneria/D_CO_600C3D8";
+
+static const ALIGN_ASSET(2) char D_CO_600CBD8[] = "__OTR__ast_corneria/D_CO_600CBD8";
+
+static const ALIGN_ASSET(2) char D_CO_600DBD8[] = "__OTR__ast_corneria/D_CO_600DBD8";
+
+static const ALIGN_ASSET(2) char D_CO_600E3D8[] = "__OTR__ast_corneria/D_CO_600E3D8";
+
+static const ALIGN_ASSET(2) char D_CO_600EBD8[] = "__OTR__ast_corneria/D_CO_600EBD8";
+
+static const ALIGN_ASSET(2) char D_CO_600F3D8[] = "__OTR__ast_corneria/D_CO_600F3D8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_FBE0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_FBE0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FD40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FD40";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FE40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FE40";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_FFD0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_FFD0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10010[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10010";
+
+static const ALIGN_ASSET(2) char D_CO_6010050[] = "__OTR__ast_corneria/D_CO_6010050";
+
+static const ALIGN_ASSET(2) char D_CO_6010250[] = "__OTR__ast_corneria/D_CO_6010250";
+
+static const ALIGN_ASSET(2) char aCoHighway7DL[] = "__OTR__ast_corneria/aCoHighway7DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10BB8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10BB8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10BF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10BF8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10C38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10C38";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10C78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10C78";
+
+static const ALIGN_ASSET(2) char aCoHighway5DL[] = "__OTR__ast_corneria/aCoHighway5DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10EB0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10EB0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_10F50[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_10F50";
+
+static const ALIGN_ASSET(2) char D_CO_6010F90[] = "__OTR__ast_corneria/D_CO_6010F90";
+
+static const ALIGN_ASSET(2) char D_CO_6011790[] = "__OTR__ast_corneria/D_CO_6011790";
+
+static const ALIGN_ASSET(2) char aCoCornerianFighterDL[] = "__OTR__ast_corneria/aCoCornerianFighterDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12120[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12120";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12310[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12310";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12370[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12370";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12560[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12560";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_125C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_125C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12610[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12610";
+
+static const ALIGN_ASSET(2) char D_CO_6012640[] = "__OTR__ast_corneria/D_CO_6012640";
+
+static const ALIGN_ASSET(2) char D_CO_6012840[] = "__OTR__ast_corneria/D_CO_6012840";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_12A40[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_12A40";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12AC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12AC0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_12BA0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_12BA0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_12C20[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_12C20";
+
+static const ALIGN_ASSET(2) char D_CO_6012D00[] = "__OTR__ast_corneria/D_CO_6012D00";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_12F00[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_12F00";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13070[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13070";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_130F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_130F0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_131B0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_131B0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_131F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_131F0";
+
+static const ALIGN_ASSET(2) char aCoHighway1DL[] = "__OTR__ast_corneria/aCoHighway1DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_133F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_133F8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13478[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13478";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13678[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13678";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_136A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_136A8";
+
+static const ALIGN_ASSET(2) char aCoArch2DL[] = "__OTR__ast_corneria/aCoArch2DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13860[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13860";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13A40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13A40";
+
+static const ALIGN_ASSET(2) char aCoRockwallDL[] = "__OTR__ast_corneria/aCoRockwallDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_13BA0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_13BA0";
+
+static const ALIGN_ASSET(2) char D_CO_6013BE0[] = "__OTR__ast_corneria/D_CO_6013BE0";
+
+static const ALIGN_ASSET(2) char aCoHighway8DL[] = "__OTR__ast_corneria/aCoHighway8DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14450[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14450";
+
+static const ALIGN_ASSET(2) char aCoHighway4DL[] = "__OTR__ast_corneria/aCoHighway4DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14568[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14568";
+
+static const ALIGN_ASSET(2) char aCoHighway6DL[] = "__OTR__ast_corneria/aCoHighway6DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_147D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_147D8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14958[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14958";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14998[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14998";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_149D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_149D8";
+
+static const ALIGN_ASSET(2) char aCoHighway9DL[] = "__OTR__ast_corneria/aCoHighway9DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14A90[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14A90";
+
+static const ALIGN_ASSET(2) char aCoBuilding3DL[] = "__OTR__ast_corneria/aCoBuilding3DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14D68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14D68";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14E28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14E28";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14E68[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14E68";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14F48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14F48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_14FC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_14FC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_150A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_150A8";
+
+static const ALIGN_ASSET(2) char D_CO_60151A8[] = "__OTR__ast_corneria/D_CO_60151A8";
+
+static const ALIGN_ASSET(2) char aCoTowerDL[] = "__OTR__ast_corneria/aCoTowerDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_15480[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_15480";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_15600[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_15600";
+
+static const ALIGN_ASSET(2) char D_CO_6015700[] = "__OTR__ast_corneria/D_CO_6015700";
+
+static const ALIGN_ASSET(2) char aCoStoneArchDL[] = "__OTR__ast_corneria/aCoStoneArchDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_15FC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_15FC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_161C8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_161C8";
+
+static const ALIGN_ASSET(2) char aRadarDL[] = "__OTR__ast_corneria/aRadarDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16350[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16350";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_163F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_163F0";
+
+static const ALIGN_ASSET(2) char aCoHighway3DL[] = "__OTR__ast_corneria/aCoHighway3DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16540[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16540";
+
+static const ALIGN_ASSET(2) char aCoBuilding4DL[] = "__OTR__ast_corneria/aCoBuilding4DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16660[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16660";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16720[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16720";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_168D0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_168D0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16AC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16AC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16B88[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16B88";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16D08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16D08";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16F08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16F08";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_16F98[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_16F98";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_170E0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_170E0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17290[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17290";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17480[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17480";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17540[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17540";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17580[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17580";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_175C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_175C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_176C0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_176C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17908[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17908";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17948[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17948";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17B48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17B48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17BA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17BA8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17CA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17CA8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_17DA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_17DA8";
+
+static const ALIGN_ASSET(2) char D_CO_6017F10[] = "__OTR__ast_corneria/D_CO_6017F10";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_180F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_180F8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18158[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18158";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_182B8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_182B8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_183F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_183F8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_185F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_185F8";
+
+static const ALIGN_ASSET(2) char D_CO_60186E0[] = "__OTR__ast_corneria/D_CO_60186E0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_188D0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_188D0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18930[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18930";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18A80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18A80";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18BE0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18BE0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_18DE0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_18DE0";
+
+static const ALIGN_ASSET(2) char aCoBuilding7DL[] = "__OTR__ast_corneria/aCoBuilding7DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19008[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19008";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19088[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19088";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_190E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_190E8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19168[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19168";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19198[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19198";
+
+static const ALIGN_ASSET(2) char D_CO_60191C8[] = "__OTR__ast_corneria/D_CO_60191C8";
+
+static const ALIGN_ASSET(2) char D_CO_60199D0[] = "__OTR__ast_corneria/D_CO_60199D0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19A90[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19A90";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_19B60[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_19B60";
+
+static const ALIGN_ASSET(2) char D_CO_6019C60[] = "__OTR__ast_corneria/D_CO_6019C60";
+
+static const ALIGN_ASSET(2) char D_CO_6019E60[] = "__OTR__ast_corneria/D_CO_6019E60";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_1A660[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_1A660";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1A710[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1A710";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1A790[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1A790";
+
+static const ALIGN_ASSET(2) char aCoBuilding2DL[] = "__OTR__ast_corneria/aCoBuilding2DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1A920[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1A920";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1AB10[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1AB10";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1AB50[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1AB50";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1ABD0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1ABD0";
+
+static const ALIGN_ASSET(2) char D_CO_601AD60[] = "__OTR__ast_corneria/D_CO_601AD60";
+
+static const ALIGN_ASSET(2) char aCoBuilding5DL[] = "__OTR__ast_corneria/aCoBuilding5DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1B5B8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1B5B8";
+
+static const ALIGN_ASSET(2) char D_CO_601B640[] = "__OTR__ast_corneria/D_CO_601B640";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1B660[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1B660";
+
+static const ALIGN_ASSET(2) char D_CO_601B6C0[] = "__OTR__ast_corneria/D_CO_601B6C0";
+
+static const ALIGN_ASSET(2) char aCoBump2DL[] = "__OTR__ast_corneria/aCoBump2DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1BF78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1BF78";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1C178[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1C178";
+
+static const ALIGN_ASSET(2) char D_CO_601C1A8[] = "__OTR__ast_corneria/D_CO_601C1A8";
+
+static const ALIGN_ASSET(2) char aCoTreeDL[] = "__OTR__ast_corneria/aCoTreeDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1CA40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1CA40";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1CA70[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1CA70";
+
+static const ALIGN_ASSET(2) char D_CO_601CAA0[] = "__OTR__ast_corneria/D_CO_601CAA0";
+
+static const ALIGN_ASSET(2) char D_CO_601DAA0[] = "__OTR__ast_corneria/D_CO_601DAA0";
+
+static const ALIGN_ASSET(2) char D_CO_601EAA0[] = "__OTR__ast_corneria/D_CO_601EAA0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1EB70[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1EB70";
+
+static const ALIGN_ASSET(2) char D_CO_601ED00[] = "__OTR__ast_corneria/D_CO_601ED00";
+
+static const ALIGN_ASSET(2) char aCoRuin2DL[] = "__OTR__ast_corneria/aCoRuin2DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F558[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F558";
+
+static const ALIGN_ASSET(2) char aCoArch1DL[] = "__OTR__ast_corneria/aCoArch1DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F740[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F740";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F780[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F780";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F800[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F800";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F880[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F880";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1F900[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1F900";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_1F980[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_1F980";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FAE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FAE8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FCE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FCE8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FDD8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FDD8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_1FF18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_1FF18";
+
+static const ALIGN_ASSET(2) char D_CO_601FF58[] = "__OTR__ast_corneria/D_CO_601FF58";
+
+static const ALIGN_ASSET(2) char D_CO_6020760[] = "__OTR__ast_corneria/D_CO_6020760";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_20810[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_20810";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_209F0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_209F0";
+
+static const ALIGN_ASSET(2) char aCoRadarDL[] = "__OTR__ast_corneria/aCoRadarDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_20CB8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_20CB8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_20E18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_20E18";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21008[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21008";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_210C8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_210C8";
+
+static const ALIGN_ASSET(2) char D_CO_6021188[] = "__OTR__ast_corneria/D_CO_6021188";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_21390[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_21390";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_216D0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_216D0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_218B0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_218B0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21A20[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21A20";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21AA0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21AA0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21B20[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21B20";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21CC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21CC0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21D80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21D80";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_21F80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_21F80";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22000[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22000";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22090[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22090";
+
+static const ALIGN_ASSET(2) char D_CO_60220D0[] = "__OTR__ast_corneria/D_CO_60220D0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_228D0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_228D0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22980[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22980";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22AC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22AC0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_22B00[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_22B00";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22BF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22BF8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22C78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22C78";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22CF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22CF8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_22D40[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_22D40";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22E38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22E38";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22EB8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22EB8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_22F38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_22F38";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_22F80[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_22F80";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23120[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23120";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23160[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23160";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23320[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23320";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_23420[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_23420";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23610[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23610";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_237C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_237C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_238C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_238C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23A40[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23A40";
+
+static const ALIGN_ASSET(2) char aCoIBeamDL[] = "__OTR__ast_corneria/aCoIBeamDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23BA8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23BA8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_23D28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_23D28";
+
+static const ALIGN_ASSET(2) char D_CO_6023DE8[] = "__OTR__ast_corneria/D_CO_6023DE8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_23FF0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_23FF0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_240A0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_240A0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24120[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24120";
+
+static const ALIGN_ASSET(2) char D_CO_6024160[] = "__OTR__ast_corneria/D_CO_6024160";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24230[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24230";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24420[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24420";
+
+static const ALIGN_ASSET(2) char aCoBump4DL[] = "__OTR__ast_corneria/aCoBump4DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_24528[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_24528";
+
+static const ALIGN_ASSET(2) char D_CO_60245E0[] = "__OTR__ast_corneria/D_CO_60245E0";
+
+static const ALIGN_ASSET(2) char D_CO_6025500[] = "__OTR__ast_corneria/D_CO_6025500";
+
+static const ALIGN_ASSET(2) char D_CO_6026420[] = "__OTR__ast_corneria/D_CO_6026420";
+
+static const ALIGN_ASSET(2) char D_CO_6027340[] = "__OTR__ast_corneria/D_CO_6027340";
+
+static const ALIGN_ASSET(2) char D_CO_6028260[] = "__OTR__ast_corneria/D_CO_6028260";
+
+static const ALIGN_ASSET(2) char D_CO_6028A60[] = "__OTR__ast_corneria/D_CO_6028A60";
+
+static const ALIGN_ASSET(2) char aCoSkibotAnim[] = "__OTR__ast_corneria/aCoSkibotAnim";
+
+static const ALIGN_ASSET(2) char aCoSkibotSkel[] = "__OTR__ast_corneria/aCoSkibotSkel";
+
+static const ALIGN_ASSET(2) char aCoGaruda1Anim[] = "__OTR__ast_corneria/aCoGaruda1Anim";
+
+static const ALIGN_ASSET(2) char aCoGarudaSkel[] = "__OTR__ast_corneria/aCoGarudaSkel";
+
+static const ALIGN_ASSET(2) char aCoGaruda3Anim[] = "__OTR__ast_corneria/aCoGaruda3Anim";
+
+static const ALIGN_ASSET(2) char D_CO_602AA04[] = "__OTR__ast_corneria/D_CO_602AA04";
+
+static const ALIGN_ASSET(2) char aCoDoorsAnim[] = "__OTR__ast_corneria/aCoDoorsAnim";
+
+static const ALIGN_ASSET(2) char aCoDoorsSkel[] = "__OTR__ast_corneria/aCoDoorsSkel";
+
+static const ALIGN_ASSET(2) char aCoGrangaWalkingAnim[] = "__OTR__ast_corneria/aCoGrangaWalkingAnim";
+
+static const ALIGN_ASSET(2) char aCoGrangaSkel[] = "__OTR__ast_corneria/aCoGrangaSkel";
+
+static const ALIGN_ASSET(2) char aCoGrangaStationaryAnim[] = "__OTR__ast_corneria/aCoGrangaStationaryAnim";
+
+static const ALIGN_ASSET(2) char D_CO_602D31C[] = "__OTR__ast_corneria/D_CO_602D31C";
+
+static const ALIGN_ASSET(2) char aCoCarrierAnim[] = "__OTR__ast_corneria/aCoCarrierAnim";
+
+static const ALIGN_ASSET(2) char aCoCarrierSkel[] = "__OTR__ast_corneria/aCoCarrierSkel";
+
+static const ALIGN_ASSET(2) char aCoBuilding1DL[] = "__OTR__ast_corneria/aCoBuilding1DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D768[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D768";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D7E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D7E8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D8A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D8A8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2D9A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2D9A8";
+
+static const ALIGN_ASSET(2) char aCoBuilding9DL[] = "__OTR__ast_corneria/aCoBuilding9DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DB18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DB18";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DC18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DC18";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DC58[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DC58";
+
+static const ALIGN_ASSET(2) char aCoRuin1DL[] = "__OTR__ast_corneria/aCoRuin1DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DCF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DCF8";
+
+static const ALIGN_ASSET(2) char D_CO_602DD40[] = "__OTR__ast_corneria/D_CO_602DD40";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DE08[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DE08";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2DFF8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2DFF8";
+
+static const ALIGN_ASSET(2) char aCoHighway2DL[] = "__OTR__ast_corneria/aCoHighway2DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E1C8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E1C8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E248[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E248";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E438[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E438";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E468[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E468";
+
+static const ALIGN_ASSET(2) char aCoBump5DL[] = "__OTR__ast_corneria/aCoBump5DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E5F8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E5F8";
+
+static const ALIGN_ASSET(2) char aCoBump3DL[] = "__OTR__ast_corneria/aCoBump3DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2E828[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2E828";
+
+static const ALIGN_ASSET(2) char aCoBump1DL[] = "__OTR__ast_corneria/aCoBump1DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2EA78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2EA78";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2EC78[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2EC78";
+
+static const ALIGN_ASSET(2) char D_CO_602ECB0[] = "__OTR__ast_corneria/D_CO_602ECB0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2ED10[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2ED10";
+
+static const ALIGN_ASSET(2) char D_CO_602ED50[] = "__OTR__ast_corneria/D_CO_602ED50";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2EE50[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2EE50";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2EEC8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2EEC8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2F010[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2F010";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F0A8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F0A8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F298[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F298";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2F300[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2F300";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F378[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F378";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_2F4C0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_2F4C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F558[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F558";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F758[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F758";
+
+static const ALIGN_ASSET(2) char aCoPoleDL[] = "__OTR__ast_corneria/aCoPoleDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_2F818[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_2F818";
+
+static const ALIGN_ASSET(2) char D_CO_602F848[] = "__OTR__ast_corneria/D_CO_602F848";
+
+static const ALIGN_ASSET(2) char D_CO_6030850[] = "__OTR__ast_corneria/D_CO_6030850";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_309E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_309E8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_30B28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_30B28";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_30BE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_30BE8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_30DD8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_30DD8";
+
+static const ALIGN_ASSET(2) char D_CO_6030FD0[] = "__OTR__ast_corneria/D_CO_6030FD0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31040[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31040";
+
+static const ALIGN_ASSET(2) char D_CO_6031130[] = "__OTR__ast_corneria/D_CO_6031130";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_311A0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_311A0";
+
+static const ALIGN_ASSET(2) char D_CO_6031280[] = "__OTR__ast_corneria/D_CO_6031280";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31420[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31420";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31560[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31560";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31620[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31620";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31820[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31820";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_319C0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_319C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31B30[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31B30";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31CC0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31CC0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31D00[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31D00";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_31E80[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_31E80";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_31ED0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_31ED0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32150[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32150";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32350[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32350";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_323C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_323C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_324C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_324C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_325B0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_325B0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_326C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_326C0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_328C0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_328C0";
+
+static const ALIGN_ASSET(2) char aCoGarudaTracksTex[] = "__OTR__ast_corneria/aCoGarudaTracksTex";
+
+static const ALIGN_ASSET(2) char CoMoleMissileDL[] = "__OTR__ast_corneria/CoMoleMissileDL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32CE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32CE8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32E38[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32E38";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_32F18[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_32F18";
+
+static const ALIGN_ASSET(2) char D_CO_6033000[] = "__OTR__ast_corneria/D_CO_6033000";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33058[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33058";
+
+static const ALIGN_ASSET(2) char D_CO_6033088[] = "__OTR__ast_corneria/D_CO_6033088";
+
+static const ALIGN_ASSET(2) char D_CO_6033290[] = "__OTR__ast_corneria/D_CO_6033290";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33350[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33350";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33440[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33440";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_33540[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_33540";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_336D8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_336D8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33848[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33848";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33998[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33998";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33A98[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33A98";
+
+static const ALIGN_ASSET(2) char D_CO_6033AF0[] = "__OTR__ast_corneria/D_CO_6033AF0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33BB0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33BB0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33CB0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33CB0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_gfx_33DB0[] = "__OTR__ast_corneria/ast_corneria_seg6_gfx_33DB0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_33F48[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_33F48";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_340E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_340E8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_34248[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_34248";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_34338[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_34338";
+
+static const ALIGN_ASSET(2) char D_CO_6034388[] = "__OTR__ast_corneria/D_CO_6034388";
+
+static const ALIGN_ASSET(2) char aCoShadow1DL[] = "__OTR__ast_corneria/aCoShadow1DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_34BE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_34BE8";
+
+static const ALIGN_ASSET(2) char D_CO_6034C28[] = "__OTR__ast_corneria/D_CO_6034C28";
+
+static const ALIGN_ASSET(2) char D_CO_6035430[] = "__OTR__ast_corneria/D_CO_6035430";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35490[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35490";
+
+static const ALIGN_ASSET(2) char D_CO_60354F0[] = "__OTR__ast_corneria/D_CO_60354F0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35550[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35550";
+
+static const ALIGN_ASSET(2) char D_CO_60355A0[] = "__OTR__ast_corneria/D_CO_60355A0";
+
+static const ALIGN_ASSET(2) char aCoBuilding10DL[] = "__OTR__ast_corneria/aCoBuilding10DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35E50[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35E50";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35ED0[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35ED0";
+
+static const ALIGN_ASSET(2) char aCoBuilding8DL[] = "__OTR__ast_corneria/aCoBuilding8DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_35FE8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_35FE8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_360E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_360E8";
+
+static const ALIGN_ASSET(2) char aCoBuilding6DL[] = "__OTR__ast_corneria/aCoBuilding6DL";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_362E8[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_362E8";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36328[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36328";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36368[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36368";
+
+static const ALIGN_ASSET(2) char D_CO_60363B0[] = "__OTR__ast_corneria/D_CO_60363B0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36408[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36408";
+
+static const ALIGN_ASSET(2) char D_CO_6036438[] = "__OTR__ast_corneria/D_CO_6036438";
+
+static const ALIGN_ASSET(2) char D_CO_6036840[] = "__OTR__ast_corneria/D_CO_6036840";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36898[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36898";
+
+static const ALIGN_ASSET(2) char D_CO_60368C8[] = "__OTR__ast_corneria/D_CO_60368C8";
+
+static const ALIGN_ASSET(2) char D_CO_6036CD0[] = "__OTR__ast_corneria/D_CO_6036CD0";
+
+static const ALIGN_ASSET(2) char ast_corneria_seg6_vtx_36D28[] = "__OTR__ast_corneria/ast_corneria_seg6_vtx_36D28";
+
+static const ALIGN_ASSET(2) char D_CO_6036D58[] = "__OTR__ast_corneria/D_CO_6036D58";
+
+static const ALIGN_ASSET(2) char D_CO_6037160[] = "__OTR__ast_corneria/D_CO_6037160";
+
+static const ALIGN_ASSET(2) char aCoOnRailsLevelObjects[] = "__OTR__ast_corneria/aCoOnRailsLevelObjects";
+
+static const ALIGN_ASSET(2) char aCoAllRangeLevelObjects[] = "__OTR__ast_corneria/aCoAllRangeLevelObjects";
+
+static const char D_CO_603D9E8[] = "__OTR__ast_corneria/D_CO_603D9E8";
+
+static const ALIGN_ASSET(2) char D_CO_603DC40[] = "__OTR__ast_corneria/D_CO_603DC40";
+
+static const ALIGN_ASSET(2) char aCoHighway1Hitbox[] = "__OTR__ast_corneria/aCoHighway1Hitbox";
+
+static const ALIGN_ASSET(2) char aCoHighway2Hitbox[] = "__OTR__ast_corneria/aCoHighway2Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding1Hitbox[] = "__OTR__ast_corneria/aCoBuilding1Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding2Hitbox[] = "__OTR__ast_corneria/aCoBuilding2Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding3Hitbox[] = "__OTR__ast_corneria/aCoBuilding3Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding4Hitbox[] = "__OTR__ast_corneria/aCoBuilding4Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding5Hitbox[] = "__OTR__ast_corneria/aCoBuilding5Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding6Hitbox[] = "__OTR__ast_corneria/aCoBuilding6Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding7Hitbox[] = "__OTR__ast_corneria/aCoBuilding7Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding8Hitbox[] = "__OTR__ast_corneria/aCoBuilding8Hitbox";
+
+static const ALIGN_ASSET(2) char aCoWaterfallHitbox[] = "__OTR__ast_corneria/aCoWaterfallHitbox";
+
+static const ALIGN_ASSET(2) char aCoTowerHitbox[] = "__OTR__ast_corneria/aCoTowerHitbox";
+
+static const ALIGN_ASSET(2) char aCoArch1Hitbox[] = "__OTR__ast_corneria/aCoArch1Hitbox";
+
+static const ALIGN_ASSET(2) char aCoArch2Hitbox[] = "__OTR__ast_corneria/aCoArch2Hitbox";
+
+static const ALIGN_ASSET(2) char aCoArch3Hitbox[] = "__OTR__ast_corneria/aCoArch3Hitbox";
+
+static const ALIGN_ASSET(2) char D_CO_603E2C0[] = "__OTR__ast_corneria/D_CO_603E2C0";
+
+static const ALIGN_ASSET(2) char D_CO_603E2F4[] = "__OTR__ast_corneria/D_CO_603E2F4";
+
+static const ALIGN_ASSET(2) char aCoStoneArchHitbox[] = "__OTR__ast_corneria/aCoStoneArchHitbox";
+
+static const ALIGN_ASSET(2) char aCoPoleHitbox[] = "__OTR__ast_corneria/aCoPoleHitbox";
+
+static const ALIGN_ASSET(2) char aCoTreeHitbox[] = "__OTR__ast_corneria/aCoTreeHitbox";
+
+static const ALIGN_ASSET(2) char aCoRadarHitbox[] = "__OTR__ast_corneria/aCoRadarHitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding9Hitbox[] = "__OTR__ast_corneria/aCoBuilding9Hitbox";
+
+static const ALIGN_ASSET(2) char aCoBuilding10Hitbox[] = "__OTR__ast_corneria/aCoBuilding10Hitbox";
+
+static const ALIGN_ASSET(2) char aCoIBeamHitbox[] = "__OTR__ast_corneria/aCoIBeamHitbox";
+
+static const ALIGN_ASSET(2) char aCoActorSkibotHitbox[] = "__OTR__ast_corneria/aCoActorSkibotHitbox";
+
+static const ALIGN_ASSET(2) char aCoActorRadarHitbox[] = "__OTR__ast_corneria/aCoActorRadarHitbox";
+
+static const ALIGN_ASSET(2) char aCoMoleMissileHitbox[] = "__OTR__ast_corneria/aCoMoleMissileHitbox";
+
+static const ALIGN_ASSET(2) char CoGarudaHitbox[] = "__OTR__ast_corneria/CoGarudaHitbox";
+
+static const ALIGN_ASSET(2) char aCoGarudaDestroyHitbox[] = "__OTR__ast_corneria/aCoGarudaDestroyHitbox";
+
+static const ALIGN_ASSET(2) char aCoGrangaHitbox[] = "__OTR__ast_corneria/aCoGrangaHitbox";
+
+static const ALIGN_ASSET(2) char aCoCarrierLeftHitbox[] = "__OTR__ast_corneria/aCoCarrierLeftHitbox";
+
+static const ALIGN_ASSET(2) char aCoCarrierUpperHitbox[] = "__OTR__ast_corneria/aCoCarrierUpperHitbox";
+
+static const ALIGN_ASSET(2) char aCoCarrierBottomHitbox[] = "__OTR__ast_corneria/aCoCarrierBottomHitbox";
+
+static const ALIGN_ASSET(2) char aCoCarrierHitbox[] = "__OTR__ast_corneria/aCoCarrierHitbox";
+
+static const ALIGN_ASSET(2) char aCoRockwallHitbox[] = "__OTR__ast_corneria/aCoRockwallHitbox";
+
+static const ALIGN_ASSET(2) char aCoDoorsHitbox[] = "__OTR__ast_corneria/aCoDoorsHitbox";
+
+static const ALIGN_ASSET(2) char D_CO_603E924[] = "__OTR__ast_corneria/D_CO_603E924";
+
+static const ALIGN_ASSET(2) char aCoBuildingOnFireHitbox[] = "__OTR__ast_corneria/aCoBuildingOnFireHitbox";
+
+static const ALIGN_ASSET(2) char aCoHighway5Hitbox[] = "__OTR__ast_corneria/aCoHighway5Hitbox";
+
+static const ALIGN_ASSET(2) char aCoHighway6Hitbox[] = "__OTR__ast_corneria/aCoHighway6Hitbox";
+
+static const ALIGN_ASSET(2) char aCoHighway7Hitbox[] = "__OTR__ast_corneria/aCoHighway7Hitbox";
+
+static const ALIGN_ASSET(2) char aCoHighway8Hitbox[] = "__OTR__ast_corneria/aCoHighway8Hitbox";
+
+static const ALIGN_ASSET(2) char aCoHighway9Hitbox[] = "__OTR__ast_corneria/aCoHighway9Hitbox";
+
+static const ALIGN_ASSET(2) char D_CO_603EB38[] = "__OTR__ast_corneria/D_CO_603EB38";
+
+static const ALIGN_ASSET(2) char D_CO_603F338[] = "__OTR__ast_corneria/D_CO_603F338";
+
+static const ALIGN_ASSET(2) char D_CO_603F388[] = "__OTR__ast_corneria/D_CO_603F388";
+
+static const ALIGN_ASSET(2) char D_CO_603F40C[] = "__OTR__ast_corneria/D_CO_603F40C";
+
+static const ALIGN_ASSET(2) char D_CO_603F4E4[] = "__OTR__ast_corneria/D_CO_603F4E4";
+
diff --git a/include/assets/ast_ending.h b/include/assets/ast_ending.h
new file mode 100644
index 00000000..56255e51
--- /dev/null
+++ b/include/assets/ast_ending.h
@@ -0,0 +1,241 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_END_7000000[] = "__OTR__ast_ending/D_END_7000000";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_98[] = "__OTR__ast_ending/ast_ending_seg7_vtx_98";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_D8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_D8";
+
+static const ALIGN_ASSET(2) char D_END_7000118[] = "__OTR__ast_ending/D_END_7000118";
+
+static const ALIGN_ASSET(2) char D_END_7001118[] = "__OTR__ast_ending/D_END_7001118";
+
+static const ALIGN_ASSET(2) char D_END_7002120[] = "__OTR__ast_ending/D_END_7002120";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_21B8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_21B8";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_21F8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_21F8";
+
+static const ALIGN_ASSET(2) char D_END_7002238[] = "__OTR__ast_ending/D_END_7002238";
+
+static const ALIGN_ASSET(2) char D_END_7003238[] = "__OTR__ast_ending/D_END_7003238";
+
+static const ALIGN_ASSET(2) char D_END_7004240[] = "__OTR__ast_ending/D_END_7004240";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4420[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4420";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4460[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4460";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_44A0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_44A0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_44E0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_44E0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4520[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4520";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_4560[] = "__OTR__ast_ending/ast_ending_seg7_vtx_4560";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_45A0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_45A0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_45E0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_45E0";
+
+static const ALIGN_ASSET(2) char D_END_7004620[] = "__OTR__ast_ending/D_END_7004620";
+
+static const ALIGN_ASSET(2) char D_END_7005620[] = "__OTR__ast_ending/D_END_7005620";
+
+static const ALIGN_ASSET(2) char D_END_7006620[] = "__OTR__ast_ending/D_END_7006620";
+
+static const ALIGN_ASSET(2) char D_END_7007620[] = "__OTR__ast_ending/D_END_7007620";
+
+static const ALIGN_ASSET(2) char D_END_7008620[] = "__OTR__ast_ending/D_END_7008620";
+
+static const ALIGN_ASSET(2) char D_END_7009620[] = "__OTR__ast_ending/D_END_7009620";
+
+static const ALIGN_ASSET(2) char D_END_700A620[] = "__OTR__ast_ending/D_END_700A620";
+
+static const ALIGN_ASSET(2) char D_END_700B620[] = "__OTR__ast_ending/D_END_700B620";
+
+static const ALIGN_ASSET(2) char D_END_700C620[] = "__OTR__ast_ending/D_END_700C620";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_C678[] = "__OTR__ast_ending/ast_ending_seg7_vtx_C678";
+
+static const ALIGN_ASSET(2) char D_END_700C6A8[] = "__OTR__ast_ending/D_END_700C6A8";
+
+static const ALIGN_ASSET(2) char D_END_700C8B0[] = "__OTR__ast_ending/D_END_700C8B0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_C900[] = "__OTR__ast_ending/ast_ending_seg7_vtx_C900";
+
+static const ALIGN_ASSET(2) char D_END_700C940[] = "__OTR__ast_ending/D_END_700C940";
+
+static const ALIGN_ASSET(2) char D_END_700D940[] = "__OTR__ast_ending/D_END_700D940";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_D998[] = "__OTR__ast_ending/ast_ending_seg7_vtx_D998";
+
+static const ALIGN_ASSET(2) char D_END_700D9D8[] = "__OTR__ast_ending/D_END_700D9D8";
+
+static const ALIGN_ASSET(2) char D_END_700E9E0[] = "__OTR__ast_ending/D_END_700E9E0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_E9F8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_E9F8";
+
+static const ALIGN_ASSET(2) char D_END_700EA38[] = "__OTR__ast_ending/D_END_700EA38";
+
+static const ALIGN_ASSET(2) char D_END_700F240[] = "__OTR__ast_ending/D_END_700F240";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F298[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F298";
+
+static const ALIGN_ASSET(2) char D_END_700F320[] = "__OTR__ast_ending/D_END_700F320";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F580[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F580";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F780[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F780";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_F880[] = "__OTR__ast_ending/ast_ending_seg7_vtx_F880";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FA60[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FA60";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FC50[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FC50";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FD10[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FD10";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_FEF0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_FEF0";
+
+static const ALIGN_ASSET(2) char D_END_7010070[] = "__OTR__ast_ending/D_END_7010070";
+
+static const ALIGN_ASSET(2) char D_END_70100F0[] = "__OTR__ast_ending/D_END_70100F0";
+
+static const ALIGN_ASSET(2) char D_END_7010170[] = "__OTR__ast_ending/D_END_7010170";
+
+static const ALIGN_ASSET(2) char D_END_7010970[] = "__OTR__ast_ending/D_END_7010970";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_109C8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_109C8";
+
+static const ALIGN_ASSET(2) char D_END_7010A08[] = "__OTR__ast_ending/D_END_7010A08";
+
+static const ALIGN_ASSET(2) char D_END_7010E10[] = "__OTR__ast_ending/D_END_7010E10";
+
+static const ALIGN_ASSET(2) char D_END_7010EE0[] = "__OTR__ast_ending/D_END_7010EE0";
+
+static const ALIGN_ASSET(2) char D_END_7010F00[] = "__OTR__ast_ending/D_END_7010F00";
+
+static const ALIGN_ASSET(2) char D_END_7010FD0[] = "__OTR__ast_ending/D_END_7010FD0";
+
+static const ALIGN_ASSET(2) char D_END_7010FF0[] = "__OTR__ast_ending/D_END_7010FF0";
+
+static const ALIGN_ASSET(2) char D_END_70110C0[] = "__OTR__ast_ending/D_END_70110C0";
+
+static const ALIGN_ASSET(2) char D_END_70110E0[] = "__OTR__ast_ending/D_END_70110E0";
+
+static const ALIGN_ASSET(2) char D_END_70111B0[] = "__OTR__ast_ending/D_END_70111B0";
+
+static const ALIGN_ASSET(2) char D_END_70111D0[] = "__OTR__ast_ending/D_END_70111D0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_112D8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_112D8";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_11338[] = "__OTR__ast_ending/ast_ending_seg7_vtx_11338";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_11378[] = "__OTR__ast_ending/ast_ending_seg7_vtx_11378";
+
+static const ALIGN_ASSET(2) char D_END_70113B8[] = "__OTR__ast_ending/D_END_70113B8";
+
+static const ALIGN_ASSET(2) char D_END_70123B8[] = "__OTR__ast_ending/D_END_70123B8";
+
+static const ALIGN_ASSET(2) char D_END_70133B8[] = "__OTR__ast_ending/D_END_70133B8";
+
+static const ALIGN_ASSET(2) char D_END_70143C0[] = "__OTR__ast_ending/D_END_70143C0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_14470[] = "__OTR__ast_ending/ast_ending_seg7_vtx_14470";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_144B0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_144B0";
+
+static const ALIGN_ASSET(2) char D_END_7014540[] = "__OTR__ast_ending/D_END_7014540";
+
+static const ALIGN_ASSET(2) char D_END_7015540[] = "__OTR__ast_ending/D_END_7015540";
+
+static const ALIGN_ASSET(2) char D_END_7016540[] = "__OTR__ast_ending/D_END_7016540";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_165D8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_165D8";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_16618[] = "__OTR__ast_ending/ast_ending_seg7_vtx_16618";
+
+static const ALIGN_ASSET(2) char D_END_7016658[] = "__OTR__ast_ending/D_END_7016658";
+
+static const ALIGN_ASSET(2) char D_END_7017658[] = "__OTR__ast_ending/D_END_7017658";
+
+static const ALIGN_ASSET(2) char D_END_7018708[] = "__OTR__ast_ending/D_END_7018708";
+
+static const ALIGN_ASSET(2) char D_END_70187B4[] = "__OTR__ast_ending/D_END_70187B4";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_gfx_187D0[] = "__OTR__ast_ending/ast_ending_seg7_gfx_187D0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18D10[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18D10";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18EF0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18EF0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18F30[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18F30";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_18FD0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_18FD0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_191D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_191D0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_193D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_193D0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_195D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_195D0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_197D0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_197D0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_19940[] = "__OTR__ast_ending/ast_ending_seg7_vtx_19940";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_19AE0[] = "__OTR__ast_ending/ast_ending_seg7_vtx_19AE0";
+
+static const ALIGN_ASSET(2) char D_END_7019C90[] = "__OTR__ast_ending/D_END_7019C90";
+
+static const ALIGN_ASSET(2) char D_END_7019D10[] = "__OTR__ast_ending/D_END_7019D10";
+
+static const ALIGN_ASSET(2) char D_END_7019D90[] = "__OTR__ast_ending/D_END_7019D90";
+
+static const ALIGN_ASSET(2) char D_END_7019E10[] = "__OTR__ast_ending/D_END_7019E10";
+
+static const ALIGN_ASSET(2) char D_END_7019E90[] = "__OTR__ast_ending/D_END_7019E90";
+
+static const ALIGN_ASSET(2) char D_END_7019F10[] = "__OTR__ast_ending/D_END_7019F10";
+
+static const ALIGN_ASSET(2) char D_END_7019F90[] = "__OTR__ast_ending/D_END_7019F90";
+
+static const ALIGN_ASSET(2) char D_END_701A010[] = "__OTR__ast_ending/D_END_701A010";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_gfx_1A090[] = "__OTR__ast_ending/ast_ending_seg7_gfx_1A090";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1A698[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1A698";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1A878[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1A878";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1AA68[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1AA68";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1AC48[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1AC48";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1ADF8[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1ADF8";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1AF38[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1AF38";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B138[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B138";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B338[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B338";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B418[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B418";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B508[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B508";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B708[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B708";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1B908[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1B908";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1BA38[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1BA38";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_gfx_1BAB0[] = "__OTR__ast_ending/ast_ending_seg7_gfx_1BAB0";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1BC00[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1BC00";
+
+static const ALIGN_ASSET(2) char ast_ending_seg7_vtx_1BD40[] = "__OTR__ast_ending/ast_ending_seg7_vtx_1BD40";
+
diff --git a/include/assets/ast_ending_award_back.h b/include/assets/ast_ending_award_back.h
new file mode 100644
index 00000000..ac80b11d
--- /dev/null
+++ b/include/assets/ast_ending_award_back.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char gEndingAwardBack[] = "__OTR__ast_ending_award_back/ending_award_back";
+
diff --git a/include/assets/ast_ending_award_front.h b/include/assets/ast_ending_award_front.h
new file mode 100644
index 00000000..1227ebe3
--- /dev/null
+++ b/include/assets/ast_ending_award_front.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char gEndingAwardFront[] = "__OTR__ast_ending_award_front/ending_award_front";
+
diff --git a/include/assets/ast_ending_expert.h b/include/assets/ast_ending_expert.h
new file mode 100644
index 00000000..ca4abb5d
--- /dev/null
+++ b/include/assets/ast_ending_expert.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char gEndingExpertReward[] = "__OTR__ast_ending_expert/ending_expert_reward";
+
+static const ALIGN_ASSET(2) char gEndingNormalReward[] = "__OTR__ast_ending_expert/ending_normal_reward";
+
diff --git a/include/assets/ast_enmy_planet.h b/include/assets/ast_enmy_planet.h
new file mode 100644
index 00000000..ae737466
--- /dev/null
+++ b/include/assets/ast_enmy_planet.h
@@ -0,0 +1,205 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aTripodAnim[] = "__OTR__ast_enmy_planet/aTripodAnim";
+
+static const ALIGN_ASSET(2) char aTripodSkel[] = "__OTR__ast_enmy_planet/aTripodSkel";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4000290[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4000290";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_338[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_338";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_398[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_398";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_4F0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_4F0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5A0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5A0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_630[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_630";
+
+static const ALIGN_ASSET(2) char aVenomTankDL[] = "__OTR__ast_enmy_planet/aVenomTankDL";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8F8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8F8";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4000E98[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4000E98";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001098[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001098";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001298[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001298";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001498[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001498";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4001698[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4001698";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_40018A0[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40018A0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1B78[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1B78";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1BC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1BC8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1C58[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1C58";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_1E48[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_1E48";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2028[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2028";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2158[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2158";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2358[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2358";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_23F8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_23F8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_2458[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_2458";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_40024B8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40024B8";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4002538[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4002538";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4002D38[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4002D38";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4003D38[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4003D38";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4004538[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4004538";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4004D38[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4004D38";
+
+static const ALIGN_ASSET(2) char aFirebirdAnim[] = "__OTR__ast_enmy_planet/aFirebirdAnim";
+
+static const ALIGN_ASSET(2) char aFirebirdSkel[] = "__OTR__ast_enmy_planet/aFirebirdSkel";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_58E0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_58E0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5A28[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5A28";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5AE8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5AE8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5C28[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5C28";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_5D78[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_5D78";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4005E78[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4005E78";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4006078[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4006078";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4006280[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4006280";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6328[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6328";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6388[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6388";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_40064E8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40064E8";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_40066E8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_40066E8";
+
+static const ALIGN_ASSET(2) char aVenomFighter1DL[] = "__OTR__ast_enmy_planet/aVenomFighter1DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6AC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6AC8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6B88[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6B88";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6C88[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6C88";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6CC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6CC8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6DA8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6DA8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_6DE8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_6DE8";
+
+static const ALIGN_ASSET(2) char aVenomFighter2DL[] = "__OTR__ast_enmy_planet/aVenomFighter2DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7050[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7050";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_70B0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_70B0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7200[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7200";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7250[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7250";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_72B0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_72B0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7370[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7370";
+
+static const ALIGN_ASSET(2) char aGrangaFighter1DL[] = "__OTR__ast_enmy_planet/aGrangaFighter1DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_75A0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_75A0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7650[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7650";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_77D0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_77D0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7810[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7810";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_78B0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_78B0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_79F0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_79F0";
+
+static const ALIGN_ASSET(2) char aGrangaFighter2DL[] = "__OTR__ast_enmy_planet/aGrangaFighter2DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7CA0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7CA0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7DE0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7DE0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7EA0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7EA0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_7EF0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_7EF0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_80C0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_80C0";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008100[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008100";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8300[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8300";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8428[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8428";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8468[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8468";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_84E8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_84E8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_86E8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_86E8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8830[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8830";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8898[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8898";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8970[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8970";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_89D8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_89D8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_gfx_8A90[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_gfx_8A90";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8B40[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8B40";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8BD0[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8BD0";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008CE0[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008CE0";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8D38[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8D38";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008D68[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008D68";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008F70[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008F70";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_8FC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_8FC8";
+
+static const ALIGN_ASSET(2) char D_ENMY_PLANET_4008FF8[] = "__OTR__ast_enmy_planet/D_ENMY_PLANET_4008FF8";
+
+static const ALIGN_ASSET(2) char aSpyEyeDL[] = "__OTR__ast_enmy_planet/aSpyEyeDL";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9A58[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9A58";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9B58[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9B58";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9D18[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9D18";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9DC8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9DC8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9E08[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9E08";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_9FE8[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_9FE8";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_A048[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_A048";
+
+static const ALIGN_ASSET(2) char ast_enmy_planet_seg4_vtx_A248[] = "__OTR__ast_enmy_planet/ast_enmy_planet_seg4_vtx_A248";
+
diff --git a/include/assets/ast_enmy_space.h b/include/assets/ast_enmy_space.h
new file mode 100644
index 00000000..d9e004b7
--- /dev/null
+++ b/include/assets/ast_enmy_space.h
@@ -0,0 +1,271 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aKillerBeeAnim[] = "__OTR__ast_enmy_space/aKillerBeeAnim";
+
+static const ALIGN_ASSET(2) char aKillerBeeSkel[] = "__OTR__ast_enmy_space/aKillerBeeSkel";
+
+static const ALIGN_ASSET(2) char aEnmySpMeMora1DL[] = "__OTR__ast_enmy_space/aEnmySpMeMora1DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2D8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2D8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3A8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3A8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_408[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_408";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4E8";
+
+static const ALIGN_ASSET(2) char aSpiderDL[] = "__OTR__ast_enmy_space/aSpiderDL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_870[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_870";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8C0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8C0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_920[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_920";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B10[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B10";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_BD0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_BD0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_D40[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_D40";
+
+static const ALIGN_ASSET(2) char aGammaOnDL[] = "__OTR__ast_enmy_space/aGammaOnDL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_F68[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_F68";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_10A8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_10A8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4001108[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4001108";
+
+static const ALIGN_ASSET(2) char aAttacker2DL[] = "__OTR__ast_enmy_space/aAttacker2DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1530[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1530";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_15B0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_15B0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1700[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1700";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1740[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1740";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1900[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1900";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_1980[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_1980";
+
+static const ALIGN_ASSET(2) char aCommanderTex1[] = "__OTR__ast_enmy_space/aCommanderTex1";
+
+static const ALIGN_ASSET(2) char aCommanderTex2[] = "__OTR__ast_enmy_space/aCommanderTex2";
+
+static const ALIGN_ASSET(2) char aCommanderTex3[] = "__OTR__ast_enmy_space/aCommanderTex3";
+
+static const ALIGN_ASSET(2) char aCommanderTex4[] = "__OTR__ast_enmy_space/aCommanderTex4";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4002230[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4002230";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_23E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_23E8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2448[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2448";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_24C8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_24C8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2558[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2558";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2598[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2598";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_2660[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_2660";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2820[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2820";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_28C0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_28C0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_29C0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_29C0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2A20[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2A20";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_2B30[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_2B30";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4002C50[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4002C50";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4002E50[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4002E50";
+
+static const ALIGN_ASSET(2) char aCommanderTex6[] = "__OTR__ast_enmy_space/aCommanderTex6";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003250[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003250";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003270[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003270";
+
+static const ALIGN_ASSET(2) char aCommanderTex5[] = "__OTR__ast_enmy_space/aCommanderTex5";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003670[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003670";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_36F0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_36F0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_37E0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_37E0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3830[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3830";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3890[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3890";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_3970[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_3970";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3A60[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3A60";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3AB0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3AB0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3B00[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3B00";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4003BD0[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4003BD0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3EA8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3EA8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3EF8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3EF8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_3F88[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_3F88";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4178[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4178";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4358[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4358";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4488[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4488";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4688[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4688";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4728[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4728";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_4788[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_4788";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_40047E8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40047E8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4004FE8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4004FE8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4005FE8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4005FE8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_40067E8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40067E8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4006FE8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4006FE8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_40077E8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40077E8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4007870[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4007870";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7B50[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7B50";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7BB0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7BB0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7C40[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7C40";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7E40[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7E40";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7EF0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7EF0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7F50[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7F50";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_7FB0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_7FB0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_81A0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_81A0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8390[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8390";
+
+static const ALIGN_ASSET(2) char aEnmySpMeMora2DL[] = "__OTR__ast_enmy_space/aEnmySpMeMora2DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8520[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8520";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4008550[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4008550";
+
+static const ALIGN_ASSET(2) char aGammaOffDL[] = "__OTR__ast_enmy_space/aGammaOffDL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8DF8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8DF8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_8F38[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_8F38";
+
+static const ALIGN_ASSET(2) char aVenomFighter3DL[] = "__OTR__ast_enmy_space/aVenomFighter3DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9268[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9268";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9308[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9308";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9358[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9358";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_93D8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_93D8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9418[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9418";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9508[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9508";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9608[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9608";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9648[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9648";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_9688[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_9688";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_40096B8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40096B8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_40098B8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_40098B8";
+
+static const ALIGN_ASSET(2) char D_ENMY_SPACE_4009AB8[] = "__OTR__ast_enmy_space/D_ENMY_SPACE_4009AB8";
+
+static const ALIGN_ASSET(2) char aCruiserGunAnim[] = "__OTR__ast_enmy_space/aCruiserGunAnim";
+
+static const ALIGN_ASSET(2) char aCruiserGunSkel[] = "__OTR__ast_enmy_space/aCruiserGunSkel";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_gfx_A3B0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_gfx_A3B0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A470[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A470";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A570[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A570";
+
+static const ALIGN_ASSET(2) char aEnmySpMeMora3DL[] = "__OTR__ast_enmy_space/aEnmySpMeMora3DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A788[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A788";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A888[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A888";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A928[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A928";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_A9E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_A9E8";
+
+static const ALIGN_ASSET(2) char aCommanderDL[] = "__OTR__ast_enmy_space/aCommanderDL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_AD28[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_AD28";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_ADA8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_ADA8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_AE08[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_AE08";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_AE68[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_AE68";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B068[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B068";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B0C8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B0C8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B1F8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B1F8";
+
+static const ALIGN_ASSET(2) char aAttacker3DL[] = "__OTR__ast_enmy_space/aAttacker3DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B5E8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B5E8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B6F8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B6F8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B798[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B798";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B898[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B898";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B8F8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B8F8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_B9B8[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_B9B8";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_BB98[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_BB98";
+
+static const ALIGN_ASSET(2) char aAttacker1DL[] = "__OTR__ast_enmy_space/aAttacker1DL";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_BEF0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_BEF0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C0F0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C0F0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C1B0[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C1B0";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C330[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C330";
+
+static const ALIGN_ASSET(2) char ast_enmy_space_seg4_vtx_C390[] = "__OTR__ast_enmy_space/ast_enmy_space_seg4_vtx_C390";
+
diff --git a/include/assets/ast_font_3d.h b/include/assets/ast_font_3d.h
new file mode 100644
index 00000000..4f8d34eb
--- /dev/null
+++ b/include/assets/ast_font_3d.h
@@ -0,0 +1,271 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aFont3D_DOT[] = "__OTR__ast_font_3d/aFont3D_DOT";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B0";
+
+static const ALIGN_ASSET(2) char aFont3D_1[] = "__OTR__ast_font_3d/aFont3D_1";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2D8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4A8";
+
+static const ALIGN_ASSET(2) char D_FONT3D_9000528[] = "__OTR__ast_font_3d/D_FONT3D_9000528";
+
+static const ALIGN_ASSET(2) char D_FONT3D_9000548[] = "__OTR__ast_font_3d/D_FONT3D_9000548";
+
+static const ALIGN_ASSET(2) char aFont3D_O[] = "__OTR__ast_font_3d/aFont3D_O";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_678[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_678";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_878[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_878";
+
+static const ALIGN_ASSET(2) char aFont3D_D[] = "__OTR__ast_font_3d/aFont3D_D";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B18[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B18";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_D18[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_D18";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_F18[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_F18";
+
+static const ALIGN_ASSET(2) char aFont3D_J[] = "__OTR__ast_font_3d/aFont3D_J";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1218[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1218";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1418[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1418";
+
+static const ALIGN_ASSET(2) char aFont3D_P[] = "__OTR__ast_font_3d/aFont3D_P";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1608[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1608";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1808[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1808";
+
+static const ALIGN_ASSET(2) char aFont3D_Z[] = "__OTR__ast_font_3d/aFont3D_Z";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1B08[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1B08";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1D08[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1D08";
+
+static const ALIGN_ASSET(2) char aFont3D_Y[] = "__OTR__ast_font_3d/aFont3D_Y";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_1FA0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_1FA0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_21A0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_21A0";
+
+static const ALIGN_ASSET(2) char aFont3D_X[] = "__OTR__ast_font_3d/aFont3D_X";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_23F0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_23F0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_25D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_25D0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_27D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_27D0";
+
+static const ALIGN_ASSET(2) char aFont3D_W[] = "__OTR__ast_font_3d/aFont3D_W";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_29D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_29D8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2BD8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2BD8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2DD8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2DD8";
+
+static const ALIGN_ASSET(2) char aFont3D_V[] = "__OTR__ast_font_3d/aFont3D_V";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_2F90[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_2F90";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3170[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3170";
+
+static const ALIGN_ASSET(2) char aFont3D_U[] = "__OTR__ast_font_3d/aFont3D_U";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3328[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3328";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3518[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3518";
+
+static const ALIGN_ASSET(2) char aFont3D_T[] = "__OTR__ast_font_3d/aFont3D_T";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3728[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3728";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3928[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3928";
+
+static const ALIGN_ASSET(2) char aFont3D_S[] = "__OTR__ast_font_3d/aFont3D_S";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3BB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3BB8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3DB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3DB8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_3FA8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_3FA8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_41A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_41A8";
+
+static const ALIGN_ASSET(2) char aFont3D_R[] = "__OTR__ast_font_3d/aFont3D_R";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_43B8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_43B8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_45B8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_45B8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4798[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4798";
+
+static const ALIGN_ASSET(2) char aFont3D_Q[] = "__OTR__ast_font_3d/aFont3D_Q";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4A48[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4A48";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4C28[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4C28";
+
+static const ALIGN_ASSET(2) char aFont3D_N[] = "__OTR__ast_font_3d/aFont3D_N";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_4F38[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_4F38";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5128[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5128";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_52F8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_52F8";
+
+static const ALIGN_ASSET(2) char aFont3D_M[] = "__OTR__ast_font_3d/aFont3D_M";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_54D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_54D0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_56C0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_56C0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_58C0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_58C0";
+
+static const ALIGN_ASSET(2) char aFont3D_L[] = "__OTR__ast_font_3d/aFont3D_L";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5A58[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5A58";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5C58[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5C58";
+
+static const ALIGN_ASSET(2) char aFont3D_K[] = "__OTR__ast_font_3d/aFont3D_K";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5DF8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5DF8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_5FE8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_5FE8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_61C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_61C8";
+
+static const ALIGN_ASSET(2) char aFont3D_I[] = "__OTR__ast_font_3d/aFont3D_I";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6380[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6380";
+
+static const ALIGN_ASSET(2) char aFont3D_H[] = "__OTR__ast_font_3d/aFont3D_H";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6640[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6640";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6840[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6840";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6A20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6A20";
+
+static const ALIGN_ASSET(2) char aFont3D_G[] = "__OTR__ast_font_3d/aFont3D_G";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6C20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6C20";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_6E20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_6E20";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7000[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7000";
+
+static const ALIGN_ASSET(2) char aFont3D_F[] = "__OTR__ast_font_3d/aFont3D_F";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_71E0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_71E0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_73E0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_73E0";
+
+static const ALIGN_ASSET(2) char aFont3D_E[] = "__OTR__ast_font_3d/aFont3D_E";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_76E8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_76E8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_78E8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_78E8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7AE8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7AE8";
+
+static const ALIGN_ASSET(2) char aFont3D_C[] = "__OTR__ast_font_3d/aFont3D_C";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7CA8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7CA8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_7E88[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_7E88";
+
+static const ALIGN_ASSET(2) char aFont3D_B[] = "__OTR__ast_font_3d/aFont3D_B";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8158[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8158";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8338[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8338";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8528[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8528";
+
+static const ALIGN_ASSET(2) char aFont3D_A[] = "__OTR__ast_font_3d/aFont3D_A";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8840[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8840";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8A30[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8A30";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8C20[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8C20";
+
+static const ALIGN_ASSET(2) char aFont3D_9[] = "__OTR__ast_font_3d/aFont3D_9";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8DB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8DB8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_8FB8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_8FB8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_91B8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_91B8";
+
+static const ALIGN_ASSET(2) char aFont3D_8[] = "__OTR__ast_font_3d/aFont3D_8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_93E8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_93E8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_95D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_95D8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_97C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_97C8";
+
+static const ALIGN_ASSET(2) char aFont3D_7[] = "__OTR__ast_font_3d/aFont3D_7";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_9A68[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_9A68";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_9C68[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_9C68";
+
+static const ALIGN_ASSET(2) char aFont3D_6[] = "__OTR__ast_font_3d/aFont3D_6";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_9E08[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_9E08";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A008[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A008";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A208[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A208";
+
+static const ALIGN_ASSET(2) char aFont3D_5[] = "__OTR__ast_font_3d/aFont3D_5";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A3D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A3D0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A5D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A5D0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A7B0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A7B0";
+
+static const ALIGN_ASSET(2) char aFont3D_4[] = "__OTR__ast_font_3d/aFont3D_4";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_A9D8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_A9D8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_ABC8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_ABC8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_AD98[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_AD98";
+
+static const ALIGN_ASSET(2) char aFont3D_3[] = "__OTR__ast_font_3d/aFont3D_3";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B0A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B0A8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B2A8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B2A8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B478[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B478";
+
+static const ALIGN_ASSET(2) char aFont3D_2[] = "__OTR__ast_font_3d/aFont3D_2";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B6C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B6C8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_B8C8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_B8C8";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_BAC8[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_BAC8";
+
+static const ALIGN_ASSET(2) char aFont3D_0[] = "__OTR__ast_font_3d/aFont3D_0";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_BD10[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_BD10";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_BF00[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_BF00";
+
+static const ALIGN_ASSET(2) char ast_font_3d_seg9_vtx_C0D0[] = "__OTR__ast_font_3d/ast_font_3d_seg9_vtx_C0D0";
+
diff --git a/include/assets/ast_fortuna.h b/include/assets/ast_fortuna.h
new file mode 100644
index 00000000..f61347c7
--- /dev/null
+++ b/include/assets/ast_fortuna.h
@@ -0,0 +1,185 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+
+static const ALIGN_ASSET(2) char aFoTitleCardTex[] = "__OTR__ast_fortuna/aFoTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_FO_6001260[] = "__OTR__ast_fortuna/D_FO_6001260";
+
+static const ALIGN_ASSET(2) char D_FO_6001360[] = "__OTR__ast_fortuna/D_FO_6001360";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_1490[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_1490";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_15D0[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_15D0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_1790[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_1790";
+
+static const ALIGN_ASSET(2) char D_FO_6001890[] = "__OTR__ast_fortuna/D_FO_6001890";
+
+static const ALIGN_ASSET(2) char D_FO_6002090[] = "__OTR__ast_fortuna/D_FO_6002090";
+
+static const ALIGN_ASSET(2) char D_FO_6002890[] = "__OTR__ast_fortuna/D_FO_6002890";
+
+static const ALIGN_ASSET(2) char aFoBaseDL2[] = "__OTR__ast_fortuna/aFoBaseDL2";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_33B0[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_33B0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3520[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3520";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3710[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3710";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3900[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3900";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3A30[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3A30";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3B30[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3B30";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3D20[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3D20";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_3E00[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_3E00";
+
+static const ALIGN_ASSET(2) char D_FO_6003EC0[] = "__OTR__ast_fortuna/D_FO_6003EC0";
+
+static const ALIGN_ASSET(2) char D_FO_60046C0[] = "__OTR__ast_fortuna/D_FO_60046C0";
+
+static const ALIGN_ASSET(2) char D_FO_60048C0[] = "__OTR__ast_fortuna/D_FO_60048C0";
+
+static const ALIGN_ASSET(2) char D_FO_6004AC0[] = "__OTR__ast_fortuna/D_FO_6004AC0";
+
+static const ALIGN_ASSET(2) char D_FO_6005AC0[] = "__OTR__ast_fortuna/D_FO_6005AC0";
+
+static const ALIGN_ASSET(2) char D_FO_6005CC0[] = "__OTR__ast_fortuna/D_FO_6005CC0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_5DC0[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_5DC0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_5E20[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_5E20";
+
+static const ALIGN_ASSET(2) char D_FO_6005F20[] = "__OTR__ast_fortuna/D_FO_6005F20";
+
+static const ALIGN_ASSET(2) char D_FO_6006120[] = "__OTR__ast_fortuna/D_FO_6006120";
+
+static const ALIGN_ASSET(2) char D_FO_6006220[] = "__OTR__ast_fortuna/D_FO_6006220";
+
+static const ALIGN_ASSET(2) char aFoMountain3DL[] = "__OTR__ast_fortuna/aFoMountain3DL";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_63B8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_63B8";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_65B8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_65B8";
+
+static const ALIGN_ASSET(2) char aFoTowerDL[] = "__OTR__ast_fortuna/aFoTowerDL";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_6898[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_6898";
+
+static const ALIGN_ASSET(2) char D_FO_6006BE0[] = "__OTR__ast_fortuna/D_FO_6006BE0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_6D00[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_6D00";
+
+static const ALIGN_ASSET(2) char D_FO_60070E0[] = "__OTR__ast_fortuna/D_FO_60070E0";
+
+static const ALIGN_ASSET(2) char D_FO_60072E0[] = "__OTR__ast_fortuna/D_FO_60072E0";
+
+static const ALIGN_ASSET(2) char D_FO_60074E0[] = "__OTR__ast_fortuna/D_FO_60074E0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7540[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7540";
+
+static const ALIGN_ASSET(2) char D_FO_6007590[] = "__OTR__ast_fortuna/D_FO_6007590";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7648[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7648";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_76B8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_76B8";
+
+static const ALIGN_ASSET(2) char D_FO_6007730[] = "__OTR__ast_fortuna/D_FO_6007730";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7788[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7788";
+
+static const ALIGN_ASSET(2) char aFoRadarAnim[] = "__OTR__ast_fortuna/aFoRadarAnim";
+
+static const ALIGN_ASSET(2) char aFoRadarSkel[] = "__OTR__ast_fortuna/aFoRadarSkel";
+
+static const ALIGN_ASSET(2) char aFoMountain1DL[] = "__OTR__ast_fortuna/aFoMountain1DL";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7A60[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7A60";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7C60[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7C60";
+
+static const ALIGN_ASSET(2) char aFoMountain2DL[] = "__OTR__ast_fortuna/aFoMountain2DL";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_7E30[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_7E30";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_8030[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_8030";
+
+static const ALIGN_ASSET(2) char D_FO_6008150[] = "__OTR__ast_fortuna/D_FO_6008150";
+
+static const ALIGN_ASSET(2) char D_FO_6009070[] = "__OTR__ast_fortuna/D_FO_6009070";
+
+static const ALIGN_ASSET(2) char aFoEnemyShadowDL[] = "__OTR__ast_fortuna/aFoEnemyShadowDL";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_9FE8[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_9FE8";
+
+static const ALIGN_ASSET(2) char D_FO_600A018[] = "__OTR__ast_fortuna/D_FO_600A018";
+
+static const ALIGN_ASSET(2) char aFoPoleDL[] = "__OTR__ast_fortuna/aFoPoleDL";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_A478[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_A478";
+
+static const ALIGN_ASSET(2) char D_FO_600A4A8[] = "__OTR__ast_fortuna/D_FO_600A4A8";
+
+static const ALIGN_ASSET(2) char D_FO_600B4B0[] = "__OTR__ast_fortuna/D_FO_600B4B0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_B540[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_B540";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_B580[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_B580";
+
+static const ALIGN_ASSET(2) char D_FO_600B5C0[] = "__OTR__ast_fortuna/D_FO_600B5C0";
+
+static const ALIGN_ASSET(2) char D_FO_600C5C0[] = "__OTR__ast_fortuna/D_FO_600C5C0";
+
+static const ALIGN_ASSET(2) char aFoBaseDL1[] = "__OTR__ast_fortuna/aFoBaseDL1";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_D638[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_D638";
+
+static const ALIGN_ASSET(2) char D_FO_600D7E8[] = "__OTR__ast_fortuna/D_FO_600D7E8";
+
+static const ALIGN_ASSET(2) char D_FO_600D9F0[] = "__OTR__ast_fortuna/D_FO_600D9F0";
+
+static const ALIGN_ASSET(2) char ast_fortuna_seg6_vtx_DA48[] = "__OTR__ast_fortuna/ast_fortuna_seg6_vtx_DA48";
+
+static const ALIGN_ASSET(2) char D_FO_600DA88[] = "__OTR__ast_fortuna/D_FO_600DA88";
+
+static const ALIGN_ASSET(2) char D_FO_600EA90[] = "__OTR__ast_fortuna/D_FO_600EA90";
+
+static const ALIGN_ASSET(2) char D_FO_600EAD4[] = "__OTR__ast_fortuna/D_FO_600EAD4";
+
+static const ALIGN_ASSET(2) char D_FO_600F1DC[] = "__OTR__ast_fortuna/D_FO_600F1DC";
+
+static const ALIGN_ASSET(2) char D_FO_600F394[] = "__OTR__ast_fortuna/D_FO_600F394";
+
+static const ALIGN_ASSET(2) char D_FO_600F3F4[] = "__OTR__ast_fortuna/D_FO_600F3F4";
+
+static const ALIGN_ASSET(2) char D_FO_600F5AC[] = "__OTR__ast_fortuna/D_FO_600F5AC";
+
+static const ALIGN_ASSET(2) char D_FO_600F60C[] = "__OTR__ast_fortuna/D_FO_600F60C";
+
+static const ALIGN_ASSET(2) char D_FO_600FD50[] = "__OTR__ast_fortuna/D_FO_600FD50";
+
+static const ALIGN_ASSET(2) char aFoPoleHitbox[] = "__OTR__ast_fortuna/aFoPoleHitbox";
+
+static const ALIGN_ASSET(2) char aFoTowerHitbox[] = "__OTR__ast_fortuna/aFoTowerHitbox";
+
+static const ALIGN_ASSET(2) char aFoRadarHitbox[] = "__OTR__ast_fortuna/aFoRadarHitbox";
+
+static const ALIGN_ASSET(2) char D_FO_600FF64[] = "__OTR__ast_fortuna/D_FO_600FF64";
+
+static const ALIGN_ASSET(2) char aFoMountain1Hitbox[] = "__OTR__ast_fortuna/aFoMountain1Hitbox";
+
+static const ALIGN_ASSET(2) char aFoMountain2Hitbox[] = "__OTR__ast_fortuna/aFoMountain2Hitbox";
+
+static const ALIGN_ASSET(2) char aFoMountain3Hitbox[] = "__OTR__ast_fortuna/aFoMountain3Hitbox";
+
+static const ALIGN_ASSET(2) char aFoBaseHitbox[] = "__OTR__ast_fortuna/aFoBaseHitbox";
+
diff --git a/include/assets/ast_great_fox.h b/include/assets/ast_great_fox.h
new file mode 100644
index 00000000..5ddce32f
--- /dev/null
+++ b/include/assets/ast_great_fox.h
@@ -0,0 +1,191 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aGreatFoxIntactDL[] = "__OTR__ast_great_fox/aGreatFoxIntactDL";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_8F8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_8F8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_AD8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_AD8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_CB8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_CB8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_EA8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_EA8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_10A8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_10A8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1298[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1298";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1498[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1498";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1698[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1698";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1878[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1878";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_18D8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_18D8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1958[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1958";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1B58[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1B58";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1D48[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1D48";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_1F28[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_1F28";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2128[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2128";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2308[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2308";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2508[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2508";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2708[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2708";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2738[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2738";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2928[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2928";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2B18[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2B18";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2D18[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2D18";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_2F08[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_2F08";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3008[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3008";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3058[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3058";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_30D8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_30D8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3158[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3158";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3348[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3348";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3538[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3538";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_36B8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_36B8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_37D8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_37D8";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3898[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3898";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_3A78[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_3A78";
+
+static const ALIGN_ASSET(2) char aGreatFoxDamagedDL[] = "__OTR__ast_great_fox/aGreatFoxDamagedDL";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4440[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4440";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_44C0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_44C0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_44F0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_44F0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4590[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4590";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4770[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4770";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4950[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4950";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4B40[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4B40";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4D20[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4D20";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_4F00[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_4F00";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_50E0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_50E0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_52E0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_52E0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_53F0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_53F0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5470[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5470";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5670[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5670";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5860[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5860";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5A60[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5A60";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5C40[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5C40";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_5E20[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_5E20";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6000[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6000";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6120[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6120";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6300[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6300";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_64F0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_64F0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_66E0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_66E0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_68C0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_68C0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_69B0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_69B0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6A00[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6A00";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6A80[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6A80";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6AC0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6AC0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6CB0[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6CB0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_6E90[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_6E90";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7040[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7040";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7160[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7160";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7220[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7220";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_7400[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_7400";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E007430[] = "__OTR__ast_great_fox/D_GREAT_FOX_E007430";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E0074B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E0074B0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E0084B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E0084B0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E008CB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E008CB0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E0094B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E0094B0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E009CB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E009CB0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00ACB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00ACB0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00B4B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00B4B0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00B530[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00B530";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00B5B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00B5B0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00BDB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00BDB0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00CDB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00CDB0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00CFB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00CFB0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00D7B0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00D7B0";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00DFB0[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00DFB0";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_E018[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_E018";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00E078[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00E078";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00E100[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00E100";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00F020[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00F020";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E00FF40[] = "__OTR__ast_great_fox/D_GREAT_FOX_E00FF40";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E010E60[] = "__OTR__ast_great_fox/D_GREAT_FOX_E010E60";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E011D80[] = "__OTR__ast_great_fox/D_GREAT_FOX_E011D80";
+
+static const ALIGN_ASSET(2) char ast_great_fox_seg14_vtx_11DD8[] = "__OTR__ast_great_fox/ast_great_fox_seg14_vtx_11DD8";
+
+static const ALIGN_ASSET(2) char D_GREAT_FOX_E011E08[] = "__OTR__ast_great_fox/D_GREAT_FOX_E011E08";
+
diff --git a/include/assets/ast_katina.h b/include/assets/ast_katina.h
new file mode 100644
index 00000000..9828144e
--- /dev/null
+++ b/include/assets/ast_katina.h
@@ -0,0 +1,299 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+
+static const ALIGN_ASSET(2) char aKaTitleCardTex[] = "__OTR__ast_katina/aKaTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_KA_6001260[] = "__OTR__ast_katina/D_KA_6001260";
+
+static const ALIGN_ASSET(2) char aKaDestroyedHatchDL[] = "__OTR__ast_katina/aKaDestroyedHatchDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1330[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1330";
+
+static const ALIGN_ASSET(2) char aKaEnemyDL[] = "__OTR__ast_katina/aKaEnemyDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1658[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1658";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1698[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1698";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1738[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1738";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_1938[] = "__OTR__ast_katina/ast_katina_seg6_vtx_1938";
+
+static const ALIGN_ASSET(2) char D_KA_6001968[] = "__OTR__ast_katina/D_KA_6001968";
+
+static const ALIGN_ASSET(2) char D_KA_6002170[] = "__OTR__ast_katina/D_KA_6002170";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_28F8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_28F8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_2AC8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_2AC8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_2CA8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_2CA8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_2EA8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_2EA8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3088[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3088";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_31A8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_31A8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_33A8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_33A8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_34A8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_34A8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3698[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3698";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3888[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3888";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3A88[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3A88";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3AE8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3AE8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3BE8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3BE8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3D78[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3D78";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3DB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3DB8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3DF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3DF8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3E38[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3E38";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3E78[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3E78";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3EB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3EB8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3EF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3EF8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3F38[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3F38";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3F78[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3F78";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3FB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3FB8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_3FF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_3FF8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_4038[] = "__OTR__ast_katina/ast_katina_seg6_vtx_4038";
+
+static const ALIGN_ASSET(2) char D_KA_6004078[] = "__OTR__ast_katina/D_KA_6004078";
+
+static const ALIGN_ASSET(2) char D_KA_60040F8[] = "__OTR__ast_katina/D_KA_60040F8";
+
+static const ALIGN_ASSET(2) char D_KA_60048F8[] = "__OTR__ast_katina/D_KA_60048F8";
+
+static const ALIGN_ASSET(2) char D_KA_60050F8[] = "__OTR__ast_katina/D_KA_60050F8";
+
+static const ALIGN_ASSET(2) char D_KA_60052F8[] = "__OTR__ast_katina/D_KA_60052F8";
+
+static const ALIGN_ASSET(2) char D_KA_6005AF8[] = "__OTR__ast_katina/D_KA_6005AF8";
+
+static const ALIGN_ASSET(2) char D_KA_60062F8[] = "__OTR__ast_katina/D_KA_60062F8";
+
+static const ALIGN_ASSET(2) char D_KA_6006AF8[] = "__OTR__ast_katina/D_KA_6006AF8";
+
+static const ALIGN_ASSET(2) char aKaDestroyedKaSaucererDL[] = "__OTR__ast_katina/aKaDestroyedKaSaucererDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_7B00[] = "__OTR__ast_katina/ast_katina_seg6_vtx_7B00";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_7CD0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_7CD0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_7EB0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_7EB0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_80B0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_80B0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8290[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8290";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8330[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8330";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8530[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8530";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8630[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8630";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8820[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8820";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8A20[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8A20";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8A50[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8A50";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8B50[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8B50";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8C60[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8C60";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8CA0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8CA0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8CE0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8CE0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8D20[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8D20";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8D60[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8D60";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8DA0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8DA0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8DE0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8DE0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8E20[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8E20";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8E60[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8E60";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_8FE0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_8FE0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9150[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9150";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9190[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9190";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_91D0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_91D0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9210[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9210";
+
+static const ALIGN_ASSET(2) char D_KA_6009250[] = "__OTR__ast_katina/D_KA_6009250";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_9318[] = "__OTR__ast_katina/ast_katina_seg6_vtx_9318";
+
+static const ALIGN_ASSET(2) char D_KA_60094A8[] = "__OTR__ast_katina/D_KA_60094A8";
+
+static const ALIGN_ASSET(2) char D_KA_6009CB0[] = "__OTR__ast_katina/D_KA_6009CB0";
+
+static const ALIGN_ASSET(2) char D_KA_600ABD0[] = "__OTR__ast_katina/D_KA_600ABD0";
+
+static const ALIGN_ASSET(2) char aKaFLBaseDL[] = "__OTR__ast_katina/aKaFLBaseDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_BBF0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_BBF0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_BCF0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_BCF0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_BD30[] = "__OTR__ast_katina/ast_katina_seg6_vtx_BD30";
+
+static const ALIGN_ASSET(2) char D_KA_600BDB0[] = "__OTR__ast_katina/D_KA_600BDB0";
+
+static const ALIGN_ASSET(2) char D_KA_600BFB0[] = "__OTR__ast_katina/D_KA_600BFB0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C058[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C058";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C258[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C258";
+
+static const ALIGN_ASSET(2) char D_KA_600C2D8[] = "__OTR__ast_katina/D_KA_600C2D8";
+
+static const ALIGN_ASSET(2) char aKaFLBaseDestroyedDL[] = "__OTR__ast_katina/aKaFLBaseDestroyedDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C5A0[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C5A0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_C620[] = "__OTR__ast_katina/ast_katina_seg6_vtx_C620";
+
+static const ALIGN_ASSET(2) char D_KA_600C760[] = "__OTR__ast_katina/D_KA_600C760";
+
+static const ALIGN_ASSET(2) char D_KA_600C960[] = "__OTR__ast_katina/D_KA_600C960";
+
+static const ALIGN_ASSET(2) char D_KA_600CB60[] = "__OTR__ast_katina/D_KA_600CB60";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_CC18[] = "__OTR__ast_katina/ast_katina_seg6_vtx_CC18";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_CCB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_CCB8";
+
+static const ALIGN_ASSET(2) char aDestroyedHatch2DL[] = "__OTR__ast_katina/aDestroyedHatch2DL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_CE58[] = "__OTR__ast_katina/ast_katina_seg6_vtx_CE58";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D058[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D058";
+
+static const ALIGN_ASSET(2) char aDestroyedCoreDL[] = "__OTR__ast_katina/aDestroyedCoreDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D140[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D140";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D250[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D250";
+
+static const ALIGN_ASSET(2) char aDestroyedHatch4DL[] = "__OTR__ast_katina/aDestroyedHatch4DL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D318[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D318";
+
+static const ALIGN_ASSET(2) char aDestroyedHatch3DL[] = "__OTR__ast_katina/aDestroyedHatch3DL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D568[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D568";
+
+static const ALIGN_ASSET(2) char aKaCornerianFighterShadowDL[] = "__OTR__ast_katina/aKaCornerianFighterShadowDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_D788[] = "__OTR__ast_katina/ast_katina_seg6_vtx_D788";
+
+static const ALIGN_ASSET(2) char D_KA_600D7B8[] = "__OTR__ast_katina/D_KA_600D7B8";
+
+static const ALIGN_ASSET(2) char aKaEnemyShadowDL[] = "__OTR__ast_katina/aKaEnemyShadowDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_DC18[] = "__OTR__ast_katina/ast_katina_seg6_vtx_DC18";
+
+static const ALIGN_ASSET(2) char D_KA_600DC48[] = "__OTR__ast_katina/D_KA_600DC48";
+
+static const ALIGN_ASSET(2) char aKaCornerianFighterDL[] = "__OTR__ast_katina/aKaCornerianFighterDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E208[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E208";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E3F8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E3F8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E4C8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E4C8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E6C8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E6C8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E728[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E728";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_E7B8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_E7B8";
+
+static const ALIGN_ASSET(2) char D_KA_600E7E8[] = "__OTR__ast_katina/D_KA_600E7E8";
+
+static const ALIGN_ASSET(2) char D_KA_600E9E8[] = "__OTR__ast_katina/D_KA_600E9E8";
+
+static const ALIGN_ASSET(2) char D_KA_600EBE8[] = "__OTR__ast_katina/D_KA_600EBE8";
+
+static const ALIGN_ASSET(2) char D_KA_600EDE8[] = "__OTR__ast_katina/D_KA_600EDE8";
+
+static const ALIGN_ASSET(2) char aKaEnemyLowPolyDL[] = "__OTR__ast_katina/aKaEnemyLowPolyDL";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_F098[] = "__OTR__ast_katina/ast_katina_seg6_vtx_F098";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_F128[] = "__OTR__ast_katina/ast_katina_seg6_vtx_F128";
+
+static const ALIGN_ASSET(2) char D_KA_600F1D0[] = "__OTR__ast_katina/D_KA_600F1D0";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_F220[] = "__OTR__ast_katina/ast_katina_seg6_vtx_F220";
+
+static const ALIGN_ASSET(2) char D_KA_600F260[] = "__OTR__ast_katina/D_KA_600F260";
+
+static const ALIGN_ASSET(2) char D_KA_6010260[] = "__OTR__ast_katina/D_KA_6010260";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10338[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10338";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_104B8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_104B8";
+
+static const ALIGN_ASSET(2) char D_KA_60105D8[] = "__OTR__ast_katina/D_KA_60105D8";
+
+static const ALIGN_ASSET(2) char D_KA_6010744[] = "__OTR__ast_katina/D_KA_6010744";
+
+static const ALIGN_ASSET(2) char D_KA_6010780[] = "__OTR__ast_katina/D_KA_6010780";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10858[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10858";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_109F8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_109F8";
+
+static const ALIGN_ASSET(2) char D_KA_6010A60[] = "__OTR__ast_katina/D_KA_6010A60";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10B38[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10B38";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10CB8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10CB8";
+
+static const ALIGN_ASSET(2) char D_KA_6010D20[] = "__OTR__ast_katina/D_KA_6010D20";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10DF8[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10DF8";
+
+static const ALIGN_ASSET(2) char ast_katina_seg6_vtx_10F98[] = "__OTR__ast_katina/ast_katina_seg6_vtx_10F98";
+
+static const ALIGN_ASSET(2) char D_KA_6011000[] = "__OTR__ast_katina/D_KA_6011000";
+
+static const ALIGN_ASSET(2) char D_KA_6011044[] = "__OTR__ast_katina/D_KA_6011044";
+
+static const ALIGN_ASSET(2) char aKaSaucererHitbox[] = "__OTR__ast_katina/aKaSaucererHitbox";
+
+static const ALIGN_ASSET(2) char aKaFrontlineBaseHitbox[] = "__OTR__ast_katina/aKaFrontlineBaseHitbox";
+
+static const ALIGN_ASSET(2) char D_KA_60111D8[] = "__OTR__ast_katina/D_KA_60111D8";
+
diff --git a/include/assets/ast_landmaster.h b/include/assets/ast_landmaster.h
new file mode 100644
index 00000000..04bc8e58
--- /dev/null
+++ b/include/assets/ast_landmaster.h
@@ -0,0 +1,109 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aLandmasterLifeIconTex[] = "__OTR__ast_landmaster/aLandmasterLifeIconTex";
+
+static const ALIGN_ASSET(2) char aLandmasterLifeIconTLUT[] = "__OTR__ast_landmaster/aLandmasterLifeIconTLUT";
+
+static const ALIGN_ASSET(2) char aLandmasterModelDL[] = "__OTR__ast_landmaster/aLandmasterModelDL";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_660[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_660";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_840[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_840";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_A30[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_A30";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_C10[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_C10";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_C40[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_C40";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_D30[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_D30";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_F30[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_F30";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_F70[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_F70";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1050[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1050";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1190[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1190";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1290[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1290";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_12F0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_12F0";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_13B0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_13B0";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_13E0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_13E0";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1410[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1410";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1450[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1450";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1490[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1490";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_14C0[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_14C0";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_1500[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_1500";
+
+static const ALIGN_ASSET(2) char D_landmaster_3001680[] = "__OTR__ast_landmaster/D_landmaster_3001680";
+
+static const ALIGN_ASSET(2) char D_landmaster_3001E80[] = "__OTR__ast_landmaster/D_landmaster_3001E80";
+
+static const ALIGN_ASSET(2) char D_landmaster_3002680[] = "__OTR__ast_landmaster/D_landmaster_3002680";
+
+static const ALIGN_ASSET(2) char D_landmaster_3002E80[] = "__OTR__ast_landmaster/D_landmaster_3002E80";
+
+static const ALIGN_ASSET(2) char D_landmaster_3003680[] = "__OTR__ast_landmaster/D_landmaster_3003680";
+
+static const ALIGN_ASSET(2) char aLandmasterCanonDL[] = "__OTR__ast_landmaster/aLandmasterCanonDL";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4818[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4818";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4918[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4918";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4B08[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4B08";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4B68[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4B68";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_4C68[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_4C68";
+
+static const ALIGN_ASSET(2) char D_landmaster_3004CA8[] = "__OTR__ast_landmaster/D_landmaster_3004CA8";
+
+static const ALIGN_ASSET(2) char D_landmaster_30054A8[] = "__OTR__ast_landmaster/D_landmaster_30054A8";
+
+static const ALIGN_ASSET(2) char D_landmaster_3005CA8[] = "__OTR__ast_landmaster/D_landmaster_3005CA8";
+
+static const ALIGN_ASSET(2) char D_landmaster_3005EA8[] = "__OTR__ast_landmaster/D_landmaster_3005EA8";
+
+static const ALIGN_ASSET(2) char D_landmaster_30066B0[] = "__OTR__ast_landmaster/D_landmaster_30066B0";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_6708[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_6708";
+
+static const ALIGN_ASSET(2) char D_landmaster_3006738[] = "__OTR__ast_landmaster/D_landmaster_3006738";
+
+static const ALIGN_ASSET(2) char D_landmaster_3006940[] = "__OTR__ast_landmaster/D_landmaster_3006940";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_6998[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_6998";
+
+static const ALIGN_ASSET(2) char D_landmaster_30069D8[] = "__OTR__ast_landmaster/D_landmaster_30069D8";
+
+static const ALIGN_ASSET(2) char D_landmaster_3006DE0[] = "__OTR__ast_landmaster/D_landmaster_3006DE0";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_6E38[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_6E38";
+
+static const ALIGN_ASSET(2) char D_landmaster_3006E68[] = "__OTR__ast_landmaster/D_landmaster_3006E68";
+
+static const ALIGN_ASSET(2) char D_landmaster_3007E70[] = "__OTR__ast_landmaster/D_landmaster_3007E70";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_7EC8[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_7EC8";
+
+static const ALIGN_ASSET(2) char D_landmaster_3007EF8[] = "__OTR__ast_landmaster/D_landmaster_3007EF8";
+
+static const ALIGN_ASSET(2) char D_landmaster_3008100[] = "__OTR__ast_landmaster/D_landmaster_3008100";
+
+static const ALIGN_ASSET(2) char ast_landmaster_seg3_vtx_8158[] = "__OTR__ast_landmaster/ast_landmaster_seg3_vtx_8158";
+
+static const ALIGN_ASSET(2) char D_landmaster_3008188[] = "__OTR__ast_landmaster/D_landmaster_3008188";
+
diff --git a/include/assets/ast_logo.h b/include/assets/ast_logo.h
new file mode 100644
index 00000000..c30408d2
--- /dev/null
+++ b/include/assets/ast_logo.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char gNintendoLogo[] = "__OTR__ast_logo/nintendo_logo";
+
diff --git a/include/assets/ast_macbeth.h b/include/assets/ast_macbeth.h
new file mode 100644
index 00000000..3b9f93ae
--- /dev/null
+++ b/include/assets/ast_macbeth.h
@@ -0,0 +1,1406 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aMaTitleCardTex[] = "__OTR__ast_macbeth/aMaTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_MA_6001180[] = "__OTR__ast_macbeth/D_MA_6001180";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1220[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1220";
+
+static const ALIGN_ASSET(2) char D_MA_60012A0[] = "__OTR__ast_macbeth/D_MA_60012A0";
+
+static const ALIGN_ASSET(2) char D_MA_60013A0[] = "__OTR__ast_macbeth/D_MA_60013A0";
+
+static const ALIGN_ASSET(2) char D_MA_60014A0[] = "__OTR__ast_macbeth/D_MA_60014A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1538[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1538";
+
+static const ALIGN_ASSET(2) char D_MA_6001578[] = "__OTR__ast_macbeth/D_MA_6001578";
+
+static const ALIGN_ASSET(2) char D_MA_6001978[] = "__OTR__ast_macbeth/D_MA_6001978";
+
+static const ALIGN_ASSET(2) char D_MA_6001A60[] = "__OTR__ast_macbeth/D_MA_6001A60";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1AF8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1AF8";
+
+static const ALIGN_ASSET(2) char D_MA_6001B38[] = "__OTR__ast_macbeth/D_MA_6001B38";
+
+static const ALIGN_ASSET(2) char D_MA_6001C38[] = "__OTR__ast_macbeth/D_MA_6001C38";
+
+static const ALIGN_ASSET(2) char D_MA_6001C78[] = "__OTR__ast_macbeth/D_MA_6001C78";
+
+static const ALIGN_ASSET(2) char D_MA_6002078[] = "__OTR__ast_macbeth/D_MA_6002078";
+
+static const ALIGN_ASSET(2) char D_MA_6002118[] = "__OTR__ast_macbeth/D_MA_6002118";
+
+static const ALIGN_ASSET(2) char D_MA_6002518[] = "__OTR__ast_macbeth/D_MA_6002518";
+
+static const ALIGN_ASSET(2) char D_MA_60026F8[] = "__OTR__ast_macbeth/D_MA_60026F8";
+
+static const ALIGN_ASSET(2) char D_MA_60027F8[] = "__OTR__ast_macbeth/D_MA_60027F8";
+
+static const ALIGN_ASSET(2) char aMaGuillotine2DL[] = "__OTR__ast_macbeth/aMaGuillotine2DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2A40[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2A40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2B40[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2B40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2B80[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2B80";
+
+static const ALIGN_ASSET(2) char D_MA_6002C20[] = "__OTR__ast_macbeth/D_MA_6002C20";
+
+static const ALIGN_ASSET(2) char D_MA_6002E20[] = "__OTR__ast_macbeth/D_MA_6002E20";
+
+static const ALIGN_ASSET(2) char D_MA_6002E60[] = "__OTR__ast_macbeth/D_MA_6002E60";
+
+static const ALIGN_ASSET(2) char D_MA_6002F60[] = "__OTR__ast_macbeth/D_MA_6002F60";
+
+static const ALIGN_ASSET(2) char D_MA_6002FF0[] = "__OTR__ast_macbeth/D_MA_6002FF0";
+
+static const ALIGN_ASSET(2) char D_MA_6003030[] = "__OTR__ast_macbeth/D_MA_6003030";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch3DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch3DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_3108[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_3108";
+
+static const ALIGN_ASSET(2) char D_MA_6003138[] = "__OTR__ast_macbeth/D_MA_6003138";
+
+static const ALIGN_ASSET(2) char D_MA_6003238[] = "__OTR__ast_macbeth/D_MA_6003238";
+
+static const ALIGN_ASSET(2) char D_MA_6003370[] = "__OTR__ast_macbeth/D_MA_6003370";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_3628[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_3628";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_37F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_37F8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_3878[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_3878";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_3A08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_3A08";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_3B28[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_3B28";
+
+static const ALIGN_ASSET(2) char D_MA_6003B58[] = "__OTR__ast_macbeth/D_MA_6003B58";
+
+static const ALIGN_ASSET(2) char D_MA_6003F58[] = "__OTR__ast_macbeth/D_MA_6003F58";
+
+static const ALIGN_ASSET(2) char D_MA_6003FC8[] = "__OTR__ast_macbeth/D_MA_6003FC8";
+
+static const ALIGN_ASSET(2) char D_MA_60043C8[] = "__OTR__ast_macbeth/D_MA_60043C8";
+
+static const ALIGN_ASSET(2) char D_MA_6004440[] = "__OTR__ast_macbeth/D_MA_6004440";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_4560[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_4560";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_45A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_45A0";
+
+static const ALIGN_ASSET(2) char D_MA_6004640[] = "__OTR__ast_macbeth/D_MA_6004640";
+
+static const ALIGN_ASSET(2) char D_MA_6004A40[] = "__OTR__ast_macbeth/D_MA_6004A40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_4C40[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_4C40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_4E58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_4E58";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_4EA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_4EA8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_4FA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_4FA8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_5028[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_5028";
+
+static const ALIGN_ASSET(2) char D_MA_60050F8[] = "__OTR__ast_macbeth/D_MA_60050F8";
+
+static const ALIGN_ASSET(2) char D_MA_60051F8[] = "__OTR__ast_macbeth/D_MA_60051F8";
+
+static const ALIGN_ASSET(2) char D_MA_6005238[] = "__OTR__ast_macbeth/D_MA_6005238";
+
+static const ALIGN_ASSET(2) char D_MA_6005638[] = "__OTR__ast_macbeth/D_MA_6005638";
+
+static const ALIGN_ASSET(2) char D_MA_6005828[] = "__OTR__ast_macbeth/D_MA_6005828";
+
+static const ALIGN_ASSET(2) char D_MA_6006030[] = "__OTR__ast_macbeth/D_MA_6006030";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_62F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_62F8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_63F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_63F8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_64F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_64F8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_6578[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_6578";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_65B8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_65B8";
+
+static const ALIGN_ASSET(2) char aMaIndicatorSignDL[] = "__OTR__ast_macbeth/aMaIndicatorSignDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_6888[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_6888";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_68C8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_68C8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_6908[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_6908";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_6968[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_6968";
+
+static const ALIGN_ASSET(2) char D_MA_60069A8[] = "__OTR__ast_macbeth/D_MA_60069A8";
+
+static const ALIGN_ASSET(2) char D_MA_6006AA8[] = "__OTR__ast_macbeth/D_MA_6006AA8";
+
+static const ALIGN_ASSET(2) char D_MA_6006BE8[] = "__OTR__ast_macbeth/D_MA_6006BE8";
+
+static const ALIGN_ASSET(2) char D_MA_6006FE8[] = "__OTR__ast_macbeth/D_MA_6006FE8";
+
+static const ALIGN_ASSET(2) char aMaDistanceSign4DL[] = "__OTR__ast_macbeth/aMaDistanceSign4DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_7258[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_7258";
+
+static const ALIGN_ASSET(2) char aMaDistanceSign3DL[] = "__OTR__ast_macbeth/aMaDistanceSign3DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_7328[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_7328";
+
+static const ALIGN_ASSET(2) char aMaDistanceSign2DL[] = "__OTR__ast_macbeth/aMaDistanceSign2DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_73F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_73F8";
+
+static const ALIGN_ASSET(2) char aMaDistanceSign1DL[] = "__OTR__ast_macbeth/aMaDistanceSign1DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_74C8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_74C8";
+
+static const ALIGN_ASSET(2) char aMaDistanceSign5DL[] = "__OTR__ast_macbeth/aMaDistanceSign5DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_7598[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_7598";
+
+static const ALIGN_ASSET(2) char aMaWeaponsFactoryDL[] = "__OTR__ast_macbeth/aMaWeaponsFactoryDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8360[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8360";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8420[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8420";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8460[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8460";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_84A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_84A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8520[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8520";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_85E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_85E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8620[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8620";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8750[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8750";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8820[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8820";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8860[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8860";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_88E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_88E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8A10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8A10";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8AE0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8AE0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8B60[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8B60";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8C20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8C20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8D60[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8D60";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8E00[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8E00";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8E40[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8E40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8FA0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8FA0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_8FE0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_8FE0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_9020[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_9020";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_90E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_90E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_91A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_91A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_91E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_91E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_9220[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_9220";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_9260[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_9260";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_92A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_92A0";
+
+static const ALIGN_ASSET(2) char D_MA_60092E0[] = "__OTR__ast_macbeth/D_MA_60092E0";
+
+static const ALIGN_ASSET(2) char D_MA_6009AE0[] = "__OTR__ast_macbeth/D_MA_6009AE0";
+
+static const ALIGN_ASSET(2) char D_MA_6009BE0[] = "__OTR__ast_macbeth/D_MA_6009BE0";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch8DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch8DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_9CE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_9CE8";
+
+static const ALIGN_ASSET(2) char D_MA_6009D18[] = "__OTR__ast_macbeth/D_MA_6009D18";
+
+static const ALIGN_ASSET(2) char D_MA_6009E18[] = "__OTR__ast_macbeth/D_MA_6009E18";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch7DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch7DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_9FA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_9FA8";
+
+static const ALIGN_ASSET(2) char D_MA_6009FD8[] = "__OTR__ast_macbeth/D_MA_6009FD8";
+
+static const ALIGN_ASSET(2) char D_MA_600A0D8[] = "__OTR__ast_macbeth/D_MA_600A0D8";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch6DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch6DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_A288[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_A288";
+
+static const ALIGN_ASSET(2) char D_MA_600A2B8[] = "__OTR__ast_macbeth/D_MA_600A2B8";
+
+static const ALIGN_ASSET(2) char D_MA_600A3B8[] = "__OTR__ast_macbeth/D_MA_600A3B8";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch5DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch5DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_A568[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_A568";
+
+static const ALIGN_ASSET(2) char D_MA_600A598[] = "__OTR__ast_macbeth/D_MA_600A598";
+
+static const ALIGN_ASSET(2) char D_MA_600A698[] = "__OTR__ast_macbeth/D_MA_600A698";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch4DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch4DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_A868[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_A868";
+
+static const ALIGN_ASSET(2) char D_MA_600A898[] = "__OTR__ast_macbeth/D_MA_600A898";
+
+static const ALIGN_ASSET(2) char D_MA_600A998[] = "__OTR__ast_macbeth/D_MA_600A998";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch2DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch2DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_AB08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_AB08";
+
+static const ALIGN_ASSET(2) char D_MA_600AB38[] = "__OTR__ast_macbeth/D_MA_600AB38";
+
+static const ALIGN_ASSET(2) char D_MA_600AC38[] = "__OTR__ast_macbeth/D_MA_600AC38";
+
+static const ALIGN_ASSET(2) char aMaRailroadSwitch1DL[] = "__OTR__ast_macbeth/aMaRailroadSwitch1DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_ADE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_ADE8";
+
+static const ALIGN_ASSET(2) char D_MA_600AE18[] = "__OTR__ast_macbeth/D_MA_600AE18";
+
+static const ALIGN_ASSET(2) char D_MA_600AE98[] = "__OTR__ast_macbeth/D_MA_600AE98";
+
+static const ALIGN_ASSET(2) char aMaGuillotine1DL[] = "__OTR__ast_macbeth/aMaGuillotine1DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_B120[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_B120";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_B160[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_B160";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_B260[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_B260";
+
+static const ALIGN_ASSET(2) char D_MA_600B2E0[] = "__OTR__ast_macbeth/D_MA_600B2E0";
+
+static const ALIGN_ASSET(2) char D_MA_600C2E0[] = "__OTR__ast_macbeth/D_MA_600C2E0";
+
+static const ALIGN_ASSET(2) char D_MA_600C3E0[] = "__OTR__ast_macbeth/D_MA_600C3E0";
+
+static const ALIGN_ASSET(2) char D_MA_600C4D0[] = "__OTR__ast_macbeth/D_MA_600C4D0";
+
+static const ALIGN_ASSET(2) char D_MA_600C65C[] = "__OTR__ast_macbeth/D_MA_600C65C";
+
+static const ALIGN_ASSET(2) char D_MA_600CD18[] = "__OTR__ast_macbeth/D_MA_600CD18";
+
+static const ALIGN_ASSET(2) char D_MA_600D1E4[] = "__OTR__ast_macbeth/D_MA_600D1E4";
+
+static const ALIGN_ASSET(2) char D_MA_600D280[] = "__OTR__ast_macbeth/D_MA_600D280";
+
+static const ALIGN_ASSET(2) char aMaSpearDL[] = "__OTR__ast_macbeth/aMaSpearDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_D638[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_D638";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_D6B8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_D6B8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_D768[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_D768";
+
+static const ALIGN_ASSET(2) char D_MA_600D878[] = "__OTR__ast_macbeth/D_MA_600D878";
+
+static const ALIGN_ASSET(2) char D_MA_600D978[] = "__OTR__ast_macbeth/D_MA_600D978";
+
+static const ALIGN_ASSET(2) char aMaLaserTurretDL[] = "__OTR__ast_macbeth/aMaLaserTurretDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_DCF0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_DCF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_DD60[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_DD60";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_DDF0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_DDF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_DE50[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_DE50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_DEA0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_DEA0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_DF10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_DF10";
+
+static const ALIGN_ASSET(2) char D_MA_600DF60[] = "__OTR__ast_macbeth/D_MA_600DF60";
+
+static const ALIGN_ASSET(2) char D_MA_600E360[] = "__OTR__ast_macbeth/D_MA_600E360";
+
+static const ALIGN_ASSET(2) char D_MA_600E460[] = "__OTR__ast_macbeth/D_MA_600E460";
+
+static const ALIGN_ASSET(2) char D_MA_600E480[] = "__OTR__ast_macbeth/D_MA_600E480";
+
+static const ALIGN_ASSET(2) char D_MA_600E880[] = "__OTR__ast_macbeth/D_MA_600E880";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_EA50[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_EA50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_EC08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_EC08";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_EC78[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_EC78";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_EDB8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_EDB8";
+
+static const ALIGN_ASSET(2) char D_MA_600EE38[] = "__OTR__ast_macbeth/D_MA_600EE38";
+
+static const ALIGN_ASSET(2) char D_MA_600EF38[] = "__OTR__ast_macbeth/D_MA_600EF38";
+
+static const ALIGN_ASSET(2) char D_MA_600EF98[] = "__OTR__ast_macbeth/D_MA_600EF98";
+
+static const ALIGN_ASSET(2) char D_MA_600F018[] = "__OTR__ast_macbeth/D_MA_600F018";
+
+static const ALIGN_ASSET(2) char D_MA_600F028[] = "__OTR__ast_macbeth/D_MA_600F028";
+
+static const ALIGN_ASSET(2) char D_MA_600F128[] = "__OTR__ast_macbeth/D_MA_600F128";
+
+static const ALIGN_ASSET(2) char D_MA_600F160[] = "__OTR__ast_macbeth/D_MA_600F160";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F270[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F270";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F2B0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F2B0";
+
+static const ALIGN_ASSET(2) char D_MA_600F2F0[] = "__OTR__ast_macbeth/D_MA_600F2F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F388[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F388";
+
+static const ALIGN_ASSET(2) char D_MA_600F3D0[] = "__OTR__ast_macbeth/D_MA_600F3D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F5D0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F5D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F610[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F610";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F650[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F650";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F690[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F690";
+
+static const ALIGN_ASSET(2) char D_MA_600F6C0[] = "__OTR__ast_macbeth/D_MA_600F6C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F8C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F8C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F900[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F900";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F940[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F940";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_F980[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_F980";
+
+static const ALIGN_ASSET(2) char D_MA_600F9B0[] = "__OTR__ast_macbeth/D_MA_600F9B0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_FB70[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_FB70";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_FC30[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_FC30";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_FCD0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_FCD0";
+
+static const ALIGN_ASSET(2) char D_MA_600FEC4[] = "__OTR__ast_macbeth/D_MA_600FEC4";
+
+static const ALIGN_ASSET(2) char D_MA_6010144[] = "__OTR__ast_macbeth/D_MA_6010144";
+
+static const ALIGN_ASSET(2) char D_MA_6010220[] = "__OTR__ast_macbeth/D_MA_6010220";
+
+static const ALIGN_ASSET(2) char D_MA_601042C[] = "__OTR__ast_macbeth/D_MA_601042C";
+
+static const ALIGN_ASSET(2) char D_MA_6010470[] = "__OTR__ast_macbeth/D_MA_6010470";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_10598[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_10598";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_106B8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_106B8";
+
+static const ALIGN_ASSET(2) char aMaProximityLightSidesDL[] = "__OTR__ast_macbeth/aMaProximityLightSidesDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_107A8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_107A8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_10870[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_10870";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_109C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_109C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_10BB0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_10BB0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_10BE0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_10BE0";
+
+static const ALIGN_ASSET(2) char D_MA_6010C20[] = "__OTR__ast_macbeth/D_MA_6010C20";
+
+static const ALIGN_ASSET(2) char D_MA_6011B40[] = "__OTR__ast_macbeth/D_MA_6011B40";
+
+static const ALIGN_ASSET(2) char D_MA_6012A60[] = "__OTR__ast_macbeth/D_MA_6012A60";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_12AC0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_12AC0";
+
+static const ALIGN_ASSET(2) char D_MA_6012BC0[] = "__OTR__ast_macbeth/D_MA_6012BC0";
+
+static const ALIGN_ASSET(2) char D_MA_6012C00[] = "__OTR__ast_macbeth/D_MA_6012C00";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_12C58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_12C58";
+
+static const ALIGN_ASSET(2) char D_MA_6012C98[] = "__OTR__ast_macbeth/D_MA_6012C98";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_12CE0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_12CE0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_12E08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_12E08";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_12E48[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_12E48";
+
+static const ALIGN_ASSET(2) char aMaShockBoxLightDL[] = "__OTR__ast_macbeth/aMaShockBoxLightDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_12FA0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_12FA0";
+
+static const ALIGN_ASSET(2) char D_MA_6012FE0[] = "__OTR__ast_macbeth/D_MA_6012FE0";
+
+static const ALIGN_ASSET(2) char D_MA_6013060[] = "__OTR__ast_macbeth/D_MA_6013060";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_130C8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_130C8";
+
+static const ALIGN_ASSET(2) char D_MA_6013158[] = "__OTR__ast_macbeth/D_MA_6013158";
+
+static const ALIGN_ASSET(2) char aMaGuillotineHousingDL[] = "__OTR__ast_macbeth/aMaGuillotineHousingDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_13AE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_13AE8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_13B68[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_13B68";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_13CA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_13CA8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_13DD0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_13DD0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_13E98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_13E98";
+
+static const ALIGN_ASSET(2) char D_MA_6013F58[] = "__OTR__ast_macbeth/D_MA_6013F58";
+
+static const ALIGN_ASSET(2) char D_MA_6014058[] = "__OTR__ast_macbeth/D_MA_6014058";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_14110[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_14110";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_14328[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_14328";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_14368[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_14368";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_143F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_143F8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_14428[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_14428";
+
+static const ALIGN_ASSET(2) char D_MA_6014458[] = "__OTR__ast_macbeth/D_MA_6014458";
+
+static const ALIGN_ASSET(2) char D_MA_6015494[] = "__OTR__ast_macbeth/D_MA_6015494";
+
+static const ALIGN_ASSET(2) char D_MA_6015500[] = "__OTR__ast_macbeth/D_MA_6015500";
+
+static const ALIGN_ASSET(2) char aMaShockBoxDL[] = "__OTR__ast_macbeth/aMaShockBoxDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_156E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_156E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_15760[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_15760";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_157E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_157E0";
+
+static const ALIGN_ASSET(2) char D_MA_6015C24[] = "__OTR__ast_macbeth/D_MA_6015C24";
+
+static const ALIGN_ASSET(2) char D_MA_6016040[] = "__OTR__ast_macbeth/D_MA_6016040";
+
+static const ALIGN_ASSET(2) char D_MA_60163F0[] = "__OTR__ast_macbeth/D_MA_60163F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_16400[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_16400";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_165C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_165C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_166E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_166E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_16820[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_16820";
+
+static const ALIGN_ASSET(2) char D_MA_6016B2C[] = "__OTR__ast_macbeth/D_MA_6016B2C";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_16B40[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_16B40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_16D00[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_16D00";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_16E20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_16E20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_16F60[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_16F60";
+
+static const ALIGN_ASSET(2) char D_MA_6017714[] = "__OTR__ast_macbeth/D_MA_6017714";
+
+static const ALIGN_ASSET(2) char D_MA_6017720[] = "__OTR__ast_macbeth/D_MA_6017720";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_17998[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_17998";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_17B58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_17B58";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_17BC8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_17BC8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_17D48[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_17D48";
+
+static const ALIGN_ASSET(2) char D_MA_6017EB8[] = "__OTR__ast_macbeth/D_MA_6017EB8";
+
+static const ALIGN_ASSET(2) char D_MA_60186B8[] = "__OTR__ast_macbeth/D_MA_60186B8";
+
+static const ALIGN_ASSET(2) char D_MA_6018AB8[] = "__OTR__ast_macbeth/D_MA_6018AB8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_18C90[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_18C90";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_18DF8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_18DF8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_18EA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_18EA8";
+
+static const ALIGN_ASSET(2) char D_MA_6019028[] = "__OTR__ast_macbeth/D_MA_6019028";
+
+static const ALIGN_ASSET(2) char D_MA_6019128[] = "__OTR__ast_macbeth/D_MA_6019128";
+
+static const ALIGN_ASSET(2) char D_MA_6019220[] = "__OTR__ast_macbeth/D_MA_6019220";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_19270[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_19270";
+
+static const ALIGN_ASSET(2) char D_MA_60192B0[] = "__OTR__ast_macbeth/D_MA_60192B0";
+
+static const ALIGN_ASSET(2) char aMaBoulderDL[] = "__OTR__ast_macbeth/aMaBoulderDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1A3A8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1A3A8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1A5A8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1A5A8";
+
+static const ALIGN_ASSET(2) char D_MA_601A5E8[] = "__OTR__ast_macbeth/D_MA_601A5E8";
+
+static const ALIGN_ASSET(2) char D_MA_601A6E8[] = "__OTR__ast_macbeth/D_MA_601A6E8";
+
+static const ALIGN_ASSET(2) char D_MA_601A7A0[] = "__OTR__ast_macbeth/D_MA_601A7A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1A7F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1A7F8";
+
+static const ALIGN_ASSET(2) char D_MA_601A840[] = "__OTR__ast_macbeth/D_MA_601A840";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1A898[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1A898";
+
+static const ALIGN_ASSET(2) char D_MA_601A8C8[] = "__OTR__ast_macbeth/D_MA_601A8C8";
+
+static const ALIGN_ASSET(2) char aMaFloor6DL[] = "__OTR__ast_macbeth/aMaFloor6DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B128[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B128";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1B170[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1B170";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B458[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B458";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B498[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B498";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B578[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B578";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B678[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B678";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B738[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B738";
+
+static const ALIGN_ASSET(2) char aMaWall4DL[] = "__OTR__ast_macbeth/aMaWall4DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1B988[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1B988";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1BA08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1BA08";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1BA58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1BA58";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1BB38[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1BB38";
+
+static const ALIGN_ASSET(2) char D_MA_601BB78[] = "__OTR__ast_macbeth/D_MA_601BB78";
+
+static const ALIGN_ASSET(2) char D_MA_601BC78[] = "__OTR__ast_macbeth/D_MA_601BC78";
+
+static const ALIGN_ASSET(2) char D_MA_601BD08[] = "__OTR__ast_macbeth/D_MA_601BD08";
+
+static const ALIGN_ASSET(2) char D_MA_601BE08[] = "__OTR__ast_macbeth/D_MA_601BE08";
+
+static const ALIGN_ASSET(2) char D_MA_601BE90[] = "__OTR__ast_macbeth/D_MA_601BE90";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1BF38[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1BF38";
+
+static const ALIGN_ASSET(2) char aMaTowerTopDL[] = "__OTR__ast_macbeth/aMaTowerTopDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C0A8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C0A8";
+
+static const ALIGN_ASSET(2) char D_MA_601C170[] = "__OTR__ast_macbeth/D_MA_601C170";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C318[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C318";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C458[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C458";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C4D8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C4D8";
+
+static const ALIGN_ASSET(2) char aMaRailroadCartDL[] = "__OTR__ast_macbeth/aMaRailroadCartDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C7C8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C7C8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C848[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C848";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C898[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C898";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C958[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C958";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1C9D8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1C9D8";
+
+static const ALIGN_ASSET(2) char D_MA_601D188[] = "__OTR__ast_macbeth/D_MA_601D188";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1D1A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1D1A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1D270[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1D270";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1D370[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1D370";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1D608[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1D608";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1D808[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1D808";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1D968[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1D968";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1D9D8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1D9D8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1DB18[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1DB18";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1DBA0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1DBA0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1DC58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1DC58";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1DD30[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1DD30";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1DE88[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1DE88";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1DF18[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1DF18";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1E080[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1E080";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1E130[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1E130";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1E1D0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1E1D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1E270[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1E270";
+
+static const ALIGN_ASSET(2) char D_MA_601EA28[] = "__OTR__ast_macbeth/D_MA_601EA28";
+
+static const ALIGN_ASSET(2) char D_MA_601EAB0[] = "__OTR__ast_macbeth/D_MA_601EAB0";
+
+static const ALIGN_ASSET(2) char D_MA_601EBBC[] = "__OTR__ast_macbeth/D_MA_601EBBC";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1EBE0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1EBE0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1ED20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1ED20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1EE20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1EE20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1EF20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1EF20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1EFF0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1EFF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1F0F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1F0F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F188[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F188";
+
+static const ALIGN_ASSET(2) char aMaWall2DL[] = "__OTR__ast_macbeth/aMaWall2DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F228[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F228";
+
+static const ALIGN_ASSET(2) char aMaProximityLightTopDL[] = "__OTR__ast_macbeth/aMaProximityLightTopDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F308[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F308";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1F350[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1F350";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F3E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F3E8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1F430[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1F430";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F588[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F588";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F6C8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F6C8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1F730[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1F730";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F7D0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F7D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1F850[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1F850";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1F950[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1F950";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1FA50[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1FA50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1FB10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1FB10";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1FB90[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1FB90";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1FC58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1FC58";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1FCE0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1FCE0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1FDA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1FDA8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1FE50[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1FE50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_1FF20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_1FF20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_1FFC0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_1FFC0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20060[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20060";
+
+static const ALIGN_ASSET(2) char D_MA_60200E0[] = "__OTR__ast_macbeth/D_MA_60200E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_201D8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_201D8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_202E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_202E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_203A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_203A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_20420[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_20420";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_204E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_204E8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_20580[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_20580";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20648[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20648";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_206F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_206F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_207C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_207C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_20860[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_20860";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20920[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20920";
+
+static const ALIGN_ASSET(2) char D_MA_6020A30[] = "__OTR__ast_macbeth/D_MA_6020A30";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20B98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20B98";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20C58[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20C58";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_20D10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_20D10";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20DD0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20DD0";
+
+static const ALIGN_ASSET(2) char D_MA_6020E60[] = "__OTR__ast_macbeth/D_MA_6020E600";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_20FB8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_20FB8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21028[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21028";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_211B0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_211B0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21250[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21250";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_212A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_212A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21388[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21388";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_21460[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_21460";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21570[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21570";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_215B0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_215B0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_215E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_215E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_217C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_217C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_218F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_218F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_219D0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_219D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21A48[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21A48";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_21B10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_21B10";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21B88[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21B88";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_21C50[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_21C50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21CC8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21CC8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_21D90[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_21D90";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21E08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21E08";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_21ED0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_21ED0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_21FC0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_21FC0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_221C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_221C0";
+
+static const ALIGN_ASSET(2) char D_MA_6022200[] = "__OTR__ast_macbeth/D_MA_6022200";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_22278[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_22278";
+
+static const ALIGN_ASSET(2) char D_MA_60223C0[] = "__OTR__ast_macbeth/D_MA_60223C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_22418[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_22418";
+
+static const ALIGN_ASSET(2) char D_MA_6022450[] = "__OTR__ast_macbeth/D_MA_6022450";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_224E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_224E8";
+
+static const ALIGN_ASSET(2) char D_MA_6022530[] = "__OTR__ast_macbeth/D_MA_6022530";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_225C8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_225C8";
+
+static const ALIGN_ASSET(2) char D_MA_6022610[] = "__OTR__ast_macbeth/D_MA_6022610";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_226E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_226E8";
+
+static const ALIGN_ASSET(2) char D_MA_60227F0[] = "__OTR__ast_macbeth/D_MA_60227F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_229A8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_229A8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_22A68[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_22A68";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_22AC8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_22AC8";
+
+static const ALIGN_ASSET(2) char D_MA_6022B68[] = "__OTR__ast_macbeth/D_MA_6022B68";
+
+static const ALIGN_ASSET(2) char D_MA_6022F68[] = "__OTR__ast_macbeth/D_MA_6022F68";
+
+static const ALIGN_ASSET(2) char D_MA_60230C8[] = "__OTR__ast_macbeth/D_MA_60230C8";
+
+static const ALIGN_ASSET(2) char D_MA_60231C8[] = "__OTR__ast_macbeth/D_MA_60231C8";
+
+static const ALIGN_ASSET(2) char D_MA_6023228[] = "__OTR__ast_macbeth/D_MA_6023228";
+
+static const ALIGN_ASSET(2) char D_MA_6023328[] = "__OTR__ast_macbeth/D_MA_6023328";
+
+static const ALIGN_ASSET(2) char D_MA_6023388[] = "__OTR__ast_macbeth/D_MA_6023388";
+
+static const ALIGN_ASSET(2) char D_MA_6023788[] = "__OTR__ast_macbeth/D_MA_6023788";
+
+static const ALIGN_ASSET(2) char aMaWall3DL[] = "__OTR__ast_macbeth/aMaWall3DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23950[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23950";
+
+static const ALIGN_ASSET(2) char D_MA_60239D0[] = "__OTR__ast_macbeth/D_MA_60239D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23B88[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23B88";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23C48[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23C48";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23CE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23CE8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_23D50[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_23D50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23EE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23EE8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23F68[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23F68";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_23FC8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_23FC8";
+
+static const ALIGN_ASSET(2) char aMaBuilding1DL[] = "__OTR__ast_macbeth/aMaBuilding1DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_24130[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_24130";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_241F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_241F0";
+
+static const ALIGN_ASSET(2) char D_MA_6024230[] = "__OTR__ast_macbeth/D_MA_6024230";
+
+static const ALIGN_ASSET(2) char D_MA_6024630[] = "__OTR__ast_macbeth/D_MA_6024630";
+
+static const ALIGN_ASSET(2) char D_MA_6024670[] = "__OTR__ast_macbeth/D_MA_6024670";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_249E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_249E8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_24B28[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_24B28";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_24C68[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_24C68";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_24D28[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_24D28";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_24DE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_24DE8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_24EA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_24EA8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_24F30[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_24F30";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25098[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25098";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25118[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25118";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25158[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25158";
+
+static const ALIGN_ASSET(2) char aMaHorizontalLockBarDL[] = "__OTR__ast_macbeth/aMaHorizontalLockBarDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_252A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_252A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25320[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25320";
+
+static const ALIGN_ASSET(2) char aMaTowerBottomDL[] = "__OTR__ast_macbeth/aMaTowerBottomDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_255B0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_255B0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25670[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25670";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_256B0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_256B0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25770[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25770";
+
+static const ALIGN_ASSET(2) char aMaBarrierDL[] = "__OTR__ast_macbeth/aMaBarrierDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25808[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25808";
+
+static const ALIGN_ASSET(2) char aMaVerticalLockBarDL[] = "__OTR__ast_macbeth/aMaVerticalLockBarDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25970[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25970";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25A30[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25A30";
+
+static const ALIGN_ASSET(2) char D_MA_6025A70[] = "__OTR__ast_macbeth/D_MA_6025A70";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25B08[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25B08";
+
+static const ALIGN_ASSET(2) char D_MA_6025B50[] = "__OTR__ast_macbeth/D_MA_6025B50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25BE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25BE8";
+
+static const ALIGN_ASSET(2) char D_MA_6025CA0[] = "__OTR__ast_macbeth/D_MA_6025CA0";
+
+static const ALIGN_ASSET(2) char D_MA_6025DAC[] = "__OTR__ast_macbeth/D_MA_6025DAC";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_25DD0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_25DD0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_25F98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_25F98";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26028[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26028";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_261E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_261E8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_26270[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_26270";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26428[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26428";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_264E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_264E8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26568[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26568";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_265F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_265F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26758[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26758";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_267D8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_267D8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26818[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26818";
+
+static const ALIGN_ASSET(2) char D_MA_6026860[] = "__OTR__ast_macbeth/D_MA_6026860";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26910[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26910";
+
+static const ALIGN_ASSET(2) char D_MA_60269E0[] = "__OTR__ast_macbeth/D_MA_60269E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26B00[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26B00";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_26BC0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_26BC0";
+
+static const ALIGN_ASSET(2) char D_MA_6026C00[] = "__OTR__ast_macbeth/D_MA_6026C00";
+
+static const ALIGN_ASSET(2) char D_MA_6027000[] = "__OTR__ast_macbeth/D_MA_6027000";
+
+static const ALIGN_ASSET(2) char aMaWall1DL[] = "__OTR__ast_macbeth/aMaWall1DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27138[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27138";
+
+static const ALIGN_ASSET(2) char aMaBuilding2DL[] = "__OTR__ast_macbeth/aMaBuilding2DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_271E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_271E8";
+
+static const ALIGN_ASSET(2) char D_MA_6027320[] = "__OTR__ast_macbeth/D_MA_6027320";
+
+static const ALIGN_ASSET(2) char D_MA_602742C[] = "__OTR__ast_macbeth/D_MA_602742C";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_27450[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_27450";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27588[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27588";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27628[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27628";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_27750[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_27750";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27800[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27800";
+
+static const ALIGN_ASSET(2) char aMaFloor2DL[] = "__OTR__ast_macbeth/aMaFloor2DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27958[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27958";
+
+static const ALIGN_ASSET(2) char D_MA_6027A04[] = "__OTR__ast_macbeth/D_MA_6027A04";
+
+static const ALIGN_ASSET(2) char D_MA_6027AF0[] = "__OTR__ast_macbeth/D_MA_6027AF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_27B10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_27B10";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27BA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27BA8";
+
+static const ALIGN_ASSET(2) char D_MA_6027BF0[] = "__OTR__ast_macbeth/D_MA_6027BF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27C98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27C98";
+
+static const ALIGN_ASSET(2) char D_MA_6027D40[] = "__OTR__ast_macbeth/D_MA_6027D40";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_27DE8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_27DE8";
+
+static const ALIGN_ASSET(2) char D_MA_6027EB0[] = "__OTR__ast_macbeth/D_MA_6027EB0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_28160[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_28160";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_281C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_281C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_282C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_282C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_283A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_283A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_283E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_283E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_28460[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_28460";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_28580[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_28580";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_285C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_285C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_28680[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_28680";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_287A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_287A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_287E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_287E0";
+
+static const ALIGN_ASSET(2) char D_MA_60288A0[] = "__OTR__ast_macbeth/D_MA_60288A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_28D20[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_28D20";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_28D80[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_28D80";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_28E80[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_28E80";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_29080[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_29080";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_29280[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_29280";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_29460[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_29460";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_29640[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_29640";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_296F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_296F0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_297D0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_297D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_29810[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_29810";
+
+static const ALIGN_ASSET(2) char D_MA_6029890[] = "__OTR__ast_macbeth/D_MA_6029890";
+
+static const ALIGN_ASSET(2) char D_MA_VTX_602A0D0[] = "__OTR__ast_macbeth/D_MA_VTX_602A0D0";
+
+static const ALIGN_ASSET(2) char D_MA_602B980[] = "__OTR__ast_macbeth/D_MA_602B980";
+
+static const ALIGN_ASSET(2) char D_MA_602BB80[] = "__OTR__ast_macbeth/D_MA_602BB80";
+
+static const ALIGN_ASSET(2) char D_MA_602C380[] = "__OTR__ast_macbeth/D_MA_602C380";
+
+static const ALIGN_ASSET(2) char D_MA_602CB80[] = "__OTR__ast_macbeth/D_MA_602CB80";
+
+static const ALIGN_ASSET(2) char D_MA_602D380[] = "__OTR__ast_macbeth/D_MA_602D380";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2D560[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2D560";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2D5E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2D5E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2D720[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2D720";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2D8A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2D8A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2D998[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2D998";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2DA98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2DA98";
+
+static const ALIGN_ASSET(2) char aMaFloor1DL[] = "__OTR__ast_macbeth/aMaFloor1DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2DB38[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2DB38";
+
+static const ALIGN_ASSET(2) char aMaFloor3DL[] = "__OTR__ast_macbeth/aMaFloor3DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2DBD8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2DBD8";
+
+static const ALIGN_ASSET(2) char aMaFloor5DL[] = "__OTR__ast_macbeth/aMaFloor5DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2DC78[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2DC78";
+
+static const ALIGN_ASSET(2) char D_MA_602DCB8[] = "__OTR__ast_macbeth/D_MA_602DCB8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2E4C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2E4C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2E5E8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2E5E8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2E628[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2E628";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2E710[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2E710";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2E7B8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2E7B8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2E880[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2E880";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2E918[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2E918";
+
+static const ALIGN_ASSET(2) char D_MA_602EA0C[] = "__OTR__ast_macbeth/D_MA_602EA0C";
+
+static const ALIGN_ASSET(2) char D_MA_602EBB8[] = "__OTR__ast_macbeth/D_MA_602EBB8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2EBF0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2EBF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2ECA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2ECA8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2EDA0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2EDA0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2EE98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2EE98";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2EF98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2EF98";
+
+static const ALIGN_ASSET(2) char D_MA_602F098[] = "__OTR__ast_macbeth/D_MA_602F098";
+
+static const ALIGN_ASSET(2) char D_MA_602F264[] = "__OTR__ast_macbeth/D_MA_602F264";
+
+static const ALIGN_ASSET(2) char D_MA_602F2E0[] = "__OTR__ast_macbeth/D_MA_602F2E0";
+
+static const ALIGN_ASSET(2) char D_MA_602F36C[] = "__OTR__ast_macbeth/D_MA_602F36C";
+
+static const ALIGN_ASSET(2) char D_MA_602F380[] = "__OTR__ast_macbeth/D_MA_602F380";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F418[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F418";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2F460[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2F460";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F4F8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F4F8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2F540[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2F540";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F5D8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F5D8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2F620[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2F620";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F6B8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F6B8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2F700[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2F700";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F798[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F798";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2F7E0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2F7E0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F878[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F878";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2F8C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2F8C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2F970[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2F970";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2FA30[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2FA30";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2FAC8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2FAC8";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_2FB10[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_2FB10";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2FBA8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2FBA8";
+
+static const ALIGN_ASSET(2) char D_MA_602FBF0[] = "__OTR__ast_macbeth/D_MA_602FBF0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_2FCC8[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_2FCC8";
+
+static const ALIGN_ASSET(2) char D_MA_602FEB4[] = "__OTR__ast_macbeth/D_MA_602FEB4";
+
+static const ALIGN_ASSET(2) char D_MA_602FFA0[] = "__OTR__ast_macbeth/D_MA_602FFA0";
+
+static const ALIGN_ASSET(2) char D_MA_602FFC0[] = "__OTR__ast_macbeth/D_MA_602FFC0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_300C0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_300C0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_302A0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_302A0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_gfx_30390[] = "__OTR__ast_macbeth/ast_macbeth_seg6_gfx_30390";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_30438[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_30438";
+
+static const ALIGN_ASSET(2) char aMaTerrainBumpDL[] = "__OTR__ast_macbeth/aMaTerrainBumpDL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_30580[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_30580";
+
+static const ALIGN_ASSET(2) char aMaFloor4DL[] = "__OTR__ast_macbeth/aMaFloor4DL";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_30688[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_30688";
+
+static const ALIGN_ASSET(2) char D_MA_60306D0[] = "__OTR__ast_macbeth/D_MA_60306D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_306F0[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_306F0";
+
+static const ALIGN_ASSET(2) char D_MA_6030750[] = "__OTR__ast_macbeth/D_MA_6030750";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_30820[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_30820";
+
+static const ALIGN_ASSET(2) char D_MA_60309D0[] = "__OTR__ast_macbeth/D_MA_60309D0";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_30A98[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_30A98";
+
+static const ALIGN_ASSET(2) char D_MA_6030C50[] = "__OTR__ast_macbeth/D_MA_6030C50";
+
+static const ALIGN_ASSET(2) char ast_macbeth_seg6_vtx_30D30[] = "__OTR__ast_macbeth/ast_macbeth_seg6_vtx_30D30";
+
+static const ALIGN_ASSET(2) char D_MA_6030E30[] = "__OTR__ast_macbeth/D_MA_6030E30";
+
+static const ALIGN_ASSET(2) char D_MA_6030E74[] = "__OTR__ast_macbeth/D_MA_6030E74";
+
+static const ALIGN_ASSET(2) char D_MA_6030E80[] = "__OTR__ast_macbeth/D_MA_6030E80";
+
+static const ALIGN_ASSET(2) char D_MA_6030EB0[] = "__OTR__ast_macbeth/D_MA_6030EB0";
+
+static const ALIGN_ASSET(2) char D_MA_6030EBC[] = "__OTR__ast_macbeth/D_MA_6030EBC";
+
+static const ALIGN_ASSET(2) char D_MA_6030EEC[] = "__OTR__ast_macbeth/D_MA_6030EEC";
+
+static const ALIGN_ASSET(2) char D_MA_6030EF8[] = "__OTR__ast_macbeth/D_MA_6030EF8";
+
+static const ALIGN_ASSET(2) char D_MA_6030F28[] = "__OTR__ast_macbeth/D_MA_6030F28";
+
+static const ALIGN_ASSET(2) char D_MA_6030F34[] = "__OTR__ast_macbeth/D_MA_6030F34";
+
+static const ALIGN_ASSET(2) char D_MA_6030F64[] = "__OTR__ast_macbeth/D_MA_6030F64";
+
+static const ALIGN_ASSET(2) char D_MA_6030F7C[] = "__OTR__ast_macbeth/D_MA_6030F7C";
+
+static const ALIGN_ASSET(2) char D_MA_6030FC4[] = "__OTR__ast_macbeth/D_MA_6030FC4";
+
+static const ALIGN_ASSET(2) char D_MA_6030FD0[] = "__OTR__ast_macbeth/D_MA_6030FD0";
+
+static const ALIGN_ASSET(2) char D_MA_6031000[] = "__OTR__ast_macbeth/D_MA_6031000";
+
+static const ALIGN_ASSET(2) char D_MA_6035678[] = "__OTR__ast_macbeth/D_MA_6035678";
+
+static const ALIGN_ASSET(2) char D_MA_60357CC[] = "__OTR__ast_macbeth/D_MA_60357CC";
+
+static const ALIGN_ASSET(2) char D_MA_6035920[] = "__OTR__ast_macbeth/D_MA_6035920";
+
+static const ALIGN_ASSET(2) char D_MA_60359AC[] = "__OTR__ast_macbeth/D_MA_60359AC";
+
+static const ALIGN_ASSET(2) char aMaLocomotiveHitbox[] = "__OTR__ast_macbeth/aMaLocomotiveHitbox";
+
+static const ALIGN_ASSET(2) char aMaTrainCar2Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar2Hitbox";
+
+static const ALIGN_ASSET(2) char aMaTrainCar1Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar1Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6035A94[] = "__OTR__ast_macbeth/D_MA_6035A94";
+
+static const ALIGN_ASSET(2) char aMaTrainCar3Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar3Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6035B44[] = "__OTR__ast_macbeth/D_MA_6035B44";
+
+static const ALIGN_ASSET(2) char D_MA_6035BA8[] = "__OTR__ast_macbeth/D_MA_6035BA8";
+
+static const ALIGN_ASSET(2) char D_MA_6035C0C[] = "__OTR__ast_macbeth/D_MA_6035C0C";
+
+static const ALIGN_ASSET(2) char D_MA_6035C70[] = "__OTR__ast_macbeth/D_MA_6035C70";
+
+static const ALIGN_ASSET(2) char D_MA_6035CD4[] = "__OTR__ast_macbeth/D_MA_6035CD4";
+
+static const ALIGN_ASSET(2) char D_MA_6035D38[] = "__OTR__ast_macbeth/D_MA_6035D38";
+
+static const ALIGN_ASSET(2) char aMaTrainCar4Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar4Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6035DD0[] = "__OTR__ast_macbeth/D_MA_6035DD0";
+
+static const ALIGN_ASSET(2) char aMaTrainCar5Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar5Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6035E68[] = "__OTR__ast_macbeth/D_MA_6035E68";
+
+static const ALIGN_ASSET(2) char D_MA_6035ECC[] = "__OTR__ast_macbeth/D_MA_6035ECC";
+
+static const ALIGN_ASSET(2) char D_MA_6035F30[] = "__OTR__ast_macbeth/D_MA_6035F30";
+
+static const ALIGN_ASSET(2) char D_MA_6035F94[] = "__OTR__ast_macbeth/D_MA_6035F94";
+
+static const ALIGN_ASSET(2) char D_MA_6035FF8[] = "__OTR__ast_macbeth/D_MA_6035FF8";
+
+static const ALIGN_ASSET(2) char D_MA_603605C[] = "__OTR__ast_macbeth/D_MA_603605C";
+
+static const ALIGN_ASSET(2) char aMaTrainCar6Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar6Hitbox";
+
+static const ALIGN_ASSET(2) char aMaTrainCar7Hitbox[] = "__OTR__ast_macbeth/aMaTrainCar7Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6036188[] = "__OTR__ast_macbeth/D_MA_6036188";
+
+static const ALIGN_ASSET(2) char aMaTrainTrack13Hitbox[] = "__OTR__ast_macbeth/aMaTrainTrack13Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6036250[] = "__OTR__ast_macbeth/D_MA_6036250";
+
+static const ALIGN_ASSET(2) char aMaBuilding1Hitbox[] = "__OTR__ast_macbeth/aMaBuilding1Hitbox";
+
+static const ALIGN_ASSET(2) char aMaBuilding2Hitbox[] = "__OTR__ast_macbeth/aMaBuilding2Hitbox";
+
+static const ALIGN_ASSET(2) char aMaTowerHitbox[] = "__OTR__ast_macbeth/aMaTowerHitbox";
+
+static const ALIGN_ASSET(2) char aMaWall2Hitbox[] = "__OTR__ast_macbeth/aMaWall2Hitbox";
+
+static const ALIGN_ASSET(2) char aMaWall4Hitbox[] = "__OTR__ast_macbeth/aMaWall4Hitbox";
+
+static const ALIGN_ASSET(2) char aMaWall3Hitbox[] = "__OTR__ast_macbeth/aMaWall3Hitbox";
+
+static const ALIGN_ASSET(2) char aMaIndicatorSignHitbox[] = "__OTR__ast_macbeth/aMaIndicatorSignHitbox";
+
+static const ALIGN_ASSET(2) char aMaTerrainBumpHitbox[] = "__OTR__ast_macbeth/aMaTerrainBumpHitbox";
+
+static const ALIGN_ASSET(2) char aMaFloor1Hitbox[] = "__OTR__ast_macbeth/aMaFloor1Hitbox";
+
+static const ALIGN_ASSET(2) char aMaFloor2Hitbox[] = "__OTR__ast_macbeth/aMaFloor2Hitbox";
+
+static const ALIGN_ASSET(2) char aMaFloor3Hitbox[] = "__OTR__ast_macbeth/aMaFloor3Hitbox";
+
+static const ALIGN_ASSET(2) char aMaFloor4Hitbox[] = "__OTR__ast_macbeth/aMaFloor4Hitbox";
+
+static const ALIGN_ASSET(2) char aMaFloor5Hitbox[] = "__OTR__ast_macbeth/aMaFloor5Hitbox";
+
+static const ALIGN_ASSET(2) char aMaMaRailroadSwitchHitbox[] = "__OTR__ast_macbeth/aMaMaRailroadSwitchHitbox";
+
+static const ALIGN_ASSET(2) char D_MA_603648C[] = "__OTR__ast_macbeth/D_MA_603648C";
+
+static const ALIGN_ASSET(2) char aMaBoulderHitbox[] = "__OTR__ast_macbeth/aMaBoulderHitbox";
+
+static const ALIGN_ASSET(2) char aMaRailwaySignalHitbox[] = "__OTR__ast_macbeth/aMaRailwaySignalHitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6036520[] = "__OTR__ast_macbeth/D_MA_6036520";
+
+static const ALIGN_ASSET(2) char aMaSwitchTrackHitbox[] = "__OTR__ast_macbeth/aMaSwitchTrackHitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6036668[] = "__OTR__ast_macbeth/D_MA_6036668";
+
+static const ALIGN_ASSET(2) char aMaHorizontalLockBarHitbox[] = "__OTR__ast_macbeth/aMaHorizontalLockBarHitbox";
+
+static const ALIGN_ASSET(2) char aMaVerticalLockBarHitbox[] = "__OTR__ast_macbeth/aMaVerticalLockBarHitbox";
+
+static const ALIGN_ASSET(2) char aMaProximityLightHitbox[] = "__OTR__ast_macbeth/aMaProximityLightHitbox";
+
+static const ALIGN_ASSET(2) char aMaBarrierHitbox[] = "__OTR__ast_macbeth/aMaBarrierHitbox";
+
+static const ALIGN_ASSET(2) char aMaFallingBoulderHitbox[] = "__OTR__ast_macbeth/aMaFallingBoulderHitbox";
+
+static const ALIGN_ASSET(2) char aMaFloor6Hitbox[] = "__OTR__ast_macbeth/aMaFloor6Hitbox";
+
+static const ALIGN_ASSET(2) char aMaActor207Hitbox[] = "__OTR__ast_macbeth/aMaActor207Hitbox";
+
+static const ALIGN_ASSET(2) char D_MA_6036818[] = "__OTR__ast_macbeth/D_MA_6036818";
+
+static const ALIGN_ASSET(2) char aMaGuillotineHousingHitbox[] = "__OTR__ast_macbeth/aMaGuillotineHousingHitbox";
+
+static const ALIGN_ASSET(2) char aMaGuillotineHitbox[] = "__OTR__ast_macbeth/aMaGuillotineHitbox";
+
+static const ALIGN_ASSET(2) char aMaRailroadCartHitbox[] = "__OTR__ast_macbeth/aMaRailroadCartHitbox";
+
+static const ALIGN_ASSET(2) char aMaBombDropHitbox[] = "__OTR__ast_macbeth/aMaBombDropHitbox";
+
+static const ALIGN_ASSET(2) char aMaSpearHitbox[] = "__OTR__ast_macbeth/aMaSpearHitbox";
+
+static const ALIGN_ASSET(2) char aMaShockBoxHitbox[] = "__OTR__ast_macbeth/aMaShockBoxHitbox";
+
+static const char D_MA_60381D8[] = "__OTR__ast_macbeth/D_MA_60381D8";
+
diff --git a/include/assets/ast_map.h b/include/assets/ast_map.h
new file mode 100644
index 00000000..739889fa
--- /dev/null
+++ b/include/assets/ast_map.h
@@ -0,0 +1,435 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aMapRetryCourseGameOverTex[] = "__OTR__ast_map/aMapRetryCourseGameOverTex";
+
+static const ALIGN_ASSET(2) char aMapProceedNextCourseTex[] = "__OTR__ast_map/aMapProceedNextCourseTex";
+
+static const ALIGN_ASSET(2) char aMapRetryCourseLose1UPTex[] = "__OTR__ast_map/aMapRetryCourseLose1UPTex";
+
+static const ALIGN_ASSET(2) char aMapChangeCourseTex[] = "__OTR__ast_map/aMapChangeCourseTex";
+
+static const ALIGN_ASSET(2) char D_MAP_6001C80[] = "__OTR__ast_map/D_MAP_6001C80";
+
+static const ALIGN_ASSET(2) char D_MAP_6002160[] = "__OTR__ast_map/D_MAP_6002160";
+
+static const ALIGN_ASSET(2) char D_MAP_60030D0[] = "__OTR__ast_map/D_MAP_60030D0";
+
+static const ALIGN_ASSET(2) char D_MAP_6003B50[] = "__OTR__ast_map/D_MAP_6003B50";
+
+static const ALIGN_ASSET(2) char D_MAP_6004AC0[] = "__OTR__ast_map/D_MAP_6004AC0";
+
+static const ALIGN_ASSET(2) char D_MAP_6005740[] = "__OTR__ast_map/D_MAP_6005740";
+
+static const ALIGN_ASSET(2) char D_MAP_6006320[] = "__OTR__ast_map/D_MAP_6006320";
+
+static const ALIGN_ASSET(2) char D_MAP_6006E80[] = "__OTR__ast_map/D_MAP_6006E80";
+
+static const ALIGN_ASSET(2) char D_MAP_6007B90[] = "__OTR__ast_map/D_MAP_6007B90";
+
+static const ALIGN_ASSET(2) char D_MAP_6008990[] = "__OTR__ast_map/D_MAP_6008990";
+
+static const ALIGN_ASSET(2) char D_MAP_6009AD0[] = "__OTR__ast_map/D_MAP_6009AD0";
+
+static const ALIGN_ASSET(2) char D_MAP_600AD30[] = "__OTR__ast_map/D_MAP_600AD30";
+
+static const ALIGN_ASSET(2) char D_MAP_600B9B0[] = "__OTR__ast_map/D_MAP_600B9B0";
+
+static const ALIGN_ASSET(2) char D_MAP_600CC10[] = "__OTR__ast_map/D_MAP_600CC10";
+
+static const ALIGN_ASSET(2) char D_MAP_600D590[] = "__OTR__ast_map/D_MAP_600D590";
+
+static const ALIGN_ASSET(2) char D_MAP_600E210[] = "__OTR__ast_map/D_MAP_600E210";
+
+static const ALIGN_ASSET(2) char D_MAP_600F390[] = "__OTR__ast_map/D_MAP_600F390";
+
+static const ALIGN_ASSET(2) char D_MAP_6010010[] = "__OTR__ast_map/D_MAP_6010010";
+
+static const ALIGN_ASSET(2) char D_MAP_60105C0[] = "__OTR__ast_map/D_MAP_60105C0";
+
+static const ALIGN_ASSET(2) char D_MAP_6011660[] = "__OTR__ast_map/D_MAP_6011660";
+
+static const ALIGN_ASSET(2) char D_MAP_6011EA0[] = "__OTR__ast_map/D_MAP_6011EA0";
+
+static const ALIGN_ASSET(2) char D_MAP_60131A0[] = "__OTR__ast_map/D_MAP_60131A0";
+
+static const ALIGN_ASSET(2) char D_MAP_60139E0[] = "__OTR__ast_map/D_MAP_60139E0";
+
+static const ALIGN_ASSET(2) char D_MAP_6014360[] = "__OTR__ast_map/D_MAP_6014360";
+
+static const ALIGN_ASSET(2) char D_MAP_6014BA0[] = "__OTR__ast_map/D_MAP_6014BA0";
+
+static const ALIGN_ASSET(2) char D_MAP_6015CE0[] = "__OTR__ast_map/D_MAP_6015CE0";
+
+static const ALIGN_ASSET(2) char D_MAP_6016760[] = "__OTR__ast_map/D_MAP_6016760";
+
+static const ALIGN_ASSET(2) char D_MAP_6017640[] = "__OTR__ast_map/D_MAP_6017640";
+
+static const ALIGN_ASSET(2) char D_MAP_6018280[] = "__OTR__ast_map/D_MAP_6018280";
+
+static const ALIGN_ASSET(2) char aMapPrologueTextFadeTex[] = "__OTR__ast_map/aMapPrologueTextFadeTex";
+
+static const ALIGN_ASSET(2) char aMapVenomCloudTex[] = "__OTR__ast_map/aMapVenomCloudTex";
+
+static const ALIGN_ASSET(2) char aMapOptionBgTex[] = "__OTR__ast_map/aMapOptionBgTex";
+
+static const ALIGN_ASSET(2) char D_MAP_1B8B0[] = "__OTR__ast_map/D_MAP_601B8B0";
+
+static const ALIGN_ASSET(2) char aMapSectorXDL[] = "__OTR__ast_map/aMapSectorXDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1C120[] = "__OTR__ast_map/ast_map_seg6_vtx_1C120";
+
+static const ALIGN_ASSET(2) char D_MAP_601C160[] = "__OTR__ast_map/D_MAP_601C160";
+
+static const ALIGN_ASSET(2) char aMapSectorYDL[] = "__OTR__ast_map/aMapSectorYDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1C9B0[] = "__OTR__ast_map/ast_map_seg6_vtx_1C9B0";
+
+static const ALIGN_ASSET(2) char D_MAP_601C9F0[] = "__OTR__ast_map/D_MAP_601C9F0";
+
+static const ALIGN_ASSET(2) char aMapMedalDL[] = "__OTR__ast_map/aMapMedalDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1D290[] = "__OTR__ast_map/ast_map_seg6_vtx_1D290";
+
+static const ALIGN_ASSET(2) char aMapMedalTex[] = "__OTR__ast_map/aMapMedalTex";
+
+static const ALIGN_ASSET(2) char D_MAP_601DAF0[] = "__OTR__ast_map/D_MAP_601DAF0";
+
+static const ALIGN_ASSET(2) char aMapArwingIconTex[] = "__OTR__ast_map/aMapArwingIconTex";
+
+static const ALIGN_ASSET(2) char aMapArwingIconTLUT[] = "__OTR__ast_map/aMapArwingIconTLUT";
+
+static const ALIGN_ASSET(2) char aMapXTex[] = "__OTR__ast_map/aMapXTex";
+
+static const ALIGN_ASSET(2) char aMapXTLUT[] = "__OTR__ast_map/aMapXTLUT";
+
+static const ALIGN_ASSET(2) char aMapCursorDL[] = "__OTR__ast_map/aMapCursorDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1DD98[] = "__OTR__ast_map/ast_map_seg6_vtx_1DD98";
+
+static const ALIGN_ASSET(2) char D_MAP_601DDE8[] = "__OTR__ast_map/D_MAP_601DDE8";
+
+static const ALIGN_ASSET(2) char D_MAP_601DE68[] = "__OTR__ast_map/D_MAP_601DE68";
+
+static const ALIGN_ASSET(2) char aMapArea6DL[] = "__OTR__ast_map/aMapArea6DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E098[] = "__OTR__ast_map/ast_map_seg6_vtx_1E098";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E298[] = "__OTR__ast_map/ast_map_seg6_vtx_1E298";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E498[] = "__OTR__ast_map/ast_map_seg6_vtx_1E498";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E698[] = "__OTR__ast_map/ast_map_seg6_vtx_1E698";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1E7D8[] = "__OTR__ast_map/ast_map_seg6_vtx_1E7D8";
+
+static const ALIGN_ASSET(2) char D_MAP_601E8F8[] = "__OTR__ast_map/D_MAP_601E8F8";
+
+static const ALIGN_ASSET(2) char D_MAP_601E978[] = "__OTR__ast_map/D_MAP_601E978";
+
+static const ALIGN_ASSET(2) char aMapArea6ShipDL[] = "__OTR__ast_map/aMapArea6ShipDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1EC60[] = "__OTR__ast_map/ast_map_seg6_vtx_1EC60";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1EDF0[] = "__OTR__ast_map/ast_map_seg6_vtx_1EDF0";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1EE30[] = "__OTR__ast_map/ast_map_seg6_vtx_1EE30";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F020[] = "__OTR__ast_map/ast_map_seg6_vtx_1F020";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F220[] = "__OTR__ast_map/ast_map_seg6_vtx_1F220";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F280[] = "__OTR__ast_map/ast_map_seg6_vtx_1F280";
+
+static const ALIGN_ASSET(2) char D_MAP_601F2B0[] = "__OTR__ast_map/D_MAP_601F2B0";
+
+static const ALIGN_ASSET(2) char D_MAP_601F4B0[] = "__OTR__ast_map/D_MAP_601F4B0";
+
+static const ALIGN_ASSET(2) char D_MAP_601F4D0[] = "__OTR__ast_map/D_MAP_601F4D0";
+
+static const ALIGN_ASSET(2) char D_MAP_601F550[] = "__OTR__ast_map/D_MAP_601F550";
+
+static const ALIGN_ASSET(2) char D_MAP_601F570[] = "__OTR__ast_map/D_MAP_601F570";
+
+static const ALIGN_ASSET(2) char D_MAP_601F5F0[] = "__OTR__ast_map/D_MAP_601F5F0";
+
+static const ALIGN_ASSET(2) char D_MAP_601F610[] = "__OTR__ast_map/D_MAP_601F610";
+
+static const ALIGN_ASSET(2) char D_MAP_601F690[] = "__OTR__ast_map/D_MAP_601F690";
+
+static const ALIGN_ASSET(2) char aMapSectorZDL[] = "__OTR__ast_map/aMapSectorZDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_1F700[] = "__OTR__ast_map/ast_map_seg6_vtx_1F700";
+
+static const ALIGN_ASSET(2) char D_MAP_601F740[] = "__OTR__ast_map/D_MAP_601F740";
+
+static const ALIGN_ASSET(2) char aMapAquasTex[] = "__OTR__ast_map/aMapAquasTex";
+
+static const ALIGN_ASSET(2) char gMapAquasTLUT[] = "__OTR__ast_map/gMapAquasTLUT";
+
+static const ALIGN_ASSET(2) char aMapVenomTex[] = "__OTR__ast_map/aMapVenomTex";
+
+static const ALIGN_ASSET(2) char gMapVenomTLUT[] = "__OTR__ast_map/gMapVenomTLUT";
+
+static const ALIGN_ASSET(2) char aMapCorneriaTex[] = "__OTR__ast_map/aMapCorneriaTex";
+
+static const ALIGN_ASSET(2) char gMapCorneriaTLUT[] = "__OTR__ast_map/gMapCorneriaTLUT";
+
+static const ALIGN_ASSET(2) char aMapFortunaTex[] = "__OTR__ast_map/aMapFortunaTex";
+
+static const ALIGN_ASSET(2) char gMapFortunaTLUT[] = "__OTR__ast_map/gMapFortunaTLUT";
+
+static const ALIGN_ASSET(2) char aMapKatinaTex[] = "__OTR__ast_map/aMapKatinaTex";
+
+static const ALIGN_ASSET(2) char gMapKatinaTLUT[] = "__OTR__ast_map/gMapKatinaTLUT";
+
+static const ALIGN_ASSET(2) char aMapMacbethTex[] = "__OTR__ast_map/aMapMacbethTex";
+
+static const ALIGN_ASSET(2) char gMapMacbethTLUT[] = "__OTR__ast_map/gMapMacbethTLUT";
+
+static const ALIGN_ASSET(2) char aMapTitaniaTex[] = "__OTR__ast_map/aMapTitaniaTex";
+
+static const ALIGN_ASSET(2) char gMapTitaniaTLUT[] = "__OTR__ast_map/gMapTitaniaTLUT";
+
+static const ALIGN_ASSET(2) char aMapZonessTex[] = "__OTR__ast_map/aMapZonessTex";
+
+static const ALIGN_ASSET(2) char gMapZonessTLUT[] = "__OTR__ast_map/gMapZonessTLUT";
+
+static const ALIGN_ASSET(2) char aMapRadioCharFalcoTex[] = "__OTR__ast_map/aMapRadioCharFalcoTex";
+
+static const ALIGN_ASSET(2) char aMapRadioCharPeppyTex[] = "__OTR__ast_map/aMapRadioCharPeppyTex";
+
+static const ALIGN_ASSET(2) char aMapPrologue3Tex[] = "__OTR__ast_map/aMapPrologue3Tex";
+
+static const ALIGN_ASSET(2) char aMapPrologue2Tex[] = "__OTR__ast_map/aMapPrologue2Tex";
+
+static const ALIGN_ASSET(2) char aMapPrologue6Tex[] = "__OTR__ast_map/aMapPrologue6Tex";
+
+static const ALIGN_ASSET(2) char aMapPrologue4Tex[] = "__OTR__ast_map/aMapPrologue4Tex";
+
+static const ALIGN_ASSET(2) char aMapPrologue7Tex[] = "__OTR__ast_map/aMapPrologue7Tex";
+
+static const ALIGN_ASSET(2) char aMapPrologue5Tex[] = "__OTR__ast_map/aMapPrologue5Tex";
+
+static const ALIGN_ASSET(2) char aMapPrologue1Tex[] = "__OTR__ast_map/aMapPrologue1Tex";
+
+static const ALIGN_ASSET(2) char aMapRadioCharSlippyTex[] = "__OTR__ast_map/aMapRadioCharSlippyTex";
+
+static const ALIGN_ASSET(2) char aMapWhiteSquareTex[] = "__OTR__ast_map/aMapWhiteSquareTex";
+
+static const ALIGN_ASSET(2) char D_MAP_6044820[] = "__OTR__ast_map/D_MAP_6044820";
+
+static const ALIGN_ASSET(2) char D_MAP_6046CD0[] = "__OTR__ast_map/D_MAP_6046CD0";
+
+static const ALIGN_ASSET(2) char aMapPathBoxTex[] = "__OTR__ast_map/aMapPathBoxTex";
+
+static const ALIGN_ASSET(2) char aMapPlanetExplosionDL[] = "__OTR__ast_map/aMapPlanetExplosionDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_47A28[] = "__OTR__ast_map/ast_map_seg6_vtx_47A28";
+
+static const ALIGN_ASSET(2) char D_MAP_6047A68[] = "__OTR__ast_map/D_MAP_6047A68";
+
+static const ALIGN_ASSET(2) char aMapVenomCloudDL[] = "__OTR__ast_map/aMapVenomCloudDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_47F00[] = "__OTR__ast_map/ast_map_seg6_vtx_47F00";
+
+static const ALIGN_ASSET(2) char aMapVenomCloudEffectTex[] = "__OTR__ast_map/aMapVenomCloudEffectTex";
+
+static const ALIGN_ASSET(2) char D_MAP_6048F80[] = "__OTR__ast_map/D_MAP_6048F80";
+
+static const ALIGN_ASSET(2) char aMapExplosion4DL[] = "__OTR__ast_map/aMapExplosion4DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A018[] = "__OTR__ast_map/ast_map_seg6_vtx_4A018";
+
+static const ALIGN_ASSET(2) char D_MAP_604A048[] = "__OTR__ast_map/D_MAP_604A048";
+
+static const ALIGN_ASSET(2) char D_MAP_604A148[] = "__OTR__ast_map/D_MAP_604A148";
+
+static const ALIGN_ASSET(2) char aMapExplosion3DL[] = "__OTR__ast_map/aMapExplosion3DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A228[] = "__OTR__ast_map/ast_map_seg6_vtx_4A228";
+
+static const ALIGN_ASSET(2) char D_MAP_604A258[] = "__OTR__ast_map/D_MAP_604A258";
+
+static const ALIGN_ASSET(2) char D_MAP_604A358[] = "__OTR__ast_map/D_MAP_604A358";
+
+static const ALIGN_ASSET(2) char aMapExplosion2DL[] = "__OTR__ast_map/aMapExplosion2DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A498[] = "__OTR__ast_map/ast_map_seg6_vtx_4A498";
+
+static const ALIGN_ASSET(2) char D_MAP_604A4C8[] = "__OTR__ast_map/D_MAP_604A4C8";
+
+static const ALIGN_ASSET(2) char D_MAP_604A5C8[] = "__OTR__ast_map/D_MAP_604A5C8";
+
+static const ALIGN_ASSET(2) char aMapExplosion1DL[] = "__OTR__ast_map/aMapExplosion1DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4A7A8[] = "__OTR__ast_map/ast_map_seg6_vtx_4A7A8";
+
+static const ALIGN_ASSET(2) char D_MAP_604A7D8[] = "__OTR__ast_map/D_MAP_604A7D8";
+
+static const ALIGN_ASSET(2) char D_MAP_604A8D8[] = "__OTR__ast_map/D_MAP_604A8D8";
+
+static const ALIGN_ASSET(2) char aMapArwingDL[] = "__OTR__ast_map/aMapArwingDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4AD50[] = "__OTR__ast_map/ast_map_seg6_vtx_4AD50";
+
+static const ALIGN_ASSET(2) char D_MAP_604B510[] = "__OTR__ast_map/D_MAP_604B510";
+
+static const ALIGN_ASSET(2) char D_MAP_604B590[] = "__OTR__ast_map/D_MAP_604B590";
+
+static const ALIGN_ASSET(2) char D_MAP_604B5B0[] = "__OTR__ast_map/D_MAP_604B5B0";
+
+static const ALIGN_ASSET(2) char D_MAP_604B630[] = "__OTR__ast_map/D_MAP_604B630";
+
+static const ALIGN_ASSET(2) char D_MAP_604B650[] = "__OTR__ast_map/D_MAP_604B650";
+
+static const ALIGN_ASSET(2) char aMapBolseDL[] = "__OTR__ast_map/aMapBolseDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4B988[] = "__OTR__ast_map/ast_map_seg6_vtx_4B988";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4BA08[] = "__OTR__ast_map/ast_map_seg6_vtx_4BA08";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4BA48[] = "__OTR__ast_map/ast_map_seg6_vtx_4BA48";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4BB48[] = "__OTR__ast_map/ast_map_seg6_vtx_4BB48";
+
+static const ALIGN_ASSET(2) char D_MAP_604BC48[] = "__OTR__ast_map/D_MAP_604BC48";
+
+static const ALIGN_ASSET(2) char D_MAP_604BE48[] = "__OTR__ast_map/D_MAP_604BE48";
+
+static const ALIGN_ASSET(2) char D_MAP_604BE68[] = "__OTR__ast_map/D_MAP_604BE68";
+
+static const ALIGN_ASSET(2) char D_MAP_604C068[] = "__OTR__ast_map/D_MAP_604C068";
+
+static const ALIGN_ASSET(2) char D_MAP_604C088[] = "__OTR__ast_map/D_MAP_604C088";
+
+static const ALIGN_ASSET(2) char D_MAP_604C288[] = "__OTR__ast_map/D_MAP_604C288";
+
+static const ALIGN_ASSET(2) char D_MAP_604C2A8[] = "__OTR__ast_map/D_MAP_604C2A8";
+
+static const ALIGN_ASSET(2) char D_MAP_604C328[] = "__OTR__ast_map/D_MAP_604C328";
+
+static const ALIGN_ASSET(2) char aMapTvScreenGlowDL[] = "__OTR__ast_map/aMapTvScreenGlowDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4C3C0[] = "__OTR__ast_map/ast_map_seg6_vtx_4C3C0";
+
+static const ALIGN_ASSET(2) char aMapTvScreenGlowTex[] = "__OTR__ast_map/aMapTvScreenGlowTex";
+
+static const ALIGN_ASSET(2) char aMapTitaniaRings1DL[] = "__OTR__ast_map/aMapTitaniaRings1DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4C598[] = "__OTR__ast_map/ast_map_seg6_vtx_4C598";
+
+static const ALIGN_ASSET(2) char D_MAP_604C5D8[] = "__OTR__ast_map/D_MAP_604C5D8";
+
+static const ALIGN_ASSET(2) char aMapTitaniaRings2DL[] = "__OTR__ast_map/aMapTitaniaRings2DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4CE38[] = "__OTR__ast_map/ast_map_seg6_vtx_4CE38";
+
+static const ALIGN_ASSET(2) char D_MAP_604CE78[] = "__OTR__ast_map/D_MAP_604CE78";
+
+static const ALIGN_ASSET(2) char D_MAP_604D680[] = "__OTR__ast_map/D_MAP_604D680";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4D6D8[] = "__OTR__ast_map/ast_map_seg6_vtx_4D6D8";
+
+static const ALIGN_ASSET(2) char D_MAP_604D708[] = "__OTR__ast_map/D_MAP_604D708";
+
+static const ALIGN_ASSET(2) char aMapSolarDL[] = "__OTR__ast_map/aMapSolarDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_4DC20[] = "__OTR__ast_map/ast_map_seg6_vtx_4DC20";
+
+static const ALIGN_ASSET(2) char D_MAP_604DD20[] = "__OTR__ast_map/D_MAP_604DD20";
+
+static const ALIGN_ASSET(2) char D_MAP_604ED20[] = "__OTR__ast_map/D_MAP_604ED20";
+
+static const ALIGN_ASSET(2) char D_MAP_604FD20[] = "__OTR__ast_map/D_MAP_604FD20";
+
+static const ALIGN_ASSET(2) char D_MAP_6050D20[] = "__OTR__ast_map/D_MAP_6050D20";
+
+static const ALIGN_ASSET(2) char aMapGralPepperFace2DL[] = "__OTR__ast_map/aMapGralPepperFace2DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51E20[] = "__OTR__ast_map/ast_map_seg6_vtx_51E20";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51E60[] = "__OTR__ast_map/ast_map_seg6_vtx_51E60";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51EA0[] = "__OTR__ast_map/ast_map_seg6_vtx_51EA0";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_51EE0[] = "__OTR__ast_map/ast_map_seg6_vtx_51EE0";
+
+static const ALIGN_ASSET(2) char D_MAP_6051F20[] = "__OTR__ast_map/D_MAP_6051F20";
+
+static const ALIGN_ASSET(2) char D_MAP_6052F20[] = "__OTR__ast_map/D_MAP_6052F20";
+
+static const ALIGN_ASSET(2) char D_MAP_6053F20[] = "__OTR__ast_map/D_MAP_6053F20";
+
+static const ALIGN_ASSET(2) char D_MAP_6054F20[] = "__OTR__ast_map/D_MAP_6054F20";
+
+static const ALIGN_ASSET(2) char aMapGralPepperFace1DL[] = "__OTR__ast_map/aMapGralPepperFace1DL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_56020[] = "__OTR__ast_map/ast_map_seg6_vtx_56020";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_56060[] = "__OTR__ast_map/ast_map_seg6_vtx_56060";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_560A0[] = "__OTR__ast_map/ast_map_seg6_vtx_560A0";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_560E0[] = "__OTR__ast_map/ast_map_seg6_vtx_560E0";
+
+static const ALIGN_ASSET(2) char D_MAP_6056120[] = "__OTR__ast_map/D_MAP_6056120";
+
+static const ALIGN_ASSET(2) char D_MAP_6057120[] = "__OTR__ast_map/D_MAP_6057120";
+
+static const ALIGN_ASSET(2) char D_MAP_6058120[] = "__OTR__ast_map/D_MAP_6058120";
+
+static const ALIGN_ASSET(2) char D_MAP_6059120[] = "__OTR__ast_map/D_MAP_6059120";
+
+static const ALIGN_ASSET(2) char D_MAP_605A120[] = "__OTR__ast_map/D_MAP_605A120";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5A1B0[] = "__OTR__ast_map/ast_map_seg6_vtx_5A1B0";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5A1F0[] = "__OTR__ast_map/ast_map_seg6_vtx_5A1F0";
+
+static const ALIGN_ASSET(2) char D_MAP_605A230[] = "__OTR__ast_map/D_MAP_605A230";
+
+static const ALIGN_ASSET(2) char D_MAP_605B230[] = "__OTR__ast_map/D_MAP_605B230";
+
+static const ALIGN_ASSET(2) char D_MAP_605C230[] = "__OTR__ast_map/D_MAP_605C230";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C410[] = "__OTR__ast_map/ast_map_seg6_vtx_5C410";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C450[] = "__OTR__ast_map/ast_map_seg6_vtx_5C450";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C490[] = "__OTR__ast_map/ast_map_seg6_vtx_5C490";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C4D0[] = "__OTR__ast_map/ast_map_seg6_vtx_5C4D0";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C510[] = "__OTR__ast_map/ast_map_seg6_vtx_5C510";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C550[] = "__OTR__ast_map/ast_map_seg6_vtx_5C550";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C590[] = "__OTR__ast_map/ast_map_seg6_vtx_5C590";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_5C5D0[] = "__OTR__ast_map/ast_map_seg6_vtx_5C5D0";
+
+static const ALIGN_ASSET(2) char D_MAP_605C610[] = "__OTR__ast_map/D_MAP_605C610";
+
+static const ALIGN_ASSET(2) char D_MAP_605CE10[] = "__OTR__ast_map/D_MAP_605CE10";
+
+static const ALIGN_ASSET(2) char D_MAP_605D610[] = "__OTR__ast_map/D_MAP_605D610";
+
+static const ALIGN_ASSET(2) char D_MAP_605DE10[] = "__OTR__ast_map/D_MAP_605DE10";
+
+static const ALIGN_ASSET(2) char D_MAP_605E610[] = "__OTR__ast_map/D_MAP_605E610";
+
+static const ALIGN_ASSET(2) char D_MAP_605EE10[] = "__OTR__ast_map/D_MAP_605EE10";
+
+static const ALIGN_ASSET(2) char D_MAP_605F610[] = "__OTR__ast_map/D_MAP_605F610";
+
+static const ALIGN_ASSET(2) char D_MAP_605FE10[] = "__OTR__ast_map/D_MAP_605FE10";
+
+static const ALIGN_ASSET(2) char aMapMeteorDL[] = "__OTR__ast_map/aMapMeteorDL";
+
+static const ALIGN_ASSET(2) char ast_map_seg6_vtx_60668[] = "__OTR__ast_map/ast_map_seg6_vtx_60668";
+
+static const ALIGN_ASSET(2) char D_MAP_6060698[] = "__OTR__ast_map/D_MAP_6060698";
+
diff --git a/include/assets/ast_meteo.h b/include/assets/ast_meteo.h
new file mode 100644
index 00000000..afc418a2
--- /dev/null
+++ b/include/assets/ast_meteo.h
@@ -0,0 +1,498 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aMeTitleCardTex[] = "__OTR__ast_meteo/aMeTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_ME_6000A80[] = "__OTR__ast_meteo/D_ME_6000A80";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AD0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AD0";
+
+static const ALIGN_ASSET(2) char D_ME_6000B10[] = "__OTR__ast_meteo/D_ME_6000B10";
+
+static const ALIGN_ASSET(2) char aMeCrusherDL[] = "__OTR__ast_meteo/aMeCrusherDL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BF8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BF8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1DF8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1DF8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1FD8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1FD8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_21D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_21D8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23A8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2578[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2578";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2758[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2758";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2958[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2958";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2B48[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2B48";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2D48[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2D48";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_2F48[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_2F48";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3148[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3148";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3348[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3348";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3538[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3538";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_35D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_35D8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_37D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_37D8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_39A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_39A8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3A08[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3A08";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3BD8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3BD8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3D68[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3D68";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_3E98[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_3E98";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4098[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4098";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4298[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4298";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4448[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4448";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4558[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4558";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_4638[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_4638";
+
+static const ALIGN_ASSET(2) char D_ME_6004738[] = "__OTR__ast_meteo/D_ME_6004738";
+
+static const ALIGN_ASSET(2) char D_ME_6004F38[] = "__OTR__ast_meteo/D_ME_6004F38";
+
+static const ALIGN_ASSET(2) char D_ME_6005738[] = "__OTR__ast_meteo/D_ME_6005738";
+
+static const ALIGN_ASSET(2) char D_ME_6005F38[] = "__OTR__ast_meteo/D_ME_6005F38";
+
+static const ALIGN_ASSET(2) char D_ME_6006738[] = "__OTR__ast_meteo/D_ME_6006738";
+
+static const ALIGN_ASSET(2) char D_ME_6006F38[] = "__OTR__ast_meteo/D_ME_6006F38";
+
+static const ALIGN_ASSET(2) char D_ME_6006FB8[] = "__OTR__ast_meteo/D_ME_6006FB8";
+
+static const ALIGN_ASSET(2) char D_ME_6007038[] = "__OTR__ast_meteo/D_ME_6007038";
+
+static const ALIGN_ASSET(2) char D_ME_6007838[] = "__OTR__ast_meteo/D_ME_6007838";
+
+static const ALIGN_ASSET(2) char D_ME_60078B8[] = "__OTR__ast_meteo/D_ME_60078B8";
+
+static const ALIGN_ASSET(2) char D_ME_60080C0[] = "__OTR__ast_meteo/D_ME_60080C0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8378[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8378";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_83C8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_83C8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_85C8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_85C8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_86A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_86A8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8888[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8888";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_88B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_88B8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8918[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8918";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8958[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8958";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_89B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_89B8";
+
+static const ALIGN_ASSET(2) char D_ME_6008A18[] = "__OTR__ast_meteo/D_ME_6008A18";
+
+static const ALIGN_ASSET(2) char aMeFlipBot1DL[] = "__OTR__ast_meteo/aMeFlipBot1DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8C78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8C78";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8E78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8E78";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8EA8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8EA8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8F78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8F78";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_8FB8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_8FB8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_9198[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_9198";
+
+static const ALIGN_ASSET(2) char D_ME_6009228[] = "__OTR__ast_meteo/D_ME_6009228";
+
+static const ALIGN_ASSET(2) char D_ME_6009A28[] = "__OTR__ast_meteo/D_ME_6009A28";
+
+static const ALIGN_ASSET(2) char D_ME_6009C28[] = "__OTR__ast_meteo/D_ME_6009C28";
+
+static const ALIGN_ASSET(2) char aMeFlipBot2DL[] = "__OTR__ast_meteo/aMeFlipBot2DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_9E90[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_9E90";
+
+static const ALIGN_ASSET(2) char aMeBigMeteorDL[] = "__OTR__ast_meteo/aMeBigMeteorDL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A0D0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A0D0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A2B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A2B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A490[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A490";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A670[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A670";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_A850[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_A850";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AA30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AA30";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AC10[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AC10";
+
+static const ALIGN_ASSET(2) char aMeMeteor7DL[] = "__OTR__ast_meteo/aMeMeteor7DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AD90[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AD90";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_AF90[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_AF90";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_B190[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_B190";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_B390[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_B390";
+
+static const ALIGN_ASSET(2) char D_ME_600B540[] = "__OTR__ast_meteo/D_ME_600B540";
+
+static const ALIGN_ASSET(2) char aMeSecretMarker2DL[] = "__OTR__ast_meteo/aMeSecretMarker2DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_BDC0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_BDC0";
+
+static const ALIGN_ASSET(2) char D_ME_600BF30[] = "__OTR__ast_meteo/D_ME_600BF30";
+
+static const ALIGN_ASSET(2) char aMeRockGull2DL[] = "__OTR__ast_meteo/aMeRockGull2DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C1A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C1A0";
+
+static const ALIGN_ASSET(2) char aMeMeteor6DL[] = "__OTR__ast_meteo/aMeMeteor6DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C358[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C358";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C548[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C548";
+
+static const ALIGN_ASSET(2) char aMeRockGull3DL[] = "__OTR__ast_meteo/aMeRockGull3DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C7E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C7E0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_C9D0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_C9D0";
+
+static const ALIGN_ASSET(2) char aMeRockGull1DL[] = "__OTR__ast_meteo/aMeRockGull1DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_CB30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_CB30";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_CD30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_CD30";
+
+static const ALIGN_ASSET(2) char aMeMeteorShower3DL[] = "__OTR__ast_meteo/aMeMeteorShower3DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_CDB8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_CDB8";
+
+static const ALIGN_ASSET(2) char D_ME_600CDE8[] = "__OTR__ast_meteo/D_ME_600CDE8";
+
+static const ALIGN_ASSET(2) char D_ME_600DDF0[] = "__OTR__ast_meteo/D_ME_600DDF0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E038[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E038";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E078[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E078";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E0B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E0B8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E0F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E0F8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E138[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E138";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E178[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E178";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E1B8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E1B8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_E1F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_E1F8";
+
+static const ALIGN_ASSET(2) char D_ME_600E238[] = "__OTR__ast_meteo/D_ME_600E238";
+
+static const ALIGN_ASSET(2) char D_ME_600F238[] = "__OTR__ast_meteo/D_ME_600F238";
+
+static const ALIGN_ASSET(2) char D_ME_6010238[] = "__OTR__ast_meteo/D_ME_6010238";
+
+static const ALIGN_ASSET(2) char D_ME_6011238[] = "__OTR__ast_meteo/D_ME_6011238";
+
+static const ALIGN_ASSET(2) char D_ME_6012238[] = "__OTR__ast_meteo/D_ME_6012238";
+
+static const ALIGN_ASSET(2) char D_ME_6013238[] = "__OTR__ast_meteo/D_ME_6013238";
+
+static const ALIGN_ASSET(2) char D_ME_6014238[] = "__OTR__ast_meteo/D_ME_6014238";
+
+static const ALIGN_ASSET(2) char D_ME_6015238[] = "__OTR__ast_meteo/D_ME_6015238";
+
+static const ALIGN_ASSET(2) char aMeMeteorShower2DL[] = "__OTR__ast_meteo/aMeMeteorShower2DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_16298[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_16298";
+
+static const ALIGN_ASSET(2) char D_ME_60162C8[] = "__OTR__ast_meteo/D_ME_60162C8";
+
+static const ALIGN_ASSET(2) char D_ME_60172C8[] = "__OTR__ast_meteo/D_ME_60172C8";
+
+static const ALIGN_ASSET(2) char aMeMeteorShower1DL[] = "__OTR__ast_meteo/aMeMeteorShower1DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17B28[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17B28";
+
+static const ALIGN_ASSET(2) char aMeMeteor3DL[] = "__OTR__ast_meteo/aMeMeteor3DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17C98[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17C98";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17CC8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17CC8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_17EB8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_17EB8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_180A8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_180A8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18288[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18288";
+
+static const ALIGN_ASSET(2) char aMeLaserCannon2DL[] = "__OTR__ast_meteo/aMeLaserCannon2DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18620[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18620";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_187A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_187A0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_187E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_187E0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_188A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_188A0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18920[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18920";
+
+static const ALIGN_ASSET(2) char aMeMeteor5DL[] = "__OTR__ast_meteo/aMeMeteor5DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_189F0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_189F0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18BD0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18BD0";
+
+static const ALIGN_ASSET(2) char aMeMeteor1DL[] = "__OTR__ast_meteo/aMeMeteor1DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18D18[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18D18";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_18F08[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_18F08";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_190F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_190F8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_192F8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_192F8";
+
+static const ALIGN_ASSET(2) char aMeMeteor4DL[] = "__OTR__ast_meteo/aMeMeteor4DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_194E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_194E0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_196D0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_196D0";
+
+static const ALIGN_ASSET(2) char D_ME_6019880[] = "__OTR__ast_meteo/D_ME_6019880";
+
+static const ALIGN_ASSET(2) char D_ME_601A080[] = "__OTR__ast_meteo/D_ME_601A080";
+
+static const ALIGN_ASSET(2) char aMeSecretMarker1DL[] = "__OTR__ast_meteo/aMeSecretMarker1DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1A988[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1A988";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1AB78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1AB78";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1AD58[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1AD58";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1ADF8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1ADF8";
+
+static const ALIGN_ASSET(2) char aMeMeteoTunnelDL[] = "__OTR__ast_meteo/aMeMeteoTunnelDL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B2B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B2B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B4B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B4B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B6B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B6B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1B8B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1B8B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BAB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BAB0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BCB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BCB0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1BEB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1BEB0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C0B0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C0B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C2A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C2A0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C480[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C480";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C680[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C680";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1C880[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1C880";
+
+static const ALIGN_ASSET(2) char D_ME_601C8E0[] = "__OTR__ast_meteo/D_ME_601C8E0";
+
+static const ALIGN_ASSET(2) char D_ME_601D800[] = "__OTR__ast_meteo/D_ME_601D800";
+
+static const ALIGN_ASSET(2) char aMeHopBotAnim[] = "__OTR__ast_meteo/aMeHopBotAnim";
+
+static const ALIGN_ASSET(2) char aMeHopBotSkel[] = "__OTR__ast_meteo/aMeHopBotSkel";
+
+static const ALIGN_ASSET(2) char D_ME_601EA00[] = "__OTR__ast_meteo/D_ME_601EA00";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1EA58[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1EA58";
+
+static const ALIGN_ASSET(2) char D_ME_601EA98[] = "__OTR__ast_meteo/D_ME_601EA98";
+
+static const ALIGN_ASSET(2) char aMeMeteor2DL[] = "__OTR__ast_meteo/aMeMeteor2DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F478[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F478";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F668[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F668";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F698[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F698";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F6D8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F6D8";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1F718[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1F718";
+
+static const ALIGN_ASSET(2) char D_ME_601F778[] = "__OTR__ast_meteo/D_ME_601F778";
+
+static const ALIGN_ASSET(2) char D_ME_601FF80[] = "__OTR__ast_meteo/D_ME_601FF80";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_1FFD8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_1FFD8";
+
+static const ALIGN_ASSET(2) char D_ME_6020008[] = "__OTR__ast_meteo/D_ME_6020008";
+
+static const ALIGN_ASSET(2) char aMeCorneriaBgDL[] = "__OTR__ast_meteo/aMeCorneriaBgDL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_208A0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_208A0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_208E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_208E0";
+
+static const ALIGN_ASSET(2) char aMeCorneriaBg1Tex[] = "__OTR__ast_meteo/aMeCorneriaBg1Tex";
+
+static const ALIGN_ASSET(2) char aMeCorneriaBg2Tex[] = "__OTR__ast_meteo/aMeCorneriaBg2Tex";
+
+static const ALIGN_ASSET(2) char aMeLaserCannon1DL[] = "__OTR__ast_meteo/aMeLaserCannon1DL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22AB0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22AB0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22C30[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22C30";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22E20[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22E20";
+
+static const ALIGN_ASSET(2) char D_ME_6022E50[] = "__OTR__ast_meteo/D_ME_6022E50";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_22F78[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_22F78";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23138[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23138";
+
+static const ALIGN_ASSET(2) char D_ME_60231C0[] = "__OTR__ast_meteo/D_ME_60231C0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23230[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23230";
+
+static const ALIGN_ASSET(2) char D_ME_6023290[] = "__OTR__ast_meteo/D_ME_6023290";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23300[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23300";
+
+static const ALIGN_ASSET(2) char D_ME_6023360[] = "__OTR__ast_meteo/D_ME_6023360";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23488[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23488";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23668[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23668";
+
+static const ALIGN_ASSET(2) char D_ME_60236F0[] = "__OTR__ast_meteo/D_ME_60236F0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23748[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23748";
+
+static const ALIGN_ASSET(2) char D_ME_6023788[] = "__OTR__ast_meteo/D_ME_6023788";
+
+static const ALIGN_ASSET(2) char D_ME_6023810[] = "__OTR__ast_meteo/D_ME_6023810";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_23868[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_23868";
+
+static const ALIGN_ASSET(2) char D_ME_60238A8[] = "__OTR__ast_meteo/D_ME_60238A8";
+
+static const ALIGN_ASSET(2) char D_ME_60240B0[] = "__OTR__ast_meteo/D_ME_60240B0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_242C0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_242C0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_243E0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_243E0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24580[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24580";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24660[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24660";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24860[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24860";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_248F0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_248F0";
+
+static const ALIGN_ASSET(2) char D_ME_6024AD0[] = "__OTR__ast_meteo/D_ME_6024AD0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24B28[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24B28";
+
+static const ALIGN_ASSET(2) char aMeMolarRockDL[] = "__OTR__ast_meteo/aMeMolarRockDL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24D10[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24D10";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_24F10[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_24F10";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_25110[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_25110";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_252F0[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_252F0";
+
+static const ALIGN_ASSET(2) char D_ME_6025350[] = "__OTR__ast_meteo/D_ME_6025350";
+
+static const ALIGN_ASSET(2) char aMeMeteoBallDL[] = "__OTR__ast_meteo/aMeMeteoBallDL";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_25BA8[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_25BA8";
+
+static const ALIGN_ASSET(2) char D_ME_6025BE8[] = "__OTR__ast_meteo/D_ME_6025BE8";
+
+static const ALIGN_ASSET(2) char D_ME_60263F0[] = "__OTR__ast_meteo/D_ME_60263F0";
+
+static const ALIGN_ASSET(2) char ast_meteo_seg6_vtx_26448[] = "__OTR__ast_meteo/ast_meteo_seg6_vtx_26448";
+
+static const ALIGN_ASSET(2) char D_ME_6026478[] = "__OTR__ast_meteo/D_ME_6026478";
+
+static const ALIGN_ASSET(2) char D_ME_6026C80[] = "__OTR__ast_meteo/D_ME_6026C80";
+
+static const ALIGN_ASSET(2) char D_ME_6026CC4[] = "__OTR__ast_meteo/D_ME_6026CC4";
+
+static const ALIGN_ASSET(2) char D_ME_602B148[] = "__OTR__ast_meteo/D_ME_602B148";
+
+static const char D_ME_602F3AC[] = "__OTR__ast_meteo/D_ME_602F3AC";
+
+static const ALIGN_ASSET(2) char aMeFlipBotHitbox[] = "__OTR__ast_meteo/aMeFlipBotHitbox";
+
+static const ALIGN_ASSET(2) char D_ME_602F638[] = "__OTR__ast_meteo/D_ME_602F638";
+
+static const ALIGN_ASSET(2) char aMeMeteoBallHitbox[] = "__OTR__ast_meteo/aMeMeteoBallHitbox";
+
+static const ALIGN_ASSET(2) char aMeHopBotHitbox[] = "__OTR__ast_meteo/aMeHopBotHitbox";
+
+static const ALIGN_ASSET(2) char aMeMeteor1Hitbox[] = "__OTR__ast_meteo/aMeMeteor1Hitbox";
+
+static const ALIGN_ASSET(2) char aMeMeteor2Hitbox[] = "__OTR__ast_meteo/aMeMeteor2Hitbox";
+
+static const ALIGN_ASSET(2) char aMeLaserCannon1Hitbox[] = "__OTR__ast_meteo/aMeLaserCannon1Hitbox";
+
+static const ALIGN_ASSET(2) char aMeLaserCannon2Hitbox[] = "__OTR__ast_meteo/aMeLaserCannon2Hitbox";
+
+static const ALIGN_ASSET(2) char aMeCrusherHitbox[] = "__OTR__ast_meteo/aMeCrusherHitbox";
+
+static const ALIGN_ASSET(2) char aMeCrusherShieldHitbox[] = "__OTR__ast_meteo/aMeCrusherShieldHitbox";
+
+static const ALIGN_ASSET(2) char D_ME_602FA9C[] = "__OTR__ast_meteo/D_ME_602FA9C";
+
+static const ALIGN_ASSET(2) char D_ME_60300C8[] = "__OTR__ast_meteo/D_ME_60300C8";
+
+static const ALIGN_ASSET(2) char D_ME_6030208[] = "__OTR__ast_meteo/D_ME_6030208";
+
+static const ALIGN_ASSET(2) char D_ME_6030550[] = "__OTR__ast_meteo/D_ME_6030550";
+
+static const ALIGN_ASSET(2) char D_ME_60305DC[] = "__OTR__ast_meteo/D_ME_60305DC";
+
+static const ALIGN_ASSET(2) char D_ME_603184C[] = "__OTR__ast_meteo/D_ME_603184C";
+
diff --git a/include/assets/ast_option.h b/include/assets/ast_option.h
new file mode 100644
index 00000000..c9f653dd
--- /dev/null
+++ b/include/assets/ast_option.h
@@ -0,0 +1,137 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_OPT_8000000[] = "__OTR__ast_option/D_OPT_8000000";
+
+static const ALIGN_ASSET(2) char D_OPT_8000680[] = "__OTR__ast_option/D_OPT_8000680";
+
+static const ALIGN_ASSET(2) char D_OPT_80006A0[] = "__OTR__ast_option/D_OPT_80006A0";
+
+static const ALIGN_ASSET(2) char D_OPT_80017A0[] = "__OTR__ast_option/D_OPT_80017A0";
+
+static const ALIGN_ASSET(2) char D_OPT_80017C0[] = "__OTR__ast_option/D_OPT_80017C0";
+
+static const ALIGN_ASSET(2) char D_OPT_80038C0[] = "__OTR__ast_option/D_OPT_80038C0";
+
+static const ALIGN_ASSET(2) char aNdTex[] = "__OTR__ast_option/aNdTex";
+
+static const ALIGN_ASSET(2) char aNdTLUT[] = "__OTR__ast_option/aNdTLUT";
+
+static const ALIGN_ASSET(2) char aRdTex[] = "__OTR__ast_option/aRdTex";
+
+static const ALIGN_ASSET(2) char aRdTLUT[] = "__OTR__ast_option/aRdTLUT";
+
+static const ALIGN_ASSET(2) char aSpeakerCenterTex[] = "__OTR__ast_option/aSpeakerCenterTex";
+
+static const ALIGN_ASSET(2) char aSpeakerCenterTLUT[] = "__OTR__ast_option/aSpeakerCenterTLUT";
+
+static const ALIGN_ASSET(2) char aStTex[] = "__OTR__ast_option/aStTex";
+
+static const ALIGN_ASSET(2) char aStTLUT[] = "__OTR__ast_option/aStTLUT";
+
+static const ALIGN_ASSET(2) char aThTex[] = "__OTR__ast_option/aThTex";
+
+static const ALIGN_ASSET(2) char aThTLUT[] = "__OTR__ast_option/aThTLUT";
+
+static const ALIGN_ASSET(2) char aMainGameCardTex[] = "__OTR__ast_option/aMainGameCardTex";
+
+static const ALIGN_ASSET(2) char aTrainingCardTex[] = "__OTR__ast_option/aTrainingCardTex";
+
+static const ALIGN_ASSET(2) char aVsCardTex[] = "__OTR__ast_option/aVsCardTex";
+
+static const ALIGN_ASSET(2) char aRankingCardTex[] = "__OTR__ast_option/aRankingCardTex";
+
+static const ALIGN_ASSET(2) char aSoundCardTex[] = "__OTR__ast_option/aSoundCardTex";
+
+static const ALIGN_ASSET(2) char aDataCardTex[] = "__OTR__ast_option/aDataCardTex";
+
+static const ALIGN_ASSET(2) char aExpertCardTex[] = "__OTR__ast_option/aExpertCardTex";
+
+static const ALIGN_ASSET(2) char aVsPointMatchCardTex[] = "__OTR__ast_option/aVsPointMatchCardTex";
+
+static const ALIGN_ASSET(2) char aVsBattleRoyalCardTex[] = "__OTR__ast_option/aVsBattleRoyalCardTex";
+
+static const ALIGN_ASSET(2) char aVsTimeTrialCardTex[] = "__OTR__ast_option/aVsTimeTrialCardTex";
+
+static const ALIGN_ASSET(2) char D_OPT_8005CD0[] = "__OTR__ast_option/D_OPT_8005CD0";
+
+static const ALIGN_ASSET(2) char D_OPT_8006280[] = "__OTR__ast_option/D_OPT_8006280";
+
+static const ALIGN_ASSET(2) char D_OPT_80064F0[] = "__OTR__ast_option/D_OPT_80064F0";
+
+static const ALIGN_ASSET(2) char D_OPT_80069C0[] = "__OTR__ast_option/D_OPT_80069C0";
+
+static const ALIGN_ASSET(2) char D_OPT_8006D10[] = "__OTR__ast_option/D_OPT_8006D10";
+
+static const ALIGN_ASSET(2) char aBtoCancelTex[] = "__OTR__ast_option/aBtoCancelTex";
+
+static const ALIGN_ASSET(2) char D_OPT_8007210[] = "__OTR__ast_option/D_OPT_8007210";
+
+static const ALIGN_ASSET(2) char D_OPT_80076E0[] = "__OTR__ast_option/D_OPT_80076E0";
+
+static const ALIGN_ASSET(2) char D_OPT_80079F0[] = "__OTR__ast_option/D_OPT_80079F0";
+
+static const ALIGN_ASSET(2) char aAtoConfirmTex[] = "__OTR__ast_option/aAtoConfirmTex";
+
+static const ALIGN_ASSET(2) char D_OPT_80084B0[] = "__OTR__ast_option/D_OPT_80084B0";
+
+static const ALIGN_ASSET(2) char D_OPT_8008DA0[] = "__OTR__ast_option/D_OPT_8008DA0";
+
+static const ALIGN_ASSET(2) char D_OPT_8009980[] = "__OTR__ast_option/D_OPT_8009980";
+
+static const ALIGN_ASSET(2) char D_OPT_8009B00[] = "__OTR__ast_option/D_OPT_8009B00";
+
+static const ALIGN_ASSET(2) char D_OPT_8009CE0[] = "__OTR__ast_option/D_OPT_8009CE0";
+
+static const ALIGN_ASSET(2) char D_OPT_800B680[] = "__OTR__ast_option/D_OPT_800B680";
+
+static const ALIGN_ASSET(2) char D_OPT_800CD90[] = "__OTR__ast_option/D_OPT_800CD90";
+
+static const ALIGN_ASSET(2) char D_OPT_800D070[] = "__OTR__ast_option/D_OPT_800D070";
+
+static const ALIGN_ASSET(2) char D_OPT_800D170[] = "__OTR__ast_option/D_OPT_800D170";
+
+static const ALIGN_ASSET(2) char D_OPT_800D1F0[] = "__OTR__ast_option/D_OPT_800D1F0";
+
+static const ALIGN_ASSET(2) char D_OPT_800E0F0[] = "__OTR__ast_option/D_OPT_800E0F0";
+
+static const ALIGN_ASSET(2) char aArrowTex[] = "__OTR__ast_option/aArrowTex";
+
+static const ALIGN_ASSET(2) char D_OPT_800E170[] = "__OTR__ast_option/D_OPT_800E170";
+
+static const ALIGN_ASSET(2) char aSliderFrameTex[] = "__OTR__ast_option/aSliderFrameTex";
+
+static const ALIGN_ASSET(2) char aSliderTex[] = "__OTR__ast_option/aSliderTex";
+
+static const ALIGN_ASSET(2) char aSpeakerTex[] = "__OTR__ast_option/aSpeakerTex";
+
+static const ALIGN_ASSET(2) char aSpeakerTLUT[] = "__OTR__ast_option/aSpeakerTLUT";
+
+static const ALIGN_ASSET(2) char D_OPT_80147F0[] = "__OTR__ast_option/D_OPT_80147F0";
+
+static const ALIGN_ASSET(2) char ast_option_seg8_vtx_00014B50[] = "__OTR__ast_option/ast_option_seg8_vtx_00014B50";
+
+static const ALIGN_ASSET(2) char D_OPT_8015310[] = "__OTR__ast_option/D_OPT_8015310";
+
+static const ALIGN_ASSET(2) char D_OPT_8015390[] = "__OTR__ast_option/D_OPT_8015390";
+
+static const ALIGN_ASSET(2) char D_OPT_80153B0[] = "__OTR__ast_option/D_OPT_80153B0";
+
+static const ALIGN_ASSET(2) char D_OPT_8015430[] = "__OTR__ast_option/D_OPT_8015430";
+
+static const ALIGN_ASSET(2) char D_OPT_8015450[] = "__OTR__ast_option/D_OPT_8015450";
+
+static const ALIGN_ASSET(2) char D_OPT_8015550[] = "__OTR__ast_option/D_OPT_8015550";
+
+static const ALIGN_ASSET(2) char ast_option_seg8_vtx_155A8[] = "__OTR__ast_option/ast_option_seg8_vtx_155A8";
+
+static const ALIGN_ASSET(2) char D_OPT_80155E8[] = "__OTR__ast_option/D_OPT_80155E8";
+
+static const ALIGN_ASSET(2) char aLightningDL[] = "__OTR__ast_option/aLightningDL";
+
+static const ALIGN_ASSET(2) char ast_option_seg8_vtx_15E48[] = "__OTR__ast_option/ast_option_seg8_vtx_15E48";
+
+static const ALIGN_ASSET(2) char aLightningTex[] = "__OTR__ast_option/aLightningTex";
+
diff --git a/include/assets/ast_radio.h b/include/assets/ast_radio.h
new file mode 100644
index 00000000..6b55590f
--- /dev/null
+++ b/include/assets/ast_radio.h
@@ -0,0 +1,1637 @@
+#pragma once
+
+static const ALIGN_ASSET(2) char gTextCharSpecial0[] = "__OTR__ast_radio/text_char_special_0";
+
+static const ALIGN_ASSET(2) char gTextCharSpecial4[] = "__OTR__ast_radio/text_char_special_4";
+
+static const ALIGN_ASSET(2) char gTextCharSpecial8[] = "__OTR__ast_radio/text_char_special_8";
+
+static const ALIGN_ASSET(2) char gTextCharSpecial12[] = "__OTR__ast_radio/text_char_special_12";
+
+static const ALIGN_ASSET(2) char gTextCharCDIR[] = "__OTR__ast_radio/text_char_cdir";
+
+static const ALIGN_ASSET(2) char gTextCharADIR[] = "__OTR__ast_radio/text_char_adir";
+
+static const ALIGN_ASSET(2) char gTextCharABCD[] = "__OTR__ast_radio/text_char_abcd_upper";
+
+static const ALIGN_ASSET(2) char gTextCharEFGH[] = "__OTR__ast_radio/text_char_efgh_upper";
+
+static const ALIGN_ASSET(2) char gTextCharIJKL[] = "__OTR__ast_radio/text_char_ijkl_upper";
+
+static const ALIGN_ASSET(2) char gTextCharMNOP[] = "__OTR__ast_radio/text_char_mnop_upper";
+
+static const ALIGN_ASSET(2) char gTextCharQRST[] = "__OTR__ast_radio/text_char_qrst_upper";
+
+static const ALIGN_ASSET(2) char gTextCharUVWX[] = "__OTR__ast_radio/text_char_uvwx_upper";
+
+static const ALIGN_ASSET(2) char gTextCharYZABBoth[] = "__OTR__ast_radio/text_char_yzab_both";
+
+static const ALIGN_ASSET(2) char gTextCharCDEFLower[] = "__OTR__ast_radio/text_char_cdef_lower";
+
+static const ALIGN_ASSET(2) char gTextCharGHIJLower[] = "__OTR__ast_radio/text_char_ghij_lower";
+
+static const ALIGN_ASSET(2) char gTextCharKLMNLower[] = "__OTR__ast_radio/text_char_klmn_lower";
+
+static const ALIGN_ASSET(2) char gTextCharOPQRLower[] = "__OTR__ast_radio/text_char_opqr_lower";
+
+static const ALIGN_ASSET(2) char gTextCharSTUVLower[] = "__OTR__ast_radio/text_char_stuv_lower";
+
+static const ALIGN_ASSET(2) char gTextCharWXYZLower[] = "__OTR__ast_radio/text_char_wxyz_lower";
+
+static const ALIGN_ASSET(2) char gTextCharPIDC[] = "__OTR__ast_radio/text_char_pidc";
+
+static const ALIGN_ASSET(2) char gTextCharP012[] = "__OTR__ast_radio/text_char_p012";
+
+static const ALIGN_ASSET(2) char gTextChar3456[] = "__OTR__ast_radio/text_char_3456";
+
+static const ALIGN_ASSET(2) char gTextChar789A[] = "__OTR__ast_radio/text_char_789a";
+
+static const ALIGN_ASSET(2) char gTextCharPPDP[] = "__OTR__ast_radio/text_char_ppdp";
+
+static const char* gTextCharTextures[] = {
+ gTextCharSpecial0,
+ gTextCharSpecial4,
+ gTextCharSpecial8,
+ gTextCharSpecial12,
+ gTextCharCDIR,
+ gTextCharADIR,
+ gTextCharABCD,
+ gTextCharEFGH,
+ gTextCharIJKL,
+ gTextCharMNOP,
+ gTextCharQRST,
+ gTextCharUVWX,
+ gTextCharYZABBoth,
+ gTextCharCDEFLower,
+ gTextCharGHIJLower,
+ gTextCharKLMNLower,
+ gTextCharOPQRLower,
+ gTextCharSTUVLower,
+ gTextCharWXYZLower,
+ gTextCharPIDC,
+ gTextCharP012,
+ gTextChar3456,
+ gTextChar789A,
+ gTextCharPPDP,
+};
+
+static ALIGN_ASSET(2) char gMsg_ID_1[] = "__OTR__ast_radio/gMsg_ID_1";
+
+static ALIGN_ASSET(2) char gMsg_ID_60[] = "__OTR__ast_radio/gMsg_ID_60";
+
+static ALIGN_ASSET(2) char gMsg_ID_10[] = "__OTR__ast_radio/gMsg_ID_10";
+
+static ALIGN_ASSET(2) char gMsg_ID_20[] = "__OTR__ast_radio/gMsg_ID_20";
+
+static ALIGN_ASSET(2) char gMsg_ID_30[] = "__OTR__ast_radio/gMsg_ID_30";
+
+static ALIGN_ASSET(2) char gMsg_ID_40[] = "__OTR__ast_radio/gMsg_ID_40";
+
+static ALIGN_ASSET(2) char gMsg_ID_50[] = "__OTR__ast_radio/gMsg_ID_50";
+
+static ALIGN_ASSET(2) char gMsg_ID_1200[] = "__OTR__ast_radio/gMsg_ID_1200";
+
+static ALIGN_ASSET(2) char gMsg_ID_1210[] = "__OTR__ast_radio/gMsg_ID_1210";
+
+static ALIGN_ASSET(2) char gMsg_ID_1220[] = "__OTR__ast_radio/gMsg_ID_1220";
+
+static ALIGN_ASSET(2) char gMsg_ID_1230[] = "__OTR__ast_radio/gMsg_ID_1230";
+
+static ALIGN_ASSET(2) char gMsg_ID_1240[] = "__OTR__ast_radio/gMsg_ID_1240";
+
+static ALIGN_ASSET(2) char gMsg_ID_1250[] = "__OTR__ast_radio/gMsg_ID_1250";
+
+static ALIGN_ASSET(2) char gMsg_ID_1260[] = "__OTR__ast_radio/gMsg_ID_1260";
+
+static ALIGN_ASSET(2) char gMsg_ID_1270[] = "__OTR__ast_radio/gMsg_ID_1270";
+
+static ALIGN_ASSET(2) char gMsg_ID_1280[] = "__OTR__ast_radio/gMsg_ID_1280";
+
+static ALIGN_ASSET(2) char gMsg_ID_1290[] = "__OTR__ast_radio/gMsg_ID_1290";
+
+static ALIGN_ASSET(2) char gMsg_ID_1300[] = "__OTR__ast_radio/gMsg_ID_1300";
+
+static ALIGN_ASSET(2) char gMsg_ID_1310[] = "__OTR__ast_radio/gMsg_ID_1310";
+
+static ALIGN_ASSET(2) char gMsg_ID_1320[] = "__OTR__ast_radio/gMsg_ID_1320";
+
+static ALIGN_ASSET(2) char gMsg_ID_1330[] = "__OTR__ast_radio/gMsg_ID_1330";
+
+static ALIGN_ASSET(2) char gMsg_ID_1340[] = "__OTR__ast_radio/gMsg_ID_1340";
+
+static ALIGN_ASSET(2) char gMsg_ID_1350[] = "__OTR__ast_radio/gMsg_ID_1350";
+
+static ALIGN_ASSET(2) char gMsg_ID_1360[] = "__OTR__ast_radio/gMsg_ID_1360";
+
+static ALIGN_ASSET(2) char gMsg_ID_1370[] = "__OTR__ast_radio/gMsg_ID_1370";
+
+static ALIGN_ASSET(2) char gMsg_ID_1380[] = "__OTR__ast_radio/gMsg_ID_1380";
+
+static ALIGN_ASSET(2) char gMsg_ID_1390[] = "__OTR__ast_radio/gMsg_ID_1390";
+
+static ALIGN_ASSET(2) char gMsg_ID_1400[] = "__OTR__ast_radio/gMsg_ID_1400";
+
+static ALIGN_ASSET(2) char gMsg_ID_1410[] = "__OTR__ast_radio/gMsg_ID_1410";
+
+static ALIGN_ASSET(2) char gMsg_ID_1420[] = "__OTR__ast_radio/gMsg_ID_1420";
+
+static ALIGN_ASSET(2) char gMsg_ID_1430[] = "__OTR__ast_radio/gMsg_ID_1430";
+
+static ALIGN_ASSET(2) char gMsg_ID_1440[] = "__OTR__ast_radio/gMsg_ID_1440";
+
+static ALIGN_ASSET(2) char gMsg_ID_1450[] = "__OTR__ast_radio/gMsg_ID_1450";
+
+static ALIGN_ASSET(2) char gMsg_ID_1460[] = "__OTR__ast_radio/gMsg_ID_1460";
+
+static ALIGN_ASSET(2) char gMsg_ID_1470[] = "__OTR__ast_radio/gMsg_ID_1470";
+
+static ALIGN_ASSET(2) char gMsg_ID_2005[] = "__OTR__ast_radio/gMsg_ID_2005";
+
+static ALIGN_ASSET(2) char gMsg_ID_2010[] = "__OTR__ast_radio/gMsg_ID_2010";
+
+static ALIGN_ASSET(2) char gMsg_ID_2020[] = "__OTR__ast_radio/gMsg_ID_2020";
+
+static ALIGN_ASSET(2) char gMsg_ID_2030[] = "__OTR__ast_radio/gMsg_ID_2030";
+
+static ALIGN_ASSET(2) char gMsg_ID_2040[] = "__OTR__ast_radio/gMsg_ID_2040";
+
+static ALIGN_ASSET(2) char gMsg_ID_2050[] = "__OTR__ast_radio/gMsg_ID_2050";
+
+static ALIGN_ASSET(2) char gMsg_ID_2055[] = "__OTR__ast_radio/gMsg_ID_2055";
+
+static ALIGN_ASSET(2) char gMsg_ID_2058[] = "__OTR__ast_radio/gMsg_ID_2058";
+
+static ALIGN_ASSET(2) char gMsg_ID_2061[] = "__OTR__ast_radio/gMsg_ID_2061";
+
+static ALIGN_ASSET(2) char gMsg_ID_2062[] = "__OTR__ast_radio/gMsg_ID_2062";
+
+static ALIGN_ASSET(2) char gMsg_ID_2080[] = "__OTR__ast_radio/gMsg_ID_2080";
+
+static ALIGN_ASSET(2) char gMsg_ID_2090[] = "__OTR__ast_radio/gMsg_ID_2090";
+
+static ALIGN_ASSET(2) char gMsg_ID_2095[] = "__OTR__ast_radio/gMsg_ID_2095";
+
+static ALIGN_ASSET(2) char gMsg_ID_2110[] = "__OTR__ast_radio/gMsg_ID_2110";
+
+static ALIGN_ASSET(2) char gMsg_ID_2115[] = "__OTR__ast_radio/gMsg_ID_2115";
+
+static ALIGN_ASSET(2) char gMsg_ID_2118[] = "__OTR__ast_radio/gMsg_ID_2118";
+
+static ALIGN_ASSET(2) char gMsg_ID_2140[] = "__OTR__ast_radio/gMsg_ID_2140";
+
+static ALIGN_ASSET(2) char gMsg_ID_2165[] = "__OTR__ast_radio/gMsg_ID_2165";
+
+static ALIGN_ASSET(2) char gMsg_ID_2166[] = "__OTR__ast_radio/gMsg_ID_2166";
+
+static ALIGN_ASSET(2) char gMsg_ID_2167[] = "__OTR__ast_radio/gMsg_ID_2167";
+
+static ALIGN_ASSET(2) char gMsg_ID_2180[] = "__OTR__ast_radio/gMsg_ID_2180";
+
+static ALIGN_ASSET(2) char gMsg_ID_2181[] = "__OTR__ast_radio/gMsg_ID_2181";
+
+static ALIGN_ASSET(2) char gMsg_ID_2185[] = "__OTR__ast_radio/gMsg_ID_2185";
+
+static ALIGN_ASSET(2) char gMsg_ID_2188[] = "__OTR__ast_radio/gMsg_ID_2188";
+
+static ALIGN_ASSET(2) char gMsg_ID_2200[] = "__OTR__ast_radio/gMsg_ID_2200";
+
+static ALIGN_ASSET(2) char gMsg_ID_2210[] = "__OTR__ast_radio/gMsg_ID_2210";
+
+static ALIGN_ASSET(2) char gMsg_ID_2220[] = "__OTR__ast_radio/gMsg_ID_2220";
+
+static ALIGN_ASSET(2) char gMsg_ID_2225[] = "__OTR__ast_radio/gMsg_ID_2225";
+
+static ALIGN_ASSET(2) char gMsg_ID_2230[] = "__OTR__ast_radio/gMsg_ID_2230";
+
+static ALIGN_ASSET(2) char gMsg_ID_2233[] = "__OTR__ast_radio/gMsg_ID_2233";
+
+static ALIGN_ASSET(2) char gMsg_ID_2282[] = "__OTR__ast_radio/gMsg_ID_2282";
+
+static ALIGN_ASSET(2) char gMsg_ID_2240[] = "__OTR__ast_radio/gMsg_ID_2240";
+
+static ALIGN_ASSET(2) char gMsg_ID_2250[] = "__OTR__ast_radio/gMsg_ID_2250";
+
+static ALIGN_ASSET(2) char gMsg_ID_2260[] = "__OTR__ast_radio/gMsg_ID_2260";
+
+static ALIGN_ASSET(2) char gMsg_ID_2263[] = "__OTR__ast_radio/gMsg_ID_2263";
+
+static ALIGN_ASSET(2) char gMsg_ID_2265[] = "__OTR__ast_radio/gMsg_ID_2265";
+
+static ALIGN_ASSET(2) char gMsg_ID_2270[] = "__OTR__ast_radio/gMsg_ID_2270";
+
+static ALIGN_ASSET(2) char gMsg_ID_2275[] = "__OTR__ast_radio/gMsg_ID_2275";
+
+static ALIGN_ASSET(2) char gMsg_ID_2280[] = "__OTR__ast_radio/gMsg_ID_2280";
+
+static ALIGN_ASSET(2) char gMsg_ID_2290[] = "__OTR__ast_radio/gMsg_ID_2290";
+
+static ALIGN_ASSET(2) char gMsg_ID_2291[] = "__OTR__ast_radio/gMsg_ID_2291";
+
+static ALIGN_ASSET(2) char gMsg_ID_2292[] = "__OTR__ast_radio/gMsg_ID_2292";
+
+static ALIGN_ASSET(2) char gMsg_ID_2293[] = "__OTR__ast_radio/gMsg_ID_2293";
+
+static ALIGN_ASSET(2) char gMsg_ID_2294[] = "__OTR__ast_radio/gMsg_ID_2294";
+
+static ALIGN_ASSET(2) char gMsg_ID_2295[] = "__OTR__ast_radio/gMsg_ID_2295";
+
+static ALIGN_ASSET(2) char gMsg_ID_2296[] = "__OTR__ast_radio/gMsg_ID_2296";
+
+static ALIGN_ASSET(2) char gMsg_ID_2298[] = "__OTR__ast_radio/gMsg_ID_2298";
+
+static ALIGN_ASSET(2) char gMsg_ID_2299[] = "__OTR__ast_radio/gMsg_ID_2299";
+
+static ALIGN_ASSET(2) char gMsg_ID_2300[] = "__OTR__ast_radio/gMsg_ID_2300";
+
+static ALIGN_ASSET(2) char gMsg_ID_2305[] = "__OTR__ast_radio/gMsg_ID_2305";
+
+static ALIGN_ASSET(2) char gMsg_ID_2310[] = "__OTR__ast_radio/gMsg_ID_2310";
+
+static ALIGN_ASSET(2) char gMsg_ID_2320[] = "__OTR__ast_radio/gMsg_ID_2320";
+
+static ALIGN_ASSET(2) char gMsg_ID_2335[] = "__OTR__ast_radio/gMsg_ID_2335";
+
+static ALIGN_ASSET(2) char gMsg_ID_2336[] = "__OTR__ast_radio/gMsg_ID_2336";
+
+static ALIGN_ASSET(2) char gMsg_ID_2337[] = "__OTR__ast_radio/gMsg_ID_2337";
+
+static ALIGN_ASSET(2) char gMsg_ID_3005[] = "__OTR__ast_radio/gMsg_ID_3005";
+
+static ALIGN_ASSET(2) char gMsg_ID_3010[] = "__OTR__ast_radio/gMsg_ID_3010";
+
+static ALIGN_ASSET(2) char gMsg_ID_3015[] = "__OTR__ast_radio/gMsg_ID_3015";
+
+static ALIGN_ASSET(2) char gMsg_ID_3020[] = "__OTR__ast_radio/gMsg_ID_3020";
+
+static ALIGN_ASSET(2) char gMsg_ID_3025[] = "__OTR__ast_radio/gMsg_ID_3025";
+
+static ALIGN_ASSET(2) char gMsg_ID_3026[] = "__OTR__ast_radio/gMsg_ID_3026";
+
+static ALIGN_ASSET(2) char gMsg_ID_3040[] = "__OTR__ast_radio/gMsg_ID_3040";
+
+static ALIGN_ASSET(2) char gMsg_ID_3041[] = "__OTR__ast_radio/gMsg_ID_3041";
+
+static ALIGN_ASSET(2) char gMsg_ID_3042[] = "__OTR__ast_radio/gMsg_ID_3042";
+
+static ALIGN_ASSET(2) char gMsg_ID_3050[] = "__OTR__ast_radio/gMsg_ID_3050";
+
+static ALIGN_ASSET(2) char gMsg_ID_3100[] = "__OTR__ast_radio/gMsg_ID_3100";
+
+static ALIGN_ASSET(2) char gMsg_ID_3110[] = "__OTR__ast_radio/gMsg_ID_3110";
+
+static ALIGN_ASSET(2) char gMsg_ID_3120[] = "__OTR__ast_radio/gMsg_ID_3120";
+
+static ALIGN_ASSET(2) char gMsg_ID_3300[] = "__OTR__ast_radio/gMsg_ID_3300";
+
+static ALIGN_ASSET(2) char gMsg_ID_3310[] = "__OTR__ast_radio/gMsg_ID_3310";
+
+static ALIGN_ASSET(2) char gMsg_ID_3315[] = "__OTR__ast_radio/gMsg_ID_3315";
+
+static ALIGN_ASSET(2) char gMsg_ID_3320[] = "__OTR__ast_radio/gMsg_ID_3320";
+
+static ALIGN_ASSET(2) char gMsg_ID_3321[] = "__OTR__ast_radio/gMsg_ID_3321";
+
+static ALIGN_ASSET(2) char gMsg_ID_3322[] = "__OTR__ast_radio/gMsg_ID_3322";
+
+static ALIGN_ASSET(2) char gMsg_ID_3330[] = "__OTR__ast_radio/gMsg_ID_3330";
+
+static ALIGN_ASSET(2) char gMsg_ID_3340[] = "__OTR__ast_radio/gMsg_ID_3340";
+
+static ALIGN_ASSET(2) char gMsg_ID_3345[] = "__OTR__ast_radio/gMsg_ID_3345";
+
+static ALIGN_ASSET(2) char gMsg_ID_3350[] = "__OTR__ast_radio/gMsg_ID_3350";
+
+static ALIGN_ASSET(2) char gMsg_ID_3360[] = "__OTR__ast_radio/gMsg_ID_3360";
+
+static ALIGN_ASSET(2) char gMsg_ID_3370[] = "__OTR__ast_radio/gMsg_ID_3370";
+
+static ALIGN_ASSET(2) char gMsg_ID_3371[] = "__OTR__ast_radio/gMsg_ID_3371";
+
+static ALIGN_ASSET(2) char gMsg_ID_4010[] = "__OTR__ast_radio/gMsg_ID_4010";
+
+static ALIGN_ASSET(2) char gMsg_ID_4011[] = "__OTR__ast_radio/gMsg_ID_4011";
+
+static ALIGN_ASSET(2) char gMsg_ID_4012[] = "__OTR__ast_radio/gMsg_ID_4012";
+
+static ALIGN_ASSET(2) char gMsg_ID_4013[] = "__OTR__ast_radio/gMsg_ID_4013";
+
+static ALIGN_ASSET(2) char gMsg_ID_4020[] = "__OTR__ast_radio/gMsg_ID_4020";
+
+static ALIGN_ASSET(2) char gMsg_ID_4021[] = "__OTR__ast_radio/gMsg_ID_4021";
+
+static ALIGN_ASSET(2) char gMsg_ID_4022[] = "__OTR__ast_radio/gMsg_ID_4022";
+
+static ALIGN_ASSET(2) char gMsg_ID_4023[] = "__OTR__ast_radio/gMsg_ID_4023";
+
+static ALIGN_ASSET(2) char gMsg_ID_4024[] = "__OTR__ast_radio/gMsg_ID_4024";
+
+static ALIGN_ASSET(2) char gMsg_ID_4030[] = "__OTR__ast_radio/gMsg_ID_4030";
+
+static ALIGN_ASSET(2) char gMsg_ID_4031[] = "__OTR__ast_radio/gMsg_ID_4031";
+
+static ALIGN_ASSET(2) char gMsg_ID_4040[] = "__OTR__ast_radio/gMsg_ID_4040";
+
+static ALIGN_ASSET(2) char gMsg_ID_4050[] = "__OTR__ast_radio/gMsg_ID_4050";
+
+static ALIGN_ASSET(2) char gMsg_ID_4075[] = "__OTR__ast_radio/gMsg_ID_4075";
+
+static ALIGN_ASSET(2) char gMsg_ID_4080[] = "__OTR__ast_radio/gMsg_ID_4080";
+
+static ALIGN_ASSET(2) char gMsg_ID_4082[] = "__OTR__ast_radio/gMsg_ID_4082";
+
+static ALIGN_ASSET(2) char gMsg_ID_4083[] = "__OTR__ast_radio/gMsg_ID_4083";
+
+static ALIGN_ASSET(2) char gMsg_ID_4091[] = "__OTR__ast_radio/gMsg_ID_4091";
+
+static ALIGN_ASSET(2) char gMsg_ID_4092[] = "__OTR__ast_radio/gMsg_ID_4092";
+
+static ALIGN_ASSET(2) char gMsg_ID_4093[] = "__OTR__ast_radio/gMsg_ID_4093";
+
+static ALIGN_ASSET(2) char gMsg_ID_4094[] = "__OTR__ast_radio/gMsg_ID_4094";
+
+static ALIGN_ASSET(2) char gMsg_ID_4095[] = "__OTR__ast_radio/gMsg_ID_4095";
+
+static ALIGN_ASSET(2) char gMsg_ID_4096[] = "__OTR__ast_radio/gMsg_ID_4096";
+
+static ALIGN_ASSET(2) char gMsg_ID_4097[] = "__OTR__ast_radio/gMsg_ID_4097";
+
+static ALIGN_ASSET(2) char gMsg_ID_4098[] = "__OTR__ast_radio/gMsg_ID_4098";
+
+static ALIGN_ASSET(2) char gMsg_ID_4099[] = "__OTR__ast_radio/gMsg_ID_4099";
+
+static ALIGN_ASSET(2) char gMsg_ID_4100[] = "__OTR__ast_radio/gMsg_ID_4100";
+
+static ALIGN_ASSET(2) char gMsg_ID_4101[] = "__OTR__ast_radio/gMsg_ID_4101";
+
+static ALIGN_ASSET(2) char gMsg_ID_4102[] = "__OTR__ast_radio/gMsg_ID_4102";
+
+static ALIGN_ASSET(2) char gMsg_ID_4103[] = "__OTR__ast_radio/gMsg_ID_4103";
+
+static ALIGN_ASSET(2) char gMsg_ID_4110[] = "__OTR__ast_radio/gMsg_ID_4110";
+
+static ALIGN_ASSET(2) char gMsg_ID_4111[] = "__OTR__ast_radio/gMsg_ID_4111";
+
+static ALIGN_ASSET(2) char gMsg_ID_4112[] = "__OTR__ast_radio/gMsg_ID_4112";
+
+static ALIGN_ASSET(2) char gMsg_ID_4113[] = "__OTR__ast_radio/gMsg_ID_4113";
+
+static ALIGN_ASSET(2) char gMsg_ID_5000[] = "__OTR__ast_radio/gMsg_ID_5000";
+
+static ALIGN_ASSET(2) char gMsg_ID_5010[] = "__OTR__ast_radio/gMsg_ID_5010";
+
+static ALIGN_ASSET(2) char gMsg_ID_5060[] = "__OTR__ast_radio/gMsg_ID_5060";
+
+static ALIGN_ASSET(2) char gMsg_ID_5080[] = "__OTR__ast_radio/gMsg_ID_5080";
+
+static ALIGN_ASSET(2) char gMsg_ID_5100[] = "__OTR__ast_radio/gMsg_ID_5100";
+
+static ALIGN_ASSET(2) char gMsg_ID_5110[] = "__OTR__ast_radio/gMsg_ID_5110";
+
+static ALIGN_ASSET(2) char gMsg_ID_5130[] = "__OTR__ast_radio/gMsg_ID_5130";
+
+static ALIGN_ASSET(2) char gMsg_ID_5220[] = "__OTR__ast_radio/gMsg_ID_5220";
+
+static ALIGN_ASSET(2) char gMsg_ID_5230[] = "__OTR__ast_radio/gMsg_ID_5230";
+
+static ALIGN_ASSET(2) char gMsg_ID_5300[] = "__OTR__ast_radio/gMsg_ID_5300";
+
+static ALIGN_ASSET(2) char gMsg_ID_5310[] = "__OTR__ast_radio/gMsg_ID_5310";
+
+static ALIGN_ASSET(2) char gMsg_ID_5311[] = "__OTR__ast_radio/gMsg_ID_5311";
+
+static ALIGN_ASSET(2) char gMsg_ID_5312[] = "__OTR__ast_radio/gMsg_ID_5312";
+
+static ALIGN_ASSET(2) char gMsg_ID_5313[] = "__OTR__ast_radio/gMsg_ID_5313";
+
+static ALIGN_ASSET(2) char gMsg_ID_5314[] = "__OTR__ast_radio/gMsg_ID_5314";
+
+static ALIGN_ASSET(2) char gMsg_ID_5350[] = "__OTR__ast_radio/gMsg_ID_5350";
+
+static ALIGN_ASSET(2) char gMsg_ID_5360[] = "__OTR__ast_radio/gMsg_ID_5360";
+
+static ALIGN_ASSET(2) char gMsg_ID_5380[] = "__OTR__ast_radio/gMsg_ID_5380";
+
+static ALIGN_ASSET(2) char gMsg_ID_5400[] = "__OTR__ast_radio/gMsg_ID_5400";
+
+static ALIGN_ASSET(2) char gMsg_ID_5410[] = "__OTR__ast_radio/gMsg_ID_5410";
+
+static ALIGN_ASSET(2) char gMsg_ID_5420[] = "__OTR__ast_radio/gMsg_ID_5420";
+
+static ALIGN_ASSET(2) char gMsg_ID_5430[] = "__OTR__ast_radio/gMsg_ID_5430";
+
+static ALIGN_ASSET(2) char gMsg_ID_5460[] = "__OTR__ast_radio/gMsg_ID_5460";
+
+static ALIGN_ASSET(2) char gMsg_ID_5470[] = "__OTR__ast_radio/gMsg_ID_5470";
+
+static ALIGN_ASSET(2) char gMsg_ID_5473[] = "__OTR__ast_radio/gMsg_ID_5473";
+
+static ALIGN_ASSET(2) char gMsg_ID_5474[] = "__OTR__ast_radio/gMsg_ID_5474";
+
+static ALIGN_ASSET(2) char gMsg_ID_5475[] = "__OTR__ast_radio/gMsg_ID_5475";
+
+static ALIGN_ASSET(2) char gMsg_ID_5492[] = "__OTR__ast_radio/gMsg_ID_5492";
+
+static ALIGN_ASSET(2) char gMsg_ID_5493[] = "__OTR__ast_radio/gMsg_ID_5493";
+
+static ALIGN_ASSET(2) char gMsg_ID_5494[] = "__OTR__ast_radio/gMsg_ID_5494";
+
+static ALIGN_ASSET(2) char gMsg_ID_5495[] = "__OTR__ast_radio/gMsg_ID_5495";
+
+static ALIGN_ASSET(2) char gMsg_ID_5496[] = "__OTR__ast_radio/gMsg_ID_5496";
+
+static ALIGN_ASSET(2) char gMsg_ID_5497[] = "__OTR__ast_radio/gMsg_ID_5497";
+
+static ALIGN_ASSET(2) char gMsg_ID_5498[] = "__OTR__ast_radio/gMsg_ID_5498";
+
+static ALIGN_ASSET(2) char gMsg_ID_5499[] = "__OTR__ast_radio/gMsg_ID_5499";
+
+static ALIGN_ASSET(2) char gMsg_ID_5500[] = "__OTR__ast_radio/gMsg_ID_5500";
+
+static ALIGN_ASSET(2) char gMsg_ID_5501[] = "__OTR__ast_radio/gMsg_ID_5501";
+
+static ALIGN_ASSET(2) char gMsg_ID_5502[] = "__OTR__ast_radio/gMsg_ID_5502";
+
+static ALIGN_ASSET(2) char gMsg_ID_5503[] = "__OTR__ast_radio/gMsg_ID_5503";
+
+static ALIGN_ASSET(2) char gMsg_ID_5504[] = "__OTR__ast_radio/gMsg_ID_5504";
+
+static ALIGN_ASSET(2) char gMsg_ID_5505[] = "__OTR__ast_radio/gMsg_ID_5505";
+
+static ALIGN_ASSET(2) char gMsg_ID_5506[] = "__OTR__ast_radio/gMsg_ID_5506";
+
+static ALIGN_ASSET(2) char gMsg_ID_6010[] = "__OTR__ast_radio/gMsg_ID_6010";
+
+static ALIGN_ASSET(2) char gMsg_ID_6011[] = "__OTR__ast_radio/gMsg_ID_6011";
+
+static ALIGN_ASSET(2) char gMsg_ID_6012[] = "__OTR__ast_radio/gMsg_ID_6012";
+
+static ALIGN_ASSET(2) char gMsg_ID_6013[] = "__OTR__ast_radio/gMsg_ID_6013";
+
+static ALIGN_ASSET(2) char gMsg_ID_6014[] = "__OTR__ast_radio/gMsg_ID_6014";
+
+static ALIGN_ASSET(2) char gMsg_ID_6020[] = "__OTR__ast_radio/gMsg_ID_6020";
+
+static ALIGN_ASSET(2) char gMsg_ID_6021[] = "__OTR__ast_radio/gMsg_ID_6021";
+
+static ALIGN_ASSET(2) char gMsg_ID_6024[] = "__OTR__ast_radio/gMsg_ID_6024";
+
+static ALIGN_ASSET(2) char gMsg_ID_6025[] = "__OTR__ast_radio/gMsg_ID_6025";
+
+static ALIGN_ASSET(2) char gMsg_ID_6026[] = "__OTR__ast_radio/gMsg_ID_6026";
+
+static ALIGN_ASSET(2) char gMsg_ID_6027[] = "__OTR__ast_radio/gMsg_ID_6027";
+
+static ALIGN_ASSET(2) char gMsg_ID_6028[] = "__OTR__ast_radio/gMsg_ID_6028";
+
+static ALIGN_ASSET(2) char gMsg_ID_6029[] = "__OTR__ast_radio/gMsg_ID_6029";
+
+static ALIGN_ASSET(2) char gMsg_ID_6036[] = "__OTR__ast_radio/gMsg_ID_6036";
+
+static ALIGN_ASSET(2) char gMsg_ID_6038[] = "__OTR__ast_radio/gMsg_ID_6038";
+
+static ALIGN_ASSET(2) char gMsg_ID_6041[] = "__OTR__ast_radio/gMsg_ID_6041";
+
+static ALIGN_ASSET(2) char gMsg_ID_6042[] = "__OTR__ast_radio/gMsg_ID_6042";
+
+static ALIGN_ASSET(2) char gMsg_ID_6045[] = "__OTR__ast_radio/gMsg_ID_6045";
+
+static ALIGN_ASSET(2) char gMsg_ID_6050[] = "__OTR__ast_radio/gMsg_ID_6050";
+
+static ALIGN_ASSET(2) char gMsg_ID_6051[] = "__OTR__ast_radio/gMsg_ID_6051";
+
+static ALIGN_ASSET(2) char gMsg_ID_6055[] = "__OTR__ast_radio/gMsg_ID_6055";
+
+static ALIGN_ASSET(2) char gMsg_ID_6066[] = "__OTR__ast_radio/gMsg_ID_6066";
+
+static ALIGN_ASSET(2) char gMsg_ID_6067[] = "__OTR__ast_radio/gMsg_ID_6067";
+
+static ALIGN_ASSET(2) char gMsg_ID_6068[] = "__OTR__ast_radio/gMsg_ID_6068";
+
+static ALIGN_ASSET(2) char gMsg_ID_6069[] = "__OTR__ast_radio/gMsg_ID_6069";
+
+static ALIGN_ASSET(2) char gMsg_ID_6071[] = "__OTR__ast_radio/gMsg_ID_6071";
+
+static ALIGN_ASSET(2) char gMsg_ID_6072[] = "__OTR__ast_radio/gMsg_ID_6072";
+
+static ALIGN_ASSET(2) char gMsg_ID_6073[] = "__OTR__ast_radio/gMsg_ID_6073";
+
+static ALIGN_ASSET(2) char gMsg_ID_6074[] = "__OTR__ast_radio/gMsg_ID_6074";
+
+static ALIGN_ASSET(2) char gMsg_ID_6075[] = "__OTR__ast_radio/gMsg_ID_6075";
+
+static ALIGN_ASSET(2) char gMsg_ID_6076[] = "__OTR__ast_radio/gMsg_ID_6076";
+
+static ALIGN_ASSET(2) char gMsg_ID_6077[] = "__OTR__ast_radio/gMsg_ID_6077";
+
+static ALIGN_ASSET(2) char gMsg_ID_6078[] = "__OTR__ast_radio/gMsg_ID_6078";
+
+static ALIGN_ASSET(2) char gMsg_ID_6079[] = "__OTR__ast_radio/gMsg_ID_6079";
+
+static ALIGN_ASSET(2) char gMsg_ID_6080[] = "__OTR__ast_radio/gMsg_ID_6080";
+
+static ALIGN_ASSET(2) char gMsg_ID_6081[] = "__OTR__ast_radio/gMsg_ID_6081";
+
+static ALIGN_ASSET(2) char gMsg_ID_6082[] = "__OTR__ast_radio/gMsg_ID_6082";
+
+static ALIGN_ASSET(2) char gMsg_ID_6090[] = "__OTR__ast_radio/gMsg_ID_6090";
+
+static ALIGN_ASSET(2) char gMsg_ID_6100[] = "__OTR__ast_radio/gMsg_ID_6100";
+
+static ALIGN_ASSET(2) char gMsg_ID_6101[] = "__OTR__ast_radio/gMsg_ID_6101";
+
+static ALIGN_ASSET(2) char gMsg_ID_7005[] = "__OTR__ast_radio/gMsg_ID_7005";
+
+static ALIGN_ASSET(2) char gMsg_ID_7006[] = "__OTR__ast_radio/gMsg_ID_7006";
+
+static ALIGN_ASSET(2) char gMsg_ID_7011[] = "__OTR__ast_radio/gMsg_ID_7011";
+
+static ALIGN_ASSET(2) char gMsg_ID_7012[] = "__OTR__ast_radio/gMsg_ID_7012";
+
+static ALIGN_ASSET(2) char gMsg_ID_7013[] = "__OTR__ast_radio/gMsg_ID_7013";
+
+static ALIGN_ASSET(2) char gMsg_ID_7014[] = "__OTR__ast_radio/gMsg_ID_7014";
+
+static ALIGN_ASSET(2) char gMsg_ID_7020[] = "__OTR__ast_radio/gMsg_ID_7020";
+
+static ALIGN_ASSET(2) char gMsg_ID_7043[] = "__OTR__ast_radio/gMsg_ID_7043";
+
+static ALIGN_ASSET(2) char gMsg_ID_7050[] = "__OTR__ast_radio/gMsg_ID_7050";
+
+static ALIGN_ASSET(2) char gMsg_ID_7051[] = "__OTR__ast_radio/gMsg_ID_7051";
+
+static ALIGN_ASSET(2) char gMsg_ID_7052[] = "__OTR__ast_radio/gMsg_ID_7052";
+
+static ALIGN_ASSET(2) char gMsg_ID_7053[] = "__OTR__ast_radio/gMsg_ID_7053";
+
+static ALIGN_ASSET(2) char gMsg_ID_7054[] = "__OTR__ast_radio/gMsg_ID_7054";
+
+static ALIGN_ASSET(2) char gMsg_ID_7061[] = "__OTR__ast_radio/gMsg_ID_7061";
+
+static ALIGN_ASSET(2) char gMsg_ID_7064[] = "__OTR__ast_radio/gMsg_ID_7064";
+
+static ALIGN_ASSET(2) char gMsg_ID_7065[] = "__OTR__ast_radio/gMsg_ID_7065";
+
+static ALIGN_ASSET(2) char gMsg_ID_7066[] = "__OTR__ast_radio/gMsg_ID_7066";
+
+static ALIGN_ASSET(2) char gMsg_ID_7070[] = "__OTR__ast_radio/gMsg_ID_7070";
+
+static ALIGN_ASSET(2) char gMsg_ID_7083[] = "__OTR__ast_radio/gMsg_ID_7083";
+
+static ALIGN_ASSET(2) char gMsg_ID_7084[] = "__OTR__ast_radio/gMsg_ID_7084";
+
+static ALIGN_ASSET(2) char gMsg_ID_7085[] = "__OTR__ast_radio/gMsg_ID_7085";
+
+static ALIGN_ASSET(2) char gMsg_ID_7086[] = "__OTR__ast_radio/gMsg_ID_7086";
+
+static ALIGN_ASSET(2) char gMsg_ID_7087[] = "__OTR__ast_radio/gMsg_ID_7087";
+
+static ALIGN_ASSET(2) char gMsg_ID_7093[] = "__OTR__ast_radio/gMsg_ID_7093";
+
+static ALIGN_ASSET(2) char gMsg_ID_7094[] = "__OTR__ast_radio/gMsg_ID_7094";
+
+static ALIGN_ASSET(2) char gMsg_ID_7095[] = "__OTR__ast_radio/gMsg_ID_7095";
+
+static ALIGN_ASSET(2) char gMsg_ID_7096[] = "__OTR__ast_radio/gMsg_ID_7096";
+
+static ALIGN_ASSET(2) char gMsg_ID_7097[] = "__OTR__ast_radio/gMsg_ID_7097";
+
+static ALIGN_ASSET(2) char gMsg_ID_7098[] = "__OTR__ast_radio/gMsg_ID_7098";
+
+static ALIGN_ASSET(2) char gMsg_ID_7099[] = "__OTR__ast_radio/gMsg_ID_7099";
+
+static ALIGN_ASSET(2) char gMsg_ID_7100[] = "__OTR__ast_radio/gMsg_ID_7100";
+
+static ALIGN_ASSET(2) char gMsg_ID_8010[] = "__OTR__ast_radio/gMsg_ID_8010";
+
+static ALIGN_ASSET(2) char gMsg_ID_8020[] = "__OTR__ast_radio/gMsg_ID_8020";
+
+static ALIGN_ASSET(2) char gMsg_ID_8030[] = "__OTR__ast_radio/gMsg_ID_8030";
+
+static ALIGN_ASSET(2) char gMsg_ID_8040[] = "__OTR__ast_radio/gMsg_ID_8040";
+
+static ALIGN_ASSET(2) char gMsg_ID_8045[] = "__OTR__ast_radio/gMsg_ID_8045";
+
+static ALIGN_ASSET(2) char gMsg_ID_8050[] = "__OTR__ast_radio/gMsg_ID_8050";
+
+static ALIGN_ASSET(2) char gMsg_ID_8060[] = "__OTR__ast_radio/gMsg_ID_8060";
+
+static ALIGN_ASSET(2) char gMsg_ID_8070[] = "__OTR__ast_radio/gMsg_ID_8070";
+
+static ALIGN_ASSET(2) char gMsg_ID_8080[] = "__OTR__ast_radio/gMsg_ID_8080";
+
+static ALIGN_ASSET(2) char gMsg_ID_8100[] = "__OTR__ast_radio/gMsg_ID_8100";
+
+static ALIGN_ASSET(2) char gMsg_ID_8110[] = "__OTR__ast_radio/gMsg_ID_8110";
+
+static ALIGN_ASSET(2) char gMsg_ID_8120[] = "__OTR__ast_radio/gMsg_ID_8120";
+
+static ALIGN_ASSET(2) char gMsg_ID_8130[] = "__OTR__ast_radio/gMsg_ID_8130";
+
+static ALIGN_ASSET(2) char gMsg_ID_8140[] = "__OTR__ast_radio/gMsg_ID_8140";
+
+static ALIGN_ASSET(2) char gMsg_ID_8205[] = "__OTR__ast_radio/gMsg_ID_8205";
+
+static ALIGN_ASSET(2) char gMsg_ID_8210[] = "__OTR__ast_radio/gMsg_ID_8210";
+
+static ALIGN_ASSET(2) char gMsg_ID_8215[] = "__OTR__ast_radio/gMsg_ID_8215";
+
+static ALIGN_ASSET(2) char gMsg_ID_8220[] = "__OTR__ast_radio/gMsg_ID_8220";
+
+static ALIGN_ASSET(2) char gMsg_ID_8230[] = "__OTR__ast_radio/gMsg_ID_8230";
+
+static ALIGN_ASSET(2) char gMsg_ID_8240[] = "__OTR__ast_radio/gMsg_ID_8240";
+
+static ALIGN_ASSET(2) char gMsg_ID_8250[] = "__OTR__ast_radio/gMsg_ID_8250";
+
+static ALIGN_ASSET(2) char gMsg_ID_8255[] = "__OTR__ast_radio/gMsg_ID_8255";
+
+static ALIGN_ASSET(2) char gMsg_ID_8260[] = "__OTR__ast_radio/gMsg_ID_8260";
+
+static ALIGN_ASSET(2) char gMsg_ID_8265[] = "__OTR__ast_radio/gMsg_ID_8265";
+
+static ALIGN_ASSET(2) char gMsg_ID_8300[] = "__OTR__ast_radio/gMsg_ID_8300";
+
+static ALIGN_ASSET(2) char gMsg_ID_8310[] = "__OTR__ast_radio/gMsg_ID_8310";
+
+static ALIGN_ASSET(2) char gMsg_ID_8320[] = "__OTR__ast_radio/gMsg_ID_8320";
+
+static ALIGN_ASSET(2) char gMsg_ID_9000[] = "__OTR__ast_radio/gMsg_ID_9000";
+
+static ALIGN_ASSET(2) char gMsg_ID_9010[] = "__OTR__ast_radio/gMsg_ID_9010";
+
+static ALIGN_ASSET(2) char gMsg_ID_9100[] = "__OTR__ast_radio/gMsg_ID_9100";
+
+static ALIGN_ASSET(2) char gMsg_ID_9110[] = "__OTR__ast_radio/gMsg_ID_9110";
+
+static ALIGN_ASSET(2) char gMsg_ID_9120[] = "__OTR__ast_radio/gMsg_ID_9120";
+
+static ALIGN_ASSET(2) char gMsg_ID_9130[] = "__OTR__ast_radio/gMsg_ID_9130";
+
+static ALIGN_ASSET(2) char gMsg_ID_9140[] = "__OTR__ast_radio/gMsg_ID_9140";
+
+static ALIGN_ASSET(2) char gMsg_ID_9150[] = "__OTR__ast_radio/gMsg_ID_9150";
+
+static ALIGN_ASSET(2) char gMsg_ID_9151[] = "__OTR__ast_radio/gMsg_ID_9151";
+
+static ALIGN_ASSET(2) char gMsg_ID_9152[] = "__OTR__ast_radio/gMsg_ID_9152";
+
+static ALIGN_ASSET(2) char gMsg_ID_9153[] = "__OTR__ast_radio/gMsg_ID_9153";
+
+static ALIGN_ASSET(2) char gMsg_ID_9160[] = "__OTR__ast_radio/gMsg_ID_9160";
+
+static ALIGN_ASSET(2) char gMsg_ID_9170[] = "__OTR__ast_radio/gMsg_ID_9170";
+
+static ALIGN_ASSET(2) char gMsg_ID_9180[] = "__OTR__ast_radio/gMsg_ID_9180";
+
+static ALIGN_ASSET(2) char gMsg_ID_9190[] = "__OTR__ast_radio/gMsg_ID_9190";
+
+static ALIGN_ASSET(2) char gMsg_ID_9200[] = "__OTR__ast_radio/gMsg_ID_9200";
+
+static ALIGN_ASSET(2) char gMsg_ID_9210[] = "__OTR__ast_radio/gMsg_ID_9210";
+
+static ALIGN_ASSET(2) char gMsg_ID_9211[] = "__OTR__ast_radio/gMsg_ID_9211";
+
+static ALIGN_ASSET(2) char gMsg_ID_9212[] = "__OTR__ast_radio/gMsg_ID_9212";
+
+static ALIGN_ASSET(2) char gMsg_ID_9213[] = "__OTR__ast_radio/gMsg_ID_9213";
+
+static ALIGN_ASSET(2) char gMsg_ID_9220[] = "__OTR__ast_radio/gMsg_ID_9220";
+
+static ALIGN_ASSET(2) char gMsg_ID_9230[] = "__OTR__ast_radio/gMsg_ID_9230";
+
+static ALIGN_ASSET(2) char gMsg_ID_9240[] = "__OTR__ast_radio/gMsg_ID_9240";
+
+static ALIGN_ASSET(2) char gMsg_ID_9250[] = "__OTR__ast_radio/gMsg_ID_9250";
+
+static ALIGN_ASSET(2) char gMsg_ID_9260[] = "__OTR__ast_radio/gMsg_ID_9260";
+
+static ALIGN_ASSET(2) char gMsg_ID_9270[] = "__OTR__ast_radio/gMsg_ID_9270";
+
+static ALIGN_ASSET(2) char gMsg_ID_9275[] = "__OTR__ast_radio/gMsg_ID_9275";
+
+static ALIGN_ASSET(2) char gMsg_ID_9280[] = "__OTR__ast_radio/gMsg_ID_9280";
+
+static ALIGN_ASSET(2) char gMsg_ID_9285[] = "__OTR__ast_radio/gMsg_ID_9285";
+
+static ALIGN_ASSET(2) char gMsg_ID_9289[] = "__OTR__ast_radio/gMsg_ID_9289";
+
+static ALIGN_ASSET(2) char gMsg_ID_9290[] = "__OTR__ast_radio/gMsg_ID_9290";
+
+static ALIGN_ASSET(2) char gMsg_ID_9300[] = "__OTR__ast_radio/gMsg_ID_9300";
+
+static ALIGN_ASSET(2) char gMsg_ID_9310[] = "__OTR__ast_radio/gMsg_ID_9310";
+
+static ALIGN_ASSET(2) char gMsg_ID_9320[] = "__OTR__ast_radio/gMsg_ID_9320";
+
+static ALIGN_ASSET(2) char gMsg_ID_9322[] = "__OTR__ast_radio/gMsg_ID_9322";
+
+static ALIGN_ASSET(2) char gMsg_ID_9323[] = "__OTR__ast_radio/gMsg_ID_9323";
+
+static ALIGN_ASSET(2) char gMsg_ID_9324[] = "__OTR__ast_radio/gMsg_ID_9324";
+
+static ALIGN_ASSET(2) char gMsg_ID_9325[] = "__OTR__ast_radio/gMsg_ID_9325";
+
+static ALIGN_ASSET(2) char gMsg_ID_9330[] = "__OTR__ast_radio/gMsg_ID_9330";
+
+static ALIGN_ASSET(2) char gMsg_ID_9340[] = "__OTR__ast_radio/gMsg_ID_9340";
+
+static ALIGN_ASSET(2) char gMsg_ID_9350[] = "__OTR__ast_radio/gMsg_ID_9350";
+
+static ALIGN_ASSET(2) char gMsg_ID_9360[] = "__OTR__ast_radio/gMsg_ID_9360";
+
+static ALIGN_ASSET(2) char gMsg_ID_9365[] = "__OTR__ast_radio/gMsg_ID_9365";
+
+static ALIGN_ASSET(2) char gMsg_ID_9366[] = "__OTR__ast_radio/gMsg_ID_9366";
+
+static ALIGN_ASSET(2) char gMsg_ID_9367[] = "__OTR__ast_radio/gMsg_ID_9367";
+
+static ALIGN_ASSET(2) char gMsg_ID_9368[] = "__OTR__ast_radio/gMsg_ID_9368";
+
+static ALIGN_ASSET(2) char gMsg_ID_9369[] = "__OTR__ast_radio/gMsg_ID_9369";
+
+static ALIGN_ASSET(2) char gMsg_ID_9375[] = "__OTR__ast_radio/gMsg_ID_9375";
+
+static ALIGN_ASSET(2) char gMsg_ID_9380[] = "__OTR__ast_radio/gMsg_ID_9380";
+
+static ALIGN_ASSET(2) char gMsg_ID_9385[] = "__OTR__ast_radio/gMsg_ID_9385";
+
+static ALIGN_ASSET(2) char gMsg_ID_9390[] = "__OTR__ast_radio/gMsg_ID_9390";
+
+static ALIGN_ASSET(2) char gMsg_ID_9395[] = "__OTR__ast_radio/gMsg_ID_9395";
+
+static ALIGN_ASSET(2) char gMsg_ID_9400[] = "__OTR__ast_radio/gMsg_ID_9400";
+
+static ALIGN_ASSET(2) char gMsg_ID_9405[] = "__OTR__ast_radio/gMsg_ID_9405";
+
+static ALIGN_ASSET(2) char gMsg_ID_9411[] = "__OTR__ast_radio/gMsg_ID_9411";
+
+static ALIGN_ASSET(2) char gMsg_ID_9420[] = "__OTR__ast_radio/gMsg_ID_9420";
+
+static ALIGN_ASSET(2) char gMsg_ID_9425[] = "__OTR__ast_radio/gMsg_ID_9425";
+
+static ALIGN_ASSET(2) char gMsg_ID_9426[] = "__OTR__ast_radio/gMsg_ID_9426";
+
+static ALIGN_ASSET(2) char gMsg_ID_9427[] = "__OTR__ast_radio/gMsg_ID_9427";
+
+static ALIGN_ASSET(2) char gMsg_ID_9428[] = "__OTR__ast_radio/gMsg_ID_9428";
+
+static ALIGN_ASSET(2) char gMsg_ID_9429[] = "__OTR__ast_radio/gMsg_ID_9429";
+
+static ALIGN_ASSET(2) char gMsg_ID_9430[] = "__OTR__ast_radio/gMsg_ID_9430";
+
+static ALIGN_ASSET(2) char gMsg_ID_9431[] = "__OTR__ast_radio/gMsg_ID_9431";
+
+static ALIGN_ASSET(2) char gMsg_ID_9432[] = "__OTR__ast_radio/gMsg_ID_9432";
+
+static ALIGN_ASSET(2) char gMsg_ID_9433[] = "__OTR__ast_radio/gMsg_ID_9433";
+
+static ALIGN_ASSET(2) char gMsg_ID_9434[] = "__OTR__ast_radio/gMsg_ID_9434";
+
+static ALIGN_ASSET(2) char gMsg_ID_9436[] = "__OTR__ast_radio/gMsg_ID_9436";
+
+static ALIGN_ASSET(2) char gMsg_ID_9437[] = "__OTR__ast_radio/gMsg_ID_9437";
+
+static ALIGN_ASSET(2) char gMsg_ID_9438[] = "__OTR__ast_radio/gMsg_ID_9438";
+
+static ALIGN_ASSET(2) char gMsg_ID_10010[] = "__OTR__ast_radio/gMsg_ID_10010";
+
+static ALIGN_ASSET(2) char gMsg_ID_10020[] = "__OTR__ast_radio/gMsg_ID_10020";
+
+static ALIGN_ASSET(2) char gMsg_ID_10040[] = "__OTR__ast_radio/gMsg_ID_10040";
+
+static ALIGN_ASSET(2) char gMsg_ID_10050[] = "__OTR__ast_radio/gMsg_ID_10050";
+
+static ALIGN_ASSET(2) char gMsg_ID_10060[] = "__OTR__ast_radio/gMsg_ID_10060";
+
+static ALIGN_ASSET(2) char gMsg_ID_10070[] = "__OTR__ast_radio/gMsg_ID_10070";
+
+static ALIGN_ASSET(2) char gMsg_ID_10080[] = "__OTR__ast_radio/gMsg_ID_10080";
+
+static ALIGN_ASSET(2) char gMsg_ID_10200[] = "__OTR__ast_radio/gMsg_ID_10200";
+
+static ALIGN_ASSET(2) char gMsg_ID_10210[] = "__OTR__ast_radio/gMsg_ID_10210";
+
+static ALIGN_ASSET(2) char gMsg_ID_10220[] = "__OTR__ast_radio/gMsg_ID_10220";
+
+static ALIGN_ASSET(2) char gMsg_ID_10230[] = "__OTR__ast_radio/gMsg_ID_10230";
+
+static ALIGN_ASSET(2) char gMsg_ID_10255[] = "__OTR__ast_radio/gMsg_ID_10255";
+
+static ALIGN_ASSET(2) char gMsg_ID_10300[] = "__OTR__ast_radio/gMsg_ID_10300";
+
+static ALIGN_ASSET(2) char gMsg_ID_10310[] = "__OTR__ast_radio/gMsg_ID_10310";
+
+static ALIGN_ASSET(2) char gMsg_ID_10320[] = "__OTR__ast_radio/gMsg_ID_10320";
+
+static ALIGN_ASSET(2) char gMsg_ID_10321[] = "__OTR__ast_radio/gMsg_ID_10321";
+
+static ALIGN_ASSET(2) char gMsg_ID_10322[] = "__OTR__ast_radio/gMsg_ID_10322";
+
+static ALIGN_ASSET(2) char gMsg_ID_10323[] = "__OTR__ast_radio/gMsg_ID_10323";
+
+static ALIGN_ASSET(2) char gMsg_ID_10324[] = "__OTR__ast_radio/gMsg_ID_10324";
+
+static ALIGN_ASSET(2) char gMsg_ID_11010[] = "__OTR__ast_radio/gMsg_ID_11010";
+
+static ALIGN_ASSET(2) char gMsg_ID_11020[] = "__OTR__ast_radio/gMsg_ID_11020";
+
+static ALIGN_ASSET(2) char gMsg_ID_11030[] = "__OTR__ast_radio/gMsg_ID_11030";
+
+static ALIGN_ASSET(2) char gMsg_ID_11040[] = "__OTR__ast_radio/gMsg_ID_11040";
+
+static ALIGN_ASSET(2) char gMsg_ID_11050[] = "__OTR__ast_radio/gMsg_ID_11050";
+
+static ALIGN_ASSET(2) char gMsg_ID_11060[] = "__OTR__ast_radio/gMsg_ID_11060";
+
+static ALIGN_ASSET(2) char gMsg_ID_11100[] = "__OTR__ast_radio/gMsg_ID_11100";
+
+static ALIGN_ASSET(2) char gMsg_ID_11110[] = "__OTR__ast_radio/gMsg_ID_11110";
+
+static ALIGN_ASSET(2) char gMsg_ID_11120[] = "__OTR__ast_radio/gMsg_ID_11120";
+
+static ALIGN_ASSET(2) char gMsg_ID_11130[] = "__OTR__ast_radio/gMsg_ID_11130";
+
+static ALIGN_ASSET(2) char gMsg_ID_11150[] = "__OTR__ast_radio/gMsg_ID_11150";
+
+static ALIGN_ASSET(2) char gMsg_ID_11160[] = "__OTR__ast_radio/gMsg_ID_11160";
+
+static ALIGN_ASSET(2) char gMsg_ID_11200[] = "__OTR__ast_radio/gMsg_ID_11200";
+
+static ALIGN_ASSET(2) char gMsg_ID_11210[] = "__OTR__ast_radio/gMsg_ID_11210";
+
+static ALIGN_ASSET(2) char gMsg_ID_11220[] = "__OTR__ast_radio/gMsg_ID_11220";
+
+static ALIGN_ASSET(2) char gMsg_ID_11230[] = "__OTR__ast_radio/gMsg_ID_11230";
+
+static ALIGN_ASSET(2) char gMsg_ID_11240[] = "__OTR__ast_radio/gMsg_ID_11240";
+
+static ALIGN_ASSET(2) char gMsg_ID_11241[] = "__OTR__ast_radio/gMsg_ID_11241";
+
+static ALIGN_ASSET(2) char gMsg_ID_14020[] = "__OTR__ast_radio/gMsg_ID_14020";
+
+static ALIGN_ASSET(2) char gMsg_ID_14030[] = "__OTR__ast_radio/gMsg_ID_14030";
+
+static ALIGN_ASSET(2) char gMsg_ID_14040[] = "__OTR__ast_radio/gMsg_ID_14040";
+
+static ALIGN_ASSET(2) char gMsg_ID_14045[] = "__OTR__ast_radio/gMsg_ID_14045";
+
+static ALIGN_ASSET(2) char gMsg_ID_14050[] = "__OTR__ast_radio/gMsg_ID_14050";
+
+static ALIGN_ASSET(2) char gMsg_ID_14060[] = "__OTR__ast_radio/gMsg_ID_14060";
+
+static ALIGN_ASSET(2) char gMsg_ID_14070[] = "__OTR__ast_radio/gMsg_ID_14070";
+
+static ALIGN_ASSET(2) char gMsg_ID_14080[] = "__OTR__ast_radio/gMsg_ID_14080";
+
+static ALIGN_ASSET(2) char gMsg_ID_14100[] = "__OTR__ast_radio/gMsg_ID_14100";
+
+static ALIGN_ASSET(2) char gMsg_ID_14110[] = "__OTR__ast_radio/gMsg_ID_14110";
+
+static ALIGN_ASSET(2) char gMsg_ID_14120[] = "__OTR__ast_radio/gMsg_ID_14120";
+
+static ALIGN_ASSET(2) char gMsg_ID_14130[] = "__OTR__ast_radio/gMsg_ID_14130";
+
+static ALIGN_ASSET(2) char gMsg_ID_14140[] = "__OTR__ast_radio/gMsg_ID_14140";
+
+static ALIGN_ASSET(2) char gMsg_ID_14150[] = "__OTR__ast_radio/gMsg_ID_14150";
+
+static ALIGN_ASSET(2) char gMsg_ID_14160[] = "__OTR__ast_radio/gMsg_ID_14160";
+
+static ALIGN_ASSET(2) char gMsg_ID_14170[] = "__OTR__ast_radio/gMsg_ID_14170";
+
+static ALIGN_ASSET(2) char gMsg_ID_14180[] = "__OTR__ast_radio/gMsg_ID_14180";
+
+static ALIGN_ASSET(2) char gMsg_ID_14190[] = "__OTR__ast_radio/gMsg_ID_14190";
+
+static ALIGN_ASSET(2) char gMsg_ID_14200[] = "__OTR__ast_radio/gMsg_ID_14200";
+
+static ALIGN_ASSET(2) char gMsg_ID_14210[] = "__OTR__ast_radio/gMsg_ID_14210";
+
+static ALIGN_ASSET(2) char gMsg_ID_14220[] = "__OTR__ast_radio/gMsg_ID_14220";
+
+static ALIGN_ASSET(2) char gMsg_ID_14230[] = "__OTR__ast_radio/gMsg_ID_14230";
+
+static ALIGN_ASSET(2) char gMsg_ID_14300[] = "__OTR__ast_radio/gMsg_ID_14300";
+
+static ALIGN_ASSET(2) char gMsg_ID_14310[] = "__OTR__ast_radio/gMsg_ID_14310";
+
+static ALIGN_ASSET(2) char gMsg_ID_14320[] = "__OTR__ast_radio/gMsg_ID_14320";
+
+static ALIGN_ASSET(2) char gMsg_ID_14330[] = "__OTR__ast_radio/gMsg_ID_14330";
+
+static ALIGN_ASSET(2) char gMsg_ID_14340[] = "__OTR__ast_radio/gMsg_ID_14340";
+
+static ALIGN_ASSET(2) char gMsg_ID_14350[] = "__OTR__ast_radio/gMsg_ID_14350";
+
+static ALIGN_ASSET(2) char gMsg_ID_14360[] = "__OTR__ast_radio/gMsg_ID_14360";
+
+static ALIGN_ASSET(2) char gMsg_ID_14370[] = "__OTR__ast_radio/gMsg_ID_14370";
+
+static ALIGN_ASSET(2) char gMsg_ID_15010[] = "__OTR__ast_radio/gMsg_ID_15010";
+
+static ALIGN_ASSET(2) char gMsg_ID_15030[] = "__OTR__ast_radio/gMsg_ID_15030";
+
+static ALIGN_ASSET(2) char gMsg_ID_15040[] = "__OTR__ast_radio/gMsg_ID_15040";
+
+static ALIGN_ASSET(2) char gMsg_ID_15045[] = "__OTR__ast_radio/gMsg_ID_15045";
+
+static ALIGN_ASSET(2) char gMsg_ID_15050[] = "__OTR__ast_radio/gMsg_ID_15050";
+
+static ALIGN_ASSET(2) char gMsg_ID_15051[] = "__OTR__ast_radio/gMsg_ID_15051";
+
+static ALIGN_ASSET(2) char gMsg_ID_15052[] = "__OTR__ast_radio/gMsg_ID_15052";
+
+static ALIGN_ASSET(2) char gMsg_ID_15053[] = "__OTR__ast_radio/gMsg_ID_15053";
+
+static ALIGN_ASSET(2) char gMsg_ID_15054[] = "__OTR__ast_radio/gMsg_ID_15054";
+
+static ALIGN_ASSET(2) char gMsg_ID_15060[] = "__OTR__ast_radio/gMsg_ID_15060";
+
+static ALIGN_ASSET(2) char gMsg_ID_15100[] = "__OTR__ast_radio/gMsg_ID_15100";
+
+static ALIGN_ASSET(2) char gMsg_ID_15110[] = "__OTR__ast_radio/gMsg_ID_15110";
+
+static ALIGN_ASSET(2) char gMsg_ID_15120[] = "__OTR__ast_radio/gMsg_ID_15120";
+
+static ALIGN_ASSET(2) char gMsg_ID_15130[] = "__OTR__ast_radio/gMsg_ID_15130";
+
+static ALIGN_ASSET(2) char gMsg_ID_15140[] = "__OTR__ast_radio/gMsg_ID_15140";
+
+static ALIGN_ASSET(2) char gMsg_ID_15200[] = "__OTR__ast_radio/gMsg_ID_15200";
+
+static ALIGN_ASSET(2) char gMsg_ID_15210[] = "__OTR__ast_radio/gMsg_ID_15210";
+
+static ALIGN_ASSET(2) char gMsg_ID_15220[] = "__OTR__ast_radio/gMsg_ID_15220";
+
+static ALIGN_ASSET(2) char gMsg_ID_15230[] = "__OTR__ast_radio/gMsg_ID_15230";
+
+static ALIGN_ASSET(2) char gMsg_ID_15240[] = "__OTR__ast_radio/gMsg_ID_15240";
+
+static ALIGN_ASSET(2) char gMsg_ID_15250[] = "__OTR__ast_radio/gMsg_ID_15250";
+
+static ALIGN_ASSET(2) char gMsg_ID_15251[] = "__OTR__ast_radio/gMsg_ID_15251";
+
+static ALIGN_ASSET(2) char gMsg_ID_15252[] = "__OTR__ast_radio/gMsg_ID_15252";
+
+static ALIGN_ASSET(2) char gMsg_ID_15253[] = "__OTR__ast_radio/gMsg_ID_15253";
+
+static ALIGN_ASSET(2) char gMsg_ID_15254[] = "__OTR__ast_radio/gMsg_ID_15254";
+
+static ALIGN_ASSET(2) char gMsg_ID_16010[] = "__OTR__ast_radio/gMsg_ID_16010";
+
+static ALIGN_ASSET(2) char gMsg_ID_16020[] = "__OTR__ast_radio/gMsg_ID_16020";
+
+static ALIGN_ASSET(2) char gMsg_ID_16030[] = "__OTR__ast_radio/gMsg_ID_16030";
+
+static ALIGN_ASSET(2) char gMsg_ID_16040[] = "__OTR__ast_radio/gMsg_ID_16040";
+
+static ALIGN_ASSET(2) char gMsg_ID_16046[] = "__OTR__ast_radio/gMsg_ID_16046";
+
+static ALIGN_ASSET(2) char gMsg_ID_16047[] = "__OTR__ast_radio/gMsg_ID_16047";
+
+static ALIGN_ASSET(2) char gMsg_ID_16050[] = "__OTR__ast_radio/gMsg_ID_16050";
+
+static ALIGN_ASSET(2) char gMsg_ID_16055[] = "__OTR__ast_radio/gMsg_ID_16055";
+
+static ALIGN_ASSET(2) char gMsg_ID_16060[] = "__OTR__ast_radio/gMsg_ID_16060";
+
+static ALIGN_ASSET(2) char gMsg_ID_16080[] = "__OTR__ast_radio/gMsg_ID_16080";
+
+static ALIGN_ASSET(2) char gMsg_ID_16085[] = "__OTR__ast_radio/gMsg_ID_16085";
+
+static ALIGN_ASSET(2) char gMsg_ID_16090[] = "__OTR__ast_radio/gMsg_ID_16090";
+
+static ALIGN_ASSET(2) char gMsg_ID_16100[] = "__OTR__ast_radio/gMsg_ID_16100";
+
+static ALIGN_ASSET(2) char gMsg_ID_16110[] = "__OTR__ast_radio/gMsg_ID_16110";
+
+static ALIGN_ASSET(2) char gMsg_ID_16120[] = "__OTR__ast_radio/gMsg_ID_16120";
+
+static ALIGN_ASSET(2) char gMsg_ID_16125[] = "__OTR__ast_radio/gMsg_ID_16125";
+
+static ALIGN_ASSET(2) char gMsg_ID_16130[] = "__OTR__ast_radio/gMsg_ID_16130";
+
+static ALIGN_ASSET(2) char gMsg_ID_16135[] = "__OTR__ast_radio/gMsg_ID_16135";
+
+static ALIGN_ASSET(2) char gMsg_ID_16140[] = "__OTR__ast_radio/gMsg_ID_16140";
+
+static ALIGN_ASSET(2) char gMsg_ID_16150[] = "__OTR__ast_radio/gMsg_ID_16150";
+
+static ALIGN_ASSET(2) char gMsg_ID_16160[] = "__OTR__ast_radio/gMsg_ID_16160";
+
+static ALIGN_ASSET(2) char gMsg_ID_16165[] = "__OTR__ast_radio/gMsg_ID_16165";
+
+static ALIGN_ASSET(2) char gMsg_ID_16170[] = "__OTR__ast_radio/gMsg_ID_16170";
+
+static ALIGN_ASSET(2) char gMsg_ID_16175[] = "__OTR__ast_radio/gMsg_ID_16175";
+
+static ALIGN_ASSET(2) char gMsg_ID_16180[] = "__OTR__ast_radio/gMsg_ID_16180";
+
+static ALIGN_ASSET(2) char gMsg_ID_16185[] = "__OTR__ast_radio/gMsg_ID_16185";
+
+static ALIGN_ASSET(2) char gMsg_ID_16200[] = "__OTR__ast_radio/gMsg_ID_16200";
+
+static ALIGN_ASSET(2) char gMsg_ID_16210[] = "__OTR__ast_radio/gMsg_ID_16210";
+
+static ALIGN_ASSET(2) char gMsg_ID_16220[] = "__OTR__ast_radio/gMsg_ID_16220";
+
+static ALIGN_ASSET(2) char gMsg_ID_16230[] = "__OTR__ast_radio/gMsg_ID_16230";
+
+static ALIGN_ASSET(2) char gMsg_ID_16240[] = "__OTR__ast_radio/gMsg_ID_16240";
+
+static ALIGN_ASSET(2) char gMsg_ID_16250[] = "__OTR__ast_radio/gMsg_ID_16250";
+
+static ALIGN_ASSET(2) char gMsg_ID_16260[] = "__OTR__ast_radio/gMsg_ID_16260";
+
+static ALIGN_ASSET(2) char gMsg_ID_16270[] = "__OTR__ast_radio/gMsg_ID_16270";
+
+static ALIGN_ASSET(2) char gMsg_ID_16280[] = "__OTR__ast_radio/gMsg_ID_16280";
+
+static ALIGN_ASSET(2) char gMsg_ID_17010[] = "__OTR__ast_radio/gMsg_ID_17010";
+
+static ALIGN_ASSET(2) char gMsg_ID_17020[] = "__OTR__ast_radio/gMsg_ID_17020";
+
+static ALIGN_ASSET(2) char gMsg_ID_17030[] = "__OTR__ast_radio/gMsg_ID_17030";
+
+static ALIGN_ASSET(2) char gMsg_ID_17100[] = "__OTR__ast_radio/gMsg_ID_17100";
+
+static ALIGN_ASSET(2) char gMsg_ID_17110[] = "__OTR__ast_radio/gMsg_ID_17110";
+
+static ALIGN_ASSET(2) char gMsg_ID_17120[] = "__OTR__ast_radio/gMsg_ID_17120";
+
+static ALIGN_ASSET(2) char gMsg_ID_17130[] = "__OTR__ast_radio/gMsg_ID_17130";
+
+static ALIGN_ASSET(2) char gMsg_ID_17131[] = "__OTR__ast_radio/gMsg_ID_17131";
+
+static ALIGN_ASSET(2) char gMsg_ID_17140[] = "__OTR__ast_radio/gMsg_ID_17140";
+
+static ALIGN_ASSET(2) char gMsg_ID_17150[] = "__OTR__ast_radio/gMsg_ID_17150";
+
+static ALIGN_ASSET(2) char gMsg_ID_17160[] = "__OTR__ast_radio/gMsg_ID_17160";
+
+static ALIGN_ASSET(2) char gMsg_ID_17170[] = "__OTR__ast_radio/gMsg_ID_17170";
+
+static ALIGN_ASSET(2) char gMsg_ID_17300[] = "__OTR__ast_radio/gMsg_ID_17300";
+
+static ALIGN_ASSET(2) char gMsg_ID_17310[] = "__OTR__ast_radio/gMsg_ID_17310";
+
+static ALIGN_ASSET(2) char gMsg_ID_17320[] = "__OTR__ast_radio/gMsg_ID_17320";
+
+static ALIGN_ASSET(2) char gMsg_ID_17330[] = "__OTR__ast_radio/gMsg_ID_17330";
+
+static ALIGN_ASSET(2) char gMsg_ID_17350[] = "__OTR__ast_radio/gMsg_ID_17350";
+
+static ALIGN_ASSET(2) char gMsg_ID_17360[] = "__OTR__ast_radio/gMsg_ID_17360";
+
+static ALIGN_ASSET(2) char gMsg_ID_17370[] = "__OTR__ast_radio/gMsg_ID_17370";
+
+static ALIGN_ASSET(2) char gMsg_ID_17380[] = "__OTR__ast_radio/gMsg_ID_17380";
+
+static ALIGN_ASSET(2) char gMsg_ID_17390[] = "__OTR__ast_radio/gMsg_ID_17390";
+
+static ALIGN_ASSET(2) char gMsg_ID_17400[] = "__OTR__ast_radio/gMsg_ID_17400";
+
+static ALIGN_ASSET(2) char gMsg_ID_17410[] = "__OTR__ast_radio/gMsg_ID_17410";
+
+static ALIGN_ASSET(2) char gMsg_ID_17420[] = "__OTR__ast_radio/gMsg_ID_17420";
+
+static ALIGN_ASSET(2) char gMsg_ID_17430[] = "__OTR__ast_radio/gMsg_ID_17430";
+
+static ALIGN_ASSET(2) char gMsg_ID_17440[] = "__OTR__ast_radio/gMsg_ID_17440";
+
+static ALIGN_ASSET(2) char gMsg_ID_17450[] = "__OTR__ast_radio/gMsg_ID_17450";
+
+static ALIGN_ASSET(2) char gMsg_ID_17460[] = "__OTR__ast_radio/gMsg_ID_17460";
+
+static ALIGN_ASSET(2) char gMsg_ID_17470[] = "__OTR__ast_radio/gMsg_ID_17470";
+
+static ALIGN_ASSET(2) char gMsg_ID_17471[] = "__OTR__ast_radio/gMsg_ID_17471";
+
+static ALIGN_ASSET(2) char gMsg_ID_17472[] = "__OTR__ast_radio/gMsg_ID_17472";
+
+static ALIGN_ASSET(2) char gMsg_ID_17473[] = "__OTR__ast_radio/gMsg_ID_17473";
+
+static ALIGN_ASSET(2) char gMsg_ID_17474[] = "__OTR__ast_radio/gMsg_ID_17474";
+
+static ALIGN_ASSET(2) char gMsg_ID_17475[] = "__OTR__ast_radio/gMsg_ID_17475";
+
+static ALIGN_ASSET(2) char gMsg_ID_17476[] = "__OTR__ast_radio/gMsg_ID_17476";
+
+static ALIGN_ASSET(2) char gMsg_ID_18000[] = "__OTR__ast_radio/gMsg_ID_18000";
+
+static ALIGN_ASSET(2) char gMsg_ID_18005[] = "__OTR__ast_radio/gMsg_ID_18005";
+
+static ALIGN_ASSET(2) char gMsg_ID_18006[] = "__OTR__ast_radio/gMsg_ID_18006";
+
+static ALIGN_ASSET(2) char gMsg_ID_18007[] = "__OTR__ast_radio/gMsg_ID_18007";
+
+static ALIGN_ASSET(2) char gMsg_ID_18010[] = "__OTR__ast_radio/gMsg_ID_18010";
+
+static ALIGN_ASSET(2) char gMsg_ID_18015[] = "__OTR__ast_radio/gMsg_ID_18015";
+
+static ALIGN_ASSET(2) char gMsg_ID_18018[] = "__OTR__ast_radio/gMsg_ID_18018";
+
+static ALIGN_ASSET(2) char gMsg_ID_18020[] = "__OTR__ast_radio/gMsg_ID_18020";
+
+static ALIGN_ASSET(2) char gMsg_ID_18021[] = "__OTR__ast_radio/gMsg_ID_18021";
+
+static ALIGN_ASSET(2) char gMsg_ID_18022[] = "__OTR__ast_radio/gMsg_ID_18022";
+
+static ALIGN_ASSET(2) char gMsg_ID_18025[] = "__OTR__ast_radio/gMsg_ID_18025";
+
+static ALIGN_ASSET(2) char gMsg_ID_18030[] = "__OTR__ast_radio/gMsg_ID_18030";
+
+static ALIGN_ASSET(2) char gMsg_ID_18031[] = "__OTR__ast_radio/gMsg_ID_18031";
+
+static ALIGN_ASSET(2) char gMsg_ID_18035[] = "__OTR__ast_radio/gMsg_ID_18035";
+
+static ALIGN_ASSET(2) char gMsg_ID_18040[] = "__OTR__ast_radio/gMsg_ID_18040";
+
+static ALIGN_ASSET(2) char gMsg_ID_18045[] = "__OTR__ast_radio/gMsg_ID_18045";
+
+static ALIGN_ASSET(2) char gMsg_ID_18050[] = "__OTR__ast_radio/gMsg_ID_18050";
+
+static ALIGN_ASSET(2) char gMsg_ID_18055[] = "__OTR__ast_radio/gMsg_ID_18055";
+
+static ALIGN_ASSET(2) char gMsg_ID_18060[] = "__OTR__ast_radio/gMsg_ID_18060";
+
+static ALIGN_ASSET(2) char gMsg_ID_18065[] = "__OTR__ast_radio/gMsg_ID_18065";
+
+static ALIGN_ASSET(2) char gMsg_ID_18066[] = "__OTR__ast_radio/gMsg_ID_18066";
+
+static ALIGN_ASSET(2) char gMsg_ID_18070[] = "__OTR__ast_radio/gMsg_ID_18070";
+
+static ALIGN_ASSET(2) char gMsg_ID_18075[] = "__OTR__ast_radio/gMsg_ID_18075";
+
+static ALIGN_ASSET(2) char gMsg_ID_18080[] = "__OTR__ast_radio/gMsg_ID_18080";
+
+static ALIGN_ASSET(2) char gMsg_ID_18085[] = "__OTR__ast_radio/gMsg_ID_18085";
+
+static ALIGN_ASSET(2) char gMsg_ID_18090[] = "__OTR__ast_radio/gMsg_ID_18090";
+
+static ALIGN_ASSET(2) char gMsg_ID_18095[] = "__OTR__ast_radio/gMsg_ID_18095";
+
+static ALIGN_ASSET(2) char gMsg_ID_18100[] = "__OTR__ast_radio/gMsg_ID_18100";
+
+static ALIGN_ASSET(2) char gMsg_ID_18105[] = "__OTR__ast_radio/gMsg_ID_18105";
+
+static ALIGN_ASSET(2) char gMsg_ID_18120[] = "__OTR__ast_radio/gMsg_ID_18120";
+
+static ALIGN_ASSET(2) char gMsg_ID_18130[] = "__OTR__ast_radio/gMsg_ID_18130";
+
+static ALIGN_ASSET(2) char gMsg_ID_18140[] = "__OTR__ast_radio/gMsg_ID_18140";
+
+static ALIGN_ASSET(2) char gMsg_ID_18150[] = "__OTR__ast_radio/gMsg_ID_18150";
+
+static ALIGN_ASSET(2) char gMsg_ID_19010[] = "__OTR__ast_radio/gMsg_ID_19010";
+
+static ALIGN_ASSET(2) char gMsg_ID_19205[] = "__OTR__ast_radio/gMsg_ID_19205";
+
+static ALIGN_ASSET(2) char gMsg_ID_19200[] = "__OTR__ast_radio/gMsg_ID_19200";
+
+static ALIGN_ASSET(2) char gMsg_ID_19210[] = "__OTR__ast_radio/gMsg_ID_19210";
+
+static ALIGN_ASSET(2) char gMsg_ID_19220[] = "__OTR__ast_radio/gMsg_ID_19220";
+
+static ALIGN_ASSET(2) char gMsg_ID_19230[] = "__OTR__ast_radio/gMsg_ID_19230";
+
+static ALIGN_ASSET(2) char gMsg_ID_19240[] = "__OTR__ast_radio/gMsg_ID_19240";
+
+static ALIGN_ASSET(2) char gMsg_ID_19250[] = "__OTR__ast_radio/gMsg_ID_19250";
+
+static ALIGN_ASSET(2) char gMsg_ID_19325[] = "__OTR__ast_radio/gMsg_ID_19325";
+
+static ALIGN_ASSET(2) char gMsg_ID_19330[] = "__OTR__ast_radio/gMsg_ID_19330";
+
+static ALIGN_ASSET(2) char gMsg_ID_19335[] = "__OTR__ast_radio/gMsg_ID_19335";
+
+static ALIGN_ASSET(2) char gMsg_ID_19340[] = "__OTR__ast_radio/gMsg_ID_19340";
+
+static ALIGN_ASSET(2) char gMsg_ID_19350[] = "__OTR__ast_radio/gMsg_ID_19350";
+
+static ALIGN_ASSET(2) char gMsg_ID_19355[] = "__OTR__ast_radio/gMsg_ID_19355";
+
+static ALIGN_ASSET(2) char gMsg_ID_19360[] = "__OTR__ast_radio/gMsg_ID_19360";
+
+static ALIGN_ASSET(2) char gMsg_ID_19370[] = "__OTR__ast_radio/gMsg_ID_19370";
+
+static ALIGN_ASSET(2) char gMsg_ID_19400[] = "__OTR__ast_radio/gMsg_ID_19400";
+
+static ALIGN_ASSET(2) char gMsg_ID_19410[] = "__OTR__ast_radio/gMsg_ID_19410";
+
+static ALIGN_ASSET(2) char gMsg_ID_19420[] = "__OTR__ast_radio/gMsg_ID_19420";
+
+static ALIGN_ASSET(2) char gMsg_ID_19430[] = "__OTR__ast_radio/gMsg_ID_19430";
+
+static ALIGN_ASSET(2) char gMsg_ID_19440[] = "__OTR__ast_radio/gMsg_ID_19440";
+
+static ALIGN_ASSET(2) char gMsg_ID_19450[] = "__OTR__ast_radio/gMsg_ID_19450";
+
+static ALIGN_ASSET(2) char gMsg_ID_19451[] = "__OTR__ast_radio/gMsg_ID_19451";
+
+static ALIGN_ASSET(2) char gMsg_ID_19452[] = "__OTR__ast_radio/gMsg_ID_19452";
+
+static ALIGN_ASSET(2) char gMsg_ID_19453[] = "__OTR__ast_radio/gMsg_ID_19453";
+
+static ALIGN_ASSET(2) char gMsg_ID_19454[] = "__OTR__ast_radio/gMsg_ID_19454";
+
+static ALIGN_ASSET(2) char gMsg_ID_19455[] = "__OTR__ast_radio/gMsg_ID_19455";
+
+static ALIGN_ASSET(2) char gMsg_ID_19456[] = "__OTR__ast_radio/gMsg_ID_19456";
+
+static ALIGN_ASSET(2) char gMsg_ID_19457[] = "__OTR__ast_radio/gMsg_ID_19457";
+
+static ALIGN_ASSET(2) char gMsg_ID_19458[] = "__OTR__ast_radio/gMsg_ID_19458";
+
+static ALIGN_ASSET(2) char gMsg_ID_19459[] = "__OTR__ast_radio/gMsg_ID_19459";
+
+static ALIGN_ASSET(2) char gMsg_ID_19460[] = "__OTR__ast_radio/gMsg_ID_19460";
+
+static ALIGN_ASSET(2) char gMsg_ID_19461[] = "__OTR__ast_radio/gMsg_ID_19461";
+
+static ALIGN_ASSET(2) char gMsg_ID_19462[] = "__OTR__ast_radio/gMsg_ID_19462";
+
+static ALIGN_ASSET(2) char gMsg_ID_19463[] = "__OTR__ast_radio/gMsg_ID_19463";
+
+static ALIGN_ASSET(2) char gMsg_ID_19464[] = "__OTR__ast_radio/gMsg_ID_19464";
+
+static ALIGN_ASSET(2) char gMsg_ID_19465[] = "__OTR__ast_radio/gMsg_ID_19465";
+
+static ALIGN_ASSET(2) char gMsg_ID_19466[] = "__OTR__ast_radio/gMsg_ID_19466";
+
+static ALIGN_ASSET(2) char gMsg_ID_19467[] = "__OTR__ast_radio/gMsg_ID_19467";
+
+static ALIGN_ASSET(2) char gMsg_ID_19468[] = "__OTR__ast_radio/gMsg_ID_19468";
+
+static ALIGN_ASSET(2) char gMsg_ID_20010[] = "__OTR__ast_radio/gMsg_ID_20010";
+
+static ALIGN_ASSET(2) char gMsg_ID_20011[] = "__OTR__ast_radio/gMsg_ID_20011";
+
+static ALIGN_ASSET(2) char gMsg_ID_20012[] = "__OTR__ast_radio/gMsg_ID_20012";
+
+static ALIGN_ASSET(2) char gMsg_ID_20013[] = "__OTR__ast_radio/gMsg_ID_20013";
+
+static ALIGN_ASSET(2) char gMsg_ID_20014[] = "__OTR__ast_radio/gMsg_ID_20014";
+
+static ALIGN_ASSET(2) char gMsg_ID_20015[] = "__OTR__ast_radio/gMsg_ID_20015";
+
+static ALIGN_ASSET(2) char gMsg_ID_20016[] = "__OTR__ast_radio/gMsg_ID_20016";
+
+static ALIGN_ASSET(2) char gMsg_ID_20017[] = "__OTR__ast_radio/gMsg_ID_20017";
+
+static ALIGN_ASSET(2) char gMsg_ID_20018[] = "__OTR__ast_radio/gMsg_ID_20018";
+
+static ALIGN_ASSET(2) char gMsg_ID_20019[] = "__OTR__ast_radio/gMsg_ID_20019";
+
+static ALIGN_ASSET(2) char gMsg_ID_20020[] = "__OTR__ast_radio/gMsg_ID_20020";
+
+static ALIGN_ASSET(2) char gMsg_ID_20030[] = "__OTR__ast_radio/gMsg_ID_20030";
+
+static ALIGN_ASSET(2) char gMsg_ID_20040[] = "__OTR__ast_radio/gMsg_ID_20040";
+
+static ALIGN_ASSET(2) char gMsg_ID_20050[] = "__OTR__ast_radio/gMsg_ID_20050";
+
+static ALIGN_ASSET(2) char gMsg_ID_20060[] = "__OTR__ast_radio/gMsg_ID_20060";
+
+static ALIGN_ASSET(2) char gMsg_ID_20070[] = "__OTR__ast_radio/gMsg_ID_20070";
+
+static ALIGN_ASSET(2) char gMsg_ID_20080[] = "__OTR__ast_radio/gMsg_ID_20080";
+
+static ALIGN_ASSET(2) char gMsg_ID_20084[] = "__OTR__ast_radio/gMsg_ID_20084";
+
+static ALIGN_ASSET(2) char gMsg_ID_20085[] = "__OTR__ast_radio/gMsg_ID_20085";
+
+static ALIGN_ASSET(2) char gMsg_ID_20090[] = "__OTR__ast_radio/gMsg_ID_20090";
+
+static ALIGN_ASSET(2) char gMsg_ID_20091[] = "__OTR__ast_radio/gMsg_ID_20091";
+
+static ALIGN_ASSET(2) char gMsg_ID_20092[] = "__OTR__ast_radio/gMsg_ID_20092";
+
+static ALIGN_ASSET(2) char gMsg_ID_20150[] = "__OTR__ast_radio/gMsg_ID_20150";
+
+static ALIGN_ASSET(2) char gMsg_ID_20160[] = "__OTR__ast_radio/gMsg_ID_20160";
+
+static ALIGN_ASSET(2) char gMsg_ID_20170[] = "__OTR__ast_radio/gMsg_ID_20170";
+
+static ALIGN_ASSET(2) char gMsg_ID_20180[] = "__OTR__ast_radio/gMsg_ID_20180";
+
+static ALIGN_ASSET(2) char gMsg_ID_20190[] = "__OTR__ast_radio/gMsg_ID_20190";
+
+static ALIGN_ASSET(2) char gMsg_ID_20200[] = "__OTR__ast_radio/gMsg_ID_20200";
+
+static ALIGN_ASSET(2) char gMsg_ID_20210[] = "__OTR__ast_radio/gMsg_ID_20210";
+
+static ALIGN_ASSET(2) char gMsg_ID_20220[] = "__OTR__ast_radio/gMsg_ID_20220";
+
+static ALIGN_ASSET(2) char gMsg_ID_20221[] = "__OTR__ast_radio/gMsg_ID_20221";
+
+static ALIGN_ASSET(2) char gMsg_ID_20222[] = "__OTR__ast_radio/gMsg_ID_20222";
+
+static ALIGN_ASSET(2) char gMsg_ID_20230[] = "__OTR__ast_radio/gMsg_ID_20230";
+
+static ALIGN_ASSET(2) char gMsg_ID_20235[] = "__OTR__ast_radio/gMsg_ID_20235";
+
+static ALIGN_ASSET(2) char gMsg_ID_20236[] = "__OTR__ast_radio/gMsg_ID_20236";
+
+static ALIGN_ASSET(2) char gMsg_ID_20237[] = "__OTR__ast_radio/gMsg_ID_20237";
+
+static ALIGN_ASSET(2) char gMsg_ID_20238[] = "__OTR__ast_radio/gMsg_ID_20238";
+
+static ALIGN_ASSET(2) char gMsg_ID_20239[] = "__OTR__ast_radio/gMsg_ID_20239";
+
+static ALIGN_ASSET(2) char gMsg_ID_20250[] = "__OTR__ast_radio/gMsg_ID_20250";
+
+static ALIGN_ASSET(2) char gMsg_ID_20260[] = "__OTR__ast_radio/gMsg_ID_20260";
+
+static ALIGN_ASSET(2) char gMsg_ID_20261[] = "__OTR__ast_radio/gMsg_ID_20261";
+
+static ALIGN_ASSET(2) char gMsg_ID_20262[] = "__OTR__ast_radio/gMsg_ID_20262";
+
+static ALIGN_ASSET(2) char gMsg_ID_20263[] = "__OTR__ast_radio/gMsg_ID_20263";
+
+static ALIGN_ASSET(2) char gMsg_ID_20264[] = "__OTR__ast_radio/gMsg_ID_20264";
+
+static ALIGN_ASSET(2) char gMsg_ID_20265[] = "__OTR__ast_radio/gMsg_ID_20265";
+
+static ALIGN_ASSET(2) char gMsg_ID_20266[] = "__OTR__ast_radio/gMsg_ID_20266";
+
+static ALIGN_ASSET(2) char gMsg_ID_20267[] = "__OTR__ast_radio/gMsg_ID_20267";
+
+static ALIGN_ASSET(2) char gMsg_ID_20268[] = "__OTR__ast_radio/gMsg_ID_20268";
+
+static ALIGN_ASSET(2) char gMsg_ID_20269[] = "__OTR__ast_radio/gMsg_ID_20269";
+
+static ALIGN_ASSET(2) char gMsg_ID_20270[] = "__OTR__ast_radio/gMsg_ID_20270";
+
+static ALIGN_ASSET(2) char gMsg_ID_20271[] = "__OTR__ast_radio/gMsg_ID_20271";
+
+static ALIGN_ASSET(2) char gMsg_ID_20272[] = "__OTR__ast_radio/gMsg_ID_20272";
+
+static ALIGN_ASSET(2) char gMsg_ID_20273[] = "__OTR__ast_radio/gMsg_ID_20273";
+
+static ALIGN_ASSET(2) char gMsg_ID_20274[] = "__OTR__ast_radio/gMsg_ID_20274";
+
+static ALIGN_ASSET(2) char gMsg_ID_20275[] = "__OTR__ast_radio/gMsg_ID_20275";
+
+static ALIGN_ASSET(2) char gMsg_ID_20276[] = "__OTR__ast_radio/gMsg_ID_20276";
+
+static ALIGN_ASSET(2) char gMsg_ID_20277[] = "__OTR__ast_radio/gMsg_ID_20277";
+
+static ALIGN_ASSET(2) char gMsg_ID_20278[] = "__OTR__ast_radio/gMsg_ID_20278";
+
+static ALIGN_ASSET(2) char gMsg_ID_20279[] = "__OTR__ast_radio/gMsg_ID_20279";
+
+static ALIGN_ASSET(2) char gMsg_ID_20280[] = "__OTR__ast_radio/gMsg_ID_20280";
+
+static ALIGN_ASSET(2) char gMsg_ID_20281[] = "__OTR__ast_radio/gMsg_ID_20281";
+
+static ALIGN_ASSET(2) char gMsg_ID_20282[] = "__OTR__ast_radio/gMsg_ID_20282";
+
+static ALIGN_ASSET(2) char gMsg_ID_20283[] = "__OTR__ast_radio/gMsg_ID_20283";
+
+static ALIGN_ASSET(2) char gMsg_ID_20284[] = "__OTR__ast_radio/gMsg_ID_20284";
+
+static ALIGN_ASSET(2) char gMsg_ID_20285[] = "__OTR__ast_radio/gMsg_ID_20285";
+
+static ALIGN_ASSET(2) char gMsg_ID_20286[] = "__OTR__ast_radio/gMsg_ID_20286";
+
+static ALIGN_ASSET(2) char gMsg_ID_20287[] = "__OTR__ast_radio/gMsg_ID_20287";
+
+static ALIGN_ASSET(2) char gMsg_ID_20288[] = "__OTR__ast_radio/gMsg_ID_20288";
+
+static ALIGN_ASSET(2) char gMsg_ID_20289[] = "__OTR__ast_radio/gMsg_ID_20289";
+
+static ALIGN_ASSET(2) char gMsg_ID_20290[] = "__OTR__ast_radio/gMsg_ID_20290";
+
+static ALIGN_ASSET(2) char gMsg_ID_20291[] = "__OTR__ast_radio/gMsg_ID_20291";
+
+static ALIGN_ASSET(2) char gMsg_ID_20292[] = "__OTR__ast_radio/gMsg_ID_20292";
+
+static ALIGN_ASSET(2) char gMsg_ID_20294[] = "__OTR__ast_radio/gMsg_ID_20294";
+
+static ALIGN_ASSET(2) char gMsg_ID_20296[] = "__OTR__ast_radio/gMsg_ID_20296";
+
+static ALIGN_ASSET(2) char gMsg_ID_20297[] = "__OTR__ast_radio/gMsg_ID_20297";
+
+static ALIGN_ASSET(2) char gMsg_ID_20298[] = "__OTR__ast_radio/gMsg_ID_20298";
+
+static ALIGN_ASSET(2) char gMsg_ID_20299[] = "__OTR__ast_radio/gMsg_ID_20299";
+
+static ALIGN_ASSET(2) char gMsg_ID_20300[] = "__OTR__ast_radio/gMsg_ID_20300";
+
+static ALIGN_ASSET(2) char gMsg_ID_20301[] = "__OTR__ast_radio/gMsg_ID_20301";
+
+static ALIGN_ASSET(2) char gMsg_ID_20302[] = "__OTR__ast_radio/gMsg_ID_20302";
+
+static ALIGN_ASSET(2) char gMsg_ID_20303[] = "__OTR__ast_radio/gMsg_ID_20303";
+
+static ALIGN_ASSET(2) char gMsg_ID_20304[] = "__OTR__ast_radio/gMsg_ID_20304";
+
+static ALIGN_ASSET(2) char gMsg_ID_20305[] = "__OTR__ast_radio/gMsg_ID_20305";
+
+static ALIGN_ASSET(2) char gMsg_ID_20306[] = "__OTR__ast_radio/gMsg_ID_20306";
+
+static ALIGN_ASSET(2) char gMsg_ID_20307[] = "__OTR__ast_radio/gMsg_ID_20307";
+
+static ALIGN_ASSET(2) char gMsg_ID_20308[] = "__OTR__ast_radio/gMsg_ID_20308";
+
+static ALIGN_ASSET(2) char gMsg_ID_20309[] = "__OTR__ast_radio/gMsg_ID_20309";
+
+static ALIGN_ASSET(2) char gMsg_ID_20310[] = "__OTR__ast_radio/gMsg_ID_20310";
+
+static ALIGN_ASSET(2) char gMsg_ID_20311[] = "__OTR__ast_radio/gMsg_ID_20311";
+
+static ALIGN_ASSET(2) char gMsg_ID_20312[] = "__OTR__ast_radio/gMsg_ID_20312";
+
+static ALIGN_ASSET(2) char gMsg_ID_20313[] = "__OTR__ast_radio/gMsg_ID_20313";
+
+static ALIGN_ASSET(2) char gMsg_ID_20314[] = "__OTR__ast_radio/gMsg_ID_20314";
+
+static ALIGN_ASSET(2) char gMsg_ID_20315[] = "__OTR__ast_radio/gMsg_ID_20315";
+
+static ALIGN_ASSET(2) char gMsg_ID_20316[] = "__OTR__ast_radio/gMsg_ID_20316";
+
+static ALIGN_ASSET(2) char gMsg_ID_20317[] = "__OTR__ast_radio/gMsg_ID_20317";
+
+static ALIGN_ASSET(2) char gMsg_ID_20318[] = "__OTR__ast_radio/gMsg_ID_20318";
+
+static ALIGN_ASSET(2) char gMsg_ID_20319[] = "__OTR__ast_radio/gMsg_ID_20319";
+
+static ALIGN_ASSET(2) char gMsg_ID_20320[] = "__OTR__ast_radio/gMsg_ID_20320";
+
+static ALIGN_ASSET(2) char gMsg_ID_20321[] = "__OTR__ast_radio/gMsg_ID_20321";
+
+static ALIGN_ASSET(2) char gMsg_ID_20326[] = "__OTR__ast_radio/gMsg_ID_20326";
+
+static ALIGN_ASSET(2) char gMsg_ID_20327[] = "__OTR__ast_radio/gMsg_ID_20327";
+
+static ALIGN_ASSET(2) char gMsg_ID_20328[] = "__OTR__ast_radio/gMsg_ID_20328";
+
+static ALIGN_ASSET(2) char gMsg_ID_20329[] = "__OTR__ast_radio/gMsg_ID_20329";
+
+static ALIGN_ASSET(2) char gMsg_ID_20330[] = "__OTR__ast_radio/gMsg_ID_20330";
+
+static ALIGN_ASSET(2) char gMsg_ID_20331[] = "__OTR__ast_radio/gMsg_ID_20331";
+
+static ALIGN_ASSET(2) char gMsg_ID_20332[] = "__OTR__ast_radio/gMsg_ID_20332";
+
+static ALIGN_ASSET(2) char gMsg_ID_20333[] = "__OTR__ast_radio/gMsg_ID_20333";
+
+static ALIGN_ASSET(2) char gMsg_ID_20337[] = "__OTR__ast_radio/gMsg_ID_20337";
+
+static ALIGN_ASSET(2) char gMsg_ID_20338[] = "__OTR__ast_radio/gMsg_ID_20338";
+
+static ALIGN_ASSET(2) char gMsg_ID_20339[] = "__OTR__ast_radio/gMsg_ID_20339";
+
+static ALIGN_ASSET(2) char gMsg_ID_20340[] = "__OTR__ast_radio/gMsg_ID_20340";
+
+static ALIGN_ASSET(2) char gMsg_ID_20343[] = "__OTR__ast_radio/gMsg_ID_20343";
+
+static ALIGN_ASSET(2) char gMsg_ID_20344[] = "__OTR__ast_radio/gMsg_ID_20344";
+
+static ALIGN_ASSET(2) char gMsg_ID_20345[] = "__OTR__ast_radio/gMsg_ID_20345";
+
+static ALIGN_ASSET(2) char gMsg_ID_21010[] = "__OTR__ast_radio/gMsg_ID_21010";
+
+static ALIGN_ASSET(2) char gMsg_ID_21020[] = "__OTR__ast_radio/gMsg_ID_21020";
+
+static ALIGN_ASSET(2) char gMsg_ID_21030[] = "__OTR__ast_radio/gMsg_ID_21030";
+
+static ALIGN_ASSET(2) char gMsg_ID_21050[] = "__OTR__ast_radio/gMsg_ID_21050";
+
+static ALIGN_ASSET(2) char gMsg_ID_21060[] = "__OTR__ast_radio/gMsg_ID_21060";
+
+static ALIGN_ASSET(2) char gMsg_ID_21070[] = "__OTR__ast_radio/gMsg_ID_21070";
+
+static ALIGN_ASSET(2) char gMsg_ID_21071[] = "__OTR__ast_radio/gMsg_ID_21071";
+
+static ALIGN_ASSET(2) char gMsg_ID_21072[] = "__OTR__ast_radio/gMsg_ID_21072";
+
+static ALIGN_ASSET(2) char gMsg_ID_21073[] = "__OTR__ast_radio/gMsg_ID_21073";
+
+static ALIGN_ASSET(2) char gMsg_ID_21080[] = "__OTR__ast_radio/gMsg_ID_21080";
+
+static ALIGN_ASSET(2) char gMsg_ID_21081[] = "__OTR__ast_radio/gMsg_ID_21081";
+
+static ALIGN_ASSET(2) char gMsg_ID_21082[] = "__OTR__ast_radio/gMsg_ID_21082";
+
+static ALIGN_ASSET(2) char gMsg_ID_21083[] = "__OTR__ast_radio/gMsg_ID_21083";
+
+static ALIGN_ASSET(2) char gMsg_ID_21090[] = "__OTR__ast_radio/gMsg_ID_21090";
+
+static ALIGN_ASSET(2) char gMsg_ID_21091[] = "__OTR__ast_radio/gMsg_ID_21091";
+
+static ALIGN_ASSET(2) char gMsg_ID_21092[] = "__OTR__ast_radio/gMsg_ID_21092";
+
+static ALIGN_ASSET(2) char gMsg_ID_21093[] = "__OTR__ast_radio/gMsg_ID_21093";
+
+static ALIGN_ASSET(2) char gMsg_ID_22000[] = "__OTR__ast_radio/gMsg_ID_22000";
+
+static ALIGN_ASSET(2) char gMsg_ID_22001[] = "__OTR__ast_radio/gMsg_ID_22001";
+
+static ALIGN_ASSET(2) char gMsg_ID_22002[] = "__OTR__ast_radio/gMsg_ID_22002";
+
+static ALIGN_ASSET(2) char gMsg_ID_22003[] = "__OTR__ast_radio/gMsg_ID_22003";
+
+static ALIGN_ASSET(2) char gMsg_ID_22004[] = "__OTR__ast_radio/gMsg_ID_22004";
+
+static ALIGN_ASSET(2) char gMsg_ID_22005[] = "__OTR__ast_radio/gMsg_ID_22005";
+
+static ALIGN_ASSET(2) char gMsg_ID_22006[] = "__OTR__ast_radio/gMsg_ID_22006";
+
+static ALIGN_ASSET(2) char gMsg_ID_22007[] = "__OTR__ast_radio/gMsg_ID_22007";
+
+static ALIGN_ASSET(2) char gMsg_ID_22008[] = "__OTR__ast_radio/gMsg_ID_22008";
+
+static ALIGN_ASSET(2) char gMsg_ID_22009[] = "__OTR__ast_radio/gMsg_ID_22009";
+
+static ALIGN_ASSET(2) char gMsg_ID_22010[] = "__OTR__ast_radio/gMsg_ID_22010";
+
+static ALIGN_ASSET(2) char gMsg_ID_22011[] = "__OTR__ast_radio/gMsg_ID_22011";
+
+static ALIGN_ASSET(2) char gMsg_ID_22012[] = "__OTR__ast_radio/gMsg_ID_22012";
+
+static ALIGN_ASSET(2) char gMsg_ID_22013[] = "__OTR__ast_radio/gMsg_ID_22013";
+
+static ALIGN_ASSET(2) char gMsg_ID_22014[] = "__OTR__ast_radio/gMsg_ID_22014";
+
+static ALIGN_ASSET(2) char gMsg_ID_22015[] = "__OTR__ast_radio/gMsg_ID_22015";
+
+static ALIGN_ASSET(2) char gMsg_ID_22016[] = "__OTR__ast_radio/gMsg_ID_22016";
+
+static ALIGN_ASSET(2) char gMsg_ID_22017[] = "__OTR__ast_radio/gMsg_ID_22017";
+
+static ALIGN_ASSET(2) char gMsg_ID_22018[] = "__OTR__ast_radio/gMsg_ID_22018";
+
+static ALIGN_ASSET(2) char gMsg_ID_22019[] = "__OTR__ast_radio/gMsg_ID_22019";
+
+static ALIGN_ASSET(2) char gMsg_ID_22020[] = "__OTR__ast_radio/gMsg_ID_22020";
+
+static ALIGN_ASSET(2) char gMsg_ID_23000[] = "__OTR__ast_radio/gMsg_ID_23000";
+
+static ALIGN_ASSET(2) char gMsg_ID_23001[] = "__OTR__ast_radio/gMsg_ID_23001";
+
+static ALIGN_ASSET(2) char gMsg_ID_23002[] = "__OTR__ast_radio/gMsg_ID_23002";
+
+static ALIGN_ASSET(2) char gMsg_ID_23003[] = "__OTR__ast_radio/gMsg_ID_23003";
+
+static ALIGN_ASSET(2) char gMsg_ID_23004[] = "__OTR__ast_radio/gMsg_ID_23004";
+
+static ALIGN_ASSET(2) char gMsg_ID_23005[] = "__OTR__ast_radio/gMsg_ID_23005";
+
+static ALIGN_ASSET(2) char gMsg_ID_23006[] = "__OTR__ast_radio/gMsg_ID_23006";
+
+static ALIGN_ASSET(2) char gMsg_ID_23007[] = "__OTR__ast_radio/gMsg_ID_23007";
+
+static ALIGN_ASSET(2) char gMsg_ID_23008[] = "__OTR__ast_radio/gMsg_ID_23008";
+
+static ALIGN_ASSET(2) char gMsg_ID_23009[] = "__OTR__ast_radio/gMsg_ID_23009";
+
+static ALIGN_ASSET(2) char gMsg_ID_23010[] = "__OTR__ast_radio/gMsg_ID_23010";
+
+static ALIGN_ASSET(2) char gMsg_ID_23011[] = "__OTR__ast_radio/gMsg_ID_23011";
+
+static ALIGN_ASSET(2) char gMsg_ID_23012[] = "__OTR__ast_radio/gMsg_ID_23012";
+
+static ALIGN_ASSET(2) char gMsg_ID_23013[] = "__OTR__ast_radio/gMsg_ID_23013";
+
+static ALIGN_ASSET(2) char gMsg_ID_23014[] = "__OTR__ast_radio/gMsg_ID_23014";
+
+static ALIGN_ASSET(2) char gMsg_ID_23015[] = "__OTR__ast_radio/gMsg_ID_23015";
+
+static ALIGN_ASSET(2) char gMsg_ID_23016[] = "__OTR__ast_radio/gMsg_ID_23016";
+
+static ALIGN_ASSET(2) char gMsg_ID_23017[] = "__OTR__ast_radio/gMsg_ID_23017";
+
+static ALIGN_ASSET(2) char gMsg_ID_23018[] = "__OTR__ast_radio/gMsg_ID_23018";
+
+static ALIGN_ASSET(2) char gMsg_ID_23019[] = "__OTR__ast_radio/gMsg_ID_23019";
+
+static ALIGN_ASSET(2) char gMsg_ID_23020[] = "__OTR__ast_radio/gMsg_ID_23020";
+
+static ALIGN_ASSET(2) char gMsg_ID_23021[] = "__OTR__ast_radio/gMsg_ID_23021";
+
+static ALIGN_ASSET(2) char gMsg_ID_23022[] = "__OTR__ast_radio/gMsg_ID_23022";
+
+static ALIGN_ASSET(2) char gMsg_ID_23023[] = "__OTR__ast_radio/gMsg_ID_23023";
+
+static ALIGN_ASSET(2) char gMsg_ID_23024[] = "__OTR__ast_radio/gMsg_ID_23024";
+
+static ALIGN_ASSET(2) char gMsg_ID_23025[] = "__OTR__ast_radio/gMsg_ID_23025";
+
+static ALIGN_ASSET(2) char gMsg_ID_23026[] = "__OTR__ast_radio/gMsg_ID_23026";
+
+static ALIGN_ASSET(2) char gMsg_ID_23027[] = "__OTR__ast_radio/gMsg_ID_23027";
+
+static ALIGN_ASSET(2) char gMsg_ID_23028[] = "__OTR__ast_radio/gMsg_ID_23028";
+
+static ALIGN_ASSET(2) char gMsg_ID_23029[] = "__OTR__ast_radio/gMsg_ID_23029";
+
+static ALIGN_ASSET(2) char gMsg_ID_23030[] = "__OTR__ast_radio/gMsg_ID_23030";
+
+static ALIGN_ASSET(2) char gMsg_ID_23031[] = "__OTR__ast_radio/gMsg_ID_23031";
+
+static ALIGN_ASSET(2) char gMsg_ID_23032[] = "__OTR__ast_radio/gMsg_ID_23032";
+
+static const ALIGN_ASSET(2) char gMsgLookup[] = "__OTR__ast_radio/message_table";
+
diff --git a/include/assets/ast_sector_x.h b/include/assets/ast_sector_x.h
new file mode 100644
index 00000000..caa9e8ea
--- /dev/null
+++ b/include/assets/ast_sector_x.h
@@ -0,0 +1,600 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aSxTitleCardTex[] = "__OTR__ast_sector_x/aSxTitleCardTex";
+
+static const ALIGN_ASSET(2) char aSxSpaceMineDL[] = "__OTR__ast_sector_x/aSxSpaceMineDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_890[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_890";
+
+static const ALIGN_ASSET(2) char D_SX_60008C0[] = "__OTR__ast_sector_x/D_SX_60008C0";
+
+static const ALIGN_ASSET(2) char D_SX_60010C0[] = "__OTR__ast_sector_x/D_SX_60010C0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1110[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1110";
+
+static const ALIGN_ASSET(2) char D_SX_6001150[] = "__OTR__ast_sector_x/D_SX_6001150";
+
+static const ALIGN_ASSET(2) char aSxLaserDestroyedDL[] = "__OTR__ast_sector_x/aSxLaserDestroyedDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_19B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_19B8";
+
+static const ALIGN_ASSET(2) char D_SX_6001AD8[] = "__OTR__ast_sector_x/D_SX_6001AD8";
+
+static const ALIGN_ASSET(2) char aSxWatchPostDL[] = "__OTR__ast_sector_x/aSxWatchPostDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1E40[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1E40";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1E80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1E80";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1FB0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1FB0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_2090[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_2090";
+
+static const ALIGN_ASSET(2) char D_SX_60020C0[] = "__OTR__ast_sector_x/D_SX_60020C0";
+
+static const ALIGN_ASSET(2) char D_SX_60022C0[] = "__OTR__ast_sector_x/D_SX_60022C0";
+
+static const ALIGN_ASSET(2) char D_SX_60024C0[] = "__OTR__ast_sector_x/D_SX_60024C0";
+
+static const ALIGN_ASSET(2) char D_SX_60026C0[] = "__OTR__ast_sector_x/D_SX_60026C0";
+
+static const ALIGN_ASSET(2) char D_SX_60028C0[] = "__OTR__ast_sector_x/D_SX_60028C0";
+
+static const ALIGN_ASSET(2) char D_SX_6002AC0[] = "__OTR__ast_sector_x/D_SX_6002AC0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_2E88[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_2E88";
+
+static const ALIGN_ASSET(2) char D_SX_60036E8[] = "__OTR__ast_sector_x/D_SX_60036E8";
+
+static const ALIGN_ASSET(2) char D_SX_6003EE8[] = "__OTR__ast_sector_x/D_SX_6003EE8";
+
+static const ALIGN_ASSET(2) char D_SX_60046E8[] = "__OTR__ast_sector_x/D_SX_60046E8";
+
+static const ALIGN_ASSET(2) char D_SX_6004EE8[] = "__OTR__ast_sector_x/D_SX_6004EE8";
+
+static const ALIGN_ASSET(2) char D_SX_6005EE8[] = "__OTR__ast_sector_x/D_SX_6005EE8";
+
+static const ALIGN_ASSET(2) char aSxLaserDL[] = "__OTR__ast_sector_x/aSxLaserDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6760[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6760";
+
+static const ALIGN_ASSET(2) char D_SX_6006810[] = "__OTR__ast_sector_x/D_SX_6006810";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6A38[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6A38";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6B18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6B18";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6C18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6C18";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6C58[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6C58";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6DF8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6DF8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_6FF8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_6FF8";
+
+static const ALIGN_ASSET(2) char D_SX_6007128[] = "__OTR__ast_sector_x/D_SX_6007128";
+
+static const ALIGN_ASSET(2) char D_SX_6007928[] = "__OTR__ast_sector_x/D_SX_6007928";
+
+static const ALIGN_ASSET(2) char D_SX_6008128[] = "__OTR__ast_sector_x/D_SX_6008128";
+
+static const ALIGN_ASSET(2) char D_SX_6008928[] = "__OTR__ast_sector_x/D_SX_6008928";
+
+static const ALIGN_ASSET(2) char D_SX_6008B30[] = "__OTR__ast_sector_x/D_SX_6008B30";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_8E28[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_8E28";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_8F18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_8F18";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_8F98[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_8F98";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9188[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9188";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9378[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9378";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_93F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_93F8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9468[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9468";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_94E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_94E8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9518[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9518";
+
+static const ALIGN_ASSET(2) char D_SX_6009548[] = "__OTR__ast_sector_x/D_SX_6009548";
+
+static const ALIGN_ASSET(2) char D_SX_6009748[] = "__OTR__ast_sector_x/D_SX_6009748";
+
+static const ALIGN_ASSET(2) char aSxBaseFloor1DL[] = "__OTR__ast_sector_x/aSxBaseFloor1DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9AA8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9AA8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9B28[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9B28";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9B68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9B68";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9BE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9BE8";
+
+static const ALIGN_ASSET(2) char D_SX_6009C30[] = "__OTR__ast_sector_x/D_SX_6009C30";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_9C80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_9C80";
+
+static const ALIGN_ASSET(2) char D_SX_6009CC0[] = "__OTR__ast_sector_x/D_SX_6009CC0";
+
+static const ALIGN_ASSET(2) char D_SX_6009FF8[] = "__OTR__ast_sector_x/D_SX_6009FF8";
+
+static const ALIGN_ASSET(2) char D_SX_600A2D4[] = "__OTR__ast_sector_x/D_SX_600A2D4";
+
+static const ALIGN_ASSET(2) char aSxBaseWall3DL[] = "__OTR__ast_sector_x/aSxBaseWall3DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_A3F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_A3F0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_A430[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_A430";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_A530[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_A530";
+
+static const ALIGN_ASSET(2) char D_SX_600A570[] = "__OTR__ast_sector_x/D_SX_600A570";
+
+static const ALIGN_ASSET(2) char D_SX_600AD70[] = "__OTR__ast_sector_x/D_SX_600AD70";
+
+static const ALIGN_ASSET(2) char aSxBaseWall1DL[] = "__OTR__ast_sector_x/aSxBaseWall1DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B088[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B088";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B0C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B0C8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B118[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B118";
+
+static const ALIGN_ASSET(2) char aSxBaseWall2DL[] = "__OTR__ast_sector_x/aSxBaseWall2DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B3C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B3C0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B400[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B400";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B500[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B500";
+
+static const ALIGN_ASSET(2) char aSxBaseWall4DL[] = "__OTR__ast_sector_x/aSxBaseWall4DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B6C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B6C8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B6F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B6F8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B778[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B778";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B7A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B7A8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_B7E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_B7E8";
+
+static const ALIGN_ASSET(2) char aSxBorzoiFighterDL[] = "__OTR__ast_sector_x/aSxBorzoiFighterDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BA30[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BA30";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BC10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BC10";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BD10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BD10";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BD60[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BD60";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BDC0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BDC0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_BE90[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_BE90";
+
+static const ALIGN_ASSET(2) char D_SX_600C000[] = "__OTR__ast_sector_x/D_SX_600C000";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C1B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C1B0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C380[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C380";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C3C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C3C0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C4E0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C4E0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_C550[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_C550";
+
+static const ALIGN_ASSET(2) char D_SX_600C5A0[] = "__OTR__ast_sector_x/D_SX_600C5A0";
+
+static const ALIGN_ASSET(2) char D_SX_600F890[] = "__OTR__ast_sector_x/D_SX_600F890";
+
+static const ALIGN_ASSET(2) char D_SX_600F8A0[] = "__OTR__ast_sector_x/D_SX_600F8A0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_F8F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_F8F8";
+
+static const ALIGN_ASSET(2) char D_SX_600F938[] = "__OTR__ast_sector_x/D_SX_600F938";
+
+static const ALIGN_ASSET(2) char D_SX_6010140[] = "__OTR__ast_sector_x/D_SX_6010140";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10220[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10220";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10330[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10330";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_103B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_103B0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10470[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10470";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_10560[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_10560";
+
+static const ALIGN_ASSET(2) char D_SX_60105A0[] = "__OTR__ast_sector_x/D_SX_60105A0";
+
+static const ALIGN_ASSET(2) char D_SX_60123BC[] = "__OTR__ast_sector_x/D_SX_60123BC";
+
+static const ALIGN_ASSET(2) char D_SX_6013798[] = "__OTR__ast_sector_x/D_SX_6013798";
+
+static const ALIGN_ASSET(2) char D_SX_6013820[] = "__OTR__ast_sector_x/D_SX_6013820";
+
+static const ALIGN_ASSET(2) char D_SX_601390C[] = "__OTR__ast_sector_x/D_SX_601390C";
+
+static const ALIGN_ASSET(2) char D_SX_60158C4[] = "__OTR__ast_sector_x/D_SX_60158C4";
+
+static const ALIGN_ASSET(2) char D_SX_6016E28[] = "__OTR__ast_sector_x/D_SX_6016E28";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_16E40[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_16E40";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_16F78[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_16F78";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17138[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17138";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_171B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_171B8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_17240[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_17240";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17330[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17330";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17470[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17470";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_17570[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_17570";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_176F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_176F0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_177B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_177B0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17880[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17880";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_178E0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_178E0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_17A20[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_17A20";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17BC0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17BC0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17DC0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17DC0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17E40[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17E40";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_17EA0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_17EA0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_18060[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_18060";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_18228[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_18228";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_18428[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_18428";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_184D8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_184D8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_185F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_185F8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_18678[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_18678";
+
+static const ALIGN_ASSET(2) char D_SX_601AA28[] = "__OTR__ast_sector_x/D_SX_601AA28";
+
+static const ALIGN_ASSET(2) char D_SX_601C690[] = "__OTR__ast_sector_x/D_SX_601C690";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1C6A0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1C6A0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1C7D8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1C7D8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1C948[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1C948";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1C9C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1C9C8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1CA50[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1CA50";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CB38[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CB38";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CC78[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CC78";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1CD80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1CD80";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CF00[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CF00";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1CFD0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1CFD0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D0D0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D0D0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D130[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D130";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_1D260[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_1D260";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D400[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D400";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D5E0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D5E0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D690[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D690";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_1D6F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_1D6F0";
+
+static const ALIGN_ASSET(2) char D_SX_60206DC[] = "__OTR__ast_sector_x/D_SX_60206DC";
+
+static const ALIGN_ASSET(2) char aSxSpyborgSkel[] = "__OTR__ast_sector_x/aSxSpyborgSkel";
+
+static const ALIGN_ASSET(2) char aSxBaseWallTile1DL[] = "__OTR__ast_sector_x/aSxBaseWallTile1DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_20E30[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_20E30";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_20E70[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_20E70";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_20F70[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_20F70";
+
+static const ALIGN_ASSET(2) char D_SX_6020FB0[] = "__OTR__ast_sector_x/D_SX_6020FB0";
+
+static const ALIGN_ASSET(2) char D_SX_6021ED0[] = "__OTR__ast_sector_x/D_SX_6021ED0";
+
+static const ALIGN_ASSET(2) char aSxCanineDL[] = "__OTR__ast_sector_x/aSxCanineDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23028[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23028";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23068[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23068";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_230B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_230B8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23188[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23188";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_231C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_231C8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23268[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23268";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_232C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_232C8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23378[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23378";
+
+static const ALIGN_ASSET(2) char aSxSpyEyeDL[] = "__OTR__ast_sector_x/aSxSpyEyeDL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_236D0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_236D0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23790[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23790";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23860[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23860";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23960[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23960";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23B20[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23B20";
+
+static const ALIGN_ASSET(2) char D_SX_6023C30[] = "__OTR__ast_sector_x/D_SX_6023C30";
+
+static const ALIGN_ASSET(2) char aSxBaseDebris2DL[] = "__OTR__ast_sector_x/aSxBaseDebris2DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_23EB0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_23EB0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_24030[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_24030";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24168[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24168";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_242E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_242E8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24368[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24368";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_243F0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_243F0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24528[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24528";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_246A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_246A8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24728[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24728";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_247B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_247B0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_248E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_248E8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24A78[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24A78";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24AF8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24AF8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_24B80[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_24B80";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24CB8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24CB8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24E58[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24E58";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_24ED8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_24ED8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_24F60[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_24F60";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25098[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25098";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25248[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25248";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_252C8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_252C8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25350[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25350";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25488[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25488";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25628[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25628";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_256A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_256A8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25730[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25730";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25868[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25868";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25A08[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25A08";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25A88[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25A88";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25B10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25B10";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25C48[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25C48";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25DE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25DE8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_25E68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_25E68";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_25EF0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_25EF0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26028[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26028";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_261B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_261B8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26238[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26238";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_262C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_262C0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_263F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_263F8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_265A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_265A8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26628[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26628";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_266B0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_266B0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_267E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_267E8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26998[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26998";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26A18[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26A18";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_26AA0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_26AA0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26BD8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26BD8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26D88[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26D88";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26E08[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26E08";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_26E90[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_26E90";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_26FC8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_26FC8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27178[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27178";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_271F8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_271F8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27280[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27280";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_273B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_273B8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27558[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27558";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_275D8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_275D8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27660[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27660";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27798[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27798";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27908[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27908";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27988[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27988";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27A10[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27A10";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27B48[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27B48";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27CE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27CE8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27D68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27D68";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_27DF0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_27DF0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_27F28[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_27F28";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_280B8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_280B8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28138[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28138";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_281C0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_281C0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28328[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28328";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_284A8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_284A8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28528[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28528";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28568[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28568";
+
+static const ALIGN_ASSET(2) char aSxBaseDebris1DL[] = "__OTR__ast_sector_x/aSxBaseDebris1DL";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_287E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_287E8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_289E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_289E8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28BE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28BE8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28DE8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28DE8";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28E68[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28E68";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_28FD8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_28FD8";
+
+static const ALIGN_ASSET(2) char D_SX_6029098[] = "__OTR__ast_sector_x/D_SX_6029098";
+
+static const ALIGN_ASSET(2) char D_SX_60292A0[] = "__OTR__ast_sector_x/D_SX_60292A0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29380[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29380";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29420[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29420";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_gfx_294D0[] = "__OTR__ast_sector_x/ast_sector_x_seg6_gfx_294D0";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29610[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29610";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29710[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29710";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_29810[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_29810";
+
+static const ALIGN_ASSET(2) char D_SX_6029890[] = "__OTR__ast_sector_x/D_SX_6029890";
+
+static const ALIGN_ASSET(2) char ast_sector_x_seg6_vtx_298E8[] = "__OTR__ast_sector_x/ast_sector_x_seg6_vtx_298E8";
+
+static const ALIGN_ASSET(2) char D_SX_6029918[] = "__OTR__ast_sector_x/D_SX_6029918";
+
+static const ALIGN_ASSET(2) char D_SX_602A120[] = "__OTR__ast_sector_x/D_SX_602A120";
+
+static const ALIGN_ASSET(2) char D_SX_602A164[] = "__OTR__ast_sector_x/D_SX_602A164";
+
+static const ALIGN_ASSET(2) char D_SX_602F18C[] = "__OTR__ast_sector_x/D_SX_602F18C";
+
+static const char D_SX_60320D0[] = "__OTR__ast_sector_x/D_SX_60320D0";
+
+static const ALIGN_ASSET(2) char D_SX_6032328[] = "__OTR__ast_sector_x/D_SX_6032328";
+
+static const ALIGN_ASSET(2) char aSxWarpGateHitbox[] = "__OTR__ast_sector_x/aSxWarpGateHitbox";
+
+static const ALIGN_ASSET(2) char D_SX_6032408[] = "__OTR__ast_sector_x/D_SX_6032408";
+
+static const ALIGN_ASSET(2) char aSxSpyborgLeftArmHitbox[] = "__OTR__ast_sector_x/aSxSpyborgLeftArmHitbox";
+
+static const ALIGN_ASSET(2) char aSxSpyborgRightArmHitbox[] = "__OTR__ast_sector_x/aSxSpyborgRightArmHitbox";
+
+static const ALIGN_ASSET(2) char aSxSpyborgHitbox[] = "__OTR__ast_sector_x/aSxSpyborgHitbox";
+
+static const ALIGN_ASSET(2) char D_SX_603265C[] = "__OTR__ast_sector_x/D_SX_603265C";
+
+static const ALIGN_ASSET(2) char D_SX_6032768[] = "__OTR__ast_sector_x/D_SX_6032768";
+
+static const ALIGN_ASSET(2) char aSxLaserHitbox[] = "__OTR__ast_sector_x/aSxLaserHitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseFloor1Hitbox[] = "__OTR__ast_sector_x/aSxBaseFloor1Hitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseWall2Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall2Hitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseWall3Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall3Hitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseWallTile1Hitbox[] = "__OTR__ast_sector_x/aSxBaseWallTile1Hitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseWall4Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall4Hitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseWall1Hitbox[] = "__OTR__ast_sector_x/aSxBaseWall1Hitbox";
+
+static const ALIGN_ASSET(2) char aSxWatchPostHitbox[] = "__OTR__ast_sector_x/aSxWatchPostHitbox";
+
+static const ALIGN_ASSET(2) char aSxSpaceMineHitbox[] = "__OTR__ast_sector_x/aSxSpaceMineHitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseDebris2Hitbox[] = "__OTR__ast_sector_x/aSxBaseDebris2Hitbox";
+
+static const ALIGN_ASSET(2) char aSxBaseDebris1Hitbox[] = "__OTR__ast_sector_x/aSxBaseDebris1Hitbox";
+
diff --git a/include/assets/ast_sector_y.h b/include/assets/ast_sector_y.h
new file mode 100644
index 00000000..54ad4c72
--- /dev/null
+++ b/include/assets/ast_sector_y.h
@@ -0,0 +1,647 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aSyTitleCardTex[] = "__OTR__ast_sector_y/aSyTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_SY_6000840[] = "__OTR__ast_sector_y/D_SY_6000840";
+
+static const ALIGN_ASSET(2) char D_SY_6001840[] = "__OTR__ast_sector_y/D_SY_6001840";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1890[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1890";
+
+static const ALIGN_ASSET(2) char D_SY_60018D0[] = "__OTR__ast_sector_y/D_SY_60018D0";
+
+static const ALIGN_ASSET(2) char D_SY_6003348[] = "__OTR__ast_sector_y/D_SY_6003348";
+
+static const ALIGN_ASSET(2) char D_SY_60034C4[] = "__OTR__ast_sector_y/D_SY_60034C4";
+
+static const ALIGN_ASSET(2) char aSyShipWindowsDL[] = "__OTR__ast_sector_y/aSyShipWindowsDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3580[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3580";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3620[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3620";
+
+static const ALIGN_ASSET(2) char aSyShip3DestroyedDL[] = "__OTR__ast_sector_y/aSyShip3DestroyedDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3A18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3A18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3AD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3AD8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3CD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3CD8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3D18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3D18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_3EF8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_3EF8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_40C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_40C8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_42C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_42C8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_4388[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_4388";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_4568[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_4568";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_4758[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_4758";
+
+static const ALIGN_ASSET(2) char D_SY_6004958[] = "__OTR__ast_sector_y/D_SY_6004958";
+
+static const ALIGN_ASSET(2) char D_SY_6005158[] = "__OTR__ast_sector_y/D_SY_6005158";
+
+static const ALIGN_ASSET(2) char aSyShip4DL[] = "__OTR__ast_sector_y/aSyShip4DL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_55C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_55C0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5790[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5790";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5820[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5820";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_58A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_58A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_59E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_59E0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5AE0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5AE0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_5BA0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_5BA0";
+
+static const ALIGN_ASSET(2) char D_SY_6005BE0[] = "__OTR__ast_sector_y/D_SY_6005BE0";
+
+static const ALIGN_ASSET(2) char D_SY_6006BE0[] = "__OTR__ast_sector_y/D_SY_6006BE0";
+
+static const ALIGN_ASSET(2) char D_SY_60073E0[] = "__OTR__ast_sector_y/D_SY_60073E0";
+
+static const ALIGN_ASSET(2) char D_SY_60083E0[] = "__OTR__ast_sector_y/D_SY_60083E0";
+
+static const ALIGN_ASSET(2) char D_SY_6008BE0[] = "__OTR__ast_sector_y/D_SY_6008BE0";
+
+static const ALIGN_ASSET(2) char D_SY_6008FE0[] = "__OTR__ast_sector_y/D_SY_6008FE0";
+
+static const ALIGN_ASSET(2) char aSyShip1DL[] = "__OTR__ast_sector_y/aSyShip1DL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_9BB0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_9BB0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_9DB0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_9DB0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_9F30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_9F30";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A070[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A070";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A240[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A240";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A440[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A440";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A500[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A500";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A700[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A700";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A780[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A780";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_A840[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_A840";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_AA40[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_AA40";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_AA80[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_AA80";
+
+static const ALIGN_ASSET(2) char D_SY_600AAC0[] = "__OTR__ast_sector_y/D_SY_600AAC0";
+
+static const ALIGN_ASSET(2) char D_SY_600BAC0[] = "__OTR__ast_sector_y/D_SY_600BAC0";
+
+static const ALIGN_ASSET(2) char D_SY_600CAC0[] = "__OTR__ast_sector_y/D_SY_600CAC0";
+
+static const ALIGN_ASSET(2) char D_SY_600DAC0[] = "__OTR__ast_sector_y/D_SY_600DAC0";
+
+static const ALIGN_ASSET(2) char D_SY_600E2C0[] = "__OTR__ast_sector_y/D_SY_600E2C0";
+
+static const ALIGN_ASSET(2) char D_SY_600EAC0[] = "__OTR__ast_sector_y/D_SY_600EAC0";
+
+static const ALIGN_ASSET(2) char D_SY_600F2C0[] = "__OTR__ast_sector_y/D_SY_600F2C0";
+
+static const ALIGN_ASSET(2) char aSyShip4DestroyedDL[] = "__OTR__ast_sector_y/aSyShip4DestroyedDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_F9C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_F9C0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FB90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FB90";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FC30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FC30";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FD90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FD90";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FE10[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FE10";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_FF90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_FF90";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10110[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10110";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_101D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_101D0";
+
+static const ALIGN_ASSET(2) char aSyShip3DL[] = "__OTR__ast_sector_y/aSyShip3DL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_106B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_106B8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_108B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_108B8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10938[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10938";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10B18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10B18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10D18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10D18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10F18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10F18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_10FD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_10FD8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_111D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_111D8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_113D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_113D8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_114D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_114D8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_11558[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_11558";
+
+static const ALIGN_ASSET(2) char D_SY_6011758[] = "__OTR__ast_sector_y/D_SY_6011758";
+
+static const ALIGN_ASSET(2) char D_SY_60117D8[] = "__OTR__ast_sector_y/D_SY_60117D8";
+
+static const ALIGN_ASSET(2) char D_SY_60119D8[] = "__OTR__ast_sector_y/D_SY_60119D8";
+
+static const ALIGN_ASSET(2) char D_SY_60121E0[] = "__OTR__ast_sector_y/D_SY_60121E0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_124C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_124C0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12620[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12620";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12650[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12650";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_126A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_126A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12720[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12720";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_127E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_127E0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12810[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12810";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12840[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12840";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_12870[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_12870";
+
+static const ALIGN_ASSET(2) char D_SY_60128A0[] = "__OTR__ast_sector_y/D_SY_60128A0";
+
+static const ALIGN_ASSET(2) char D_SY_60130A0[] = "__OTR__ast_sector_y/D_SY_60130A0";
+
+static const ALIGN_ASSET(2) char D_SY_60132A0[] = "__OTR__ast_sector_y/D_SY_60132A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_133C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_133C0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13440[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13440";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13580[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13580";
+
+static const ALIGN_ASSET(2) char D_SY_6013600[] = "__OTR__ast_sector_y/D_SY_6013600";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_136F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_136F0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13730[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13730";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_13790[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_13790";
+
+static const ALIGN_ASSET(2) char D_SY_6013840[] = "__OTR__ast_sector_y/D_SY_6013840";
+
+static const ALIGN_ASSET(2) char D_SY_6014040[] = "__OTR__ast_sector_y/D_SY_6014040";
+
+static const ALIGN_ASSET(2) char D_SY_6014240[] = "__OTR__ast_sector_y/D_SY_6014240";
+
+static const ALIGN_ASSET(2) char D_SY_6014A40[] = "__OTR__ast_sector_y/D_SY_6014A40";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_14AA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_14AA8";
+
+static const ALIGN_ASSET(2) char D_SY_6014B48[] = "__OTR__ast_sector_y/D_SY_6014B48";
+
+static const ALIGN_ASSET(2) char D_SY_6014BD0[] = "__OTR__ast_sector_y/D_SY_6014BD0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_14F10[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_14F10";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_150C0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_150C0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_152B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_152B0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15490[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15490";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_155B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_155B0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15630[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15630";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15700[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15700";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_15740[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_15740";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_157A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_157A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_158E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_158E0";
+
+static const ALIGN_ASSET(2) char D_SY_6015960[] = "__OTR__ast_sector_y/D_SY_6015960";
+
+static const ALIGN_ASSET(2) char D_SY_6015B60[] = "__OTR__ast_sector_y/D_SY_6015B60";
+
+static const ALIGN_ASSET(2) char aSyRobot4DL[] = "__OTR__ast_sector_y/aSyRobot4DL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_163C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_163C8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_164E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_164E8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_166E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_166E8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_168E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_168E8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_16AE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_16AE8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_16CD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_16CD8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_16ED8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_16ED8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_170B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_170B8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17298[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17298";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17478[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17478";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17578[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17578";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17758[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17758";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_178D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_178D8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17918[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17918";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17AD8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17AD8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17CA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17CA8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17CE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17CE8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_17EA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_17EA8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18078[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18078";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18258[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18258";
+
+static const ALIGN_ASSET(2) char D_SY_60183B0[] = "__OTR__ast_sector_y/D_SY_60183B0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18568[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18568";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18618[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18618";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18778[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18778";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_187B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_187B8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_187F8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_187F8";
+
+static const ALIGN_ASSET(2) char aSyShipMissileDL[] = "__OTR__ast_sector_y/aSyShipMissileDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18A28[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18A28";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18C18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18C18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18C78[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18C78";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_18E28[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_18E28";
+
+static const ALIGN_ASSET(2) char D_SY_6018F30[] = "__OTR__ast_sector_y/D_SY_6018F30";
+
+static const ALIGN_ASSET(2) char D_SY_6019E50[] = "__OTR__ast_sector_y/D_SY_6019E50";
+
+static const ALIGN_ASSET(2) char aSyDebrisDL[] = "__OTR__ast_sector_y/aSyDebrisDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1ADC8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1ADC8";
+
+static const ALIGN_ASSET(2) char D_SY_601AE08[] = "__OTR__ast_sector_y/D_SY_601AE08";
+
+static const ALIGN_ASSET(2) char aSyShip2SpriteDL[] = "__OTR__ast_sector_y/aSyShip2SpriteDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1B660[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1B660";
+
+static const ALIGN_ASSET(2) char D_SY_601B6A0[] = "__OTR__ast_sector_y/D_SY_601B6A0";
+
+static const ALIGN_ASSET(2) char aSyShip3SpriteDL[] = "__OTR__ast_sector_y/aSyShip3SpriteDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1C6F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1C6F0";
+
+static const ALIGN_ASSET(2) char D_SY_601C730[] = "__OTR__ast_sector_y/D_SY_601C730";
+
+static const ALIGN_ASSET(2) char aSyShip2DL[] = "__OTR__ast_sector_y/aSyShip2DL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1D9F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1D9F0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DAF0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DAF0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DCF0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DCF0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DED0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DED0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1DFD0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1DFD0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1E110[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1E110";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1E250[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1E250";
+
+static const ALIGN_ASSET(2) char D_SY_601F3B8[] = "__OTR__ast_sector_y/D_SY_601F3B8";
+
+static const ALIGN_ASSET(2) char aSySaruzinDL[] = "__OTR__ast_sector_y/aSySaruzinDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1F750[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1F750";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1F950[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1F950";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FB50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FB50";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FD50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FD50";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FF50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FF50";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_1FF90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_1FF90";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20090[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20090";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_201D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_201D0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_202D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_202D0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_204D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_204D0";
+
+static const ALIGN_ASSET(2) char aSyLaserTurretDL[] = "__OTR__ast_sector_y/aSyLaserTurretDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20700[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20700";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20830[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20830";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20870[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20870";
+
+static const ALIGN_ASSET(2) char aSyRobotSpriteFrontDL[] = "__OTR__ast_sector_y/aSyRobotSpriteFrontDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20A88[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20A88";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_20AC8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_20AC8";
+
+static const ALIGN_ASSET(2) char D_SY_6020B08[] = "__OTR__ast_sector_y/D_SY_6020B08";
+
+static const ALIGN_ASSET(2) char D_SY_6021B08[] = "__OTR__ast_sector_y/D_SY_6021B08";
+
+static const ALIGN_ASSET(2) char aSyRobotSpriteSideDL[] = "__OTR__ast_sector_y/aSyRobotSpriteSideDL";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_22BA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_22BA8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_22BE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_22BE8";
+
+static const ALIGN_ASSET(2) char D_SY_6022C28[] = "__OTR__ast_sector_y/D_SY_6022C28";
+
+static const ALIGN_ASSET(2) char D_SY_6023C28[] = "__OTR__ast_sector_y/D_SY_6023C28";
+
+static const ALIGN_ASSET(2) char D_SY_60258A0[] = "__OTR__ast_sector_y/D_SY_60258A0";
+
+static const ALIGN_ASSET(2) char D_SY_602645C[] = "__OTR__ast_sector_y/D_SY_602645C";
+
+static const ALIGN_ASSET(2) char D_SY_60265B4[] = "__OTR__ast_sector_y/D_SY_60265B4";
+
+static const ALIGN_ASSET(2) char D_SY_602738C[] = "__OTR__ast_sector_y/D_SY_602738C";
+
+static const ALIGN_ASSET(2) char D_SY_60273A0[] = "__OTR__ast_sector_y/D_SY_60273A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27600[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27600";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_276E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_276E0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27710[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27710";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27790[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27790";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_277D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_277D0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27880[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27880";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27920[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27920";
+
+static const ALIGN_ASSET(2) char D_SY_6027960[] = "__OTR__ast_sector_y/D_SY_6027960";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27BC0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27BC0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27CA0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27CA0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27CD0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27CD0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27D50[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27D50";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27D90[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27D90";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27E30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27E30";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_27ED0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_27ED0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_gfx_27F10[] = "__OTR__ast_sector_y/ast_sector_y_seg6_gfx_27F10";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_28108[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_28108";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_281A8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_281A8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_283A8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_283A8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_28468[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_28468";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_285E8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_285E8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_28628[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_28628";
+
+static const ALIGN_ASSET(2) char D_SY_6028668[] = "__OTR__ast_sector_y/D_SY_6028668";
+
+static const ALIGN_ASSET(2) char D_SY_6028E70[] = "__OTR__ast_sector_y/D_SY_6028E70";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29068[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29068";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_290B8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_290B8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29118[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29118";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29208[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29208";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29298[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29298";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_292D8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_292D8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_29318[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_29318";
+
+static const ALIGN_ASSET(2) char D_SY_6029B48[] = "__OTR__ast_sector_y/D_SY_6029B48";
+
+static const ALIGN_ASSET(2) char D_SY_602A2CC[] = "__OTR__ast_sector_y/D_SY_602A2CC";
+
+static const ALIGN_ASSET(2) char D_SY_602A2E0[] = "__OTR__ast_sector_y/D_SY_602A2E0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A430[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A430";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A4B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A4B0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A4F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A4F0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A6E0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A6E0";
+
+static const ALIGN_ASSET(2) char D_SY_602A720[] = "__OTR__ast_sector_y/D_SY_602A720";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A7D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A7D0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2A870[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2A870";
+
+static const ALIGN_ASSET(2) char D_SY_602A8C0[] = "__OTR__ast_sector_y/D_SY_602A8C0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AAF8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AAF8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2ABB8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2ABB8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AC38[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AC38";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2ACB8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2ACB8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AD18[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AD18";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AD98[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AD98";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2AF98[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2AF98";
+
+static const ALIGN_ASSET(2) char D_SY_602AFF8[] = "__OTR__ast_sector_y/D_SY_602AFF8";
+
+static const ALIGN_ASSET(2) char D_SY_602B778[] = "__OTR__ast_sector_y/D_SY_602B778";
+
+static const ALIGN_ASSET(2) char D_SY_602B8DC[] = "__OTR__ast_sector_y/D_SY_602B8DC";
+
+static const ALIGN_ASSET(2) char D_SY_602B8F0[] = "__OTR__ast_sector_y/D_SY_602B8F0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BB28[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BB28";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BBE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BBE8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BC68[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BC68";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BCE8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BCE8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BD48[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BD48";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BDC8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BDC8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2BFA8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2BFA8";
+
+static const ALIGN_ASSET(2) char D_SY_602CEB4[] = "__OTR__ast_sector_y/D_SY_602CEB4";
+
+static const ALIGN_ASSET(2) char D_SY_602D140[] = "__OTR__ast_sector_y/D_SY_602D140";
+
+static const ALIGN_ASSET(2) char D_SY_602D194[] = "__OTR__ast_sector_y/D_SY_602D194";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D1F8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D1F8";
+
+static const ALIGN_ASSET(2) char D_SY_602D238[] = "__OTR__ast_sector_y/D_SY_602D238";
+
+static const ALIGN_ASSET(2) char D_SY_602D340[] = "__OTR__ast_sector_y/D_SY_602D340";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D540[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D540";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D590[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D590";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D5F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D5F0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D6F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D6F0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D770[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D770";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D7B0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D7B0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D7F0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D7F0";
+
+static const ALIGN_ASSET(2) char D_SY_602D830[] = "__OTR__ast_sector_y/D_SY_602D830";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D9A0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D9A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2D9D0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2D9D0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DA00[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DA00";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DA80[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DA80";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DBC0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DBC0";
+
+static const ALIGN_ASSET(2) char D_SY_602DC40[] = "__OTR__ast_sector_y/D_SY_602DC40";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DD30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DD30";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DDB0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DDB0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DE30[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DE30";
+
+static const ALIGN_ASSET(2) char D_SY_602DE70[] = "__OTR__ast_sector_y/D_SY_602DE70";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DF60[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DF60";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2DFE0[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2DFE0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E060[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E060";
+
+static const ALIGN_ASSET(2) char D_SY_602E0A0[] = "__OTR__ast_sector_y/D_SY_602E0A0";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E208[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E208";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E288[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E288";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E3C8[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E3C8";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E448[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E448";
+
+static const ALIGN_ASSET(2) char ast_sector_y_seg6_vtx_2E478[] = "__OTR__ast_sector_y/ast_sector_y_seg6_vtx_2E478";
+
+static const ALIGN_ASSET(2) char D_SY_602E4B0[] = "__OTR__ast_sector_y/D_SY_602E4B0";
+
+static const ALIGN_ASSET(2) char D_SY_602E4F4[] = "__OTR__ast_sector_y/D_SY_602E4F4";
+
+static const ALIGN_ASSET(2) char D_SY_6030B14[] = "__OTR__ast_sector_y/D_SY_6030B14";
+
+static const char D_SY_6032E18[] = "__OTR__ast_sector_y/D_SY_6032E18";
+
+static const ALIGN_ASSET(2) char D_SY_6033070[] = "__OTR__ast_sector_y/D_SY_6033070";
+
+static const ALIGN_ASSET(2) char D_SY_6033E08[] = "__OTR__ast_sector_y/D_SY_6033E08";
+
+static const ALIGN_ASSET(2) char aSyRobotHitbox[] = "__OTR__ast_sector_y/aSyRobotHitbox";
+
+static const ALIGN_ASSET(2) char D_SY_60340C0[] = "__OTR__ast_sector_y/D_SY_60340C0";
+
+static const ALIGN_ASSET(2) char aSyRobot4Hitbox[] = "__OTR__ast_sector_y/aSyRobot4Hitbox";
+
+static const ALIGN_ASSET(2) char D_SY_60341A8[] = "__OTR__ast_sector_y/D_SY_60341A8";
+
+static const ALIGN_ASSET(2) char D_SY_603421C[] = "__OTR__ast_sector_y/D_SY_603421C";
+
+static const ALIGN_ASSET(2) char D_SY_60342A0[] = "__OTR__ast_sector_y/D_SY_60342A0";
+
+static const ALIGN_ASSET(2) char D_SY_6034304[] = "__OTR__ast_sector_y/D_SY_6034304";
+
+static const ALIGN_ASSET(2) char aSyScenery156Hitbox[] = "__OTR__ast_sector_y/aSyScenery156Hitbox";
+
+static const ALIGN_ASSET(2) char aSyLaserTurretHitbox[] = "__OTR__ast_sector_y/aSyLaserTurretHitbox";
+
+static const ALIGN_ASSET(2) char aSyShip1Hitbox[] = "__OTR__ast_sector_y/aSyShip1Hitbox";
+
+static const ALIGN_ASSET(2) char aSyShip2Hitbox[] = "__OTR__ast_sector_y/aSyShip2Hitbox";
+
+static const ALIGN_ASSET(2) char aSyShip3Hitbox[] = "__OTR__ast_sector_y/aSyShip3Hitbox";
+
+static const ALIGN_ASSET(2) char aSyShip3DestroyedHitbox[] = "__OTR__ast_sector_y/aSyShip3DestroyedHitbox";
+
+static const ALIGN_ASSET(2) char aSyShip4Hitbox[] = "__OTR__ast_sector_y/aSyShip4Hitbox";
+
+static const ALIGN_ASSET(2) char aSyShipWindowsHitbox[] = "__OTR__ast_sector_y/aSyShipWindowsHitbox";
+
+static const ALIGN_ASSET(2) char aSyShip4DestroyedHitbox[] = "__OTR__ast_sector_y/aSyShip4DestroyedHitbox";
+
+static const ALIGN_ASSET(2) char aSyShipMissileHitbox[] = "__OTR__ast_sector_y/aSyShipMissileHitbox";
+
diff --git a/include/assets/ast_sector_z.h b/include/assets/ast_sector_z.h
new file mode 100644
index 00000000..48588908
--- /dev/null
+++ b/include/assets/ast_sector_z.h
@@ -0,0 +1,160 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aSzTitleCardTex[] = "__OTR__ast_sector_z/aSzTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_SZ_6000840[] = "__OTR__ast_sector_z/D_SZ_6000840";
+
+static const ALIGN_ASSET(2) char D_SZ_60012D0[] = "__OTR__ast_sector_z/D_SZ_60012D0";
+
+static const ALIGN_ASSET(2) char aSzSpaceJunk1DL[] = "__OTR__ast_sector_z/aSzSpaceJunk1DL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_15C8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_15C8";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1748[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1748";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1808[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1808";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1908[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1908";
+
+static const ALIGN_ASSET(2) char aSzSpaceJunk2DL[] = "__OTR__ast_sector_z/aSzSpaceJunk2DL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1B40[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1B40";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_1C00[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_1C00";
+
+static const ALIGN_ASSET(2) char D_SZ_6001C80[] = "__OTR__ast_sector_z/D_SZ_6001C80";
+
+static const ALIGN_ASSET(2) char D_SZ_6001D80[] = "__OTR__ast_sector_z/D_SZ_6001D80";
+
+static const ALIGN_ASSET(2) char aSzSpaceJunk3DL[] = "__OTR__ast_sector_z/aSzSpaceJunk3DL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2040[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2040";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2230[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2230";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2330[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2330";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_23F0[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_23F0";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_24F0[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_24F0";
+
+static const ALIGN_ASSET(2) char D_SZ_60025F0[] = "__OTR__ast_sector_z/D_SZ_60025F0";
+
+static const ALIGN_ASSET(2) char D_SZ_60029F0[] = "__OTR__ast_sector_z/D_SZ_60029F0";
+
+static const ALIGN_ASSET(2) char D_SZ_6002BD0[] = "__OTR__ast_sector_z/D_SZ_6002BD0";
+
+static const ALIGN_ASSET(2) char D_SZ_6002C10[] = "__OTR__ast_sector_z/D_SZ_6002C10";
+
+static const ALIGN_ASSET(2) char D_SZ_6002C30[] = "__OTR__ast_sector_z/D_SZ_6002C30";
+
+static const ALIGN_ASSET(2) char D_SZ_6002D30[] = "__OTR__ast_sector_z/D_SZ_6002D30";
+
+static const ALIGN_ASSET(2) char D_SZ_6002DE0[] = "__OTR__ast_sector_z/D_SZ_6002DE0";
+
+static const ALIGN_ASSET(2) char D_SZ_6002EE0[] = "__OTR__ast_sector_z/D_SZ_6002EE0";
+
+static const ALIGN_ASSET(2) char aSzBackgroundDL[] = "__OTR__ast_sector_z/aSzBackgroundDL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_2FD0[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_2FD0";
+
+static const ALIGN_ASSET(2) char aSzBackgroundTex[] = "__OTR__ast_sector_z/aSzBackgroundTex";
+
+static const ALIGN_ASSET(2) char D_SZ_6004010[] = "__OTR__ast_sector_z/D_SZ_6004010";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_40D8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_40D8";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_41C8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_41C8";
+
+static const ALIGN_ASSET(2) char D_SZ_60041F8[] = "__OTR__ast_sector_z/D_SZ_60041F8";
+
+static const ALIGN_ASSET(2) char D_SZ_60042F8[] = "__OTR__ast_sector_z/D_SZ_60042F8";
+
+static const ALIGN_ASSET(2) char aSzMissileMark[] = "__OTR__ast_sector_z/aSzMissileMark";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_43D8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_43D8";
+
+static const ALIGN_ASSET(2) char D_SZ_6004458[] = "__OTR__ast_sector_z/D_SZ_6004458";
+
+static const ALIGN_ASSET(2) char D_SZ_6004558[] = "__OTR__ast_sector_z/D_SZ_6004558";
+
+static const ALIGN_ASSET(2) char aSzMissileRadarMarkDL[] = "__OTR__ast_sector_z/aSzMissileRadarMarkDL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_4590[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_4590";
+
+static const ALIGN_ASSET(2) char aSzSpaceJunk4DL[] = "__OTR__ast_sector_z/aSzSpaceJunk4DL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_4660[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_4660";
+
+static const ALIGN_ASSET(2) char D_SZ_60047E0[] = "__OTR__ast_sector_z/D_SZ_60047E0";
+
+static const ALIGN_ASSET(2) char aSzInvaderIIIDL[] = "__OTR__ast_sector_z/aSzInvaderIIIDL";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5140[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5140";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5320[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5320";
+
+static const ALIGN_ASSET(2) char aSzInvaderIIITex2[] = "__OTR__ast_sector_z/aSzInvaderIIITex2";
+
+static const ALIGN_ASSET(2) char aSzInvaderIIITex2TLUT[] = "__OTR__ast_sector_z/aSzInvaderIIITex2TLUT";
+
+static const ALIGN_ASSET(2) char aSzInvaderIIITex1[] = "__OTR__ast_sector_z/aSzInvaderIIITex1";
+
+static const ALIGN_ASSET(2) char aSzInvaderIIITex1TLUT[] = "__OTR__ast_sector_z/aSzInvaderIIITex1TLUT";
+
+static const ALIGN_ASSET(2) char D_SZ_6005BF0[] = "__OTR__ast_sector_z/D_SZ_6005BF0";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5D70[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5D70";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_5F10[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_5F10";
+
+static const ALIGN_ASSET(2) char D_SZ_6006090[] = "__OTR__ast_sector_z/D_SZ_6006090";
+
+static const ALIGN_ASSET(2) char D_SZ_6006490[] = "__OTR__ast_sector_z/D_SZ_6006490";
+
+static const ALIGN_ASSET(2) char D_SZ_6006660[] = "__OTR__ast_sector_z/D_SZ_6006660";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_6700[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_6700";
+
+static const ALIGN_ASSET(2) char D_SZ_6006780[] = "__OTR__ast_sector_z/D_SZ_6006780";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_68C8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_68C8";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_6968[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_6968";
+
+static const ALIGN_ASSET(2) char D_SZ_6006A30[] = "__OTR__ast_sector_z/D_SZ_6006A30";
+
+static const ALIGN_ASSET(2) char ast_sector_z_seg6_vtx_6AD8[] = "__OTR__ast_sector_z/ast_sector_z_seg6_vtx_6AD8";
+
+static const ALIGN_ASSET(2) char D_SZ_6006BD8[] = "__OTR__ast_sector_z/D_SZ_6006BD8";
+
+static const ALIGN_ASSET(2) char D_SZ_6006CD8[] = "__OTR__ast_sector_z/D_SZ_6006CD8";
+
+static const ALIGN_ASSET(2) char aSzMissileAnim[] = "__OTR__ast_sector_z/aSzMissileAnim";
+
+static const ALIGN_ASSET(2) char aSzMissileSkel[] = "__OTR__ast_sector_z/aSzMissileSkel";
+
+static const ALIGN_ASSET(2) char D_SZ_6006E70[] = "__OTR__ast_sector_z/D_SZ_6006E70";
+
+static const ALIGN_ASSET(2) char D_SZ_6006EB4[] = "__OTR__ast_sector_z/D_SZ_6006EB4";
+
+static const ALIGN_ASSET(2) char D_SZ_6007558[] = "__OTR__ast_sector_z/D_SZ_6007558";
+
+static const ALIGN_ASSET(2) char D_SZ_6008E08[] = "__OTR__ast_sector_z/D_SZ_6008E08";
+
+static const ALIGN_ASSET(2) char aSZMissileHitbox[] = "__OTR__ast_sector_z/aSZMissileHitbox";
+
+static const ALIGN_ASSET(2) char aSzSpaceJunk3Hitbox[] = "__OTR__ast_sector_z/aSzSpaceJunk3Hitbox";
+
+static const ALIGN_ASSET(2) char aSzSpaceJunk1Hitbox[] = "__OTR__ast_sector_z/aSzSpaceJunk1Hitbox";
+
+static const ALIGN_ASSET(2) char aSzGreatFoxHitbox[] = "__OTR__ast_sector_z/aSzGreatFoxHitbox";
+
diff --git a/include/assets/ast_solar.h b/include/assets/ast_solar.h
new file mode 100644
index 00000000..7dfdef3b
--- /dev/null
+++ b/include/assets/ast_solar.h
@@ -0,0 +1,286 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aSoTitleCardTex[] = "__OTR__ast_solar/aSoTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_SO_60005B0[] = "__OTR__ast_solar/D_SO_60005B0";
+
+static const ALIGN_ASSET(2) char D_SO_6001C50[] = "__OTR__ast_solar/D_SO_6001C50";
+
+static const ALIGN_ASSET(2) char D_SO_6002E60[] = "__OTR__ast_solar/D_SO_6002E60";
+
+static const ALIGN_ASSET(2) char D_SO_6004500[] = "__OTR__ast_solar/D_SO_6004500";
+
+static const ALIGN_ASSET(2) char D_SO_6005710[] = "__OTR__ast_solar/D_SO_6005710";
+
+static const ALIGN_ASSET(2) char aSoGoreAnim[] = "__OTR__ast_solar/aSoGoreAnim";
+
+static const ALIGN_ASSET(2) char aSoGoreSkel[] = "__OTR__ast_solar/aSoGoreSkel";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_65A0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_65A0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6600[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6600";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_66C0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_66C0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6720[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6720";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_67E0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_67E0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6840[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6840";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_6900[] = "__OTR__ast_solar/ast_solar_seg6_gfx_6900";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_69B8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_69B8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6B98[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6B98";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_6D78[] = "__OTR__ast_solar/ast_solar_seg6_vtx_6D78";
+
+static const ALIGN_ASSET(2) char D_SO_6006DD8[] = "__OTR__ast_solar/D_SO_6006DD8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_75E0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_75E0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7670[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7670";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7870[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7870";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_78A0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_78A0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_78F8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_78F8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7930[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7930";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7988[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7988";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_79D0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_79D0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7A28[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7A28";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7A70[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7A70";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7AC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7AC8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7B00[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7B00";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7B58[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7B58";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_gfx_7BA0[] = "__OTR__ast_solar/ast_solar_seg6_gfx_7BA0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7BF8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7BF8";
+
+static const ALIGN_ASSET(2) char D_SO_6007C40[] = "__OTR__ast_solar/D_SO_6007C40";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_7C90[] = "__OTR__ast_solar/ast_solar_seg6_vtx_7C90";
+
+static const ALIGN_ASSET(2) char D_SO_6007CC0[] = "__OTR__ast_solar/D_SO_6007CC0";
+
+static const ALIGN_ASSET(2) char D_SO_60084C0[] = "__OTR__ast_solar/D_SO_60084C0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_8510[] = "__OTR__ast_solar/ast_solar_seg6_vtx_8510";
+
+static const ALIGN_ASSET(2) char D_SO_6008540[] = "__OTR__ast_solar/D_SO_6008540";
+
+static const ALIGN_ASSET(2) char D_SO_6008D40[] = "__OTR__ast_solar/D_SO_6008D40";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_8D90[] = "__OTR__ast_solar/ast_solar_seg6_vtx_8D90";
+
+static const ALIGN_ASSET(2) char D_SO_6008DC0[] = "__OTR__ast_solar/D_SO_6008DC0";
+
+static const ALIGN_ASSET(2) char D_SO_6009D30[] = "__OTR__ast_solar/D_SO_6009D30";
+
+static const ALIGN_ASSET(2) char D_SO_600B1B4[] = "__OTR__ast_solar/D_SO_600B1B4";
+
+static const ALIGN_ASSET(2) char D_SO_600C15C[] = "__OTR__ast_solar/D_SO_600C15C";
+
+static const ALIGN_ASSET(2) char D_SO_600D3DC[] = "__OTR__ast_solar/D_SO_600D3DC";
+
+static const ALIGN_ASSET(2) char D_SO_600E2C4[] = "__OTR__ast_solar/D_SO_600E2C4";
+
+static const ALIGN_ASSET(2) char D_SO_600E470[] = "__OTR__ast_solar/D_SO_600E470";
+
+static const ALIGN_ASSET(2) char D_SO_600F744[] = "__OTR__ast_solar/D_SO_600F744";
+
+static const ALIGN_ASSET(2) char D_SO_600F750[] = "__OTR__ast_solar/D_SO_600F750";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_F9D8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_F9D8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_FBC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_FBC8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_FDC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_FDC8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_FFA8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_FFA8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_100E8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_100E8";
+
+static const ALIGN_ASSET(2) char D_SO_6010198[] = "__OTR__ast_solar/D_SO_6010198";
+
+static const ALIGN_ASSET(2) char D_SO_6010998[] = "__OTR__ast_solar/D_SO_6010998";
+
+static const ALIGN_ASSET(2) char D_SO_6011198[] = "__OTR__ast_solar/D_SO_6011198";
+
+static const ALIGN_ASSET(2) char D_SO_6011398[] = "__OTR__ast_solar/D_SO_6011398";
+
+static const ALIGN_ASSET(2) char D_SO_6012C00[] = "__OTR__ast_solar/D_SO_6012C00";
+
+static const ALIGN_ASSET(2) char D_SO_601388C[] = "__OTR__ast_solar/D_SO_601388C";
+
+static const ALIGN_ASSET(2) char D_SO_60138A0[] = "__OTR__ast_solar/D_SO_60138A0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_139C0[] = "__OTR__ast_solar/ast_solar_seg6_vtx_139C0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_13B10[] = "__OTR__ast_solar/ast_solar_seg6_vtx_13B10";
+
+static const ALIGN_ASSET(2) char D_SO_6013C70[] = "__OTR__ast_solar/D_SO_6013C70";
+
+static const ALIGN_ASSET(2) char D_SO_6014470[] = "__OTR__ast_solar/D_SO_6014470";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14528[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14528";
+
+static const ALIGN_ASSET(2) char D_SO_60146D0[] = "__OTR__ast_solar/D_SO_60146D0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14790[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14790";
+
+static const ALIGN_ASSET(2) char D_SO_6014930[] = "__OTR__ast_solar/D_SO_6014930";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_149F0[] = "__OTR__ast_solar/ast_solar_seg6_vtx_149F0";
+
+static const ALIGN_ASSET(2) char D_SO_6014B80[] = "__OTR__ast_solar/D_SO_6014B80";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14C40[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14C40";
+
+static const ALIGN_ASSET(2) char D_SO_6014DB0[] = "__OTR__ast_solar/D_SO_6014DB0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_14EC8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_14EC8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15038[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15038";
+
+static const ALIGN_ASSET(2) char D_SO_60151A0[] = "__OTR__ast_solar/D_SO_60151A0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15378[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15378";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15578[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15578";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_155E8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_155E8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_157B8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_157B8";
+
+static const ALIGN_ASSET(2) char D_SO_6015810[] = "__OTR__ast_solar/D_SO_6015810";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15C88[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15C88";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_15E88[] = "__OTR__ast_solar/ast_solar_seg6_vtx_15E88";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16078[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16078";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16278[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16278";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16478[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16478";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_164A8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_164A8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16698[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16698";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_167C8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_167C8";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16868[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16868";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16A58[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16A58";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16C58[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16C58";
+
+static const ALIGN_ASSET(2) char aSoRock3DL[] = "__OTR__ast_solar/aSoRock3DL";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_16DF8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_16DF8";
+
+static const ALIGN_ASSET(2) char D_SO_6016F08[] = "__OTR__ast_solar/D_SO_6016F08";
+
+static const ALIGN_ASSET(2) char D_SO_6017008[] = "__OTR__ast_solar/D_SO_6017008";
+
+static const ALIGN_ASSET(2) char aSoRock2DL[] = "__OTR__ast_solar/aSoRock2DL";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_17160[] = "__OTR__ast_solar/ast_solar_seg6_vtx_17160";
+
+static const ALIGN_ASSET(2) char D_SO_6017200[] = "__OTR__ast_solar/D_SO_6017200";
+
+static const ALIGN_ASSET(2) char D_SO_6017300[] = "__OTR__ast_solar/D_SO_6017300";
+
+static const ALIGN_ASSET(2) char aSoRock1DL[] = "__OTR__ast_solar/aSoRock1DL";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_17440[] = "__OTR__ast_solar/ast_solar_seg6_vtx_17440";
+
+static const ALIGN_ASSET(2) char D_SO_60174E0[] = "__OTR__ast_solar/D_SO_60174E0";
+
+static const ALIGN_ASSET(2) char D_SO_6017520[] = "__OTR__ast_solar/D_SO_6017520";
+
+static const ALIGN_ASSET(2) char D_SO_6017550[] = "__OTR__ast_solar/D_SO_6017550";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_175A8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_175A8";
+
+static const ALIGN_ASSET(2) char D_SO_60175D8[] = "__OTR__ast_solar/D_SO_60175D8";
+
+static const ALIGN_ASSET(2) char D_SO_60185E0[] = "__OTR__ast_solar/D_SO_60185E0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_18638[] = "__OTR__ast_solar/ast_solar_seg6_vtx_18638";
+
+static const ALIGN_ASSET(2) char D_SO_6018668[] = "__OTR__ast_solar/D_SO_6018668";
+
+static const ALIGN_ASSET(2) char D_SO_6019670[] = "__OTR__ast_solar/D_SO_6019670";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_196C8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_196C8";
+
+static const ALIGN_ASSET(2) char D_SO_60196F8[] = "__OTR__ast_solar/D_SO_60196F8";
+
+static const ALIGN_ASSET(2) char D_SO_601A700[] = "__OTR__ast_solar/D_SO_601A700";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1A758[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1A758";
+
+static const ALIGN_ASSET(2) char D_SO_601A788[] = "__OTR__ast_solar/D_SO_601A788";
+
+static const ALIGN_ASSET(2) char D_SO_601B790[] = "__OTR__ast_solar/D_SO_601B790";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1B7E8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1B7E8";
+
+static const ALIGN_ASSET(2) char D_SO_601B818[] = "__OTR__ast_solar/D_SO_601B818";
+
+static const ALIGN_ASSET(2) char D_SO_601C820[] = "__OTR__ast_solar/D_SO_601C820";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1C878[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1C878";
+
+static const ALIGN_ASSET(2) char D_SO_601C8A8[] = "__OTR__ast_solar/D_SO_601C8A8";
+
+static const ALIGN_ASSET(2) char D_SO_601D8B0[] = "__OTR__ast_solar/D_SO_601D8B0";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1D908[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1D908";
+
+static const ALIGN_ASSET(2) char D_SO_601D948[] = "__OTR__ast_solar/D_SO_601D948";
+
+static const ALIGN_ASSET(2) char D_SO_601E150[] = "__OTR__ast_solar/D_SO_601E150";
+
+static const ALIGN_ASSET(2) char ast_solar_seg6_vtx_1E1A8[] = "__OTR__ast_solar/ast_solar_seg6_vtx_1E1A8";
+
+static const ALIGN_ASSET(2) char D_SO_601E1E8[] = "__OTR__ast_solar/D_SO_601E1E8";
+
+static const ALIGN_ASSET(2) char D_SO_601F1F0[] = "__OTR__ast_solar/D_SO_601F1F0";
+
+static const ALIGN_ASSET(2) char D_SO_601F234[] = "__OTR__ast_solar/D_SO_601F234";
+
+static const char D_SO_6020DD0[] = "__OTR__ast_solar/D_SO_6020DD0";
+
+static const ALIGN_ASSET(2) char D_SO_6020F60[] = "__OTR__ast_solar/D_SO_6020F60";
+
+static const ALIGN_ASSET(2) char D_SO_6021F60[] = "__OTR__ast_solar/D_SO_6021F60";
+
+static const ALIGN_ASSET(2) char D_SO_6022760[] = "__OTR__ast_solar/D_SO_6022760";
+
+static const ALIGN_ASSET(2) char D_SO_60229A4[] = "__OTR__ast_solar/D_SO_60229A4";
+
+static const ALIGN_ASSET(2) char D_SO_60231A4[] = "__OTR__ast_solar/D_SO_60231A4";
+
diff --git a/include/assets/ast_star_wolf.h b/include/assets/ast_star_wolf.h
new file mode 100644
index 00000000..fece6ca5
--- /dev/null
+++ b/include/assets/ast_star_wolf.h
@@ -0,0 +1,115 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F000000[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F000000";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F000F20[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F000F20";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F001E40[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F001E40";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F002D60[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F002D60";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F003C80[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F003C80";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F004BA0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F004BA0";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F005AC0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F005AC0";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F0069E0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F0069E0";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F007900[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F007900";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F008820[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F008820";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F009740[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F009740";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F00A660[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00A660";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F00B580[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00B580";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F00C4A0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00C4A0";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F00D3C0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00D3C0";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F00E2E0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F00E2E0";
+
+static const ALIGN_ASSET(2) char aStarWolfStandardShipDL[] = "__OTR__ast_star_wolf/aStarWolfStandardShipDL";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F590[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F590";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F780[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F780";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F810[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F810";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_F9F0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_F9F0";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FB30[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FB30";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FC60[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FC60";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FCB0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FCB0";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FE90[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FE90";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_FF20[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_FF20";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10110[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10110";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F0101D0[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F0101D0";
+
+static const ALIGN_ASSET(2) char aStarWolfUpgradedShipDL[] = "__OTR__ast_star_wolf/aStarWolfUpgradedShipDL";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_107A0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_107A0";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10980[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10980";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10A10[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10A10";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10AD0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10AD0";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10C90[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10C90";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10DE0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10DE0";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_10FD0[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_10FD0";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11010[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11010";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11070[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11070";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11110[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11110";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11300[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11300";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_11500[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_11500";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F011680[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F011680";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F011E80[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F011E80";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F011F00[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F011F00";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F012700[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F012700";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F012F00[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F012F00";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F013100[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F013100";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F013180[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F013180";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F013980[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F013980";
+
+static const ALIGN_ASSET(2) char aStarWolfRadarMarkDL[] = "__OTR__ast_star_wolf/aStarWolfRadarMarkDL";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_141D8[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_141D8";
+
+static const ALIGN_ASSET(2) char D_STAR_WOLF_F014208[] = "__OTR__ast_star_wolf/D_STAR_WOLF_F014208";
+
+static const ALIGN_ASSET(2) char aStarWolfShadowDL[] = "__OTR__ast_star_wolf/aStarWolfShadowDL";
+
+static const ALIGN_ASSET(2) char ast_star_wolf_seg15_vtx_14368[] = "__OTR__ast_star_wolf/ast_star_wolf_seg15_vtx_14368";
+
+static const ALIGN_ASSET(2) char aStarWolfShadowTex[] = "__OTR__ast_star_wolf/aStarWolfShadowTex";
+
diff --git a/include/assets/ast_text.h b/include/assets/ast_text.h
new file mode 100644
index 00000000..b41313de
--- /dev/null
+++ b/include/assets/ast_text.h
@@ -0,0 +1,213 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aSmallText_0[] = "__OTR__ast_text/aSmallText_0";
+
+static const ALIGN_ASSET(2) char aSmallText_1[] = "__OTR__ast_text/aSmallText_1";
+
+static const ALIGN_ASSET(2) char aSmallText_2[] = "__OTR__ast_text/aSmallText_2";
+
+static const ALIGN_ASSET(2) char aSmallText_3[] = "__OTR__ast_text/aSmallText_3";
+
+static const ALIGN_ASSET(2) char aSmallText_4[] = "__OTR__ast_text/aSmallText_4";
+
+static const ALIGN_ASSET(2) char aSmallText_5[] = "__OTR__ast_text/aSmallText_5";
+
+static const ALIGN_ASSET(2) char aSmallText_6[] = "__OTR__ast_text/aSmallText_6";
+
+static const ALIGN_ASSET(2) char aSmallText_7[] = "__OTR__ast_text/aSmallText_7";
+
+static const ALIGN_ASSET(2) char aSmallText_8[] = "__OTR__ast_text/aSmallText_8";
+
+static const ALIGN_ASSET(2) char aSmallText_9[] = "__OTR__ast_text/aSmallText_9";
+
+static const ALIGN_ASSET(2) char aTextMissionNo[] = "__OTR__ast_text/aTextMissionNo";
+
+static const ALIGN_ASSET(2) char aTrTitleCardTex[] = "__OTR__ast_text/aTrTitleCardTex";
+
+static const ALIGN_ASSET(2) char aTextEnemiesDown[] = "__OTR__ast_text/aTextEnemiesDown";
+
+static const ALIGN_ASSET(2) char aTextAccumTotal[] = "__OTR__ast_text/aTextAccumTotal";
+
+static const ALIGN_ASSET(2) char aTextStatusOfTeam[] = "__OTR__ast_text/aTextStatusOfTeam";
+
+static const ALIGN_ASSET(2) char aTextEnd[] = "__OTR__ast_text/aTextEnd";
+
+static const ALIGN_ASSET(2) char aTextACCOM[] = "__OTR__ast_text/aTextACCOM";
+
+static const ALIGN_ASSET(2) char aTextPLISHED[] = "__OTR__ast_text/aTextPLISHED";
+
+static const ALIGN_ASSET(2) char aTextMISSION[] = "__OTR__ast_text/aTextMISSION";
+
+static const ALIGN_ASSET(2) char aTextCOMP[] = "__OTR__ast_text/aTextCOMP";
+
+static const ALIGN_ASSET(2) char aTextLETE[] = "__OTR__ast_text/aTextLETE";
+
+static const ALIGN_ASSET(2) char aText_THE_END[] = "__OTR__ast_text/aText_THE_END";
+
+static const ALIGN_ASSET(2) char aTextFalco[] = "__OTR__ast_text/aTextFalco";
+
+static const ALIGN_ASSET(2) char aTextPeppy[] = "__OTR__ast_text/aTextPeppy";
+
+static const ALIGN_ASSET(2) char aTextSlippy[] = "__OTR__ast_text/aTextSlippy";
+
+static const ALIGN_ASSET(2) char aSmallText_A[] = "__OTR__ast_text/aSmallText_A";
+
+static const ALIGN_ASSET(2) char aSmallText_B[] = "__OTR__ast_text/aSmallText_B";
+
+static const ALIGN_ASSET(2) char aSmallTextExclamMark[] = "__OTR__ast_text/aSmallTextExclamMark";
+
+static const ALIGN_ASSET(2) char aSmallText_C[] = "__OTR__ast_text/aSmallText_C";
+
+static const ALIGN_ASSET(2) char aSmallText_D[] = "__OTR__ast_text/aSmallText_D";
+
+static const ALIGN_ASSET(2) char aSmallText_E[] = "__OTR__ast_text/aSmallText_E";
+
+static const ALIGN_ASSET(2) char sLargeText_1997_1[] = "__OTR__ast_text/sLargeText_1997_1";
+
+static const ALIGN_ASSET(2) char sLargeText_1997_7[] = "__OTR__ast_text/sLargeText_1997_7";
+
+static const ALIGN_ASSET(2) char sLargeText_1997_9[] = "__OTR__ast_text/sLargeText_1997_9";
+
+static const ALIGN_ASSET(2) char aSmallText_F[] = "__OTR__ast_text/aSmallText_F";
+
+static const ALIGN_ASSET(2) char aSmallText_G[] = "__OTR__ast_text/aSmallText_G";
+
+static const ALIGN_ASSET(2) char aSmallText_H[] = "__OTR__ast_text/aSmallText_H";
+
+static const ALIGN_ASSET(2) char aSmallText_I[] = "__OTR__ast_text/aSmallText_I";
+
+static const ALIGN_ASSET(2) char aSmallText_J[] = "__OTR__ast_text/aSmallText_J";
+
+static const ALIGN_ASSET(2) char aSmallText_K[] = "__OTR__ast_text/aSmallText_K";
+
+static const ALIGN_ASSET(2) char aTextKanjiCOMPLETE[] = "__OTR__ast_text/aTextKanjiCOMPLETE";
+
+static const ALIGN_ASSET(2) char aSmallText_L[] = "__OTR__ast_text/aSmallText_L";
+
+static const ALIGN_ASSET(2) char aSmallText_M[] = "__OTR__ast_text/aSmallText_M";
+
+static const ALIGN_ASSET(2) char aSmallText_N[] = "__OTR__ast_text/aSmallText_N";
+
+static const ALIGN_ASSET(2) char aLargeText_A[] = "__OTR__ast_text/aLargeText_A";
+
+static const ALIGN_ASSET(2) char aLargeText_B[] = "__OTR__ast_text/aLargeText_B";
+
+static const ALIGN_ASSET(2) char aLargeText_C[] = "__OTR__ast_text/aLargeText_C";
+
+static const ALIGN_ASSET(2) char aLargeText_D[] = "__OTR__ast_text/aLargeText_D";
+
+static const ALIGN_ASSET(2) char aLargeText_E[] = "__OTR__ast_text/aLargeText_E";
+
+static const ALIGN_ASSET(2) char aLargeText_F[] = "__OTR__ast_text/aLargeText_F";
+
+static const ALIGN_ASSET(2) char aLargeText_G[] = "__OTR__ast_text/aLargeText_G";
+
+static const ALIGN_ASSET(2) char aLargeText_H[] = "__OTR__ast_text/aLargeText_H";
+
+static const ALIGN_ASSET(2) char aLargeText_I[] = "__OTR__ast_text/aLargeText_I";
+
+static const ALIGN_ASSET(2) char aLargeText_J[] = "__OTR__ast_text/aLargeText_J";
+
+static const ALIGN_ASSET(2) char aLargeText_K[] = "__OTR__ast_text/aLargeText_K";
+
+static const ALIGN_ASSET(2) char aLargeText_L[] = "__OTR__ast_text/aLargeText_L";
+
+static const ALIGN_ASSET(2) char aLargeText_M[] = "__OTR__ast_text/aLargeText_M";
+
+static const ALIGN_ASSET(2) char aLargeText_N[] = "__OTR__ast_text/aLargeText_N";
+
+static const ALIGN_ASSET(2) char aSmallText_O[] = "__OTR__ast_text/aSmallText_O";
+
+static const ALIGN_ASSET(2) char aLargeText_P[] = "__OTR__ast_text/aLargeText_P";
+
+static const ALIGN_ASSET(2) char aLargeText_Q[] = "__OTR__ast_text/aLargeText_Q";
+
+static const ALIGN_ASSET(2) char aLargeText_R[] = "__OTR__ast_text/aLargeText_R";
+
+static const ALIGN_ASSET(2) char aLargeText_S[] = "__OTR__ast_text/aLargeText_S";
+
+static const ALIGN_ASSET(2) char aLargeText_T[] = "__OTR__ast_text/aLargeText_T";
+
+static const ALIGN_ASSET(2) char aLargeText_U[] = "__OTR__ast_text/aLargeText_U";
+
+static const ALIGN_ASSET(2) char aLargeText_V[] = "__OTR__ast_text/aLargeText_V";
+
+static const ALIGN_ASSET(2) char aLargeText_W[] = "__OTR__ast_text/aLargeText_W";
+
+static const ALIGN_ASSET(2) char aLargeText_X[] = "__OTR__ast_text/aLargeText_X";
+
+static const ALIGN_ASSET(2) char aLargeText_Y[] = "__OTR__ast_text/aLargeText_Y";
+
+static const ALIGN_ASSET(2) char aLargeText_HYPHEN[] = "__OTR__ast_text/aLargeText_HYPHEN";
+
+static const ALIGN_ASSET(2) char aLargeText_Z[] = "__OTR__ast_text/aLargeText_Z";
+
+static const ALIGN_ASSET(2) char aLargeText_s_[] = "__OTR__ast_text/aLargeText_s_";
+
+static const ALIGN_ASSET(2) char aLargeText_t_[] = "__OTR__ast_text/aLargeText_t_";
+
+static const ALIGN_ASSET(2) char aSmallText_o_[] = "__OTR__ast_text/aSmallText_o_";
+
+static const ALIGN_ASSET(2) char aSmallText_p[] = "__OTR__ast_text/aSmallText_p";
+
+static const ALIGN_ASSET(2) char aLargeText_DOT[] = "__OTR__ast_text/aLargeText_DOT";
+
+static const ALIGN_ASSET(2) char aSmallText_q[] = "__OTR__ast_text/aSmallText_q";
+
+static const ALIGN_ASSET(2) char aSmallText_r[] = "__OTR__ast_text/aSmallText_r";
+
+static const ALIGN_ASSET(2) char aSmallText_s[] = "__OTR__ast_text/aSmallText_s";
+
+static const ALIGN_ASSET(2) char aLargeText_0[] = "__OTR__ast_text/aLargeText_0";
+
+static const ALIGN_ASSET(2) char aLargeText_1[] = "__OTR__ast_text/aLargeText_1";
+
+static const ALIGN_ASSET(2) char aLargeText_2[] = "__OTR__ast_text/aLargeText_2";
+
+static const ALIGN_ASSET(2) char aLargeText_3[] = "__OTR__ast_text/aLargeText_3";
+
+static const ALIGN_ASSET(2) char aLargeText_4[] = "__OTR__ast_text/aLargeText_4";
+
+static const ALIGN_ASSET(2) char aLargeText_5[] = "__OTR__ast_text/aLargeText_5";
+
+static const ALIGN_ASSET(2) char aLargeText_6[] = "__OTR__ast_text/aLargeText_6";
+
+static const ALIGN_ASSET(2) char aLargeText_7[] = "__OTR__ast_text/aLargeText_7";
+
+static const ALIGN_ASSET(2) char aLargeText_8[] = "__OTR__ast_text/aLargeText_8";
+
+static const ALIGN_ASSET(2) char aLargeText_9[] = "__OTR__ast_text/aLargeText_9";
+
+static const ALIGN_ASSET(2) char aTextKanji_END[] = "__OTR__ast_text/aTextKanji_END";
+
+static const ALIGN_ASSET(2) char aSmallText_T[] = "__OTR__ast_text/aSmallText_T";
+
+static const ALIGN_ASSET(2) char aSmallText_DOT[] = "__OTR__ast_text/aSmallText_DOT";
+
+static const ALIGN_ASSET(2) char aSmallText_COLON[] = "__OTR__ast_text/aSmallText_COLON";
+
+static const ALIGN_ASSET(2) char aSmallText_U[] = "__OTR__ast_text/aSmallText_U";
+
+static const ALIGN_ASSET(2) char aSmallText_V[] = "__OTR__ast_text/aSmallText_V";
+
+static const ALIGN_ASSET(2) char aSmallText_W[] = "__OTR__ast_text/aSmallText_W";
+
+static const ALIGN_ASSET(2) char aSmallText_X[] = "__OTR__ast_text/aSmallText_X";
+
+static const ALIGN_ASSET(2) char aSmallText_Y[] = "__OTR__ast_text/aSmallText_Y";
+
+static const ALIGN_ASSET(2) char aSmallText_HYPHEN[] = "__OTR__ast_text/aSmallText_HYPHEN";
+
+static const ALIGN_ASSET(2) char aSmallText_Z[] = "__OTR__ast_text/aSmallText_Z";
+
+static const ALIGN_ASSET(2) char aDownWrenchDL[] = "__OTR__ast_text/aDownWrenchDL";
+
+static const ALIGN_ASSET(2) char ast_text_seg5_vtx_B6A8[] = "__OTR__ast_text/ast_text_seg5_vtx_B6A8";
+
+static const ALIGN_ASSET(2) char aDownWrenchTexture[] = "__OTR__ast_text/aDownWrenchTexture";
+
+static const ALIGN_ASSET(2) char aDownWrenchTLUT[] = "__OTR__ast_text/aDownWrenchTLUT";
+
diff --git a/include/assets/ast_titania.h b/include/assets/ast_titania.h
new file mode 100644
index 00000000..bd798e9b
--- /dev/null
+++ b/include/assets/ast_titania.h
@@ -0,0 +1,144 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aTiTitleCardTex[] = "__OTR__ast_titania/aTiTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_TI_6000A80[] = "__OTR__ast_titania/D_TI_6000A80";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_AD0[] = "__OTR__ast_titania/ast_titania_seg6_vtx_AD0";
+
+static const ALIGN_ASSET(2) char D_TI_6000B10[] = "__OTR__ast_titania/D_TI_6000B10";
+
+static const ALIGN_ASSET(2) char D_TI_6001B10[] = "__OTR__ast_titania/D_TI_6001B10";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_1B68[] = "__OTR__ast_titania/ast_titania_seg6_vtx_1B68";
+
+static const ALIGN_ASSET(2) char D_TI_6001BA8[] = "__OTR__ast_titania/D_TI_6001BA8";
+
+static const ALIGN_ASSET(2) char aTiCactusDL[] = "__OTR__ast_titania/aTiCactusDL";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_2408[] = "__OTR__ast_titania/ast_titania_seg6_vtx_2408";
+
+static const ALIGN_ASSET(2) char D_TI_6002438[] = "__OTR__ast_titania/D_TI_6002438";
+
+static const ALIGN_ASSET(2) char D_TI_6003440[] = "__OTR__ast_titania/D_TI_6003440";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3498[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3498";
+
+static const ALIGN_ASSET(2) char D_TI_60034E0[] = "__OTR__ast_titania/D_TI_60034E0";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3538[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3538";
+
+static const ALIGN_ASSET(2) char D_TI_6003580[] = "__OTR__ast_titania/D_TI_6003580";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_35D8[] = "__OTR__ast_titania/ast_titania_seg6_vtx_35D8";
+
+static const ALIGN_ASSET(2) char D_TI_6003620[] = "__OTR__ast_titania/D_TI_6003620";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3678[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3678";
+
+static const ALIGN_ASSET(2) char D_TI_60036C0[] = "__OTR__ast_titania/D_TI_60036C0";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_3718[] = "__OTR__ast_titania/ast_titania_seg6_vtx_3718";
+
+static const ALIGN_ASSET(2) char D_TI_6003760[] = "__OTR__ast_titania/D_TI_6003760";
+
+static const ALIGN_ASSET(2) char ast_titania_seg6_vtx_37B8[] = "__OTR__ast_titania/ast_titania_seg6_vtx_37B8";
+
+static const ALIGN_ASSET(2) char D_TI_6003800[] = "__OTR__ast_titania/D_TI_6003800";
+
+static const ALIGN_ASSET(2) char D_TI_6003C00[] = "__OTR__ast_titania/D_TI_6003C00";
+
+static const ALIGN_ASSET(2) char D_TI_6004000[] = "__OTR__ast_titania/D_TI_6004000";
+
+static const ALIGN_ASSET(2) char D_TI_6004400[] = "__OTR__ast_titania/D_TI_6004400";
+
+static const ALIGN_ASSET(2) char D_TI_6004800[] = "__OTR__ast_titania/D_TI_6004800";
+
+static const ALIGN_ASSET(2) char D_TI_6004C00[] = "__OTR__ast_titania/D_TI_6004C00";
+
+static const ALIGN_ASSET(2) char D_TI_6005000[] = "__OTR__ast_titania/D_TI_6005000";
+
+static const char D_TI_600631C[] = "__OTR__ast_titania/D_TI_600631C";
+
+static const ALIGN_ASSET(2) char aTi1LandmineHitbox[] = "__OTR__ast_titania/aTi1LandmineHitbox";
+
+static const ALIGN_ASSET(2) char aTiDesertRoverHitbox[] = "__OTR__ast_titania/aTiDesertRoverHitbox";
+
+static const ALIGN_ASSET(2) char aTiSkullHitbox[] = "__OTR__ast_titania/aTiSkullHitbox";
+
+static const ALIGN_ASSET(2) char aTiRib0Hitbox[] = "__OTR__ast_titania/aTiRib0Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib1Hitbox[] = "__OTR__ast_titania/aTiRib1Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib2Hitbox[] = "__OTR__ast_titania/aTiRib2Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib3Hitbox[] = "__OTR__ast_titania/aTiRib3Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib4Hitbox[] = "__OTR__ast_titania/aTiRib4Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib5Hitbox[] = "__OTR__ast_titania/aTiRib5Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib6Hitbox[] = "__OTR__ast_titania/aTiRib6Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib7Hitbox[] = "__OTR__ast_titania/aTiRib7Hitbox";
+
+static const ALIGN_ASSET(2) char aTiRib8Hitbox[] = "__OTR__ast_titania/aTiRib8Hitbox";
+
+static const ALIGN_ASSET(2) char aTiDelphorHitbox[] = "__OTR__ast_titania/aTiDelphorHitbox";
+
+static const ALIGN_ASSET(2) char aTiDelphorHeadHitbox[] = "__OTR__ast_titania/aTiDelphorHeadHitbox";
+
+static const ALIGN_ASSET(2) char aTiBoulderHitbox[] = "__OTR__ast_titania/aTiBoulderHitbox";
+
+static const ALIGN_ASSET(2) char aTiBombHitbox[] = "__OTR__ast_titania/aTiBombHitbox";
+
+static const ALIGN_ASSET(2) char D_TI_6006874[] = "__OTR__ast_titania/D_TI_6006874";
+
+static const ALIGN_ASSET(2) char aTiRascoHitbox[] = "__OTR__ast_titania/aTiRascoHitbox";
+
+static const ALIGN_ASSET(2) char aTiCactusHitbox[] = "__OTR__ast_titania/aTiCactusHitbox";
+
+static const ALIGN_ASSET(2) char aTiFekudaHitbox[] = "__OTR__ast_titania/aTiFekudaHitbox";
+
+static const ALIGN_ASSET(2) char D_TI_6006924[] = "__OTR__ast_titania/D_TI_6006924";
+
+static const ALIGN_ASSET(2) char D_TI_6006940[] = "__OTR__ast_titania/D_TI_6006940";
+
+static const ALIGN_ASSET(2) char D_TI_600695C[] = "__OTR__ast_titania/D_TI_600695C";
+
+static const ALIGN_ASSET(2) char D_TI_6006978[] = "__OTR__ast_titania/D_TI_6006978";
+
+static const ALIGN_ASSET(2) char D_TI_6006994[] = "__OTR__ast_titania/D_TI_6006994";
+
+static const ALIGN_ASSET(2) char D_TI_60069B0[] = "__OTR__ast_titania/D_TI_60069B0";
+
+static const ALIGN_ASSET(2) char D_TI_60069CC[] = "__OTR__ast_titania/D_TI_60069CC";
+
+static const ALIGN_ASSET(2) char D_TI_60069E8[] = "__OTR__ast_titania/D_TI_60069E8";
+
+static const ALIGN_ASSET(2) char D_TI_6006A04[] = "__OTR__ast_titania/D_TI_6006A04";
+
+static const ALIGN_ASSET(2) char D_TI_6006A20[] = "__OTR__ast_titania/D_TI_6006A20";
+
+static const ALIGN_ASSET(2) char aTiDesertCrawlerHitbox[] = "__OTR__ast_titania/aTiDesertCrawlerHitbox";
+
+static const ALIGN_ASSET(2) char aTiPillarHitbox[] = "__OTR__ast_titania/aTiPillarHitbox";
+
+static const ALIGN_ASSET(2) char D_TI_6006C0C[] = "__OTR__ast_titania/D_TI_6006C0C";
+
+static const ALIGN_ASSET(2) char D_TI_6006C28[] = "__OTR__ast_titania/D_TI_6006C28";
+
+static const ALIGN_ASSET(2) char aTiBridgeHitbox[] = "__OTR__ast_titania/aTiBridgeHitbox";
+
+static const ALIGN_ASSET(2) char D_TI_6006C60[] = "__OTR__ast_titania/D_TI_6006C60";
+
+static const ALIGN_ASSET(2) char D_TI_6009BB8[] = "__OTR__ast_titania/D_TI_6009BB8";
+
diff --git a/include/assets/ast_title.h b/include/assets/ast_title.h
new file mode 100644
index 00000000..da09990f
--- /dev/null
+++ b/include/assets/ast_title.h
@@ -0,0 +1,761 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aTitleStarfoxLogoTex[] = "__OTR__ast_title/aTitleStarfoxLogoTex";
+
+static const ALIGN_ASSET(2) char aTitleN64LogoTex[] = "__OTR__ast_title/aTitleN64LogoTex";
+
+static const ALIGN_ASSET(2) char gTitleRadioStatic[] = "__OTR__ast_title/gTitleRadioStatic";
+
+static const ALIGN_ASSET(2) char aTitleSunGlareTex[] = "__OTR__ast_title/aTitleSunGlareTex";
+
+static const ALIGN_ASSET(2) char a1997NintendoTex[] = "__OTR__ast_title/a1997NintendoTex";
+
+static const ALIGN_ASSET(2) char aTitlePressStartTex[] = "__OTR__ast_title/aTitlePressStartTex";
+
+static const ALIGN_ASSET(2) char aTitleGreatFoxCardTex[] = "__OTR__ast_title/aTitleGreatFoxCardTex";
+
+static const ALIGN_ASSET(2) char gTitleSlippyCard[] = "__OTR__ast_title/gTitleSlippyCard";
+
+static const ALIGN_ASSET(2) char gTitlePeppyCard[] = "__OTR__ast_title/gTitlePeppyCard";
+
+static const ALIGN_ASSET(2) char gTitleFalcoCard[] = "__OTR__ast_title/gTitleFalcoCard";
+
+static const ALIGN_ASSET(2) char gTitleFoxCard[] = "__OTR__ast_title/gTitleFoxCard";
+
+static const ALIGN_ASSET(2) char aTitleArwingCardTex[] = "__OTR__ast_title/aTitleArwingCardTex";
+
+static const ALIGN_ASSET(2) char aTitleNoControllerTex[] = "__OTR__ast_title/aTitleNoControllerTex";
+
+static const ALIGN_ASSET(2) char aTitleCopyrightTex[] = "__OTR__ast_title/aTitleCopyrightTex";
+
+static const ALIGN_ASSET(2) char gTitleUnusedNintendoCopyright[] = "__OTR__ast_title/gTitleUnusedNintendoCopyright";
+
+static const ALIGN_ASSET(2) char aIntroStarfoxLogoTex[] = "__OTR__ast_title/aIntroStarfoxLogoTex";
+
+static const ALIGN_ASSET(2) char aIntroStarfoxLogoTLUT[] = "__OTR__ast_title/aIntroStarfoxLogoTLUT";
+
+static const ALIGN_ASSET(2) char aIntroInTex[] = "__OTR__ast_title/aIntroInTex";
+
+static const ALIGN_ASSET(2) char aIntroInTLUT[] = "__OTR__ast_title/aIntroInTLUT";
+
+static const ALIGN_ASSET(2) char a64LogoDL[] = "__OTR__ast_title/a64LogoDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14C28[] = "__OTR__ast_title/ast_title_seg6_vtx_14C28";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14C68[] = "__OTR__ast_title/ast_title_seg6_vtx_14C68";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14CA8[] = "__OTR__ast_title/ast_title_seg6_vtx_14CA8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14CE8[] = "__OTR__ast_title/ast_title_seg6_vtx_14CE8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14D28[] = "__OTR__ast_title/ast_title_seg6_vtx_14D28";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14D68[] = "__OTR__ast_title/ast_title_seg6_vtx_14D68";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_14DA8[] = "__OTR__ast_title/ast_title_seg6_vtx_14DA8";
+
+static const ALIGN_ASSET(2) char a64Logo1Tex[] = "__OTR__ast_title/a64Logo1Tex";
+
+static const ALIGN_ASSET(2) char a64Logo1TLUT[] = "__OTR__ast_title/a64Logo1TLUT";
+
+static const ALIGN_ASSET(2) char a64Logo2Tex[] = "__OTR__ast_title/a64Logo2Tex";
+
+static const ALIGN_ASSET(2) char a64Logo2TLUT[] = "__OTR__ast_title/a64Logo2TLUT";
+
+static const ALIGN_ASSET(2) char a64Logo3Tex[] = "__OTR__ast_title/a64Logo3Tex";
+
+static const ALIGN_ASSET(2) char a64Logo3TLUT[] = "__OTR__ast_title/a64Logo3TLUT";
+
+static const ALIGN_ASSET(2) char a64Logo4Tex[] = "__OTR__ast_title/a64Logo4Tex";
+
+static const ALIGN_ASSET(2) char a64Logo4TLUT[] = "__OTR__ast_title/a64Logo4TLUT";
+
+static const ALIGN_ASSET(2) char a64Logo5Tex[] = "__OTR__ast_title/a64Logo5Tex";
+
+static const ALIGN_ASSET(2) char a64Logo5TLUT[] = "__OTR__ast_title/a64Logo5TLUT";
+
+static const ALIGN_ASSET(2) char a64Logo6Tex[] = "__OTR__ast_title/a64Logo6Tex";
+
+static const ALIGN_ASSET(2) char a64Logo6TLUT[] = "__OTR__ast_title/a64Logo6TLUT";
+
+static const ALIGN_ASSET(2) char a64Logo7Tex[] = "__OTR__ast_title/a64Logo7Tex";
+
+static const ALIGN_ASSET(2) char a64Logo7TLUT[] = "__OTR__ast_title/a64Logo7TLUT";
+
+static const ALIGN_ASSET(2) char aTitleGreatFoxDeckDL[] = "__OTR__ast_title/aTitleGreatFoxDeckDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19040[] = "__OTR__ast_title/ast_title_seg6_vtx_19040";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19080[] = "__OTR__ast_title/ast_title_seg6_vtx_19080";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_190C0[] = "__OTR__ast_title/ast_title_seg6_vtx_190C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19100[] = "__OTR__ast_title/ast_title_seg6_vtx_19100";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19140[] = "__OTR__ast_title/ast_title_seg6_vtx_19140";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19340[] = "__OTR__ast_title/ast_title_seg6_vtx_19340";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19440[] = "__OTR__ast_title/ast_title_seg6_vtx_19440";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19480[] = "__OTR__ast_title/ast_title_seg6_vtx_19480";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_194C0[] = "__OTR__ast_title/ast_title_seg6_vtx_194C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_19500[] = "__OTR__ast_title/ast_title_seg6_vtx_19500";
+
+static const ALIGN_ASSET(2) char D_TITLE_60195C0[] = "__OTR__ast_title/D_TITLE_60195C0";
+
+static const ALIGN_ASSET(2) char D_TITLE_6019DC0[] = "__OTR__ast_title/D_TITLE_6019DC0";
+
+static const ALIGN_ASSET(2) char D_TITLE_601A5C0[] = "__OTR__ast_title/D_TITLE_601A5C0";
+
+static const ALIGN_ASSET(2) char D_TITLE_601B5C0[] = "__OTR__ast_title/D_TITLE_601B5C0";
+
+static const ALIGN_ASSET(2) char D_TITLE_601B7C0[] = "__OTR__ast_title/D_TITLE_601B7C0";
+
+static const ALIGN_ASSET(2) char aTitleCsPassageWayWallTex[] = "__OTR__ast_title/aTitleCsPassageWayWallTex";
+
+static const ALIGN_ASSET(2) char aTitleGreatFoxDeckLauncherDL[] = "__OTR__ast_title/aTitleGreatFoxDeckLauncherDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1C950[] = "__OTR__ast_title/ast_title_seg6_vtx_1C950";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1C990[] = "__OTR__ast_title/ast_title_seg6_vtx_1C990";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1CB10[] = "__OTR__ast_title/ast_title_seg6_vtx_1CB10";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1CC90[] = "__OTR__ast_title/ast_title_seg6_vtx_1CC90";
+
+static const ALIGN_ASSET(2) char D_TITLE_601CCD0[] = "__OTR__ast_title/D_TITLE_601CCD0";
+
+static const ALIGN_ASSET(2) char D_TITLE_601CED0[] = "__OTR__ast_title/D_TITLE_601CED0";
+
+static const ALIGN_ASSET(2) char D_TITLE_601CF50[] = "__OTR__ast_title/D_TITLE_601CF50";
+
+static const ALIGN_ASSET(2) char aNoControllerBgTex[] = "__OTR__ast_title/aNoControllerBgTex";
+
+static const ALIGN_ASSET(2) char aNoControllerBgTLUT[] = "__OTR__ast_title/aNoControllerBgTLUT";
+
+static const ALIGN_ASSET(2) char D_TITLE_601E424[] = "__OTR__ast_title/D_TITLE_601E424";
+
+static const ALIGN_ASSET(2) char D_TITLE_601E430[] = "__OTR__ast_title/D_TITLE_601E430";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E530[] = "__OTR__ast_title/ast_title_seg6_vtx_1E530";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E5B0[] = "__OTR__ast_title/ast_title_seg6_vtx_1E5B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E650[] = "__OTR__ast_title/ast_title_seg6_vtx_1E650";
+
+static const ALIGN_ASSET(2) char D_TITLE_601E720[] = "__OTR__ast_title/D_TITLE_601E720";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E820[] = "__OTR__ast_title/ast_title_seg6_vtx_1E820";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E900[] = "__OTR__ast_title/ast_title_seg6_vtx_1E900";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_1E9C0[] = "__OTR__ast_title/ast_title_seg6_vtx_1E9C0";
+
+static const ALIGN_ASSET(2) char D_TITLE_601EA00[] = "__OTR__ast_title/D_TITLE_601EA00";
+
+static const ALIGN_ASSET(2) char D_TITLE_601F200[] = "__OTR__ast_title/D_TITLE_601F200";
+
+static const ALIGN_ASSET(2) char D_TITLE_601F400[] = "__OTR__ast_title/D_TITLE_601F400";
+
+static const ALIGN_ASSET(2) char D_TITLE_601F8E0[] = "__OTR__ast_title/D_TITLE_601F8E0";
+
+static const ALIGN_ASSET(2) char D_TITLE_6020058[] = "__OTR__ast_title/D_TITLE_6020058";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_20070[] = "__OTR__ast_title/ast_title_seg6_gfx_20070";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20528[] = "__OTR__ast_title/ast_title_seg6_vtx_20528";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20588[] = "__OTR__ast_title/ast_title_seg6_vtx_20588";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20728[] = "__OTR__ast_title/ast_title_seg6_vtx_20728";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20928[] = "__OTR__ast_title/ast_title_seg6_vtx_20928";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20AC8[] = "__OTR__ast_title/ast_title_seg6_vtx_20AC8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20C38[] = "__OTR__ast_title/ast_title_seg6_vtx_20C38";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_20E38[] = "__OTR__ast_title/ast_title_seg6_vtx_20E38";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21018[] = "__OTR__ast_title/ast_title_seg6_vtx_21018";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_210B8[] = "__OTR__ast_title/ast_title_seg6_vtx_210B8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_212A8[] = "__OTR__ast_title/ast_title_seg6_vtx_212A8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21498[] = "__OTR__ast_title/ast_title_seg6_vtx_21498";
+
+static const ALIGN_ASSET(2) char D_TITLE_60214F8[] = "__OTR__ast_title/D_TITLE_60214F8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_21700[] = "__OTR__ast_title/ast_title_seg6_gfx_21700";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21940[] = "__OTR__ast_title/ast_title_seg6_vtx_21940";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21A00[] = "__OTR__ast_title/ast_title_seg6_vtx_21A00";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21A60[] = "__OTR__ast_title/ast_title_seg6_vtx_21A60";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21C50[] = "__OTR__ast_title/ast_title_seg6_vtx_21C50";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_21CC0[] = "__OTR__ast_title/ast_title_seg6_vtx_21CC0";
+
+static const ALIGN_ASSET(2) char D_TITLE_6021D10[] = "__OTR__ast_title/D_TITLE_6021D10";
+
+static const ALIGN_ASSET(2) char D_TITLE_6021F10[] = "__OTR__ast_title/D_TITLE_6021F10";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_22110[] = "__OTR__ast_title/ast_title_seg6_gfx_22110";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22178[] = "__OTR__ast_title/ast_title_seg6_vtx_22178";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_222A0[] = "__OTR__ast_title/ast_title_seg6_gfx_222A0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22308[] = "__OTR__ast_title/ast_title_seg6_vtx_22308";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_22440[] = "__OTR__ast_title/ast_title_seg6_gfx_22440";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22600[] = "__OTR__ast_title/ast_title_seg6_vtx_22600";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22800[] = "__OTR__ast_title/ast_title_seg6_vtx_22800";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_229F0[] = "__OTR__ast_title/ast_title_seg6_vtx_229F0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22A70[] = "__OTR__ast_title/ast_title_seg6_vtx_22A70";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_22AF0[] = "__OTR__ast_title/ast_title_seg6_vtx_22AF0";
+
+static const ALIGN_ASSET(2) char D_TITLE_6022B40[] = "__OTR__ast_title/D_TITLE_6022B40";
+
+static const ALIGN_ASSET(2) char D_TITLE_6023340[] = "__OTR__ast_title/D_TITLE_6023340";
+
+static const ALIGN_ASSET(2) char D_TITLE_6023B40[] = "__OTR__ast_title/D_TITLE_6023B40";
+
+static const ALIGN_ASSET(2) char D_TITLE_6024340[] = "__OTR__ast_title/D_TITLE_6024340";
+
+static const ALIGN_ASSET(2) char D_TITLE_60246F8[] = "__OTR__ast_title/D_TITLE_60246F8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_24710[] = "__OTR__ast_title/ast_title_seg6_gfx_24710";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24B58[] = "__OTR__ast_title/ast_title_seg6_vtx_24B58";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24C18[] = "__OTR__ast_title/ast_title_seg6_vtx_24C18";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24D38[] = "__OTR__ast_title/ast_title_seg6_vtx_24D38";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_24F38[] = "__OTR__ast_title/ast_title_seg6_vtx_24F38";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25078[] = "__OTR__ast_title/ast_title_seg6_vtx_25078";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25268[] = "__OTR__ast_title/ast_title_seg6_vtx_25268";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25458[] = "__OTR__ast_title/ast_title_seg6_vtx_25458";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_254F8[] = "__OTR__ast_title/ast_title_seg6_vtx_254F8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_255D8[] = "__OTR__ast_title/ast_title_seg6_vtx_255D8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_25658[] = "__OTR__ast_title/ast_title_seg6_vtx_25658";
+
+static const ALIGN_ASSET(2) char D_TITLE_60257A8[] = "__OTR__ast_title/D_TITLE_60257A8";
+
+static const ALIGN_ASSET(2) char D_TITLE_60259A8[] = "__OTR__ast_title/D_TITLE_60259A8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6025BA8[] = "__OTR__ast_title/D_TITLE_6025BA8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6025DA8[] = "__OTR__ast_title/D_TITLE_6025DA8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6025FA8[] = "__OTR__ast_title/D_TITLE_6025FA8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_267B0[] = "__OTR__ast_title/ast_title_seg6_gfx_267B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26968[] = "__OTR__ast_title/ast_title_seg6_vtx_26968";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26B68[] = "__OTR__ast_title/ast_title_seg6_vtx_26B68";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26C58[] = "__OTR__ast_title/ast_title_seg6_vtx_26C58";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26CC8[] = "__OTR__ast_title/ast_title_seg6_vtx_26CC8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_26CF8[] = "__OTR__ast_title/ast_title_seg6_vtx_26CF8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6026D28[] = "__OTR__ast_title/D_TITLE_6026D28";
+
+static const ALIGN_ASSET(2) char D_TITLE_6026F28[] = "__OTR__ast_title/D_TITLE_6026F28";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_27130[] = "__OTR__ast_title/ast_title_seg6_gfx_27130";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_275E8[] = "__OTR__ast_title/ast_title_seg6_vtx_275E8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_277D8[] = "__OTR__ast_title/ast_title_seg6_vtx_277D8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_279D8[] = "__OTR__ast_title/ast_title_seg6_vtx_279D8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27BD8[] = "__OTR__ast_title/ast_title_seg6_vtx_27BD8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27C98[] = "__OTR__ast_title/ast_title_seg6_vtx_27C98";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27CF8[] = "__OTR__ast_title/ast_title_seg6_vtx_27CF8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27E88[] = "__OTR__ast_title/ast_title_seg6_vtx_27E88";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_27FD8[] = "__OTR__ast_title/ast_title_seg6_vtx_27FD8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28018[] = "__OTR__ast_title/ast_title_seg6_vtx_28018";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28218[] = "__OTR__ast_title/ast_title_seg6_vtx_28218";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_28418[] = "__OTR__ast_title/ast_title_seg6_vtx_28418";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_284A8[] = "__OTR__ast_title/ast_title_seg6_vtx_284A8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6028508[] = "__OTR__ast_title/D_TITLE_6028508";
+
+static const ALIGN_ASSET(2) char D_TITLE_6028708[] = "__OTR__ast_title/D_TITLE_6028708";
+
+static const ALIGN_ASSET(2) char D_TITLE_6028788[] = "__OTR__ast_title/D_TITLE_6028788";
+
+static const ALIGN_ASSET(2) char D_TITLE_6028988[] = "__OTR__ast_title/D_TITLE_6028988";
+
+static const ALIGN_ASSET(2) char D_TITLE_6028A08[] = "__OTR__ast_title/D_TITLE_6028A08";
+
+static const ALIGN_ASSET(2) char D_TITLE_6028C08[] = "__OTR__ast_title/D_TITLE_6028C08";
+
+static const ALIGN_ASSET(2) char D_TITLE_6029BE4[] = "__OTR__ast_title/D_TITLE_6029BE4";
+
+static const ALIGN_ASSET(2) char D_TITLE_602A710[] = "__OTR__ast_title/D_TITLE_602A710";
+
+static const ALIGN_ASSET(2) char aTitleGreatFoxDeckPlatformDL[] = "__OTR__ast_title/aTitleGreatFoxDeckPlatformDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A800[] = "__OTR__ast_title/ast_title_seg6_vtx_2A800";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A840[] = "__OTR__ast_title/ast_title_seg6_vtx_2A840";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2A880[] = "__OTR__ast_title/ast_title_seg6_vtx_2A880";
+
+static const ALIGN_ASSET(2) char aTitleCsPassageWayCeilingTex[] = "__OTR__ast_title/aTitleCsPassageWayCeilingTex";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2B0C0[] = "__OTR__ast_title/ast_title_seg6_gfx_2B0C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B1E0[] = "__OTR__ast_title/ast_title_seg6_vtx_2B1E0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B260[] = "__OTR__ast_title/ast_title_seg6_vtx_2B260";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2B420[] = "__OTR__ast_title/ast_title_seg6_gfx_2B420";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B5D8[] = "__OTR__ast_title/ast_title_seg6_vtx_2B5D8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B748[] = "__OTR__ast_title/ast_title_seg6_vtx_2B748";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B798[] = "__OTR__ast_title/ast_title_seg6_vtx_2B798";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B818[] = "__OTR__ast_title/ast_title_seg6_vtx_2B818";
+
+static const ALIGN_ASSET(2) char D_TITLE_602B8C0[] = "__OTR__ast_title/D_TITLE_602B8C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2B9C0[] = "__OTR__ast_title/ast_title_seg6_vtx_2B9C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BA40[] = "__OTR__ast_title/ast_title_seg6_vtx_2BA40";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BB60[] = "__OTR__ast_title/ast_title_seg6_vtx_2BB60";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BBA0[] = "__OTR__ast_title/ast_title_seg6_gfx_2BBA0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BC60[] = "__OTR__ast_title/ast_title_seg6_vtx_2BC60";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BD60[] = "__OTR__ast_title/ast_title_seg6_gfx_2BD60";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BE20[] = "__OTR__ast_title/ast_title_seg6_vtx_2BE20";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2BE80[] = "__OTR__ast_title/ast_title_seg6_vtx_2BE80";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2BF20[] = "__OTR__ast_title/ast_title_seg6_gfx_2BF20";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C008[] = "__OTR__ast_title/ast_title_seg6_vtx_2C008";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C068[] = "__OTR__ast_title/ast_title_seg6_vtx_2C068";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C170[] = "__OTR__ast_title/ast_title_seg6_gfx_2C170";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C250[] = "__OTR__ast_title/ast_title_seg6_vtx_2C250";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C350[] = "__OTR__ast_title/ast_title_seg6_vtx_2C350";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C390[] = "__OTR__ast_title/ast_title_seg6_gfx_2C390";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C420[] = "__OTR__ast_title/ast_title_seg6_vtx_2C420";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2C4B0[] = "__OTR__ast_title/ast_title_seg6_gfx_2C4B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2C9B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2C9B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CA10[] = "__OTR__ast_title/ast_title_seg6_vtx_2CA10";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CB30[] = "__OTR__ast_title/ast_title_seg6_vtx_2CB30";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CCD0[] = "__OTR__ast_title/ast_title_seg6_vtx_2CCD0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2CEB0[] = "__OTR__ast_title/ast_title_seg6_vtx_2CEB0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D0B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2D0B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D1B0[] = "__OTR__ast_title/ast_title_seg6_vtx_2D1B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D210[] = "__OTR__ast_title/ast_title_seg6_vtx_2D210";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D400[] = "__OTR__ast_title/ast_title_seg6_vtx_2D400";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D600[] = "__OTR__ast_title/ast_title_seg6_vtx_2D600";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2D800[] = "__OTR__ast_title/ast_title_seg6_vtx_2D800";
+
+static const ALIGN_ASSET(2) char D_TITLE_602D930[] = "__OTR__ast_title/D_TITLE_602D930";
+
+static const ALIGN_ASSET(2) char D_TITLE_602DB30[] = "__OTR__ast_title/D_TITLE_602DB30";
+
+static const ALIGN_ASSET(2) char D_TITLE_602DD30[] = "__OTR__ast_title/D_TITLE_602DD30";
+
+static const ALIGN_ASSET(2) char D_TITLE_602DF30[] = "__OTR__ast_title/D_TITLE_602DF30";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_2E130[] = "__OTR__ast_title/ast_title_seg6_gfx_2E130";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E238[] = "__OTR__ast_title/ast_title_seg6_vtx_2E238";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E2B8[] = "__OTR__ast_title/ast_title_seg6_vtx_2E2B8";
+
+static const ALIGN_ASSET(2) char aTitleCsPassageWayDL[] = "__OTR__ast_title/aTitleCsPassageWayDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E450[] = "__OTR__ast_title/ast_title_seg6_vtx_2E450";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E490[] = "__OTR__ast_title/ast_title_seg6_vtx_2E490";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_2E4D0[] = "__OTR__ast_title/ast_title_seg6_vtx_2E4D0";
+
+static const ALIGN_ASSET(2) char aTitleCsPassageWayFloorTex[] = "__OTR__ast_title/aTitleCsPassageWayFloorTex";
+
+static const ALIGN_ASSET(2) char aFoxRunningAnim[] = "__OTR__ast_title/aFoxRunningAnim";
+
+static const ALIGN_ASSET(2) char aFoxSkel[] = "__OTR__ast_title/aFoxSkel";
+
+static const ALIGN_ASSET(2) char aFalcoRunningAnim[] = "__OTR__ast_title/aFalcoRunningAnim";
+
+static const ALIGN_ASSET(2) char aFalcoSkel[] = "__OTR__ast_title/aFalcoSkel";
+
+static const ALIGN_ASSET(2) char aSlippyRunningAnim[] = "__OTR__ast_title/aSlippyRunningAnim";
+
+static const ALIGN_ASSET(2) char aSlippySkel[] = "__OTR__ast_title/aSlippySkel";
+
+static const ALIGN_ASSET(2) char aPeppyRunningAnim[] = "__OTR__ast_title/aPeppyRunningAnim";
+
+static const ALIGN_ASSET(2) char aPeppySkel[] = "__OTR__ast_title/aPeppySkel";
+
+static const ALIGN_ASSET(2) char aTitleArwingEngineGlowDL[] = "__OTR__ast_title/aTitleArwingEngineGlowDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_32138[] = "__OTR__ast_title/ast_title_seg6_vtx_32138";
+
+static const ALIGN_ASSET(2) char aTitleArwingEngineGlowTex[] = "__OTR__ast_title/aTitleArwingEngineGlowTex";
+
+static const ALIGN_ASSET(2) char aTitleArwingShadowDL[] = "__OTR__ast_title/aTitleArwingShadowDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_325D8[] = "__OTR__ast_title/ast_title_seg6_vtx_325D8";
+
+static const ALIGN_ASSET(2) char aTitleArwingShadowTex[] = "__OTR__ast_title/aTitleArwingShadowTex";
+
+static const ALIGN_ASSET(2) char aFalcoAnim[] = "__OTR__ast_title/aFalcoAnim";
+
+static const ALIGN_ASSET(2) char aFoxAnim[] = "__OTR__ast_title/aFoxAnim";
+
+static const ALIGN_ASSET(2) char aPeppyAnim[] = "__OTR__ast_title/aPeppyAnim";
+
+static const ALIGN_ASSET(2) char aSlippyAnim[] = "__OTR__ast_title/aSlippyAnim";
+
+static const ALIGN_ASSET(2) char D_TITLE_6036290[] = "__OTR__ast_title/D_TITLE_6036290";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_362E8[] = "__OTR__ast_title/ast_title_seg6_vtx_362E8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6036328[] = "__OTR__ast_title/D_TITLE_6036328";
+
+static const ALIGN_ASSET(2) char D_TITLE_6036B30[] = "__OTR__ast_title/D_TITLE_6036B30";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_36B88[] = "__OTR__ast_title/ast_title_seg6_vtx_36B88";
+
+static const ALIGN_ASSET(2) char D_TITLE_6036BC8[] = "__OTR__ast_title/D_TITLE_6036BC8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_373D0[] = "__OTR__ast_title/ast_title_seg6_gfx_373D0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37458[] = "__OTR__ast_title/ast_title_seg6_vtx_37458";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_374F0[] = "__OTR__ast_title/ast_title_seg6_gfx_374F0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37548[] = "__OTR__ast_title/ast_title_seg6_vtx_37548";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_375B0[] = "__OTR__ast_title/ast_title_seg6_gfx_375B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37670[] = "__OTR__ast_title/ast_title_seg6_vtx_37670";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37770[] = "__OTR__ast_title/ast_title_seg6_gfx_37770";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_377E0[] = "__OTR__ast_title/ast_title_seg6_vtx_377E0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37840[] = "__OTR__ast_title/ast_title_seg6_gfx_37840";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_378D0[] = "__OTR__ast_title/ast_title_seg6_vtx_378D0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37970[] = "__OTR__ast_title/ast_title_seg6_gfx_37970";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37A00[] = "__OTR__ast_title/ast_title_seg6_vtx_37A00";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_37AA0[] = "__OTR__ast_title/ast_title_seg6_gfx_37AA0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37BA8[] = "__OTR__ast_title/ast_title_seg6_vtx_37BA8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37C28[] = "__OTR__ast_title/ast_title_seg6_vtx_37C28";
+
+static const ALIGN_ASSET(2) char aPlanetCorneriaDL[] = "__OTR__ast_title/aPlanetCorneriaDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37ED0[] = "__OTR__ast_title/ast_title_seg6_vtx_37ED0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F10[] = "__OTR__ast_title/ast_title_seg6_vtx_37F10";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F50[] = "__OTR__ast_title/ast_title_seg6_vtx_37F50";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37F90[] = "__OTR__ast_title/ast_title_seg6_vtx_37F90";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_37FD0[] = "__OTR__ast_title/ast_title_seg6_vtx_37FD0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38010[] = "__OTR__ast_title/ast_title_seg6_vtx_38010";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38050[] = "__OTR__ast_title/ast_title_seg6_vtx_38050";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_38090[] = "__OTR__ast_title/ast_title_seg6_vtx_38090";
+
+static const ALIGN_ASSET(2) char D_TITLE_60380D0[] = "__OTR__ast_title/D_TITLE_60380D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_60390D0[] = "__OTR__ast_title/D_TITLE_60390D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_603A0D0[] = "__OTR__ast_title/D_TITLE_603A0D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_603B0D0[] = "__OTR__ast_title/D_TITLE_603B0D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_603C0D0[] = "__OTR__ast_title/D_TITLE_603C0D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_603D0D0[] = "__OTR__ast_title/D_TITLE_603D0D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_603E0D0[] = "__OTR__ast_title/D_TITLE_603E0D0";
+
+static const ALIGN_ASSET(2) char D_TITLE_603F0D0[] = "__OTR__ast_title/D_TITLE_603F0D0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_400D0[] = "__OTR__ast_title/ast_title_seg6_gfx_400D0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40158[] = "__OTR__ast_title/ast_title_seg6_vtx_40158";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_401E0[] = "__OTR__ast_title/ast_title_seg6_gfx_401E0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40250[] = "__OTR__ast_title/ast_title_seg6_vtx_40250";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_402B0[] = "__OTR__ast_title/ast_title_seg6_gfx_402B0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40380[] = "__OTR__ast_title/ast_title_seg6_vtx_40380";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_404D0[] = "__OTR__ast_title/ast_title_seg6_gfx_404D0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_405A8[] = "__OTR__ast_title/ast_title_seg6_vtx_405A8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_406F0[] = "__OTR__ast_title/ast_title_seg6_gfx_406F0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40760[] = "__OTR__ast_title/ast_title_seg6_vtx_40760";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_407C0[] = "__OTR__ast_title/ast_title_seg6_gfx_407C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40840[] = "__OTR__ast_title/ast_title_seg6_vtx_40840";
+
+static const ALIGN_ASSET(2) char D_TITLE_60408C0[] = "__OTR__ast_title/D_TITLE_60408C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_409C0[] = "__OTR__ast_title/ast_title_seg6_vtx_409C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40A40[] = "__OTR__ast_title/ast_title_seg6_vtx_40A40";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40AC0[] = "__OTR__ast_title/ast_title_seg6_vtx_40AC0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40B90[] = "__OTR__ast_title/ast_title_seg6_gfx_40B90";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40C10[] = "__OTR__ast_title/ast_title_seg6_vtx_40C10";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40CA0[] = "__OTR__ast_title/ast_title_seg6_gfx_40CA0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40D40[] = "__OTR__ast_title/ast_title_seg6_vtx_40D40";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40E00[] = "__OTR__ast_title/ast_title_seg6_gfx_40E00";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40EA0[] = "__OTR__ast_title/ast_title_seg6_vtx_40EA0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_40F60[] = "__OTR__ast_title/ast_title_seg6_gfx_40F60";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_40FE0[] = "__OTR__ast_title/ast_title_seg6_vtx_40FE0";
+
+static const ALIGN_ASSET(2) char aTeamShadowDL[] = "__OTR__ast_title/aTeamShadowDL";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_410C8[] = "__OTR__ast_title/ast_title_seg6_vtx_410C8";
+
+static const ALIGN_ASSET(2) char D_TITLE_60410F8[] = "__OTR__ast_title/D_TITLE_60410F8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41900[] = "__OTR__ast_title/ast_title_seg6_gfx_41900";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41990[] = "__OTR__ast_title/ast_title_seg6_vtx_41990";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41A20[] = "__OTR__ast_title/ast_title_seg6_gfx_41A20";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41A90[] = "__OTR__ast_title/ast_title_seg6_vtx_41A90";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41AF0[] = "__OTR__ast_title/ast_title_seg6_gfx_41AF0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41B70[] = "__OTR__ast_title/ast_title_seg6_vtx_41B70";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_41BF0[] = "__OTR__ast_title/ast_title_seg6_gfx_41BF0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_41C70[] = "__OTR__ast_title/ast_title_seg6_vtx_41C70";
+
+static const ALIGN_ASSET(2) char D_TITLE_6041CF0[] = "__OTR__ast_title/D_TITLE_6041CF0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_424F0[] = "__OTR__ast_title/ast_title_seg6_gfx_424F0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42560[] = "__OTR__ast_title/ast_title_seg6_vtx_42560";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_425C0[] = "__OTR__ast_title/ast_title_seg6_gfx_425C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42650[] = "__OTR__ast_title/ast_title_seg6_vtx_42650";
+
+static const ALIGN_ASSET(2) char D_TITLE_60426E0[] = "__OTR__ast_title/D_TITLE_60426E0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_428E0[] = "__OTR__ast_title/ast_title_seg6_gfx_428E0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42A78[] = "__OTR__ast_title/ast_title_seg6_vtx_42A78";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42AD8[] = "__OTR__ast_title/ast_title_seg6_vtx_42AD8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42B28[] = "__OTR__ast_title/ast_title_seg6_vtx_42B28";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42B98[] = "__OTR__ast_title/ast_title_seg6_vtx_42B98";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_42D70[] = "__OTR__ast_title/ast_title_seg6_gfx_42D70";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42DF8[] = "__OTR__ast_title/ast_title_seg6_vtx_42DF8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_42EA0[] = "__OTR__ast_title/ast_title_seg6_gfx_42EA0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_42F88[] = "__OTR__ast_title/ast_title_seg6_vtx_42F88";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43078[] = "__OTR__ast_title/ast_title_seg6_vtx_43078";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_430F0[] = "__OTR__ast_title/ast_title_seg6_gfx_430F0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_431D8[] = "__OTR__ast_title/ast_title_seg6_vtx_431D8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_432C8[] = "__OTR__ast_title/ast_title_seg6_vtx_432C8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43340[] = "__OTR__ast_title/ast_title_seg6_gfx_43340";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_433C0[] = "__OTR__ast_title/ast_title_seg6_vtx_433C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43460[] = "__OTR__ast_title/ast_title_seg6_gfx_43460";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43568[] = "__OTR__ast_title/ast_title_seg6_vtx_43568";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_435C8[] = "__OTR__ast_title/ast_title_seg6_vtx_435C8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43720[] = "__OTR__ast_title/ast_title_seg6_gfx_43720";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_437F0[] = "__OTR__ast_title/ast_title_seg6_vtx_437F0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43900[] = "__OTR__ast_title/ast_title_seg6_gfx_43900";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43980[] = "__OTR__ast_title/ast_title_seg6_vtx_43980";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43A10[] = "__OTR__ast_title/ast_title_seg6_gfx_43A10";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43A90[] = "__OTR__ast_title/ast_title_seg6_vtx_43A90";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43B20[] = "__OTR__ast_title/ast_title_seg6_gfx_43B20";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43BE8[] = "__OTR__ast_title/ast_title_seg6_vtx_43BE8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_43D00[] = "__OTR__ast_title/ast_title_seg6_gfx_43D00";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_43DF8[] = "__OTR__ast_title/ast_title_seg6_vtx_43DF8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6043F68[] = "__OTR__ast_title/D_TITLE_6043F68";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44770[] = "__OTR__ast_title/ast_title_seg6_gfx_44770";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44A58[] = "__OTR__ast_title/ast_title_seg6_vtx_44A58";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44A98[] = "__OTR__ast_title/ast_title_seg6_vtx_44A98";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44AD8[] = "__OTR__ast_title/ast_title_seg6_vtx_44AD8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44C88[] = "__OTR__ast_title/ast_title_seg6_vtx_44C88";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44CE8[] = "__OTR__ast_title/ast_title_seg6_vtx_44CE8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44D88[] = "__OTR__ast_title/ast_title_seg6_vtx_44D88";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44DE8[] = "__OTR__ast_title/ast_title_seg6_vtx_44DE8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44E40[] = "__OTR__ast_title/ast_title_seg6_gfx_44E40";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44EC0[] = "__OTR__ast_title/ast_title_seg6_vtx_44EC0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_44F40[] = "__OTR__ast_title/ast_title_seg6_gfx_44F40";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_44FF8[] = "__OTR__ast_title/ast_title_seg6_vtx_44FF8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45100[] = "__OTR__ast_title/ast_title_seg6_gfx_45100";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_451A0[] = "__OTR__ast_title/ast_title_seg6_vtx_451A0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45280[] = "__OTR__ast_title/ast_title_seg6_gfx_45280";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45320[] = "__OTR__ast_title/ast_title_seg6_vtx_45320";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_45400[] = "__OTR__ast_title/ast_title_seg6_gfx_45400";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_454B8[] = "__OTR__ast_title/ast_title_seg6_vtx_454B8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_gfx_455C0[] = "__OTR__ast_title/ast_title_seg6_gfx_455C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45640[] = "__OTR__ast_title/ast_title_seg6_vtx_45640";
+
+static const ALIGN_ASSET(2) char D_TITLE_60456C0[] = "__OTR__ast_title/D_TITLE_60456C0";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45868[] = "__OTR__ast_title/ast_title_seg6_vtx_45868";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_458A8[] = "__OTR__ast_title/ast_title_seg6_vtx_458A8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_458E8[] = "__OTR__ast_title/ast_title_seg6_vtx_458E8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45928[] = "__OTR__ast_title/ast_title_seg6_vtx_45928";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_45968[] = "__OTR__ast_title/ast_title_seg6_vtx_45968";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_459A8[] = "__OTR__ast_title/ast_title_seg6_vtx_459A8";
+
+static const ALIGN_ASSET(2) char ast_title_seg6_vtx_459E8[] = "__OTR__ast_title/ast_title_seg6_vtx_459E8";
+
+static const ALIGN_ASSET(2) char D_TITLE_6045A28[] = "__OTR__ast_title/D_TITLE_6045A28";
+
+static const ALIGN_ASSET(2) char D_TITLE_6046A28[] = "__OTR__ast_title/D_TITLE_6046A28";
+
+static const ALIGN_ASSET(2) char D_TITLE_6047A28[] = "__OTR__ast_title/D_TITLE_6047A28";
+
+static const ALIGN_ASSET(2) char D_TITLE_6048A28[] = "__OTR__ast_title/D_TITLE_6048A28";
+
+static const ALIGN_ASSET(2) char D_TITLE_6049A28[] = "__OTR__ast_title/D_TITLE_6049A28";
+
+static const ALIGN_ASSET(2) char D_TITLE_604AA28[] = "__OTR__ast_title/D_TITLE_604AA28";
+
+static const ALIGN_ASSET(2) char D_TITLE_604BA28[] = "__OTR__ast_title/D_TITLE_604BA28";
+
diff --git a/include/assets/ast_training.h b/include/assets/ast_training.h
new file mode 100644
index 00000000..137d5a6e
--- /dev/null
+++ b/include/assets/ast_training.h
@@ -0,0 +1,84 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char D_TR_6000000[] = "__OTR__ast_training/D_TR_6000000";
+
+static const ALIGN_ASSET(2) char D_TR_6000480[] = "__OTR__ast_training/D_TR_6000480";
+
+static const ALIGN_ASSET(2) char D_TR_6000900[] = "__OTR__ast_training/D_TR_6000900";
+
+static const ALIGN_ASSET(2) char D_TR_6001820[] = "__OTR__ast_training/D_TR_6001820";
+
+static const ALIGN_ASSET(2) char aTrBarrierDL[] = "__OTR__ast_training/aTrBarrierDL";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_27F0[] = "__OTR__ast_training/ast_training_seg6_vtx_27F0";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_2870[] = "__OTR__ast_training/ast_training_seg6_vtx_2870";
+
+static const ALIGN_ASSET(2) char D_TR_60028F0[] = "__OTR__ast_training/D_TR_60028F0";
+
+static const ALIGN_ASSET(2) char aTrBuildingDL[] = "__OTR__ast_training/aTrBuildingDL";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_3220[] = "__OTR__ast_training/ast_training_seg6_vtx_3220";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_32A0[] = "__OTR__ast_training/ast_training_seg6_vtx_32A0";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_32E0[] = "__OTR__ast_training/ast_training_seg6_vtx_32E0";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_3320[] = "__OTR__ast_training/ast_training_seg6_vtx_3320";
+
+static const ALIGN_ASSET(2) char D_TR_6003360[] = "__OTR__ast_training/D_TR_6003360";
+
+static const ALIGN_ASSET(2) char D_TR_6003560[] = "__OTR__ast_training/D_TR_6003560";
+
+static const ALIGN_ASSET(2) char D_TR_6003760[] = "__OTR__ast_training/D_TR_6003760";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_37F8[] = "__OTR__ast_training/ast_training_seg6_vtx_37F8";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_3838[] = "__OTR__ast_training/ast_training_seg6_vtx_3838";
+
+static const ALIGN_ASSET(2) char D_TR_6003878[] = "__OTR__ast_training/D_TR_6003878";
+
+static const ALIGN_ASSET(2) char D_TR_6004878[] = "__OTR__ast_training/D_TR_6004878";
+
+static const ALIGN_ASSET(2) char D_TR_6005880[] = "__OTR__ast_training/D_TR_6005880";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_58D8[] = "__OTR__ast_training/ast_training_seg6_vtx_58D8";
+
+static const ALIGN_ASSET(2) char D_TR_6005938[] = "__OTR__ast_training/D_TR_6005938";
+
+static const ALIGN_ASSET(2) char aItemTrainingRingDL[] = "__OTR__ast_training/aItemTrainingRingDL";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_62D8[] = "__OTR__ast_training/ast_training_seg6_vtx_62D8";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_64D8[] = "__OTR__ast_training/ast_training_seg6_vtx_64D8";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_6628[] = "__OTR__ast_training/ast_training_seg6_vtx_6628";
+
+static const ALIGN_ASSET(2) char ast_training_seg6_vtx_6828[] = "__OTR__ast_training/ast_training_seg6_vtx_6828";
+
+static const ALIGN_ASSET(2) char D_TR_6006958[] = "__OTR__ast_training/D_TR_6006958";
+
+static const ALIGN_ASSET(2) char D_TR_60069D8[] = "__OTR__ast_training/D_TR_60069D8";
+
+static const ALIGN_ASSET(2) char D_TR_6006A60[] = "__OTR__ast_training/D_TR_6006A60";
+
+static const ALIGN_ASSET(2) char D_TR_6006AA4[] = "__OTR__ast_training/D_TR_6006AA4";
+
+static const ALIGN_ASSET(2) char D_TR_6008EF8[] = "__OTR__ast_training/D_TR_6008EF8";
+
+static const char D_TR_6009B34[] = "__OTR__ast_training/D_TR_6009B34";
+
+static const ALIGN_ASSET(2) char aTrBuildingHitbox[] = "__OTR__ast_training/aTrBuildingHitbox";
+
+static const ALIGN_ASSET(2) char aItemTrainingRingHitbox[] = "__OTR__ast_training/aItemTrainingRingHitbox";
+
+static const ALIGN_ASSET(2) char aTrBarrierHitbox[] = "__OTR__ast_training/aTrBarrierHitbox";
+
diff --git a/include/assets/ast_ve1_boss.h b/include/assets/ast_ve1_boss.h
new file mode 100644
index 00000000..9af6dfc1
--- /dev/null
+++ b/include/assets/ast_ve1_boss.h
@@ -0,0 +1,551 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char D_VE1_9000000[] = "__OTR__ast_ve1_boss/D_VE1_9000000";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_148[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_148";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_188[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_188";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1C8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1C8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_2C8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_2C8";
+
+static const ALIGN_ASSET(2) char D_VE1_90003E8[] = "__OTR__ast_ve1_boss/D_VE1_90003E8";
+
+static const ALIGN_ASSET(2) char D_VE1_90005E8[] = "__OTR__ast_ve1_boss/D_VE1_90005E8";
+
+static const ALIGN_ASSET(2) char D_VE1_90007F0[] = "__OTR__ast_ve1_boss/D_VE1_90007F0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9D0";
+
+static const ALIGN_ASSET(2) char D_VE1_9000AF0[] = "__OTR__ast_ve1_boss/D_VE1_9000AF0";
+
+static const ALIGN_ASSET(2) char D_VE1_90012F0[] = "__OTR__ast_ve1_boss/D_VE1_90012F0";
+
+static const ALIGN_ASSET(2) char D_VE1_9002CD8[] = "__OTR__ast_ve1_boss/D_VE1_9002CD8";
+
+static const ALIGN_ASSET(2) char aVe1BlockerDL[] = "__OTR__ast_ve1_boss/aVe1BlockerDL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_2DB0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_2DB0";
+
+static const ALIGN_ASSET(2) char D_VE1_9002F30[] = "__OTR__ast_ve1_boss/D_VE1_9002F30";
+
+static const ALIGN_ASSET(2) char D_VE1_9003330[] = "__OTR__ast_ve1_boss/D_VE1_9003330";
+
+static const ALIGN_ASSET(2) char D_VE1_9003490[] = "__OTR__ast_ve1_boss/D_VE1_9003490";
+
+static const ALIGN_ASSET(2) char D_VE1_9003890[] = "__OTR__ast_ve1_boss/D_VE1_9003890";
+
+static const ALIGN_ASSET(2) char D_VE1_90039F0[] = "__OTR__ast_ve1_boss/D_VE1_90039F0";
+
+static const ALIGN_ASSET(2) char D_VE1_9003DF0[] = "__OTR__ast_ve1_boss/D_VE1_9003DF0";
+
+static const ALIGN_ASSET(2) char aVe1TempleInterior1DL[] = "__OTR__ast_ve1_boss/aVe1TempleInterior1DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_3FC0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_3FC0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_40C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_40C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_4298[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_4298";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_42D8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_42D8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_4318[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_4318";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_43B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_43B8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_43F8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_43F8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_4438[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_4438";
+
+static const ALIGN_ASSET(2) char D_VE1_9004478[] = "__OTR__ast_ve1_boss/D_VE1_9004478";
+
+static const ALIGN_ASSET(2) char D_VE1_9004878[] = "__OTR__ast_ve1_boss/D_VE1_9004878";
+
+static const ALIGN_ASSET(2) char D_VE1_9005078[] = "__OTR__ast_ve1_boss/D_VE1_9005078";
+
+static const ALIGN_ASSET(2) char D_VE1_9005478[] = "__OTR__ast_ve1_boss/D_VE1_9005478";
+
+static const ALIGN_ASSET(2) char aVe1TempleEntranceDL[] = "__OTR__ast_ve1_boss/aVe1TempleEntranceDL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_64B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_64B0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_66B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_66B0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6890[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6890";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6A70[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6A70";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6C50[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6C50";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_6E30[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_6E30";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7010[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7010";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7130[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7130";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_71D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_71D0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_73D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_73D0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_75C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_75C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_77C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_77C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_79C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_79C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7AC0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7AC0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7CC0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7CC0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_7EA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_7EA0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8090[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8090";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8100[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8100";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8200[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8200";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8400[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8400";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_85F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_85F0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_87E0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_87E0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_89C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_89C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8BA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8BA0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8D80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8D80";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_8F60[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_8F60";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9150[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9150";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9330[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9330";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_94E0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_94E0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_9680[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_9680";
+
+static const ALIGN_ASSET(2) char D_VE1_9009700[] = "__OTR__ast_ve1_boss/D_VE1_9009700";
+
+static const ALIGN_ASSET(2) char D_VE1_9009F00[] = "__OTR__ast_ve1_boss/D_VE1_9009F00";
+
+static const ALIGN_ASSET(2) char D_VE1_900A300[] = "__OTR__ast_ve1_boss/D_VE1_900A300";
+
+static const ALIGN_ASSET(2) char D_VE1_900AB00[] = "__OTR__ast_ve1_boss/D_VE1_900AB00";
+
+static const ALIGN_ASSET(2) char D_VE1_900AF00[] = "__OTR__ast_ve1_boss/D_VE1_900AF00";
+
+static const ALIGN_ASSET(2) char D_VE1_900B700[] = "__OTR__ast_ve1_boss/D_VE1_900B700";
+
+static const ALIGN_ASSET(2) char D_VE1_900BF00[] = "__OTR__ast_ve1_boss/D_VE1_900BF00";
+
+static const ALIGN_ASSET(2) char D_VE1_900C700[] = "__OTR__ast_ve1_boss/D_VE1_900C700";
+
+static const ALIGN_ASSET(2) char aVe1MonkeyStatueAnim[] = "__OTR__ast_ve1_boss/aVe1MonkeyStatueAnim";
+
+static const ALIGN_ASSET(2) char aVe1MonkeyStatueSkel[] = "__OTR__ast_ve1_boss/aVe1MonkeyStatueSkel";
+
+static const ALIGN_ASSET(2) char D_VE1_900D180[] = "__OTR__ast_ve1_boss/D_VE1_900D180";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_D260[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_D260";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_D2C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_D2C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_D4C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_D4C0";
+
+static const ALIGN_ASSET(2) char D_VE1_900D520[] = "__OTR__ast_ve1_boss/D_VE1_900D520";
+
+static const ALIGN_ASSET(2) char aVe1Pillar1DL[] = "__OTR__ast_ve1_boss/aVe1Pillar1DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_DDA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_DDA0";
+
+static const ALIGN_ASSET(2) char D_VE1_900DF20[] = "__OTR__ast_ve1_boss/D_VE1_900DF20";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_DF78[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_DF78";
+
+static const ALIGN_ASSET(2) char D_VE1_900DFB8[] = "__OTR__ast_ve1_boss/D_VE1_900DFB8";
+
+static const ALIGN_ASSET(2) char aVe1TempleBgDL[] = "__OTR__ast_ve1_boss/aVe1TempleBgDL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_F018[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_F018";
+
+static const ALIGN_ASSET(2) char aVe1TempleInterior2DL[] = "__OTR__ast_ve1_boss/aVe1TempleInterior2DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_F0D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_F0D0";
+
+static const ALIGN_ASSET(2) char aVe1TempleInterior3DL[] = "__OTR__ast_ve1_boss/aVe1TempleInterior3DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_F260[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_F260";
+
+static const ALIGN_ASSET(2) char D_VE1_9010FC4[] = "__OTR__ast_ve1_boss/D_VE1_9010FC4";
+
+static const ALIGN_ASSET(2) char D_VE1_9010FD0[] = "__OTR__ast_ve1_boss/D_VE1_9010FD0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_11048[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_11048";
+
+static const ALIGN_ASSET(2) char aVe1PillarDL[] = "__OTR__ast_ve1_boss/aVe1PillarDL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_11300[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_11300";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_114E0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_114E0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_116D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_116D0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_118C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_118C0";
+
+static const ALIGN_ASSET(2) char D_VE1_9011980[] = "__OTR__ast_ve1_boss/D_VE1_9011980";
+
+static const ALIGN_ASSET(2) char aVe1Pillar5DL[] = "__OTR__ast_ve1_boss/aVe1Pillar5DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12240[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12240";
+
+static const ALIGN_ASSET(2) char D_VE1_90123C0[] = "__OTR__ast_ve1_boss/D_VE1_90123C0";
+
+static const ALIGN_ASSET(2) char D_VE1_90125C0[] = "__OTR__ast_ve1_boss/D_VE1_90125C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_12700[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_12700";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12820[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12820";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12860[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12860";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_128A0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_128A0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12A80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12A80";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_12B40[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_12B40";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12C60[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12C60";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12CA0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12CA0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12CE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12CE0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_12EE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_12EE0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_12F80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_12F80";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13058[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13058";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_130F8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_130F8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_13300[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_13300";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_133B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_133B8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_134B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_134B8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_135C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_135C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13680[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13680";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13780[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13780";
+
+static const ALIGN_ASSET(2) char D_VE1_9013880[] = "__OTR__ast_ve1_boss/D_VE1_9013880";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13998[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13998";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13B28[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13B28";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13B88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13B88";
+
+static const ALIGN_ASSET(2) char D_VE1_9013C20[] = "__OTR__ast_ve1_boss/D_VE1_9013C20";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13CA8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13CA8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13E88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13E88";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_13EF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_13EF0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_13FA8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_13FA8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_140A8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_140A8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_141B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_141B0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14270[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14270";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14370[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14370";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_14470[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_14470";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14530[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14530";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14630[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14630";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_14730[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_14730";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_147F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_147F0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14970[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14970";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_14A70[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_14A70";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14B48[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14B48";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14BE8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14BE8";
+
+static const ALIGN_ASSET(2) char D_VE1_9014DF0[] = "__OTR__ast_ve1_boss/D_VE1_9014DF0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14EB8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14EB8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_14FD8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_14FD8";
+
+static const ALIGN_ASSET(2) char D_VE1_90150A0[] = "__OTR__ast_ve1_boss/D_VE1_90150A0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_151F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_151F0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15230[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15230";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15270[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15270";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15370[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15370";
+
+static const ALIGN_ASSET(2) char D_VE1_9015480[] = "__OTR__ast_ve1_boss/D_VE1_9015480";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_155A8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_155A8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_155E8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_155E8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15668[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15668";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15868[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15868";
+
+static const ALIGN_ASSET(2) char D_VE1_9015900[] = "__OTR__ast_ve1_boss/D_VE1_9015900";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_159D0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_159D0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15AE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15AE0";
+
+static const ALIGN_ASSET(2) char D_VE1_9015BB0[] = "__OTR__ast_ve1_boss/D_VE1_9015BB0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15C88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15C88";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15D88[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15D88";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_15F10[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_15F10";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_15FB8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_15FB8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_161A8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_161A8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_16300[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_16300";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16488[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16488";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16678[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16678";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16878[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16878";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16A68[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16A68";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16C68[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16C68";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_16E58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_16E58";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_16F80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_16F80";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_17028[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_17028";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_17218[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_17218";
+
+static const ALIGN_ASSET(2) char D_VE1_9018BD0[] = "__OTR__ast_ve1_boss/D_VE1_9018BD0";
+
+static const ALIGN_ASSET(2) char D_VE1_901A4B8[] = "__OTR__ast_ve1_boss/D_VE1_901A4B8";
+
+static const ALIGN_ASSET(2) char D_VE1_901BDA8[] = "__OTR__ast_ve1_boss/D_VE1_901BDA8";
+
+static const ALIGN_ASSET(2) char D_VE1_901C0F4[] = "__OTR__ast_ve1_boss/D_VE1_901C0F4";
+
+static const ALIGN_ASSET(2) char D_VE1_901DA38[] = "__OTR__ast_ve1_boss/D_VE1_901DA38";
+
+static const ALIGN_ASSET(2) char aVe1Pillar3DL[] = "__OTR__ast_ve1_boss/aVe1Pillar3DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1DAE0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1DAE0";
+
+static const ALIGN_ASSET(2) char D_VE1_901DC90[] = "__OTR__ast_ve1_boss/D_VE1_901DC90";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1E090[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1E090";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E150[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E150";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E250[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E250";
+
+static const ALIGN_ASSET(2) char D_VE1_901E350[] = "__OTR__ast_ve1_boss/D_VE1_901E350";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E430[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E430";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E530[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E530";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1E630[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1E630";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E6F0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E6F0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1E850[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1E850";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1E950[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1E950";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EA20[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EA20";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EB10[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EB10";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1ECF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1ECF0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EE08[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EE08";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EE48[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EE48";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EF58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EF58";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1EFD8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1EFD8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1F020[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1F020";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F108[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F108";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F218[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F218";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F2D8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F2D8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_gfx_1F320[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_gfx_1F320";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F418[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F418";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F508[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F508";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F5C8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F5C8";
+
+static const ALIGN_ASSET(2) char D_VE1_901F6D0[] = "__OTR__ast_ve1_boss/D_VE1_901F6D0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F788[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F788";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1F7F8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1F7F8";
+
+static const ALIGN_ASSET(2) char D_VE1_901F990[] = "__OTR__ast_ve1_boss/D_VE1_901F990";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FA58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FA58";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FB78[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FB78";
+
+static const ALIGN_ASSET(2) char D_VE1_901FC40[] = "__OTR__ast_ve1_boss/D_VE1_901FC40";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FD58[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FD58";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FE18[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FE18";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_1FE98[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_1FE98";
+
+static const ALIGN_ASSET(2) char D_VE1_901FFB0[] = "__OTR__ast_ve1_boss/D_VE1_901FFB0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_202A0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_202A0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_203B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_203B0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20590[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20590";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20740[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20740";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20940[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20940";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20970[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20970";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20A90[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20A90";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20C90[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20C90";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_20D80[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_20D80";
+
+static const ALIGN_ASSET(2) char D_VE1_9020E30[] = "__OTR__ast_ve1_boss/D_VE1_9020E30";
+
+static const ALIGN_ASSET(2) char D_VE1_9021630[] = "__OTR__ast_ve1_boss/D_VE1_9021630";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21700[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21700";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21810[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21810";
+
+static const ALIGN_ASSET(2) char D_VE1_9021900[] = "__OTR__ast_ve1_boss/D_VE1_9021900";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_219B8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_219B8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21A18[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21A18";
+
+static const ALIGN_ASSET(2) char D_VE1_9021B80[] = "__OTR__ast_ve1_boss/D_VE1_9021B80";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21DF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21DF0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_21ED0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_21ED0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_220C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_220C0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22250[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22250";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22440[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22440";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22640[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22640";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22730[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22730";
+
+static const ALIGN_ASSET(2) char D_VE1_9022820[] = "__OTR__ast_ve1_boss/D_VE1_9022820";
+
+static const ALIGN_ASSET(2) char D_VE1_9022A20[] = "__OTR__ast_ve1_boss/D_VE1_9022A20";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22AF8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22AF8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22BF8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22BF8";
+
+static const ALIGN_ASSET(2) char D_VE1_9022D80[] = "__OTR__ast_ve1_boss/D_VE1_9022D80";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22EA8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22EA8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22EE8[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22EE8";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_22F68[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_22F68";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23148[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23148";
+
+static const ALIGN_ASSET(2) char D_VE1_9023290[] = "__OTR__ast_ve1_boss/D_VE1_9023290";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23340[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23340";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23410[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23410";
+
+static const ALIGN_ASSET(2) char D_VE1_90234D0[] = "__OTR__ast_ve1_boss/D_VE1_90234D0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_235A0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_235A0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23780[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23780";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_237B0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_237B0";
+
+static const ALIGN_ASSET(2) char D_VE1_9023880[] = "__OTR__ast_ve1_boss/D_VE1_9023880";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23910[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23910";
+
+static const ALIGN_ASSET(2) char aVe1Pillar4DL[] = "__OTR__ast_ve1_boss/aVe1Pillar4DL";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23C60[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23C60";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23CF0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23CF0";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23D30[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23D30";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23D70[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23D70";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_23DB0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_23DB0";
+
+static const ALIGN_ASSET(2) char D_VE1_9024738[] = "__OTR__ast_ve1_boss/D_VE1_9024738";
+
+static const ALIGN_ASSET(2) char D_VE1_9024750[] = "__OTR__ast_ve1_boss/D_VE1_9024750";
+
+static const ALIGN_ASSET(2) char ast_ve1_boss_seg9_vtx_247C0[] = "__OTR__ast_ve1_boss/ast_ve1_boss_seg9_vtx_247C0";
+
+static const ALIGN_ASSET(2) char D_VE1_9024940[] = "__OTR__ast_ve1_boss/D_VE1_9024940";
+
diff --git a/include/assets/ast_venom_1.h b/include/assets/ast_venom_1.h
new file mode 100644
index 00000000..8ac862e8
--- /dev/null
+++ b/include/assets/ast_venom_1.h
@@ -0,0 +1,160 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char D_VE1_6000000[] = "__OTR__ast_venom_1/D_VE1_6000000";
+
+static const ALIGN_ASSET(2) char D_VE1_6000A80[] = "__OTR__ast_venom_1/D_VE1_6000A80";
+
+static const ALIGN_ASSET(2) char aVe1TitleCardTex[] = "__OTR__ast_venom_1/aVe1TitleCardTex";
+
+static const ALIGN_ASSET(2) char D_VE1_6001B80[] = "__OTR__ast_venom_1/D_VE1_6001B80";
+
+static const ALIGN_ASSET(2) char aVe1EnemyGateDL[] = "__OTR__ast_venom_1/aVe1EnemyGateDL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_26D8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_26D8";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_27F8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_27F8";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_28F8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_28F8";
+
+static const ALIGN_ASSET(2) char D_VE1_60029F8[] = "__OTR__ast_venom_1/D_VE1_60029F8";
+
+static const ALIGN_ASSET(2) char D_VE1_6002A78[] = "__OTR__ast_venom_1/D_VE1_6002A78";
+
+static const ALIGN_ASSET(2) char D_VE1_6002AA8[] = "__OTR__ast_venom_1/D_VE1_6002AA8";
+
+static const ALIGN_ASSET(2) char D_VE1_6002EA8[] = "__OTR__ast_venom_1/D_VE1_6002EA8";
+
+static const ALIGN_ASSET(2) char D_VE1_6003078[] = "__OTR__ast_venom_1/D_VE1_6003078";
+
+static const ALIGN_ASSET(2) char D_VE1_6003478[] = "__OTR__ast_venom_1/D_VE1_6003478";
+
+static const ALIGN_ASSET(2) char aVe1WatchPostDL[] = "__OTR__ast_venom_1/aVe1WatchPostDL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_37E0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_37E0";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_3910[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_3910";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_3970[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_3970";
+
+static const ALIGN_ASSET(2) char D_VE1_6003B10[] = "__OTR__ast_venom_1/D_VE1_6003B10";
+
+static const ALIGN_ASSET(2) char aVe1EnemyGateDoorLeftDL[] = "__OTR__ast_venom_1/aVe1EnemyGateDoorLeftDL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_43A8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_43A8";
+
+static const ALIGN_ASSET(2) char aVe1EnemyGateDoorRightDL[] = "__OTR__ast_venom_1/aVe1EnemyGateDoorRightDL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_4490[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_4490";
+
+static const ALIGN_ASSET(2) char D_VE1_60044D0[] = "__OTR__ast_venom_1/D_VE1_60044D0";
+
+static const ALIGN_ASSET(2) char D_VE1_60045D0[] = "__OTR__ast_venom_1/D_VE1_60045D0";
+
+static const ALIGN_ASSET(2) char D_VE1_60046F0[] = "__OTR__ast_venom_1/D_VE1_60046F0";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_4740[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_4740";
+
+static const ALIGN_ASSET(2) char D_VE1_6004780[] = "__OTR__ast_venom_1/D_VE1_6004780";
+
+static const ALIGN_ASSET(2) char aVe1GeneratorDL[] = "__OTR__ast_venom_1/aVe1GeneratorDL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5990[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5990";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5AD0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5AD0";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5CB0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5CB0";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_5CF0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_5CF0";
+
+static const ALIGN_ASSET(2) char D_VE1_6005D50[] = "__OTR__ast_venom_1/D_VE1_6005D50";
+
+static const ALIGN_ASSET(2) char D_VE1_6005E50[] = "__OTR__ast_venom_1/D_VE1_6005E50";
+
+static const ALIGN_ASSET(2) char D_VE1_6005F90[] = "__OTR__ast_venom_1/D_VE1_6005F90";
+
+static const ALIGN_ASSET(2) char D_VE1_6006390[] = "__OTR__ast_venom_1/D_VE1_6006390";
+
+static const ALIGN_ASSET(2) char D_VE1_6006530[] = "__OTR__ast_venom_1/D_VE1_6006530";
+
+static const ALIGN_ASSET(2) char D_VE1_6006630[] = "__OTR__ast_venom_1/D_VE1_6006630";
+
+static const ALIGN_ASSET(2) char D_VE1_60066D0[] = "__OTR__ast_venom_1/D_VE1_60066D0";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_66F0[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_66F0";
+
+static const ALIGN_ASSET(2) char D_VE1_6006750[] = "__OTR__ast_venom_1/D_VE1_6006750";
+
+static const ALIGN_ASSET(2) char aVe1HallwayObstacleDL[] = "__OTR__ast_venom_1/aVe1HallwayObstacleDL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7028[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7028";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7218[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7218";
+
+static const ALIGN_ASSET(2) char aVe1SceneryWall3DL[] = "__OTR__ast_venom_1/aVe1SceneryWall3DL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7468[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7468";
+
+static const ALIGN_ASSET(2) char D_VE1_60074E8[] = "__OTR__ast_venom_1/D_VE1_60074E8";
+
+static const ALIGN_ASSET(2) char aVe1Wall2DL[] = "__OTR__ast_venom_1/aVe1Wall2DL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7D48[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7D48";
+
+static const ALIGN_ASSET(2) char aVe1Wall1DL[] = "__OTR__ast_venom_1/aVe1Wall1DL";
+
+static const ALIGN_ASSET(2) char ast_venom_1_seg6_vtx_7DE8[] = "__OTR__ast_venom_1/ast_venom_1_seg6_vtx_7DE8";
+
+static const ALIGN_ASSET(2) char D_VE1_6007E30[] = "__OTR__ast_venom_1/D_VE1_6007E30";
+
+static const ALIGN_ASSET(2) char D_VE1_6007E74[] = "__OTR__ast_venom_1/D_VE1_6007E74";
+
+static const ALIGN_ASSET(2) char D_VE1_6010088[] = "__OTR__ast_venom_1/D_VE1_6010088";
+
+static const char D_VE1_601B1E4[] = "__OTR__ast_venom_1/D_VE1_601B1E4";
+
+static const ALIGN_ASSET(2) char aVe1Pillar5Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar5Hitbox";
+
+static const ALIGN_ASSET(2) char D_VE1_601B474[] = "__OTR__ast_venom_1/D_VE1_601B474";
+
+static const ALIGN_ASSET(2) char D_VE1_601B4C4[] = "__OTR__ast_venom_1/D_VE1_601B4C4";
+
+static const ALIGN_ASSET(2) char Ve1Wall1Hitbox[] = "__OTR__ast_venom_1/Ve1Wall1Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1Wall2Hitbox[] = "__OTR__ast_venom_1/aVe1Wall2Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1SceneryWall3Hitbox[] = "__OTR__ast_venom_1/aVe1SceneryWall3Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1HallwayObstacleHitbox[] = "__OTR__ast_venom_1/aVe1HallwayObstacleHitbox";
+
+static const ALIGN_ASSET(2) char aVe1GeneratorHitbox[] = "__OTR__ast_venom_1/aVe1GeneratorHitbox";
+
+static const ALIGN_ASSET(2) char aVe1WatchPostHitbox[] = "__OTR__ast_venom_1/aVe1WatchPostHitbox";
+
+static const ALIGN_ASSET(2) char aVe1TempleEntranceHitbox[] = "__OTR__ast_venom_1/aVe1TempleEntranceHitbox";
+
+static const ALIGN_ASSET(2) char aVe1TempleInterior1Hitbox[] = "__OTR__ast_venom_1/aVe1TempleInterior1Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1TempleInterior2Hitbox[] = "__OTR__ast_venom_1/aVe1TempleInterior2Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1TempleInterior3Hitbox[] = "__OTR__ast_venom_1/aVe1TempleInterior3Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1Pillar1Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar1Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1Pillar2Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar2Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1Pillar3Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar3Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1Pillar4Hitbox[] = "__OTR__ast_venom_1/aVe1Pillar4Hitbox";
+
+static const ALIGN_ASSET(2) char aVe1MonkeyStatueHitbox[] = "__OTR__ast_venom_1/aVe1MonkeyStatueHitbox";
+
+static const ALIGN_ASSET(2) char aVe1EnemyGateHitbox[] = "__OTR__ast_venom_1/aVe1EnemyGateHitbox";
+
diff --git a/include/assets/ast_venom_2.h b/include/assets/ast_venom_2.h
new file mode 100644
index 00000000..1e2880b8
--- /dev/null
+++ b/include/assets/ast_venom_2.h
@@ -0,0 +1,355 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+
+static const ALIGN_ASSET(2) char D_VE2_6000000[] = "__OTR__ast_venom_2/D_VE2_6000000";
+
+static const ALIGN_ASSET(2) char D_VE2_6000A80[] = "__OTR__ast_venom_2/D_VE2_6000A80";
+
+static const ALIGN_ASSET(2) char aVe2TitleCardTex[] = "__OTR__ast_venom_2/aVe2TitleCardTex";
+
+static const ALIGN_ASSET(2) char D_VE2_60020D0[] = "__OTR__ast_venom_2/D_VE2_60020D0";
+
+static const ALIGN_ASSET(2) char D_VE2_6002890[] = "__OTR__ast_venom_2/D_VE2_6002890";
+
+static const ALIGN_ASSET(2) char aAndPathExitDL[] = "__OTR__ast_venom_2/aAndPathExitDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2B98[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2B98";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2C58[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2C58";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2D18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2D18";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2E98[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2E98";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_2F18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_2F18";
+
+static const ALIGN_ASSET(2) char aAndPathIntersectionDL[] = "__OTR__ast_venom_2/aAndPathIntersectionDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_3058[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_3058";
+
+static const ALIGN_ASSET(2) char D_VE2_60030D8[] = "__OTR__ast_venom_2/D_VE2_60030D8";
+
+static const ALIGN_ASSET(2) char D_VE2_60038E0[] = "__OTR__ast_venom_2/D_VE2_60038E0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_3930[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_3930";
+
+static const ALIGN_ASSET(2) char D_VE2_6003970[] = "__OTR__ast_venom_2/D_VE2_6003970";
+
+static const ALIGN_ASSET(2) char aAndPathEntranceDL[] = "__OTR__ast_venom_2/aAndPathEntranceDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4368[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4368";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4468[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4468";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4568[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4568";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4668[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4668";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_4768[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_4768";
+
+static const ALIGN_ASSET(2) char D_VE2_6004888[] = "__OTR__ast_venom_2/D_VE2_6004888";
+
+static const ALIGN_ASSET(2) char D_VE2_6005088[] = "__OTR__ast_venom_2/D_VE2_6005088";
+
+static const ALIGN_ASSET(2) char D_VE2_6005888[] = "__OTR__ast_venom_2/D_VE2_6005888";
+
+static const ALIGN_ASSET(2) char D_VE2_6006088[] = "__OTR__ast_venom_2/D_VE2_6006088";
+
+static const ALIGN_ASSET(2) char aAndPathWallsDL[] = "__OTR__ast_venom_2/aAndPathWallsDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6A18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6A18";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6B18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6B18";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6C18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6C18";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_6D18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_6D18";
+
+static const ALIGN_ASSET(2) char D_VE2_6006E20[] = "__OTR__ast_venom_2/D_VE2_6006E20";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7038[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7038";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7138[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7138";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7238[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7238";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_72F8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_72F8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7498[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7498";
+
+static const ALIGN_ASSET(2) char D_VE2_6007650[] = "__OTR__ast_venom_2/D_VE2_6007650";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7820[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7820";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_79A0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_79A0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7BA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7BA0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7C20[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7C20";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7CA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7CA0";
+
+static const ALIGN_ASSET(2) char aAndLaserEmitterDL[] = "__OTR__ast_venom_2/aAndLaserEmitterDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_7F30[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_7F30";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8030[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8030";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8130[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8130";
+
+static const ALIGN_ASSET(2) char D_VE2_6008170[] = "__OTR__ast_venom_2/D_VE2_6008170";
+
+static const ALIGN_ASSET(2) char aVe2TowerDL[] = "__OTR__ast_venom_2/aVe2TowerDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8568[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8568";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8668[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8668";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8768[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8768";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_8868[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_8868";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_89F8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_89F8";
+
+static const ALIGN_ASSET(2) char D_VE2_6008AF8[] = "__OTR__ast_venom_2/D_VE2_6008AF8";
+
+static const ALIGN_ASSET(2) char aAndBrainWasteDL[] = "__OTR__ast_venom_2/aAndBrainWasteDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_9350[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_9350";
+
+static const ALIGN_ASSET(2) char D_VE2_6009390[] = "__OTR__ast_venom_2/D_VE2_6009390";
+
+static const ALIGN_ASSET(2) char D_VE2_6009B90[] = "__OTR__ast_venom_2/D_VE2_6009B90";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_9CB0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_9CB0";
+
+static const ALIGN_ASSET(2) char D_VE2_6009E80[] = "__OTR__ast_venom_2/D_VE2_6009E80";
+
+static const ALIGN_ASSET(2) char D_VE2_600A680[] = "__OTR__ast_venom_2/D_VE2_600A680";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_AA78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_AA78";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_AC78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_AC78";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_AE78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_AE78";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B078[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B078";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B278[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B278";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B478[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B478";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_B678[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_B678";
+
+static const ALIGN_ASSET(2) char D_VE2_600B708[] = "__OTR__ast_venom_2/D_VE2_600B708";
+
+static const ALIGN_ASSET(2) char D_VE2_600C038[] = "__OTR__ast_venom_2/D_VE2_600C038";
+
+static const ALIGN_ASSET(2) char D_VE2_600C0A4[] = "__OTR__ast_venom_2/D_VE2_600C0A4";
+
+static const ALIGN_ASSET(2) char D_VE2_600C200[] = "__OTR__ast_venom_2/D_VE2_600C200";
+
+static const ALIGN_ASSET(2) char D_VE2_600C2AC[] = "__OTR__ast_venom_2/D_VE2_600C2AC";
+
+static const ALIGN_ASSET(2) char D_VE2_600C2D0[] = "__OTR__ast_venom_2/D_VE2_600C2D0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C320[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C320";
+
+static const ALIGN_ASSET(2) char D_VE2_600C360[] = "__OTR__ast_venom_2/D_VE2_600C360";
+
+static const ALIGN_ASSET(2) char D_VE2_600C560[] = "__OTR__ast_venom_2/D_VE2_600C560";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C5B0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C5B0";
+
+static const ALIGN_ASSET(2) char D_VE2_600C5F0[] = "__OTR__ast_venom_2/D_VE2_600C5F0";
+
+static const ALIGN_ASSET(2) char D_VE2_600C7F0[] = "__OTR__ast_venom_2/D_VE2_600C7F0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C850[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C850";
+
+static const ALIGN_ASSET(2) char D_VE2_600C8F0[] = "__OTR__ast_venom_2/D_VE2_600C8F0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_C970[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_C970";
+
+static const ALIGN_ASSET(2) char D_VE2_600CA50[] = "__OTR__ast_venom_2/D_VE2_600CA50";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_CAD0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_CAD0";
+
+static const ALIGN_ASSET(2) char D_VE2_600CBB0[] = "__OTR__ast_venom_2/D_VE2_600CBB0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_CEA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_CEA0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D090[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D090";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D270[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D270";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D470[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D470";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_D660[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_D660";
+
+static const ALIGN_ASSET(2) char D_VE2_600D7F0[] = "__OTR__ast_venom_2/D_VE2_600D7F0";
+
+static const ALIGN_ASSET(2) char D_VE2_600DFF0[] = "__OTR__ast_venom_2/D_VE2_600DFF0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E1A8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E1A8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E238[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E238";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E348[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E348";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E378[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E378";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E3A8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E3A8";
+
+static const ALIGN_ASSET(2) char D_VE2_600E3E0[] = "__OTR__ast_venom_2/D_VE2_600E3E0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E598[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E598";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E658[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E658";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E6E8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E6E8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E718[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E718";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E748[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E748";
+
+static const ALIGN_ASSET(2) char D_VE2_600E780[] = "__OTR__ast_venom_2/D_VE2_600E780";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_E938[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_E938";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EA18[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EA18";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EAA8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EAA8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EAD8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EAD8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EB08[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EB08";
+
+static const ALIGN_ASSET(2) char D_VE2_600EB40[] = "__OTR__ast_venom_2/D_VE2_600EB40";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_ECF8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_ECF8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EDC8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EDC8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EE58[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EE58";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EE88[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EE88";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_EEB8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_EEB8";
+
+static const ALIGN_ASSET(2) char D_VE2_600EEF0[] = "__OTR__ast_venom_2/D_VE2_600EEF0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F0A8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F0A8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F168[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F168";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F1F8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F1F8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F228[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F228";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F258[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F258";
+
+static const ALIGN_ASSET(2) char D_VE2_600F290[] = "__OTR__ast_venom_2/D_VE2_600F290";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F448[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F448";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F548[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F548";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F5D8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F5D8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F608[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F608";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F638[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F638";
+
+static const ALIGN_ASSET(2) char D_VE2_600F670[] = "__OTR__ast_venom_2/D_VE2_600F670";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_F6C0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_F6C0";
+
+static const ALIGN_ASSET(2) char D_VE2_600F700[] = "__OTR__ast_venom_2/D_VE2_600F700";
+
+static const ALIGN_ASSET(2) char D_VE2_6010700[] = "__OTR__ast_venom_2/D_VE2_6010700";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_107C8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_107C8";
+
+static const ALIGN_ASSET(2) char aVe2MountainDL[] = "__OTR__ast_venom_2/aVe2MountainDL";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_10A40[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_10A40";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_10C20[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_10C20";
+
+static const ALIGN_ASSET(2) char D_VE2_6010CA0[] = "__OTR__ast_venom_2/D_VE2_6010CA0";
+
+static const ALIGN_ASSET(2) char D_VE2_60114A0[] = "__OTR__ast_venom_2/D_VE2_60114A0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_gfx_11CA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_gfx_11CA0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12198[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12198";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12398[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12398";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12598[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12598";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12778[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12778";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12978[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12978";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12B78[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12B78";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12CA8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12CA8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_12EA8[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_12EA8";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13088[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13088";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13288[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13288";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13468[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13468";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13648[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13648";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13848[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13848";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_13A08[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_13A08";
+
+static const ALIGN_ASSET(2) char D_VE2_6013AF8[] = "__OTR__ast_venom_2/D_VE2_6013AF8";
+
+static const ALIGN_ASSET(2) char aVe2AndrossGateAnim[] = "__OTR__ast_venom_2/aVe2AndrossGateAnim";
+
+static const ALIGN_ASSET(2) char aVe2AndrossGateSkel[] = "__OTR__ast_venom_2/aVe2AndrossGateSkel";
+
+static const ALIGN_ASSET(2) char aVe2BaseAnim[] = "__OTR__ast_venom_2/aVe2BaseAnim";
+
+static const ALIGN_ASSET(2) char aVe2BaseSkel[] = "__OTR__ast_venom_2/aVe2BaseSkel";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_gfx_149F0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_gfx_149F0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14A98[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14A98";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14B58[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14B58";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_gfx_14BA0[] = "__OTR__ast_venom_2/ast_venom_2_seg6_gfx_14BA0";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14C48[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14C48";
+
+static const ALIGN_ASSET(2) char ast_venom_2_seg6_vtx_14D08[] = "__OTR__ast_venom_2/ast_venom_2_seg6_vtx_14D08";
+
+static const ALIGN_ASSET(2) char D_VE2_6014D50[] = "__OTR__ast_venom_2/D_VE2_6014D50";
+
+static const ALIGN_ASSET(2) char D_VE2_6014D94[] = "__OTR__ast_venom_2/D_VE2_6014D94";
+
+static const ALIGN_ASSET(2) char D_VE2_6014FEC[] = "__OTR__ast_venom_2/D_VE2_6014FEC";
+
+static const ALIGN_ASSET(2) char D_VE2_6016374[] = "__OTR__ast_venom_2/D_VE2_6016374";
+
+static const ALIGN_ASSET(2) char aVe2TowerHitbox[] = "__OTR__ast_venom_2/aVe2TowerHitbox";
+
+static const ALIGN_ASSET(2) char aVe2BaseHitbox[] = "__OTR__ast_venom_2/aVe2BaseHitbox";
+
+static const ALIGN_ASSET(2) char aVe2MountainHitbox[] = "__OTR__ast_venom_2/aVe2MountainHitbox";
+
diff --git a/include/assets/ast_versus.h b/include/assets/ast_versus.h
new file mode 100644
index 00000000..4ed8690a
--- /dev/null
+++ b/include/assets/ast_versus.h
@@ -0,0 +1,1050 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char D_versus_3000000[] = "__OTR__ast_versus/D_versus_3000000";
+
+static const ALIGN_ASSET(2) char D_versus_3000080[] = "__OTR__ast_versus/D_versus_3000080";
+
+static const ALIGN_ASSET(2) char D_versus_30000A0[] = "__OTR__ast_versus/D_versus_30000A0";
+
+static const ALIGN_ASSET(2) char D_versus_3000120[] = "__OTR__ast_versus/D_versus_3000120";
+
+static const ALIGN_ASSET(2) char D_versus_3000140[] = "__OTR__ast_versus/D_versus_3000140";
+
+static const ALIGN_ASSET(2) char D_versus_30001C0[] = "__OTR__ast_versus/D_versus_30001C0";
+
+static const ALIGN_ASSET(2) char D_versus_30001E0[] = "__OTR__ast_versus/D_versus_30001E0";
+
+static const ALIGN_ASSET(2) char D_versus_3000380[] = "__OTR__ast_versus/D_versus_3000380";
+
+static const ALIGN_ASSET(2) char D_versus_30003A0[] = "__OTR__ast_versus/D_versus_30003A0";
+
+static const ALIGN_ASSET(2) char D_versus_30004E0[] = "__OTR__ast_versus/D_versus_30004E0";
+
+static const ALIGN_ASSET(2) char D_versus_3000510[] = "__OTR__ast_versus/D_versus_3000510";
+
+static const ALIGN_ASSET(2) char D_versus_30006A0[] = "__OTR__ast_versus/D_versus_30006A0";
+
+static const ALIGN_ASSET(2) char D_versus_30006D0[] = "__OTR__ast_versus/D_versus_30006D0";
+
+static const ALIGN_ASSET(2) char D_versus_3000810[] = "__OTR__ast_versus/D_versus_3000810";
+
+static const ALIGN_ASSET(2) char D_versus_3000840[] = "__OTR__ast_versus/D_versus_3000840";
+
+static const ALIGN_ASSET(2) char D_versus_30008E0[] = "__OTR__ast_versus/D_versus_30008E0";
+
+static const ALIGN_ASSET(2) char D_versus_3000900[] = "__OTR__ast_versus/D_versus_3000900";
+
+static const ALIGN_ASSET(2) char D_versus_30009F0[] = "__OTR__ast_versus/D_versus_30009F0";
+
+static const ALIGN_ASSET(2) char D_versus_3000A10[] = "__OTR__ast_versus/D_versus_3000A10";
+
+static const ALIGN_ASSET(2) char D_versus_3000B00[] = "__OTR__ast_versus/D_versus_3000B00";
+
+static const ALIGN_ASSET(2) char aVsBoostGaugeFrameTex[] = "__OTR__ast_versus/aVsBoostGaugeFrameTex";
+
+static const ALIGN_ASSET(2) char aVsShieldGaugeFrameTex[] = "__OTR__ast_versus/aVsShieldGaugeFrameTex";
+
+static const ALIGN_ASSET(2) char aVsStarTex[] = "__OTR__ast_versus/aVsStarTex";
+
+static const ALIGN_ASSET(2) char D_versus_3001420[] = "__OTR__ast_versus/D_versus_3001420";
+
+static const ALIGN_ASSET(2) char D_versus_3003E20[] = "__OTR__ast_versus/D_versus_3003E20";
+
+static const ALIGN_ASSET(2) char D_versus_3004010[] = "__OTR__ast_versus/D_versus_3004010";
+
+static const ALIGN_ASSET(2) char D_versus_3004D58[] = "__OTR__ast_versus/D_versus_3004D58";
+
+static const ALIGN_ASSET(2) char D_versus_3004F60[] = "__OTR__ast_versus/D_versus_3004F60";
+
+static const ALIGN_ASSET(2) char D_versus_3005E38[] = "__OTR__ast_versus/D_versus_3005E38";
+
+static const ALIGN_ASSET(2) char D_versus_3006040[] = "__OTR__ast_versus/D_versus_3006040";
+
+static const ALIGN_ASSET(2) char D_versus_3006A68[] = "__OTR__ast_versus/D_versus_3006A68";
+
+static const ALIGN_ASSET(2) char D_versus_3006C60[] = "__OTR__ast_versus/D_versus_3006C60";
+
+static const ALIGN_ASSET(2) char D_versus_3007500[] = "__OTR__ast_versus/D_versus_3007500";
+
+static const ALIGN_ASSET(2) char D_versus_30076C0[] = "__OTR__ast_versus/D_versus_30076C0";
+
+static const ALIGN_ASSET(2) char D_versus_3008598[] = "__OTR__ast_versus/D_versus_3008598";
+
+static const ALIGN_ASSET(2) char D_versus_30087A0[] = "__OTR__ast_versus/D_versus_30087A0";
+
+static const ALIGN_ASSET(2) char D_versus_3008DE0[] = "__OTR__ast_versus/D_versus_3008DE0";
+
+static const ALIGN_ASSET(2) char D_versus_3008EC0[] = "__OTR__ast_versus/D_versus_3008EC0";
+
+static const ALIGN_ASSET(2) char D_versus_30098C0[] = "__OTR__ast_versus/D_versus_30098C0";
+
+static const ALIGN_ASSET(2) char D_versus_3009990[] = "__OTR__ast_versus/D_versus_3009990";
+
+static const ALIGN_ASSET(2) char D_versus_300A390[] = "__OTR__ast_versus/D_versus_300A390";
+
+static const ALIGN_ASSET(2) char D_versus_300A470[] = "__OTR__ast_versus/D_versus_300A470";
+
+static const ALIGN_ASSET(2) char D_versus_300B218[] = "__OTR__ast_versus/D_versus_300B218";
+
+static const ALIGN_ASSET(2) char D_versus_300B3F0[] = "__OTR__ast_versus/D_versus_300B3F0";
+
+static const ALIGN_ASSET(2) char D_versus_300C458[] = "__OTR__ast_versus/D_versus_300C458";
+
+static const ALIGN_ASSET(2) char D_versus_300C660[] = "__OTR__ast_versus/D_versus_300C660";
+
+static const ALIGN_ASSET(2) char D_versus_300D150[] = "__OTR__ast_versus/D_versus_300D150";
+
+static const ALIGN_ASSET(2) char aVsBoostGaugeCoolTex[] = "__OTR__ast_versus/aVsBoostGaugeCoolTex";
+
+static const ALIGN_ASSET(2) char aVsBoostGaugeCoolTLUT[] = "__OTR__ast_versus/aVsBoostGaugeCoolTLUT";
+
+static const ALIGN_ASSET(2) char aVsBoostGaugeOverheatTex[] = "__OTR__ast_versus/aVsBoostGaugeOverheatTex";
+
+static const ALIGN_ASSET(2) char aVsBoostGaugeOverheatTLUT[] = "__OTR__ast_versus/aVsBoostGaugeOverheatTLUT";
+
+static const ALIGN_ASSET(2) char aVsShieldGaugeTex[] = "__OTR__ast_versus/aVsShieldGaugeTex";
+
+static const ALIGN_ASSET(2) char aVsShieldGaugeTLUT[] = "__OTR__ast_versus/aVsShieldGaugeTLUT";
+
+static const ALIGN_ASSET(2) char D_versus_300D550[] = "__OTR__ast_versus/D_versus_300D550";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_D860[] = "__OTR__ast_versus/ast_versus_seg3_vtx_D860";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_D970[] = "__OTR__ast_versus/ast_versus_seg3_vtx_D970";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_D9F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_D9F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DA20[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DA20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DAC0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DAC0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DCB0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DCB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DD40[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DD40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DDD0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DDD0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DE20[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DE20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_DE50[] = "__OTR__ast_versus/ast_versus_seg3_vtx_DE50";
+
+static const ALIGN_ASSET(2) char D_versus_300DE80[] = "__OTR__ast_versus/D_versus_300DE80";
+
+static const ALIGN_ASSET(2) char D_versus_300E080[] = "__OTR__ast_versus/D_versus_300E080";
+
+static const ALIGN_ASSET(2) char D_versus_300E280[] = "__OTR__ast_versus/D_versus_300E280";
+
+static const ALIGN_ASSET(2) char D_versus_300E680[] = "__OTR__ast_versus/D_versus_300E680";
+
+static const ALIGN_ASSET(2) char D_versus_300E880[] = "__OTR__ast_versus/D_versus_300E880";
+
+static const ALIGN_ASSET(2) char D_versus_300EA80[] = "__OTR__ast_versus/D_versus_300EA80";
+
+static const ALIGN_ASSET(2) char D_versus_300EC80[] = "__OTR__ast_versus/D_versus_300EC80";
+
+static const ALIGN_ASSET(2) char D_versus_300EE80[] = "__OTR__ast_versus/D_versus_300EE80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F150[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F150";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F350[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F350";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F460[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F460";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F4E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F4E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F510[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F510";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F5B0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F5B0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F770[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F770";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F800[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F800";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_F850[] = "__OTR__ast_versus/ast_versus_seg3_gfx_F850";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F9C0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F9C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_F9F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_F9F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_FA60[] = "__OTR__ast_versus/ast_versus_seg3_vtx_FA60";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_FAF0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_FAF0";
+
+static const ALIGN_ASSET(2) char aVsLandmasterModelDL[] = "__OTR__ast_versus/aVsLandmasterModelDL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_FE90[] = "__OTR__ast_versus/ast_versus_seg3_vtx_FE90";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10080[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10080";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10180[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10180";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_101B0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_101B0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_101E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_101E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10280[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10280";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_102E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_102E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_103E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_103E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10560[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10560";
+
+static const ALIGN_ASSET(2) char D_versus_3010690[] = "__OTR__ast_versus/D_versus_3010690";
+
+static const ALIGN_ASSET(2) char D_versus_3010890[] = "__OTR__ast_versus/D_versus_3010890";
+
+static const ALIGN_ASSET(2) char D_versus_3010A90[] = "__OTR__ast_versus/D_versus_3010A90";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10D80[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10D80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10F70[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10F70";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_10FA0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_10FA0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11020[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11020";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11050[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11050";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_110F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_110F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_112F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_112F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11350[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11350";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_113E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_113E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11440[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11440";
+
+static const ALIGN_ASSET(2) char D_versus_3011470[] = "__OTR__ast_versus/D_versus_3011470";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11760[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11760";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11960[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11960";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11990[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11990";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11A10[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11A10";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11A40[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11A40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11AE0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11AE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11CC0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11CC0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11D20[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11D20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11DB0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11DB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11E10[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11E10";
+
+static const ALIGN_ASSET(2) char D_versus_3011E40[] = "__OTR__ast_versus/D_versus_3011E40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_11E90[] = "__OTR__ast_versus/ast_versus_seg3_vtx_11E90";
+
+static const ALIGN_ASSET(2) char D_versus_3011ED0[] = "__OTR__ast_versus/D_versus_3011ED0";
+
+static const ALIGN_ASSET(2) char aVsSpaceJunk3DL[] = "__OTR__ast_versus/aVsSpaceJunk3DL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_131A0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_131A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13220[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13220";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_132E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_132E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13440[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13440";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_134C0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_134C0";
+
+static const ALIGN_ASSET(2) char aVsSpaceJunk2DL[] = "__OTR__ast_versus/aVsSpaceJunk2DL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13640[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13640";
+
+static const ALIGN_ASSET(2) char aVsSpaceJunk1DL[] = "__OTR__ast_versus/aVsSpaceJunk1DL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13AD0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13AD0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13B50[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13B50";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13C50[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13C50";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13CD0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13CD0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13DD0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13DD0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_13E90[] = "__OTR__ast_versus/ast_versus_seg3_vtx_13E90";
+
+static const ALIGN_ASSET(2) char D_versus_3013F50[] = "__OTR__ast_versus/D_versus_3013F50";
+
+static const ALIGN_ASSET(2) char D_versus_3014350[] = "__OTR__ast_versus/D_versus_3014350";
+
+static const ALIGN_ASSET(2) char D_versus_3014510[] = "__OTR__ast_versus/D_versus_3014510";
+
+static const ALIGN_ASSET(2) char D_versus_3014550[] = "__OTR__ast_versus/D_versus_3014550";
+
+static const ALIGN_ASSET(2) char D_versus_3014590[] = "__OTR__ast_versus/D_versus_3014590";
+
+static const ALIGN_ASSET(2) char D_versus_3014690[] = "__OTR__ast_versus/D_versus_3014690";
+
+static const ALIGN_ASSET(2) char D_versus_30146B0[] = "__OTR__ast_versus/D_versus_30146B0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_14700[] = "__OTR__ast_versus/ast_versus_seg3_vtx_14700";
+
+static const ALIGN_ASSET(2) char D_versus_3014740[] = "__OTR__ast_versus/D_versus_3014740";
+
+static const ALIGN_ASSET(2) char D_versus_3015740[] = "__OTR__ast_versus/D_versus_3015740";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_157A8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_157A8";
+
+static const ALIGN_ASSET(2) char D_versus_3015898[] = "__OTR__ast_versus/D_versus_3015898";
+
+static const ALIGN_ASSET(2) char D_versus_30160A0[] = "__OTR__ast_versus/D_versus_30160A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_16168[] = "__OTR__ast_versus/ast_versus_seg3_vtx_16168";
+
+static const ALIGN_ASSET(2) char D_versus_30162F8[] = "__OTR__ast_versus/D_versus_30162F8";
+
+static const ALIGN_ASSET(2) char aVsKaFlBaseDL[] = "__OTR__ast_versus/aVsKaFlBaseDL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_16C00[] = "__OTR__ast_versus/ast_versus_seg3_vtx_16C00";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_16D00[] = "__OTR__ast_versus/ast_versus_seg3_vtx_16D00";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_16D40[] = "__OTR__ast_versus/ast_versus_seg3_vtx_16D40";
+
+static const ALIGN_ASSET(2) char D_versus_3016DC0[] = "__OTR__ast_versus/D_versus_3016DC0";
+
+static const ALIGN_ASSET(2) char D_versus_3016FC0[] = "__OTR__ast_versus/D_versus_3016FC0";
+
+static const ALIGN_ASSET(2) char D_versus_30171C0[] = "__OTR__ast_versus/D_versus_30171C0";
+
+static const ALIGN_ASSET(2) char aVsPyramid1DL[] = "__OTR__ast_versus/aVsPyramid1DL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_17420[] = "__OTR__ast_versus/ast_versus_seg3_vtx_17420";
+
+static const ALIGN_ASSET(2) char aVsPyramid2DL[] = "__OTR__ast_versus/aVsPyramid2DL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_17540[] = "__OTR__ast_versus/ast_versus_seg3_vtx_17540";
+
+static const ALIGN_ASSET(2) char aVsBuildingDL[] = "__OTR__ast_versus/aVsBuildingDL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_176C0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_176C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_177C0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_177C0";
+
+static const ALIGN_ASSET(2) char D_versus_3017800[] = "__OTR__ast_versus/D_versus_3017800";
+
+static const ALIGN_ASSET(2) char D_versus_3018000[] = "__OTR__ast_versus/D_versus_3018000";
+
+static const ALIGN_ASSET(2) char D_versus_3018800[] = "__OTR__ast_versus/D_versus_3018800";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_18960[] = "__OTR__ast_versus/ast_versus_seg3_vtx_18960";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_189E0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_189E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_18AE0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_18AE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_18BA0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_18BA0";
+
+static const ALIGN_ASSET(2) char D_versus_3018D60[] = "__OTR__ast_versus/D_versus_3018D60";
+
+static const ALIGN_ASSET(2) char D_versus_3019560[] = "__OTR__ast_versus/D_versus_3019560";
+
+static const ALIGN_ASSET(2) char D_versus_3019D60[] = "__OTR__ast_versus/D_versus_3019D60";
+
+static const ALIGN_ASSET(2) char D_versus_301A560[] = "__OTR__ast_versus/D_versus_301A560";
+
+static const ALIGN_ASSET(2) char D_versus_301AD60[] = "__OTR__ast_versus/D_versus_301AD60";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1ADB8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1ADB8";
+
+static const ALIGN_ASSET(2) char D_versus_301ADE8[] = "__OTR__ast_versus/D_versus_301ADE8";
+
+static const ALIGN_ASSET(2) char D_versus_301AEF0[] = "__OTR__ast_versus/D_versus_301AEF0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1AF48[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1AF48";
+
+static const ALIGN_ASSET(2) char D_versus_301AF78[] = "__OTR__ast_versus/D_versus_301AF78";
+
+static const ALIGN_ASSET(2) char aVsArchDL[] = "__OTR__ast_versus/aVsArchDL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1B138[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1B138";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1B338[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1B338";
+
+static const ALIGN_ASSET(2) char D_versus_301B438[] = "__OTR__ast_versus/D_versus_301B438";
+
+static const ALIGN_ASSET(2) char D_versus_301B640[] = "__OTR__ast_versus/D_versus_301B640";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1B698[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1B698";
+
+static const ALIGN_ASSET(2) char D_versus_301B6E0[] = "__OTR__ast_versus/D_versus_301B6E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1B738[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1B738";
+
+static const ALIGN_ASSET(2) char D_versus_301B768[] = "__OTR__ast_versus/D_versus_301B768";
+
+static const ALIGN_ASSET(2) char D_versus_301C0A4[] = "__OTR__ast_versus/D_versus_301C0A4";
+
+static const ALIGN_ASSET(2) char D_versus_301C3A8[] = "__OTR__ast_versus/D_versus_301C3A8";
+
+static const ALIGN_ASSET(2) char aVsOnFootFalcoSkel[] = "__OTR__ast_versus/aVsOnFootFalcoSkel";
+
+static const ALIGN_ASSET(2) char D_versus_301C79C[] = "__OTR__ast_versus/D_versus_301C79C";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_1C7B0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_1C7B0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1C880[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1C880";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1C910[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1C910";
+
+static const ALIGN_ASSET(2) char D_versus_301C9B0[] = "__OTR__ast_versus/D_versus_301C9B0";
+
+static const ALIGN_ASSET(2) char D_versus_301CCE4[] = "__OTR__ast_versus/D_versus_301CCE4";
+
+static const ALIGN_ASSET(2) char D_versus_301CFEC[] = "__OTR__ast_versus/D_versus_301CFEC";
+
+static const ALIGN_ASSET(2) char aVsOnFootFoxSkel[] = "__OTR__ast_versus/aVsOnFootFoxSkel";
+
+static const ALIGN_ASSET(2) char D_versus_301D3DC[] = "__OTR__ast_versus/D_versus_301D3DC";
+
+static const ALIGN_ASSET(2) char D_versus_301D568[] = "__OTR__ast_versus/D_versus_301D568";
+
+static const ALIGN_ASSET(2) char D_versus_301D888[] = "__OTR__ast_versus/D_versus_301D888";
+
+static const ALIGN_ASSET(2) char aVsOnFootPeppySkel[] = "__OTR__ast_versus/aVsOnFootPeppySkel";
+
+static const ALIGN_ASSET(2) char D_versus_301DD6C[] = "__OTR__ast_versus/D_versus_301DD6C";
+
+static const ALIGN_ASSET(2) char D_versus_301DEA4[] = "__OTR__ast_versus/D_versus_301DEA4";
+
+static const ALIGN_ASSET(2) char D_versus_301E19C[] = "__OTR__ast_versus/D_versus_301E19C";
+
+static const ALIGN_ASSET(2) char aVsOnFootSlippySkel[] = "__OTR__ast_versus/aVsOnFootSlippySkel";
+
+static const ALIGN_ASSET(2) char D_versus_301E560[] = "__OTR__ast_versus/D_versus_301E560";
+
+static const ALIGN_ASSET(2) char D_versus_301E570[] = "__OTR__ast_versus/D_versus_301E570";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1E5C8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1E5C8";
+
+static const ALIGN_ASSET(2) char D_versus_301E5F8[] = "__OTR__ast_versus/D_versus_301E5F8";
+
+static const ALIGN_ASSET(2) char D_versus_301E700[] = "__OTR__ast_versus/D_versus_301E700";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1E758[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1E758";
+
+static const ALIGN_ASSET(2) char D_versus_301E788[] = "__OTR__ast_versus/D_versus_301E788";
+
+static const ALIGN_ASSET(2) char D_versus_301E990[] = "__OTR__ast_versus/D_versus_301E990";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1E9E8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1E9E8";
+
+static const ALIGN_ASSET(2) char D_versus_301EA18[] = "__OTR__ast_versus/D_versus_301EA18";
+
+static const ALIGN_ASSET(2) char D_versus_301EC20[] = "__OTR__ast_versus/D_versus_301EC20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1EC78[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1EC78";
+
+static const ALIGN_ASSET(2) char D_versus_301ECA8[] = "__OTR__ast_versus/D_versus_301ECA8";
+
+static const ALIGN_ASSET(2) char D_versus_301EEB0[] = "__OTR__ast_versus/D_versus_301EEB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1EF08[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1EF08";
+
+static const ALIGN_ASSET(2) char D_versus_301EF38[] = "__OTR__ast_versus/D_versus_301EF38";
+
+static const ALIGN_ASSET(2) char aVsLandmasterCanonDL[] = "__OTR__ast_versus/aVsLandmasterCanonDL";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1F208[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1F208";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1F278[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1F278";
+
+static const ALIGN_ASSET(2) char D_versus_301F2E0[] = "__OTR__ast_versus/D_versus_301F2E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1F338[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1F338";
+
+static const ALIGN_ASSET(2) char D_versus_301F368[] = "__OTR__ast_versus/D_versus_301F368";
+
+static const ALIGN_ASSET(2) char D_versus_301F570[] = "__OTR__ast_versus/D_versus_301F570";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1F5C8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1F5C8";
+
+static const ALIGN_ASSET(2) char D_versus_301F5F8[] = "__OTR__ast_versus/D_versus_301F5F8";
+
+static const ALIGN_ASSET(2) char D_versus_301F800[] = "__OTR__ast_versus/D_versus_301F800";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1F858[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1F858";
+
+static const ALIGN_ASSET(2) char D_versus_301F888[] = "__OTR__ast_versus/D_versus_301F888";
+
+static const ALIGN_ASSET(2) char D_versus_301FA90[] = "__OTR__ast_versus/D_versus_301FA90";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1FAE8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1FAE8";
+
+static const ALIGN_ASSET(2) char D_versus_301FB18[] = "__OTR__ast_versus/D_versus_301FB18";
+
+static const ALIGN_ASSET(2) char D_versus_301FD20[] = "__OTR__ast_versus/D_versus_301FD20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_1FD78[] = "__OTR__ast_versus/ast_versus_seg3_vtx_1FD78";
+
+static const ALIGN_ASSET(2) char D_versus_301FDA8[] = "__OTR__ast_versus/D_versus_301FDA8";
+
+static const ALIGN_ASSET(2) char D_versus_301FFB0[] = "__OTR__ast_versus/D_versus_301FFB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_20008[] = "__OTR__ast_versus/ast_versus_seg3_vtx_20008";
+
+static const ALIGN_ASSET(2) char D_versus_3020048[] = "__OTR__ast_versus/D_versus_3020048";
+
+static const ALIGN_ASSET(2) char D_versus_3020850[] = "__OTR__ast_versus/D_versus_3020850";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_208A8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_208A8";
+
+static const ALIGN_ASSET(2) char D_versus_30208D8[] = "__OTR__ast_versus/D_versus_30208D8";
+
+static const ALIGN_ASSET(2) char D_versus_3020AE0[] = "__OTR__ast_versus/D_versus_3020AE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_20B38[] = "__OTR__ast_versus/ast_versus_seg3_vtx_20B38";
+
+static const ALIGN_ASSET(2) char D_versus_3020B78[] = "__OTR__ast_versus/D_versus_3020B78";
+
+static const ALIGN_ASSET(2) char D_versus_3020D80[] = "__OTR__ast_versus/D_versus_3020D80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_20DD8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_20DD8";
+
+static const ALIGN_ASSET(2) char D_versus_3020E18[] = "__OTR__ast_versus/D_versus_3020E18";
+
+static const ALIGN_ASSET(2) char D_versus_3021620[] = "__OTR__ast_versus/D_versus_3021620";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_21678[] = "__OTR__ast_versus/ast_versus_seg3_vtx_21678";
+
+static const ALIGN_ASSET(2) char D_versus_30216B8[] = "__OTR__ast_versus/D_versus_30216B8";
+
+static const ALIGN_ASSET(2) char D_versus_30218C0[] = "__OTR__ast_versus/D_versus_30218C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_21918[] = "__OTR__ast_versus/ast_versus_seg3_vtx_21918";
+
+static const ALIGN_ASSET(2) char D_versus_3021958[] = "__OTR__ast_versus/D_versus_3021958";
+
+static const ALIGN_ASSET(2) char D_versus_3022160[] = "__OTR__ast_versus/D_versus_3022160";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_221B8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_221B8";
+
+static const ALIGN_ASSET(2) char D_versus_30221E8[] = "__OTR__ast_versus/D_versus_30221E8";
+
+static const ALIGN_ASSET(2) char D_versus_30223F0[] = "__OTR__ast_versus/D_versus_30223F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22450[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22450";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_22490[] = "__OTR__ast_versus/ast_versus_seg3_gfx_22490";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_224F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_224F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_22530[] = "__OTR__ast_versus/ast_versus_seg3_gfx_22530";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_225A0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_225A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_22600[] = "__OTR__ast_versus/ast_versus_seg3_gfx_22600";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22670[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22670";
+
+static const ALIGN_ASSET(2) char D_versus_30226D0[] = "__OTR__ast_versus/D_versus_30226D0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_22750[] = "__OTR__ast_versus/ast_versus_seg3_gfx_22750";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_227B0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_227B0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_227F0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_227F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22850[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22850";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_22890[] = "__OTR__ast_versus/ast_versus_seg3_gfx_22890";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22A40[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22A40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22B60[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22B60";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22C30[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22C30";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_22CB0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_22CB0";
+
+static const ALIGN_ASSET(2) char D_versus_3022DE0[] = "__OTR__ast_versus/D_versus_3022DE0";
+
+static const ALIGN_ASSET(2) char D_versus_3022E60[] = "__OTR__ast_versus/D_versus_3022E60";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_23060[] = "__OTR__ast_versus/ast_versus_seg3_gfx_23060";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23138[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23138";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_231B8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_231B8";
+
+static const ALIGN_ASSET(2) char D_versus_3023238[] = "__OTR__ast_versus/D_versus_3023238";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_23A40[] = "__OTR__ast_versus/ast_versus_seg3_gfx_23A40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23AA8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23AA8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_23B00[] = "__OTR__ast_versus/ast_versus_seg3_gfx_23B00";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23B68[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23B68";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_23BC0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_23BC0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23C28[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23C28";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_23C80[] = "__OTR__ast_versus/ast_versus_seg3_gfx_23C80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23DE8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23DE8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23E18[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23E18";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23E88[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23E88";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_23F18[] = "__OTR__ast_versus/ast_versus_seg3_vtx_23F18";
+
+static const ALIGN_ASSET(2) char D_versus_3023F68[] = "__OTR__ast_versus/D_versus_3023F68";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_23FF0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_23FF0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24050[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24050";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24090[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24090";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_240F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_240F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24130[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24130";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_241A0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_241A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24200[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24200";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24270[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24270";
+
+static const ALIGN_ASSET(2) char D_versus_30242D0[] = "__OTR__ast_versus/D_versus_30242D0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24350[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24350";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_243B0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_243B0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_243F0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_243F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24450[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24450";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24490[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24490";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_244E8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_244E8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24520[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24520";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24578[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24578";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_245C0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_245C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24618[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24618";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24660[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24660";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_246B8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_246B8";
+
+static const ALIGN_ASSET(2) char D_versus_30246E8[] = "__OTR__ast_versus/D_versus_30246E8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24770[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24770";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_248C0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_248C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24A40[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24A40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24AC0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24AC0";
+
+static const ALIGN_ASSET(2) char D_versus_3024C30[] = "__OTR__ast_versus/D_versus_3024C30";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_24E30[] = "__OTR__ast_versus/ast_versus_seg3_gfx_24E30";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_24F68[] = "__OTR__ast_versus/ast_versus_seg3_vtx_24F68";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_25068[] = "__OTR__ast_versus/ast_versus_seg3_vtx_25068";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_250B8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_250B8";
+
+static const ALIGN_ASSET(2) char D_versus_3025138[] = "__OTR__ast_versus/D_versus_3025138";
+
+static const ALIGN_ASSET(2) char D_versus_3025938[] = "__OTR__ast_versus/D_versus_3025938";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_259C0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_259C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_25A30[] = "__OTR__ast_versus/ast_versus_seg3_vtx_25A30";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_25A90[] = "__OTR__ast_versus/ast_versus_seg3_gfx_25A90";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_25B08[] = "__OTR__ast_versus/ast_versus_seg3_vtx_25B08";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_25B80[] = "__OTR__ast_versus/ast_versus_seg3_gfx_25B80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_25BF8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_25BF8";
+
+static const ALIGN_ASSET(2) char D_versus_3025C68[] = "__OTR__ast_versus/D_versus_3025C68";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_25E70[] = "__OTR__ast_versus/ast_versus_seg3_gfx_25E70";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_25ED0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_25ED0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_25F10[] = "__OTR__ast_versus/ast_versus_seg3_gfx_25F10";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_25F80[] = "__OTR__ast_versus/ast_versus_seg3_vtx_25F80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_25FE0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_25FE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26050[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26050";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_260C0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_260C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26130[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26130";
+
+static const ALIGN_ASSET(2) char D_versus_30261A0[] = "__OTR__ast_versus/D_versus_30261A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_26220[] = "__OTR__ast_versus/ast_versus_seg3_gfx_26220";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26290[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26290";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_262F0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_262F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26350[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26350";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_26390[] = "__OTR__ast_versus/ast_versus_seg3_gfx_26390";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26668[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26668";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_266F8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_266F8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26728[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26728";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26798[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26798";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_267F8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_267F8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26828[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26828";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26898[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26898";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26988[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26988";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_26A08[] = "__OTR__ast_versus/ast_versus_seg3_vtx_26A08";
+
+static const ALIGN_ASSET(2) char D_versus_3026A38[] = "__OTR__ast_versus/D_versus_3026A38";
+
+static const ALIGN_ASSET(2) char D_versus_3026AB8[] = "__OTR__ast_versus/D_versus_3026AB8";
+
+static const ALIGN_ASSET(2) char D_versus_3026B38[] = "__OTR__ast_versus/D_versus_3026B38";
+
+static const ALIGN_ASSET(2) char D_versus_3026BB8[] = "__OTR__ast_versus/D_versus_3026BB8";
+
+static const ALIGN_ASSET(2) char D_versus_3026C38[] = "__OTR__ast_versus/D_versus_3026C38";
+
+static const ALIGN_ASSET(2) char D_versus_3026CB8[] = "__OTR__ast_versus/D_versus_3026CB8";
+
+static const ALIGN_ASSET(2) char D_versus_3026DB8[] = "__OTR__ast_versus/D_versus_3026DB8";
+
+static const ALIGN_ASSET(2) char D_versus_3026EB8[] = "__OTR__ast_versus/D_versus_3026EB8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_270C0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_270C0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27188[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27188";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_271F8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_271F8";
+
+static const ALIGN_ASSET(2) char D_versus_3027268[] = "__OTR__ast_versus/D_versus_3027268";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_27A70[] = "__OTR__ast_versus/ast_versus_seg3_gfx_27A70";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27AE8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27AE8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_27BE0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_27BE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27C50[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27C50";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_27CB0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_27CB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27D20[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27D20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_27D80[] = "__OTR__ast_versus/ast_versus_seg3_gfx_27D80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27EF0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27EF0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27F30[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27F30";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_27FC0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_27FC0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28050[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28050";
+
+static const ALIGN_ASSET(2) char D_versus_3028130[] = "__OTR__ast_versus/D_versus_3028130";
+
+static const ALIGN_ASSET(2) char D_versus_3028230[] = "__OTR__ast_versus/D_versus_3028230";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28630[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28630";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28690[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28690";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_286D0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_286D0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28730[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28730";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28770[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28770";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_287F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_287F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28870[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28870";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_288F0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_288F0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28970[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28970";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_289D0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_289D0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28A10[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28A10";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28A70[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28A70";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28AB0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28AB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28B80[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28B80";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28BC0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28BC0";
+
+static const ALIGN_ASSET(2) char D_versus_3028C60[] = "__OTR__ast_versus/D_versus_3028C60";
+
+static const ALIGN_ASSET(2) char D_versus_3028CE0[] = "__OTR__ast_versus/D_versus_3028CE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_28EE0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_28EE0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_28FC0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_28FC0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29060[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29060";
+
+static const ALIGN_ASSET(2) char D_versus_3029160[] = "__OTR__ast_versus/D_versus_3029160";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_291E0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_291E0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_292A8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_292A8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29318[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29318";
+
+static const ALIGN_ASSET(2) char D_versus_3029388[] = "__OTR__ast_versus/D_versus_3029388";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_29B90[] = "__OTR__ast_versus/ast_versus_seg3_gfx_29B90";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29BF8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29BF8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_29C50[] = "__OTR__ast_versus/ast_versus_seg3_gfx_29C50";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29CB8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29CB8";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_29D20[] = "__OTR__ast_versus/ast_versus_seg3_gfx_29D20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29D88[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29D88";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_gfx_29DF0[] = "__OTR__ast_versus/ast_versus_seg3_gfx_29DF0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29F50[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29F50";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29F90[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29F90";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_29FF0[] = "__OTR__ast_versus/ast_versus_seg3_vtx_29FF0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2A050[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2A050";
+
+static const ALIGN_ASSET(2) char D_versus_302A0A0[] = "__OTR__ast_versus/D_versus_302A0A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2A0F8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2A0F8";
+
+static const ALIGN_ASSET(2) char D_versus_302A138[] = "__OTR__ast_versus/D_versus_302A138";
+
+static const ALIGN_ASSET(2) char D_versus_302A940[] = "__OTR__ast_versus/D_versus_302A940";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2A998[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2A998";
+
+static const ALIGN_ASSET(2) char D_versus_302A9C8[] = "__OTR__ast_versus/D_versus_302A9C8";
+
+static const ALIGN_ASSET(2) char D_versus_302ABD0[] = "__OTR__ast_versus/D_versus_302ABD0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2AC28[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2AC28";
+
+static const ALIGN_ASSET(2) char D_versus_302AC68[] = "__OTR__ast_versus/D_versus_302AC68";
+
+static const ALIGN_ASSET(2) char D_versus_302B470[] = "__OTR__ast_versus/D_versus_302B470";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2B4C8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2B4C8";
+
+static const ALIGN_ASSET(2) char D_versus_302B4F8[] = "__OTR__ast_versus/D_versus_302B4F8";
+
+static const ALIGN_ASSET(2) char D_versus_302B700[] = "__OTR__ast_versus/D_versus_302B700";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2B758[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2B758";
+
+static const ALIGN_ASSET(2) char D_versus_302B788[] = "__OTR__ast_versus/D_versus_302B788";
+
+static const ALIGN_ASSET(2) char D_versus_302B890[] = "__OTR__ast_versus/D_versus_302B890";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2B8E8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2B8E8";
+
+static const ALIGN_ASSET(2) char D_versus_302B918[] = "__OTR__ast_versus/D_versus_302B918";
+
+static const ALIGN_ASSET(2) char D_versus_302BA20[] = "__OTR__ast_versus/D_versus_302BA20";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2BA78[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2BA78";
+
+static const ALIGN_ASSET(2) char D_versus_302BAA8[] = "__OTR__ast_versus/D_versus_302BAA8";
+
+static const ALIGN_ASSET(2) char D_versus_302BBB0[] = "__OTR__ast_versus/D_versus_302BBB0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2BC08[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2BC08";
+
+static const ALIGN_ASSET(2) char D_versus_302BC38[] = "__OTR__ast_versus/D_versus_302BC38";
+
+static const ALIGN_ASSET(2) char D_versus_302BD40[] = "__OTR__ast_versus/D_versus_302BD40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2BD98[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2BD98";
+
+static const ALIGN_ASSET(2) char D_versus_302BDC8[] = "__OTR__ast_versus/D_versus_302BDC8";
+
+static const ALIGN_ASSET(2) char D_versus_302BED0[] = "__OTR__ast_versus/D_versus_302BED0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2BF58[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2BF58";
+
+static const ALIGN_ASSET(2) char D_versus_302BF88[] = "__OTR__ast_versus/D_versus_302BF88";
+
+static const ALIGN_ASSET(2) char D_versus_302C088[] = "__OTR__ast_versus/D_versus_302C088";
+
+static const ALIGN_ASSET(2) char D_versus_302C0D0[] = "__OTR__ast_versus/D_versus_302C0D0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2C158[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2C158";
+
+static const ALIGN_ASSET(2) char D_versus_302C188[] = "__OTR__ast_versus/D_versus_302C188";
+
+static const ALIGN_ASSET(2) char D_versus_302C288[] = "__OTR__ast_versus/D_versus_302C288";
+
+static const ALIGN_ASSET(2) char D_versus_302C350[] = "__OTR__ast_versus/D_versus_302C350";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2C3D8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2C3D8";
+
+static const ALIGN_ASSET(2) char D_versus_302C408[] = "__OTR__ast_versus/D_versus_302C408";
+
+static const ALIGN_ASSET(2) char D_versus_302C508[] = "__OTR__ast_versus/D_versus_302C508";
+
+static const ALIGN_ASSET(2) char D_versus_302C5A0[] = "__OTR__ast_versus/D_versus_302C5A0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2C628[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2C628";
+
+static const ALIGN_ASSET(2) char D_versus_302C658[] = "__OTR__ast_versus/D_versus_302C658";
+
+static const ALIGN_ASSET(2) char D_versus_302C758[] = "__OTR__ast_versus/D_versus_302C758";
+
+static const ALIGN_ASSET(2) char D_versus_302C830[] = "__OTR__ast_versus/D_versus_302C830";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2C8B8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2C8B8";
+
+static const ALIGN_ASSET(2) char D_versus_302C8E8[] = "__OTR__ast_versus/D_versus_302C8E8";
+
+static const ALIGN_ASSET(2) char D_versus_302C9E8[] = "__OTR__ast_versus/D_versus_302C9E8";
+
+static const ALIGN_ASSET(2) char D_versus_302CB40[] = "__OTR__ast_versus/D_versus_302CB40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2CBC8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2CBC8";
+
+static const ALIGN_ASSET(2) char D_versus_302CBF8[] = "__OTR__ast_versus/D_versus_302CBF8";
+
+static const ALIGN_ASSET(2) char D_versus_302CCF8[] = "__OTR__ast_versus/D_versus_302CCF8";
+
+static const ALIGN_ASSET(2) char D_versus_302CE40[] = "__OTR__ast_versus/D_versus_302CE40";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2CEC8[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2CEC8";
+
+static const ALIGN_ASSET(2) char D_versus_302CEF8[] = "__OTR__ast_versus/D_versus_302CEF8";
+
+static const ALIGN_ASSET(2) char D_versus_302CFF8[] = "__OTR__ast_versus/D_versus_302CFF8";
+
+static const ALIGN_ASSET(2) char D_versus_302D120[] = "__OTR__ast_versus/D_versus_302D120";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2D178[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2D178";
+
+static const ALIGN_ASSET(2) char D_versus_302D1B8[] = "__OTR__ast_versus/D_versus_302D1B8";
+
+static const ALIGN_ASSET(2) char D_versus_302D240[] = "__OTR__ast_versus/D_versus_302D240";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2D298[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2D298";
+
+static const ALIGN_ASSET(2) char D_versus_302D2C8[] = "__OTR__ast_versus/D_versus_302D2C8";
+
+static const ALIGN_ASSET(2) char D_versus_302D4D0[] = "__OTR__ast_versus/D_versus_302D4D0";
+
+static const ALIGN_ASSET(2) char ast_versus_seg3_vtx_2D528[] = "__OTR__ast_versus/ast_versus_seg3_vtx_2D528";
+
+static const ALIGN_ASSET(2) char D_versus_302D568[] = "__OTR__ast_versus/D_versus_302D568";
+
+static const ALIGN_ASSET(2) char D_versus_302DD70[] = "__OTR__ast_versus/D_versus_302DD70";
+
+static const ALIGN_ASSET(2) char D_versus_302DDB4[] = "__OTR__ast_versus/D_versus_302DDB4";
+
+static const ALIGN_ASSET(2) char D_versus_302DDF8[] = "__OTR__ast_versus/D_versus_302DDF8";
+
+static const ALIGN_ASSET(2) char D_versus_302DE3C[] = "__OTR__ast_versus/D_versus_302DE3C";
+
+static const ALIGN_ASSET(2) char D_versus_302E0E4[] = "__OTR__ast_versus/D_versus_302E0E4";
+
+static const ALIGN_ASSET(2) char D_versus_302E170[] = "__OTR__ast_versus/D_versus_302E170";
+
+static const ALIGN_ASSET(2) char D_versus_302E378[] = "__OTR__ast_versus/D_versus_302E378";
+
+static const ALIGN_ASSET(2) char D_versus_302E56C[] = "__OTR__ast_versus/D_versus_302E56C";
+
+static const ALIGN_ASSET(2) char D_versus_302E65C[] = "__OTR__ast_versus/D_versus_302E65C";
+
+static const ALIGN_ASSET(2) char D_versus_302E74C[] = "__OTR__ast_versus/D_versus_302E74C";
+
+static const ALIGN_ASSET(2) char D_versus_302E830[] = "__OTR__ast_versus/D_versus_302E830";
+
+static const ALIGN_ASSET(2) char D_versus_302E95C[] = "__OTR__ast_versus/D_versus_302E95C";
+
+static const ALIGN_ASSET(2) char D_versus_302EA4C[] = "__OTR__ast_versus/D_versus_302EA4C";
+
+static const ALIGN_ASSET(2) char D_versus_302EB3C[] = "__OTR__ast_versus/D_versus_302EB3C";
+
+static const ALIGN_ASSET(2) char D_versus_302EC20[] = "__OTR__ast_versus/D_versus_302EC20";
+
+static const ALIGN_ASSET(2) char aVsSpaceJunk1Hitbox[] = "__OTR__ast_versus/aVsSpaceJunk1Hitbox";
+
+static const ALIGN_ASSET(2) char aVsSpaceJunk2Hitbox[] = "__OTR__ast_versus/aVsSpaceJunk2Hitbox";
+
+static const ALIGN_ASSET(2) char aVsSpaceJunk3Hitbox[] = "__OTR__ast_versus/aVsSpaceJunk3Hitbox";
+
+static const ALIGN_ASSET(2) char aVsKaFlBaseHitbox[] = "__OTR__ast_versus/aVsKaFlBaseHitbox";
+
+static const ALIGN_ASSET(2) char aVsBuilding1Hibox[] = "__OTR__ast_versus/aVsBuilding1Hibox";
+
+static const ALIGN_ASSET(2) char aVsBuilding2Hibox[] = "__OTR__ast_versus/aVsBuilding2Hibox";
+
+static const ALIGN_ASSET(2) char aVsArchHitbox[] = "__OTR__ast_versus/aVsArchHitbox";
+
+static const ALIGN_ASSET(2) char D_versus_302EEE8[] = "__OTR__ast_versus/D_versus_302EEE8";
+
+static const ALIGN_ASSET(2) char D_versus_302EF00[] = "__OTR__ast_versus/D_versus_302EF00";
+
+static const ALIGN_ASSET(2) char D_versus_302EF6C[] = "__OTR__ast_versus/D_versus_302EF6C";
+
+static const ALIGN_ASSET(2) char D_versus_302EF84[] = "__OTR__ast_versus/D_versus_302EF84";
+
+static const ALIGN_ASSET(2) char D_versus_302EFF0[] = "__OTR__ast_versus/D_versus_302EFF0";
+
+static const ALIGN_ASSET(2) char D_versus_302F008[] = "__OTR__ast_versus/D_versus_302F008";
+
+static const ALIGN_ASSET(2) char D_versus_302F044[] = "__OTR__ast_versus/D_versus_302F044";
+
+static const ALIGN_ASSET(2) char D_versus_302F098[] = "__OTR__ast_versus/D_versus_302F098";
+
diff --git a/include/assets/ast_vs_menu.h b/include/assets/ast_vs_menu.h
new file mode 100644
index 00000000..75907131
--- /dev/null
+++ b/include/assets/ast_vs_menu.h
@@ -0,0 +1,139 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aVsPlayerNum1Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum1Tex";
+
+static const ALIGN_ASSET(2) char aVsPlayerNum2Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum2Tex";
+
+static const ALIGN_ASSET(2) char aVsPlayerNum3Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum3Tex";
+
+static const ALIGN_ASSET(2) char aVsPlayerNum4Tex[] = "__OTR__ast_vs_menu/aVsPlayerNum4Tex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7000490[] = "__OTR__ast_vs_menu/D_VS_MENU_7000490";
+
+static const ALIGN_ASSET(2) char aVsTextContTex[] = "__OTR__ast_vs_menu/aVsTextContTex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7001030[] = "__OTR__ast_vs_menu/D_VS_MENU_7001030";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7001270[] = "__OTR__ast_vs_menu/D_VS_MENU_7001270";
+
+static const ALIGN_ASSET(2) char aVsTextCorneriaTex[] = "__OTR__ast_vs_menu/aVsTextCorneriaTex";
+
+static const ALIGN_ASSET(2) char aVsTextSectorZTex[] = "__OTR__ast_vs_menu/aVsTextSectorZTex";
+
+static const ALIGN_ASSET(2) char aVsTextKatinaTex[] = "__OTR__ast_vs_menu/aVsTextKatinaTex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7001DF0[] = "__OTR__ast_vs_menu/D_VS_MENU_7001DF0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7002110[] = "__OTR__ast_vs_menu/D_VS_MENU_7002110";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70024D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70024D0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7002730[] = "__OTR__ast_vs_menu/D_VS_MENU_7002730";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7002990[] = "__OTR__ast_vs_menu/D_VS_MENU_7002990";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7002BF0[] = "__OTR__ast_vs_menu/D_VS_MENU_7002BF0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7002E50[] = "__OTR__ast_vs_menu/D_VS_MENU_7002E50";
+
+static const ALIGN_ASSET(2) char aVsHandicapLvl1Tex[] = "__OTR__ast_vs_menu/aVsHandicapLvl1Tex";
+
+static const ALIGN_ASSET(2) char aVsHandicapLvl2Tex[] = "__OTR__ast_vs_menu/aVsHandicapLvl2Tex";
+
+static const ALIGN_ASSET(2) char aVsHandicapLvl3Tex[] = "__OTR__ast_vs_menu/aVsHandicapLvl3Tex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7003650[] = "__OTR__ast_vs_menu/D_VS_MENU_7003650";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7003830[] = "__OTR__ast_vs_menu/D_VS_MENU_7003830";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7003C70[] = "__OTR__ast_vs_menu/D_VS_MENU_7003C70";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7003D70[] = "__OTR__ast_vs_menu/D_VS_MENU_7003D70";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7003E10[] = "__OTR__ast_vs_menu/D_VS_MENU_7003E10";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7003F10[] = "__OTR__ast_vs_menu/D_VS_MENU_7003F10";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7004010[] = "__OTR__ast_vs_menu/D_VS_MENU_7004010";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7004050[] = "__OTR__ast_vs_menu/D_VS_MENU_7004050";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7004150[] = "__OTR__ast_vs_menu/D_VS_MENU_7004150";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70041F0[] = "__OTR__ast_vs_menu/D_VS_MENU_70041F0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70042F0[] = "__OTR__ast_vs_menu/D_VS_MENU_70042F0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7004360[] = "__OTR__ast_vs_menu/D_VS_MENU_7004360";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7004460[] = "__OTR__ast_vs_menu/D_VS_MENU_7004460";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70044D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70044D0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7004990[] = "__OTR__ast_vs_menu/D_VS_MENU_7004990";
+
+static const ALIGN_ASSET(2) char aVsFoxNameTex[] = "__OTR__ast_vs_menu/aVsFoxNameTex";
+
+static const ALIGN_ASSET(2) char aVsFoxNameTLUT[] = "__OTR__ast_vs_menu/aVsFoxNameTLUT";
+
+static const ALIGN_ASSET(2) char aVsPeppyNameTex[] = "__OTR__ast_vs_menu/aVsPeppyNameTex";
+
+static const ALIGN_ASSET(2) char aVsPeppyNameTLUT[] = "__OTR__ast_vs_menu/aVsPeppyNameTLUT";
+
+static const ALIGN_ASSET(2) char aVsSlippyNameTex[] = "__OTR__ast_vs_menu/aVsSlippyNameTex";
+
+static const ALIGN_ASSET(2) char aVsSlippyNameTLUT[] = "__OTR__ast_vs_menu/aVsSlippyNameTLUT";
+
+static const ALIGN_ASSET(2) char aVsFalcoNameTex[] = "__OTR__ast_vs_menu/aVsFalcoNameTex";
+
+static const ALIGN_ASSET(2) char aVsFalcoNameTLUT[] = "__OTR__ast_vs_menu/aVsFalcoNameTLUT";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70051D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70051D0";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70055D0[] = "__OTR__ast_vs_menu/D_VS_MENU_70055D0";
+
+static const ALIGN_ASSET(2) char aVsCorneriaTex[] = "__OTR__ast_vs_menu/aVsCorneriaTex";
+
+static const ALIGN_ASSET(2) char aVsCorneriaTLUT[] = "__OTR__ast_vs_menu/aVsCorneriaTLUT";
+
+static const ALIGN_ASSET(2) char aVsSectorZTex[] = "__OTR__ast_vs_menu/aVsSectorZTex";
+
+static const ALIGN_ASSET(2) char aVsSectorZTLUT[] = "__OTR__ast_vs_menu/aVsSectorZTLUT";
+
+static const ALIGN_ASSET(2) char aVsKatinaTex[] = "__OTR__ast_vs_menu/aVsKatinaTex";
+
+static const ALIGN_ASSET(2) char aVsKatinaTLUT[] = "__OTR__ast_vs_menu/aVsKatinaTLUT";
+
+static const ALIGN_ASSET(2) char aVsFalcoFaceTex[] = "__OTR__ast_vs_menu/aVsFalcoFaceTex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7007FC0[] = "__OTR__ast_vs_menu/D_VS_MENU_7007FC0";
+
+static const ALIGN_ASSET(2) char aVsFoxFaceTex[] = "__OTR__ast_vs_menu/aVsFoxFaceTex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7009E00[] = "__OTR__ast_vs_menu/D_VS_MENU_7009E00";
+
+static const ALIGN_ASSET(2) char aVsPeppyFaceTex[] = "__OTR__ast_vs_menu/aVsPeppyFaceTex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_700BC40[] = "__OTR__ast_vs_menu/D_VS_MENU_700BC40";
+
+static const ALIGN_ASSET(2) char aVsSlippyFaceTex[] = "__OTR__ast_vs_menu/aVsSlippyFaceTex";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_700DA80[] = "__OTR__ast_vs_menu/D_VS_MENU_700DA80";
+
+static const ALIGN_ASSET(2) char aVsN64ConsoleTex[] = "__OTR__ast_vs_menu/aVsN64ConsoleTex";
+
+static const ALIGN_ASSET(2) char aVsHandicapFrameTex[] = "__OTR__ast_vs_menu/aVsHandicapFrameTex";
+
+static const ALIGN_ASSET(2) char aVsHandicapFrameTLUT[] = "__OTR__ast_vs_menu/aVsHandicapFrameTLUT";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7012410[] = "__OTR__ast_vs_menu/D_VS_MENU_7012410";
+
+static const ALIGN_ASSET(2) char ast_vs_menu_seg7_vtx_124A8[] = "__OTR__ast_vs_menu/ast_vs_menu_seg7_vtx_124A8";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_70124E8[] = "__OTR__ast_vs_menu/D_VS_MENU_70124E8";
+
+static const ALIGN_ASSET(2) char D_VS_MENU_7012568[] = "__OTR__ast_vs_menu/D_VS_MENU_7012568";
+
diff --git a/include/assets/ast_warp_zone.h b/include/assets/ast_warp_zone.h
new file mode 100644
index 00000000..7472d2ef
--- /dev/null
+++ b/include/assets/ast_warp_zone.h
@@ -0,0 +1,55 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+
+static const ALIGN_ASSET(2) char aWzSxEnemy1DL[] = "__OTR__ast_warp_zone/aWzSxEnemy1DL";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_120[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_120";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_190[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_190";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_200[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_200";
+
+static const ALIGN_ASSET(2) char D_WZ_7000260[] = "__OTR__ast_warp_zone/D_WZ_7000260";
+
+static const ALIGN_ASSET(2) char aWzGateDL[] = "__OTR__ast_warp_zone/aWzGateDL";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_550[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_550";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_750[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_750";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_790[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_790";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_850[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_850";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_890[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_890";
+
+static const ALIGN_ASSET(2) char aWzMeteor2DL[] = "__OTR__ast_warp_zone/aWzMeteor2DL";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_9B0[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_9B0";
+
+static const ALIGN_ASSET(2) char D_WZ_7000A30[] = "__OTR__ast_warp_zone/D_WZ_7000A30";
+
+static const ALIGN_ASSET(2) char D_WZ_7000C30[] = "__OTR__ast_warp_zone/D_WZ_7000C30";
+
+static const ALIGN_ASSET(2) char aWzPillar1DL[] = "__OTR__ast_warp_zone/aWzPillar1DL";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_D00[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_D00";
+
+static const ALIGN_ASSET(2) char aWzMeteor1DL[] = "__OTR__ast_warp_zone/aWzMeteor1DL";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_FA0[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_FA0";
+
+static const ALIGN_ASSET(2) char aWzPillar2DL[] = "__OTR__ast_warp_zone/aWzPillar2DL";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_1240[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_1240";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_13C0[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_13C0";
+
+static const ALIGN_ASSET(2) char D_WZ_7001540[] = "__OTR__ast_warp_zone/D_WZ_7001540";
+
+static const ALIGN_ASSET(2) char ast_warp_zone_seg7_vtx_1590[] = "__OTR__ast_warp_zone/ast_warp_zone_seg7_vtx_1590";
+
+static const ALIGN_ASSET(2) char D_WZ_70015D0[] = "__OTR__ast_warp_zone/D_WZ_70015D0";
+
diff --git a/include/assets/ast_zoness.h b/include/assets/ast_zoness.h
new file mode 100644
index 00000000..2330027a
--- /dev/null
+++ b/include/assets/ast_zoness.h
@@ -0,0 +1,808 @@
+#pragma once
+
+#include "gfx.h"
+#include "sf64object.h"
+#include "sf64level.h"
+#include "sf64event.h"
+#include "sf64player.h"
+#include "sf64audio_external.h"
+#include "sf64mesg.h"
+
+static const ALIGN_ASSET(2) char aZoTitleCardTex[] = "__OTR__ast_zoness/aZoTitleCardTex";
+
+static const ALIGN_ASSET(2) char D_ZO_6000C40[] = "__OTR__ast_zoness/D_ZO_6000C40";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_D28[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_D28";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_D88[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_D88";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_E48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_E48";
+
+static const ALIGN_ASSET(2) char D_ZO_6000E98[] = "__OTR__ast_zoness/D_ZO_6000E98";
+
+static const ALIGN_ASSET(2) char D_ZO_6001098[] = "__OTR__ast_zoness/D_ZO_6001098";
+
+static const ALIGN_ASSET(2) char aZoDodoraHeadDL[] = "__OTR__ast_zoness/aZoDodoraHeadDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_14D0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_14D0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1510[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1510";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1560[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1560";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_15D0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_15D0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1670[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1670";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1750[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1750";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17C0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17C0";
+
+static const ALIGN_ASSET(2) char D_ZO_6001810[] = "__OTR__ast_zoness/D_ZO_6001810";
+
+static const ALIGN_ASSET(2) char D_ZO_6002010[] = "__OTR__ast_zoness/D_ZO_6002010";
+
+static const ALIGN_ASSET(2) char D_ZO_6002210[] = "__OTR__ast_zoness/D_ZO_6002210";
+
+static const ALIGN_ASSET(2) char D_ZO_6002410[] = "__OTR__ast_zoness/D_ZO_6002410";
+
+static const ALIGN_ASSET(2) char D_ZO_6002610[] = "__OTR__ast_zoness/D_ZO_6002610";
+
+static const ALIGN_ASSET(2) char D_ZO_6002810[] = "__OTR__ast_zoness/D_ZO_6002810";
+
+static const ALIGN_ASSET(2) char D_ZO_6002A10[] = "__OTR__ast_zoness/D_ZO_6002A10";
+
+static const ALIGN_ASSET(2) char aZoRadarBuoyDL[] = "__OTR__ast_zoness/aZoRadarBuoyDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_2F08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_2F08";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_30A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_30A8";
+
+static const ALIGN_ASSET(2) char D_ZO_6003288[] = "__OTR__ast_zoness/D_ZO_6003288";
+
+static const ALIGN_ASSET(2) char D_ZO_6003488[] = "__OTR__ast_zoness/D_ZO_6003488";
+
+static const ALIGN_ASSET(2) char D_ZO_6003690[] = "__OTR__ast_zoness/D_ZO_6003690";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_37B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_37B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_3870[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_3870";
+
+static const ALIGN_ASSET(2) char D_ZO_6003930[] = "__OTR__ast_zoness/D_ZO_6003930";
+
+static const ALIGN_ASSET(2) char D_ZO_6003B30[] = "__OTR__ast_zoness/D_ZO_6003B30";
+
+static const ALIGN_ASSET(2) char D_ZO_6004330[] = "__OTR__ast_zoness/D_ZO_6004330";
+
+static const ALIGN_ASSET(2) char D_ZO_6004380[] = "__OTR__ast_zoness/D_ZO_6004380";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4418[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4418";
+
+static const ALIGN_ASSET(2) char D_ZO_6004450[] = "__OTR__ast_zoness/D_ZO_6004450";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4610[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4610";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4800[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4800";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_48B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_48B0";
+
+static const ALIGN_ASSET(2) char D_ZO_6004970[] = "__OTR__ast_zoness/D_ZO_6004970";
+
+static const ALIGN_ASSET(2) char D_ZO_6004A70[] = "__OTR__ast_zoness/D_ZO_6004A70";
+
+static const ALIGN_ASSET(2) char D_ZO_6004B00[] = "__OTR__ast_zoness/D_ZO_6004B00";
+
+static const ALIGN_ASSET(2) char aZoPatrolBoatDL[] = "__OTR__ast_zoness/aZoPatrolBoatDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_4FD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_4FD8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5018[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5018";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5208[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5208";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5238[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5238";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5418[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5418";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_54B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_54B8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_56B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_56B8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5718[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5718";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_5918[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_5918";
+
+static const ALIGN_ASSET(2) char D_ZO_6005958[] = "__OTR__ast_zoness/D_ZO_6005958";
+
+static const ALIGN_ASSET(2) char D_ZO_6005B58[] = "__OTR__ast_zoness/D_ZO_6005B58";
+
+static const ALIGN_ASSET(2) char D_ZO_6006360[] = "__OTR__ast_zoness/D_ZO_6006360";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_66E0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_66E0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_67B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_67B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6830[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6830";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6A10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6A10";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6C10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6C10";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6C40[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6C40";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6D10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6D10";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6D40[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6D40";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6EE0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6EE0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_6FC0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_6FC0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_71C0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_71C0";
+
+static const ALIGN_ASSET(2) char D_ZO_6007230[] = "__OTR__ast_zoness/D_ZO_6007230";
+
+static const ALIGN_ASSET(2) char D_ZO_6007430[] = "__OTR__ast_zoness/D_ZO_6007430";
+
+static const ALIGN_ASSET(2) char D_ZO_6007C30[] = "__OTR__ast_zoness/D_ZO_6007C30";
+
+static const ALIGN_ASSET(2) char D_ZO_6007E30[] = "__OTR__ast_zoness/D_ZO_6007E30";
+
+static const ALIGN_ASSET(2) char D_ZO_6008030[] = "__OTR__ast_zoness/D_ZO_6008030";
+
+static const ALIGN_ASSET(2) char D_ZO_6008230[] = "__OTR__ast_zoness/D_ZO_6008230";
+
+static const ALIGN_ASSET(2) char D_ZO_6008430[] = "__OTR__ast_zoness/D_ZO_6008430";
+
+static const ALIGN_ASSET(2) char D_ZO_6008630[] = "__OTR__ast_zoness/D_ZO_6008630";
+
+static const ALIGN_ASSET(2) char D_ZO_6008830[] = "__OTR__ast_zoness/D_ZO_6008830";
+
+static const ALIGN_ASSET(2) char D_ZO_6009ED0[] = "__OTR__ast_zoness/D_ZO_6009ED0";
+
+static const ALIGN_ASSET(2) char D_ZO_600B0E0[] = "__OTR__ast_zoness/D_ZO_600B0E0";
+
+static const ALIGN_ASSET(2) char D_ZO_600C780[] = "__OTR__ast_zoness/D_ZO_600C780";
+
+static const ALIGN_ASSET(2) char D_ZO_600D990[] = "__OTR__ast_zoness/D_ZO_600D990";
+
+static const ALIGN_ASSET(2) char aZoBirdAnim[] = "__OTR__ast_zoness/aZoBirdAnim";
+
+static const ALIGN_ASSET(2) char aZoBirdSkel[] = "__OTR__ast_zoness/aZoBirdSkel";
+
+static const ALIGN_ASSET(2) char aZoOilRig3DL[] = "__OTR__ast_zoness/aZoOilRig3DL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_E950[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_E950";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_EB50[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_EB50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_EC10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_EC10";
+
+static const ALIGN_ASSET(2) char aZoOilRig2DL[] = "__OTR__ast_zoness/aZoOilRig2DL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_EE58[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_EE58";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F058[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F058";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F258[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F258";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F298[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F298";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F498[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F498";
+
+static const ALIGN_ASSET(2) char aZoOilRig1DL[] = "__OTR__ast_zoness/aZoOilRig1DL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F718[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F718";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_F918[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_F918";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_FB18[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_FB18";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_FCD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_FCD8";
+
+static const ALIGN_ASSET(2) char D_ZO_600FE58[] = "__OTR__ast_zoness/D_ZO_600FE58";
+
+static const ALIGN_ASSET(2) char D_ZO_6010658[] = "__OTR__ast_zoness/D_ZO_6010658";
+
+static const ALIGN_ASSET(2) char D_ZO_6010E58[] = "__OTR__ast_zoness/D_ZO_6010E58";
+
+static const ALIGN_ASSET(2) char D_ZO_6011660[] = "__OTR__ast_zoness/D_ZO_6011660";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_117C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_117C8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_11828[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_11828";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_11868[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_11868";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_118C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_118C8";
+
+static const ALIGN_ASSET(2) char D_ZO_6011928[] = "__OTR__ast_zoness/D_ZO_6011928";
+
+static const ALIGN_ASSET(2) char D_ZO_6012128[] = "__OTR__ast_zoness/D_ZO_6012128";
+
+static const ALIGN_ASSET(2) char D_ZO_6012930[] = "__OTR__ast_zoness/D_ZO_6012930";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_12A98[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_12A98";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_12C38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_12C38";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_12E38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_12E38";
+
+static const ALIGN_ASSET(2) char D_ZO_6013010[] = "__OTR__ast_zoness/D_ZO_6013010";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_13108[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_13108";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_13188[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_13188";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_13228[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_13228";
+
+static const ALIGN_ASSET(2) char D_ZO_6013330[] = "__OTR__ast_zoness/D_ZO_6013330";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_133A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_133A0";
+
+static const ALIGN_ASSET(2) char D_ZO_6013480[] = "__OTR__ast_zoness/D_ZO_6013480";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_134D0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_134D0";
+
+static const ALIGN_ASSET(2) char D_ZO_6013510[] = "__OTR__ast_zoness/D_ZO_6013510";
+
+static const ALIGN_ASSET(2) char D_ZO_6014510[] = "__OTR__ast_zoness/D_ZO_6014510";
+
+static const ALIGN_ASSET(2) char D_ZO_6015430[] = "__OTR__ast_zoness/D_ZO_6015430";
+
+static const ALIGN_ASSET(2) char D_ZO_6016350[] = "__OTR__ast_zoness/D_ZO_6016350";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_163A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_163A8";
+
+static const ALIGN_ASSET(2) char D_ZO_60163E0[] = "__OTR__ast_zoness/D_ZO_60163E0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_164B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_164B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16510[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16510";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_165A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_165A0";
+
+static const ALIGN_ASSET(2) char D_ZO_60165D0[] = "__OTR__ast_zoness/D_ZO_60165D0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_166B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_166B8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16728[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16728";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_167F8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_167F8";
+
+static const ALIGN_ASSET(2) char D_ZO_6016880[] = "__OTR__ast_zoness/D_ZO_6016880";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16968[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16968";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_169C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_169C8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16AE8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16AE8";
+
+static const ALIGN_ASSET(2) char D_ZO_6016B50[] = "__OTR__ast_zoness/D_ZO_6016B50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16C30[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16C30";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16C90[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16C90";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16D30[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16D30";
+
+static const ALIGN_ASSET(2) char D_ZO_6016D90[] = "__OTR__ast_zoness/D_ZO_6016D90";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16DE8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16DE8";
+
+static const ALIGN_ASSET(2) char D_ZO_6016E30[] = "__OTR__ast_zoness/D_ZO_6016E30";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_16E88[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_16E88";
+
+static const ALIGN_ASSET(2) char D_ZO_6016EC8[] = "__OTR__ast_zoness/D_ZO_6016EC8";
+
+static const ALIGN_ASSET(2) char D_ZO_60176D0[] = "__OTR__ast_zoness/D_ZO_60176D0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17728[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17728";
+
+static const ALIGN_ASSET(2) char D_ZO_6017770[] = "__OTR__ast_zoness/D_ZO_6017770";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_177C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_177C8";
+
+static const ALIGN_ASSET(2) char D_ZO_6017810[] = "__OTR__ast_zoness/D_ZO_6017810";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17868[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17868";
+
+static const ALIGN_ASSET(2) char D_ZO_60178B0[] = "__OTR__ast_zoness/D_ZO_60178B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_17908[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_17908";
+
+static const ALIGN_ASSET(2) char aZoBallDL[] = "__OTR__ast_zoness/aZoBallDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_179A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_179A8";
+
+static const ALIGN_ASSET(2) char D_ZO_60179D8[] = "__OTR__ast_zoness/D_ZO_60179D8";
+
+static const ALIGN_ASSET(2) char D_ZO_60181E0[] = "__OTR__ast_zoness/D_ZO_60181E0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18270[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18270";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_182B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_182B0";
+
+static const ALIGN_ASSET(2) char D_ZO_60182E0[] = "__OTR__ast_zoness/D_ZO_60182E0";
+
+static const ALIGN_ASSET(2) char D_ZO_6018550[] = "__OTR__ast_zoness/D_ZO_6018550";
+
+static const ALIGN_ASSET(2) char D_ZO_601863C[] = "__OTR__ast_zoness/D_ZO_601863C";
+
+static const ALIGN_ASSET(2) char D_ZO_6018660[] = "__OTR__ast_zoness/D_ZO_6018660";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_186B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_186B8";
+
+static const ALIGN_ASSET(2) char D_ZO_60186E8[] = "__OTR__ast_zoness/D_ZO_60186E8";
+
+static const ALIGN_ASSET(2) char D_ZO_6018AF0[] = "__OTR__ast_zoness/D_ZO_6018AF0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18B48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18B48";
+
+static const ALIGN_ASSET(2) char D_ZO_6018B78[] = "__OTR__ast_zoness/D_ZO_6018B78";
+
+static const ALIGN_ASSET(2) char D_ZO_6018C80[] = "__OTR__ast_zoness/D_ZO_6018C80";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18D38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18D38";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18DB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18DB8";
+
+static const ALIGN_ASSET(2) char D_ZO_6018E80[] = "__OTR__ast_zoness/D_ZO_6018E80";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18F20[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18F20";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_18FB0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_18FB0";
+
+static const ALIGN_ASSET(2) char D_ZO_6019040[] = "__OTR__ast_zoness/D_ZO_6019040";
+
+static const ALIGN_ASSET(2) char D_ZO_60195EC[] = "__OTR__ast_zoness/D_ZO_60195EC";
+
+static const ALIGN_ASSET(2) char D_ZO_6019738[] = "__OTR__ast_zoness/D_ZO_6019738";
+
+static const ALIGN_ASSET(2) char D_ZO_601996C[] = "__OTR__ast_zoness/D_ZO_601996C";
+
+static const ALIGN_ASSET(2) char aZoSarumarineSkel[] = "__OTR__ast_zoness/aZoSarumarineSkel";
+
+static const ALIGN_ASSET(2) char D_ZO_6019EB0[] = "__OTR__ast_zoness/D_ZO_6019EB0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_19F08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_19F08";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_19F50[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_19F50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A0A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A0A0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A170[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A170";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A230[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A230";
+
+static const ALIGN_ASSET(2) char D_ZO_601A340[] = "__OTR__ast_zoness/D_ZO_601A340";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A410[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A410";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A450[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A450";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1A560[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1A560";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A5C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A5C8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1A690[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1A690";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A748[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A748";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1A788[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1A788";
+
+static const ALIGN_ASSET(2) char D_ZO_601AA48[] = "__OTR__ast_zoness/D_ZO_601AA48";
+
+static const ALIGN_ASSET(2) char D_ZO_601AB14[] = "__OTR__ast_zoness/D_ZO_601AB14";
+
+static const ALIGN_ASSET(2) char D_ZO_601AFB8[] = "__OTR__ast_zoness/D_ZO_601AFB8";
+
+static const ALIGN_ASSET(2) char D_ZO_601B184[] = "__OTR__ast_zoness/D_ZO_601B184";
+
+static const ALIGN_ASSET(2) char D_ZO_601B1C0[] = "__OTR__ast_zoness/D_ZO_601B1C0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B260[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B260";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B2F0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B2F0";
+
+static const ALIGN_ASSET(2) char D_ZO_601B3B0[] = "__OTR__ast_zoness/D_ZO_601B3B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B450[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B450";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B4E0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B4E0";
+
+static const ALIGN_ASSET(2) char D_ZO_601B570[] = "__OTR__ast_zoness/D_ZO_601B570";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B610[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B610";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B680[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B680";
+
+static const ALIGN_ASSET(2) char D_ZO_601B710[] = "__OTR__ast_zoness/D_ZO_601B710";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B7B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B7B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B840[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B840";
+
+static const ALIGN_ASSET(2) char D_ZO_601B8F0[] = "__OTR__ast_zoness/D_ZO_601B8F0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1B990[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1B990";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1BA20[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1BA20";
+
+static const ALIGN_ASSET(2) char D_ZO_601BAD0[] = "__OTR__ast_zoness/D_ZO_601BAD0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1BB38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1BB38";
+
+static const ALIGN_ASSET(2) char D_ZO_601BBB8[] = "__OTR__ast_zoness/D_ZO_601BBB8";
+
+static const ALIGN_ASSET(2) char D_ZO_601BCC0[] = "__OTR__ast_zoness/D_ZO_601BCC0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1BD80[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1BD80";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1BF80[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1BF80";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C038[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C038";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C098[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C098";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1C0D0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1C0D0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C1B0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C1B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C350[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C350";
+
+static const ALIGN_ASSET(2) char D_ZO_601C390[] = "__OTR__ast_zoness/D_ZO_601C390";
+
+static const ALIGN_ASSET(2) char D_ZO_601C590[] = "__OTR__ast_zoness/D_ZO_601C590";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C700[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C700";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C750[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C750";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C7A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C7A0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1C800[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1C800";
+
+static const ALIGN_ASSET(2) char D_ZO_601C8E0[] = "__OTR__ast_zoness/D_ZO_601C8E0";
+
+static const ALIGN_ASSET(2) char D_ZO_601D0E0[] = "__OTR__ast_zoness/D_ZO_601D0E0";
+
+static const ALIGN_ASSET(2) char D_ZO_601D2E0[] = "__OTR__ast_zoness/D_ZO_601D2E0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1D4E0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1D4E0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D548[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D548";
+
+static const ALIGN_ASSET(2) char D_ZO_601D5B0[] = "__OTR__ast_zoness/D_ZO_601D5B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D618[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D618";
+
+static const ALIGN_ASSET(2) char D_ZO_601D680[] = "__OTR__ast_zoness/D_ZO_601D680";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D748[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D748";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1D808[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1D808";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1D8D0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1D8D0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DBC8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DBC8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DDB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DDB8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DE48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DE48";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DE88[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DE88";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1DF68[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1DF68";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E008[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E008";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E048[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E048";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E248[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E248";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1E290[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1E290";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E438[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E438";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E4D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E4D8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E578[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E578";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E5C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E5C8";
+
+static const ALIGN_ASSET(2) char D_ZO_601E618[] = "__OTR__ast_zoness/D_ZO_601E618";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1E820[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1E820";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1E9C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1E9C8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EB38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EB38";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EB78[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EB78";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EC78[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EC78";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1ED50[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1ED50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EE28[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EE28";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1EF08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1EF08";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_1EF70[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_1EF70";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F020[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F020";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F200[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F200";
+
+static const ALIGN_ASSET(2) char D_ZO_601F260[] = "__OTR__ast_zoness/D_ZO_601F260";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F300[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F300";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F360[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F360";
+
+static const ALIGN_ASSET(2) char D_ZO_601F420[] = "__OTR__ast_zoness/D_ZO_601F420";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F4D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F4D8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F558[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F558";
+
+static const ALIGN_ASSET(2) char D_ZO_601F620[] = "__OTR__ast_zoness/D_ZO_601F620";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F6D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F6D8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F758[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F758";
+
+static const ALIGN_ASSET(2) char aZoSarumarinePeriscopeAnim[] = "__OTR__ast_zoness/aZoSarumarinePeriscopeAnim";
+
+static const ALIGN_ASSET(2) char aZoSarumarinePeriscopeSkel[] = "__OTR__ast_zoness/aZoSarumarinePeriscopeSkel";
+
+static const ALIGN_ASSET(2) char D_ZO_601F940[] = "__OTR__ast_zoness/D_ZO_601F940";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1F9E8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1F9E8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1FAA8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1FAA8";
+
+static const ALIGN_ASSET(2) char D_ZO_601FBC4[] = "__OTR__ast_zoness/D_ZO_601FBC4";
+
+static const ALIGN_ASSET(2) char aZoBarrierSkel[] = "__OTR__ast_zoness/aZoBarrierSkel";
+
+static const ALIGN_ASSET(2) char aZoIslandDL[] = "__OTR__ast_zoness/aZoIslandDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1FDC0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1FDC0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_1FFC0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_1FFC0";
+
+static const ALIGN_ASSET(2) char D_ZO_60201B0[] = "__OTR__ast_zoness/D_ZO_60201B0";
+
+static const ALIGN_ASSET(2) char D_ZO_60209B0[] = "__OTR__ast_zoness/D_ZO_60209B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20A50[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20A50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20AE0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20AE0";
+
+static const ALIGN_ASSET(2) char D_ZO_6020B70[] = "__OTR__ast_zoness/D_ZO_6020B70";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20C10[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20C10";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20CA0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20CA0";
+
+static const ALIGN_ASSET(2) char D_ZO_6020D50[] = "__OTR__ast_zoness/D_ZO_6020D50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20DF0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20DF0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20E80[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20E80";
+
+static const ALIGN_ASSET(2) char D_ZO_6020F10[] = "__OTR__ast_zoness/D_ZO_6020F10";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_20FB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_20FB8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_210A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_210A8";
+
+static const ALIGN_ASSET(2) char D_ZO_6021100[] = "__OTR__ast_zoness/D_ZO_6021100";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_211A0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_211A0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21260[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21260";
+
+static const ALIGN_ASSET(2) char D_ZO_60212B0[] = "__OTR__ast_zoness/D_ZO_60212B0";
+
+static const ALIGN_ASSET(2) char D_ZO_60214B0[] = "__OTR__ast_zoness/D_ZO_60214B0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21568[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21568";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_215C8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_215C8";
+
+static const ALIGN_ASSET(2) char D_ZO_60216A8[] = "__OTR__ast_zoness/D_ZO_60216A8";
+
+static const ALIGN_ASSET(2) char D_ZO_6021ABC[] = "__OTR__ast_zoness/D_ZO_6021ABC";
+
+static const ALIGN_ASSET(2) char D_ZO_6021B88[] = "__OTR__ast_zoness/D_ZO_6021B88";
+
+static const ALIGN_ASSET(2) char D_ZO_6021BB0[] = "__OTR__ast_zoness/D_ZO_6021BB0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21C08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21C08";
+
+static const ALIGN_ASSET(2) char D_ZO_6021C50[] = "__OTR__ast_zoness/D_ZO_6021C50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21CA8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21CA8";
+
+static const ALIGN_ASSET(2) char D_ZO_6021CE0[] = "__OTR__ast_zoness/D_ZO_6021CE0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21D38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21D38";
+
+static const ALIGN_ASSET(2) char D_ZO_6021D80[] = "__OTR__ast_zoness/D_ZO_6021D80";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21DD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21DD8";
+
+static const ALIGN_ASSET(2) char D_ZO_6021E20[] = "__OTR__ast_zoness/D_ZO_6021E20";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21F00[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21F00";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_21FB0[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_21FB0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22050[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22050";
+
+static const ALIGN_ASSET(2) char D_ZO_60220A0[] = "__OTR__ast_zoness/D_ZO_60220A0";
+
+static const ALIGN_ASSET(2) char D_ZO_60222A0[] = "__OTR__ast_zoness/D_ZO_60222A0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22438[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22438";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22628[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22628";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22718[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22718";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22748[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22748";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_227A8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_227A8";
+
+static const ALIGN_ASSET(2) char D_ZO_60227D8[] = "__OTR__ast_zoness/D_ZO_60227D8";
+
+static const ALIGN_ASSET(2) char D_ZO_60229D8[] = "__OTR__ast_zoness/D_ZO_60229D8";
+
+static const ALIGN_ASSET(2) char D_ZO_6022BE0[] = "__OTR__ast_zoness/D_ZO_6022BE0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22CA8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22CA8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22D08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22D08";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22D38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22D38";
+
+static const ALIGN_ASSET(2) char D_ZO_6022D70[] = "__OTR__ast_zoness/D_ZO_6022D70";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22E38[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22E38";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22E98[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22E98";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22EC8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22EC8";
+
+static const ALIGN_ASSET(2) char D_ZO_6022F00[] = "__OTR__ast_zoness/D_ZO_6022F00";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_22FC8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_22FC8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23028[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23028";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23058[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23058";
+
+static const ALIGN_ASSET(2) char D_ZO_6023088[] = "__OTR__ast_zoness/D_ZO_6023088";
+
+static const ALIGN_ASSET(2) char D_ZO_6023288[] = "__OTR__ast_zoness/D_ZO_6023288";
+
+static const ALIGN_ASSET(2) char D_ZO_6023488[] = "__OTR__ast_zoness/D_ZO_6023488";
+
+static const ALIGN_ASSET(2) char D_ZO_6023690[] = "__OTR__ast_zoness/D_ZO_6023690";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_236E8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_236E8";
+
+static const ALIGN_ASSET(2) char aZoDodoraTailDL[] = "__OTR__ast_zoness/aZoDodoraTailDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23790[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23790";
+
+static const ALIGN_ASSET(2) char D_ZO_60237E0[] = "__OTR__ast_zoness/D_ZO_60237E0";
+
+static const ALIGN_ASSET(2) char aZoDodoraBodyDL[] = "__OTR__ast_zoness/aZoDodoraBodyDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23B48[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23B48";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23C28[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23C28";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23C98[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23C98";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23D08[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23D08";
+
+static const ALIGN_ASSET(2) char D_ZO_6023D50[] = "__OTR__ast_zoness/D_ZO_6023D50";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23DD8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23DD8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_23FB8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_23FB8";
+
+static const ALIGN_ASSET(2) char D_ZO_6024018[] = "__OTR__ast_zoness/D_ZO_6024018";
+
+static const ALIGN_ASSET(2) char D_ZO_6024220[] = "__OTR__ast_zoness/D_ZO_6024220";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_24278[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_24278";
+
+static const ALIGN_ASSET(2) char D_ZO_60242B8[] = "__OTR__ast_zoness/D_ZO_60242B8";
+
+static const ALIGN_ASSET(2) char aZoRockDL[] = "__OTR__ast_zoness/aZoRockDL";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_24B70[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_24B70";
+
+static const ALIGN_ASSET(2) char D_ZO_6024D60[] = "__OTR__ast_zoness/D_ZO_6024D60";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_25560[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_25560";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_255D8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_255D8";
+
+static const ALIGN_ASSET(2) char D_ZO_6025658[] = "__OTR__ast_zoness/D_ZO_6025658";
+
+static const ALIGN_ASSET(2) char D_ZO_6025E60[] = "__OTR__ast_zoness/D_ZO_6025E60";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_25EF8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_25EF8";
+
+static const ALIGN_ASSET(2) char D_ZO_6025F98[] = "__OTR__ast_zoness/D_ZO_6025F98";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_gfx_261A0[] = "__OTR__ast_zoness/ast_zoness_seg6_gfx_261A0";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_26348[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_26348";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_264B8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_264B8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_264F8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_264F8";
+
+static const ALIGN_ASSET(2) char ast_zoness_seg6_vtx_265F8[] = "__OTR__ast_zoness/ast_zoness_seg6_vtx_265F8";
+
+static const ALIGN_ASSET(2) char D_ZO_60266D0[] = "__OTR__ast_zoness/D_ZO_60266D0";
+
+static const ALIGN_ASSET(2) char D_ZO_6026714[] = "__OTR__ast_zoness/D_ZO_6026714";
+
+static const char D_ZO_602AAC0[] = "__OTR__ast_zoness/D_ZO_602AAC0";
+
+static const ALIGN_ASSET(2) char D_ZO_602AC50[] = "__OTR__ast_zoness/D_ZO_602AC50";
+
+static const ALIGN_ASSET(2) char D_ZO_602AE94[] = "__OTR__ast_zoness/D_ZO_602AE94";
+
+static const ALIGN_ASSET(2) char aZoRockHitbox[] = "__OTR__ast_zoness/aZoRockHitbox";
+
+static const ALIGN_ASSET(2) char aZoOilRig1Hitbox[] = "__OTR__ast_zoness/aZoOilRig1Hitbox";
+
+static const ALIGN_ASSET(2) char aZoOilRig2Hitbox[] = "__OTR__ast_zoness/aZoOilRig2Hitbox";
+
+static const ALIGN_ASSET(2) char aZoOilRig3Hitbox[] = "__OTR__ast_zoness/aZoOilRig3Hitbox";
+
+static const ALIGN_ASSET(2) char aZoIslandHitbox[] = "__OTR__ast_zoness/aZoIslandHitbox";
+
+static const ALIGN_ASSET(2) char aZoDodoraHitbox[] = "__OTR__ast_zoness/aZoDodoraHitbox";
+
+static const ALIGN_ASSET(2) char aZoTroikaHitbox[] = "__OTR__ast_zoness/aZoTroikaHitbox";
+
+static const ALIGN_ASSET(2) char aZoObnemaHitbox[] = "__OTR__ast_zoness/aZoObnemaHitbox";
+
+static const ALIGN_ASSET(2) char aZoBarrierHitbox[] = "__OTR__ast_zoness/aZoBarrierHitbox";
+
+static const ALIGN_ASSET(2) char aZoBarrierHitbox2[] = "__OTR__ast_zoness/aZoBarrierHitbox2";
+
+static const ALIGN_ASSET(2) char aZoSarumarineHitbox[] = "__OTR__ast_zoness/aZoSarumarineHitbox";
+
+static const ALIGN_ASSET(2) char aZoSarumarinePeriscopeHitbox[] = "__OTR__ast_zoness/aZoSarumarinePeriscopeHitbox";
+
+static const ALIGN_ASSET(2) char aZoTankerHitbox[] = "__OTR__ast_zoness/aZoTankerHitbox";
+
+static const ALIGN_ASSET(2) char aZoContainerHitbox[] = "__OTR__ast_zoness/aZoContainerHitbox";
+
+static const ALIGN_ASSET(2) char aZoRadarBuoyHitbox[] = "__OTR__ast_zoness/aZoRadarBuoyHitbox";
+
+static const ALIGN_ASSET(2) char aZoSupplyCraneHitbox[] = "__OTR__ast_zoness/aZoSupplyCraneHitbox";
+
+static const ALIGN_ASSET(2) char aZoBirdHitbox[] = "__OTR__ast_zoness/aZoBirdHitbox";
+
+static const ALIGN_ASSET(2) char aZoSearchLightHitbox[] = "__OTR__ast_zoness/aZoSearchLightHitbox";
+
+static const ALIGN_ASSET(2) char D_ZO_602C2CC[] = "__OTR__ast_zoness/D_ZO_602C2CC";
+
+static const ALIGN_ASSET(2) char D_ZO_602CACC[] = "__OTR__ast_zoness/D_ZO_602CACC";
+
+static const ALIGN_ASSET(2) char D_ZO_602CB80[] = "__OTR__ast_zoness/D_ZO_602CB80";
+
diff --git a/include/assets/rcp_setup.h b/include/assets/rcp_setup.h
new file mode 100644
index 00000000..56671ffd
--- /dev/null
+++ b/include/assets/rcp_setup.h
@@ -0,0 +1,176 @@
+#pragma once
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_0[] = "__OTR__rcp_setup/rcp_setup_dls_0";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_1[] = "__OTR__rcp_setup/rcp_setup_dls_1";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_2[] = "__OTR__rcp_setup/rcp_setup_dls_2";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_3[] = "__OTR__rcp_setup/rcp_setup_dls_3";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_4[] = "__OTR__rcp_setup/rcp_setup_dls_4";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_5[] = "__OTR__rcp_setup/rcp_setup_dls_5";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_6[] = "__OTR__rcp_setup/rcp_setup_dls_6";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_7[] = "__OTR__rcp_setup/rcp_setup_dls_7";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_8[] = "__OTR__rcp_setup/rcp_setup_dls_8";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_9[] = "__OTR__rcp_setup/rcp_setup_dls_9";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_10[] = "__OTR__rcp_setup/rcp_setup_dls_10";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_11[] = "__OTR__rcp_setup/rcp_setup_dls_11";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_12[] = "__OTR__rcp_setup/rcp_setup_dls_12";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_13[] = "__OTR__rcp_setup/rcp_setup_dls_13";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_14[] = "__OTR__rcp_setup/rcp_setup_dls_14";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_15[] = "__OTR__rcp_setup/rcp_setup_dls_15";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_16[] = "__OTR__rcp_setup/rcp_setup_dls_16";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_17[] = "__OTR__rcp_setup/rcp_setup_dls_17";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_18[] = "__OTR__rcp_setup/rcp_setup_dls_18";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_19[] = "__OTR__rcp_setup/rcp_setup_dls_19";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_20[] = "__OTR__rcp_setup/rcp_setup_dls_20";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_21[] = "__OTR__rcp_setup/rcp_setup_dls_21";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_22[] = "__OTR__rcp_setup/rcp_setup_dls_22";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_23[] = "__OTR__rcp_setup/rcp_setup_dls_23";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_24[] = "__OTR__rcp_setup/rcp_setup_dls_24";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_25[] = "__OTR__rcp_setup/rcp_setup_dls_25";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_26[] = "__OTR__rcp_setup/rcp_setup_dls_26";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_27[] = "__OTR__rcp_setup/rcp_setup_dls_27";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_28[] = "__OTR__rcp_setup/rcp_setup_dls_28";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_29[] = "__OTR__rcp_setup/rcp_setup_dls_29";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_30[] = "__OTR__rcp_setup/rcp_setup_dls_30";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_31[] = "__OTR__rcp_setup/rcp_setup_dls_31";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_32[] = "__OTR__rcp_setup/rcp_setup_dls_32";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_33[] = "__OTR__rcp_setup/rcp_setup_dls_33";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_34[] = "__OTR__rcp_setup/rcp_setup_dls_34";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_35[] = "__OTR__rcp_setup/rcp_setup_dls_35";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_36[] = "__OTR__rcp_setup/rcp_setup_dls_36";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_37[] = "__OTR__rcp_setup/rcp_setup_dls_37";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_38[] = "__OTR__rcp_setup/rcp_setup_dls_38";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_39[] = "__OTR__rcp_setup/rcp_setup_dls_39";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_40[] = "__OTR__rcp_setup/rcp_setup_dls_40";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_41[] = "__OTR__rcp_setup/rcp_setup_dls_41";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_42[] = "__OTR__rcp_setup/rcp_setup_dls_42";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_43[] = "__OTR__rcp_setup/rcp_setup_dls_43";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_44[] = "__OTR__rcp_setup/rcp_setup_dls_44";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_45[] = "__OTR__rcp_setup/rcp_setup_dls_45";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_46[] = "__OTR__rcp_setup/rcp_setup_dls_46";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_47[] = "__OTR__rcp_setup/rcp_setup_dls_47";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_48[] = "__OTR__rcp_setup/rcp_setup_dls_48";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_49[] = "__OTR__rcp_setup/rcp_setup_dls_49";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_50[] = "__OTR__rcp_setup/rcp_setup_dls_50";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_51[] = "__OTR__rcp_setup/rcp_setup_dls_51";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_52[] = "__OTR__rcp_setup/rcp_setup_dls_52";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_53[] = "__OTR__rcp_setup/rcp_setup_dls_53";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_54[] = "__OTR__rcp_setup/rcp_setup_dls_54";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_55[] = "__OTR__rcp_setup/rcp_setup_dls_55";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_56[] = "__OTR__rcp_setup/rcp_setup_dls_56";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_57[] = "__OTR__rcp_setup/rcp_setup_dls_57";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_58[] = "__OTR__rcp_setup/rcp_setup_dls_58";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_59[] = "__OTR__rcp_setup/rcp_setup_dls_59";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_60[] = "__OTR__rcp_setup/rcp_setup_dls_60";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_61[] = "__OTR__rcp_setup/rcp_setup_dls_61";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_62[] = "__OTR__rcp_setup/rcp_setup_dls_62";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_63[] = "__OTR__rcp_setup/rcp_setup_dls_63";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_64[] = "__OTR__rcp_setup/rcp_setup_dls_64";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_65[] = "__OTR__rcp_setup/rcp_setup_dls_65";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_66[] = "__OTR__rcp_setup/rcp_setup_dls_66";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_67[] = "__OTR__rcp_setup/rcp_setup_dls_67";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_68[] = "__OTR__rcp_setup/rcp_setup_dls_68";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_69[] = "__OTR__rcp_setup/rcp_setup_dls_69";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_70[] = "__OTR__rcp_setup/rcp_setup_dls_70";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_71[] = "__OTR__rcp_setup/rcp_setup_dls_71";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_72[] = "__OTR__rcp_setup/rcp_setup_dls_72";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_73[] = "__OTR__rcp_setup/rcp_setup_dls_73";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_74[] = "__OTR__rcp_setup/rcp_setup_dls_74";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_75[] = "__OTR__rcp_setup/rcp_setup_dls_75";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_76[] = "__OTR__rcp_setup/rcp_setup_dls_76";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_77[] = "__OTR__rcp_setup/rcp_setup_dls_77";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_78[] = "__OTR__rcp_setup/rcp_setup_dls_78";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_79[] = "__OTR__rcp_setup/rcp_setup_dls_79";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_80[] = "__OTR__rcp_setup/rcp_setup_dls_80";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_81[] = "__OTR__rcp_setup/rcp_setup_dls_81";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_82[] = "__OTR__rcp_setup/rcp_setup_dls_82";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_83[] = "__OTR__rcp_setup/rcp_setup_dls_83";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_84[] = "__OTR__rcp_setup/rcp_setup_dls_84";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_85[] = "__OTR__rcp_setup/rcp_setup_dls_85";
+
+static const ALIGN_ASSET(2) char rcp_setup/rcp_setup_dls_86[] = "__OTR__rcp_setup/rcp_setup_dls_86";
+