]> Chaos Git - misc/MaihanaTL.git/commitdiff
Initial commit.
authorchaoskagami <chaos.kagami@gmail.com>
Tue, 21 Apr 2015 23:16:59 +0000 (19:16 -0400)
committerchaoskagami <chaos.kagami@gmail.com>
Tue, 21 Apr 2015 23:16:59 +0000 (19:16 -0400)
14 files changed:
README.txt [new file with mode: 0644]
build.sh [new file with mode: 0755]
data/.keep [new file with mode: 0644]
patches/en/MaihanaConfig.exe.xdelta3 [new file with mode: 0644]
patches/jp/.keep [new file with mode: 0644]
scripts/en/SceHelp.txt [new file with mode: 0644]
scripts/en/SceStageMarisa.txt [new file with mode: 0644]
scripts/en/SceStageReimu.txt [new file with mode: 0644]
scripts/jp/SceHelp.txt [new file with mode: 0644]
scripts/jp/SceStageMarisa.txt [new file with mode: 0644]
scripts/jp/SceStageReimu.txt [new file with mode: 0644]
tools/scetool.i686 [new file with mode: 0755]
tools/scetool.x86_64 [new file with mode: 0755]
tools/src/scetool.c [new file with mode: 0644]

diff --git a/README.txt b/README.txt
new file mode 100644 (file)
index 0000000..a76f1b3
--- /dev/null
@@ -0,0 +1,92 @@
+======================================================================
+'Maihana Ao Makyou ~ Uniting Barrage Action' English Translation
+
+           NOTE   The game needs to be patched to 1.12.
+                  Do you like Flandre? I like Flandre.
+======================================================================
+
+TL;DR - To install:
+       0) Install Linux if you don't feel like waiting for .bat
+           files. I hate cmd with such a passion, you have no clue.
+       1) Copy everything inside the game's folder into Data here.
+           That's the folder with the exe.
+       2) Run build.sh.
+       3) It'll ask you what language you want. There's only jpn
+           and en right now.
+       4) Type it and now you can have fun. In english.
+
+======================================================================
+
+First off, until every line has been translated, run it in japanese
+locale. It won't be necessary for the final - the game's structured
+well to handle this stuff. I don't even need to switch fonts. For
+windows, this means set the non-unicode to japanese. Alternatively, try
+out localeemu. Or applocale. It only needs non-unicode.
+
+To my friends in the linux-zone, using wine - run with LANG="ja_JP"
+to run in japanese locale. Again, final won't need it. As another note,
+you need to run winetricks xact. The default prefix will give zero
+sound and an error on start. Also, some wine versions completely
+ignore LANG. Can't help you if that's the case. Take it up with
+your distro maintainers.
+
+All of the text in-game is SHIFT-JIS, so otherwise untranslated things
+will be garbled if you don't use japanese locale. Like I said, once
+all is done, it won't make any difference.
+
+If you're a pro and want to submit a better translation, do so.
+Alternatively, if anyone wants to submit other translations than
+english, submit a pull request put the scripts into the scripts folder
+and name them accordingly. E.g. French would be SceStageMarisa.fr.txt,
+etc.
+
+======================================================================
+
+If asked by the creators, I'll remove the original japanese script.
+Also, if this is ever localized (highly unlikely) then my github of
+this will be removed permanently. Also, no original data files will
+EVER be allowed here. Only patches. The japanese script is provided
+only for people who would like to translate the game, but may not be
+able to acquire a copy.
+
+I'm doing this for fun and for the sake of education - it involved a
+shitload of RE and I'm awful with japanese.
+
+======================================================================
+
+TL Notes:
+- There's some punny shit in the distorted zones. Komakan vs Komakyo.
+  I've no clue how to capture the meaning of that, so expect
+  'creativity'.
+
+======================================================================
+
+Translation%:
+       Reimu Route (SceStageReimu.vol): 
+               Stage1                          100%
+               Ex1                             ~90%
+               Stage2                          0%
+       Marisa Route (SceStageMarisa.vol):
+               *                               0%
+       Tutorial (SceCommon.vol):               0%
+       Help menu (SceHelp.vol): 
+               entry#3                         100%
+       Config Program(MaihanaConfig.exe):      ~80%
+       Graphics:                               0%
+
+======================================================================
+
+Tools:
+       Readable:
+               SceStageReimu.vol               100%
+               SceStageMarisa.vol              100%
+               SceHelp.vol                     70%
+       Not readable:
+               SceCommon.vol
+
+======================================================================
+
+Cleanup & TLC:
+       Reimu Route:
+               Stage1:                 Check me.
+               Ex1:                    Check me.
diff --git a/build.sh b/build.sh
new file mode 100755 (executable)
index 0000000..d20aabf
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,39 @@
+#!/bin/bash
+
+if [ "$1" == "" ]; then
+       echo "Please pass one of the following languages:"
+       cd scripts
+       for f in *; do
+               echo "   * $f"
+       done
+       cd ..
+       exit 0
+fi
+
+cd scripts
+if [ -d $1 ] && [ -d ../data/Data/Sce ]; then
+       cd $1
+       
+       # Inject translation.
+       for f in *.txt; do
+               CURRENT_VOL=$(basename "$f" .txt)
+
+               if [ -e $CURRENT_VOL.txt ]; then
+                       mv ../../data/Data/Sce/$CURRENT_VOL.vol{,.bak}
+                       ../../tools/scetool.$(uname -m) inject ../../data/Data/Sce/$CURRENT_VOL.vol.bak $CURRENT_VOL.txt ../../data/Data/Sce/$CURRENT_VOL.vol
+               fi
+       done
+       
+       cd ../../patches/$1/
+
+       # Apply deltas.
+       
+       for f in *.xdelta3; do
+               APPLYTO=$(basename $f .xdelta3)
+
+               mv ../../data/${APPLYTO}{,.bak}
+               xdelta3 -d -s ../../data/$APPLYTO.bak $f ../../data/$APPLYTO
+       done
+else
+       echo "Not a valid translation or data not copied into data/ folder."
+fi
\ No newline at end of file
diff --git a/data/.keep b/data/.keep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/patches/en/MaihanaConfig.exe.xdelta3 b/patches/en/MaihanaConfig.exe.xdelta3
new file mode 100644 (file)
index 0000000..6b2681a
Binary files /dev/null and b/patches/en/MaihanaConfig.exe.xdelta3 differ
diff --git a/patches/jp/.keep b/patches/jp/.keep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/scripts/en/SceHelp.txt b/scripts/en/SceHelp.txt
new file mode 100644 (file)
index 0000000..7857450
--- /dev/null
@@ -0,0 +1,357 @@
+[28 0x000002F0 01 *Patch]
+I'll teach you all sorts of things.
+Select an option you want to hear about.
+[2A 0x00000780 01 *Patch]
+You still want me to tell you more?
+Guess it can't be helped, then.
+[2A 0x00000BF4 01 *Patch]
+Satori is cute, isn't she?
+[2A 0x00000D64 01 *Patch]
+When done with the explanation, return to the menu.
+[2A 0x0000112C 01 *Patch]
+In Gensokyo, going through the Bullet Hell
+you'll meet foes like Ms. Fairy here.
+[2A 0x0000129C 01 *Patch]
+In the end of the stage, there's a boss.
+Lily White is similar to these strong
+foes.
+[2A 0x0000140C 01 *Patch]
+Like Lily, a revolving mark with
+'BREAK CHANCE' written will
+display around them.
+[2A 0x0000157C 01 *Patch]
+See to the right in the image?
+Lily's in that state there.
+[2A 0x000016EC 01 *Patch]
+With this mark, no matter how long you
+shoot, it won't work. There's a need
+to use /Bullet Ferry/.
+[2A 0x0000185C 01 *Patch]
+First off, I might not have had much
+trouble, but /Bullet Ferry/'s
+timing is vital.
+[2A 0x000019CC 01 *Patch]
+By absorbing bullets it's possible to defeat
+foes without seeing the mark there, as well.
+Take that into account.
+[2A 0x00001B3C 01 *Patch]
+After defeating Lily, sometimes items like
+Bombs, 1UPs, and others drop too.
+Keep at it, and you'll do fine, okay?
+[2A 0x00001F4C 01 *Patch]
+\81y\90H\82ç\82¢\83X\83y\83\8b\83J\81[\83h\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x000020BC 01 *Patch]
+\96{\97\88\92e\82É\93\96\82½\82Á\82Ä\82µ\82Ü\82¤\82Æ
+\8c\82\94j\82³\82ê\82Ä\97\8e\82¿\82Ä\82µ\82Ü\82¤\82Ì\82¾\82¯\82Ç
+[2A 0x0000222C 01 *Patch]
+\8eÀ\82Í\81A\93\96\82½\82Á\82Ä\82µ\82Ü\82Á\82½\8fu\8aÔ\82É
+\83X\83y\83\8b\83J\81[\83h\82ð\94­\93®\82·\82é\82Æ
+\82È\82©\82Á\82½\82±\82Æ\82É\82Å\82«\82é\82Ì\81B
+[2A 0x0000239C 01 *Patch]
+\82µ\82©\82à\81A\83X\83y\83\8b\83J\81[\83h\82à\94­\93®\82·\82é\82©\82ç
+\82Ü\82³\82É\88ê\90Î\93ñ\92¹\82Æ\82Í\82±\82Ì\82±\82Æ\82Ë\81B
+[2A 0x0000250C 01 *Patch]
+\82Å\82à\91_\82Á\82Ä\94­\93®\82·\82é\82Ì\82Í
+\82Æ\82Ä\82à\93ï\82µ\82¢\82Ì\81c\81B
+[2A 0x0000267C 01 *Patch]
+\82Æ\82è\82 \82¦\82¸\92e\82É\93\96\82½\82è\82»\82¤\82É\82È\82Á\82½\82ç
+\83X\83y\83\8b\83J\81[\83h\82ð\94­\93®\81I
+\82Æ\8dl\82¦\82Ä\82¨\82­\82Æ\82¢\82¢\82Ì\82©\82à\82µ\82ê\82È\82¢\82í\82Ë\81B
+[2A 0x000027EC 01 *Patch]
+\8fã\8eè\82¢\90l\82Í\82±\82ê\82ð\91_\82Á\82Ä\82Å\82«\82é\82Ì\82©\82µ\82ç\81c\81B
+[2A 0x00002BFC 01 *Patch]
+\81y\92e\96\8b\93n\82è\82Ì\83_\83\81\81[\83W\81z\82É\82Â\82¢\82Ä\90à\96¾\82·\82é\82í\81B
+[2A 0x00002D6C 01 *Patch]
+\81y\92e\96\8b\93n\82è\81z\82Í\92e\82ð\8bz\8eû\82·\82ê\82Î\82·\82é\82Ù\82Ç
+\91\8a\8eè\82É\97^\82¦\82é\83_\83\81\81[\83W\82ª\91å\82«\82­\82È\82é\82Ì\81B
+[2A 0x00002EDC 01 *Patch]
+\8bz\8eû\82µ\82½\92e\82Ì\90\94\82Í
+\82±\82Ì\89æ\91\9c\82Ì\82æ\82¤\82É\95\\8e¦\82³\82ê\82é\82©\82ç
+\96Ú\88À\82É\82µ\82Ä\82Ë\81B
+[2A 0x0000304C 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\83o\83g\83\8b\82â
+\92e\96\8b\82Å\89æ\96Ê\82ª\96\84\82Ü\82è\82»\82¤\82È\82Æ\82«\82Í
+\8eÀ\82Í\83`\83\83\83\93\83X\82Æ\82¢\82¤\82±\82Æ\82Ë\81B
+[2A 0x000031BC 01 *Patch]
+\92e\96\8b\82ð\97\98\97p\82·\82ê\82Î
+\83{\83X\82à\82¢\82¿\82±\82ë\82È\82Ì\82æ\81B\82Ó\82Ó\81B
+[2A 0x0000332C 01 *Patch]
+\81y\8c\8b\8aE\81z\82ð\8eg\82¤\82¾\82¯\82Å\82à
+\92e\82ð\8bz\8eû\82Å\82«\82é\82©\82ç
+\8dQ\82Ä\82È\82¢\82Å\8aæ\92£\82é\82Ì\82æ\81B
+[2A 0x0000373C 01 *Patch]
+\81y\83A\83C\83e\83\80\82Ì\8cø\89Ê\81z\82É\82Â\82¢\82Ä\82Ì\90à\96¾\82Ë\81B
+[2A 0x000038AC 01 *Patch]
+\83\8a\83\8a\81[\82½\82¿\82ð\93|\82·\82Æ
+\82½\82Ü\82É\83A\83C\83e\83\80\82ð\82¾\82·\82±\82Æ\82ª\82 \82é\82Ì\81B
+[2A 0x00003A1C 01 *Patch]
+\83A\83C\83e\83\80\82ð\82Æ\82é\82Æ
+\89æ\91\9c\82É\82 \82é\82æ\82¤\82È\8cø\89Ê\82ª\94­\8aö\82³\82ê\82é\82í\81B
+[2A 0x00003B8C 01 *Patch]
+\83A\83C\83e\83\80\82Í\88ê\92è\8e\9e\8aÔ\82Å\90Ø\82è\91Ö\82í\82é\82©\82ç
+\82¨\96Ú\93\96\82Ä\82Ì\83A\83C\83e\83\80\82ª\82Å\82é\82Ü\82Å
+\82Æ\82ç\82È\82¢\95û\82ª\82¢\82¢\82Ì\82¾\82¯\82Ç\81c\81B
+[2A 0x00003CFC 01 *Patch]
+\82Æ\82Í\82¢\82Á\82Ä\82à
+\92e\96\8b\82Ì\92\86\91Ò\82Â\82Ì\82Í\82Æ\82Ä\82à\91å\95Ï\82æ\82Ë\81c\81B
+[2A 0x00003E6C 01 *Patch]
+\82Ü\82 \81A\82Ç\82Ì\83A\83C\83e\83\80\82ð\82Æ\82Á\82Ä\82à
+\83v\83\89\83X\82É\82È\82é\82Æ\8ev\82¤\82©\82ç
+\82 \82Ü\82è\8bC\82É\82µ\82È\82¢\82Å\82à\82¢\82¢\82Æ\8ev\82¤\82í\81B
+[2A 0x0000427C 01 *Patch]
+\81y\83A\83C\83e\83\80\82Ì\89æ\96Ê\92[\89ñ\8eû\81z\82Ë\81B
+[2A 0x000043EC 01 *Patch]
+\81y\82o\81z\82â\81y\93_\81z\82Ì\83A\83C\83e\83\80\82Í
+\89æ\96Ê\92[\82É\83L\83\83\83\89\83N\83^\81[\82ð\88Ú\93®\82³\82¹\82é\82±\82Æ\82Å
+\89ñ\8eû\82·\82é\82±\82Æ\82ª\82Å\82«\82é\82í\81B
+[2A 0x0000455C 01 *Patch]
+\89E\82É\83V\83\87\83b\83g\82µ\82Ä\93|\82µ\82½\8fê\8d\87\82Í\89æ\96Ê\89E\82Å\81B
+\8d\82É\83V\83\87\83b\83g\82µ\82Ä\93|\82µ\82½\8fê\8d\87\82Í\89æ\96Ê\8d\82Å\81B
+\82»\82ê\82¼\82ê\89ñ\8eû\82·\82é\82±\82Æ\82ª\82Å\82«\82é\82í\81B
+[2A 0x000046CC 01 *Patch]
+\89æ\96Ê\92[\82É\88Ú\93®\82·\82é\82±\82Æ\82Å
+\8b}\82É\93G\82ª\8fo\82Ä\82­\82é\83\8a\83X\83N\82ª\82 \82é\82©\82ç
+\82æ\82­\8dl\82¦\82Ä\88Ú\93®\82·\82é\82Ì\82æ\81B
+[2A 0x0000483C 01 *Patch]
+\82»\82ê\82Æ\81A\89ñ\8eû\82É\82Í\88ê\82Â\82¾\82¯\8fð\8c\8f\82ª\82 \82Á\82Ä
+\8c\8b\8aE\83Q\81[\83W\82ª\96\9e\83^\83\93\82Å\82È\82¢\82Æ
+\89ñ\8eû\82Í\82Å\82«\82È\82¢\82Ì\81B
+[2A 0x000049AC 01 *Patch]
+\82Ü\82Á\82½\82­\97Z\92Ê\82ª\82«\82©\82È\82¢\82í\82æ\82Ë\81c\81B
+[2A 0x00004B1C 01 *Patch]
+\82Ü\82 \81A\81y\92e\96\8b\93n\82è\81z\82©\81y\83A\83C\83e\83\80\89ñ\8eû\81z\82©
+\82¤\82Ü\82­\8eg\82¢\95ª\82¯\82é\82Ì\82ª\97Ç\82³\82»\82¤\82Ë\81B
+[2A 0x00004F2C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\82Ì\8dU\97ª\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x0000509C 01 *Patch]
+\91\8a\8eè\82ª\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82Á\82Ä\82«\82½\8fê\8d\87\82É
+\93Á\92è\82Ì\8fð\8c\8f\82ð\96\9e\82½\82µ\82½\82Ü\82Ü
+[2A 0x0000520C 01 *Patch]
+\91\8a\8eè\82Ì\91Ì\97Í\82ð\82O\82É\82·\82é\82±\82Æ\82Å
+\83X\83y\83\8b\83J\81[\83h\82ð\8dU\97ª\82µ\82½\82±\82Æ\82É\82È\82é\82í\81B
+[2A 0x0000537C 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\82ð\8dU\97ª\82·\82é\82Æ
+\89æ\91\9c\82Ì\82æ\82¤\82É\95\\8e¦\82³\82ê\82é\82©\82ç
+\96Ú\88À\82É\82µ\82Ä\82Ý\82Ä\82Ë\81B
+[2A 0x000054EC 01 *Patch]
+\82Å\81A\82»\82Ì\8fð\8c\8f\82È\82Ì\82¾\82¯\82Ç\81c
+[2A 0x0000565C 01 *Patch]
+\81s\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82í\82È\82¢\81t\82Æ
+\81s\88ê\93x\82à\92e\82É\93\96\82½\82ç\82¸\97\8e\82¿\82È\82¢\81t\82Ì
+[2A 0x000057CC 01 *Patch]
+\82±\82Ì\93ñ\82Â\82Ì\8fð\8c\8f\82ð\96\9e\82½\82·\82±\82Æ\82ª\95K\97v\82È\82Ì\81B
+[2A 0x0000593C 01 *Patch]
+\8c¾\82¤\82¾\82¯\82Í\8aÈ\92P\82È\82Ì\82æ\82Ë\81c\81c\81B
+[2A 0x00005AAC 01 *Patch]
+\82Æ\82É\82©\82­\81A\96Ú\95W\82Æ\82µ\82Ä\82Í
+\82±\82Ì\81s\83X\83y\83\8b\83J\81[\83h\82Ì\8dU\97ª\81t\82ð
+\96Ú\8ew\82·\82Ì\82ª\82¢\82¢\82Æ\8ev\82¤\82í\81B
+[2A 0x00005C1C 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\82ð\8dU\97ª\82·\82é\82±\82Æ\82Å
+\90V\82µ\82¢\94­\8c©\82à\82 \82é\82©\82à\82µ\82ê\82È\82¢\82©\82ç\82Ë\81c\81B
+[2A 0x0000602C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x0000619C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\81z\82Æ\82¢\82¤\82Ì\82Í\82Ë\81c\81c
+[2A 0x0000630C 01 *Patch]
+\81c\81c
+[2A 0x0000647C 01 *Patch]
+\90à\96¾\82·\82é\82Æ\92·\82­\82È\82é\82©\82ç
+\8fÚ\82µ\82­\82Í\8e©\95ª\82Å\92²\82×\82é\82±\82Æ\82Ë\81B
+[2A 0x000065EC 01 *Patch]
+\8aÈ\92P\82É\82¢\82¤\82Æ\81s\96¼\91O\82Ì\82Â\82¢\82½\93Á\8eê\82È\8dU\8c\82\81t
+\82Æ\82¢\82Á\82½\82Æ\82±\82ë\82Ë\81B
+[2A 0x0000675C 01 *Patch]
+\89æ\91\9c\82É\82 \82é\82æ\82¤\82É
+\91å\82«\82¢\95\8e\9a\82ª\82Î\82Î\81[\82ñ\82Æ\82Å\82é\82©\82ç
+\82Æ\82Ä\82à\82í\82©\82è\82â\82·\82¢\82í\82Ë\81B
+[2A 0x000068CC 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\81z\82É\82Â\82¢\82Ä\82Í
+\8d¡\89ñ\82Í\82»\82¤\82¢\82¤\82à\82Ì\82Æ\8ev\82Á\82Ä\82¢\82ê\82Î
+\91å\8fä\95v\82¾\82Æ\8ev\82¤\82í\81B
+[2A 0x00006CDC 01 *Patch]
+\92e\82ð\94ð\82¯\82é\82±\82Æ\82É\82Â\82¢\82Ä
+\8cy\82¢\83A\83h\83o\83C\83X\82ð\82µ\82Ä\82 \82°\82é\82í\82Ë\81B
+[2A 0x00006E4C 01 *Patch]
+\82Æ\82Í\82¢\82Á\82Ä\82à
+\8e\84\82à\94ð\82¯\82é\82Ì\82Í\93¾\88Ó\82È\82Ù\82¤\82\82á\82È\82¢\82©\82ç
+\8f\89\95à\93I\82È\82±\82Æ\82Æ\8ev\82Á\82Ä\82¿\82å\82¤\82¾\82¢\81B
+[2A 0x00006FBC 01 *Patch]
+\92e\82É\82Í\82¢\82­\82Â\82©\8eí\97Þ\82ª\82 \82é\82Ì\82¾\82¯\82Ç
+\81y\8e©\8b@\91_\82¢\92e\81z\82Æ\82¢\82¤\82à\82Ì\82ª\82 \82é\82Ì\81B
+[2A 0x0000712C 01 *Patch]
+\82±\82Ì\92e\82Í\96¼\91O\82Ì\82Æ\82¨\82è\82Å\81A
+\89æ\91\9c\82Ì\82æ\82¤\82É\8e©\8b@\82É\8cü\82©\82Á\82Ä\82­\82é\82í\81B
+[2A 0x0000729C 01 *Patch]
+\92e\82ð\94ð\82¯\82é\82Æ\82¢\82¤\82Æ
+\89æ\96Ê\82ð\8f\8a\8b·\82µ\82Æ\93®\82«\89ñ\82é
+\83C\83\81\81[\83W\82ª\82 \82é\82Æ\8ev\82¤\82¯\82Ç\81c
+
+[2A 0x0000740C 01 *Patch]
+\82±\82¤\82¢\82Á\82½\81y\8e©\8b@\91_\82¢\92e\81z\82Ý\82½\82¢\82È\82à\82Ì\82Í
+\96Ú\95W\82ð\95Ï\82¦\82é\82±\82Æ\82ª\82È\82¢\82©\82ç
+\8f­\82µ\93®\82­\82¾\82¯\82Å\94ð\82¯\82é\82±\82Æ\82ª\82Å\82«\82é\82í\81B
+[2A 0x0000757C 01 *Patch]
+\8dÅ\8f¬\8cÀ\82Ì\93®\82«\82Å\94ð\82¯\82é\82±\82Æ\82Å
+\82»\82Ì\8cã\82É\8c\82\82½\82ê\82é\92e\82ª
+\89æ\96Ê\8fã\82É\8eU\82ç\82È\82­\82È\82é\8cø\89Ê\82à\82 \82é\82Ì\81B
+[2A 0x000076EC 01 *Patch]
+\8dÅ\8f\89\82Í\82±\82¤\82¢\82Á\82½\93®\82«\82ð\90S\82ª\82¯\82é\82Æ
+\8fã\92B\82·\82é\82©\82à\82µ\82ê\82È\82¢\82í\82Ë\81B
+[2A 0x00007AFC 01 *Patch]
+\81y\83O\83\8c\83C\83Y\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x00007C6C 01 *Patch]
+\81y\83O\83\8c\83C\83Y\81z\82Æ\82¢\82¤\82Ì\82Í\8aÈ\92P\82É\8c¾\82¤\82Æ
+\92e\82É\81u\82©\82·\82é\81v\82Æ\82¢\82¤\82±\82Æ\82æ\81B
+[2A 0x00007DDC 01 *Patch]
+\92e\82ð\82¬\82è\82¬\82è\82Å\94ð\82¯\82Ä\82©\82·\82é\82±\82Æ\82Í
+\8c\8b\8d\\93ï\82µ\82¢\82µ\81A\83\8a\83X\83N\82à\82 \82é\82¯\82Ç
+[2A 0x00007F4C 01 *Patch]
+\8c\8b\8aE\83Q\81[\83W\82ª\91½\8f­\89ñ\95\9c\82·\82é\82©\82ç
+\83\8a\83X\83N\82É\8c©\8d\87\82¤\82¾\82¯\82Ì\8cø\89Ê\82Í
+\82 \82é\82©\82à\82µ\82ê\82È\82¢\82í\82Ë\81B
+[2A 0x000080BC 01 *Patch]
+\8e©\8b@\82ð\91_\82Á\82Ä\82­\82é\92e\82Í
+\81s\83O\83\8c\83C\83Y\81t\82·\82é\82É\82Í
+\82¿\82å\82¤\82Ç\97Ç\82¢\82©\82ç
+[2A 0x0000822C 01 *Patch]
+\97û\8fK\82µ\82Ä\82Ý\82é\82Ì\82à\82¢\82¢\82Æ\8ev\82¤\82í\81B
+[2A 0x0000863C 01 *Patch]
+\81y\83\8c\81[\83g\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x000087AC 01 *Patch]
+\89æ\96Ê\82Ì\8d\8fã\82É
+\81y\83\8c\81[\83g\81z\82Æ\82¢\82¤\82à\82Ì\82ª\82 \82é\82í\81B
+[2A 0x0000891C 01 *Patch]
+\82±\82Ì\81y\83\8c\81[\83g\81z\82Í\81A\83X\83R\83A\82ª\89Á\8eZ\82³\82ê\82é\8e\9e\82É
+\8a|\82¯\82ç\82ê\82é\92l\82Ì\82±\82Æ\82æ\81B
+[2A 0x00008A8C 01 *Patch]
+\82±\82ñ\82È\90à\96¾\82¾\82Æ\82í\82©\82è\82É\82­\82¢\82¯\82Ç
+\82æ\82¤\82·\82é\82É\81A\82±\82Ì\81y\83\8c\81[\83g\81z\82Ì\92l\82ð
+\8d\82\82­\82·\82ê\82Î\8d\82\93¾\93_\82ª\91_\82¦\82é\81B
+[2A 0x00008BFC 01 *Patch]
+\82Æ\8dl\82¦\82Ä\82à\82ç\82Á\82Ä\82©\82Ü\82í\82È\82¢\82í\81B
+[2A 0x00008D6C 01 *Patch]
+\95\81\92Ê\82É\97V\82Ô\95ª\82É\8aÖ\8cW\82È\82¢\82©\82ç
+\82â\82è\82±\82ñ\82Å\82Ý\82æ\82¤\82Æ\8ev\82Á\82½\8e\9e\82¾\82¯
+\8bC\82É\82µ\82Ä\82Ý\82é\82Æ\82¢\82¢\82í\81B
+[2A 0x00008EDC 01 *Patch]
+\88ê\89\9e\81y\83\8c\81[\83g\81z\82ð\8fã\82°\82é\95û\96@\82ð
+\8b³\82¦\82Ä\82¨\82­\82í\82Ë\81B
+[2A 0x0000904C 01 *Patch]
+\81s\83O\83\8c\83C\83Y\81t\82Æ\81s\88Ú\93®\82ð\82µ\82È\82¢\81t
+\82±\82Ì\93ñ\82Â\82É\82È\82é\82í\81B
+[2A 0x000091BC 01 *Patch]
+\96³\91Ê\82È\93®\82«\82ð\82µ\82È\82¢\82æ\82¤\82É\82·\82é\82Æ
+\81y\83\8c\81[\83g\81z\82ª\8fã\8f¸\82·\82é\82Æ\82¢\82¤\82±\82Æ\82Ë\81B
+[2A 0x0000932C 01 *Patch]
+\82Æ\82Í\82¢\82¦\81A\82±\82ê\82ð\88Ó\8e¯\82·\82é\82Æ
+\8c\8b\8d\\92e\82É\93\96\82½\82Á\82Ä
+\97\8e\82¿\82Ä\82µ\82Ü\82¤\8bC\82ª\82·\82é\82©\82ç
+[2A 0x0000949C 01 *Patch]
+\8fã\8eè\82­\82È\82ç\82È\82¢\82¤\82¿\82Í
+\8dl\82¦\82È\82¢\95û\82ª\96³\93ï\82Ë\81B
+[2A 0x000098AC 01 *Patch]
+\81y\83{\83X\82Ì\82Æ\82Ç\82ß\83T\81[\83N\83\8b\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x00009A1C 01 *Patch]
+\83\8a\83\8a\81[\82à\82»\82¤\82¾\82¯\82Ç
+\83{\83X\82Ì\82g\82o\82ª\82O\82É\82È\82é\82Æ
+\89~\8c`\82Ì\83T\81[\83N\83\8b\82ª\95\\8e¦\82³\82ê\82é\82í\81B
+[2A 0x00009B8C 01 *Patch]
+\83{\83X\82Ì\8fê\8d\87\82Í
+\83V\83\87\83b\83g\82Å\82g\82o\82ð\82O\82É\82µ\82½\8fu\8aÔ\82É\88ê\93x\82¾\82¯
+\8c\8b\8aE\83Q\81[\83W\82ª\96\9e\83^\83\93\82Ü\82Å\89ñ\95\9c\82·\82é\82í\81B
+[2A 0x00009CFC 01 *Patch]
+\82¾\82©\82ç\81A\83{\83X\82¾\82©\82ç\82Æ\82¢\82Á\82Ä
+\82Æ\82Ç\82ß\97p\82É\8c\8b\8aE\83Q\81[\83W\82ð\89·\91\82µ\82È\82¢\82Å
+\92e\96\8b\93n\82è\82ð\8eg\82Á\82½\95û\82ª\93¾\82È\82Ì\81B
+[2A 0x00009E6C 01 *Patch]
+\8aî\96{\93I\82É\92e\96\8b\93n\82è\82ð\8eg\82Á\82½\95û\82ª
+\82½\82­\82³\82ñ\82Ì\83_\83\81\81[\83W\82ð\83{\83X\82É\97^\82¦\82ç\82ê\82é\81B
+\82Æ\82¢\82¤\82±\82Æ\82ð\8ao\82¦\82Ä\82¨\82­\82±\82Æ\82Ë\81B
+[2A 0x00009FDC 01 *Patch]
+\83V\83\87\83b\83g\82¾\82¯\82Å\83o\83g\83\8b\82µ\82Ä\82¢\82é\82Æ
+\8c\8b\8d\\8bê\90í\82·\82é\82©\82ç\81c\81B
+[2A 0x0000A3EC 01 *Patch]
+\81y\92e\82Ì\82 \82½\82è\94Í\88Í\81z\82Ë\81B
+[2A 0x0000A55C 01 *Patch]
+\82±\82Ì\83Q\81[\83\80\82Ì\92e\82Ì\93\96\82½\82è\82Í
+\8c©\82½\96Ú\82æ\82è\82à\8f¬\82³\82¢\82Ì\82ª\82Ù\82Æ\82ñ\82Ç\82È\82Ì\81B
+[2A 0x0000A6CC 01 *Patch]
+\94ð\82¯\82ê\82È\82¢\82Æ\8ev\82Á\82Ä\82µ\82Ü\82¤\92e\96\8b\82Å\82à
+\92e\82Æ\92e\82Ì\8aÔ\82Í\91å\91Ì\94²\82¯\82ç\82ê\82é\82©\82ç
+\82 \82«\82ç\82ß\82È\82¢\82±\82Æ\82Ë\81B
+[2A 0x0000A83C 01 *Patch]
+\82 \82Æ\81A\89æ\91\9c\82É\82 \82é\92e\82Ì\82 \82½\82è\94Í\88Í\82Í
+\82 \82­\82Ü\82Å\83C\83\81\81[\83W\82¾\82©\82ç
+\90M\97p\82µ\82·\82¬\82È\82¢\82Å\82Ë\81c\81B
+[2A 0x0000A9AC 01 *Patch]
+\83Q\81[\83\80\82É\8aµ\82ê\82Ä\82­\82é\82Æ
+\8c©\82½\96Ú\93I\82É\82Í\82¤\82í\82Á\82Ä\8ev\82¤\82à\82Ì\82Å\82à
+[2A 0x0000AB1C 01 *Patch]
+\88Ä\8aO\8aÈ\92P\82É\94ð\82¯\82ê\82é\82©\82ç
+\8aæ\92£\82é\82±\82Æ\82Ë\81B
+[2A 0x0000AC8C 01 *Patch]
+\8aú\91Ò\82µ\82Ä\82¢\82é\82í\81B
+[2A 0x0000B09C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82¨\82¤\81z\82Ë\81B
+[2A 0x0000B20C 01 *Patch]
+\83{\83X\82Ì\83X\83y\83\8b\83J\81[\83h\82Ì\8dU\97ª\82É\82Í
+\82±\82Á\82¿\82Ì\83X\83y\83\8b\83J\81[\83h\82Í
+\8eg\82Á\82Ä\82Í\82¢\82¯\82È\82¢\81c\81c
+[2A 0x0000B37C 01 *Patch]
+\82Æ\82¢\82¤\82Ì\82Í\92m\82Á\82Ä\82é\82í\82æ\82Ë\81B
+[2A 0x0000B4EC 01 *Patch]
+\82»\82¤\82È\82é\82Æ\81A\91Î\83{\83X\90í\82É\82¨\82¢\82Ä\82Í
+\83X\83y\83\8b\83J\81[\83h\82È\82ñ\82Ä\8eg\82¢\95¨\82É\82È\82ç\82È\82¢
+\82Æ\8ev\82¤\82±\82Æ\82à\82 \82é\82í\82æ\82Ë\81c\81c\81B
+[2A 0x0000B65C 01 *Patch]
+\8eÀ\8dÛ\81A\91\8a\8eè\82É\83X\83y\83\8b\83J\81[\83h\82Ì\8dU\97ª\82É\82Í
+\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82Á\82Ä\82µ\82Ü\82¤\82Æ
+\8dU\97ª\8e¸\94s\82É\82È\82Á\82Ä\82µ\82Ü\82¤\82Ì\82¾\82¯\82Ç
+[2A 0x0000B7CC 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\88È\8aO\82Ì\8dU\8c\82\82É\91Î\82µ\82Ä\82Í
+\82±\82Á\82¿\82Ì\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82Á\82Ä\82à
+\93Á\82É\91¹\82É\82È\82é\82±\82Æ\82Í\82È\82¢\82Ì\81B
+[2A 0x0000B93C 01 *Patch]
+\82¾\82©\82ç\81u\83{\83X\90í\81\81\83X\83y\83\8b\83J\81[\83h\8eg\82¦\82È\82¢\81v
+\82Æ\82¢\82¤\82í\82¯\82\82á\82È\82¢\82Ì\82Å
+\82½\82­\82³\82ñ\8eg\82Á\82Ä\82¢\82­\82Æ\82¢\82¢\82í\81B
+[2A 0x0000BD4C 01 *Patch]
+\81y\92e\96\8b\93n\82è\82Ì\91\80\8dì\95û\96@\81z\82Ë\81B
+[2A 0x0000BEBC 01 *Patch]
+\83`\83\85\81[\83g\83\8a\83A\83\8b\82Å\90à\96¾\82µ\82Ä\82¢\82é
+\92e\96\8b\93n\82è\82Ì\91\80\8dì\95û\96@\82È\82Ì\82¾\82¯\82Ç
+[2A 0x0000C02C 01 *Patch]
+\8c\8b\8aE\92\86\82É\95û\8cü\83L\81[\89\9f\82µ\82È\82ª\82ç\81w\82c\83{\83^\83\93\81x
+\82Å\94­\93®\82·\82é\82¾\82¯\82Å\82È\82­
+[2A 0x0000C19C 01 *Patch]
+\81w\82c\83{\83^\83\93\81x\82ð\89\9f\82µ\82È\82ª\82ç\95û\8cü\83L\81[\82Å\82à
+\94­\93®\82·\82é\82±\82Æ\82ª\82Å\82«\82é\82Ì\81B
+[2A 0x0000C30C 01 *Patch]
+\82Ç\82Á\82¿\82Ì\91\80\8dì\82ª\82¢\82¢
+\82Æ\82¢\82¤\82±\82Æ\82Í\82È\82¢\82Ì\82Å
+\8e©\95ª\82É\82 \82Á\82½\91\80\8dì\82Å\8aæ\92£\82é\82±\82Æ\82Ë\81B
+[2A 0x0000C71C 01 *Patch]
+\81y\83C\81[\83W\81[\81i\8f\89\8b\89\81j\83\82\81[\83h\81z\82Ë\81B
+[2A 0x0000C88C 01 *Patch]
+\83Q\81[\83\80\82ð\8en\82ß\82é\82Æ\82«\82É\82Í
+\93ï\88Õ\93x\82ð\91I\91ð\82·\82é\82í\82æ\82Ë\81B
+[2A 0x0000C9FC 01 *Patch]
+\82»\82Ì\93ï\88Õ\93x\82Ì\81u\83m\81[\83}\83\8b\81i\92\86\8b\89\81j\81v\82Á\82Ä
+\82È\82©\82È\82©\93ï\82µ\82¢\82Ì\81c\81c
+[2A 0x0000CB6C 01 *Patch]
+\82¾\82©\82ç\81A\8f­\82µ\82Å\82à\93ï\82µ\82¢\82Æ\8ev\82Á\82½\82ç
+\96À\82í\82¸\81u\83C\81[\83W\81[\81i\8f\89\8b\89\81j\83\82\81[\83h\81v\82ð
+\91I\82ñ\82¾\95û\82ª\82¢\82¢\82í\81B
+[2A 0x0000CCDC 01 *Patch]
+\81u\83C\81[\83W\81[\81i\8f\89\8b\89\81j\83\82\81[\83h\81v\82Í
+\8eÀ\90Ñ\82Æ\82¢\82¤\82¨\82Ü\82¯\97v\91f\82ª\8eæ\82ê\82È\82¢\82±\82Æ\88È\8aO\82Í
+\93Á\82É\83y\83i\83\8b\83e\83B\82Í\82È\82¢\82Ì\81B
+[2A 0x0000CE4C 01 *Patch]
+\82È\82Ì\82Å\88À\90S\82µ\82Ä\81A\82Ü\82¸\82Í
+\81u\83C\81[\83W\81[\81i\8f\89\8b\89\81j\83\82\81[\83h\81v\82Å\8aµ\82ê\82Ä\82©\82ç
+\8e\9f\82Ì\93ï\88Õ\93x\82É\92§\90í\82·\82é\82Æ\82¢\82¢\82í\81B
+[2A 0x0000CFBC 01 *Patch]
+\8dÅ\8cã\82Ü\82Å\97V\82Ô\82±\82Æ\82à\82Å\82«\82é\82©\82ç
+\83A\83N\83V\83\87\83\93\82â\83V\83\85\81[\83e\83B\83\93\83O\82ª
+\8bê\8eè\82È\90l\82Í\96³\97\9d\82µ\82È\82¢\82±\82Æ\82Ë\81B
diff --git a/scripts/en/SceStageMarisa.txt b/scripts/en/SceStageMarisa.txt
new file mode 100644 (file)
index 0000000..2694ab6
--- /dev/null
@@ -0,0 +1,1553 @@
+[28 0x00000374 02 *Marisa]
+\81u\8dg\82Ì\8aÙ\82É\8fp\82ð\8d\82\82ß\82é\8bH\97L\82È\95ó\97L\82è\81v
+\81c\81c\82©
+[2A 0x00000524 02 *Marisa]
+\8d\81èÁ\82ª\82Ó\82Æ\98R\82ç\82µ\82½\82±\82Ì\8c¾\97t
+[2A 0x000006B8 02 *Marisa]
+\82±\82Ì\96\82\97\9d\8d¹\82³\82Ü\82ª
+\95·\82«\93¦\82·\82í\82¯\82ª\82È\82¢\81I
+[2A 0x0000084C 02 *Marisa]
+\91¬\8dU\81A\8bó\82ð\94ò\82Ñ\81A\90X\82ð\94²\82¯\81A\8dg\96\82\8aÙ\82Ö\81I
+[2A 0x000009E0 02 *Marisa]
+\81c\81c\81c\81c
+[2A 0x00000B74 02 *Marisa]
+\82Á\82Ä\82í\82¯\82È\82ñ\82¾\82¯\82Ç\81c\82È\82ñ\82¾\82æ\82±\82ê\81B
+\91O\82Ì\88Ù\95Ï\82Æ\93¯\82\8dg\82¢\96\81c\82¾\82æ\82È\81H
+[2A 0x00000D08 02 *Marisa]
+\82È\82ñ\82¾\82©\89¸\82â\82©\82\82á\82È\82¢\82È\81c
+\82¾\82©\82ç\82Á\82Ä\88ø\82«\95Ô\82·\8e\84\82\82á\82È\82¢\82¯\82Ç\82È\81I
+[2A 0x00000E9C 02 *Marisa]
+\82¨\95ó\82ð\93¦\82·\82í\82¯\82É\82Í\82¢\82©\82È\82¢\82º\81I\81I
+[2A 0x00001030 02 *Marisa]
+\81c\81c\81c\81c
+[2A 0x000011C4 02 *Marisa]
+\82¤\81[\82ñ\81A\97ì\96²\82É\89½\82©
+\97\8a\82Ü\82ê\82Ä\82½\82æ\81[\82È\8bC\82à\82·\82é\82¯\82Ç\81c
+[2A 0x00001358 02 *Marisa]
+\82È\82ñ\82¾\82Á\82¯\81c
+[28 0x000019BC 00 Marisa *Cirno]
+\82¿\82å\82¨\82¢\82Æ\91Ò\82¿\82È\81I
+[2A 0x00001BC4 00 *Marisa Cirno]
+\82È\82ñ\82¾\81H
+[2A 0x00001DB8 00 Marisa *Cirno]
+\82±\82Ì\82 \82½\82¢\82É\81A\82±\82±\82Å\89ï\82Á\82½\82ª\95S\94N\96Ú\81I
+\82à\82¤\82«\82Ì\82Ó\82Ú\82­\82¤\82Ç\82ñ\82°\82Ì\82Í\82È\81I
+[2A 0x00001FAC 00 *Marisa Cirno]
+\82Í\82 \81H\81H\81H
+[2A 0x000021A0 00 *Marisa Cirno]
+\82Ü\82½\82¨\91O\82©\81c\81B
+\81c\8e©\95ª\82Å\89½\8c¾\82Á\82Ä\82é\82©\82í\82©\82Á\82Ä\82ñ\82Ì\82©\81H
+[2A 0x00002394 00 Marisa *Cirno]
+\82Æ\81A\93\96\91R\82¾\82ë\82§\81I
+[2A 0x00002588 00 *Marisa Cirno]
+\82\82á\82 \90à\96¾\82µ\82Ä\82Ý\82ë\82æ
+[2A 0x0000277C 00 Marisa *Cirno]
+\81c\81c
+[2A 0x00002970 00 *Marisa Cirno]
+\82Í\82 \81c\82Á\82½\82­
+\82¨\91O\82Á\82Ä\8aú\91Ò\82ð\97 \90Ø\82ç\82È\82¢\82â\82Â\82¾\82È
+[2A 0x00002B64 00 Marisa *Cirno]
+\82 \81[\82Á\81A\8d¡\83o\83J\82É\82µ\82½\82¾\82ë\82§\81I
+[2A 0x00002D58 00 *Marisa Cirno]
+\82¨\82Á\81A\82»\82ê\82Í\82í\82©\82Á\82½\82ñ\82¾\81B
+\83`\83\8b\83m\82Í\82¨\97\98\8cû\82³\82ñ\82¾\82È\81[
+[2A 0x00002F4C 00 Marisa *Cirno]
+\82 \81A\93ª\82ð\95\8f\82Å\82é\82È\82 \81I
+[2A 0x00003140 00 *Marisa Cirno]
+\82¨\81A\8d¡\93x\82Í\93{\82Á\82½\82©\81I\81H
+\82 \82Í\82Í\81A\82¨\91O\82Í\96Ê\94\92\82¢\82È\81I
+[2A 0x00003334 00 Marisa *Cirno]
+\82Þ\81[\81[\81[\81[\81I
+[2A 0x00003528 00 *Marisa Cirno]
+\82·\82Ë\82é\82È\82æ
+[2A 0x0000371C 00 Marisa *Cirno]
+\82­\82Á\82»\82§\81I\81I
+[2A 0x00003910 00 Marisa *Cirno]
+\82¨\82Ü\82¦\82È\82ñ\82©
+\82¨\82Ü\82¦\82È\82ñ\82©\81c\81c
+[2A 0x00003B04 00 Marisa *Cirno]
+\83o\81[\83J\81I
+[2A 0x00003CF8 00 *Marisa Cirno]
+\88«\8cû\82­\82ç\82¢\82¿\82á\82ñ\82Æ
+\8c¾\82¦\82æ\82È\81c
+[2A 0x00003EEC 00 *Marisa Cirno]
+\82¢\82¢\82º\81A\91\8a\8eè\82É\82È\82Á\82Ä\82â\82é\81I
+[28 0x000045B0 00 *Marisa Cirno]
+\82â\82Á\82Ï\82¨\91O\82Á\82Ä\83o\83J\82¾\82È\82\9f\81c\81c
+[2A 0x000047B8 00 Marisa *Cirno]
+\82¤\81A\82¤\82é\82³\82¢\82¤\82é\82³\82¢\81I
+\8d¡\93ú\82Í\82¿\82å\82Á\82Æ\97V\82ñ\82Å\82â\82Á\82½\82¾\82¯\82¾\82æ\81I
+[2A 0x000049AC 00 *Marisa Cirno]
+\95\89\82¯\90É\82µ\82Ý\82©\82æ\81B\8c©\8bê\82µ\82¢\82¼
+[2A 0x00004BA0 00 Marisa *Cirno]
+\82 \82½\82¢\82Í\8dÅ\8b­\82Ì\97d\90¸\82È\82ñ\82¾\82©\82ç\81I
+[2A 0x00004D94 00 *Marisa Cirno]
+\92m\82Á\82Ä\82é\82æ\81B
+\82Ü\82½\97V\82ñ\82Å\82â\82é\82©\82ç\82³\81B\82¢\82Â\82Å\82à\82¢\82¢\82¼
+[2A 0x00004F88 00 Marisa *Cirno]
+\82¨\92f\82è\82¾\82æ\81I
+\82à\82¤\96\82\97\9d\8d¹\82Æ\97V\82ñ\82Å\82È\82ñ\82©\82â\82ç\82È\82¢\82©\82ç\81I
+[2A 0x0000517C 00 Marisa *Cirno]
+\82 \82½\82¢\82Í\96Z\82µ\82¢\82ñ\82¾\81I
+[2A 0x00005370 00 *Marisa Cirno]
+\96Z\82µ\82¢\82Á\82Ä\89½\82ª\81H
+[2A 0x00005564 00 Marisa *Cirno]
+\82»\81A\82»\82ê\82Í\81c\94é\96§\82¾\82æ\82Á\81I
+[2A 0x00005758 00 *Marisa Cirno]
+\94é\96§\82Á\82Ä\81A\82¨\91O\82à
+\92m\82ç\82È\82¢\82ñ\82\82á\82È\82¢\82¾\82ë\82¤\82È
+[2A 0x0000594C 00 Marisa *Cirno]
+\83M\81A\83M\83N\83b\81c
+[2A 0x00005B40 00 *Marisa Cirno]
+\82»\82ê\81A\82í\82©\82è\82â\82·\82·\82¬\82é\82¾\82ë\81c
+\82¢\82­\82ç\90}\90¯\82¾\82©\82ç\82Á\82Ä
+[2A 0x00005D34 00 *Marisa Cirno]
+\83M\83N\83b
+\82Æ\82©\8c¾\82¤\82©\81A\82Ó\82Â\81[
+[2A 0x00005F28 00 Marisa *Cirno]
+\82 \81A\82 \82½\82¢\82Í\82Ó\82Â\81[\82\82á\82È\82­\82Ä
+\8dÅ\8b­\82Ì\97d\90¸\82¾\82©\82ç
+[2A 0x0000611C 00 Marisa *Cirno]
+\8c¾\82¤\8e\9e\82Í\8c¾\82¤\82ñ\82¾\81I
+[2A 0x00006310 00 Marisa *Cirno]
+\82\82á\82 \81A\96Z\82µ\82¢\82©\82ç\8ds\82­\82æ\82Á\81I
+\82Ü\82½\82Ë\81I
+[2A 0x00006504 00 Marisa *Cirno]
+\81c\81c
+[2A 0x000066F8 00 Marisa *Cirno]
+\90_\8eÐ\82É\97V\82Ñ\82É\8ds\82­\82©\82ç\82Ë\81I
+[2A 0x000068EC 00 Marisa *Cirno]
+\81c\81c
+[2A 0x00006AE0 00 Marisa *Cirno]
+\8ds\82Á\82Ä\82à\82¢\82¢\82æ\82Ë\82Á\81I\81H
+[2A 0x00006CD4 00 *Marisa Cirno]
+\82»\82ê\82Í\82¢\82¢\82ñ\82¾\82ª\81c
+[2A 0x00006EC8 00 Marisa *Cirno]
+\82Ù\82Á\81c\82æ\82©\82Á\82½\82\9f\81c
+\82\82á\82 \8ds\82­\82©\82ç\81I
+[2A 0x000070BC 00 Marisa *Cirno]
+\96Z\82µ\82¢\96Z\82µ\82¢\81c
+[2A 0x0000737C 02 *Marisa]
+\82Á\82Ä\82¨\82¢\81I
+[2A 0x00007510 02 *Marisa]
+\81c\8ds\82Á\82¿\82á\82Á\82½\82È
+[2A 0x000076A4 02 *Marisa]
+\82È\82ñ\82È\82ñ\82¾\82 \82¢\82Â\82Í\81c
+\89½\82©\89B\82µ\82Ä\82é\82Ý\82½\82¢\82¾\82Á\82½\82ª\81c
+[2A 0x00007838 02 *Marisa]
+\82Ü\81A\82¢\82¢\82©\81I
+\90Ø\82è\91Ö\82¦\90Ø\82è\91Ö\82¦
+[2A 0x000079CC 02 *Marisa]
+\82±\82Ì\90æ\82É\82Í
+\82¨\95ó\82ª\91Ò\82Á\82Ä\82¢\82é\82ñ\82¾\82µ\82È\81I
+[28 0x00007FAC 00 Marisa *Cirno]
+\82¿\82å\82Á\82Æ\82¿\82å\82Á\82Æ\81I
+[2A 0x000081B4 00 Marisa *Cirno]
+\95s\88Ó\91Å\82¿\82È\82ñ\82Ä\94Ú\8b¯\82\82á\82ñ\81I
+[2A 0x000083A8 00 *Marisa Cirno]
+\82È\82ñ\82Å\82¾\81H
+\82±\82ê\82Í\90í\82¢\82È\82ñ\82¾\82º
+[2A 0x0000859C 00 Marisa *Cirno]
+\82®\82Ê\82Ê\82Ê\82Ê\82Ê\82Ê\81c
+[2A 0x00008790 00 *Marisa Cirno]
+\82³\82 \81A\91±\82«\82ð\82Í\82\82ß\82æ\82¤\82º
+[2A 0x00008984 00 Marisa *Cirno]
+\82à\82¤\93{\82Á\82½\82¼\81I
+\8b\83\82¢\82Ä\82à\92m\82ç\82È\82¢\82ñ\82¾\82©\82ç\82È\81I
+[28 0x00009048 02 *Marisa]
+\8eñ\94ö\82æ\82­\90ö\93ü\90¬\8c÷\81I
+\8ay\8f\9f\8ay\8f\9f\81ô
+[2A 0x000091F8 02 *Marisa]
+\82Ü\82Á\82½\82­\94ü\97é\82Í
+\82¿\82á\82ñ\82Æ\8ed\8e\96\82µ\82ë\82Á\82Ä\82Ì\81I
+[2A 0x0000938C 02 *Marisa]
+\82Æ\82Í\82¢\82¤\82à\82Ì\82Ì\81c\82±\82±\82Ç\82±\82¾\82æ\81I\81H
+[2A 0x00009520 02 *Marisa]
+\94\96\8bC\96¡\88«\82¢\82Æ\82±\82¾\82º\81B
+\82Ü\82³\82©\8dç\96é\82Ì\8ed\8bÆ\82©\81H
+[28 0x00009B84 02 *Marisa]
+\82Í\82 \81[\81B
+\82±\82ñ\82È\82Æ\82±\82É\82¨\95ó\82ª\82 \82é\82Æ\8ev\82¦\82È\82¢\82ª\81c
+[2A 0x00009D34 02 *Marisa]
+\82µ\82å\82¤\82ª\82È\82¢
+\88ê\89\9e\92T\82µ\82Ä\82¨\82­\82©\81c
+[2A 0x00009EC8 02 *Marisa]
+\82â\82ê\82â\82ê\81c
+\81c\81c
+[2A 0x0000A05C 02 *Marisa]
+\82Á\82Ä\81A\82È\82¢\82È\82 \81[
+\82 \82é\82í\82¯\82È\82¢\82æ\82È\82 
+[28 0x0000A214 02 *Sanae]
+\82»\82±\81A\83_\83\81\82Å\82·\82æ\81I
+[2A 0x0000A3C4 00 *Marisa Sanae]
+\82Ç\82«\81[\82ñ\81I
+[2A 0x0000A5B8 00 Marisa *Sanae]
+\8d¡\95Ð\95t\82¯\82½\82Æ\82±\82ë\82È\82ñ\82Å\82·\82©\82ç
+\90G\82ç\82È\82¢\82Å\89º\82³\82¢\81I
+[2A 0x0000A7AC 00 Marisa *Sanae]
+\82 \82Æ\81A\8d¡\81u\82Ç\82«\81[\82ñ\81v\82Á\82Ä
+\90S\82Ì\90º\82ð\8cû\82É\8fo\82µ\82Ü\82µ\82½\82Ë
+[2A 0x0000A9A0 00 *Marisa Sanae]
+\82¢\81A\82¢\82¢\82¾\82ë\82»\82ñ\82È\82±\82Æ\81I
+[2A 0x0000AB94 00 *Marisa Sanae]
+\91\81\95c\81c\82¨\91O
+\82È\82ñ\82Å\82±\82±\82É\82¢\82é\82ñ\82¾\81H
+[2A 0x0000AD88 00 Marisa *Sanae]
+\8cÄ\82Î\82ê\82Ä\97\88\82Ä\82Ý\82½\82ç
+\82±\82Ì\97L\97l\82¾\82Á\82½\82Ì
+[2A 0x0000AF7C 00 Marisa *Sanae]
+\82»\82ê\82Å\8e\84\81c
+\82â\82Á\82Æ\82±\82±\82Ü\82ÅãY\97í\82É\82µ\82½\82ñ\82Å\82·\82æ\81H
+[2A 0x0000B170 00 Marisa *Sanae]
+\8bM\95û\82Í\81A\82Ü\82½\8eU\82ç\82©\82·\8bC\81H
+[2A 0x0000B364 00 *Marisa Sanae]
+\82¢\81A\82¢\82â\82»\82¤\82¢\82¤\82í\82¯\82\82á\82È\82¢\82¯\82Ç\82³\81B
+\82¿\82å\82Á\82Æ\92T\82µ\82à\82Ì\82µ\82Ä\82Ä\81c
+[2A 0x0000B558 00 Marisa *Sanae]
+\82Ü\82Á\82½\82­\81I
+\83E\83`\82Æ\82¢\82¢\81A\82±\82±\82Æ\82¢\82¢\81I
+[2A 0x0000B74C 00 Marisa *Sanae]
+\8aF\81A\91|\8f\9c\82·\82é\90l\82Ì\82±\82Æ
+\82º\82ñ\82º\82ñ\8dl\82¦\82Ä\82È\82¢\82ñ\82¾\82©\82ç\81I
+[2A 0x0000B940 00 *Marisa Sanae]
+\92N\82Ì\98b\82µ\82Ä\82ñ\82¾\82æ\81c\81B
+\82»\82ê\82æ\82è\91|\8f\9c\82Á\82Ä\82¨\91O\81c
+[2A 0x0000BB34 00 *Marisa Sanae]
+\8eU\82ç\82©\82Á\82Ä\82é\82Á\82Ä\82¢\82¤
+\83\8c\83x\83\8b\82\82á\82Ë\82¦\82¾\82ë\81I\81H
+[2A 0x0000BD28 00 *Marisa Sanae]
+\8fd\97Í\82Æ\82©\8aµ\90«\82Æ\82©
+\91S\95\94\96³\8e\8b\82µ\82Ä\82é\82¼\81A\82±\82±\81I\81H
+[2A 0x0000BF1C 00 Marisa *Sanae]
+\82¿\82å\82Á\82Æ\8ay\82µ\82»\82¤\82Ë\81c
+[2A 0x0000C110 00 *Marisa Sanae]
+\82»\82Á\81A\82»\82©\81H
+\82¿\82å\82Á\82Æ\95Ï\82í\82Á\82½\8fê\8f\8a\82¾\82È\81[\82Æ\82©
+[2A 0x0000C304 00 *Marisa Sanae]
+\8ev\82Á\82Ä\82Ý\82½\82è\82Í\82µ\82Ä\82é\82¯\82Ç
+[2A 0x0000C4F8 00 Marisa *Sanae]
+\82Í\82Á\81I\81@\82Ü\82³\82©\81c
+[2A 0x0000C6EC 00 Marisa *Sanae]
+\82â\82Á\82Ï\82è\8bM\95û
+\82±\82±\82ð\82à\82Á\82Æ\8eU\82ç\82©\82·\82Â\82à\82è\81I\81H
+[2A 0x0000C8E0 00 *Marisa Sanae]
+\82³\82·\82ª\82Ì\8e\84\82Å\82à
+\82±\82ê\88È\8fã\82Í\8eU\82ç\82©\82¹\82Ë\81[\82æ\81I\81I
+[2A 0x0000CAD4 00 *Marisa Sanae]
+\82¾\82©\82ç\8c¾\82Á\82½\82ë\81I\81H
+\92T\82µ\95¨\82µ\82Ä\82é\82¾\82¯\82¾\82Á\82Ä\81I
+[2A 0x0000CCC8 00 Marisa *Sanae]
+\82«\82¿\82ñ\82Æ\95Ð\82Ã\82¯\82È\82¢\82©\82ç
+\82¢\82´\82Æ\82¢\82¤\82Æ\82«\96³\82­\82µ\95¨\82ð\82·\82é\82ñ\82Å\82·\82æ\81I
+[2A 0x0000CEBC 00 *Marisa Sanae]
+\82¨\81A\82¨\90à\8b³\82©\82æ\81I
+\82¢\82Â\82à\82Í\82«\82¿\82ñ\82ÆãY\97í\82É\82µ\82Ä\82é\82æ\82Á\81I
+[2A 0x0000D0B0 00 Marisa *Sanae]
+\82Ù\82ñ\82Æ\82Å\82·\82©\81H
+[2A 0x0000D2A4 00 *Marisa Sanae]
+\98I\8d\9c\82É\8b^\82Á\82Ä\82é\81c\81I\81I
+[2A 0x0000D498 00 Marisa *Sanae]
+\8d¡\93ú\82Í\82±\82Ì\8cã\97¿\97\9d\82à\82 \82è\82Ü\82·\82©\82ç
+\8e\84\96Z\82µ\82¢\82ñ\82Å\82·
+[2A 0x0000D68C 00 Marisa *Sanae]
+\8eè\93`\82¢\82Ü\82·\82©\82ç
+\82³\82Á\82³\82Æ\8c©\82Â\82¯\82¿\82á\82¢\82Ü\82µ\82å\82¤
+[2A 0x0000D880 00 *Marisa Sanae]
+\82¿\82Á\81c\82±\82ñ\82È\82¨\90ß\89î\82ª\82Â\82¢\82Ä\82«\82½\82ç
+\82¨\95ó\92T\82µ\82Ç\82±\82ë\82\82á\82È\82¢\82º\81c
+[2A 0x0000DA74 00 *Marisa Sanae]
+\88«\82¢\82¯\82Ç\81c
+\82±\82±\82Í\8b­\8ds\93Ë\94j\82³\82¹\82Ä\82à\82ç\82¤\82º\81I
+[2A 0x0000DC68 00 Marisa *Sanae]
+\82¦\81I\81H\81@\82¿\82å\81A\82¿\82å\82Á\82Æ\81c\81I
+\82¢\82«\82È\82è\81c\82Ç\82¤\82¢\82¤\82Â\82à\82è\82Å\82·\82©\81I\81H
+[2A 0x0000DE5C 00 *Marisa Sanae]
+\82Ç\81[\82à\82±\81[\82à\82È\82¢\82º\81I
+\82·\82×\82Ä\82Í\8b­\82­\82È\82é\82½\82ß\82¾\81I
+[2A 0x0000E050 00 Marisa *Sanae]
+\88Ó\96¡\95s\96¾\82Å\82·\81I
+[2A 0x0000E244 00 Marisa *Sanae]
+\90í\82¢\82Å\82à\82Á\82Æ\8eU\82ç\82©\82µ\82¿\82á\82Á\82Ä\82à
+\82»\82Ì\90Ó\94C\82Í
+[2A 0x0000E438 00 Marisa *Sanae]
+\82Æ\82Á\82Ä\82à\82ç\82¢\82Ü\82·\82©\82ç\82Ë\81I
+[28 0x0000EAFC 00 Marisa *Sanae]
+\82¹\82Á\82©\82­\81A\82¹\82Á\82©\82­ãY\97í\82É\82µ\82½\82Ì\82É\81I
+\82à\82¤\82Á\96Å\92\83\8bê\92\83\82Å\82·\81I
+[2A 0x0000ED04 00 *Marisa Sanae]
+\88«\82¢\82¯\82Ç\81A\8e\84\82Ì\8f\9f\82¿\82¾\81B
+\97Í\82Ì\8d·\82¾\82È\81ô
+[2A 0x0000EEF8 00 Marisa *Sanae]
+\8d¡\93ú\82Í\91f\93G\82È\88ê\93ú\82É\82È\82é\82Á\82Ä
+\8dç\96é\82³\82ñ\82à\82 \82ñ\82È\82É\82Í\82è\82«\82Á\82Ä
+[2A 0x0000F0EC 00 Marisa *Sanae]
+\8e\84\82à\97¿\97\9d\82Ì\8eè\93`\82¢\82·\82é\82Á\82Ä
+\97p\88Ó\82µ\82Ä\82¢\82½\82Ì\82É\81c
+[2A 0x0000F2E0 00 *Marisa Sanae]
+\82¨\91O\81c\82¦\82Á\81H
+\8b\83\82¢\82Ä\82ñ\82Ì\82©\81I\81H
+[2A 0x0000F4D4 00 Marisa *Sanae]
+\82¢\82¢\82¦\81I
+[2A 0x0000F6C8 00 *Marisa Sanae]
+\82¢\82\82¯\82Ä\82ñ\82Ì\82©\81H
+[2A 0x0000F8BC 00 Marisa *Sanae]
+\82¢\82\82¯\82Ä\82È\82Ç\82¢\82Ü\82¹\82ñ
+[2A 0x0000FAB0 00 Marisa *Sanae]
+\83n\83\89\83\8f\83^\82ª\8cy\81[\82­
+\8eÏ\82¦\82­\82è\95Ô\82Á\82Ä\82¢\82é\82¾\82¯\82Å\82·
+[2A 0x0000FCA4 00 *Marisa Sanae]
+\82Ó\82Â\81[\82Í\8cy\81[\82­\8eÏ\82¦\82­\82è\95Ô\82é\82à\82Ì
+\82\82á\82È\82¢\82¾\82ë\81I\81H
+[2A 0x0000FE98 00 *Marisa Sanae]
+\88«\82©\82Á\82½\82æ\81B
+\81c\82Å\82à\82±\82ê\82Î\82Á\82©\82Í\8f÷\82ê\82È\82­\82Á\82Ä\82³
+[2A 0x0001008C 00 Marisa *Sanae]
+\8fo\82Ä\82Á\82Ä\89º\82³\82¢\81I
+[2A 0x00010280 00 *Marisa Sanae]
+\82²\81A\82²\82ß\82ñ\82Á\82Ä\81I
+[2A 0x00010474 00 Marisa *Sanae]
+\88ê\82©\82ç\91|\8f\9c\82Ì\82â\82è\92¼\82µ\82Å\82·\81B
+\82à\82¤\82±\82ê\88È\8fã\90â\91Î\8e×\96\82\82µ\82È\82¢\82Å\89º\82³\82¢\81I
+[2A 0x00010668 00 *Marisa Sanae]
+\82í\82©\82Á\82½\82æ\81A\8eÓ\82Á\82Ä\82é\82¾\82ë\81I
+[2A 0x0001085C 00 Marisa *Sanae]
+\82Ü\82½\8cã\82Å\81I
+\82²\82«\82°\82ñ\82æ\82¤\81I
+[2A 0x00010B1C 00 *Marisa Sanae]
+\93{\82è\82È\82ª\82ç
+\8ds\82Á\82¿\82á\82Á\82½\82©\81c
+[2A 0x00010D10 00 *Marisa Sanae]
+\82µ\82Á\82©\82µ\81A\91\81\95c\82Ì\82â\82Â\89½\82Í\82è\82«\82Á\82Ä\82ñ\82¾\81H
+[2A 0x00010F04 00 *Marisa Sanae]
+\82à\82Æ\82à\82Æ\82¨\82©\82µ\82È\93z\82ç\82¾\82¯\82Ç
+\82±\82±\82ñ\82Æ\82±\82ë\82Ý\82ñ\82È\82¨\82©\82µ\82­\82È\82¢\82©\81c\81H
+[28 0x00011544 02 *Marisa]
+\82¨\95ó\82Æ\82¢\82¦\82Î\81c
+[2A 0x000116F4 02 *Marisa]
+\82â\82Á\82Ï\82è\82±\82±\81c\82¾\82æ\82È\81I
+[2A 0x00011888 02 *Marisa]
+\82 \82¢\82Â\82ª\8bN\82«\82Ä\82­\82é\91O\82É
+\82Æ\82Á\82Æ\82Æ\92T\82³\82¹\82Ä\82à\82ç\82¨\82Á\82Æ\81I
+[2A 0x00011A1C 02 *Marisa]
+\82¤\81[\82ñ\81c
+\82È\82ñ\82©\96Y\82ê\82Ä\82é\82æ\82¤\82È\8bC\82ª\82·\82é\82¯\82Ç
+[2A 0x00011BB0 02 *Marisa]
+\97ì\96²\82É
+\8aÖ\8cW\82 \82Á\82½\82æ\82¤\82È\8bC\82à\82·\82é\82¯\82Ç\81c
+[2A 0x00011D44 02 *Marisa]
+\82Ü\81A\82¢\82Á\82©\81I
+\8ev\82¢\82¾\82µ\82Ä\82©\82ç\8dl\82¦\82æ\82Á\82Æ
+[28 0x000123A8 02 *Marisa]
+\82»\82ê\82É\82µ\82Ä\82à\89A\8bC\82È\8fê\8f\8a\82¾\82È\81c
+[2A 0x00012558 02 *Marisa]
+\82¢\82Â\97\88\82½\82Á\82Ä\8bC\82ª\96Å\93ü\82é\81c
+[2A 0x000126EC 02 *Marisa]
+\82Å\82à\82¨\95ó\82ª\82 \82é\82©\82ç
+\8dK\82¹\82È\82ñ\82¾\82¯\82Ç\82È\82Á\81I
+[2A 0x00012880 02 *Marisa]
+
+[2A 0x00012A6C 00 *Marisa Patch]
+\91\8a\95Ï\82í\82ç\82¸\94\96\88Ã\82¢\82Æ\82±\82Åå¿\82¢\82Ä\82ñ\82¾\82È
+[2A 0x00012C60 00 Marisa *Patch]
+\82¸\82¢\82Ô\82ñ\82È\8c¾\97t\82Ë\81c\81B
+\8bM\95û\82±\82»\82¢\82Â\82à\82±\82»\82±\82»\92p\82¸\82©\82µ\82­\82È\82¢\81H
+[2A 0x00012E54 00 *Marisa Patch]
+\91S\91R\81I\81@\82¨\91O\82Í\82¢\82Â\82à\82¨\8c©\92Ê\82µ\82¾\82ë\81H
+\8e\84\82ª\89½\82â\82Á\82Ä\82ñ\82Ì\82©\82®\82ç\82¢\82³
+[2A 0x00013048 00 Marisa *Patch]
+\82à\82¿\82ë\82ñ\82æ
+\81c\8dD\82«\8f\9f\8eè\82Í\82³\82¹\82È\82¢
+[2A 0x0001323C 00 *Marisa Patch]
+\82³\82 \81A\82Ç\82¤\82¾\82ë\81[\82È\81c\81B
+\8e~\82ß\82ç\82ê\82é\82à\82ñ\82È\82ç\82â\82Á\82Ä\82Ý\82ë
+[2A 0x00013430 00 Marisa *Patch]
+\8d¡\82Ü\82Å\81c\8f­\82µ\8a°\97e\82·\82¬\82½\82Ì\82©\82µ\82ç\81H
+\8e\84\82Í\8eq\82Ç\82à\82É\82Í\97D\82µ\82¢\82Ù\82¤\82¾\82©\82ç\81c
+[2A 0x00013624 00 *Marisa Patch]
+\82¨\8eq\97l\88µ\82¢\82©\82æ
+[2A 0x00013818 00 Marisa *Patch]
+\82»\82ë\82»\82ë\81c\82«\82¿\82ñ\82Æ
+ç^\82¯\82Ä\82 \82°\82È\82¢\82Æ\82¢\82¯\82È\82¢\82æ\82¤\82Ë
+[28 0x00013EDC 00 *Marisa Patch]
+\8eq\82Ç\82à\82Í\95|\82¢\82º\81B
+\91å\90l\82Ì\97\9d\8bü\82Í\92Ê\82ç\82È\82¢\82©\82ç\82È
+[2A 0x000140E4 00 Marisa *Patch]
+\96Y\82ê\82Ä\82½\82í\81c
+\8bð\82©\82³\82Í\97\\91ª\82ð\92´\82¦\82é\8b­\93G\82¾\82Á\82Ä\82±\82Æ
+[2A 0x000142D8 00 *Marisa Patch]
+\82·\82ñ\82²\82¢\8c\99\96¡\82¾\82È\82¨\82¢\81c
+[2A 0x000144CC 00 Marisa *Patch]
+\81c\82»\82ê\82Å\81H
+\8bM\95û\82Ì\8cä\8f\8a\96]\82Ì\82à\82Ì\82Í\89½\81H
+[2A 0x000146C0 00 *Marisa Patch]
+\96\82\8fp\82ð\8d\82\82ß\82é\82¨\95ó\82¾\81I
+[2A 0x000148B4 00 Marisa *Patch]
+\82»\82ê\82Á\82Ä\81c
+\82Ç\82ñ\82È\82à\82Ì\82È\82Ì\81H
+[2A 0x00014AA8 00 *Marisa Patch]
+\82Ç\82ñ\82È\81c\81c\82Ç\82ñ\82È\81H
+\82Ç\82ñ\82È\82¨\95ó\82È\82ñ\82¾\82Á\82¯\81H
+[2A 0x00014C9C 00 Marisa *Patch]
+\92²\82×\82Ä\82È\82¢\82Ì\81H
+\81c\96{\93\96\82É\8eq\82Ç\82à\82Á\82Ä\95|\82¢\81c
+[2A 0x00014E90 00 *Marisa Patch]
+\82Ü\82 \81c\82»\82Ì\81c\82È\82ñ\82¾\81A
+\8eá\82³\82ä\82¦\82Ì\89ß\82¿\81A\82©\82È
+[2A 0x00015084 00 Marisa *Patch]
+\81c\8eq\82Ç\82à\82¾\82Á\82Ä\94F\82ß\82¿\82á\82¤\82í\82¯\82Ë
+[2A 0x00015278 00 *Marisa Patch]
+\82»\82ê\82æ\82è\81A\82¨\91O\82È\82ñ\82©\92m\82Á\82Ä\82é\82ñ\82¾\82ë\81H
+\82¨\95ó\82à\81A\8d¡\93ú\82Ì\8dg\82¢\96\82Ì\82±\82Æ\82à\82³
+[2A 0x0001546C 00 Marisa *Patch]
+\92m\82Á\82Ä\82Ä\82à\8b³\82¦\82Ä\82 \82°\82È\82¢\81B
+\82»\82ê\82É\81c
+[2A 0x00015660 00 Marisa *Patch]
+\82±\82±\82É\82Ç\82ñ\82È\83A\83C\83e\83\80\82ª\82 \82é\82©
+[2A 0x00015854 00 Marisa *Patch]
+\8bM\95û\82Í\82à\82¤\8f\\95ª\92T\82µ\90s\82­\82µ\82Ä
+\8e¯\82Á\82Ä\82é\82Å\82µ\82å\81H
+[2A 0x00015A48 00 *Marisa Patch]
+\82Ü\81A\82»\82è\82á\82»\82¤\82¾\82¯\82Ç\81c
+[2A 0x00015C3C 00 *Marisa Patch]
+\8b³\82¦\82Ä\82­\82ê\82½\82Á\82Ä\82¢\82¢\82¾\82ë
+\82±\82Ì\82Ç\83P\83`
+[2A 0x00015E30 00 Marisa *Patch]
+\82à\82¤\82¢\82¢\82©\82µ\82ç\81H
+\93Ç\8f\91\82ð\91±\82¯\82½\82¢\82Ì\82¾\82¯\82Ç
+[2A 0x00016024 00 *Marisa Patch]
+\82 \82 \81B\82í\82©\82Á\82½\82æ\81B
+\8e×\96\82\82µ\82½\82º\81B\82\82á\82 \82Ü\82½\82È\81I
+[2A 0x000162E4 02 *Patch]
+\81c\82Ü\82½\81c\8fµ\82­\82Â\82à\82è\82Í\82È\82¢\82ñ\82¾\82¯\82Ç
+[2A 0x00016478 02 *Patch]
+\82Ó\82¤\81c
+\82«\82Á\82Æ\82Ü\82½\97\88\82é\82ñ\82Å\82µ\82å\82¤\82Ë\81c
+[28 0x00016A58 02 *Marisa]
+\82¨\95ó\82¨\95ó\81c
+[2A 0x00016C08 02 *Marisa]
+\82È\82Á\82©\82È\82©\8c©\82Â\82©\82ñ\82È\82¢\82æ\82È\81[
+[2A 0x00016D9C 02 *Marisa]
+\83p\83`\83\85\83\8a\81[\82ñ\82Æ\82±\82É\82È\82¢\82Æ\82·\82é\82Æ
+\88ê\91Ì\82Ç\82±\82É\89B\82³\82ê\82Ä\82é\82ñ\82¾\81H
+[2A 0x00016F30 02 *Marisa]
+\82¢\82â\82¢\82â\82»\82Ì\91O\82É\81c
+[2A 0x000170C4 02 *Marisa]
+\82Ç\82ñ\82È\82¨\95ó\82È\82ñ\82¾\82ë\81c
+[28 0x00017728 02 *Marisa]
+\82Ç\81[\82·\82è\82á\82¢\82¢\82ñ\82¾\81c
+[2A 0x000178D8 02 *Marisa]
+\82»\82à\82»\82à\8c`\82Ì\82í\82©\82ç\82È\82¢\82à\82Ì
+\82Ç\82¤\82â\82Á\82Ä\8c©\82Â\82¯\82é\82ñ\82¾\81I\81H
+[2A 0x00017A6C 02 *Marisa]
+l
+[2A 0x00017C7C 00 *Marisa Nitori]
+\82»\82¤\82©\82à\82È\81B
+\83X\83s\81[\83h\82ð\8fd\8e\8b\82µ\82Ä\8am\94F\82ð\91Ó\82Á\82½\82©\82à
+[2A 0x00017E70 00 Marisa *Nitori]
+\83|\83W\82È\81u\82¾\82ë\82¤\81v\82\82á\82È\82­\82Ä\81A
+\83l\83K\82È\81u\82©\82à\82µ\82ê\82È\82¢\81v\82Å\82â\82ç\82È\82¢\82Æ\81I
+[2A 0x00018064 00 *Marisa Nitori]
+\82Á\82Ä\82©\8aî\96{
+\83|\83W\83e\83B\83u\82È\90«\8ai\82¾\82©\82ç\82È\82\9f\81c
+[2A 0x00018258 00 *Marisa Nitori]
+\82Á\82Ä\82¨\91O\81I
+\93Æ\82è\8c¾\82É\8eQ\89Á\82µ\82Ä\82­\82é\82È\81I
+[2A 0x0001844C 00 Marisa *Nitori]
+\82³\82Á\82·\82ª\96¿\97F\81I
+\8fæ\82è\83c\83b\83R\83~\82à\8fã\8eè\82¾\82Ë\82¥\81I
+[2A 0x00018640 00 *Marisa Nitori]
+\82É\82Æ\82è\81c\81c\81I
+\82¨\91O\82Ü\82Å\89½\82Å\82±\82±\82É\82¢\82é\82ñ\82¾\82æ\81I\81H
+[2A 0x00018834 00 Marisa *Nitori]
+\82«\82ã\82¤\82è\81B
+\82¢\82Á\82Ï\82¢\96á\82Á\82¿\82á\82Á\82½
+[2A 0x00018A28 00 Marisa *Nitori]
+\90H\82×\82é\81H
+[2A 0x00018C1C 00 *Marisa Nitori]
+\81c\89\93\97\82µ\82Æ\82­\81B
+\82 \82Æ\81A\8e¿\96â\82É\8e¿\96â\82Å\93\9a\82¦\82é\82È
+[2A 0x00018E10 00 Marisa *Nitori]
+\94ü\96¡\82µ\82¢\82Ì\82É\82¡\81B
+\82 \82Æ\81A\8d¡\93ú\82Í\96Ê\94\92\82¢\82±\82Æ\82 \82é\82ç\82µ\82¢\82¼
+[2A 0x00019004 00 Marisa *Nitori]
+\82«\82ã\82¤\82è\82à\82 \82é\82©\82ç
+\82Á\82Ä\8c¾\82í\82ê\82Ä\97\88\82½\82ñ\82¾
+[2A 0x000191F8 00 Marisa *Nitori]
+\82Å\82à\83R\83R\82É\95Â\82\8d\9e\82ß\82ç\82ê\82¿\82á\82Á\82Ä\82³\81B
+\82à\82µ\82©\82µ\82Ä\96¿\97F\82à\82»\82¤\82©\81I\81H
+[2A 0x000193EC 00 *Marisa Nitori]
+\82«\82ã\82¤\82è\82É\92Þ\82ç\82ê\82ñ\82Ì\82Í\82¨\91O
+\82¾\81E\82¯\81E\82¾\81I
+[2A 0x000195E0 00 *Marisa Nitori]
+\82Å\81A\96Ê\94\92\82¢\82±\82Æ\82Á\82Ä\82Ì\82Í\89½\82¾\81I\81H
+[2A 0x000197D4 00 *Marisa Nitori]
+\82±\82Ì\8dg\82¢\96\82Ì\88Ù\95Ï\82Ì\82±\82Æ\82©\81H
+\82»\82ê\82Æ\82à\81c\82¨\95ó\82Ì\82±\82Æ\82©\81H
+[2A 0x000199C8 00 Marisa *Nitori]
+\82Þ\82®\82Þ\82®\82Þ\82®\81c\82¨\95ó\81H
+[2A 0x00019BBC 00 *Marisa Nitori]
+\82 \82Á\81I\81@\82³\82Ä\82Í\82Á
+\82à\82µ\82©\82µ\82Ä\81c\82¨\91O\82Ì\94­\96¾\82©\81I\81H
+[2A 0x00019DB0 00 *Marisa Nitori]
+\82¨\95ó\82Á\82Ä\82¨\91O\82Ì\94­\96¾\82µ\82½\89½\82©\82È\82Ì\82©\81I\81H
+[2A 0x00019FA4 00 Marisa *Nitori]
+\82Þ\82®\82Þ\82®\82Þ\82®\81c\81H
+[2A 0x0001A198 00 *Marisa Nitori]
+\90H\82Á\82Ä\82ñ\82È\82æ\81I
+[2A 0x0001A38C 00 Marisa *Nitori]
+\82Þ\82®\82Þ\82®\81c
+\8e\84\82Ì\8bó\91O\82Ì\91å\94­\96¾\82ª\89½\82©\82È\81H
+[2A 0x0001A580 00 *Marisa Nitori]
+\82â\82Á\82Ï\82»\82¤\82È\82Ì\82©\81I\81H
+\82¾\82Á\82½\82ç\81c\82»\82ê\82Í\82¢\82½\82¾\82¢\82Ä\82­\82º\81I\81I
+[2A 0x0001A774 00 Marisa *Nitori]
+\82í\81A\82í\82í\82í\81c
+\89½\82ð\82·\82é\8bC\82¾\82Á\96¿\97F\81I
+[2A 0x0001A968 00 *Marisa Nitori]
+\96â\93\9a\96³\97p\81I\81I\81@\82æ\82±\82µ\82â\82ª\82ê\81I\81I
+[2A 0x0001AB5C 00 Marisa *Nitori]
+\82à\82¤\93{\82Á\82½\82ñ\82¾\82©\82ç\82È\81I
+[2A 0x0001AD50 00 Marisa *Nitori]
+\8e\84\82Ì\94­\96¾\82ð\93\90\82à\82¤\82È\82ñ\82Ä\81I
+\82à\82²\82²\82Á\81I
+[2A 0x0001AF44 00 Marisa *Nitori]
+\82º\81[\82Á\82½\82¢\82É\8b\96\82³\82È\82¢\82¼\81I
+[2A 0x0001B138 00 *Marisa Nitori]
+\82«\82ã\82¤\82è\90H\82×\82È\82ª\82ç\8c¾\82¤\82È\81I
+[2A 0x0001B32C 00 *Marisa Nitori]
+\88«\82¢\81c\82¯\82Ç\81A\8b­\82­\82È\82é\82½\82ß\82É
+\8eè\92i\82Í\91I\82ñ\82Å\82ç\82ê\82È\82¢\82ñ\82¾\81I
+[2A 0x0001B520 00 Marisa *Nitori]
+\8f\9f\8eè\82È\93z\82¾\81I
+\8f\9f\8eè\82È\90l\8aÔ\82È\82ñ\82©\82¾\81[\82¢\82«\82ç\82¢\82¾\81I
+[28 0x0001BBE4 00 Marisa *Nitori]
+\82«\82ã\81A\82«\82ã\82¤\82è\82ª\81c
+\91å\8e\96\82È\82«\82ã\82¤\82è\82ª\82±\82È\82²\82È\81c
+[2A 0x0001BDEC 00 *Marisa Nitori]
+\82³\82 \81A\93n\82µ\82Ä\82à\82ç\82¤\82º
+[2A 0x0001BFE0 00 Marisa *Nitori]
+\93n\82·\82à\89½\82à
+\82«\82ã\82¤\82è\82Í\82à\82¤\82±\82È\82²\82È\82¾\82\9f\81I
+[2A 0x0001C1D4 00 *Marisa Nitori]
+\82«\82ã\82¤\82è\82\82á\82È\82¢\81I\81I\81@\94­\96¾\95i\82¾\81I
+[2A 0x0001C3C8 00 Marisa *Nitori]
+\8e\9d\82Á\82Ä\82¯\81I
+\82à\82¤\82±\82ñ\82È\82à\82Ì\8d¡\82Í\96ð\82É\97§\82½\82È\82¢\81I
+[2A 0x0001C5BC 00 *Marisa Nitori]
+\82â\82Á\82½\82\9f\81A\82Â\82¢\82É\8eè\82É\93ü\82ê\82½\82¼\81B
+\82±\82Á\81A\82±\82ê\82©\82\9f!
+[2A 0x0001C7B0 00 *Marisa Nitori]
+\81c\81c\81c\81c\82Í\82Ö\81H
+\82±\82ê\81c\82±\82ê\82Á\82Ä\89½\82¾\81H
+[2A 0x0001C9A4 00 Marisa *Nitori]
+\91å\90Ø\82È\82«\82ã\82¤\82è\82ð\8eç\82é
+\81u\8cg\91Ñ\8cÓ\89Z\92\99\91 \8cÉ\81v\81I
+[2A 0x0001CB98 00 Marisa *Nitori]
+\82»\82Ì\96¼\82à
+\81u\83X\83}\81[\83g\8cÉ\81v\82¾\82Á!
+[2A 0x0001CD8C 00 *Marisa Nitori]
+\82¢\82ç\82Ë\82¦\82¥\81I
+[2A 0x0001CF80 00 Marisa *Nitori]
+\89½\82¾\82Æ\82§\81I
+[2A 0x0001D174 00 Marisa *Nitori]
+\93K\93x\82È\89·\93x\81A\8e¼\93x\81A\8cõ\82Å
+\8a®\91S\82É\8aÇ\97\9d\81I
+[2A 0x0001D368 00 Marisa *Nitori]
+\82±\82ê\82Å\82¢\82Â\82Å\82à\82Ç\82±\82Å\82à
+\90V\91N\82È\82«\82ã\82¤\82è\82¾\82¼\81I
+[2A 0x0001D55C 00 *Marisa Nitori]
+\81c\95Ô\82·\81B
+\82¨\91O\82É\8aú\91Ò\82µ\82½\82Ì\82ª\88«\82©\82Á\82½
+[2A 0x0001D750 00 Marisa *Nitori]
+\82¦\81H\81@\82 \81c\95Ô\82µ\82Ä\82­\82ê\82é\82Ì\82©\81H
+[2A 0x0001D944 00 *Marisa Nitori]
+\82\82á\82 \82È\82Á
+[2A 0x0001DBE0 02 *Nitori]
+\82¦\81A\82¿\82å\82Á\82Æ\82Ç\82±\8ds\82­\82ñ\82¾\96¿\97F\81I
+[2A 0x0001DD74 02 *Nitori]
+\82«\82ã\82¤\82è\81A\82«\82ã\82¤\82è\82ð\95Ù\8f\9e\82µ\82ë\82¨\82¨\82¨\81I
+[28 0x0001DFD4 01 *Marisa]
+\82È\82ñ\82¾\81c\81H
+\91\81\95c\82É\82É\82Æ\82è\82Ü\82Å\81c
+[2A 0x0001E2F4 02 *Marisa]
+\82Á\82Ä\8c¾\82Á\82Ä\82à
+\82¨\95ó\82ð\92ú\82ß\82é\82È\82ñ\82Ä\82µ\82È\82¢
+[2A 0x0001E488 02 *Marisa]
+\82±\82Ì\82Ü\82Ü
+\93Ë\82«\90i\82Þ\82Ì\82Ý\82¾\82Á\81I
+[28 0x0001EA68 02 *Marisa]
+\82¸\82¢\82Ô\82ñ\89\9c\82Ü\82Å\90i\82ñ\82¾\82Í\82¸\82¾\82¯\82Ç\81c
+\8bó\8aÔ\82ð\82¢\82\82è\82·\82¬\82¾\82ë\81c\82 \82¢\82Â
+[2A 0x0001EC18 02 *Marisa]
+\82¨\82©\82°\82Å\96À\82¢\82Ü\82­\82è\82¾\82º\81c
+\82±\82±\82Í\88ê\91Ì\82Ç\82±\82È\82ñ\82¾\81H
+[2A 0x0001EDAC 02 *Marisa]
+\82 \82Æ\81A\89½\82©\96Y\82ê\82Ä\82é\82Á\82Ä\8c\8f\82Í
+\82¢\82Á\82½\82¢\82È\82ñ\82¾\82Á\82½\82Á\82¯\81H
+[28 0x0001F410 02 *Marisa]
+\82Í\82\9f\81c\82È\82ñ\82©\94æ\82ê\82½\82È
+[2A 0x0001F5C0 02 *Marisa]
+\82æ\82­\8dl\82¦\82½\82ç\82²\82Í\82ñ\82à
+\82¨\82â\82Â\82à\90H\82×\82»\82±\82Ë\82Ä\82é\82µ\81c
+[2A 0x0001F754 02 *Marisa]
+\82±\82ñ\82È\82Æ\82«\82Í
+\82 \82Á\82½\82©\82¢\8dg\92\83\82ª\82¢\82¢\82æ\82È\81c
+[2A 0x0001F8E8 02 *Marisa]
+\8d»\93\9c\82Í\82Ý\82Á\82Â
+\83~\83\8b\83N\82½\82Á\82Õ\82è\82Å\8aÃ\81X\82Ì\81c
+[2A 0x0001FA7C 02 *Marisa]
+\82\82ã\81A\82\82ã\82é\82è\81c
+[2A 0x0001FC10 02 *Marisa]
+l
+[2A 0x0001FE20 00 *Marisa Sakuya]
+\82 \82Á\82Æ\8e¸\97ç\81I
+[2A 0x00020014 00 Marisa *Sakuya]
+\82»\82ê\82Å\81A\89½\82Ì\97p\82È\82Ì\81H
+[2A 0x00020208 00 *Marisa Sakuya]
+\82¨\81[\82¿\82å\82¤\82Ç\82¢\82¢\82Æ\82±\82ë\82É\81I
+[2A 0x000203FC 00 *Marisa Sakuya]
+\8dg\92\83\82¢\82ê\82Ä\82­\82ê\82æ\81B
+\88ê\91§\82Â\82«\82½\82¢\82Æ\82±\82ë\82¾\82Á\82½\82ñ\82¾
+[2A 0x000205F0 00 Marisa *Sakuya]
+\82¨\92f\82è
+[2A 0x000207E4 00 *Marisa Sakuya]
+\82¨\8bq\97l\82Í\82à\82Ä\82È\82·\82à\82ñ\82¾\82º\81H
+\8dg\92\83\82Ì\88ê\94t\82®\82ç\82¢\82¢\82¢\82\82á\82È\82¢\82©
+[2A 0x000209D8 00 Marisa *Sakuya]
+\8e\84\82Í\82±\82Ì\8aÙ\82Ì\83\81\83C\83h\82¾\82¯\82Ç
+\8bM\95û\82Í\8e\84\82Ì\8eå\90l\82Å\82Í\82È\82¢
+[2A 0x00020BCC 00 *Marisa Sakuya]
+\8eå\90l\82Á\82Ä\82¢\82¦\82Î\81A\82¨\91O\82Ì\91å\8e\96\82È
+\82²\8eå\90l\97l\82Í\82Ç\81[\82µ\82Ä\82é\82ñ\82¾\82æ\81I\81H
+[2A 0x00020DC0 00 *Marisa Sakuya]
+\82È\82ñ\82©\82±\82Ì\8aÙ\82Ì\8eü\95Ó\82ª
+\96­\82È\82Ì\82Í\82 \82¢\82Â\82Ì\82¹\82¢\82¾\82ë\81H
+[2A 0x00020FB4 00 Marisa *Sakuya]
+\82¨\8fì\97l\82Í
+\89\9c\82Ì\82¨\95\94\89®\82Å\82¨\82â\82·\82Ý\82æ
+[2A 0x000211A8 00 Marisa *Sakuya]
+\82»\82ê\82æ\82è\82à\96\82\97\9d\8d¹\81A\93\9a\82¦\82È\82³\82¢
+[2A 0x0002139C 00 Marisa *Sakuya]
+\8aÙ\82ð\82¤\82ë\82Â\82­
+\95s\90R\8eÒ\82Ì\95ñ\82ð\8eó\82¯\82½\82Ì\82¾\82¯\82Ç\81H
+[2A 0x00021590 00 Marisa *Sakuya]
+\82»\82ê\82Á\82Ä
+\8bM\95û\82È\82Ì\82©\82µ\82ç\81c\81H
+[2A 0x00021784 00 *Marisa Sakuya]
+\82©\82à\82È\81B
+\82¾\82Á\82½\82ç\82Ç\82¤\82·\82é\8bC\82È\82ñ\82¾\81H
+[2A 0x00021978 00 Marisa *Sakuya]
+\8c\88\82Ü\82Á\82Ä\82¢\82é
+[2A 0x00021B6C 00 Marisa *Sakuya]
+\92\81\8f\98\82ð\95Û\82Â\82Ì\82ª\83\81\83C\83h\82Ì\8ed\8e\96\81c
+\82±\82±\82Å\95Ð\95t\82¯\82Ä\82 \82°\82é\82í\81I
+[28 0x00022230 00 *Marisa Sakuya]
+\82Ç\82¢\82Â\82à\82±\82¢\82Â\82à\8cû\82Î\82Á\82©\82è\82¾\82º
+\82±\82Ì\8aÙ\82Ì\98A\92\86\82Í\81I
+[2A 0x00022438 00 Marisa *Sakuya]
+\81c\95G\82ð\82Â\82¢\82½\8e\84\82ð\82Ç\82ê\82Ù\82Ç
+\94l\82ë\82¤\82Æ\8d\\82í\82È\82¢\82¯\82Ç
+[2A 0x0002262C 00 Marisa *Sakuya]
+\82 \82Ì\95û\82ð\88«\82­\8c¾\82¤\82Ì\82Í\8b\96\82µ\82Ü\82¹\82ñ
+[2A 0x00022820 00 *Marisa Sakuya]
+\8b\96\82³\82È\82¯\82ê\82Î\82Ç\82¤\82·\82é\82ñ\82¾\82æ\81H
+\82»\82Ì\97L\82è\97l\82Å
+[2A 0x00022A14 00 Marisa *Sakuya]
+\81c\82 \82È\82½\82Ì\92p\82¸\82©\82µ\82¢\94é\96§\82ð\96\\98I\82·\82é
+[2A 0x00022C08 00 *Marisa Sakuya]
+\82»\81A\82»\82ñ\82È\82à\82ñ
+\82µ\82ç\82Ë\81[\82¾\82ë\81H
+[2A 0x00022DFC 00 Marisa *Sakuya]
+\82¤\82Ó\82Ó\82Ó\82Ó\81c
+[2A 0x00022FF0 00 *Marisa Sakuya]
+\82È\81A\82È\82ñ\82È\82ñ\82¾\82æ\81I
+\82È\82¢\82æ\82Á\81A\89½\82à\82È\82¢\82©\82ç\82È\82Á\81I
+[2A 0x000231E4 00 Marisa *Sakuya]
+\82»\82Ì\8dÎ\82É\82È\82Á\82Ä
+\89½\82à\82È\82¢\82±\82Æ\82à\92p\82¸\82©\82µ\82¢\82Ì\82æ
+[2A 0x000233D8 00 *Marisa Sakuya]
+\82Ð\82Á\81A\82Ð\82Å\82¦\81c
+\89½\82à\92m\82ç\82È\82¢\82ñ\82\82á\82È\82¢\82©\81I
+[2A 0x000235CC 00 Marisa *Sakuya]
+\82³\82Ä\81A\82Ë\81H
+[2A 0x000237C0 00 Marisa *Sakuya]
+\96\82\97\9d\8d¹\81A\82 \82È\82½\82Í
+\82±\82Ì\90æ\82É\90i\82Ý\82½\82¢\82Ì\81H
+[2A 0x000239B4 00 Marisa *Sakuya]
+\82¨\8fì\97l\82Ì\82Æ\82±\82ë\82Ö\81c
+[2A 0x00023BA8 00 *Marisa Sakuya]
+\90S\94z\82·\82é\82È\81B
+\96³\89v\82È\8eE\90\82Í\82µ\82È\82¢\82º
+[2A 0x00023D9C 00 *Marisa Sakuya]
+\8e\84\82ª\92T\82µ\82Ä\82é\82Ì\82Í\82¨\95ó\82¾
+[2A 0x00023F90 00 *Marisa Sakuya]
+\82Ü\82 \82 \82¢\82Â\82ª
+\91å\90l\82µ\82­\82µ\82Ä\82é\82È\82ç\81c\82¾\82¯\82Ç\82È
+[2A 0x00024184 00 Marisa *Sakuya]
+\82 \82Ì\95û\82ð\95\8e\82ê\82Î
+\95K\82¸\8bê\94t\82ð\82È\82ß\82é\82±\82Æ\82É\82È\82é\82í
+[2A 0x00024378 00 *Marisa Sakuya]
+\82²\90i\8c¾
+\82 \82è\82ª\82½\82­\82¿\82å\82¤\82¾\82¢\82·\82é\82æ
+[2A 0x0002456C 00 *Marisa Sakuya]
+\82\82á\82 \81A\82Ü\82½\82È\82Á\81B
+\8e\9f\82Í\82¨\91O\82Ì\8dg\92\83\82Å\82Ü\82Á\82½\82è\82³\82¹\82Ä\82­\82ê\82æ
+[2A 0x00024760 00 Marisa *Sakuya]
+\82Ó\82¤\82ñ\81c\97p\88Ó\82Í\82 \82é\82¯\82ê\82Ç
+[2A 0x00024954 00 *Marisa Sakuya]
+\82¦\82Á\81I\81H
+[2A 0x00024B48 00 *Marisa Sakuya]
+\82\82á\82 \81A\8dÅ\8f\89\82©\82ç
+\82²\82¿\82»\82¤\82µ\82Ä\82­\82ê\82ê\82Î\82¢\82¢\82Ì\82É
+[2A 0x00024D3C 00 Marisa *Sakuya]
+\97\88\82é\82Ì\82ª\91\81\82·\82¬\82½\82Ì\82æ
+[2A 0x00024F30 00 *Marisa Sakuya]
+\82»\82Á\82©\81H
+[2A 0x00025124 00 Marisa *Sakuya]
+\82¦\82¦\81B
+\82Å\82Í\81A\8e\84\82Í\8ex\93x\82ª\82 \82é\82©\82ç\81c
+[2A 0x00025318 00 Marisa *Sakuya]
+\82­\82ê\82®\82ê\82à\97p\90S\82·\82é\82±\82Æ\82Ë
+[2A 0x0002550C 00 Marisa *Sakuya]
+\82»\82µ\82Ä\81A\90S\92u\82«\82È\82­\82¨\8fì\97l\82É
+\82¬\82Á\82½\82ñ\82¬\82Á\82½\82ñ\82É\82³\82ê\82È\82³\82¢\81ô
+[2A 0x00025700 00 *Marisa Sakuya]
+\8d¡\93ú\88ê\94Ô\82Ì\8fÎ\8aç\82Å\8c¾\82í\82ê\82½\82æ\82Á\81I
+[2A 0x000258F4 00 *Marisa Sakuya]
+\82Ü\82½\8cã\82Å\82È\82Á\81I
+[28 0x00025FB8 00 *Marisa Sakuya]
+\82Ü\82Á\82½\82­\81c\82±\82ê\82ª\82±\82Ì\8aÙ\82Ì
+\82¨\8bq\97l\82É\91Î\82·\82é\82à\82Ä\82È\82µ\82È\82Ì\82©\81H
+[2A 0x000261C0 00 Marisa *Sakuya]
+\82¢\82Â\82à\82±\82ñ\82È\8a´\82\82æ
+[2A 0x000263B4 00 *Marisa Sakuya]
+\82¨\82¢\82Á\81I
+[2A 0x000265A8 00 Marisa *Sakuya]
+\8e\84\91\8a\8eè\82Å\82Í\95s\95\9e\82¾\82Á\82½\82©\82µ\82ç\81H
+\82Ü\82¾\82Ü\82¾\8c³\8bC\82ª\97]\82Á\82Ä\82é\82Ý\82½\82¢\82Ë
+[2A 0x0002679C 00 Marisa *Sakuya]
+\8e\84\82æ\82è\8b­\82¢\91\8a\8eè\82ð\96]\82Þ\82È\82ç
+\82±\82±\82Å\96\9d\90S\82¹\82¸\81A\8fp\82ð\82Ý\82ª\82«\82È\82³\82¢
+[2A 0x00026990 00 *Marisa Sakuya]
+\82µ\82ê\82Á\82Æ\81c\82¨\90à\8b³\81I\81H
+[2A 0x00026B84 00 *Marisa Sakuya]
+\82Á\82½\82­\95\89\82¯\82½\93z\82ª\8c¾\82¤\82±\82Æ\82©\82æ
+[2A 0x00026D78 00 Marisa *Sakuya]
+\92T\82µ\82à\82Ì\81c\8c©\82Â\82©\82é\82Æ\82¢\82¢\82í\82Ë\81B
+\82à\82Á\82Æ\8b­\82­\82È\82ê\82é\82æ\82¤\82É
+[2A 0x00026F6C 00 *Marisa Sakuya]
+\8fã\82©\82ç\96Ú\90ü\82©\82æ\81I
+[2A 0x00027160 00 *Marisa Sakuya]
+\81c\82±\82¤\82È\82Á\82½\82ç\82à\82Á\82©\82¢
+\8aÙ\92\86\92T\82µ\82Ü\82í\82Á\82Ä\82â\82é\82º\81I
+[2A 0x00027354 00 *Marisa Sakuya]
+\8ao\8cå\82µ\82ë\82æ\81I
+[2A 0x00027548 00 Marisa *Sakuya]
+\82¦\82¦\81c\81B
+\8eñ\82ª\97\8e\82¿\82Ä\82¢\82½\82ç\82Ð\82ë\82Á\82Ä\82Ë
+[2A 0x0002773C 00 Marisa *Sakuya]
+\82¢\82Â\82Ü\82Å\82à\95Ð\95t\82©\82È\82¢\82©\82ç
+[2A 0x00027930 00 *Marisa Sakuya]
+\92f\82é\82Á\81I
+\82\82á\82 \82È\82Á\81I
+[2A 0x00027BF0 02 *Sakuya]
+\8ds\82Á\82Ä\82µ\82Ü\82Á\82½\82Ý\82½\82¢\82Ë
+[2A 0x00027D84 02 *Sakuya]
+\82±\82Ì\90æ\82É\90i\82Ü\82¹\82é\82É\82Í
+\82Ü\82¾\82Ü\82¾\82 \82È\82½\82Ì\97Í\82Í\91«\82è\82È\82¢
+[2A 0x00027F18 02 *Sakuya]
+\82»\82Ì\82±\82Æ\82É
+\82Ü\82¸\82Í\8bC\82Ã\82«\82È\82³\82¢\96\82\97\9d\8d¹\81c
+[28 0x000284F8 02 *Marisa]
+\82Ü\81[\82½\82±\82Ì\8bó\8aÔ\82©\81c
+[2A 0x000286A8 02 *Marisa]
+\82±\82ñ\82È\82Æ\82±\82É\82¨\95ó\82 \82é\82í\82¯\82È\82¢\82µ\81c
+[2A 0x0002883C 02 *Marisa]
+\82Å\82à\81A\82¨\95ó\82Í\82¢\82Â\82à\88Ó\8aO\82È\8fê\8f\8a\82Å
+\8c©\82Â\82©\82é\82Á\82Ä\82Ì\82à\92è\94Ô\82¾\82æ\82È\81I\81I
+[2A 0x000289D0 02 *Marisa]
+\82³\81[\82Ä
+\82Í\82è\82«\82Á\82Ä\90i\82ñ\82Å\82Ý\82é\82©\81[
+[28 0x00029034 02 *Marisa]
+\82È\82©\82È\82©\8c©\82Â\82©\82ñ\82Ë\81[\82µ
+[2A 0x000291E4 02 *Marisa]
+\82±\82¤\82È\82Á\82½\82ç\8eè\93\96\82½\82è\8e\9f\91æ
+\82 \82ê\82à\82±\82ê\82à\92²\82×\82Ä\82¢\82­\82µ\82©\82È\82¢\81I
+[2A 0x00029378 02 *Marisa]
+\82±\82ê\82Í\81c\95Z\92\\81H
+[2A 0x0002950C 02 *Marisa]
+\82±\82ê\82Í\81c\8eP\82¾\81B
+[2A 0x000296A0 02 *Marisa]
+\82±\82Á\82¿\82Í\81c\94u\81H
+[2A 0x00029834 02 *Marisa]
+\82»\82Á\82¿\82Ì\81c\82¤\82í\82 \82 \82Á
+[2A 0x000299C8 02 *Marisa]
+\8f_\82ç\82©\82¢\82 \82Á\82½\82©\82¢\82Ñ\82æ\81[\82ñ\82Æ\82Ì\82Ñ\82é\82Á
+\89½\82±\82ê\81c\82¤\82í\82 \82 \82 \82 
+[2A 0x00029B5C 02 *Marisa]
+\82 \81A\82 \82ê\81H\81@\94L\81I\81H
+[2A 0x00029CF0 02 *Marisa]
+\82Å\82Á\82©\82¢\94L\81c\94L\97d\89ö\82©\81H
+\90Ô\96Ñ\82É\8d\95\82Ì\94Á\93_\95¿\81c
+[2A 0x00029E84 02 *Marisa]
+l
+[2A 0x0002A094 00 *Marisa Satori]
+\82³\82Æ\82è\81I\81H
+[2A 0x0002A288 00 *Marisa Satori]
+\82¨\91O\82Ü\82Å
+\8dg\96\82\8aÙ\82É\8fµ\91Ò\82³\82ê\82Ä\82½\82Ì\82©\81H
+[2A 0x0002A47C 00 Marisa *Satori]
+\82¦\82¦\81B\8fµ\91Ò\82³\82ê\82½\82Ì\82¾\82¯\82ê\82Ç
+\95Â\82\8d\9e\82ß\82ç\82ê\82µ\82Ü\82Á\82Ä
+[2A 0x0002A670 00 Marisa *Satori]
+\8bM\95û\82Í\88á\82¤\82Ì\81H
+[2A 0x0002A864 00 *Marisa Satori]
+\8e\84\82Í\82¨\95ó\82ð\92T\82µ\82É\82«\82½\82ñ\82¾
+[2A 0x0002AA58 00 *Marisa Satori]
+\82Á\82Ä\81A\82±\82±\82©\82ç
+\8fo\82ç\82ê\82È\82­\82È\82Á\82Ä\82½\82Ì\82©\81I\81H
+[2A 0x0002AC4C 00 Marisa *Satori]
+\8bC\82Ã\82¢\82Ä\82È\82©\82Á\82½\82ñ\82¾
+[2A 0x0002AE40 00 *Marisa Satori]
+\82¤\82ñ\81A\82Ü\82Á\82½\82­
+[2A 0x0002B034 00 Marisa *Satori]
+\82Í\82 \81c\82 \82é\88Ó\96¡\82·\82²\82¢\81c
+[2A 0x0002B228 00 *Marisa Satori]
+\82Ö\82Ö\82ñ\81ô
+[2A 0x0002B41C 00 Marisa *Satori]
+\82·\82²\82­
+\8aì\82ñ\82Å\82­\82ê\82Ä\82¢\82é\82Ý\82½\82¢\82¾\82¯\82Ç\81c
+[2A 0x0002B610 00 Marisa *Satori]
+\82Ü\82Á\82½\82­\82Ù\82ß\82Ä\82¢\82È\82¢\82©\82ç\81c
+[2A 0x0002B804 00 Marisa *Satori]
+\82Å\82à\81c\82 \82è\82ª\82Æ\82¤
+[2A 0x0002B9F8 00 *Marisa Satori]
+\82Ö\81H
+[2A 0x0002BBEC 00 Marisa *Satori]
+\82»\82Ì\8eq\82ð
+\82±\82¿\82ç\82É\93n\82µ\82Ä\82­\82¾\82³\82¢\81c
+[2A 0x0002BDE0 00 *Marisa Satori]
+\81c\82¿\82å\82¢\91Ò\82Ä\81B
+\82¨\91O\81A\82±\82ê\82ð\92T\82µ\82Ä\82½\82Ì\82©\81H
+[2A 0x0002BFD4 00 Marisa *Satori]
+\82¦\82¦\81c
+[2A 0x0002C1C8 00 Marisa *Satori]
+\82±\82±\82Ö\82à\88ê\8f\8f\82É\97\88\82½\82Ì\81B
+\93¯\94º\82Å\82à\8d\\82í\82È\82¢\82Æ\95·\82¢\82½\82©\82ç
+[2A 0x0002C3BC 00 *Marisa Satori]
+\93¯\94º\81c
+[2A 0x0002C5B0 00 Marisa *Satori]
+\81c\82¢\82â\82ç\82µ\82¢\82±\82Æ\8dl\82¦\82È\82¢\82Å\82Ë
+[2A 0x0002C7A4 00 *Marisa Satori]
+\8dl\82¦\82Ä\82Ë\81[\82æ\81I
+[2A 0x0002C998 00 *Marisa Satori]
+\82Á\82Ä\82©\81A\90l\82Ì\90S\82ð
+\93Ç\82Þ\82ñ\82\82á\82Ë\82¦\81I
+[2A 0x0002CB8C 00 Marisa *Satori]
+\81c\82â\82¾\81c
+[2A 0x0002CD80 00 *Marisa Satori]
+\82¤\82Á\81c\81I\81I
+[2A 0x0002CF74 00 *Marisa Satori]
+\83o\83b\81A\83o\81[\83J\82Á\81I
+[2A 0x0002D168 00 *Marisa Satori]
+\82 \82Á\81c\81I\81H
+[2A 0x0002D35C 00 Marisa *Satori]
+\83`\83\8b\83m\82Æ\93¯\82\82Ë\81c
+[2A 0x0002D550 00 *Marisa Satori]
+\82»\82ñ\82È\82Ó\82¤\82É\90l\82ð
+\88£\82ê\82»\82¤\82É\82Ý\82é\82È\81I
+[2A 0x0002D744 00 Marisa *Satori]
+\82³\82 \81c
+\82»\82Ì\8ee\82ð\95Ô\82µ\82Ä\82¿\82å\82¤\82¾\82¢
+[2A 0x0002D938 00 *Marisa Satori]
+\82¢\82â\81c\82±\82¢\82Â\82Í\93n\82¹\82È\82¢\81B
+\82¿\82å\82Á\82Æ\92²\82×\82³\82¹\82Ä\82à\82ç\82¤\82º
+[2A 0x0002DB2C 00 Marisa *Satori]
+\92²\82×\82é\81c\81H\81@\89½\82Ì\98b\81H
+[2A 0x0002DD20 00 *Marisa Satori]
+\8d\81èÁ\82É\8c©\82¹\82Ä\8am\82©\82ß\82é\82¾\82¯\82¾\81B
+\82±\82¢\82Â\82ª\81c\82¨\95ó\82©\82à\82µ\82ê\82È\82¢
+[2A 0x0002DF14 00 Marisa *Satori]
+\95ó\81H\81@\82»\82¤\82æ\81A\91å\90Ø\82È\95ó\95¨\81B
+\95Ô\82µ\82Ä
+[2A 0x0002E108 00 *Marisa Satori]
+\91Ê\96Ú\82¾
+[2A 0x0002E2FC 00 Marisa *Satori]
+\81c\82È\82º\81H\81@\82³\82 \81A\95Ô\82µ\82Ä\81B
+\82±\82ñ\82È\82±\82Æ\82Åæy\82¢\82Í\8c\99\82È\82Ì
+[2A 0x0002E4F0 00 *Marisa Satori]
+\88«\82¢\82¯\82Ç\81A\8eæ\82è\96ß\82µ\82½\82©\82Á\82½\82ç
+\81c\97Í\82¸\82­\82Å\82â\82é\82ñ\82¾\82È\81I
+[2A 0x0002E6E4 00 Marisa *Satori]
+\81c\91\88\82¢\82Í\8dD\82«\82\82á\82È\82¢\82Ì\82É\81c
+[2A 0x0002E8D8 00 *Marisa Satori]
+\82Å\82à\81A\82â\82é\82ñ\82¾\82ë\81H
+[2A 0x0002EACC 00 Marisa *Satori]
+\82 \82È\82½\82Æ\8e\84\82Í\8d¡\81c
+[2A 0x0002ECC0 00 Marisa *Satori]
+\93¯\82\8bC\8e\9d\82¿\82æ\81c\81I
+[28 0x0002F384 00 Marisa *Satori]
+\8bó\95 \82È\82Ì\82É\82¤\82ñ\82Æ\92£\82è\90Ø\82Á\82½\82Ì\82Ë\81B
+\82 \82È\82½\82Ì\81c\8f\9f\82¿
+[2A 0x0002F58C 00 *Marisa Satori]
+\82¨\82¢\81A\93Ç\82Þ\82È\82æ
+[2A 0x0002F780 00 Marisa *Satori]
+\93Ç\82ñ\82Å\82È\82¢\81B
+\82¨\95 \82Ì\96Â\82é\89¹\82ª\95·\82±\82¦\82½\82¾\82¯
+[2A 0x0002F974 00 *Marisa Satori]
+\95·\82­\82È\81I
+[2A 0x0002FB68 00 Marisa *Satori]
+\82»\82ê\82Í\96³\97\9d\82æ\81B\95·\82±\82¦\82é\82ñ\82¾\82à\82Ì
+[2A 0x0002FD5C 00 *Marisa Satori]
+\82±\82¢\82Â\82Í\98A\82ê\82Ä\82¢\82­\82º\81B
+\8d\81èÁ\82É\82¨\95ó\82©\82Ç\82¤\82©\8am\82©\82ß\82Ä\82à\82ç\82¤
+[2A 0x0002FF50 00 Marisa *Satori]
+\8e\84\82Ì\89Â\88¤\82¢\82¨\97Ó\82ª\81c\95ó\81H
+[2A 0x00030144 00 Marisa *Satori]
+\82»\82ê\82Í\8e\84\82É\82Æ\82Á\82Ä\82Í\95ó\95¨\82¾\82¯\82Ç
+\82 \82È\82½\82É\82Æ\82Á\82Ä\82Í\88á\82¤\82Å\82µ\82å\82¤\81H
+[2A 0x00030338 00 Marisa *Satori]
+\8d¡\93ú\82±\82±\82Ö\88ê\8f\8f\82É\97\88\82½\82Ì\82Í
+\82¨\92\83\89ï\82É\8eQ\89Á\82·\82é\82½\82ß\82æ
+[2A 0x0003052C 00 *Marisa Satori]
+\82¨\92\83\89ï\81H
+\82»\82ñ\82È\82à\82Ì\82 \82é\82Ì\82©\81c
+[2A 0x00030720 00 *Marisa Satori]
+\82 \81A\82»\82ê\82æ\82è\81I
+\82\82á\82 \82±\82Ì\97d\89ö\82Í\81c\81H
+[2A 0x00030914 00 Marisa *Satori]
+\8e\84\82Ì\89Â\88¤\82¢\89Æ\91°
+[2A 0x00030B08 00 *Marisa Satori]
+\81c\82­\82»\82Á\81A\82Ü\81[\82½\82±\82ñ\82È\93W\8aJ\82©\81I
+[2A 0x00030CFC 00 Marisa *Satori]
+\82¨\82¢\82Å\81c\82¨\97Ó
+[2A 0x00030EF0 00 Marisa *Satori]
+\82»\82ñ\82È\82É\93{\82ç\82È\82¢\82Å\81B
+\94Þ\8f\97\82ª\8b¯\82¦\82é\82í
+[2A 0x000310E4 00 *Marisa Satori]
+\82½\82¾\82Ì\83y\83b\83g\82©\82æ\81I
+[2A 0x000312D8 00 Marisa *Satori]
+\94ñ\93¹\82¢\81c\8e\84\82É\82Í\95ó\95¨\82æ
+[2A 0x000314CC 00 *Marisa Satori]
+\82 \81[\81I
+\82Ü\82½\8añ\82è\93¹\82µ\82¿\82Ü\82Á\82½\82º\81I
+[2A 0x000316C0 00 *Marisa Satori]
+\82±\82¤\82È\82Á\82½\82ç\88Ó\92n\82Å\82à
+\82¨\95ó\82Í\8c©\82Â\82¯\8fo\82µ\82Ä\82â\82é\81I
+[2A 0x000318B4 00 *Marisa Satori]
+\82»\82ê\82É\82µ\82Ä\82à\81c\82¨\92\83\89ï\82Á\82Ä\81H
+\8d¡\93ú\81A\8dg\96\82\8aÙ\82Å\89½\82ª\8bN\82±\82Á\82Ä\82é\82ñ\82¾\81H
+[2A 0x00031AA8 00 Marisa *Satori]
+\82³\82 \81c\8e\84\82Í\8eè\93`\82¢\82É\97\88\82½\82¾\82¯\82¾\82©\82ç\81c
+[2A 0x00031C9C 00 Marisa *Satori]
+\8e©\95ª\82Ì\96Ú\82Å\8am\82©\82ß\82Ä\82«\82½\82ç\82Ç\82¤\81H
+[2A 0x00031E90 00 *Marisa Satori]
+\8c¾\82í\82ê\82È\82­\82Ä\82à\82»\82¤\82·\82é\82æ\82Á\81I
+\82\82á\82 \82È\82Á\81I
+[2A 0x00032084 00 Marisa *Satori]
+\82Î\82¢\82Î\81[\82¢\81c
+[2A 0x00032344 02 *Satori]
+\82¨\97Ó\81A\8ds\82Á\82¿\82á\82Á\82½\82Ë
+[2A 0x000324D8 02 *Satori]
+\82¤\82ñ\81c\81H
+\82ª\82³\82Â\82È\8eq\82¾\82Á\82½\82Á\82Ä\81H
+[2A 0x0003266C 02 *Satori]
+\8c©\82½\96Ú\82Í\82»\82¤\82æ\82Ë\81c
+\82¢\82Â\82à\83o\83^\83o\83^\82µ\82Ä\82Ä
+[2A 0x00032800 02 *Satori]
+\82à\82Ì\82Ö\82Ì\8e·\92\85\82à\82Ð\82Ç\82¢\82µ\81c
+[2A 0x00032994 02 *Satori]
+\82Å\82à\90S\82Í\93§\96¾\82È\82ñ\82¾\82æ
+[2A 0x00032B28 02 *Satori]
+\93Ç\82ñ\82Å\82¢\82é\82±\82Á\82¿\82ª
+\92p\82¸\82©\82µ\82­\82È\82é\82­\82ç\82¢\81c
+[28 0x00033108 00 *Marisa Satori]
+\82±\82Ì\97d\89ö\82Í\96á\82Á\82Ä\82­\82º
+[2A 0x00033310 00 Marisa *Satori]
+\82È\82º\81H
+\82Ç\82¤\82µ\82Ä\82»\82ñ\82È\82É\8e·\92\85\82·\82é\82Ì\81H
+[2A 0x00033504 00 *Marisa Satori]
+\82½\82¾\82Ì\90l\8aÔ\82ª\8b­\82­\82È\82é\82É\82Í\81c
+\90\94¼\89Â\82È\82±\82Æ\82¾\82¯\82\82á\91Ê\96Ú\82È\82ñ\82¾
+[2A 0x000336F8 00 Marisa *Satori]
+\82»\82¤\81c\82»\82ñ\82È\82É\82à
+\8b­\82­\82È\82è\82½\82¢\82Ì\82Ë\81c
+[2A 0x000338EC 00 Marisa *Satori]
+\89Â\88¤\82¢\82­\82ç\82¢\8f\83\90\88\81c
+[2A 0x00033AE0 00 *Marisa Satori]
+\82\82ã\82Á\81A\8f\83\90\88\82Æ\82©\8c¾\82¤\82È\82æ\82È\81I
+\82Í\82Á\81A\82Í\82¸\82©\82µ\81[\82¾\82ë\81[\82ª\81c
+[2A 0x00033CD4 00 *Marisa Satori]
+\98b\82ð\96ß\82·\82¼\81I
+\82±\82ê\82ª\96\82\8fp\82ð\8d\82\82ß\82é\82¨\95ó\82¾\82Æ\82µ\82½\82ç\81c
+[2A 0x00033EC8 00 Marisa *Satori]
+\82»\82Ì\8eq\82Í\82½\82¾\82Ì\97d\89ö\81B
+\98A\82ê\82Ä\82¢\82­\82È\82ç\9cß\82©\82ê\82È\82¢\82æ\82¤\82É\82Ë
+[2A 0x000340BC 00 *Marisa Satori]
+\9cß\82­\82Ì\82©\81H
+[2A 0x000342B0 00 Marisa *Satori]
+\9cß\82­\82í\81B\97d\89ö\82¾\82à\82Ì\81B
+\82Ë\81A\82¨\97Ó\81H
+[2A 0x000344A4 00 Marisa *Satori]
+\82Ù\82ç\82¨\82¢\82Å\81H
+[2A 0x00034698 00 Marisa *Satori]
+\82Ó\82Ó\81c\82 \81A\92É\82¢\81c\92É\82¢\82í
+\8a\9a\82Ü\82È\82¢\82Å\81c\92É\82Á\81c\82¢\82½\82½\82½\81c
+[2A 0x0003488C 00 *Marisa Satori]
+\81c\91S\82Á\91R\81c\89ù\82¢\82Ä\82È\82¢\82µ\82Á\81I
+[2A 0x00034A80 00 *Marisa Satori]
+\82¤\82í\82 \81c\81c\97¬\8c\8c\82µ\82Ä\82é\82¼\81B
+\91å\8fä\95v\82©\81H\81H\81H
+[2A 0x00034C74 00 Marisa *Satori]
+\89ù\82­\82©\82ç\89Â\88¤\82¢\82Ì\82Å\82Í\82È\82­\82Ä
+\89Â\88¤\82¢\82©\82ç\89Â\88¤\82¢\82Ì
+[2A 0x00034E68 00 Marisa *Satori]
+\94\92\81X\82µ\82¢\8fÎ\8aç\82Ì\89\9e\95ñ\82æ\82è
+\8a\9a\82Ý\95t\82¢\82Ä\82­\82é\89å\82Ì\82Ù\82¤\82ª\90S\92n\82¢\82¢\82Ì
+[2A 0x0003505C 00 Marisa *Satori]
+\82¾\82©\82ç\8bM\95û\82à\89Â\88¤\82¢\82©\82à
+[2A 0x00035250 00 *Marisa Satori]
+\82È\82Á\81c\81c\95Ï\82È\82±\82Æ\8c¾\82¤\82È\82Á\81I
+\82¨\95ó\82\82á\82Ë\82¦\82È\82ç\95Ô\82·\82æ\82Á\82à\82¤\81I
+[2A 0x00035444 00 *Marisa Satori]
+\82Ù\82ñ\82Æ\82¨\82©\82µ\82È\93z\82¾\82È
+[2A 0x00035638 00 Marisa *Satori]
+\82¤\82Ó\82Ó\82Á
+[2A 0x0003582C 00 Marisa *Satori]
+\90Ô\82­\82È\82Á\82½\82è\82µ\82Ä\8bM\95û\82à\82¨\82©\82µ\82¢\82í\82Ë
+[2A 0x00035A20 00 *Marisa Satori]
+\82\82á\82 \82È\82Á
+[2A 0x00035C14 00 Marisa *Satori]
+\82Í\82¢\81A\82Ü\82½\8cã\82Å\81c
+[2A 0x00035ED4 02 *Satori]
+\95ó\95¨\81A\82«\82Á\82Æ\8c©\82Â\82©\82é\82Æ\8ev\82¤\82í\81c
+[2A 0x00036068 02 *Satori]
+\82Å\82à\81A\82»\82ê\82Í\82à\82Á\82Æ\90æ\81c
+[2A 0x000361FC 02 *Satori]
+\82¢\82Â\82É\82È\82é\82©\82Í\82 \82È\82½\8e\9f\91æ\82æ\81c
+[28 0x000367DC 02 *Marisa]
+\82Í\82 \81c
+[2A 0x0003698C 02 *Marisa]
+\97ì\96²\82Ì\97p\8e\96\82Á\82Ä\82È\82ñ\82¾\82Á\82½\82Á\82¯\81H
+[2A 0x00036B20 02 *Marisa]
+\82à\82¤\8ev\82¢\8fo\82»\82¤\82Á\82Ä
+\93w\97Í\82à\8b\95\82µ\82¢\8a´\82\82¾\82È\81I
+[2A 0x00036CB4 02 *Marisa]
+\82±\82±\82Í\82·\82Ï\82Á\82Æ
+\8bC\8e\9d\82¿\82ð\90Ø\82è\91Ö\82¦\82Ä\82¨\95ó\82É\8fW\92\86\82¾\81I
+[2A 0x00036E48 02 *Marisa]
+\81c\81H
+[2A 0x00036FDC 02 *Marisa]
+\81c\82È\82ñ\82¾\82±\82Ì\93õ\82¢\81c
+[2A 0x00037170 02 *Marisa]
+\95@\82É\82Â\82­\81c\8eK\82Ñ\82½\8a´\82\81c
+[2A 0x00037304 02 *Marisa]
+\82±\82ê\82Í\81c\8c\8c\82Ì\93õ\82¢\81I\81H
+[28 0x00037968 00 *Marisa Remilia]
+\82Æ\82¤\82Æ\82¤\82¨\8fo\82Ü\82µ\82©\82æ\81B
+\82¨\8fì\97l
+[2A 0x00037B70 00 *Marisa Remilia]
+\95\81\92i\82Í\82Ý\82©\82¯\82È\82¢\98A\92\86\82Ü\82Å\91µ\82Á\82Ä
+\8d¡\93ú\82Í\89½\82Ì\8dÕ\82è\82¾\81H
+[2A 0x00037D64 00 Marisa *Remilia]
+\8dÕ\82è\82Å\82Í\82È\82¢\81c\81B
+\82»\82¤\82Ë\82 \82¦\82Ä\8c¾\82¤\82È\82ç\82¨\97V\8bY\82æ
+[2A 0x00037F58 00 *Marisa Remilia]
+\82¨\97V\8bY\82©\82æ\81c
+[2A 0x0003814C 00 *Marisa Remilia]
+\83\8c\83~\83\8a\83A\81A\82¨\91O\82É\97p\82ª\82 \82é
+[2A 0x00038340 00 Marisa *Remilia]
+\8fI\82í\82ç\82¹\82Í\82µ\82È\82¢\81c
+[2A 0x00038534 00 *Marisa Remilia]
+\82Í\82 \81H\81@\82¢\82Á\82½\82¢\89½\82ð\8c¾\82Á\82Ä\81c
+[2A 0x00038728 00 Marisa *Remilia]
+\82¸\82Á\82Æ\82¸\82Á\82Æ
+\82±\82±\82Å\97V\82Ñ\91±\82¯\82é\82ñ\82¾\82©\82ç
+[2A 0x0003891C 00 *Marisa Remilia]
+\82¾\82©\82ç\81A\89½\82Ì\82±\82Æ\82È\82ñ\82¾\82æ\81c
+[2A 0x00038B10 00 *Marisa Remilia]
+\82¨\97V\8bY\89ï\82Æ\89½\82©\8aÖ\8cW\82 \82é\82Ì\82©\81H
+[2A 0x00038D04 00 Marisa *Remilia]
+\81c\90l\8aÔ\81B
+\82¨\91O\82Í\8bC\82Ã\82¢\82Ä\82¢\82È\82¢\82æ\82¤\82¾\82È
+[2A 0x00038EF8 00 Marisa *Remilia]
+\82¸\82Á\82Æ\82¸\82Á\82Æ\8cJ\82è\95Ô\82³\82ê\82é
+\82±\82Ì\97Ö\89ô\82Ì\97V\8bY\82É\81c
+[2A 0x000390EC 00 *Marisa Remilia]
+\82â\82Á\82Ï\82¨\97V\8bY\89ï\82©\82æ\81c
+[2A 0x000392E0 00 Marisa *Remilia]
+\88á\82¤\81c\81I
+[2A 0x000394D4 00 Marisa *Remilia]
+\82Ó\82ñ\81A\90l\8aÔ\82Ì\93ª\82\82á
+\97\9d\89ð\82Å\82«\82È\82¢\82Ì\82Ë
+[2A 0x000396C8 00 *Marisa Remilia]
+\82 \81I\81H
+[2A 0x000398BC 00 *Marisa Remilia]
+\93¯\82\8f\8a\82ð\89½\89ñ\82à\89½\89ñ\82à
+\92Ê\82Á\82½\82Æ\8ev\82Á\82½\82ç
+[2A 0x00039AB0 00 *Marisa Remilia]
+\82¨\91O\82Ì\8ed\8bÆ\82¾\82Á\82½\82ñ\82¾\82È\81I
+[2A 0x00039CA4 00 Marisa *Remilia]
+\82»\82ñ\82È\97\9d\89ð\82Å
+\82æ\82­\82à\82±\82±\82Ü\82Å\97\88\82ê\82½\82à\82Ì\82¾\81c
+[2A 0x00039E98 00 Marisa *Remilia]
+\8aÖ\90S\82µ\82½\82¼\81A\90l\8aÔ\81c
+[2A 0x0003A08C 00 *Marisa Remilia]
+\8dç\96é\82Ì\91\9d\89ü\92z\82©\82Æ\81c
+[2A 0x0003A280 00 Marisa *Remilia]
+\8dç\96é\82Ì\82·\82é\82±\82Æ\82Í\8e\84\82Ì\82·\82é\82±\82Æ\81B
+\8e\84\82Ì\96½\82\82é\92Ê\82è\8dç\96é\82Í\93®\82­
+[2A 0x0003A474 00 Marisa *Remilia]
+\82Å\82à\81A\91\9d\89ü\92z\82Í\82È\82¢\82í\81c
+[2A 0x0003A668 00 *Marisa Remilia]
+\82\82á\82 \82¢\82Á\82½\82¢\89½\82ð\82µ\82½\82ñ\82¾\82æ\81I
+[2A 0x0003A85C 00 Marisa *Remilia]
+\8d\87\82í\82¹\8b¾\82ð\82Ì\82¼\82¢\82½\82±\82Æ\82Í\81H
+[2A 0x0003AA50 00 Marisa *Remilia]
+\8b¾\82É\89f\82é\8b¾\82Ì\92\86\82Ì
+\8b¾\82Ì\92\86\82Ì\8b¾\82Ì\92\86\82Ì\8b¾\82Ì\92\86\82Ì\8b¾\81c
+[2A 0x0003AC44 00 *Marisa Remilia]
+\8b¾\81I\81H
+[2A 0x0003AE38 00 *Marisa Remilia]
+\82â\82Á\82Æ\82¨\95ó\82ç\82µ\82¢\83A\83C\83e\83\80\82ª\8fo\82Ä\82«\82½\82È
+[2A 0x0003B02C 00 Marisa *Remilia]
+\8d\87\82í\82¹\8b¾\82Ì\92\86\82Ì\96³\8cÀ\82Ì\90¢\8aE\82Å
+\82¸\82Á\82Æ\97V\82ñ\82Å\82¢\82½\82¢\82Æ\8ev\82Á\82½\82Ì\82¾
+[2A 0x0003B220 00 Marisa *Remilia]
+\82³\82Æ\82è\82â\91\81\95c\81A\82É\82Æ\82è\82à\8cÄ\82ñ\82Å\82È\81c
+[2A 0x0003B414 00 Marisa *Remilia]
+\96\82\97\9d\8d¹\82à\97ì\96²\82à
+\8e\84\82Ì\91å\8dD\82«\82È\82¨\82à\82¿\82á\82¾
+[2A 0x0003B608 00 Marisa *Remilia]
+\82»\82¤\81c
+\8e\84\82Í\82à\82¤\88ê\93x\97V\82Ñ\82½\82©\82Á\82½
+[2A 0x0003B7FC 00 Marisa *Remilia]
+\82»\82µ\82Ä\81c\8f\9f\82Â\82Ì\82Í\82±\82Ì\8e\84\82æ\81c\81I
+[2A 0x0003B9F0 00 *Marisa Remilia]
+\88«\82¢\82¯\82Ç
+\82¨\82à\82¿\82á\82É\82È\82é\8bC\82Í\82È\82¢\82È\81I
+[2A 0x0003BBE4 00 *Marisa Remilia]
+\8e\84\82Ì\96Ú\93I\82Í\82»\82Ì\8b¾
+\82¨\95ó\82ð\82¢\82½\82¾\82­\82±\82Æ\82¾\82¯\82¾\81I
+[2A 0x0003BDD8 00 Marisa *Remilia]
+\8eE\82é\8bC\82È\82Ì\82Ë\81c
+\8að\82µ\82¢\81c
+[2A 0x0003BFCC 00 Marisa *Remilia]
+\82­\82­\82­\81c\82»\82µ\82Ä\82»\82ê\82ª
+\82±\82Ì\8e\84\82Ì\96]\82Ý\82Å\82à\82 \82é\81c
+[2A 0x0003C1C0 00 Marisa *Remilia]
+\95\91\82¤\89Ø\82Ì\8eé\82Ì\82æ\82¤\82É\81c
+[2A 0x0003C3B4 00 Marisa *Remilia]
+\94ü\82µ\82­\8c\8c\82ð\8eU\82ç\82·\82Ì\81I
+[28 0x0003CA78 00 *Marisa Remilia]
+\82³\82Á\81A\82¨\95ó\82ð\82à\82ç\82¨\81[\82©
+[2A 0x0003CC80 00 Marisa *Remilia]
+\95ó\82ª\8eè\82É\93ü\82Á\82½\82Æ\82µ\82Ä
+\82 \82È\82½\82Í\82Ç\82¤\82µ\82½\82¢\82Ì\81H
+[2A 0x0003CE74 00 Marisa *Remilia]
+\89½\82ð\93¾\82æ\82¤\82Æ\82¢\82¤\82Â\82à\82è\82È\82Ì\81H
+[2A 0x0003D068 00 *Marisa Remilia]
+\82æ\82è\8b­\82¢\96\82\8fp\81I
+[2A 0x0003D25C 00 Marisa *Remilia]
+\8b­\82³\82ð\8b\81\82ß\82é\82©\81c
+[2A 0x0003D450 00 Marisa *Remilia]
+\8e\84\82Í\81c\89½\82ª\97~\82µ\82­\82Ä
+\90í\82Á\82Ä\82¢\82é\82Ì\82¾\82ë\82¤\82©\81c
+[2A 0x0003D644 00 *Marisa Remilia]
+\82¨\91O\82Í\97V\82Ñ\82½\82©\82Á\82½\82ñ\82¾\82ë\81H
+\8e\84\82â\97ì\96²\82ð\82¨\82à\82¿\82á\82É\82µ\82Ä
+[2A 0x0003D838 00 *Marisa Remilia]
+\89i\89\93\82Ì\92e\96\8b\82²\82Á\82±\82Æ\82©
+\82»\82ñ\82È\8a´\82\82\82á\82È\82¢\82Ì\82©\81H
+[2A 0x0003DA2C 00 Marisa *Remilia]
+\82»\82¤\81c\82»\82¤\82©\81c
+\82Ó\82Ó\81A\82»\82Ì\92Ê\82è\82©\82à\82Ë
+[2A 0x0003DC20 00 Marisa *Remilia]
+\8e\84\82Í\82±\82Ì\90¢\8aE\82ª
+[2A 0x0003DE14 00 Marisa *Remilia]
+\88«\96²\82Ý\82½\82¢\82É\91±\82­\90¢\8aE\82ª
+\82¢\82Â\82à\88¤\82¨\82µ\82©\82Á\82½\81c
+[2A 0x0003E008 00 Marisa *Remilia]
+\82¾\82©\82ç\89^\96½\82Ì\92f\90â\82ð\94Û\92è\82µ\82½
+[2A 0x0003E1FC 00 Marisa *Remilia]
+\82Ü\82é\82Å\89ñ\93]\96Ø\94n\82Ý\82½\82¢\82É
+\82®\82é\82®\82é\82®\82é\82®\82é\93¯\82\8ci\90F
+[2A 0x0003E3F0 00 Marisa *Remilia]
+\8ay\82µ\82¢\82Ì\82É\81A\8að\82µ\82¢\82Ì\82É\81c
+\8e~\82ß\82ç\82ê\82È\82­\82È\82Á\82½\82©\82ç\81c
+[2A 0x0003E5E4 00 *Marisa Remilia]
+\8e~\82ß\82ç\82ê\82È\82¢\82Á\82Ä\82Ç\82¤\82¢\82¤\82±\82Æ\82¾\81H
+\82¨\91O\82ª\8en\82ß\82½\82±\82Æ\82¾\82ë\81H
+[2A 0x0003E7D8 00 Marisa *Remilia]
+\82«\82Á\82©\82¯\82Í\81c\82»\82¤
+[2A 0x0003E9CC 00 Marisa *Remilia]
+\82Å\82à\81A\88«\82¢\82Ì\82Í\82 \82Ì\8b¾\81B
+\81u\91\93\96\82\8b¾\81v\82Ì\82¹\82¢\82æ
+[2A 0x0003EBC0 00 Marisa *Remilia]
+\8e\84\82Í\8e¸\94s\82µ\82Ä\82¢\82È\82¢
+[2A 0x0003EDB4 00 *Marisa Remilia]
+\8e¸\94s\82Á\82Ä\81c\82â\82Á\82Ï\82è
+\82¨\91O\82Ì\82¹\82¢\82È\82ñ\82¾\82È\81I
+[2A 0x0003EFA8 00 Marisa *Remilia]
+\82Ó\81A\82Ó\82ñ\82Á\81c\81I
+[2A 0x0003F19C 00 *Marisa Remilia]
+\82Á\82½\82­\81c\82\82á\82 \82¨\91O\82Ì\97Í\82ª
+\82»\82Ì\81u\91\93\96\82\8b¾\81v\82Á\82Ä\82¨\95ó\82Ì\82¹\82¢\82Å
+[2A 0x0003F390 00 *Marisa Remilia]
+\96\\91\96\82µ\82Ä\82é\82Á\82Ä\82í\82¯\82©\81H
+[2A 0x0003F584 00 Marisa *Remilia]
+\82Ó\82Ó\82Ó\82Ó\82Ó\81c\81B
+\8bC\82ª\89\93\82­\82È\82é\82Ù\82Ç\82Ì\8cJ\82è\95Ô\82µ
+[2A 0x0003F778 00 Marisa *Remilia]
+\93¯\82\8dg\82¢\96\82Æ
+\8bL\89¯\82ð\8e¸\82Á\82½\97ì\96²\82Æ\82 \82È\82½
+[2A 0x0003F96C 00 Marisa *Remilia]
+\8c©\82Ä\82¢\82é\82Ì\82Í\96ù\89õ\82¾\82Á\82½\82í
+[2A 0x0003FB60 00 *Marisa Remilia]
+\82Å\82³\81B
+\82Ç\82¤\82·\82ê\82Î\82¢\82¢\82ñ\82¾\81H
+[2A 0x0003FD54 00 *Marisa Remilia]
+\82Ç\82¤\82·\82ê\82Î\81u\91\93\96\82\8b¾\81v\82Ì\96\\91\96\82ð
+\8e~\82ß\82ç\82ê\82é\82ñ\82¾\81H
+[2A 0x0003FF48 00 Marisa *Remilia]
+\89½\82à\90S\94z\82Í\82¢\82ç\82È\82¢
+[2A 0x0004013C 00 *Marisa Remilia]
+\82Í\81H
+[2A 0x00040330 00 Marisa *Remilia]
+\82 \82È\82½\82ª\82±\82±\82É\97\88\82½\82Æ\82¢\82¤\82±\82Æ\82Í
+\8dç\96é\82Ì\8f\80\94õ\82ª\82Ü\82à\82È\82­\8fI\82í\82é
+[2A 0x00040524 00 Marisa *Remilia]
+\82»\82ë\82»\82ë\8f\80\94õ\82ª
+\90®\82Á\82½\82É\88á\82¢\82È\82¢\82í
+[2A 0x00040718 00 *Marisa Remilia]
+\82»\82ê\82Á\82Ä\82¨\92\83\89ï\82Ì\98b\82©\81H
+[2A 0x0004090C 00 Marisa *Remilia]
+\91¼\82É\89½\82ª\82 \82é\81H
+\82³\82 \8ds\82­\82í\82æ\81c
+[2A 0x00040B00 00 *Marisa Remilia]
+\82¿\82å\81A\82¿\82å\82Á\82Æ\91Ò\82Ä\82Á\82Ä\81I
+\8b¾\82Í\82¨\95ó\82Í\81H
+[2A 0x00040CF4 00 Marisa *Remilia]
+\82 \82Æ\82Å\8a\84\82Á\82Ä\82µ\82Ü\82¤\82¯\82Ç\81H
+[2A 0x00040EE8 00 *Marisa Remilia]
+\82¦\81c\82Ü\82\82©\82æ\81c
+[2A 0x000410DC 00 Marisa *Remilia]
+\8a\84\82ç\82È\82¯\82ê\82Î
+\92N\82à\82±\82±\82©\82ç\8fo\82ç\82ê\82È\82¢
+[2A 0x000412D0 00 Marisa *Remilia]
+\82»\82ê\82É\81c\89^\96½\82Ì
+\90V\82½\82È\82Í\82\82Ü\82è\82à\96G\89è\82µ\82È\82¢
+[2A 0x000414C4 00 *Marisa Remilia]
+\82Ü\82½\96ó\82Ì\82í\82©\82ñ\82Ë\81[\82±\82Æ\82ð
+\82¿\82å\82Á\82Æ\82Í\82í\82©\82é\82æ\82¤\90à\96¾\82µ\82ë\82æ\82È
+[2A 0x000416B8 00 Marisa *Remilia]
+\82 \82È\82½\82Ì\93ª\82Å\82Í\96³\97\9d\82Ë
+[2A 0x000418AC 00 *Marisa Remilia]
+\89½\82¾\82æ\81I
+[2A 0x00041AA0 00 *Marisa Remilia]
+\81c\82¨\92\83\89ï\82Á\82Ä\82©\82ç\82É\82Í
+\82²\92y\91\96\82ª\82 \82é\82ñ\82¾\82ë\82¤\82È\82Á\81I
+[2A 0x00041C94 00 Marisa *Remilia]
+\82à\82¿\82ë\82ñ\81B
+\8dç\96é\82Ì\9f¹\82ê\82½\82Æ\82Á\82Ä\82¨\82«\82Ì\8dg\92\83\82à\82Ë
+[2A 0x00041E88 00 Marisa *Remilia]
+\93Á\95Ê\82È\83P\81[\83L\82à\82 \82é
+[2A 0x0004207C 00 *Marisa Remilia]
+\82Ó\82¤\82ñ\81c
+[2A 0x00042270 00 *Marisa Remilia]
+\82\82á\81A\82Ü\82 \81A\82¢\82Á\82©\81I
+[2A 0x00042464 00 *Marisa Remilia]
+\82 \81[\82Á\81I\81H
+[2A 0x00042658 00 Marisa *Remilia]
+\82Ç\82¤\82µ\82½\81H
+[2A 0x0004284C 00 *Marisa Remilia]
+\97ì\96²\82É\82¨\82â\82Â\82ð\94\83\82Á\82Ä\82±\82¢\82Á\82Ä
+\8c¾\82í\82ê\82Ä\82½\82Ì\8ev\82¢\82¾\82µ\82½\81I
+[2A 0x00042A40 00 *Marisa Remilia]
+\82â\82Á\82×\82¦\81A\82Ç\82¤\82µ\82æ\82¤\81c
+[2A 0x00042C34 00 Marisa *Remilia]
+\82Ó\82Ó\81A\82»\82Ì\90S\94z\82Ì\95K\97v\82Í\82È\82¢\82í
+[2A 0x00042E28 00 Marisa *Remilia]
+\92\83\89ï\82É\82Í\89Ù\8eq\82ª\82Â\82«\82à\82Ì\81B
+\82»\82ê\82É\97ì\96²\82à\8fµ\82¢\82Ä\82¢\82é
+[2A 0x0004301C 00 *Marisa Remilia]
+\82¨\82¨\82Á\81I
+\82Å\82«\82é\8eq\82¾\82È\82Á\83\8c\83~\83\8a\83A\81I
+[2A 0x00043210 00 Marisa *Remilia]
+\93\96\82½\82è\91O\82æ\81c
+\8e\84\82ð\92N\82¾\82Æ\8ev\82Á\82Ä\82¢\82é\82Ì\81H
+[2A 0x00043404 00 Marisa *Remilia]
+\8dg\96\82\8aÙ\82Ì\8eå\82É\82µ\82Ä
+\88Å\82ÌáÅ\91®\82ð\93\9d\82×\82é\8eÒ
+[2A 0x000435F8 00 Marisa *Remilia]
+\82»\82µ\82Ä\81c
+[2A 0x000437EC 00 *Marisa Remilia]
+\96ù\89õ\82È\82¨\92\83\89ï\82Ì\8eå\8dÃ\8eÒ\82¾\82ë\81H
+[2A 0x000439E0 00 Marisa *Remilia]
+\82ä\81A\96ù\89õ\82È\81c\82¨\92\83\89ï\81c
+[2A 0x00043BD4 00 Marisa *Remilia]
+\81c\82Ü\82 \82¢\82¢\82í\81B
+\82³\82 \81A\8ds\82­\82í\82æ
+[2A 0x00043DC8 00 Marisa *Remilia]
+\8c\8c\82à\92\83\82à\97â\82¦\82½\82à\82Ì\82Å\82Í
+\95s\96ù\89õ\82È\82¾\82¯\82¾\82©\82ç\82Ë
+[28 0x0004448C 00 Marisa *Remilia]
+\82 \82ç\81A\95s\88Ó\91Å\82¿\82Æ\82Í
+\82È\82©\82È\82©\8cÆ\91§\82Ë
+[2A 0x00044694 00 *Marisa Remilia]
+\82Ü\82³\82©\8cø\82©\82È\82¢\82È\82ñ\82Ä\81c\81I\81H
+[2A 0x00044888 00 Marisa *Remilia]
+\94­\91z\82Í\97Ç\82©\82Á\82½\82¯\82Ç
+\91\8a\8eè\82ª\8e\84\82Æ\82¢\82¤\82±\82Æ\82ð\96Y\82ê\82Ä\82¢\82½\82æ\82¤\82Ë
+[2A 0x00044A7C 00 *Marisa Remilia]
+\82®\82Ê\82Ê\81c
+[2A 0x00044C70 00 Marisa *Remilia]
+\82³\82 \81A\91±\82«\82ð\8en\82ß\82é\82í\82æ\81I
+[28 0x00045334 02 *Marisa]
+\82 \82 \81c
+[2A 0x000454E4 02 *Marisa]
+\94ü\96¡\82©\82Á\82½\82È\81A\82 \82Ì\83P\81[\83L\81c
+[2A 0x00045678 02 *Marisa]
+\94\92\82¢\83N\83\8a\81[\83\80\82Ì\8fã\82É
+\8dg\82¢\82³\82­\82ç\82ñ\82Ú\82©\81c
+[2A 0x0004580C 02 *Marisa]
+\82 \82¢\82Â\82à\82³\82Á\82³\82Æ
+\8fo\82Ä\82­\82ê\82Î\82¢\82¢\82Ì\82É
+[2A 0x000459A0 02 *Marisa]
+\82»\82µ\82½\82ç\81A\82±\82¤\82µ\82Ä\82í\82´\82í\82´
+\8c}\82¦\82É\82¢\82­\8eè\8aÔ\82à\8fÈ\82¯\82½\82Ì\82É\82È\82Á
+[2A 0x00045B34 02 *Marisa]
+\82Ü\82Á\82½\82­
+\82 \82ê\82¾\82¯\93ö\82â\82©\82É\82â\82Á\82Ä\82½\82ç
+[2A 0x00045CC8 02 *Marisa]
+\82Ó\82Â\81[\82Í\92Þ\82ç\82ê\82Ä
+\8fo\82Ä\82­\82é\82Í\82¸\82¾\82ë\81H
+[2A 0x00045E5C 02 *Marisa]
+\82 \82Ì\82Ü\82Ü\82Ì\83y\81[\83X\82Å
+\83`\83\8b\83m\82ª\83P\81[\83L\82ð\90H\82Á\82Ä\82½\82ç
+[2A 0x00045FF0 02 *Marisa]
+\82¨\92\83\89ï\82Ì\82¨\8aJ\82«\82à
+\8bß\82¢\82Á\82Ä\82Ì\82É\82³
+[2A 0x00046184 02 *Marisa]
+\81c\8ed\95û\82È\82¢\81B
+\82 \82¢\82Â\82Ì\82Æ\82±\82ë\82Ü\82Å\8ds\82Á\82Ä\82â\82é\82©
+[28 0x000467E8 00 *Marisa Fran]
+\82æ\82Á
+[2A 0x000469F0 00 Marisa *Fran]
+\8d\95\94\92\81I\81H
+[2A 0x00046BE4 00 *Marisa Fran]
+\8d\95\94\92\82Á\82Ä\81c
+[2A 0x00046DD8 00 *Marisa Fran]
+\8e\84\82Ì\82±\82Æ\82©\81I\81H
+[2A 0x00046FCC 00 *Marisa Fran]
+\96\82\97\9d\8d¹\82¾\82ë\81I\81H
+\96Y\82ê\82½\82Ì\82©\81H
+[2A 0x000471C0 00 Marisa *Fran]
+\82»\82ñ\82È\82í\82¯\82È\82¢\82\82á\82È\82¢
+[2A 0x000473B4 00 *Marisa Fran]
+\81I\81H
+[2A 0x000475A8 00 *Marisa Fran]
+\82Á\82½\82­\81A\83t\83\89\83\93\83h\81[\83\8b\82Í
+\82â\82Á\82Æ\82¨\96Ú\8ao\82ß\82Ý\82½\82¢\82¾\82È
+[2A 0x0004779C 00 Marisa *Fran]
+\82»\82¤\81c
+\82È\82ñ\82¾\82©\91\9b\81X\82µ\82¢\82Æ\8ev\82Á\82Ä
+[2A 0x00047990 00 Marisa *Fran]
+\90l\82ª\90Q\82Ä\82é\8aÔ\82É\82È\82É\82µ\82Ä\82½\82Ì\81H
+[2A 0x00047B84 00 *Marisa Fran]
+\82¿\82å\82Á\82Æ\82¨\92\83\89ï\82ð\82Ë
+[2A 0x00047D78 00 Marisa *Fran]
+\82»\82¤\82È\82Ì\81B
+\82»\82ñ\82È\97\\92è\81A\92m\82ç\82È\82©\82Á\82½\82í
+[2A 0x00047F6C 00 *Marisa Fran]
+\83\8c\83~\83\8a\83A\82ª
+\82±\82Á\82»\82è\8cv\89æ\82µ\82Ä\82½\82ñ\82¾
+[2A 0x00048160 00 *Marisa Fran]
+\82»\82ê\82É\82µ\82Ä\82à\82³\81A
+\83t\83\89\83\93\83h\81[\83\8b\82Í\82¨\90Q\96V\82³\82ñ\82¾\82æ\82È
+[2A 0x00048354 00 *Marisa Fran]
+\82¨\82©\82°\82Å\91Ò\82¿\82­\82½\82Ñ\82ê\82Ä
+\82¿\82å\82Á\82Æ\90H\82×\89ß\82¬\82½\82\82á\82ñ
+[2A 0x00048548 00 Marisa *Fran]
+\82¨\8eo\82³\82Ü\82Í\82Ç\82¤\82µ\82Ä\82¢\82é\82Ì\81H
+[2A 0x0004873C 00 *Marisa Fran]
+\83\8c\83~\83\8a\83A\82È\82ç
+\8e\84\82Ì\82Æ\82È\82è\82Å\96°\82Á\82Ä\82½\82æ
+[2A 0x00048930 00 Marisa *Fran]
+\81c\81c\81I
+[2A 0x00048B24 00 Marisa *Fran]
+\8eo\97l\82É\89½\82µ\82½\82Ì\81c
+[2A 0x00048D18 00 *Marisa Fran]
+\82¢\82â\95Ê\82É\89½\82à\81B
+\95 \82¢\82Á\82Ï\82¢\82Å\90Q\82Ä\82é\82¾\82¯\82Å\81c
+[2A 0x00048F0C 00 Marisa *Fran]
+\83t\83t\81c
+[2A 0x00049100 00 Marisa *Fran]
+\83t\83t\83t\83t\83t\83t\83t\83t\83t\81ô
+[2A 0x000492F4 00 Marisa *Fran]
+\8bY\8c¾\82Í\82½\82­\82³\82ñ\82æ\81c\90l\8aÔ\81B
+\82¨\8eo\97l\82É\98TåS\82ð\93­\82¢\82½\82¤\82¦
+[2A 0x000494E8 00 Marisa *Fran]
+\8aÙ\82ð\8dr\82ç\82µ\82Ä
+\90\82«\82Ä\8bA\82ê\82é\82Æ\8ev\82Á\82Ä\82é\82Ì\81H
+[2A 0x000496DC 00 *Marisa Fran]
+\82È\82ñ\82©\82æ\82­\82í\82©\82ñ\82È\82¢\82¯\82Ç
+[2A 0x000498D0 00 *Marisa Fran]
+\96Ú\82ª\8ao\82ß\82Ä
+\82â\82é\8bC\82É\82È\82Á\82½\82Ý\82Ä\81[\82¾\82È
+[2A 0x00049AC4 00 *Marisa Fran]
+\82¿\82å\82¤\82Ç\82¢\82¢\81I
+\95 \82²\82È\82µ\82É\91Î\8c\88\82¾\81I
+[2A 0x00049CB8 00 Marisa *Fran]
+\82¤\82Ó\82Ó\81c\82³\82Á\82«\82Ü\82Å
+\8c©\82Ä\82¢\82½\88«\96²\82Ì\91±\82«\82ª\8c©\82ç\82ê\82é\82Ë
+[2A 0x00049EAC 00 Marisa *Fran]
+\96\82\97\9d\8d¹\82à
+\88ê\8f\8f\82É\8c©\82½\82¢\81H
+[2A 0x0004A0A0 00 *Marisa Fran]
+\82Ç\82ñ\82È\96²\82È\82ñ\82¾\81H
+[2A 0x0004A294 00 Marisa *Fran]
+\82·\82×\82Ä\82ª\8cJ\82è\95Ô\82³\82ê\82Ä
+\82¸\82¤\82Á\82Æ\8fI\82í\82ç\82È\82¢\82Ì
+[2A 0x0004A488 00 Marisa *Fran]
+\82»\82ê\82Å\82Ë\81c
+[2A 0x0004A67C 00 Marisa *Fran]
+\8e\84\82Í\82»\82ê\82ð
+\8fI\82í\82ç\82¹\82Ä\82µ\82Ü\82¤\82©\82ç
+[2A 0x0004A870 00 Marisa *Fran]
+\8aF\82É\8d¦\82Ü\82ê\82Ä\82µ\82Ü\82¤\82Ì\82æ\81c
+[2A 0x0004AA64 00 *Marisa Fran]
+\82 \81A\82¢\82â\81A\82»\82ê\82Á\82Ä
+\82«\82Á\82Æ\90³\96²\82¾\82º\81H
+[2A 0x0004AC58 00 Marisa *Fran]
+\82¾\82Á\82½\82ç\81A\82±\82±\82Í
+\88«\96²\82Ì\91±\82«\82È\82Ì\82Ë
+[2A 0x0004AE4C 00 Marisa *Fran]
+\82¢\82¢\82í\81A\82 \82È\82½\82Ì\82±\82Æ
+\8dg\82É\90õ\82ß\82½\82­\82È\82Á\82Ä\82«\82½\81c
+[2A 0x0004B040 00 Marisa *Fran]
+\8eE\82Á\82Ä\82â\82é\82í\81I\81I
+[2A 0x0004B234 00 *Marisa Fran]
+\96]\82Þ\82Æ\82±\82ë\82¾\81I
+[28 0x0004B8F8 00 *Marisa Fran]
+\82Ü\81A\82±\82ñ\82È\82à\82ñ\82©\82È\81ô
+[2A 0x0004BB00 00 Marisa *Fran]
+\81c\96²\82Å\8c©\82½\82Ì\82Æ\88á\82¤\81c
+[2A 0x0004BCF4 00 *Marisa Fran]
+\82Ç\82ñ\82È\96²\82¾\82Á\82½\82ñ\82¾\82æ
+[2A 0x0004BEE8 00 Marisa *Fran]
+\96\82\97\9d\8d¹\82Æ\8e\84\82ª\89f\82Á\82½
+\97â\82½\82¢\8fÉ\8eq\82Ý\82½\82¢\82È\89½\82©\82ð
+[2A 0x0004C0DC 00 Marisa *Fran]
+\8e\84\82Í\82±\82¤\82µ\82Ä
+\82¬\82ã\82Á\82Æ\82µ\82Ä\81c
+[2A 0x0004C2D0 00 *Marisa Fran]
+\83p\83\8a\81[\83\93\81I
+\82¾\82ë\82Á\81H
+[2A 0x0004C4C4 00 Marisa *Fran]
+\81c\81I
+[2A 0x0004C6B8 00 Marisa *Fran]
+\82Ç\82¤\82µ\82Ä\92m\82Á\82Ä\82¢\82é\82Ì\81H
+[2A 0x0004C8AC 00 *Marisa Fran]
+\82¾\82©\82ç\82³\82Á\82«\8c¾\82Á\82½\82¾\82ë\81H
+\90³\96²\82Á\82Û\82¢\82Á\82Ä
+[2A 0x0004CAA0 00 *Marisa Fran]
+\82 \82Æ\82Å\82³\81u\91\93\96\82\8b¾\81v\82Á\82Ä\8b¾\82ð
+\89ó\82µ\82Ä\82Ù\82µ\82¢\82ñ\82¾
+[2A 0x0004CC94 00 *Marisa Fran]
+\82\82á\82È\82¢\82Æ
+\92N\82à\82±\82±\82©\82ç\8fo\82ç\82ê\82È\82¢\82µ
+[2A 0x0004CE88 00 *Marisa Fran]
+\8e\84\82½\82¿\82à
+\89Æ\82É\8bA\82ê\82È\82¢\82©\82ç\82³\82Á
+[2A 0x0004D07C 00 Marisa *Fran]
+\92N\82à\8aO\82É\8fo\82ç\82ê\82È\82¢\82Ì\82Í
+\94ß\82µ\82¢\82±\82Æ\82©\82à\82µ\82ê\82È\82¢\82¯\82Ç
+[2A 0x0004D270 00 Marisa *Fran]
+\82¿\82å\82Á\82Æ\82»\82ê\82à\82¢\82¢\82©\82à\81c
+[2A 0x0004D464 00 Marisa *Fran]
+\82¸\82Á\82Æ\88ê\8f\8f\82Ë
+[2A 0x0004D658 00 *Marisa Fran]
+\82¢\82â\81A\82»\82ê\82Í\8a¨\95Ù\81c
+[2A 0x0004D84C 00 Marisa *Fran]
+\81I\81H
+[2A 0x0004DA40 00 *Marisa Fran]
+\82¢\82â\82¢\82â\81A\83V\83\87\83b\83N\8eó\82¯\82é\82È\82æ\81I
+[2A 0x0004DC34 00 *Marisa Fran]
+\88ê\8f\8f\82É\92\87\97Ç\82­\82Æ\82©\82ª
+\8c\99\82È\82ñ\82\82á\82È\82­\82Ä
+[2A 0x0004DE28 00 *Marisa Fran]
+\8aO\82É\8fo\82ç\82ê\82È\82¢\82Ì\82ª
+\8d¢\82é\82Á\82Ä\82±\82Æ\82¾\82©\82ç\81I
+[2A 0x0004E01C 00 Marisa *Fran]
+\82Ó\82¤\81c
+[2A 0x0004E210 00 Marisa *Fran]
+\96\82\97\9d\8d¹\81A\8d¡\82Ì\82Í\8fç\92k\82æ
+[2A 0x0004E404 00 *Marisa Fran]
+\90^\8aç\82·\82¬\82é\82¾\82ë\81I
+[2A 0x0004E5F8 00 *Marisa Fran]
+\82Ü\81A\82¢\82¢\82â\81B
+\82Ù\82ç\81A\91\81\82­\8ds\82±\82Á
+[2A 0x0004E7EC 00 Marisa *Fran]
+\82¨\92\83\89ï\82É\81c\81H
+\8aO\82É\8fo\82é\82Ì\82Í\81c
+[2A 0x0004E9E0 00 *Marisa Fran]
+\82 \82 \81A\91å\8fä\95v\81B
+\92ë\82Å\82â\82Á\82Ä\82é\82¯\82Ç
+[2A 0x0004EBD4 00 *Marisa Fran]
+\8d¡\82Í\8dg\82¢\96\82ª\8fo\82Ä\82é\82©\82ç
+\82¾\82Á\82½\82ç\8bz\8c\8c\8bS\82Å\82à\95½\8bC\82¾\82ë\81H
+[2A 0x0004EDC8 00 *Marisa Fran]
+\82Ù\82ç\81A\8aO\82É\8fo\82é\82ñ\82¾\82æ
+[2A 0x0004EFBC 00 Marisa *Fran]
+\81c\82í\82©\82Á\82½
+[2A 0x0004F1B0 00 Marisa *Fran]
+\82¨\92\83\89ï\81A\8ay\82µ\82Ý\82Ë
+[2A 0x0004F3A4 00 *Marisa Fran]
+\82¾\82ë\81H
+[2A 0x0004F598 00 *Marisa Fran]
+\94\92\82¢\83N\83\8a\81[\83\80\82Æ
+\8dg\82¢\82³\82­\82ç\82ñ\82Ú\82ª\82Ì\82Á\82Ä\82é\82³
+[2A 0x0004F78C 00 *Marisa Fran]
+\82·\82²\82¢\94ü\96¡\82¢\83P\81[\83L\82ª\82 \82é\82ñ\82¾
+[2A 0x0004F980 00 *Marisa Fran]
+\83`\83\8b\83m\82ª\91_\82Á\82Ä\82½\82¯\82Ç
+\8dç\96é\82É\8am\95Û\82³\82¹\82Ä\82é\82©\82ç
+[2A 0x0004FB74 00 Marisa *Fran]
+\82 \82è\82ª\82Æ\82¤\81A\97D\82µ\82¢\82í\82Ë
+[2A 0x0004FD68 00 *Marisa Fran]
+\82»\81A\82»\82¤\82Å\82à\82È\82¢\82¯\82Ç\82È\82Á
+[2A 0x0004FF5C 00 *Marisa Fran]
+\82Ù\82ç\82Ý\82ñ\82È\91Ò\82Á\82Ä\82é\82ñ\82¾\82©\82ç
+\82³\82Á\82³\82Æ\8ds\82­\82¼\81I
+[2A 0x00050150 00 Marisa *Fran]
+\82Ó\82¤\82ñ\81c\82Ý\82ñ\82È\82©\81c
+[2A 0x00050344 00 Marisa *Fran]
+\82½\82Ü\82É\82È\82ç
+\82»\82ê\82à\82¢\82¢\82©\82à\82µ\82ê\82È\82¢
+[2A 0x00050538 00 Marisa *Fran]
+\96\82\97\9d\8d¹\81c
+[2A 0x0005072C 00 *Marisa Fran]
+\82ñ\81H
+[2A 0x00050920 00 Marisa *Fran]
+\91¾\82Á\82¿\82á\82¤\82©\82ç\81c
+\82¨\92\83\89ï\82Å\82Í\81c
+[2A 0x00050B14 00 Marisa *Fran]
+\82à\82¤\83R\83\93\83e\83B\83j\83\85\81[\82Å\82«\82È\82¢\82Ë
+[28 0x000511D8 02 *Marisa]
+\82È\82Á\82È\82ñ\82¾\81I\81H
+[2A 0x00051388 02 *Marisa]
+\89½\82à\8c©\82¦\82È\82¢\82µ\81A\82±\82ê\82Á\82Ä\81I\81H
+[2A 0x0005151C 02 *Marisa]
+\82Ç\82±\82Ö\98A\82ê\82Ä\82©\82ê\82é\82ñ\82¾\81c
+[2A 0x000516B0 02 *Marisa]
+\8c³\82Ì\8fê\8f\8a\82É\97¬\82³\82ê\82Ä\82é\82Ì\82©\81c\81H
+[28 0x00051D14 02 *Marisa]
+\82ñ\81H
+[2A 0x00051EC4 02 *Marisa]
+\82±\82±\82Í\82Ç\82±\82¾\81H
+[2A 0x00052058 02 *Marisa]
+\82í\82Á\81A\82¿\82å\81A\82¿\82å\82Á\82Æ\91Ò\82Ä\82Á\82Ä\81I
+\90g\91Ì\82ª\82¢\82¤\82±\82Æ\82ð\82«\82©\82Ë\81[\81I\81H
+[2A 0x000521EC 02 *Marisa]
+\82±\82Ì\82Ü\82Ü\82Ç\82±\82©\82É\97¬\82³\82ê\82Ä\81c
diff --git a/scripts/en/SceStageReimu.txt b/scripts/en/SceStageReimu.txt
new file mode 100644 (file)
index 0000000..1b8b305
--- /dev/null
@@ -0,0 +1,1663 @@
+[28 0x00000374 02 *Reimu]
+I thought I was going to kick back
+and drink my tea...
+[2A 0x00000524 02 *Reimu]
+But now I can't. Not just tea, but
+even the sweets will go to waste.
+[2A 0x000006B8 02 *Reimu]
+I can't have even a single moment of
+peace, can I?
+[2A 0x0000084C 02 *Reimu]
+That said, Marisa...
+Where the heck is she?
+[2A 0x000009E0 02 *Reimu]
+"Where's the treasure," she says.
+And off she flies somewhere.
+[2A 0x00000B74 02 *Reimu]
+She'll probably come back later.
+I bet she forgot something here.
+[2A 0x00000D08 02 *Reimu]
+She'll come back empty handed, so
+I can't expect to stop being poor...
+[2A 0x00000E9C 02 *Reimu]
+Hm?
+[2A 0x00001030 02 *Reimu]
+The lake... Was it always this large?
+[2A 0x000011C4 02 *Reimu]
+No, I don't think so.
+Nothing has changed from last time.
+[2A 0x00001358 02 *Reimu]
+With this heavy fog, it just
+seems much larger.
+[2A 0x000014EC 02 *Reimu]
+So, what is this?
+[2A 0x00001680 02 *Reimu]
+......
+[2A 0x00001814 02 *Reimu]
+Mm...?
+[2A 0x000019A8 02 *Reimu]
+Is it possible this is
+like that Scarlet Mist...?
+[2A 0x00001B3C 02 *Reimu]
+If that's the case,
+it's obvious it's her doing.
+[2A 0x00001CD0 02 *Reimu]
+I don't think they would come to the
+shrine, if they're planning something.
+[2A 0x00001E64 02 *Reimu]
+It can't be helped...
+[2A 0x00001FF8 02 *Reimu]
+I'll go check it out,
+the Scarlet Devil Mansion!
+[28 0x0000265C 00 Reimu *Cirno]
+A-ha-ha-ha-ha!
+[2A 0x00002864 00 *Reimu Cirno]
+Ah, she showed up.
+[2A 0x00002A58 00 Reimu *Cirno]
+...Ehehe.
+Yup, I showed up.
+[2A 0x00002C4C 00 *Reimu Cirno]
+Yeah, yeah.
+[2A 0x00002E40 00 Reimu *Cirno]
+*Sigh*
+[2A 0x00003034 00 *Reimu Cirno]
+Why are you sighing?
+[2A 0x00003228 00 Reimu *Cirno]
+People who can't read the mood.
+This is why people like you...
+[2A 0x0000341C 00 *Reimu Cirno]
+You're in my way. I have stuff to do,
+so see ya.
+[2A 0x00003610 00 Reimu *Cirno]
+Wa-wait!
+[2A 0x00003804 00 Reimu *Cirno]
+I'll say my lines right,
+so please listen!
+[2A 0x000039F8 00 *Reimu Cirno]
+Fine.
+[2A 0x00003BEC 00 Reimu *Cirno]
+Alright!
+[2A 0x00003DE0 00 Reimu *Cirno]
+Ufufu...
+[2A 0x00003FD4 00 Reimu *Cirno]
+Ehehe.
+[2A 0x000041C8 00 Reimu *Cirno]
+Ahaha!
+[2A 0x000043BC 00 Reimu *Cirno]
+Get...lost!?
+[2A 0x000045B0 00 *Reimu Cirno]
+I'm not lost, though.
+I always come this way.
+[2A 0x000047A4 00 Reimu *Cirno]
+Eh? Ah! Oh!
+[2A 0x00004998 00 Reimu *Cirno]
+I see!
+[2A 0x00004B8C 00 Reimu *Cirno]
+Man, I wanted to say something cool.
+You're horrible for messing it up!
+[2A 0x00004D80 00 *Reimu Cirno]
+I get it.
+Then, want to try one more time?
+[2A 0x00004F74 00 Reimu *Cirno]
+Eh...when I'm told that so suddenly,
+what should I do?
+[2A 0x00005168 00 Reimu *Cirno]
+Hmm...Ummm...Lessee...
+[2A 0x0000535C 00 Reimu *Cirno]
+Okay! How about this?
+[2A 0x00005550 00 Reimu *Cirno]
+Fly off and burn up, you
+summer insect!
+[2A 0x00005744 00 *Reimu Cirno]
+But it's spring.
+[2A 0x00005938 00 Reimu *Cirno]
+What-
+[2A 0x00005B2C 00 *Reimu Cirno]
+Also, the one who's more like like a flying
+insect is over there, methinks.
+[2A 0x00005D20 00 Reimu *Cirno]
+Bzzzzz? Like that?
+[2A 0x00005F14 00 *Reimu Cirno]
+That, that.
+[2A 0x00006108 00 Reimu *Cirno]
+Wait, I'm not a bug!
+[2A 0x000062FC 00 *Reimu Cirno]
+Even though you're as easy to
+swat as a fly?
+[2A 0x000064F0 00 Reimu *Cirno]
+Making me look like an idiot--!
+[2A 0x000066E4 00 Reimu *Cirno]
+Wait a minute...?
+[2A 0x000068D8 00 Reimu *Cirno]
+I feel like we had this argument
+before, somehow!?
+[2A 0x00006ACC 00 Reimu *Cirno]
+Meh, whatever.
+[2A 0x00006CC0 00 Reimu *Cirno]
+I'll give you a treatment of
+absolute zero and store you away!
+[2A 0x00006EB4 00 *Reimu Cirno]
+Why store me away?
+[2A 0x000070A8 00 Reimu *Cirno]
+Dunno!
+[2A 0x0000729C 00 *Reimu Cirno]
+She said she didn't know...
+[2A 0x00007490 00 Reimu *Cirno]
+Let's get on with the battle!
+[2A 0x00007684 00 *Reimu Cirno]
+Even though I wanted to avoid that...
+[2A 0x00007878 00 *Reimu Cirno]
+...Alright.
+[2A 0x00007A6C 00 *Reimu Cirno]
+It's not like I hate it!
+[28 0x00008130 00 Reimu *Cirno]
+Mumumumumumu...
+I lost...
+[2A 0x00008338 00 Reimu *Cirno]
+What are you gonna do from here on?
+You just beat the last boss!
+[2A 0x0000852C 00 *Reimu Cirno]
+No, no.
+Cirno, you were the first.
+[2A 0x00008720 00 Reimu *Cirno]
+Gaaaaaaaaaaan...
+[2A 0x00008914 00 *Reimu Cirno]
+She looks like the world's ending,
+this fairy!
+[2A 0x00008B08 00 Reimu *Cirno]
+Ehehehe.
+[2A 0x00008CFC 00 *Reimu Cirno]
+I wasn't complementing you.
+[2A 0x00008EF0 00 Reimu *Cirno]
+La, la, la, la, la~
+[2A 0x000090E4 00 *Reimu Cirno]
+You look like you're having fun.
+[2A 0x000092D8 00 Reimu *Cirno]
+I guess.
+[2A 0x000094CC 00 *Reimu Cirno]
+It's good that you're all perked up.
+There, there, there.
+[2A 0x000096C0 00 Reimu *Cirno]
+Ehehehehe.
+[2A 0x000098B4 00 Reimu *Cirno]
+Spin, spin.
+Spinspinspinspinspin!
+[2A 0x00009AA8 00 *Reimu Cirno]
+She's gotten attached to me...
+[2A 0x00009C9C 00 Reimu *Cirno]
+I'm totally not attached to
+you or anything!
+[2A 0x00009E90 00 Reimu *Cirno]
+Ju-just...
+[2A 0x0000A084 00 Reimu *Cirno]
+It felt a little
+relaxing, that's all!
+[2A 0x0000A278 00 *Reimu Cirno]
+Either's fine with me.
+[2A 0x0000A46C 00 Reimu *Cirno]
+I forgot, where are you going?
+[2A 0x0000A660 00 Reimu *Cirno]
+Around here it's super duper foggy!
+[2A 0x0000A854 00 Reimu *Cirno]
+Wait...
+Could something have happened!?
+[2A 0x0000AA48 00 *Reimu Cirno]
+Way too slow to realize...
+[2A 0x0000AC3C 00 *Reimu Cirno]
+Yes, something needs
+to be dealt with.
+[2A 0x0000AE30 00 *Reimu Cirno]
+...I'm going to pay a visit to them.
+[2A 0x0000B024 00 *Reimu Cirno]
+The people at the mansion, that is.
+[2A 0x0000B218 00 Reimu *Cirno]
+That so?
+Be careful then.
+[2A 0x0000B40C 00 *Reimu Cirno]
+Later!
+[2A 0x0000B6CC 02 *Cirno]
+Bzzzz~
+[2A 0x0000B860 02 *Cirno]
+Bzzzz...
+[2A 0x0000B9F4 02 *Cirno]
+Bzzzz...Bzzzz...Bzzzz!?
+[2A 0x0000BB88 02 *Cirno]
+Why am I making 'Bzzzz' sounds...?
+[2A 0x0000BD1C 02 *Cirno]
+I'm not even a bug!
+[28 0x0000C2FC 00 Reimu *Cirno]
+What!?
+[2A 0x0000C504 00 Reimu *Cirno]
+Surprise attacks aren't something the
+protagonist should be doing!
+[2A 0x0000C6F8 00 *Reimu Cirno]
+But, you're full of gaps~ \81ô
+[2A 0x0000C8EC 00 Reimu *Cirno]
+Gaaan!
+[2A 0x0000CAE0 00 Reimu *Cirno]
+What a horrible person...
+[2A 0x0000CCD4 00 *Reimu Cirno]
+Well, I don't mind, I don't mind~
+[2A 0x0000CEC8 00 *Reimu Cirno]
+Well, let's continue.
+[2A 0x0000D0BC 00 Reimu *Cirno]
+I'll bear this grudge to the end of my life!
+Prepare yourself!
+[28 0x0000D780 02 *Reimu]
+Mm...here?
+[2A 0x0000D930 02 *Reimu]
+I thought I entered the Scarlet Devil
+Mansion, but this looks nothing like it...
+[2A 0x0000DAC4 02 *Reimu]
+Ah, that's probably it.
+Space-time is warped here.
+[2A 0x0000DC58 02 *Reimu]
+Haa...
+[2A 0x0000DDEC 02 *Reimu]
+This strange place,
+is it her doing?
+[2A 0x0000DF80 02 *Reimu]
+Causing problems for people is
+pretty much her job...
+[2A 0x0000E114 02 *Reimu]
+But, involving me is wrong!
+[2A 0x0000E2A8 02 *Reimu]
+Hm...
+Looks like someone needs some discipline.
+[28 0x0000E90C 00 Reimu *Sanae]
+Ara ara ara ara~
+What a coincidence.
+[2A 0x0000EB14 00 *Reimu Sanae]
+Shouldn't that be my line?
+[2A 0x0000ED08 00 *Reimu Sanae]
+Why are you here?
+[2A 0x0000EEFC 00 Reimu *Sanae]
+I do know,
+It truly must be your fault.
+[2A 0x0000F0F0 00 *Reimu Sanae]
+What is?
+[2A 0x0000F2E4 00 Reimu *Sanae]
+Ara ara.
+Playing the fool?
+[2A 0x0000F4D8 00 *Reimu Sanae]
+What are you talking about?
+[2A 0x0000F6CC 00 Reimu *Sanae]
+I was called out to the Scarlet Devil Mansion.
+[2A 0x0000F8C0 00 *Reimu Sanae]
+Called out...?
+[2A 0x0000FAB4 00 Reimu *Sanae]
+Mmm.
+That said, why this place?
+[2A 0x0000FCA8 00 Reimu *Sanae]
+Why was I dropped in this place!?
+Confess!
+[2A 0x0000FE9C 00 *Reimu Sanae]
+I have no clue, so...
+[2A 0x00010090 00 Reimu *Sanae]
+I...see...
+You don't know...
+[2A 0x00010284 00 *Reimu Sanae]
+Sanae, do you know this place's identity?
+[2A 0x00010478 00 Reimu *Sanae]
+Unfortunately, I do not.
+[2A 0x0001066C 00 Reimu *Sanae]
+Before I knew it,
+I was floating around aimlessly.
+[2A 0x00010860 00 Reimu *Sanae]
+Surely, it was some nasty
+curse placed on me!
+[2A 0x00010A54 00 *Reimu Sanae]
+There's no need to get so angry...
+[2A 0x00010C48 00 *Reimu Sanae]
+Uhm...See ya!
+[2A 0x00010E3C 00 Reimu *Sanae]
+Stay right there, Hakurei Priestess.
+I have questions for you.
+[2A 0x00011030 00 Reimu *Sanae]
+Why was I, a human and god,
+dropped into this underworld?
+[2A 0x00011224 00 Reimu *Sanae]
+Am I being taken a prisoner?
+[2A 0x00011418 00 Reimu *Sanae]
+I cannot fathom that you know nothing.
+Not an ounce of doubt.
+[2A 0x0001160C 00 *Reimu Sanae]
+Are you doubting me?
+[2A 0x00011800 00 Reimu *Sanae]
+Not the least.
+[2A 0x000119F4 00 Reimu *Sanae]
+It is a fact!
+[28 0x000120B8 00 Reimu *Sanae]
+Rrgghh...
+To think that I would suffer a loss!
+[2A 0x000122C0 00 Reimu *Sanae]
+*Sigh* I guess it couldn't be helped.
+[2A 0x000124B4 00 Reimu *Sanae]
+You were my opponent, after all.
+[2A 0x000126A8 00 *Reimu Sanae]
+So, what did you come here
+for exactly?
+[2A 0x0001289C 00 Reimu *Sanae]
+I was told they needed help.
+For what though, I've not yet heard.
+[2A 0x00012A90 00 Reimu *Sanae]
+Also, I was not the only one called upon,
+did you know that?
+[2A 0x00012C84 00 *Reimu Sanae]
+I see.
+That said, you...
+[2A 0x00012E78 00 *Reimu Sanae]
+For such a nonsense reason
+I'm surprised you came all the way here.
+[2A 0x0001306C 00 Reimu *Sanae]
+Mm?
+[2A 0x00013260 00 Reimu *Sanae]
+Today the weather was very
+pleasant.
+[2A 0x00013454 00 Reimu *Sanae]
+I stopped on my way here at the
+confectionary and bought dango.
+[2A 0x00013648 00 Reimu *Sanae]
+They were so delicious.
+So very delicious~
+[2A 0x0001383C 00 *Reimu Sanae]
+You seem satisfied...
+[2A 0x00013A30 00 Reimu *Sanae]
+Yes, of course.
+Before I forget...
+[2A 0x00013C24 00 Reimu *Sanae]
+Let me tell you something
+rather important.
+[2A 0x00013E18 00 *Reimu Sanae]
+...Important?
+[2A 0x0001400C 00 Reimu *Sanae]
+It seems that you and I
+can't get out of here.
+[2A 0x00014200 00 Reimu *Sanae]
+From this Scarlet Devil Mansion-ish place
+to the outside!
+[2A 0x000143F4 00 *Reimu Sanae]
+What is that?
+Scarlet Devil Mansion-ish?
+[2A 0x000145E8 00 Reimu *Sanae]
+I'll leave everything to you from here,
+Hakurei Priestess.
+[2A 0x000147DC 00 *Reimu Sanae]
+Saying things on whims like that...
+that's how it has to be, though.
+[2A 0x000149D0 00 Reimu *Sanae]
+Mhm. That is so.
+[2A 0x00014BC4 00 Reimu *Sanae]
+After all, it suits you more to
+deal with troublemakers.
+[2A 0x00014DB8 00 Reimu *Sanae]
+After all, it's you we're talking about.
+Ufufufufu.
+[2A 0x00014FAC 00 *Reimu Sanae]
+Later, then.
+[2A 0x000151A0 00 Reimu *Sanae]
+Yes, have a pleasant day.
+[2A 0x00015460 02 *Sanae]
+Please do be careful...
+Hakurei Priestess.
+[2A 0x000155F4 02 *Sanae]
+Koumakyo has more than one secret
+hidden in it.
+[2A 0x00015788 02 *Sanae]
+About there being no way out,
+there's no way that's the case.
+[2A 0x0001591C 02 *Sanae]
+Kya~
+[2A 0x00015AB0 02 *Sanae]
+Not realizing this, what a klutz
+Sanae, girl~
+[28 0x00016090 02 *Reimu]
+\82Ç\82¤\82µ\82½\82Ì\82©\82È
+\82È\82ñ\82¾\82©\82Ù\82±\82è\82Á\82Û\82¢\81H
+[2A 0x00016240 02 *Reimu]
+\95s\8ev\8bc\82Æ\8cÃ\82¢\96{\82Ì\93õ\82¢\82ª\82µ\82È\82¢
+\8fê\8f\8a\82¾\82Á\82½\82Ì\82É
+[2A 0x000163D4 02 *Reimu]
+\83\81\83C\83h\82ª\96Z\82µ\82­\82Ä
+\91|\8f\9c\82É\82Ü\82Å\8eè\82ª\82Ü\82í\82Á\82Ä\82¢\82È\82¢\81H
+[2A 0x00016568 02 *Reimu]
+\82¾\82Æ\82µ\82½\82ç\81A\8dg\82¢\96\82Æ\82¢\82¢
+\82¨\82©\82µ\82È\8fo\97\88\8e\96\82Ì\97 \91¤\82É
+[2A 0x000166FC 02 *Reimu]
+\82 \82¢\82Â\82Æ\83\81\83C\83h\82ª\82¢\82é\82Æ\8dl\82¦\82Ä
+\82«\82Á\82Æ\8aÔ\88á\82¢\82È\82¢\82í\82Ë
+[2A 0x00016890 02 *Reimu]
+\82Ü\81A\82¢\82¢\82¯\82Ç
+[2A 0x00016A24 02 *Reimu]
+\8f\91\89Ë\82Ì\8eå\82É\89ï\82¦\82½\82ç
+\89½\82©\92m\82Á\82Ä\82é\82Æ\8ev\82¤\82©\82ç
+[28 0x00017088 00 Reimu *Patch]
+\82¨\82Í\82æ\82¤\81c
+[2A 0x00017290 00 *Reimu Patch]
+\82¦\81A\82 \81A\82¨\82Í\82æ\82¤
+[2A 0x00017484 00 Reimu *Patch]
+\8dç\96é\82È\82Ì\81H
+[2A 0x00017678 00 *Reimu Patch]
+\8e\84\82Í\8dç\96é\82\82á\82È\82¢\82í
+[2A 0x0001786C 00 Reimu *Patch]
+\82»\82¤\82È\82Ì\81c
+\8dÅ\8bß\91|\8f\9c\82É\97\88\82Ä\82­\82ê\82È\82¢\82í\82Ë
+[2A 0x00017A60 00 Reimu *Patch]
+\82 \82ç\81A\97ì\96²\81c
+[2A 0x00017C54 00 Reimu *Patch]
+\8bC\82ð\82Â\82¯\82Ä\81B
+\82±\82±\82Í\82Ù\82±\82è\82Á\82Û\82¢\82©\82ç
+[2A 0x00017E48 00 Reimu *Patch]
+\82»\82¤\81c
+\82Ü\82é\82Å\82 \82È\82½\82Ì\82æ\82¤\82É
+[2A 0x0001803C 00 *Reimu Patch]
+\89½\82æ\82»\82ê
+[2A 0x00018230 00 Reimu *Patch]
+\92@\82¯\82Î\90F\81X\82Æ
+\82Å\82Ä\82­\82é\82Å\82µ\82å\81H
+[2A 0x00018424 00 Reimu *Patch]
+\82»\82Ì\8dß\8dì\82è\82È\93÷\91Ì\82Å\81c
+\8e\84\82Ì\91å\90Ø\82È\97F\92B\82ð\81c
+[2A 0x00018618 00 *Reimu Patch]
+\82Í\82 \81H
+[2A 0x0001880C 00 Reimu *Patch]
+\8e©\8ao\82Í\82È\82¢\82æ\82¤\82Ë\81c
+[2A 0x00018A00 00 *Reimu Patch]
+\82 \82ñ\82½\82½\82¿\82ª\82¨\82©\82µ\82¢\82Ì\82Í
+\82¢\82Â\82à\82Ì\82±\82Æ\82¾\82¯\82Ç
+[2A 0x00018BF4 00 *Reimu Patch]
+\82¢\82Á\82½\82¢\82Ç\82¤\82µ\82¿\82á\82Á\82½\82Ì\81H
+[2A 0x00018DE8 00 *Reimu Patch]
+\8dç\96é\82ª\91|\8f\9c\82ð\82³\82Ú\82Á\82Ä\82é
+\82È\82ñ\82Ä\82±\82Æ\82Í\82 \82è\82¦\82È\82¢\82µ
+[2A 0x00018FDC 00 Reimu *Patch]
+\82±\82±\82É\82 \82é\96{\82Ì
+\82·\82×\82Ä\82ð\8e\84\82Í\8e¯\82Á\82Ä\82¢\82é\81c
+[2A 0x000191D0 00 Reimu *Patch]
+\8fí\82É\82»\82ê\82Í\95Ï\82ç\82È\82¢\82í\81B
+\82¯\82ê\82Ç\95s\95Ï\82Í\8aï\88Ù\82È\82Ì
+[2A 0x000193C4 00 Reimu *Patch]
+\82 \82Ü\82è\82É\95Ï\82ç\82È\82¢\82±\82Æ\82Í
+\82»\82ê\8e©\91Ì\82ª\88Ù\97l\82È\82Ì
+[2A 0x000195B8 00 *Reimu Patch]
+\89½\82©\92m\82Á\82Ä\82¢\82é\82Ý\82½\82¢\82Ë
+[2A 0x000197AC 00 *Reimu Patch]
+\82 \82È\82½\82ª\92m\82ç\82È\82¢\82È\82ñ\82Ä
+\82 \82è\82¦\82È\82¢\82©\82ç
+[2A 0x000199A0 00 Reimu *Patch]
+\82»\82Ì\92¼\8a´\93I\82È\93´\8e@\82Æ
+\96¾\8am\82È\8c\8b\98_\82Æ\88Ó\8ev\82ð\8c\8b\82Ñ\82Â\82¯\82é\8eè\96@
+[2A 0x00019B94 00 Reimu *Patch]
+\8c\99\82¢\82Å\82Í\82È\82¢\82í\81c
+[2A 0x00019D88 00 *Reimu Patch]
+\8b³\82¦\82Ä\81B\82Ç\82¤\82¢\82¤\88Ó\96¡\81H
+\89½\82ª\95Ï\82ç\82È\82¢\82í\82¯\81H
+[2A 0x00019F7C 00 Reimu *Patch]
+\8d¡\82Í\82í\82©\82ç\82È\82¢\81B
+\82½\82¾\89^\96½\82ª\8d\90\82°\82Ä\82¢\82é\82Ì
+[2A 0x0001A170 00 Reimu *Patch]
+\8e\9e\82ª\82½\82¾\90Ã\82©\82É
+\93H\82è\97\8e\82¿\82é\82©\82Ì\82æ\82¤\82É\81c
+[2A 0x0001A364 00 Reimu *Patch]
+\8e\84\82Í\82 \82È\82½\82ð
+\8fÁ\96Å\82µ\82È\82¢\82Æ\82¢\82¯\82È\82¢
+[2A 0x0001A558 00 *Reimu Patch]
+\82â\82é\8bC\82È\82ñ\82¾
+[2A 0x0001A74C 00 Reimu *Patch]
+\8dÅ\8f\89\82©\82ç\82»\82Ì\82Â\82à\82è\82Å\82µ\82½\81B
+\93`\82í\82Á\82Ä\82¢\82é\82Æ\8ev\82Á\82Ä\82¢\82Ü\82µ\82½\82ª\81H
+[2A 0x0001A940 00 *Reimu Patch]
+\82à\82¿\82ë\82ñ
+[2A 0x0001AB34 00 *Reimu Patch]
+\82 \82Ì\8eq\82½\82¿\82æ\82è\90æ\82É
+\82 \82È\82½\82ð\82¨\8ed\92u\82«\82µ\82Ä\82 \82°\82é\82í
+[28 0x0001B1F8 00 Reimu *Patch]
+\82¨\8ed\92u\82«\82³\82ê\82Ä\82µ\82Ü\82Á\82½\81c
+\82»\82Ì\8dß\8dì\82è\82È\93÷\91Ì\82Å\81c
+[2A 0x0001B400 00 *Reimu Patch]
+\82Ç\82¤\82¢\82¤\88Ó\96¡\82È\82í\82¯\81A\82»\82ê\81B
+\8cë\89ð\82ð\90\82ñ\82\82á\82¤\82Æ\8ev\82¤\82¯\82Ç
+[2A 0x0001B5F4 00 Reimu *Patch]
+\82±\82Ì\82Æ\82±\82ë\81A\82Æ\82Á\82Ä\82à
+\94§\82ª\8a£\91\87\8bC\96¡\82È\82Ì\81c
+[2A 0x0001B7E8 00 *Reimu Patch]
+\8e¿\96â\82É\82Í\93\9a\82¦\82Ä\82È\82¢\82µ
+[2A 0x0001B9DC 00 *Reimu Patch]
+\82»\82ê\82É\81A
+\95Ê\82É\82µ\82Á\82Æ\82è\82·\82×\82·\82×\82É\8c©\82¦\82é\82¯\82Ç
+[2A 0x0001BBD0 00 Reimu *Patch]
+\82 \81A\82 \82è\82ª\82Æ\82¤\81c
+[2A 0x0001BDC4 00 Reimu *Patch]
+\96{\82Í\8e¼\8bC\82ð\8bz\82¢\8eæ\82Á\82Ä\82µ\82Ü\82¤\82©\82ç
+\94§\82Í\8fí\82É\8a£\91\87\8bC\96¡
+[2A 0x0001BFB8 00 Reimu *Patch]
+\82¾\82©\82ç\83r\83^\83~\83\93\82Í
+\82«\82¿\82ñ\82Æ\90Û\82é\82×\82«\82æ\81B
+[2A 0x0001C1AC 00 Reimu *Patch]
+\94§\82ð\8eç\82Á\82Ä\82­\82ê\82é\82©\82ç\81B
+\82±\82ê\81A\93¤\82Ë\81c
+[2A 0x0001C3A0 00 *Reimu Patch]
+\93¤\92m\8e¯\82ð\94â\98I\82µ\82Ä\82­\82é\82ñ\82¾\81c
+[2A 0x0001C594 00 Reimu *Patch]
+\81c\81c\81c\81c
+[2A 0x0001C788 00 *Reimu Patch]
+\8fÆ\82ê\82È\82­\82Ä\82à\82¢\82¢\82Å\82µ\82å\81H
+[2A 0x0001C97C 00 *Reimu Patch]
+\82 \82Á\82»\82¤\82»\82¤
+[2A 0x0001CB70 00 *Reimu Patch]
+\82à\82µ\82©\82µ\82Ä\81F\83p\83`\83\85\83\8a\81[\82È\82ç
+\92m\82Á\82Ä\82¢\82é\82©\82à\82Á\82Ä\8ev\82¤\82ñ\82¾\82¯\82Ç
+[2A 0x0001CD64 00 Reimu *Patch]
+\8bC\82Ì\82¹\82¢\82©\82µ\82ç\81A
+\88ê\8fu\82¾\82¯\8c¾\97t\82Ì\8bæ\90Ø\82è\82ª
+[2A 0x0001CF58 00 Reimu *Patch]
+\81u\81A\81v\82Å\82Í\82È\82­\82Ä
+\81u\81F\81v\82¾\82Á\82½\8bC\82ª\82µ\82½\81c
+[2A 0x0001D14C 00 *Reimu Patch]
+\8bC\82Ì\82¹\82¢\82æ\81B
+\82à\82µ\82©\82µ\82Ä\81F\83p\83`\83\85\83\8a\81[\81H
+[2A 0x0001D340 00 *Reimu Patch]
+\89½\82©\92m\82ç\82È\82¢\81H
+\82Ü\82½\8dg\82¢\96\82ª\97§\82¿\8d\9e\82ß\82Ä\82Ä
+[2A 0x0001D534 00 Reimu *Patch]
+\82»\82Ì\82±\82Æ\82¾\82¯\82Ç\81A\8e¯\82ç\82È\82¢\82í
+[2A 0x0001D728 00 *Reimu Patch]
+\82Ç\82¤\82µ\82Ä\92m\82ç\82È\82¢\82Á\82Ä\82í\82©\82é\82Ì\81H
+[2A 0x0001D91C 00 Reimu *Patch]
+\82·\82Å\82É\8bN\82«\82½\82±\82Æ\82¾\82©\82ç\81c
+\82»\82¤\82Æ\82µ\82©\8c¾\82¦\82È\82¢\82Ì
+[2A 0x0001DB10 00 Reimu *Patch]
+\82±\82ê\82©\82ç\82Ì\89^\96½\82Í\89ß\8b\8e\82É\82 \82è
+\82»\82Ì\89ß\8b\8e\82ª\89^\96½\82ð\8ei\82é\82Æ\82µ\82½\82ç\81H
+[2A 0x0001DD04 00 *Reimu Patch]
+\82æ\82­\82í\82©\82ç\82È\82¢\82È\81B
+\82í\82©\82Á\82½\82ç\8b³\82¦\82Ä\82­\82ê\82é\81H
+[2A 0x0001DEF8 00 Reimu *Patch]
+\82»\82¤\82Ë\81A\82»\82Ì\8e\9e\82É\82Í
+\82Ü\82½\89ï\82¢\82Ü\82µ\82å\82¤
+[2A 0x0001E0EC 00 Reimu *Patch]
+\82¢\82¦\81c
+\82«\82Á\82Æ\89ï\82¤\82Ì\82Å\82µ\82å\82¤\82Ë
+[2A 0x0001E2E0 00 *Reimu Patch]
+\82»\82¤\82È\82ñ\82¾\81c\82»\82¤\82È\82Ì\82©\82à\81B
+\82\82á\82 \82Ë\81A\82»\82ë\82»\82ë\8ds\82­\82í
+[2A 0x0001E4D4 00 Reimu *Patch]
+\82¦\82¦\81c\8bC\82ð\82Â\82¯\82Ä
+[2A 0x0001E794 02 *Patch]
+\82Ó\82¤\81c
+[2A 0x0001E928 02 *Patch]
+\8e\84\82ª\97ì\96²\82É
+\95Ê\82ê\82ð\8c¾\82Á\82½\82Ì\82Í\81c
+[2A 0x0001EABC 02 *Patch]
+\82¨\8ed\92u\82«\82ð\82³\82ê\82½\82Ì\82Í\81c\81c\81c
+[2A 0x0001EC50 02 *Patch]
+\82¢\82Á\82½\82¢\89½\89ñ\96Ú\82¾\82Á\82½\82©\82µ\82ç\81c
+[28 0x0001F230 02 *Reimu]
+\82 \82ê\81H
+\82±\82Ì\82 \82½\82è\82Ì\97l\8eq\82Á\82Ä\81c
+[2A 0x0001F3E0 02 *Reimu]
+\82Ç\82¤\82µ\82Ä\82©\82È\81B
+\8b¹\91\9b\82¬\82ª\82·\82é\81c
+[2A 0x0001F574 02 *Reimu]
+\82Æ\82¢\82¤\82±\82Æ\82Í
+\82±\82Ì\90æ\82ª\82«\82Á\82Æ\90³\89ð\82Ë\81I
+[2A 0x0001F708 02 *Reimu]
+\89½\82©\95Ï\82È\82Ì\82ª
+\8fo\82Ä\82­\82é\82É\88á\82¢\82È\82¢\82à\82Ì
+[28 0x0001FD6C 00 Reimu *Nitori]
+\82 \82Á\81I
+\96¿\97F\82Å\82 \82é\90l\8aÔ\82ª\82±\82±\82É\81I\81H
+[2A 0x0001FF74 00 *Reimu Nitori]
+\81c\81c
+[2A 0x00020168 00 Reimu *Nitori]
+\82Ç\82¤\82µ\82Ä\96Ù\82Á\82Ä\82¢\82é\82Ì\82©\82È\81[\81H
+[2A 0x0002035C 00 *Reimu Nitori]
+\97\\91z\8aO\82Ì\82ª\8fo\82Ä\82«\82½\82©\82ç\81B
+\8f­\82µ\82Ë\81A\8bÁ\82¢\82Ä\82¢\82½\82Ì
+[2A 0x00020550 00 *Reimu Nitori]
+\82â\82Á\82Ï\82è\95Ï\82È\82Ì\82ª\8fo\82Ä\82«\82½\82È\82Æ\81c
+[2A 0x00020744 00 Reimu *Nitori]
+\95·\82±\82¦\82Ä\82é\82æ\81[\81I
+[2A 0x00020938 00 Reimu *Nitori]
+\82·\82®\82»\82Î\82É\82¢\82é\82æ\81I
+[2A 0x00020B2C 00 Reimu *Nitori]
+\8c¾\82¤\82È\82ç\95·\82±\82¦\82È\82¢\82­\82ç\82¢
+\97£\82ê\82Ä\82©\82ç\8c¾\82í\82È\82¢\82Æ\81I
+[2A 0x00020D20 00 *Reimu Nitori]
+\93Æ\82è\8c¾\82¾\82©\82ç
+\8bC\82É\82µ\82È\82¢\82Å
+[2A 0x00020F14 00 *Reimu Nitori]
+\88«\88Ó\82Í\82È\82¢\82©\82ç
+[2A 0x00021108 00 Reimu *Nitori]
+\82»\82Á\82©
+\88«\88Ó\82Í\82È\82¢\82Ì\82©\81[
+[2A 0x000212FC 00 Reimu *Nitori]
+\82Á\82Ä\81A\8f\83\90\88\82É
+\95Ï\82Á\82Ä\8ev\82Á\82Ä\82é\82Á\82Ä\82±\82Æ\81I\81H
+[2A 0x000214F0 00 *Reimu Nitori]
+\8f\83\90\88\82È\98_\97\9d\82Ì\8bA\8c\8b\82Æ\82µ\82Ä
+\82»\82¤\82È\82é\82Ý\82½\82¢\82Ë
+[2A 0x000216E4 00 *Reimu Nitori]
+\94Û\92è\82Í\82Å\82«\82È\82¢\81I
+[2A 0x000218D8 00 Reimu *Nitori]
+\8e©\90M\82½\82Á\82Õ\82è\82Å\94F\82ß\82½\82È\82Á\81I
+[2A 0x00021ACC 00 Reimu *Nitori]
+\82à\82¤\82¢\82¢\81I
+\8eÓ\82Á\82Ä\82­\82ê\82È\82¢\82ñ\82¾\82Á\82½\82ç
+[2A 0x00021CC0 00 Reimu *Nitori]
+\8e\84\82Ì\90V\8dì\95º\8aí\82Ì
+\8eÀ\8c±\91ä\82É\82µ\82Ä\82â\82é\82Á\81I
+[28 0x00022384 00 *Reimu Nitori]
+\88«\82¢\82í\82Ë\81c\82É\82Æ\82è
+[2A 0x0002258C 00 Reimu *Nitori]
+\82¬\82Á\82½\82ñ\82¬\82Á\82½\82ñ\82É\82µ\82½\8cã\82Å
+\8eÓ\82Á\82½\82æ\82±\82Ì\8eq\81I
+[2A 0x00022780 00 Reimu *Nitori]
+\97d\89ö\82Æ\82©\82æ\82è\82à
+\90l\8aÔ\82Ì\95û\82ª\82¸\82Á\82Æ\95|\82¢\82æ\82£\81I
+[2A 0x00022974 00 *Reimu Nitori]
+\82Ç\82¤\82µ\82Ä\82±\82±\82É\82¢\82é\82Ì\81H
+[2A 0x00022B68 00 Reimu *Nitori]
+\82¦\81A\82 \81A\82¤\82ñ\81B
+\8fµ\91Ò\82³\82ê\82½\82ñ\82¾\82¯\82Ç
+[2A 0x00022D5C 00 Reimu *Nitori]
+\8fo\82ê\82È\82­\82È\82Á\82¿\82á\82½\82ñ\82¾\82æ\82Ë
+\82±\82Ì\81u\8dg\96\82\8b½\81v\82©\82ç
+[2A 0x00022F50 00 Reimu *Nitori]
+\89½\82©\82í\82©\82é\81H
+\94\8e\97í\82Ì\9bÞ\8f\97
+[2A 0x00023144 00 *Reimu Nitori]
+\81u\8dg\96\82\8b½\81v\82Ë\81c
+\95\95\8d½\8e\9e\8bó\82Å\82à\8c`\90¬\82µ\82½\82Ý\82½\82¢\82Ë
+[2A 0x00023338 00 *Reimu Nitori]
+\8bó\8aÔ\82Æ\8e\9e\8aÔ\82ð\98c\82Ü\82¹\82é\82È\82ñ\82Ä
+\91å\82»\82ê\82½\82±\82Æ\82ð\82â\82é\82Æ\82µ\82½\82ç
+[2A 0x0002352C 00 *Reimu Nitori]
+\82â\82Á\82Ï\82è\83\8c\83~\83\8a\83A\82Ì\8ed\8bÆ\82©\81c\81B
+\82¾\82Á\82½\82ç\8dç\96é\82à\88ê\8f\8f\82Ë
+[2A 0x00023720 00 Reimu *Nitori]
+\82Å\81A\82³
+[2A 0x00023914 00 Reimu *Nitori]
+\82Å\82ç\82ê\82»\82¤\82©\82È\81H
+\96¿\97F\82Å\82 \82é\90l\8aÔ
+[2A 0x00023B08 00 *Reimu Nitori]
+\82Ü\82¾\92²\82×\92\86\81B
+\82à\82¤\82¿\82å\82Á\82Æ\90æ\82Ü\82Å\8ds\82Á\82Ä\82Ý\82é\82í
+[2A 0x00023CFC 00 Reimu *Nitori]
+\82»\82¤\82È\82Ì\82©\81c
+[2A 0x00023EF0 00 Reimu *Nitori]
+\82\82á\82 \82Ë\81A\90l\8aÔ\81B
+\8bC\82ð\82Â\82¯\82Ä\82¢\82­\82ñ\82¾\82æ\81[
+[2A 0x000240E4 00 *Reimu Nitori]
+\82¦\82¦\81A\82\82á\82 \82Ë
+[2A 0x000243A4 00 Reimu *Nitori]
+\90l\8aÔ\81c\8bC\82Ã\82¢\82Ä\82¢\82é\82Ì\82©\82È\81H
+[2A 0x00024598 00 Reimu *Nitori]
+\82±\82Ì\90¢\8aE\82Á\82Ä
+\82®\82é\82®\82é\82Ü\82í\82Á\82Ä\82é\82ñ\82¾
+[2A 0x0002478C 00 Reimu *Nitori]
+\82æ\82­\82Å\82«\82½\82©\82ç\82­\82è\82Ì
+\8e\95\8eÔ\82Ý\82½\82¢\82É
+[2A 0x00024980 00 Reimu *Nitori]
+\96³\97\9d\82É\8e~\82ß\82é\82Æ
+\82©\82ç\82­\82è\82Á\82Ä\89ó\82ê\82¿\82á\82¤\82¼\81c
+[2A 0x00024B74 00 Reimu *Nitori]
+\82Å\82à\81A\96¿\97F\82È\82ç\91å\8fä\95v\82¾\82æ\82Ë\81I
+\82«\82ã\82¤\82è\90H\82×\82Ä\89ñ\95\9c\82¾\82Á\81I
+[2A 0x00024D68 00 Reimu *Nitori]
+\82¨\82¢\82µ\82Á\81I
+[28 0x000253A8 02 *Reimu]
+\82³\82Ä\82³\82Ä
+\8e\9f\82É\8fo\82Ä\82­\82é\82Ì\82Á\82Ä\92N\82©\82µ\82ç\82Ë
+[2A 0x00025558 02 *Reimu]
+\82±\82Ì\90\90^\96Ê\96Ú\82È\95µ\88Í\8bC\82©\82ç\82·\82é\82Æ\81c
+[2A 0x000256EC 02 *Reimu]
+\82â\82Á\82Ï\82è
+\82 \82Ì\83\81\83C\83h\82Ì\93o\8fê\82æ\82Ë
+[2A 0x00025880 02 *Reimu]
+\89½\82Ì\96Ú\93I\82ª\82 \82Á\82Ä
+\8d¡\89ñ\82Ì\82±\82Æ\82ð\8ed\91g\82ñ\82¾\82Ì\82©\81c
+[2A 0x00025A14 02 *Reimu]
+\89ï\82Á\82Ä\8am\82©\82ß\82Ä\82 \82°\82æ\82¤\82\82á\82È\82¢\81I
+[28 0x00026078 00 Reimu *Sakuya]
+\82Ó\82¤\82ñ\81c\97\88\82½\82ñ\82¾
+[2A 0x00026280 00 *Reimu Sakuya]
+\82¢\82«\82È\82è\82È\82ñ\82È\82Ì
+[2A 0x00026474 00 Reimu *Sakuya]
+\81u\82¢\82ç\82Á\82µ\82á\82¢\82Ü\82¹\81v
+[2A 0x00026668 00 Reimu *Sakuya]
+\82Æ\82Å\82à\8c¾\82Á\82Ä\97~\82µ\82©\82Á\82½\82Ì\82©\82µ\82ç\81H
+[2A 0x0002685C 00 *Reimu Sakuya]
+\95Ê\82É\82¢\82¢\82¯\82Ç
+[2A 0x00026A50 00 Reimu *Sakuya]
+\82¢\82ç\82Á\82µ\82á\82¢\82Ü\82¹\81c
+[2A 0x00026C44 00 Reimu *Sakuya]
+\82¨\8fì\97l\81ô
+[2A 0x00026E38 00 *Reimu Sakuya]
+\82¤\82¦\81c
+\82â\82ß\82Ä\82æ\82Ë
+[2A 0x0002702C 00 Reimu *Sakuya]
+\82¤\82Ó\82Ó
+[2A 0x00027220 00 *Reimu Sakuya]
+\8e\84\82ð\82©\82ç\82©\82¢\82½\82¢\82Ì\82ª\97\9d\97R\82Å
+[2A 0x00027414 00 *Reimu Sakuya]
+\82±\82ñ\82È\82±\82Æ
+\82µ\82Ä\82é\82í\82¯\82\82á\82È\82¢\82í\82æ\82Ë\81H
+[2A 0x00027608 00 Reimu *Sakuya]
+\82¦\82¦\81B
+\93\96\82½\82è\91O\82Å\82µ\82å\82¤\81H
+[2A 0x000277FC 00 *Reimu Sakuya]
+\82¾\82Á\82½\82ç\96Ú\93I\82Í
+\89½\82È\82Ì\81H
+[2A 0x000279F0 00 Reimu *Sakuya]
+\96Ú\93I\81c\81H
+[2A 0x00027BE4 00 Reimu *Sakuya]
+\82Ó\82Ó\81A\82»\82ê\82Í
+\82·\82Å\82É\89Ê\82½\82³\82ê\82½\82í
+[2A 0x00027DD8 00 *Reimu Sakuya]
+\81I\81H
+[2A 0x00027FCC 00 Reimu *Sakuya]
+\82 \82È\82½\82ª\82±\82±\82É\82¢\82é\82±\82Æ
+\82»\82ê\82ª\8e\84\82Ì\96Ú\93I\81c
+[2A 0x000281C0 00 *Reimu Sakuya]
+\82¾\82Á\82½\82ç\81c
+\82à\82¤\8bA\82Á\82½\95û\82ª\82¢\82¢\82Ì\81H
+[2A 0x000283B4 00 Reimu *Sakuya]
+\82¢\82¢\82¦\81B
+\82»\82ñ\82È\82í\82¯\82È\82¢\82\82á\82È\82¢
+[2A 0x000285A8 00 Reimu *Sakuya]
+\93ä\82Í\82Ü\82¾\8ec\82Á\82Ä\82¢\82é\82Å\82µ\82å\82¤\81H
+\8dÄ\82Ñ\8cJ\82è\95Ô\82³\82ê\82½\82 \82Ì\8dg\82¢\96\81c
+[2A 0x0002879C 00 *Reimu Sakuya]
+\92N\82ª\81A\89½\82Ì\82½\82ß\82É\81c\82Ë\81H
+[2A 0x00028990 00 Reimu *Sakuya]
+\82 \82È\82½\82Ì\8dl\82¦\82Í\81H
+[2A 0x00028B84 00 *Reimu Sakuya]
+\8c\88\82Ü\82Á\82Ä\82é\82\82á\82È\82¢
+[2A 0x00028D78 00 *Reimu Sakuya]
+\82 \82È\82½\82ª\91å\8dD\82«\82È
+\82±\82Ì\8aÙ\82Ì\82²\8eå\90l\97l\82æ
+[2A 0x00028F6C 00 Reimu *Sakuya]
+\82¤\82Ó\82Ó\81A\82»\82ê\82ª\82í\82©\82Á\82Ä\82¢\82Ä
+\82±\82±\82Ü\82Å\97\88\82½\82Ì\82æ\82Ë
+[2A 0x00029160 00 Reimu *Sakuya]
+\82³\82Ä\81c\82â\82è\82Ü\82µ\82å\82¤\82©
+[2A 0x00029354 00 *Reimu Sakuya]
+\82¨\91|\8f\9c\82ð\81I\81H
+[2A 0x00029548 00 *Reimu Sakuya]
+\8dç\96é\82Á\82½\82ç
+\82¨\91|\8f\9c\82ð\82³\82Ú\82Á\82Ä\82é\82Å\82µ\82å
+[2A 0x0002973C 00 *Reimu Sakuya]
+\83p\83`\83\85\83\8a\81[\82ª\8d¢\82Á\82Ä\82½\82í
+[2A 0x00029930 00 Reimu *Sakuya]
+\82»\82ê\82Í\82 \82È\82½\82Ì\82¹\82¢\81B
+\82 \82È\82½\82Ì\8dß
+[2A 0x00029B24 00 *Reimu Sakuya]
+\8e\84\82ª\89½\82©\82µ\82½\81H
+[2A 0x00029D18 00 Reimu *Sakuya]
+\89ß\8b\8e\82à\96¢\97\88\82à\8d¡\82à
+[2A 0x00029F0C 00 Reimu *Sakuya]
+\82 \82È\82½\82Í\94Æ\82µ\82Ä\82¢\82é\82Ì\8dß\82ð\81B
+\89½\93x\82à\89½\93x\82à\81c
+[2A 0x0002A100 00 *Reimu Sakuya]
+\8e©\8ao\82Í\82È\82¢\82ñ\82¾\82¯\82Ç
+\82»\82¤\82Ý\82½\82¢\82Ë
+[2A 0x0002A2F4 00 *Reimu Sakuya]
+\89½\82Ì\8dß\82È\82Ì\81H
+[2A 0x0002A4E8 00 Reimu *Sakuya]
+\8c¾\82¦\81c\82È\82¢\81c
+[2A 0x0002A6DC 00 *Reimu Sakuya]
+\82í\81c\81B
+\93\82\93Ë\82É\8fÆ\82ê\82½\81H
+[2A 0x0002A8D0 00 *Reimu Sakuya]
+\82Á\82Ä\82±\82Æ\82Í\81A
+\83\8c\83~\83\8a\83A\97\8d\82Ý\82Ë
+[2A 0x0002AAC4 00 Reimu *Sakuya]
+\83f\83\8c\82Ä\82È\82¢\82©\82ç
+[2A 0x0002ACB8 00 *Reimu Sakuya]
+\8fÆ\82ê\82Á\82Ä\82¢\82Á\82½\82¯\82Ç\81H
+[2A 0x0002AEAC 00 Reimu *Sakuya]
+\8ao\8cå\82È\82³\82¢\81I
+[2A 0x0002B0A0 00 *Reimu Sakuya]
+\93{\82Á\82½\82Ì\82È\82ç\90}\90¯\82Ë
+[2A 0x0002B294 00 Reimu *Sakuya]
+\81I\81H
+[2A 0x0002B488 00 Reimu *Sakuya]
+\82¢\82¢\82Å\82µ\82å\82¤\81B
+\83`\83\8a\82É\82µ\82Ä\95Ð\82Ã\82¯\82Ä\82 \82°\82Ü\82·\81I
+[2A 0x0002B67C 00 *Reimu Sakuya]
+\83\81\83C\83h\82Ì\91|\8f\9c\8e©\8dì\8e©\89\89\81c
+[2A 0x0002B870 00 *Reimu Sakuya]
+\82¢\82¢\82í\81B
+\91\8a\8eè\82µ\82Ä\82 \82°\82é\81I
+[28 0x0002BF34 00 Reimu *Sakuya]
+\82â\82Á\82Ï\82è\93G\82í\82È\82¢\81A\82©\81c
+[2A 0x0002C13C 00 *Reimu Sakuya]
+\82Ç\82¤\82µ\82½\82Ì\81H
+\8b}\82É\82µ\82¨\82ç\82µ\82­\82È\82Á\82¿\82á\82Á\82Ä
+[2A 0x0002C330 00 Reimu *Sakuya]
+\94L\82Ý\82½\82¢\82¾\82Á\82Ä\8ev\82Á\82½\82©\82µ\82ç\81H
+[2A 0x0002C524 00 *Reimu Sakuya]
+\82¤\82¤\82ñ\81H
+[2A 0x0002C718 00 *Reimu Sakuya]
+\82 \82Á\81A\82¿\82å\82Á\82Æ
+\8ev\82Á\82½\82©\82à\82µ\82ê\82È\82¢
+[2A 0x0002C90C 00 Reimu *Sakuya]
+\82É\82á\82ñ\81A\82É\82á\82ñ\81A\82É\82á\82ñ\81B
+\82²\82ë\82É\82á\81[\82ñ\81ô
+[2A 0x0002CB00 00 *Reimu Sakuya]
+\82¦
+[2A 0x0002CCF4 00 Reimu *Sakuya]
+\90â\8bå\82³\82ê\82½
+[2A 0x0002CEE8 00 Reimu *Sakuya]
+\8ao\82¦\82Ä\82¢\82È\82¢\82©\81c
+\82»\82ê\82à\82»\82¤\82æ\82Ë
+[2A 0x0002D0DC 00 *Reimu Sakuya]
+\82¢\82Á\82½\82¢\82Ç\82¤\82µ\82½\82Ì\81H
+[2A 0x0002D2D0 00 Reimu *Sakuya]
+\8e\84\82Ì\82±\82Æ\82È\82ñ\82Ä
+\82Ç\82¤\82Å\82à\82¢\82¢\82ñ\82\82á\82È\82¢\82©\82µ\82ç\81H
+[2A 0x0002D4C4 00 Reimu *Sakuya]
+\82 \82È\82½\82à\8bC\82Ã\82¢\82Ä\82¢\82é\82ñ\82Å\82µ\82å\82¤\81H
+\82±\82±\82ª\82¨\82©\82µ\82¢\82Á\82Ä
+[2A 0x0002D6B8 00 *Reimu Sakuya]
+\82à\82Æ\82à\82Æ
+\82¨\82©\82µ\82È\82Æ\82±\82ë\82¾\82¯\82Ç\82Ë
+[2A 0x0002D8AC 00 *Reimu Sakuya]
+\89½\82©\92m\82Á\82Ä\82é\82Ì\82æ\82Ë\81H
+[2A 0x0002DAA0 00 Reimu *Sakuya]
+\8e\84\82½\82¿\82Í\8aF\81A
+\82±\82Ì\90¢\8aE\82©\82ç\8fo\82ç\82ê\82È\82¢
+[2A 0x0002DC94 00 Reimu *Sakuya]
+\82»\82ñ\82È\98b\82ð\95·\82«\82½\82¢\82Ì\82æ\82Ë
+[2A 0x0002DE88 00 *Reimu Sakuya]
+\82¦\82¦\81B
+\82±\82ê\82Á\82Ä\82â\82Á\82Ï\82è\81c
+[2A 0x0002E07C 00 Reimu *Sakuya]
+\82¨\8fì\97l\82Ì\82¨\97Í\81H
+[2A 0x0002E270 00 Reimu *Sakuya]
+\94¼\95ª\82Í\90^\81A\94¼\95ª\82Í\8bU\81B
+\82»\82ñ\82È\8c\8b\98_\82Ë
+[2A 0x0002E464 00 *Reimu Sakuya]
+\82 \82¢\82Â\82ª\8aÖ\8cW\82µ\82Ä\82é\82Ì\82Í
+\8aÔ\88á\82¢\82È\82¢\82Ì\82Ë\81H
+[2A 0x0002E658 00 Reimu *Sakuya]
+\92m\82è\82½\82¢\82Ì\82Ë\81A\94\8e\97í\97ì\96²
+[2A 0x0002E84C 00 Reimu *Sakuya]
+\82¾\82Á\82½\82ç\82¨\8fì\97l\82Ì
+\82¨\8bC\8e\9d\82¿\82ð\8am\82©\82ß\82Ä\82«\82Ä
+[2A 0x0002EA40 00 *Reimu Sakuya]
+\82»\82Ì\82Â\82à\82è\82æ\81B
+\82\82á\82 \82Ë
+[2A 0x0002EC34 00 Reimu *Sakuya]
+\82»\82ê\82Å\82Í\81c
+[2A 0x0002EED0 02 *Sakuya]
+\82 \82È\82½\82È\82ç
+\82«\82Á\82Æ\82í\82©\82é\81c
+[2A 0x0002F064 02 *Sakuya]
+\82±\82Ì\90¢\8aE\82Ì\92\86\90S\82É\82¢\82é\82Ì\82Í
+\82¨\8fì\97l\82Å\82Í\82È\82¢
+[2A 0x0002F1F8 02 *Sakuya]
+\94\8e\97í\97ì\96²\81c\82 \82È\82½\82È\82Ì\82¾\82Æ
+[28 0x0002F7D8 00 Reimu *Sakuya]
+\82¨\82Â\82©\82ê\82³\82Ü
+[2A 0x0002F9E0 00 *Reimu Sakuya]
+\82¦\81H
+\82¨\82Â\82©\82ê\82³\82Ü
+[2A 0x0002FBD4 00 *Reimu Sakuya]
+\82¢\82Á\82½\82¢\82Ç\82¤\82µ\82¿\82á\82Á\82½\82Ì\81H
+[2A 0x0002FDC8 00 Reimu *Sakuya]
+\95Ê\82É\82Ç\82¤\82à\82µ\82È\82¢\82¯\82Ç\81H
+[2A 0x0002FFBC 00 *Reimu Sakuya]
+\82È\82ñ\82¾\82©\8b}\82É
+\8aÛ\82­\82È\82Á\82Ä\82é\82ñ\82¾\82¯\82Ç
+[2A 0x000301B0 00 Reimu *Sakuya]
+\82¤\82Ó\82Ó\81A\94L\82\82á\82È\82¢\82©\82ç
+[2A 0x000303A4 00 Reimu *Sakuya]
+\82É\82á\82ñ\82É\82á\82ñ\81ô
+[2A 0x00030598 00 *Reimu Sakuya]
+\82¦\81c
+[2A 0x0003078C 00 Reimu *Sakuya]
+\8fç\92k\82¾\82Á\82½\82ñ\82¾\82¯\82Ç
+\8e\97\8d\87\82í\82È\82©\82Á\82½\82©\82µ\82ç
+[2A 0x00030980 00 *Reimu Sakuya]
+\94ß\82µ\82»\82¤\82É\8c¾\82í\82È\82¢\82Å\81B
+\82¿\82å\82Á\82Æ\89Â\88¤\82©\82Á\82½\82©\82È
+[2A 0x00030B74 00 Reimu *Sakuya]
+\96³\97\9d\82ª\82 \82Á\82½\82©\81c
+[2A 0x00030D68 00 Reimu *Sakuya]
+\82 \82È\82½\82É\8f­\82µ\90à\96¾\82µ\82Ä\82¨\82«\82Ü\82·\81B
+\82Ü\82¾\82¨\82µ\82Ü\82¢\82\82á\82È\82¢\81A\82Æ
+[2A 0x00030F5C 00 *Reimu Sakuya]
+\82»\82ê\82Á\82Ä\82Ç\82¤\82¢\82¤\88Ó\96¡\81H
+[2A 0x00031150 00 Reimu *Sakuya]
+\82»\82ê\82É\81A\82 \82È\82½\82É\82¨\8fì\97l\82ð
+\94C\82¹\82é\82±\82Æ\82Í\82Ü\82¾\96³\97\9d
+[2A 0x00031344 00 Reimu *Sakuya]
+\82³\82 \81A\90U\82è\8fo\82µ\82É\82à\82Ç\82Á\82Ä\81B
+\82à\82Á\82Æ\98r\82ð\96\81\82­\82Ì
+[2A 0x00031538 00 Reimu *Sakuya]
+\83Q\81[\83\80\82Í\81c
+\82±\82ê\82©\82ç\82¾\82í
+[28 0x00031BFC 02 *Reimu]
+\82»\82ë\82»\82ë\8fI\82í\82è\82©\82È\81H
+[2A 0x00031DAC 02 *Reimu]
+\82»\82ê\82Æ\82à\81A\82Ü\82¾\91±\82­\81H
+[2A 0x00031F40 02 *Reimu]
+\82Ç\82¿\82ç\82Å\82à\82¢\82¢\82ñ\82¾\82¯\82Ç
+[2A 0x000320D4 02 *Reimu]
+\96\82\97\9d\8d¹\82Ì\82â\82Â
+\82Ç\82¤\82µ\82Ä\82é\82ñ\82¾\82ë
+[2A 0x00032268 02 *Reimu]
+\82¨\82Â\82©\82¢\82Ì\82±\82Æ\82Í
+\96Y\82ê\82Ä\82é\82í\82Ë\82«\82Á\82Æ
+[2A 0x000323FC 02 *Reimu]
+\82Ó\82¤\81c
+[2A 0x00032590 02 *Reimu]
+\82¨\92\83\88ù\82à\82¤\82Æ\8ev\82Á\82½\82ç
+\82¨\89Ù\8eq\82ª\82È\82©\82Á\82½\82¾\82¯\82È\82Ì\82É
+[2A 0x00032724 02 *Reimu]
+\82Ù\82ñ\82Æ\95Ï\82È\93ú\82É\82È\82Á\82½\82È\81c
+[2A 0x000328B8 02 *Reimu]
+\82Ü\81A\82¢\82Â\82à\95Ï\82©\81B
+\90i\82ß\82é\82¾\82¯\90i\82ñ\82Å\82Ý\82é\82©
+[28 0x00032F1C 00 Reimu *Satori]
+\81c\81c
+[2A 0x00033124 00 *Reimu Satori]
+\82Ü\82½\82Ú\82¤\82Á\82Æ\82µ\82Ä\81B
+\82±\82±\82Å\89½\82µ\82Ä\82é\82Ì\81H
+[2A 0x00033318 00 Reimu *Satori]
+\81c\82²\82«\82°\82ñ\82æ\82¤
+[2A 0x0003350C 00 Reimu *Satori]
+\82Å\82à\81c
+[2A 0x00033700 00 Reimu *Satori]
+\82²\82«\82°\82ñ\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·\82Ë\81c
+[2A 0x000338F4 00 *Reimu Satori]
+\93Ç\82ß\82Ä\82µ\82Ü\82Á\82½\81H
+\8e\84\82Ì\90S
+[2A 0x00033AE8 00 Reimu *Satori]
+\82Í\82¢\81c\96]\82ñ\82Å\82Í\82¢\82È\82¢\82¯\82Ç
+\8c©\82¦\82Ä\82µ\82Ü\82¤\82©\82ç\81c
+[2A 0x00033CDC 00 Reimu *Satori]
+\90S\82Ì\95\97\8ci\82ª\81c
+[2A 0x00033ED0 00 Reimu *Satori]
+\82 \82È\82½\82ç\82µ\82­\82È\82¢\82­\82ç\82¢\82É
+\97\90\82ê\82Ä\82¢\82é\82Ì\82ª\81c
+[2A 0x000340C4 00 *Reimu Satori]
+\82»\82¤\82©\82È\81H
+[2A 0x000342B8 00 *Reimu Satori]
+\82 \82ñ\82È\82±\82Æ\82â\82±\82ñ\82È\82±\82Æ\81c
+[2A 0x000344AC 00 Reimu *Satori]
+\82 \81c
+[2A 0x000346A0 00 Reimu *Satori]
+\82»\82ñ\82È\81c
+[2A 0x00034894 00 Reimu *Satori]
+\82¦\82¦\82Á\81c\81I\81H
+[2A 0x00034A88 00 Reimu *Satori]
+\82í\81A\82í\82½\82µ\81c
+[2A 0x00034C7C 00 Reimu *Satori]
+\82­\82­\82Á\81c\82Í\82 \81A\82Í\82 \81c
+[2A 0x00034E70 00 *Reimu Satori]
+\8bC\8e\9d\82¿\82¾\82¯
+\91S\97Í\8e¾\91\96\82µ\82Ä\82Ý\82½
+[2A 0x00035064 00 Reimu *Satori]
+\82Â\81A\82Â\82©\82ê\82Ü\82µ\82½\81c
+[2A 0x00035258 00 *Reimu Satori]
+\90S\82ð\93Ç\82ß\82È\82¢\82­\82ç\82¢
+\94æ\82ê\82¿\82á\82Á\82½\82Æ\82±\82ë\82Å
+[2A 0x0003544C 00 *Reimu Satori]
+\82 \82È\82½\82É\8e¿\96â\82ª\82 \82é\82Ì
+[2A 0x00035640 00 Reimu *Satori]
+\82Ç\82¤\82µ\82Ä\8e\84\82ª\82±\82±\82É\82¢\82é\81c\81H
+[2A 0x00035834 00 Reimu *Satori]
+\82»\82ê\82Æ\82à\81c\82±\82Ì\90¢\8aE\82ª
+\8cJ\82è\95Ô\82³\82ê\82Ä\82¢\82é\97\9d\81c\97R\81c\81H
+[2A 0x00035A28 00 *Reimu Satori]
+\82Ç\82¿\82ç\82à\92m\82è\82½\82¢\82ñ\82¾\82¯\82Ç
+[2A 0x00035C1C 00 Reimu *Satori]
+\8e\84\82Í\8fµ\91Ò\8bq\82Ì\88ê\90l\81B
+\82»\82ê\82ª\82Ð\82Æ\82Â\96Ú\82Ì\93\9a\82¦\82Å\82·\81c
+[2A 0x00035E10 00 Reimu *Satori]
+\82Ó\82½\82Â\96Ú\82Í
+\82Æ\82Ä\82à\95¡\8eG\82Å\82·\81c
+[2A 0x00036004 00 Reimu *Satori]
+\82½\82¾\82í\82©\82Á\82Ä\82¢\82é\82±\82Æ\82Í\81A
+\82Æ\82Ä\82à\8b­\82¢\8ev\82¢\82ª
+[2A 0x000361F8 00 Reimu *Satori]
+\82±\82Ì\90¢\8aE\82ð\82 \82é\8c`\82É
+\82µ\82æ\82¤\82Æ\82µ\82Ä\82¢\82é\82±\82Æ\81c
+[2A 0x000363EC 00 *Reimu Satori]
+\8b­\82¢\8ev\82¢\81H
+[2A 0x000365E0 00 Reimu *Satori]
+\92N\82©\82ª\96]\82ñ\82Å\82¢\82é\82©\82ç
+\82 \82È\82½\82à\8e\84\82à\82±\82±\82É\82¢\82é
+[2A 0x000367D4 00 Reimu *Satori]
+\82»\82¤\82¢\82¤\82±\82Æ\82È\82Ì\82æ
+[2A 0x000369C8 00 *Reimu Satori]
+\82æ\82­\82í\82©\82ç\82È\82¢
+[2A 0x00036BBC 00 *Reimu Satori]
+\82Å\82à\82Ý\82ñ\82È\81A\89½\82©\82ª\82¨\82©\82µ\82¢\81B
+\82»\82ñ\82È\8e\9e\82Á\82Ä
+[2A 0x00036DB0 00 Reimu *Satori]
+\82 \82È\82½\82Í\95ú\82Á\82Ä\82¨\82¯\82È\82¢\81c
+\82í\82©\82è\82Ü\82·\81c
+[2A 0x00036FA4 00 Reimu *Satori]
+\82Å\82Í\90í\82¢\82Ü\82µ\82å\82¤\81c
+[2A 0x00037198 00 Reimu *Satori]
+\82Ð\82Æ\82Â\96Ú\82Ì\97p\8e\96\82à\82 \82é\82¯\82Ç\81c
+\82»\82ê\82Í\8cã\82Å\82à\90æ\82Å\82à\82¢\82¢\82©\82ç\81c
+[28 0x0003785C 00 Reimu *Satori]
+\82¸\82¢\82Ô\82ñ\82Æ\90S\81c
+\90®\82Á\82Ä\82«\82½\82Ý\82½\82¢\82Å\82·\81c
+[2A 0x00037A64 00 *Reimu Satori]
+\82Ó\81[\82ñ\81A\82 \82ñ\82½\82É\82Í
+\8e\84\82Ì\90S\82ª\82»\82¤\8c©\82¦\82é\82í\82¯\82Ë
+[2A 0x00037C58 00 Reimu *Satori]
+\82¦\82¦\81AäD\82É\97\8e\82¿\82½\81c
+\82»\82ñ\82È\8a´\82\82ª\82µ\82Ü\82·\81c
+[2A 0x00037E4C 00 *Reimu Satori]
+\82\82á\82 
+\89½\82à\8c¾\82í\82È\82­\82Ä\82¢\82¢\82Ì\82æ\82Ë
+[2A 0x00038040 00 Reimu *Satori]
+\82¦\82¦\81A\82Å\82à\82±\82Ì\90æ\82Ö\82Æ
+\8b}\82¢\82Å\8b\8e\82Á\82Ä\82µ\82Ü\82¤\91O\82É
+[2A 0x00038234 00 Reimu *Satori]
+\8e\84\82Ì\98b\82ð\95·\82¢\82Ä\82­\82¾\82³\82¢\81c
+[2A 0x00038428 00 *Reimu Satori]
+\82¢\82¢\82í
+[2A 0x0003861C 00 Reimu *Satori]
+\81c\82 \82è\82ª\82Æ\82¤
+[2A 0x00038810 00 Reimu *Satori]
+\82 \82È\82½\82ª\8ev\82Á\82Ä\82¢\82é\92Ê\82è\81A
+\82±\82Ì\90¢\8aE\82Í\8cJ\82è\95Ô\82³\82ê\82Ä\82¢\82é\81c
+[2A 0x00038A04 00 Reimu *Satori]
+\8bC\82Ã\82¢\82Ä\82¢\82é\90l\82à\82¢\82ê\82Î
+\8a´\82\82Ä\82¢\82é\90l\82à\82¢\82é\81c
+[2A 0x00038BF8 00 Reimu *Satori]
+\92m\82Á\82Ä\82¢\82é\90l\82à\82¢\82ê\82Î
+\96³\8e\8b\82µ\82Ä\82¢\82é\90l\82à\82¢\82½\81c
+[2A 0x00038DEC 00 *Reimu Satori]
+\8e\84\82Í\96³\8e\8b\82ð\82µ\82Ä\82¢\82½\82Ì\82©\82È\81H
+[2A 0x00038FE0 00 Reimu *Satori]
+\81c\82»\82¤\82©\82à\82µ\82ê\82È\82¢\82Å\82·
+[2A 0x000391D4 00 Reimu *Satori]
+\82 \82È\82½\82Í
+\89½\93x\82à\8cJ\82è\95Ô\82µ\82½\82Í\82¸\81c
+[2A 0x000393C8 00 Reimu *Satori]
+\81u\8dg\96\88Ù\95Ï\81v\82Å\82Ì
+\8fo\89ï\82¢\82Æ\90í\82¢\82ð\82Å\82·\81c
+[2A 0x000395BC 00 *Reimu Satori]
+\81u\8dg\96\88Ù\95Ï\81v
+\82»\82¤\82©\81c\82»\82¤\82¾\82Á\82½\82Ì\82Ë
+[2A 0x000397B0 00 *Reimu Satori]
+\82 \82Ì\8e\9e\82ð
+\8e\84\82½\82¿\82Í\8cJ\82è\95Ô\82µ\82Ä\82¢\82½
+[2A 0x000399A4 00 *Reimu Satori]
+\82¸\82Á\82Æ\8fI\82í\82ç\82È\82¢\82Ü\82Ü
+[2A 0x00039B98 00 Reimu *Satori]
+\8fI\82í\82é\82±\82Æ\82Í
+\94ß\82µ\82¢\82±\82Æ\82Å\82·\82©\81c\81H
+[2A 0x00039D8C 00 *Reimu Satori]
+\82³\82 \81A\82í\82©\82ç\82È\82¢\82í\81B
+\8e\84\82Í\82Ç\82¿\82ç\82Å\82à\82¢\82¢\82©\82ç
+[2A 0x00039F80 00 *Reimu Satori]
+\82Å\82à\81A\8fI\82í\82è\82ð\94ß\82µ\82¢\82Æ\8ev\82¤
+\8bC\8e\9d\82¿\82Í\82í\82©\82é
+[2A 0x0003A174 00 Reimu *Satori]
+\82¾\82Á\82½\82ç\82»\82Ì\97D\82µ\82¢\8bC\8e\9d\82¿\82ð
+\82 \82Ì\8eq\82É\93`\82¦\82Ä\82 \82°\82Ä\81c
+[2A 0x0003A368 00 Reimu *Satori]
+\82·\82×\82Ä\82Í\81c\89^\96½\82ð\82½\82®\82è\8añ\82¹\82é
+\97Í\82ð\8e\9d\82Á\82Ä\82µ\82Ü\82Á\82½\82ª\82½\82ß\82É
+[2A 0x0003A55C 00 Reimu *Satori]
+\8e©\90g\82Ì\8eã\82³\82É\97\8d\82ß\8eæ\82ç\82ê\82½
+\91Ê\96Ú\82È\8bz\8c\8c\8bS\82Ì\82¹\82¢\81c
+[2A 0x0003A750 00 *Reimu Satori]
+\8dÅ\8cã\82Ì\8dÅ\8cã\82É\93Å\82Ã\82¢\82½\82Ì\82Ë
+[2A 0x0003A944 00 Reimu *Satori]
+\96J\82ß\8c¾\97t\82Å\82·\81c
+\96¢\90¬\8fn\82È\91\93\82¢åQ\93I\82È\81c
+[2A 0x0003AB38 00 *Reimu Satori]
+\82Ç\82±\82ª\82æ
+[2A 0x0003AD2C 00 *Reimu Satori]
+\82¢\82¢\82í\81A\89ï\82Á\82Ä\82­\82é\81B
+\82±\82Ì\90æ\82É\82¢\82é\83\8c\83~\83\8a\83A\82É\82Ë
+[2A 0x0003AF20 00 *Reimu Satori]
+\8dÅ\8cã\82É\82Ù\82ç\81B
+\90S\82ð\93Ç\82ñ\82Å\82Ý\82Ä
+[2A 0x0003B114 00 Reimu *Satori]
+\82Þ\81c
+[2A 0x0003B308 00 Reimu *Satori]
+\82 \82Á\81c
+\82»\82ñ\82È\82Ì\82Á\82Ä\81c
+[2A 0x0003B4FC 00 Reimu *Satori]
+\82à\82¤\82¢\82¢\82Å\82·
+[2A 0x0003B6F0 00 Reimu *Satori]
+\91å\90l\94\83\82¢\82Í
+\91å\90l\82É\82È\82Á\82Ä\82©\82ç\82Å\82·
+[2A 0x0003B8E4 00 Reimu *Satori]
+\82Ù\82ñ\82Æ\82É\95 \8d\95\82¢\82ñ\82Å\82·\82©\82ç\81c
+\82¨\82³\82¢\91K\82Ì\96³\91Ê\8eg\82¢\82Í\82¾\82ß\82Å\82·\81c
+[2A 0x0003BAD8 00 *Reimu Satori]
+\93{\82ç\82ê\82½\82©\81B
+\82\82á\82 \82Ë
+[2A 0x0003BCCC 00 Reimu *Satori]
+\82Í\82¢\81c
+[2A 0x0003BF8C 00 Reimu *Satori]
+\82³\82Ä\82Æ\81c
+\90Ã\82©\82É\82È\82è\82Ü\82µ\82½\81c
+[2A 0x0003C180 00 Reimu *Satori]
+\82¿\82å\82Á\82Æ\82³\82Ý\82µ\82¢\82¯\82Ç\81c
+\82»\82ê\82Í\92N\82©\82Ì\90S\82\82á\82È\82­\82Ä\81c
+[2A 0x0003C374 00 Reimu *Satori]
+\82Ü\82½\89ï\82¦\82Ü\82·\82æ\82Ë\81c
+\82Ý\82ñ\82È\82Æ\81c
+[28 0x0003C9B4 00 Reimu *Satori]
+\82³\82·\82ª\94\8e\97í\82Ì\9bÞ\8f\97\81c
+\82â\82Á\82Ï\82è\82±\82¤\82È\82Á\82Ä\82µ\82Ü\82¢\82Ü\82·\82©\81c
+[2A 0x0003CBBC 00 *Reimu Satori]
+\8e\84\82ª\8dl\82¦\82Ä\82¢\82é\82±\82Æ
+\82í\82©\82é\82í\82æ\82Ë\81H
+[2A 0x0003CDB0 00 Reimu *Satori]
+\81c\81c
+[2A 0x0003CFA4 00 *Reimu Satori]
+\82¦\82¢\81I
+[2A 0x0003D198 00 Reimu *Satori]
+\81c\81c\8c\99\82Å\82·\81B
+\82¢\82â\82ç\82µ\82¢
+[2A 0x0003D38C 00 *Reimu Satori]
+\82»\82ñ\82È\82±\82Æ
+\82¢\82Á\82³\82¢\8dl\82¦\82Ä\82È\82¢\82©\82ç
+[2A 0x0003D580 00 Reimu *Satori]
+\82²\82ß\82ñ\82È\82³\82¢\81c
+[2A 0x0003D774 00 Reimu *Satori]
+\82Å\82à\81c\82 \82È\82½\82Ì
+\8bC\8e\9d\82¿\82\82á\82È\82¢\82Æ\82µ\82½\82ç\81c
+[2A 0x0003D968 00 Reimu *Satori]
+\82 \82Á\81c
+[2A 0x0003DB5C 00 *Reimu Satori]
+\8e©\94\9a\82µ\82½\82Ì\82Ë
+[2A 0x0003DD50 00 Reimu *Satori]
+\82Í\82¢\81c
+[2A 0x0003DF44 00 Reimu *Satori]
+\82 \82È\82½\82ð\82©\82ç\82©\82¨\82¤\82Æ\82µ\82Ä
+\8e¸\94s\82µ\82Ä\82µ\82Ü\82¢\82Ü\82µ\82½\81c
+[2A 0x0003E138 00 *Reimu Satori]
+\82Ü\82Á\82½\82­\81B
+\82¢\82¢\82¯\82Ç\82Ë
+[2A 0x0003E32C 00 *Reimu Satori]
+\82»\82ê\82Å\81H
+[2A 0x0003E520 00 Reimu *Satori]
+\82 \82È\82½\82Ì\93¹\82Í\82±\82Ì\90æ\82É
+\82 \82é\82©\82à\82µ\82ê\82È\82¢\81c
+[2A 0x0003E714 00 Reimu *Satori]
+\82¾\82¯\82Ç\82Ü\82¾\81c
+\90i\82ß\82È\82¢\82Ý\82½\82¢\82Å\82·\81c
+[2A 0x0003E908 00 *Reimu Satori]
+\82»\82ê\82Á\82Ä\82Ç\82¤\82µ\82Ä\82È\82Ì\81H
+[2A 0x0003EAFC 00 Reimu *Satori]
+\92N\82©\82ª\96]\82Þ\89^\96½\82Ì\8c`\82ª
+\82Ü\82¾\82±\82±\82É\82Í\91\8dÝ\82µ\82È\82¢\81c
+[2A 0x0003ECF0 00 Reimu *Satori]
+\82Æ\82Å\82à\8c¾\82Á\82Ä\82¨\82«\82Ü\82·\81c
+[2A 0x0003EEE4 00 Reimu *Satori]
+\82»\82µ\82Ä\82±\82Ì\90¢\8aE\82É\82Í\81c
+\82Ü\82¾\91±\82«\82ª\82 \82é\82æ\82¤\82Å\82·\81c
+[2A 0x0003F0D8 00 *Reimu Satori]
+\82»\82ê\82Á\82Ä\81H
+[2A 0x0003F2CC 00 Reimu *Satori]
+\82Ü\82½\82¨\89ï\82¢\82µ\82Ü\82µ\82å\82¤\81c\81B
+\8d¡\82Æ\82Í\88á\82¤\81A\95Ê\82Ì\8c`\82Å\81c\81c
+[28 0x0003F990 02 *Reimu]
+\81u\8dg\96\88Ù\95Ï\81v\82ª\8cJ\82è\95Ô\82³\82ê\82Ä\82é\81B
+\82»\82ê\82Í\8aÔ\88á\82¢\82È\82¢\82í\82Ë
+[2A 0x0003FB40 02 *Reimu]
+\82±\82Ì\95Â\8d½\8bó\8aÔ\81u\8dg\96\82\8b½\81v\82©\82ç
+\92N\82à\8fo\82ç\82ê\82È\82¢\82Ì\82Í
+[2A 0x0003FCD4 02 *Reimu]
+\8dg\82¢\96\82Ì\82¹\82¢\82È\82Ì\82©
+\82»\82ê\82Æ\82à\95Ê\82Ì\81c
+[2A 0x0003FE68 02 *Reimu]
+\95û\96@\82Í\82È\82ñ\82¾\82Á\82Ä\82¢\82¢\81B
+\82Å\82à\81A\97\9d\97R\82Í\92m\82ç\82È\82«\82á\82Ë\81I
+[2A 0x0003FFFC 02 *Reimu]
+\82±\82Ì\89Q\82Ì\89\9c\82É\82Í\82 \82¢\82Â\82ª\82¢\82é
+[2A 0x00040190 02 *Reimu]
+\83\8c\83~\83\8a\83A\81E\83X\83J\81[\83\8c\83b\83g\81c
+\82¸\82Á\82Æ\91Ò\82Á\82Ä\82¢\82½\82Ì\82æ\82Ë
+[2A 0x00040324 02 *Reimu]
+\82·\82®\82É\8ds\82­\82©\82ç\81B
+\91Ò\82Á\82Ä\82¢\82È\82³\82¢
+[28 0x00040988 00 Reimu *Remilia]
+\82Ó\82Ó\81c
+[2A 0x00040B90 00 Reimu *Remilia]
+\82¤\82Ó\82Ó\82Ó\82Ó\81c
+[2A 0x00040D84 00 *Reimu Remilia]
+\8ay\82µ\82»\82¤\82Ë\81A\83\8c\83~\83\8a\83A
+[2A 0x00040F78 00 Reimu *Remilia]
+\82æ\82­\97\88\82½\81A\94\8e\97í\97ì\96²\81c
+[2A 0x0004116C 00 *Reimu Remilia]
+\81u\8dg\96\82\8b½\81v\82Í\82 \82È\82½\82Ì\82¹\82¢\82Á\82Ä
+\82±\82Æ\82Å\82¢\82¢\82Ì\82æ\82Ë\81H
+[2A 0x00041360 00 Reimu *Remilia]
+\89ä\82ª\97Í\82ª\82Â\82Þ\82¬\82µ\96À\8b{\82Ì
+\97\8a\82è\82È\82«\8fZ\90l\82æ\81c
+[2A 0x00041554 00 Reimu *Remilia]
+\82±\82Ì\8dg\82«\8cË\98f\82¢\82Ì\82Ó\82¿\82Å
+[2A 0x00041748 00 Reimu *Remilia]
+\82±\82Ì\82Ü\82Ü\89ä\82ª\91«\8c³\82É
+\82©\82µ\82¸\82­\82ª\82æ\82¢\82¼\81c
+[2A 0x0004193C 00 Reimu *Remilia]
+\82­\82­\82Á\81c
+\82­\82­\82­\82­\82­\82Á\81c
+[2A 0x00041B30 00 Reimu *Remilia]
+\82 \82Í\82Í\82Í\82Í\82Á\81I
+[2A 0x00041D24 00 *Reimu Remilia]
+\8fZ\90l\82Á\82Ä\81c\81B
+\8fZ\82ñ\82¾\8ao\82¦\82Í\82È\82¢\82©\82ç
+[2A 0x00041F18 00 *Reimu Remilia]
+\82»\82ê\82É
+\82¾\82¢\82½\82¢\82Ì\82±\82Æ\82Í\82í\82©\82Á\82Ä\82é
+[2A 0x0004210C 00 Reimu *Remilia]
+\82¦\82Á\81c\81I\81H
+[2A 0x00042300 00 *Reimu Remilia]
+\92N\82à\8aÙ\82©\82ç\82Å\82ç\82ê\82È\82¢\82µ
+\8e\9e\8aÔ\82à\8cJ\82è\95Ô\82³\82ê\82Ä\82é
+[2A 0x000424F4 00 *Reimu Remilia]
+\82Å\82µ\82å\81H
+[2A 0x000426E8 00 Reimu *Remilia]
+\82Þ\81c
+[2A 0x000428DC 00 Reimu *Remilia]
+\82¤\82Ó\82Ó\82Á\81B
+\82³\82·\82ª\82Ë\97ì\96²
+[2A 0x00042AD0 00 *Reimu Remilia]
+\82³\82 
+\82±\82Ì\90¢\8aE\82ð\8fI\82í\82ç\82¹\82È\82³\82¢
+[2A 0x00042CC4 00 Reimu *Remilia]
+\82Ð\82Ç\82¢\82±\82Æ\82ð\8c¾\82¤\82Ì\82Ë\81B
+\82Å\82à\81A\82»\82ê\82à\8að\82µ\82¢\82í
+[2A 0x00042EB8 00 Reimu *Remilia]
+\8c\8e\82Ì\8dg\82³\82É
+\8b\83\82«\82»\82¤\82É\82È\82é\82±\82Æ
+[2A 0x000430AC 00 Reimu *Remilia]
+\95\91\82¤\89Ø\82Ì\8dg\82ª
+\93ñ\93x\82Æ\8aÒ\82ç\82Ê\82±\82Æ
+[2A 0x000432A0 00 Reimu *Remilia]
+\97ì\96²\82È\82ç\82í\82©\82Á\82Ä\82­\82ê\82é\82Æ
+\8ev\82Á\82Ä\82¢\82½\82à\82Ì
+[2A 0x00043494 00 *Reimu Remilia]
+\82»\82ê\82ª\81u\8dg\96\82\8b½\81v\82Å
+\8e\9e\82ð\8cJ\82è\95Ô\82³\82¹\82½\97\9d\97R\81H
+[2A 0x00043688 00 *Reimu Remilia]
+\8aF\82ð\8aª\82«\8d\9e\82ñ\82Å\81H
+[2A 0x0004387C 00 *Reimu Remilia]
+\82¾\82Á\82½\82ç
+\96{\90S\82ð\95·\82©\82¹\82Ä\82­\82ê\82é\81H
+[2A 0x00043A70 00 Reimu *Remilia]
+\82¢\82¢\82í\81c\95·\82©\82¹\82Ä\82 \82°\82é\81c
+[2A 0x00043C64 00 Reimu *Remilia]
+\8e\84\82Í\97ì\96²\82Æ\90í\82¢\82½\82¢\81c
+[2A 0x00043E58 00 Reimu *Remilia]
+\90í\82¢\82½\82­\82Ä\90í\82¢\82½\82­\82Ä
+\8ed\95û\82ª\82È\82©\82Á\82½\81c
+[2A 0x0004404C 00 Reimu *Remilia]
+\82¸\82Á\82Æ\82¸\82Á\82Æ
+\82¢\82Â\82Ü\82Å\82à\81c
+[2A 0x00044240 00 Reimu *Remilia]
+\82±\82Ì\93µ\82ª\8dg\82É\81c
+\8a®àø\82É\90õ\82ß\94²\82©\82ê\82é\82Ü\82Å\81I
+[28 0x00044904 00 Reimu *Remilia]
+\8e\84\82Ì\95\89\82¯\81c
+[2A 0x00044B0C 00 Reimu *Remilia]
+\82Ç\82¤\82µ\82Ä\81H
+[2A 0x00044D00 00 Reimu *Remilia]
+\82È\82º\8f\9f\82Ä\82È\82¢\81H
+[2A 0x00044EF4 00 *Reimu Remilia]
+\8e\84\82Ì\95û\82ª\8b­\82¢\82©\82ç\82\82á\82È\82¢\81H
+[2A 0x000450E8 00 Reimu *Remilia]
+\82Þ\82¤\82Á\81I\81H
+[2A 0x000452DC 00 *Reimu Remilia]
+\82³\82 \81A\82±\82±\82©\82ç
+\8fo\82µ\82Ä\82à\82ç\82¢\82Ü\82µ\82å\82¤\82©
+[2A 0x000454D0 00 Reimu *Remilia]
+\82­\82Á\82­\82Á\82­\82Á\82­\82Á\82­
+\82»\82ê\82Í\82Ü\82¾\96³\97\9d\82Ë
+[2A 0x000456C4 00 *Reimu Remilia]
+\82»\82ê\82Á\82Ä\81A\82 \82ñ\82½\82Ì\97Í\82\82á
+\95\95\88ó\82ð\89ð\82¯\82È\82¢\82Á\82Ä\82±\82Æ\81H
+[2A 0x000458B8 00 Reimu *Remilia]
+\81c\81c\81c\81c
+[2A 0x00045AAC 00 Reimu *Remilia]
+\82»\82¤\82Æ\82à\82¢\82¤\82í\82Ë
+[2A 0x00045CA0 00 *Reimu Remilia]
+\82Ü\82Á\82½\82­\81A\8e©\95ª\82ª\82Ü\82Æ\82à\82É
+\88µ\82¦\82È\82¢\97Í\82ð\8eg\82Á\82Ä\82Ü\82Å
+[2A 0x00045E94 00 *Reimu Remilia]
+\8e\84\82Æ\90í\82¢\82½\82©\82Á\82½\82Á\82Ä\82¢\82¤\82Ì\81H
+[2A 0x00046088 00 Reimu *Remilia]
+\82»\82Ì\92Ê\82è\82¾\82¯\82Ç\88«\82¢\81H
+[2A 0x0004627C 00 Reimu *Remilia]
+\8fj\8f\9f\89ï\82Ì\8f\80\94õ\82à\82µ\82Ä\82¢\82½\82í
+\8bq\90l\82à\8cÄ\82ñ\82Å\82¨\82¢\82½\82µ
+[2A 0x00046470 00 Reimu *Remilia]
+\82Ü\82 \81c\83Q\83X\83g\82Æ\82¢\82¤\82©
+\98J\93­\97Í\82Æ\82µ\82Ä\82à\90\94\82¦\82Ä\82¢\82½\82¯\82Ç
+[2A 0x00046664 00 *Reimu Remilia]
+\82»\82Ì\8fj\8f\9f\89ï\81A\92\86\8e~\82·\82é\82í\82¯\81H
+[2A 0x00046858 00 Reimu *Remilia]
+\81c\82»\82¤\82·\82é\82µ\82©\82È\82¢\82í
+[2A 0x00046A4C 00 Reimu *Remilia]
+\82µ\82©\82µ\81A\8e\9f\82Í\95K\82¸\82â
+\8e\84\82ª\97ì\96²\82É\8f\9f\82Á\82Ä\82Ý\82¹\82é\81I
+[2A 0x00046C40 00 *Reimu Remilia]
+\96³\97\9d\96³\97\9d
+[2A 0x00046E34 00 Reimu *Remilia]
+\82É\82á\81I\81H
+[2A 0x00047028 00 *Reimu Remilia]
+\82Å\82à\81c\82â\82Á\82½\82ç\82¢\82¢\82\82á\82È\82¢
+[2A 0x0004721C 00 *Reimu Remilia]
+\82Ç\82¤\82¹\82±\82±\8fo\82é\82É\82Í
+\89½\82©\82â\82ç\82È\82¢\82Æ\82¢\82¯\82È\82¢\82ñ\82Å\82µ\82å\82¤\81H
+[2A 0x00047410 00 *Reimu Remilia]
+\82¾\82Á\82½\82ç\8e\9e\8aÔ\82à\82 \82é\82í\82¯\82¾\82µ\82Ë
+[2A 0x00047604 00 *Reimu Remilia]
+\8fj\8f\9f\89ï\82\82á\82È\82¢\82¯\82Ç\81c
+\82»\82¤\82Ë\81A\82¨\92\83\89ï\82Å\82Ç\82¤\81H
+[2A 0x000477F8 00 *Reimu Remilia]
+\82¿\82å\82¤\82Ç
+\82¨\92\83\82ª\88ù\82Ý\82½\82©\82Á\82½\82Ì\82æ\82Ë
+[2A 0x000479EC 00 Reimu *Remilia]
+\82Ó\82¤\82Þ\81c\82»\82ê\82Í\88«\82­\82È\82¢\92ñ\88Ä\82Ë
+[2A 0x00047BE0 00 Reimu *Remilia]
+\82æ\82µ\81A\82Å\82Í\82·\82®\82É\82Í\82\82ß\82æ\82¤\81I
+[2A 0x00047DD4 00 *Reimu Remilia]
+\82Æ\82±\82ë\82Å\8e¿\96â\82È\82ñ\82¾\82¯\82Ç
+[2A 0x00047FC8 00 *Reimu Remilia]
+\82Ç\82¤\82µ\82Ä\81A\82í\82´\82í\82´
+\82±\82ñ\82È\90¢\8aE\82ð\8dì\82Á\82½\82Ì\81H
+[2A 0x000481BC 00 Reimu *Remilia]
+\82»\82ê\82Í\97ì\96²\82Æ\90í\82¤\82½\82ß\82É\81c
+[2A 0x000483B0 00 *Reimu Remilia]
+\82»\82ê\82¾\82¯\82È\82Ì\82©\82µ\82ç\81H
+[2A 0x000485A4 00 Reimu *Remilia]
+\81c\82±\82Ì\90¢\8aE\82ª\81c
+\8fI\82í\82Á\82Ä\97~\82µ\82­\82È\82©\82Á\82½\82¾\82¯\82¾
+[2A 0x00048798 00 *Reimu Remilia]
+\82ñ\81c\81H
+[2A 0x0004898C 00 Reimu *Remilia]
+\93ñ\93x\96Ú\82Í\8c¾\82í\82È\82¢\82í\81I
+[2A 0x00048B80 00 Reimu *Remilia]
+\82³\82 \81A\82±\82Ì\90¢\8aE\82ª\82 \82Ì\97Í\82Å
+\94j\82ç\82ê\82Ä\82µ\82Ü\82¤\82Ü\82Å
+[2A 0x00048D74 00 Reimu *Remilia]
+\92\83\89ï\82Å\82Ü\82Á\82½\82è\82µ\82æ\82¤\82\82á\82È\82¢\82Ì
+[2A 0x00048F68 00 *Reimu Remilia]
+\82 \82Ì\97Í\82Á\82Ä\81c
+[2A 0x0004915C 00 *Reimu Remilia]
+\82»\82Á\82©\81A\82»\82¤\82¢\82¤\82±\82Æ\82©\81B
+\82í\82©\82Á\82½\82í
+[2A 0x00049350 00 *Reimu Remilia]
+\83_\83\81\82Á\8eq\82Í\83_\83\81\82Á\8eq\82È\82è\82É
+\8dl\82¦\82Ä\82½\82í\82¯\82Ë
+[2A 0x00049544 00 *Reimu Remilia]
+\82æ\82µ\82æ\82µ\81B
+\82¢\82¢\8eq\82¢\82¢\8eq
+[2A 0x00049738 00 Reimu *Remilia]
+\82±\81A\82±\82Ì\8e\84\82ð
+\82¢\82¢\8eq\82¢\82¢\8eq\81c\81I\81H
+[2A 0x0004992C 00 *Reimu Remilia]
+\8c\99\82È\82ç\93¦\82°\82½\82ç\81H
+[2A 0x00049B20 00 Reimu *Remilia]
+\82±\82Ì\8bC\8d\82\82«\8dg\82ÌáÅ\91®\82ª
+\90l\8aÔ\82È\82Ç\82É\8b¯\82¦\82Ä\93¦\82°\82é\82Æ\82Å\82à\81H
+[2A 0x00049D14 00 Reimu *Remilia]
+\81c\82µ\82Î\82ç\82­\82±\82Ì\82Ü\82Ü\82Å\82¢\82é\82í
+[2A 0x00049F08 00 *Reimu Remilia]
+\82È\82Â\82©\82ê\82½\82©\81B
+\8f\9f\8eè\82É\82µ\82È\82³\82¢
+[2A 0x0004A0FC 00 Reimu *Remilia]
+\8e\84\82Í\82¢\82Â\82à\8f\9f\8eè\82É\82·\82é\82í\81B
+\96{\93\96\82Í\88Ì\82¢\82Ì\82æ
+[2A 0x0004A2F0 00 *Reimu Remilia]
+\82í\82©\82Á\82½\82í\82©\82Á\82½\82¨\8fì\97l
+[2A 0x0004A4E4 00 Reimu *Remilia]
+\83\8c\83~\83\8a\83A\97l\82Æ\8cÄ\82Ñ\82È\82³\82¢
+[2A 0x0004A6D8 00 *Reimu Remilia]
+\82Í\82¢\82Í\82¢\81A\83\8c\83~\83\8a\83A\97l
+[2A 0x0004A8CC 00 *Reimu Remilia]
+\82\82á\82 \81A\82»\82ë\82»\82ë\8ds\82±\82¤\82©\81B
+\82Ý\82ñ\82È\82ð\8cÄ\82ñ\82Å\82±\82È\82«\82á\82Ë
+[2A 0x0004AAC0 00 Reimu *Remilia]
+\82Ó\82Ó\81B
+\91f\93G\82È\92\83\89ï\82É\82È\82è\82»\82¤\82Ë\81B
+[28 0x0004B184 00 Reimu *Remilia]
+\82»\82ñ\82È\82Ì\82ª
+\8e\84\82É\92Ê\82\82é\82Æ\8ev\82Á\82Ä\82½\81H
+[2A 0x0004B38C 00 *Reimu Remilia]
+\91Ê\96Ú\8c³\82Å\82â\82Á\82Ä\82Ý\82½\82¯\82Ç
+\82â\82Á\82Ï\82è\91Ê\96Ú\82¾\82Á\82½\82©
+[2A 0x0004B580 00 Reimu *Remilia]
+\82Ü\82 \81A\8e\8e\82Ý\82Æ\82µ\82Ä\82Í\82æ\82©\82Á\82½\82í\81B
+\91\8a\8eè\82ª\8e\84\82\82á\82È\82¯\82ê\82Î\82Ë
+[2A 0x0004B774 00 *Reimu Remilia]
+\82Í\82 \81c
+\82\82á\82 \81A\90³\96Ê\82©\82ç\90í\82¤\82µ\82©\82È\82¢\82©
+[2A 0x0004B968 00 Reimu *Remilia]
+\96{\8bC\82Å\82©\82©\82Á\82Ä\82­\82é\82±\82Æ\82Ë
+[28 0x0004C02C 02 *Reimu]
+\81u\82 \82¢\82Â\81v\82ð\8bN\82±\82µ\82Ä\82«\82Ä\82Á\82Ä\81A
+\83\8c\83~\83\8a\83A\82à\91f\92¼\82\82á\82È\82¢\82ñ\82¾\82©\82ç
+[2A 0x0004C1DC 02 *Reimu]
+\8e©\95ª\82Å\8bN\82±\82µ\82Ä\82 \82°\82ê\82Î\82¢\82¢\82Ì\82É
+\92p\82¸\82©\82µ\82ª\82Á\82Ä\82é\81H
+[2A 0x0004C370 02 *Reimu]
+\82»\82ê\82Í\82È\82¢\82©\81c
+[2A 0x0004C504 02 *Reimu]
+\82¨\92\83\89ï\82Å\82¨\95 \82ª\82¢\82Á\82Ï\82¢\82¾\82µ
+\82È\82ñ\82¾\82©\96°\82½\82¢\82¯\82Ç\81c
+[2A 0x0004C698 02 *Reimu]
+\81u\8dg\96\82\8b½\81v\82Ì\95\95\88ó\82ð\94j\82é\82É\82Í
+\82 \82¢\82Â\82Ì\97Í\82ª\95K\97v
+[2A 0x0004C82C 02 *Reimu]
+\8ds\82Á\82Ä\82 \82°\82é\82µ\82©\82È\82¢\82Ì\82æ\82Ë
+[28 0x0004CE90 00 Reimu *Fran]
+\8dg\94\92\82Ì\9bÞ\8f\97\81c
+[2A 0x0004D098 00 Reimu *Fran]
+\89½\82ð\82µ\82É\82«\82½\82Ì\81c
+\90l\8aÔ\82Ì\82­\82¹\82É\81c
+[2A 0x0004D28C 00 Reimu *Fran]
+\82¨\8eo\97l\82ð\98U\97\8d\82µ\82½
+\95s\93Í\82«\8eÒ\81c
+[2A 0x0004D480 00 *Reimu Fran]
+\82»\82ñ\82È\8ao\82¦\82È\82¢\82©\82ç\81B
+\82 \82Á\82¿\82ª\82È\82Â\82¢\82½\82¾\82¯
+[2A 0x0004D674 00 *Reimu Fran]
+\8e\84\82Í\97d\90¸\82â\97d\89ö\82É
+\82È\82Â\82©\82ê\82â\82·\82¢\82Ì\82ª\94Y\82Ý\82È\82Ì\82æ\82Ë
+[2A 0x0004D868 00 Reimu *Fran]
+\82È\82Â\82¢\82½\81H
+[2A 0x0004DA5C 00 Reimu *Fran]
+\82¤\82Ó\81c
+\82¤\82Ó\82Ó\82Ó\81c
+[2A 0x0004DC50 00 Reimu *Fran]
+\82 \82Í\82Í\82Í\82Í\82Á\81I
+\82»\82ê\82Í\82¢\82¢\81A\82¢\82¢\82Ì\82Á\81I
+[2A 0x0004DE44 00 Reimu *Fran]
+\82¨\8eo\97l\82ª\82È\82Â\82¢\82½\82©\81I
+[2A 0x0004E038 00 Reimu *Fran]
+\82 \82Í\82Í\82Í\82Í\82Í\82Í\82Á\81I
+[2A 0x0004E22C 00 *Reimu Fran]
+\8ay\82µ\82»\82¤\82Ë\81B
+\97p\82ª\82 \82é\82ñ\82¾\82¯\82Ç
+[2A 0x0004E420 00 Reimu *Fran]
+\82Ó\82Ó\82Á\81A\82­\82­\82­\82­\82­\82Á
+[2A 0x0004E614 00 Reimu *Fran]
+\82í\82©\82Á\82Ä\82¢\82é\8dg\94\92\81c
+[2A 0x0004E808 00 Reimu *Fran]
+\8e\9f\82Í\82±\82Ì\8e\84\82ð
+\82Ä\82È\82Ã\82¯\82é\82Â\82à\82è\82Ë
+[2A 0x0004E9FC 00 *Reimu Fran]
+\97p\82Í\82 \82é\82¯\82Ç
+\8a¨\88á\82¢\82µ\82Ä\82é\82Ý\82½\82¢\82Ë
+[2A 0x0004EBF0 00 Reimu *Fran]
+\91Ì\92\86\82ð\92\8e\82ª\94\87\82¢\82¸\82é\82æ\82¤\82È\81c
+\82»\82ñ\82È\88«\8a¦\82ª\82·\82é\82í\81c
+[2A 0x0004EDE4 00 Reimu *Fran]
+\82±\82Ì\8d\82\8bM\82È\82é\90g\91Ì\82É
+\88«\82µ\82«\89½\82©\82ªå¿\82­\81c
+[2A 0x0004EFD8 00 Reimu *Fran]
+áu\82­\82Ì\81c
+\90S\82Ì\91\9f\82Ì\82 \82½\82è\82ª\81c
+[2A 0x0004F1CC 00 Reimu *Fran]
+\82 \82È\82½\82Ì\8ed\8bÆ\82Ë\81H
+\94\8e\97í\82Ì\9bÞ\8f\97\82ß\81c
+[2A 0x0004F3C0 00 *Reimu Fran]
+\82 \82Í\82Á\81B
+\82»\82Á\82¿\82à\8cJ\82è\95Ô\82µ\82Ä\82½\82ñ\82¾
+[2A 0x0004F5B4 00 Reimu *Fran]
+\82¦\81H
+\8cJ\82è\95Ô\82µ\82Á\82Ä\82È\82ñ\82È\82Ì\81H
+[2A 0x0004F7A8 00 *Reimu Fran]
+\82»\82Ì\8a´\82\81A\8e\84\82É\82à\82í\82©\82é
+[2A 0x0004F99C 00 *Reimu Fran]
+\82 \82ñ\82½\82Í\82Ë\81B
+\82¨\95 \82ª\8c¸\82Á\82Ä\82é\82Ì\82æ
+[2A 0x0004FB90 00 *Reimu Fran]
+\8cJ\82è\95Ô\82³\82ê\82é\8e\9e\8aÔ\82Ì\92\86\82Å
+\82¸\82Á\82Æ\90H\82×\82Ä\82¢\82È\82¢\82©\82ç
+[2A 0x0004FD84 00 Reimu *Fran]
+\82¦\81c\81c\81c\82¨\95 \81H
+\95 \83y\83R\82È\82Ì\81c\82±\82ê\81H
+[2A 0x0004FF78 00 *Reimu Fran]
+\82»\82ê\82à\81c
+\82±\82±\82Å\8fI\82í\82ç\82¹\82Ä\82 \82°\82é
+[2A 0x0005016C 00 *Reimu Fran]
+\82à\82¤
+\83R\83\93\83e\83B\83j\83\85\81[\82Å\82«\82È\82¢\82Ì\82³\81I
+[2A 0x00050360 00 Reimu *Fran]
+\81c\82¦\81H
+[2A 0x00050554 00 Reimu *Fran]
+\82¦\82¦\81[\82Á\81I\81H
+[2A 0x00050748 00 Reimu *Fran]
+\82Ç\82¤\82µ\82Ä\82»\82Á\82¿\82ª
+\89B\82µ\83{\83X\82Ý\82½\82¢\82È\91ä\8e\8c\82È\82Ì\81I\81H
+[2A 0x0005093C 00 *Reimu Fran]
+\82³\82Ä\81A\82Ë\81H
+\82½\82Ü\82É\82Í\82¢\82¢\82ñ\82\82á\82È\82¢\81H
+[2A 0x00050B30 00 *Reimu Fran]
+\8ds\82­\82æ\81I
+[28 0x000511F4 00 *Reimu Fran]
+\82 \82ç\82½\82ß\82Ä\81B
+\82¨\82Í\82æ\82¤
+[2A 0x000513FC 00 Reimu *Fran]
+\82¨\81A\82¨\82Í\82æ\82¤\81c
+[2A 0x000515F0 00 *Reimu Fran]
+\96Ú\82Í\8ao\82ß\82½\81H
+[2A 0x000517E4 00 Reimu *Fran]
+\90æ\92ö\82©\82ç\83o\83\8a\83o\83\8a\82É
+\8ao\82ß\82Ä\82½\82Ì\82É\81c
+[2A 0x000519D8 00 *Reimu Fran]
+\82ñ\81H
+[2A 0x00051BCC 00 Reimu *Fran]
+\82à\82¤\82¢\82¢\82í\81c
+[2A 0x00051DC0 00 Reimu *Fran]
+\82±\82±\82É\82Í\89½\82ð\82µ\82É\81H
+[2A 0x00051FB4 00 Reimu *Fran]
+\96{\93\96\82É\82Ä\82È\82Ã\82¯\82é\82Â\82à\82è\82È\82ç
+\8e\84\82Í\82»\82¤\8aÈ\92P\82É\82Í\81c
+[2A 0x000521A8 00 *Reimu Fran]
+\83\8c\83~\83\8a\83A\82½\82¿\82ª\82 \82ñ\82½\82ð\91Ò\82Á\82Ä\82é\82í\82æ\81B
+\8d¡\81A\82¨\92\83\89ï\82Ì\93r\92\86\82¾\82©\82ç
+[2A 0x0005239C 00 Reimu *Fran]
+\82¨\92\83\89ï\81H
+[2A 0x00052590 00 Reimu *Fran]
+\81c\82»\82ê\82¾\82¯\81H
+\8cÄ\82Ñ\82É\97\88\82½\82¾\82¯\82È\82Ì\81H
+[2A 0x00052784 00 *Reimu Fran]
+\82¢\82¢\82¦\81B\82¨\92\83\89ï\82ª\8fI\82í\82Á\82½\82ç
+\82Ð\82Æ\82Â\82¨\8aè\82¢\82ª\82 \82é\82ñ\82¾\82¯\82Ç
+[2A 0x00052978 00 *Reimu Fran]
+\82¬\82ã\82Á\82Æ\82µ\82Ä\83p\83\8a\81[\83\93\82Á\82Ä
+\82µ\82¿\82á\82Á\82Ä\82­\82ê\82é\81H
+[2A 0x00052B6C 00 *Reimu Fran]
+\92×\82µ\82Ä\82Ù\82µ\82¢\82à\82Ì\82ª
+\82 \82é\82ñ\82¾\82¯\82Ç
+[2A 0x00052D60 00 Reimu *Fran]
+\94j\89ó\82Ë\81c
+[2A 0x00052F54 00 Reimu *Fran]
+\82¤\82Ó\82Ó\81c
+[2A 0x00053148 00 Reimu *Fran]
+\82â\82è\82·\82¬\82È\82¢\82æ\82¤\82É
+\8bC\82ð\82Â\82¯\82é\82í
+[2A 0x0005333C 00 *Reimu Fran]
+\82\82á\82 \81A\8ds\82­\82æ\81B
+\82Ý\82ñ\82È\82ª\91Ò\82Á\82Ä\82é\82©\82ç
+[2A 0x00053530 00 Reimu *Fran]
+\8dg\94\92\82Ì\9bÞ\8f\97
+[2A 0x00053724 00 *Reimu Fran]
+\82È\82É\81H
+[2A 0x00053918 00 Reimu *Fran]
+\8eè\82È\82¸\82¯\82È\82­\82Ä\82¢\82¢\82Ì\81H
+[2A 0x00053B0C 00 *Reimu Fran]
+\82¢\82â\81A\92N\82à
+\8eè\82È\82¸\82¯\82Ä\82È\82¢\82©\82ç
+[2A 0x00053D00 00 *Reimu Fran]
+\8c¾\82Á\82½\82Å\82µ\82å
+\8f\9f\8eè\82É\82È\82Â\82¢\82Ä\82­\82é\82Ì
+[2A 0x00053EF4 00 Reimu *Fran]
+\82Ó\82Á\81A\82»\82¤\82Ë
+[2A 0x000540E8 00 Reimu *Fran]
+\82»\82¤\82¢\82¤\82Ì\82Í
+\8e©\95ª\82Ì\8f\9f\8eè\81A\82È\82Ì\82Ë
+[2A 0x000542DC 00 *Reimu Fran]
+\82»\82¤\82»\82¤\81B
+\91\8a\8eè\82Í\8e©\95ª\82Å\91I\82Ñ\82È\82³\82¢
+[2A 0x000544D0 00 Reimu *Fran]
+\82¾\82Á\82½\82ç\82¢\82¢\82Ì\81B
+\82à\82¤\8c\88\82ß\82Ä\82é\82©\82ç
+[2A 0x000546C4 00 *Reimu Fran]
+\82»\81H
+[2A 0x000548B8 00 Reimu *Fran]
+\82¨\92\83\89ï\82Í\92ë\81H
+[2A 0x00054AAC 00 *Reimu Fran]
+\82»\82¤\82æ\81B\8dg\82¢\96\82ª\82Å\82Ä\82é\82©\82ç
+\8aO\82É\8fo\82Ä\82à\91å\8fä\95v\82æ
+[2A 0x00054CA0 00 Reimu *Fran]
+\82»\82¤\81c
+[2A 0x00054E94 00 Reimu *Fran]
+\82Ó\82¤\81c
+[2A 0x00055088 00 Reimu *Fran]
+\8aO\82Í\8bv\82µ\82Ô\82è\82Ë
+[28 0x0005574C 02 *Reimu]
+\82 \82ê\81H
+\82±\82Ì\8a´\82\82Á\82Ä
+[2A 0x000558FC 02 *Reimu]
+\8ao\82¦\82Ä\82é\82æ\82¤\82È
+\8ao\82¦\82Ä\82È\82¢\82æ\82¤\82È
+[2A 0x00055A90 02 *Reimu]
+\82Ç\82±\82©\82É\88ø\82«\96ß\82³\82ê\82Ä\81c\82é\81H
+[2A 0x00055C24 02 *Reimu]
+\82±\82ê\82Á\82Ä\82à\82µ\82©\82µ\82Ä
+\8e\9e\8aÔ\82ª\8cJ\82è\95Ô\82³\82ê\82Ä\82é\81H
+[28 0x00055E84 02 *Remilia]
+\82Ü\82¾\82±\82Ì\98b\82ð
+\8fI\82í\82ç\82¹\82Ä\82È\82ñ\82©\82 \82°\82È\82¢
+[2A 0x00056034 02 *Remilia]
+\8e\9f\82Í\82±\82±\82Ü\82Å\97\88\82é\82Ì\82æ
+[2A 0x000561C8 02 *Remilia]
+\97ì\96²\81c\8e\9f\82Í\82«\82Á\82Æ\81c
+[28 0x000567A8 02 *Reimu]
+\82 \82ê\82Á\81H
+\89½\82±\82ê\82Á\81H
+[2A 0x00056958 02 *Reimu]
+\82Ç\82±\82©\82É\81c
+[2A 0x00056AEC 02 *Reimu]
+\82¿\82ª\82¤\81B
+\8dÅ\8f\89\82É\96ß\82³\82ê\82Ä\82¢\82­\81c\81H
+[28 0x00056D4C 02 *Remilia]
+\82Ü\82¾\82±\82Ì\98b\82ð
+\8fI\82í\82ç\82¹\82Ä\82È\82ñ\82©\82 \82°\82È\82¢
+[2A 0x00056EFC 02 *Remilia]
+\8e\9f\82Í\82±\82±\82Ü\82Å\97\88\82é\82Ì\82æ
+[2A 0x00057090 02 *Remilia]
+\97ì\96²\81c\8e\9f\82Í\82«\82Á\82Æ\81c
diff --git a/scripts/jp/SceHelp.txt b/scripts/jp/SceHelp.txt
new file mode 100644 (file)
index 0000000..548f48a
--- /dev/null
@@ -0,0 +1,271 @@
+[28 0x000002D0 01 *Patch]
+\82±\82±\82Å\82Í\8e\84\82ª\82¢\82ë\82¢\82ë\82Æ\8b³\82¦\82Ä\82 \82°\82é\82í\81B
+\95·\82«\82½\82¢\82±\82Æ\82¾\82¯\91I\91ð\82·\82é\82Ì\82æ\81B
+[2A 0x00000760 01 *Patch]
+\82Ü\82¾\95·\82«\82½\82¢\82±\82Æ\82ª\82 \82é\82Ì\82©\82µ\82ç\81B
+\82µ\82å\82¤\82ª\82È\82¢\82í\82Ë\81B
+[2A 0x00000BD4 01 *Patch]
+\82³\82Æ\82è\82Í\82©\82í\82¢\82¢\82í\82æ\82Ë\81B
+[2A 0x00000D44 01 *Patch]
+\91S\95\94\90à\96¾\82µ\8fI\82í\82é\82Æ\83\81\83j\83\85\81[\82É\96ß\82é\82í\81B
+[2A 0x0000110C 01 *Patch]
+\8c\91z\8b½\82É\82Í\81y\92e\96\8b\93n\82è\81z\82Å\82µ\82©
+\93|\82¹\82È\82¢\97d\90¸\82³\82ñ\82Æ\82©\82ª\82¢\82é\82Ì\81B
+[2A 0x0000127C 01 *Patch]
+\83X\83e\81[\83W\82Ì\8dÅ\8cã\82É\8fo\82Ä\82­\82é\83{\83X\82Æ
+\83\8a\83\8a\81[\83z\83\8f\83C\83g\82½\82¿\82ª\82»\82Ì\91ã\95\\8ai\82Ë\81B
+[2A 0x000013EC 01 *Patch]
+\83\8a\83\8a\81[\82½\82¿\82Í\92e\82ð\93\96\82Ä\82Ä\82¢\82­\82Æ
+\81y\82a\82q\82d\82`\82j\81@\82b\82g\82`\82m\82b\82d\81z\83}\81[\83N\82ª
+\95\\8e¦\82³\82ê\82é\82í\81B
+[2A 0x0000155C 01 *Patch]
+\82¿\82å\82¤\82Ç\82±\82Ì\89æ\91\9c\82Ì\89E\82Ì\95û\82É\82¢\82é
+\83\8a\83\8a\81[\82ª\82»\82Ì\8fó\91Ô\82É\82È\82Á\82Ä\82¢\82é\82í\82Ë\81B
+[2A 0x000016CC 01 *Patch]
+\82±\82Ì\83}\81[\83N\82ª\82Å\82Ä\82à\92e\82Å\93|\82¹\82È\82¢\8fê\8d\87\82Í
+\81y\92e\96\8b\93n\82è\81z\82Å\93|\82·\95K\97v\82ª\82 \82é\82í\81B
+[2A 0x0000183C 01 *Patch]
+\8dÅ\8f\89\82Ì\82¤\82¿\82Í\93ï\82µ\82¢\82©\82à\82µ\82ê\82È\82¢\82¯\82Ç
+\81y\92e\96\8b\93n\82è\81z\82ð\8eg\82¤\83^\83C\83~\83\93\83O\82É
+\92\8d\88Ó\82·\82é\82±\82Æ\82Ë\81B
+[2A 0x000019AC 01 *Patch]
+\83}\81[\83N\82ª\82Å\82Ä\82È\82­\82Ä\82à
+\8c\8b\8aE\82Å\92e\82ð\82½\82­\82³\82ñ\8bz\8eû\82·\82ê\82Î
+\93|\82¹\82é\82©\82ç\92e\96\8b\82Ì\97\98\97p\82à\8dl\82¦\82é\82Ì\82æ\81B
+[2A 0x00001B1C 01 *Patch]
+\83\8a\83\8a\81[\82Í\93|\82·\82Æ\83A\83C\83e\83\80\82â
+\83{\83\80\82â\82P\82t\82o\82ð\82¾\82·\82±\82Æ\82ª\82 \82é\82©\82ç
+\8aæ\92£\82Á\82Ä\93|\82µ\82Ä\82Ë\81B
+[2A 0x00001F2C 01 *Patch]
+\81y\90H\82ç\82¢\83X\83y\83\8b\83J\81[\83h\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x0000209C 01 *Patch]
+\96{\97\88\92e\82É\93\96\82½\82Á\82Ä\82µ\82Ü\82¤\82Æ
+\8c\82\94j\82³\82ê\82Ä\97\8e\82¿\82Ä\82µ\82Ü\82¤\82Ì\82¾\82¯\82Ç
+[2A 0x0000220C 01 *Patch]
+\8eÀ\82Í\81A\93\96\82½\82Á\82Ä\82µ\82Ü\82Á\82½\8fu\8aÔ\82É
+\83X\83y\83\8b\83J\81[\83h\82ð\94­\93®\82·\82é\82Æ
+\82È\82©\82Á\82½\82±\82Æ\82É\82Å\82«\82é\82Ì\81B
+[2A 0x0000237C 01 *Patch]
+\82µ\82©\82à\81A\83X\83y\83\8b\83J\81[\83h\82à\94­\93®\82·\82é\82©\82ç
+\82Ü\82³\82É\88ê\90Î\93ñ\92¹\82Æ\82Í\82±\82Ì\82±\82Æ\82Ë\81B
+[2A 0x000024EC 01 *Patch]
+\82Å\82à\91_\82Á\82Ä\94­\93®\82·\82é\82Ì\82Í
+\82Æ\82Ä\82à\93ï\82µ\82¢\82Ì\81c\81B
+[2A 0x0000265C 01 *Patch]
+\82Æ\82è\82 \82¦\82¸\92e\82É\93\96\82½\82è\82»\82¤\82É\82È\82Á\82½\82ç
+\83X\83y\83\8b\83J\81[\83h\82ð\94­\93®\81I
+\82Æ\8dl\82¦\82Ä\82¨\82­\82Æ\82¢\82¢\82Ì\82©\82à\82µ\82ê\82È\82¢\82í\82Ë\81B
+[2A 0x000027CC 01 *Patch]
+\8fã\8eè\82¢\90l\82Í\82±\82ê\82ð\91_\82Á\82Ä\82Å\82«\82é\82Ì\82©\82µ\82ç\81c\81B
+[2A 0x00002BDC 01 *Patch]
+\81y\92e\96\8b\93n\82è\82Ì\83_\83\81\81[\83W\81z\82É\82Â\82¢\82Ä\90à\96¾\82·\82é\82í\81B
+[2A 0x00002D4C 01 *Patch]
+\81y\92e\96\8b\93n\82è\81z\82Í\92e\82ð\8bz\8eû\82·\82ê\82Î\82·\82é\82Ù\82Ç
+\91\8a\8eè\82É\97^\82¦\82é\83_\83\81\81[\83W\82ª\91å\82«\82­\82È\82é\82Ì\81B
+[2A 0x00002EBC 01 *Patch]
+\8bz\8eû\82µ\82½\92e\82Ì\90\94\82Í
+\82±\82Ì\89æ\91\9c\82Ì\82æ\82¤\82É\95\\8e¦\82³\82ê\82é\82©\82ç
+\96Ú\88À\82É\82µ\82Ä\82Ë\81B
+[2A 0x0000302C 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\83o\83g\83\8b\82â
+\92e\96\8b\82Å\89æ\96Ê\82ª\96\84\82Ü\82è\82»\82¤\82È\82Æ\82«\82Í
+\8eÀ\82Í\83`\83\83\83\93\83X\82Æ\82¢\82¤\82±\82Æ\82Ë\81B
+[2A 0x0000319C 01 *Patch]
+\92e\96\8b\82ð\97\98\97p\82·\82ê\82Î
+\83{\83X\82à\82¢\82¿\82±\82ë\82È\82Ì\82æ\81B\82Ó\82Ó\81B
+[2A 0x0000330C 01 *Patch]
+\81y\8c\8b\8aE\81z\82ð\8eg\82¤\82¾\82¯\82Å\82à
+\92e\82ð\8bz\8eû\82Å\82«\82é\82©\82ç
+\8dQ\82Ä\82È\82¢\82Å\8aæ\92£\82é\82Ì\82æ\81B
+[2A 0x0000371C 01 *Patch]
+\81y\83A\83C\83e\83\80\82Ì\8cø\89Ê\81z\82É\82Â\82¢\82Ä\82Ì\90à\96¾\82Ë\81B
+[2A 0x0000388C 01 *Patch]
+\83\8a\83\8a\81[\82½\82¿\82ð\93|\82·\82Æ
+\82½\82Ü\82É\83A\83C\83e\83\80\82ð\82¾\82·\82±\82Æ\82ª\82 \82é\82Ì\81B
+[2A 0x000039FC 01 *Patch]
+\83A\83C\83e\83\80\82ð\82Æ\82é\82Æ
+\89æ\91\9c\82É\82 \82é\82æ\82¤\82È\8cø\89Ê\82ª\94­\8aö\82³\82ê\82é\82í\81B
+[2A 0x00003B6C 01 *Patch]
+\83A\83C\83e\83\80\82Í\88ê\92è\8e\9e\8aÔ\82Å\90Ø\82è\91Ö\82í\82é\82©\82ç
+\82¨\96Ú\93\96\82Ä\82Ì\83A\83C\83e\83\80\82ª\82Å\82é\82Ü\82Å
+\82Æ\82ç\82È\82¢\95û\82ª\82¢\82¢\82Ì\82¾\82¯\82Ç\81c\81B
+[2A 0x00003CDC 01 *Patch]
+\82Æ\82Í\82¢\82Á\82Ä\82à
+\92e\96\8b\82Ì\92\86\91Ò\82Â\82Ì\82Í\82Æ\82Ä\82à\91å\95Ï\82æ\82Ë\81c\81B
+[2A 0x00003E4C 01 *Patch]
+\82Ü\82 \81A\82Ç\82Ì\83A\83C\83e\83\80\82ð\82Æ\82Á\82Ä\82à
+\83v\83\89\83X\82É\82È\82é\82Æ\8ev\82¤\82©\82ç
+\82 \82Ü\82è\8bC\82É\82µ\82È\82¢\82Å\82à\82¢\82¢\82Æ\8ev\82¤\82í\81B
+[2A 0x0000425C 01 *Patch]
+\81y\83A\83C\83e\83\80\82Ì\89æ\96Ê\92[\89ñ\8eû\81z\82Ë\81B
+[2A 0x000043CC 01 *Patch]
+\81y\82o\81z\82â\81y\93_\81z\82Ì\83A\83C\83e\83\80\82Í
+\89æ\96Ê\92[\82É\83L\83\83\83\89\83N\83^\81[\82ð\88Ú\93®\82³\82¹\82é\82±\82Æ\82Å
+\89ñ\8eû\82·\82é\82±\82Æ\82ª\82Å\82«\82é\82í\81B
+[2A 0x0000453C 01 *Patch]
+\89E\82É\83V\83\87\83b\83g\82µ\82Ä\93|\82µ\82½\8fê\8d\87\82Í\89æ\96Ê\89E\82Å\81B
+\8d\82É\83V\83\87\83b\83g\82µ\82Ä\93|\82µ\82½\8fê\8d\87\82Í\89æ\96Ê\8d\82Å\81B
+\82»\82ê\82¼\82ê\89ñ\8eû\82·\82é\82±\82Æ\82ª\82Å\82«\82é\82í\81B
+[2A 0x000046AC 01 *Patch]
+\89æ\96Ê\92[\82É\88Ú\93®\82·\82é\82±\82Æ\82Å
+\8b}\82É\93G\82ª\8fo\82Ä\82­\82é\83\8a\83X\83N\82ª\82 \82é\82©\82ç
+\82æ\82­\8dl\82¦\82Ä\88Ú\93®\82·\82é\82Ì\82æ\81B
+[2A 0x0000481C 01 *Patch]
+\82»\82ê\82Æ\81A\89ñ\8eû\82É\82Í\88ê\82Â\82¾\82¯\8fð\8c\8f\82ª\82 \82Á\82Ä
+\8c\8b\8aE\83Q\81[\83W\82ª\96\9e\83^\83\93\82Å\82È\82¢\82Æ
+\89ñ\8eû\82Í\82Å\82«\82È\82¢\82Ì\81B
+[2A 0x0000498C 01 *Patch]
+\82Ü\82Á\82½\82­\97Z\92Ê\82ª\82«\82©\82È\82¢\82í\82æ\82Ë\81c\81B
+[2A 0x00004AFC 01 *Patch]
+\82Ü\82 \81A\81y\92e\96\8b\93n\82è\81z\82©\81y\83A\83C\83e\83\80\89ñ\8eû\81z\82©
+\82¤\82Ü\82­\8eg\82¢\95ª\82¯\82é\82Ì\82ª\97Ç\82³\82»\82¤\82Ë\81B
+[2A 0x00004F0C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\82Ì\8dU\97ª\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x0000507C 01 *Patch]
+\91\8a\8eè\82ª\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82Á\82Ä\82«\82½\8fê\8d\87\82É
+\93Á\92è\82Ì\8fð\8c\8f\82ð\96\9e\82½\82µ\82½\82Ü\82Ü
+[2A 0x000051EC 01 *Patch]
+\91\8a\8eè\82Ì\91Ì\97Í\82ð\82O\82É\82·\82é\82±\82Æ\82Å
+\83X\83y\83\8b\83J\81[\83h\82ð\8dU\97ª\82µ\82½\82±\82Æ\82É\82È\82é\82í\81B
+[2A 0x0000535C 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\82ð\8dU\97ª\82·\82é\82Æ
+\89æ\91\9c\82Ì\82æ\82¤\82É\95\\8e¦\82³\82ê\82é\82©\82ç
+\96Ú\88À\82É\82µ\82Ä\82Ý\82Ä\82Ë\81B
+[2A 0x000054CC 01 *Patch]
+\82Å\81A\82»\82Ì\8fð\8c\8f\82È\82Ì\82¾\82¯\82Ç\81c
+[2A 0x0000563C 01 *Patch]
+\81s\83X\83y\83\8b\83J\81[\83h\82ð\8eg\82í\82È\82¢\81t\82Æ
+\81s\88ê\93x\82à\92e\82É\93\96\82½\82ç\82¸\97\8e\82¿\82È\82¢\81t\82Ì
+[2A 0x000057AC 01 *Patch]
+\82±\82Ì\93ñ\82Â\82Ì\8fð\8c\8f\82ð\96\9e\82½\82·\82±\82Æ\82ª\95K\97v\82È\82Ì\81B
+[2A 0x0000591C 01 *Patch]
+\8c¾\82¤\82¾\82¯\82Í\8aÈ\92P\82È\82Ì\82æ\82Ë\81c\81c\81B
+[2A 0x00005A8C 01 *Patch]
+\82Æ\82É\82©\82­\81A\96Ú\95W\82Æ\82µ\82Ä\82Í
+\82±\82Ì\81s\83X\83y\83\8b\83J\81[\83h\82Ì\8dU\97ª\81t\82ð
+\96Ú\8ew\82·\82Ì\82ª\82¢\82¢\82Æ\8ev\82¤\82í\81B
+[2A 0x00005BFC 01 *Patch]
+\83X\83y\83\8b\83J\81[\83h\82ð\8dU\97ª\82·\82é\82±\82Æ\82Å
+\90V\82µ\82¢\94­\8c©\82à\82 \82é\82©\82à\82µ\82ê\82È\82¢\82©\82ç\82Ë\81c\81B
+[2A 0x0000600C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x0000617C 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\81z\82Æ\82¢\82¤\82Ì\82Í\82Ë\81c\81c
+[2A 0x000062EC 01 *Patch]
+\81c\81c
+[2A 0x0000645C 01 *Patch]
+\90à\96¾\82·\82é\82Æ\92·\82­\82È\82é\82©\82ç
+\8fÚ\82µ\82­\82Í\8e©\95ª\82Å\92²\82×\82é\82±\82Æ\82Ë\81B
+[2A 0x000065CC 01 *Patch]
+\8aÈ\92P\82É\82¢\82¤\82Æ\81s\96¼\91O\82Ì\82Â\82¢\82½\93Á\8eê\82È\8dU\8c\82\81t
+\82Æ\82¢\82Á\82½\82Æ\82±\82ë\82Ë\81B
+[2A 0x0000673C 01 *Patch]
+\89æ\91\9c\82É\82 \82é\82æ\82¤\82É
+\91å\82«\82¢\95\8e\9a\82ª\82Î\82Î\81[\82ñ\82Æ\82Å\82é\82©\82ç
+\82Æ\82Ä\82à\82í\82©\82è\82â\82·\82¢\82í\82Ë\81B
+[2A 0x000068AC 01 *Patch]
+\81y\83X\83y\83\8b\83J\81[\83h\81z\82É\82Â\82¢\82Ä\82Í
+\8d¡\89ñ\82Í\82»\82¤\82¢\82¤\82à\82Ì\82Æ\8ev\82Á\82Ä\82¢\82ê\82Î
+\91å\8fä\95v\82¾\82Æ\8ev\82¤\82í\81B
+[2A 0x00006CBC 01 *Patch]
+\92e\82ð\94ð\82¯\82é\82±\82Æ\82É\82Â\82¢\82Ä
+\8cy\82¢\83A\83h\83o\83C\83X\82ð\82µ\82Ä\82 \82°\82é\82í\82Ë\81B
+[2A 0x00006E2C 01 *Patch]
+\82Æ\82Í\82¢\82Á\82Ä\82à
+\8e\84\82à\94ð\82¯\82é\82Ì\82Í\93¾\88Ó\82È\82Ù\82¤\82\82á\82È\82¢\82©\82ç
+\8f\89\95à\93I\82È\82±\82Æ\82Æ\8ev\82Á\82Ä\82¿\82å\82¤\82¾\82¢\81B
+[2A 0x00006F9C 01 *Patch]
+\92e\82É\82Í\82¢\82­\82Â\82©\8eí\97Þ\82ª\82 \82é\82Ì\82¾\82¯\82Ç
+\81y\8e©\8b@\91_\82¢\92e\81z\82Æ\82¢\82¤\82à\82Ì\82ª\82 \82é\82Ì\81B
+[2A 0x0000710C 01 *Patch]
+\82±\82Ì\92e\82Í\96¼\91O\82Ì\82Æ\82¨\82è\82Å\81A
+\89æ\91\9c\82Ì\82æ\82¤\82É\8e©\8b@\82É\8cü\82©\82Á\82Ä\82­\82é\82í\81B
+[2A 0x0000727C 01 *Patch]
+\92e\82ð\94ð\82¯\82é\82Æ\82¢\82¤\82Æ
+\89æ\96Ê\82ð\8f\8a\8b·\82µ\82Æ\93®\82«\89ñ\82é
+\83C\83\81\81[\83W\82ª\82 \82é\82Æ\8ev\82¤\82¯\82Ç\81c
+
+[2A 0x000073EC 01 *Patch]
+\82±\82¤\82¢\82Á\82½\81y\8e©\8b@\91_\82¢\92e\81z\82Ý\82½\82¢\82È\82à\82Ì\82Í
+\96Ú\95W\82ð\95Ï\82¦\82é\82±\82Æ\82ª\82È\82¢\82©\82ç
+\8f­\82µ\93®\82­\82¾\82¯\82Å\94ð\82¯\82é\82±\82Æ\82ª\82Å\82«\82é\82í\81B
+[2A 0x0000755C 01 *Patch]
+\8dÅ\8f¬\8cÀ\82Ì\93®\82«\82Å\94ð\82¯\82é\82±\82Æ\82Å
+\82»\82Ì\8cã\82É\8c\82\82½\82ê\82é\92e\82ª
+\89æ\96Ê\8fã\82É\8eU\82ç\82È\82­\82È\82é\8cø\89Ê\82à\82 \82é\82Ì\81B
+[2A 0x000076CC 01 *Patch]
+\8dÅ\8f\89\82Í\82±\82¤\82¢\82Á\82½\93®\82«\82ð\90S\82ª\82¯\82é\82Æ
+\8fã\92B\82·\82é\82©\82à\82µ\82ê\82È\82¢\82í\82Ë\81B
+[2A 0x00007ADC 01 *Patch]
+\81y\83O\83\8c\83C\83Y\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x00007C4C 01 *Patch]
+\81y\83O\83\8c\83C\83Y\81z\82Æ\82¢\82¤\82Ì\82Í\8aÈ\92P\82É\8c¾\82¤\82Æ
+\92e\82É\81u\82©\82·\82é\81v\82Æ\82¢\82¤\82±\82Æ\82æ\81B
+[2A 0x00007DBC 01 *Patch]
+\92e\82ð\82¬\82è\82¬\82è\82Å\94ð\82¯\82Ä\82©\82·\82é\82±\82Æ\82Í
+\8c\8b\8d\\93ï\82µ\82¢\82µ\81A\83\8a\83X\83N\82à\82 \82é\82¯\82Ç
+[2A 0x00007F2C 01 *Patch]
+\8c\8b\8aE\83Q\81[\83W\82ª\91½\8f­\89ñ\95\9c\82·\82é\82©\82ç
+\83\8a\83X\83N\82É\8c©\8d\87\82¤\82¾\82¯\82Ì\8cø\89Ê\82Í
+\82 \82é\82©\82à\82µ\82ê\82È\82¢\82í\82Ë\81B
+[2A 0x0000809C 01 *Patch]
+\8e©\8b@\82ð\91_\82Á\82Ä\82­\82é\92e\82Í
+\81s\83O\83\8c\83C\83Y\81t\82·\82é\82É\82Í
+\82¿\82å\82¤\82Ç\97Ç\82¢\82©\82ç
+[2A 0x0000820C 01 *Patch]
+\97û\8fK\82µ\82Ä\82Ý\82é\82Ì\82à\82¢\82¢\82Æ\8ev\82¤\82í\81B
+[2A 0x0000861C 01 *Patch]
+\81y\83\8c\81[\83g\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x0000878C 01 *Patch]
+\89æ\96Ê\82Ì\8d\8fã\82É
+\81y\83\8c\81[\83g\81z\82Æ\82¢\82¤\82à\82Ì\82ª\82 \82é\82í\81B
+[2A 0x000088FC 01 *Patch]
+\82±\82Ì\81y\83\8c\81[\83g\81z\82Í\81A\83X\83R\83A\82ª\89Á\8eZ\82³\82ê\82é\8e\9e\82É
+\8a|\82¯\82ç\82ê\82é\92l\82Ì\82±\82Æ\82æ\81B
+[2A 0x00008A6C 01 *Patch]
+\82±\82ñ\82È\90à\96¾\82¾\82Æ\82í\82©\82è\82É\82­\82¢\82¯\82Ç
+\82æ\82¤\82·\82é\82É\81A\82±\82Ì\81y\83\8c\81[\83g\81z\82Ì\92l\82ð
+\8d\82\82­\82·\82ê\82Î\8d\82\93¾\93_\82ª\91_\82¦\82é\81B
+[2A 0x00008BDC 01 *Patch]
+\82Æ\8dl\82¦\82Ä\82à\82ç\82Á\82Ä\82©\82Ü\82í\82È\82¢\82í\81B
+[2A 0x00008D4C 01 *Patch]
+\95\81\92Ê\82É\97V\82Ô\95ª\82É\8aÖ\8cW\82È\82¢\82©\82ç
+\82â\82è\82±\82ñ\82Å\82Ý\82æ\82¤\82Æ\8ev\82Á\82½\8e\9e\82¾\82¯
+\8bC\82É\82µ\82Ä\82Ý\82é\82Æ\82¢\82¢\82í\81B
+[2A 0x00008EBC 01 *Patch]
+\88ê\89\9e\81y\83\8c\81[\83g\81z\82ð\8fã\82°\82é\95û\96@\82ð
+\8b³\82¦\82Ä\82¨\82­\82í\82Ë\81B
+[2A 0x0000902C 01 *Patch]
+\81s\83O\83\8c\83C\83Y\81t\82Æ\81s\88Ú\93®\82ð\82µ\82È\82¢\81t
+\82±\82Ì\93ñ\82Â\82É\82È\82é\82í\81B
+[2A 0x0000919C 01 *Patch]
+\96³\91Ê\82È\93®\82«\82ð\82µ\82È\82¢\82æ\82¤\82É\82·\82é\82Æ
+\81y\83\8c\81[\83g\81z\82ª\8fã\8f¸\82·\82é\82Æ\82¢\82¤\82±\82Æ\82Ë\81B
+[2A 0x0000930C 01 *Patch]
+\82Æ\82Í\82¢\82¦\81A\82±\82ê\82ð\88Ó\8e¯\82·\82é\82Æ
+\8c\8b\8d\\92e\82É\93\96\82½\82Á\82Ä
+\97\8e\82¿\82Ä\82µ\82Ü\82¤\8bC\82ª\82·\82é\82©\82ç
+[2A 0x0000947C 01 *Patch]
+\8fã\8eè\82­\82È\82ç\82È\82¢\82¤\82¿\82Í
+\8dl\82¦\82È\82¢\95û\82ª\96³\93ï\82Ë\81B
+[2A 0x0000988C 01 *Patch]
+\81y\83{\83X\82Ì\82Æ\82Ç\82ß\83T\81[\83N\83\8b\81z\82É\82Â\82¢\82Ä\82Ë\81B
+[2A 0x000099FC 01 *Patch]
+\83\8a\83\8a\81[\82à\82»\82¤\82¾\82¯\82Ç
+\83{\83X\82Ì\82g\82o\82ª\82O\82É\82È\82é\82Æ
+\89~\8c`\82Ì\83T\81[\83N\83\8b\82ª\95\\8e¦\82³\82ê\82é\82í\81B
+[2A 0x00009B6C 01 *Patch]
+\83{\83X\82Ì\8fê\8d\87\82Í
+\83V\83\87\83b\83g\82Å\82g\82o\82ð\82O\82É\82µ\82½\8fu\8aÔ\82É\88ê\93x\82¾\82¯
+\8c\8b\8aE\83Q\81[\83W\82ª\96\9e\83^\83\93\82Ü\82Å\89ñ\95\9c\82·\82é\82í\81B
+[2A 0x00009CDC 01 *Patch]
+\82¾\82©\82ç\81A\83{\83X\82¾\82©\82ç\82Æ\82¢\82Á\82Ä
+\82Æ\82Ç\82ß\97p\82É\8c\8b\8aE\83Q\81[\83W\82ð\89·\91\82µ\82È\82¢\82Å
+\92e\96\8b\93n\82è\82ð\8eg\82Á\82½\95û\82ª\93¾\82È\82Ì\81B
+[2A 0x00009E4C 01 *Patch]
+\8aî\96{\93I\82É\92e\96\8b\93n\82è\82ð\8eg\82Á\82½\95û\82ª
+\82½\82­\82³\82ñ\82Ì\83_\83\81\81[\83W\82ð\83{\83X\82É\97^\82¦\82ç\82ê\82é\81B
+\82Æ\82¢\82¤\82±\82Æ\82ð\8ao\82¦\82Ä\82¨\82­\82±\82Æ\82Ë\81B
+[2A 0x00009FBC 01 *Patch]
+\83V\83\87\83b\83g\82¾\82¯\82Å\83o\83g\83\8b\82µ\82Ä\82¢\82é\82Æ
+\8c\8b\8d\\8bê\90í\82·\82é\82©\82ç\81c\81B
diff --git a/scripts/jp/SceStageMarisa.txt b/scripts/jp/SceStageMarisa.txt
new file mode 100644 (file)
index 0000000..1ffd911
--- /dev/null
@@ -0,0 +1,1555 @@
+[28 0x00000374 02 *Marisa]
+\81u\8dg\82Ì\8aÙ\82É\8fp\82ð\8d\82\82ß\82é\8bH\97L\82È\95ó\97L\82è\81v
+\81c\81c\82©
+[2A 0x00000524 02 *Marisa]
+\8d\81èÁ\82ª\82Ó\82Æ\98R\82ç\82µ\82½\82±\82Ì\8c¾\97t
+[2A 0x000006B8 02 *Marisa]
+\82±\82Ì\96\82\97\9d\8d¹\82³\82Ü\82ª
+\95·\82«\93¦\82·\82í\82¯\82ª\82È\82¢\81I
+[2A 0x0000084C 02 *Marisa]
+\91¬\8dU\81A\8bó\82ð\94ò\82Ñ\81A\90X\82ð\94²\82¯\81A\8dg\96\82\8aÙ\82Ö\81I
+[2A 0x000009E0 02 *Marisa]
+\81c\81c\81c\81c
+[2A 0x00000B74 02 *Marisa]
+\82Á\82Ä\82í\82¯\82È\82ñ\82¾\82¯\82Ç\81c\82È\82ñ\82¾\82æ\82±\82ê\81B
+\91O\82Ì\88Ù\95Ï\82Æ\93¯\82\8dg\82¢\96\81c\82¾\82æ\82È\81H
+[2A 0x00000D08 02 *Marisa]
+\82È\82ñ\82¾\82©\89¸\82â\82©\82\82á\82È\82¢\82È\81c
+\82¾\82©\82ç\82Á\82Ä\88ø\82«\95Ô\82·\8e\84\82\82á\82È\82¢\82¯\82Ç\82È\81I
+[2A 0x00000E9C 02 *Marisa]
+\82¨\95ó\82ð\93¦\82·\82í\82¯\82É\82Í\82¢\82©\82È\82¢\82º\81I\81I
+[2A 0x00001030 02 *Marisa]
+\81c\81c\81c\81c
+[2A 0x000011C4 02 *Marisa]
+\82¤\81[\82ñ\81A\97ì\96²\82É\89½\82©
+\97\8a\82Ü\82ê\82Ä\82½\82æ\81[\82È\8bC\82à\82·\82é\82¯\82Ç\81c
+[2A 0x00001358 02 *Marisa]
+\82È\82ñ\82¾\82Á\82¯\81c
+[28 0x000019BC 00 Marisa *Cirno]
+\82¿\82å\82¨\82¢\82Æ\91Ò\82¿\82È\81I
+[2A 0x00001BC4 00 *Marisa Cirno]
+\82È\82ñ\82¾\81H
+[2A 0x00001DB8 00 Marisa *Cirno]
+\82±\82Ì\82 \82½\82¢\82É\81A\82±\82±\82Å\89ï\82Á\82½\82ª\95S\94N\96Ú\81I
+\82à\82¤\82«\82Ì\82Ó\82Ú\82­\82¤\82Ç\82ñ\82°\82Ì\82Í\82È\81I
+[2A 0x00001FAC 00 *Marisa Cirno]
+\82Í\82 \81H\81H\81H
+[2A 0x000021A0 00 *Marisa Cirno]
+\82Ü\82½\82¨\91O\82©\81c\81B
+\81c\8e©\95ª\82Å\89½\8c¾\82Á\82Ä\82é\82©\82í\82©\82Á\82Ä\82ñ\82Ì\82©\81H
+[2A 0x00002394 00 Marisa *Cirno]
+\82Æ\81A\93\96\91R\82¾\82ë\82§\81I
+[2A 0x00002588 00 *Marisa Cirno]
+\82\82á\82 \90à\96¾\82µ\82Ä\82Ý\82ë\82æ
+[2A 0x0000277C 00 Marisa *Cirno]
+\81c\81c
+[2A 0x00002970 00 *Marisa Cirno]
+\82Í\82 \81c\82Á\82½\82­
+\82¨\91O\82Á\82Ä\8aú\91Ò\82ð\97 \90Ø\82ç\82È\82¢\82â\82Â\82¾\82È
+[2A 0x00002B64 00 Marisa *Cirno]
+\82 \81[\82Á\81A\8d¡\83o\83J\82É\82µ\82½\82¾\82ë\82§\81I
+[2A 0x00002D58 00 *Marisa Cirno]
+\82¨\82Á\81A\82»\82ê\82Í\82í\82©\82Á\82½\82ñ\82¾\81B
+\83`\83\8b\83m\82Í\82¨\97\98\8cû\82³\82ñ\82¾\82È\81[
+[2A 0x00002F4C 00 Marisa *Cirno]
+\82 \81A\93ª\82ð\95\8f\82Å\82é\82È\82 \81I
+[2A 0x00003140 00 *Marisa Cirno]
+\82¨\81A\8d¡\93x\82Í\93{\82Á\82½\82©\81I\81H
+\82 \82Í\82Í\81A\82¨\91O\82Í\96Ê\94\92\82¢\82È\81I
+[2A 0x00003334 00 Marisa *Cirno]
+\82Þ\81[\81[\81[\81[\81I
+[2A 0x00003528 00 *Marisa Cirno]
+\82·\82Ë\82é\82È\82æ
+[2A 0x0000371C 00 Marisa *Cirno]
+\82­\82Á\82»\82§\81I\81I
+[2A 0x00003910 00 Marisa *Cirno]
+\82¨\82Ü\82¦\82È\82ñ\82©
+\82¨\82Ü\82¦\82È\82ñ\82©\81c\81c
+[2A 0x00003B04 00 Marisa *Cirno]
+\83o\81[\83J\81I
+[2A 0x00003CF8 00 *Marisa Cirno]
+\88«\8cû\82­\82ç\82¢\82¿\82á\82ñ\82Æ
+\8c¾\82¦\82æ\82È\81c
+[2A 0x00003EEC 00 *Marisa Cirno]
+\82¢\82¢\82º\81A\91\8a\8eè\82É\82È\82Á\82Ä\82â\82é\81I
+[28 0x000045B0 00 *Marisa Cirno]
+\82â\82Á\82Ï\82¨\91O\82Á\82Ä\83o\83J\82¾\82È\82\9f\81c\81c
+[2A 0x000047B8 00 Marisa *Cirno]
+\82¤\81A\82¤\82é\82³\82¢\82¤\82é\82³\82¢\81I
+\8d¡\93ú\82Í\82¿\82å\82Á\82Æ\97V\82ñ\82Å\82â\82Á\82½\82¾\82¯\82¾\82æ\81I
+[2A 0x000049AC 00 *Marisa Cirno]
+\95\89\82¯\90É\82µ\82Ý\82©\82æ\81B\8c©\8bê\82µ\82¢\82¼
+[2A 0x00004BA0 00 Marisa *Cirno]
+\82 \82½\82¢\82Í\8dÅ\8b­\82Ì\97d\90¸\82È\82ñ\82¾\82©\82ç\81I
+[2A 0x00004D94 00 *Marisa Cirno]
+\92m\82Á\82Ä\82é\82æ\81B
+\82Ü\82½\97V\82ñ\82Å\82â\82é\82©\82ç\82³\81B\82¢\82Â\82Å\82à\82¢\82¢\82¼
+[2A 0x00004F88 00 Marisa *Cirno]
+\82¨\92f\82è\82¾\82æ\81I
+\82à\82¤\96\82\97\9d\8d¹\82Æ\97V\82ñ\82Å\82È\82ñ\82©\82â\82ç\82È\82¢\82©\82ç\81I
+[2A 0x0000517C 00 Marisa *Cirno]
+\82 \82½\82¢\82Í\96Z\82µ\82¢\82ñ\82¾\81I
+[2A 0x00005370 00 *Marisa Cirno]
+\96Z\82µ\82¢\82Á\82Ä\89½\82ª\81H
+[2A 0x00005564 00 Marisa *Cirno]
+\82»\81A\82»\82ê\82Í\81c\94é\96§\82¾\82æ\82Á\81I
+[2A 0x00005758 00 *Marisa Cirno]
+\94é\96§\82Á\82Ä\81A\82¨\91O\82à
+\92m\82ç\82È\82¢\82ñ\82\82á\82È\82¢\82¾\82ë\82¤\82È
+[2A 0x0000594C 00 Marisa *Cirno]
+\83M\81A\83M\83N\83b\81c
+[2A 0x00005B40 00 *Marisa Cirno]
+\82»\82ê\81A\82í\82©\82è\82â\82·\82·\82¬\82é\82¾\82ë\81c
+\82¢\82­\82ç\90}\90¯\82¾\82©\82ç\82Á\82Ä
+[2A 0x00005D34 00 *Marisa Cirno]
+\83M\83N\83b
+\82Æ\82©\8c¾\82¤\82©\81A\82Ó\82Â\81[
+[2A 0x00005F28 00 Marisa *Cirno]
+\82 \81A\82 \82½\82¢\82Í\82Ó\82Â\81[\82\82á\82È\82­\82Ä
+\8dÅ\8b­\82Ì\97d\90¸\82¾\82©\82ç
+[2A 0x0000611C 00 Marisa *Cirno]
+\8c¾\82¤\8e\9e\82Í\8c¾\82¤\82ñ\82¾\81I
+[2A 0x00006310 00 Marisa *Cirno]
+\82\82á\82 \81A\96Z\82µ\82¢\82©\82ç\8ds\82­\82æ\82Á\81I
+\82Ü\82½\82Ë\81I
+[2A 0x00006504 00 Marisa *Cirno]
+\81c\81c
+[2A 0x000066F8 00 Marisa *Cirno]
+\90_\8eÐ\82É\97V\82Ñ\82É\8ds\82­\82©\82ç\82Ë\81I
+[2A 0x000068EC 00 Marisa *Cirno]
+\81c\81c
+[2A 0x00006AE0 00 Marisa *Cirno]
+\8ds\82Á\82Ä\82à\82¢\82¢\82æ\82Ë\82Á\81I\81H
+[2A 0x00006CD4 00 *Marisa Cirno]
+\82»\82ê\82Í\82¢\82¢\82ñ\82¾\82ª\81c
+[2A 0x00006EC8 00 Marisa *Cirno]
+\82Ù\82Á\81c\82æ\82©\82Á\82½\82\9f\81c
+\82\82á\82 \8ds\82­\82©\82ç\81I
+[2A 0x000070BC 00 Marisa *Cirno]
+\96Z\82µ\82¢\96Z\82µ\82¢\81c
+[2A 0x0000737C 02 *Marisa]
+\82Á\82Ä\82¨\82¢\81I
+[2A 0x00007510 02 *Marisa]
+\81c\8ds\82Á\82¿\82á\82Á\82½\82È
+[2A 0x000076A4 02 *Marisa]
+\82È\82ñ\82È\82ñ\82¾\82 \82¢\82Â\82Í\81c
+\89½\82©\89B\82µ\82Ä\82é\82Ý\82½\82¢\82¾\82Á\82½\82ª\81c
+[2A 0x00007838 02 *Marisa]
+\82Ü\81A\82¢\82¢\82©\81I
+\90Ø\82è\91Ö\82¦\90Ø\82è\91Ö\82¦
+[2A 0x000079CC 02 *Marisa]
+\82±\82Ì\90æ\82É\82Í
+\82¨\95ó\82ª\91Ò\82Á\82Ä\82¢\82é\82ñ\82¾\82µ\82È\81I
+[28 0x00007FAC 00 Marisa *Cirno]
+\82¿\82å\82Á\82Æ\82¿\82å\82Á\82Æ\81I
+[2A 0x000081B4 00 Marisa *Cirno]
+\95s\88Ó\91Å\82¿\82È\82ñ\82Ä\94Ú\8b¯\82\82á\82ñ\81I
+[2A 0x000083A8 00 *Marisa Cirno]
+\82È\82ñ\82Å\82¾\81H
+\82±\82ê\82Í\90í\82¢\82È\82ñ\82¾\82º
+[2A 0x0000859C 00 Marisa *Cirno]
+\82®\82Ê\82Ê\82Ê\82Ê\82Ê\82Ê\81c
+[2A 0x00008790 00 *Marisa Cirno]
+\82³\82 \81A\91±\82«\82ð\82Í\82\82ß\82æ\82¤\82º
+[2A 0x00008984 00 Marisa *Cirno]
+\82à\82¤\93{\82Á\82½\82¼\81I
+\8b\83\82¢\82Ä\82à\92m\82ç\82È\82¢\82ñ\82¾\82©\82ç\82È\81I
+[28 0x00009048 02 *Marisa]
+\8eñ\94ö\82æ\82­\90ö\93ü\90¬\8c÷\81I
+\8ay\8f\9f\8ay\8f\9f\81ô
+[2A 0x000091F8 02 *Marisa]
+\82Ü\82Á\82½\82­\94ü\97é\82Í
+\82¿\82á\82ñ\82Æ\8ed\8e\96\82µ\82ë\82Á\82Ä\82Ì\81I
+[2A 0x0000938C 02 *Marisa]
+\82Æ\82Í\82¢\82¤\82à\82Ì\82Ì\81c\82±\82±\82Ç\82±\82¾\82æ\81I\81H
+[2A 0x00009520 02 *Marisa]
+\94\96\8bC\96¡\88«\82¢\82Æ\82±\82¾\82º\81B
+\82Ü\82³\82©\8dç\96é\82Ì\8ed\8bÆ\82©\81H
+[28 0x00009B84 02 *Marisa]
+\82Í\82 \81[\81B
+\82±\82ñ\82È\82Æ\82±\82É\82¨\95ó\82ª\82 \82é\82Æ\8ev\82¦\82È\82¢\82ª\81c
+[2A 0x00009D34 02 *Marisa]
+\82µ\82å\82¤\82ª\82È\82¢
+\88ê\89\9e\92T\82µ\82Ä\82¨\82­\82©\81c
+[2A 0x00009EC8 02 *Marisa]
+\82â\82ê\82â\82ê\81c
+\81c\81c
+[2A 0x0000A05C 02 *Marisa]
+\82Á\82Ä\81A\82È\82¢\82È\82 \81[
+\82 \82é\82í\82¯\82È\82¢\82æ\82È\82 
+[28 0x0000A214 02 *Sanae]
+\82»\82±\81A\83_\83\81\82Å\82·\82æ\81I
+[2A 0x0000A3C4 00 *Marisa Sanae]
+\82Ç\82«\81[\82ñ\81I
+[2A 0x0000A5B8 00 Marisa *Sanae]
+\8d¡\95Ð\95t\82¯\82½\82Æ\82±\82ë\82È\82ñ\82Å\82·\82©\82ç
+\90G\82ç\82È\82¢\82Å\89º\82³\82¢\81I
+[2A 0x0000A7AC 00 Marisa *Sanae]
+\82 \82Æ\81A\8d¡\81u\82Ç\82«\81[\82ñ\81v\82Á\82Ä
+\90S\82Ì\90º\82ð\8cû\82É\8fo\82µ\82Ü\82µ\82½\82Ë
+[2A 0x0000A9A0 00 *Marisa Sanae]
+\82¢\81A\82¢\82¢\82¾\82ë\82»\82ñ\82È\82±\82Æ\81I
+[2A 0x0000AB94 00 *Marisa Sanae]
+\91\81\95c\81c\82¨\91O
+\82È\82ñ\82Å\82±\82±\82É\82¢\82é\82ñ\82¾\81H
+[2A 0x0000AD88 00 Marisa *Sanae]
+\8cÄ\82Î\82ê\82Ä\97\88\82Ä\82Ý\82½\82ç
+\82±\82Ì\97L\97l\82¾\82Á\82½\82Ì
+[2A 0x0000AF7C 00 Marisa *Sanae]
+\82»\82ê\82Å\8e\84\81c
+\82â\82Á\82Æ\82±\82±\82Ü\82ÅãY\97í\82É\82µ\82½\82ñ\82Å\82·\82æ\81H
+[2A 0x0000B170 00 Marisa *Sanae]
+\8bM\95û\82Í\81A\82Ü\82½\8eU\82ç\82©\82·\8bC\81H
+[2A 0x0000B364 00 *Marisa Sanae]
+\82¢\81A\82¢\82â\82»\82¤\82¢\82¤\82í\82¯\82\82á\82È\82¢\82¯\82Ç\82³\81B
+\82¿\82å\82Á\82Æ\92T\82µ\82à\82Ì\82µ\82Ä\82Ä\81c
+[2A 0x0000B558 00 Marisa *Sanae]
+\82Ü\82Á\82½\82­\81I
+\83E\83`\82Æ\82¢\82¢\81A\82±\82±\82Æ\82¢\82¢\81I
+[2A 0x0000B74C 00 Marisa *Sanae]
+\8aF\81A\91|\8f\9c\82·\82é\90l\82Ì\82±\82Æ
+\82º\82ñ\82º\82ñ\8dl\82¦\82Ä\82È\82¢\82ñ\82¾\82©\82ç\81I
+[2A 0x0000B940 00 *Marisa Sanae]
+\92N\82Ì\98b\82µ\82Ä\82ñ\82¾\82æ\81c\81B
+\82»\82ê\82æ\82è\91|\8f\9c\82Á\82Ä\82¨\91O\81c
+[2A 0x0000BB34 00 *Marisa Sanae]
+\8eU\82ç\82©\82Á\82Ä\82é\82Á\82Ä\82¢\82¤
+\83\8c\83x\83\8b\82\82á\82Ë\82¦\82¾\82ë\81I\81H
+[2A 0x0000BD28 00 *Marisa Sanae]
+\8fd\97Í\82Æ\82©\8aµ\90«\82Æ\82©
+\91S\95\94\96³\8e\8b\82µ\82Ä\82é\82¼\81A\82±\82±\81I\81H
+[2A 0x0000BF1C 00 Marisa *Sanae]
+\82¿\82å\82Á\82Æ\8ay\82µ\82»\82¤\82Ë\81c
+[2A 0x0000C110 00 *Marisa Sanae]
+\82»\82Á\81A\82»\82©\81H
+\82¿\82å\82Á\82Æ\95Ï\82í\82Á\82½\8fê\8f\8a\82¾\82È\81[\82Æ\82©
+[2A 0x0000C304 00 *Marisa Sanae]
+\8ev\82Á\82Ä\82Ý\82½\82è\82Í\82µ\82Ä\82é\82¯\82Ç
+[2A 0x0000C4F8 00 Marisa *Sanae]
+\82Í\82Á\81I\81@\82Ü\82³\82©\81c
+[2A 0x0000C6EC 00 Marisa *Sanae]
+\82â\82Á\82Ï\82è\8bM\95û
+\82±\82±\82ð\82à\82Á\82Æ\8eU\82ç\82©\82·\82Â\82à\82è\81I\81H
+[2A 0x0000C8E0 00 *Marisa Sanae]
+\82³\82·\82ª\82Ì\8e\84\82Å\82à
+\82±\82ê\88È\8fã\82Í\8eU\82ç\82©\82¹\82Ë\81[\82æ\81I\81I
+[2A 0x0000CAD4 00 *Marisa Sanae]
+\82¾\82©\82ç\8c¾\82Á\82½\82ë\81I\81H
+\92T\82µ\95¨\82µ\82Ä\82é\82¾\82¯\82¾\82Á\82Ä\81I
+[2A 0x0000CCC8 00 Marisa *Sanae]
+\82«\82¿\82ñ\82Æ\95Ð\82Ã\82¯\82È\82¢\82©\82ç
+\82¢\82´\82Æ\82¢\82¤\82Æ\82«\96³\82­\82µ\95¨\82ð\82·\82é\82ñ\82Å\82·\82æ\81I
+[2A 0x0000CEBC 00 *Marisa Sanae]
+\82¨\81A\82¨\90à\8b³\82©\82æ\81I
+\82¢\82Â\82à\82Í\82«\82¿\82ñ\82ÆãY\97í\82É\82µ\82Ä\82é\82æ\82Á\81I
+[2A 0x0000D0B0 00 Marisa *Sanae]
+\82Ù\82ñ\82Æ\82Å\82·\82©\81H
+[2A 0x0000D2A4 00 *Marisa Sanae]
+\98I\8d\9c\82É\8b^\82Á\82Ä\82é\81c\81I\81I
+[2A 0x0000D498 00 Marisa *Sanae]
+\8d¡\93ú\82Í\82±\82Ì\8cã\97¿\97\9d\82à\82 \82è\82Ü\82·\82©\82ç
+\8e\84\96Z\82µ\82¢\82ñ\82Å\82·
+[2A 0x0000D68C 00 Marisa *Sanae]
+\8eè\93`\82¢\82Ü\82·\82©\82ç
+\82³\82Á\82³\82Æ\8c©\82Â\82¯\82¿\82á\82¢\82Ü\82µ\82å\82¤
+[2A 0x0000D880 00 *Marisa Sanae]
+\82¿\82Á\81c\82±\82ñ\82È\82¨\90ß\89î\82ª\82Â\82¢\82Ä\82«\82½\82ç
+\82¨\95ó\92T\82µ\82Ç\82±\82ë\82\82á\82È\82¢\82º\81c
+[2A 0x0000DA74 00 *Marisa Sanae]
+\88«\82¢\82¯\82Ç\81c
+\82±\82±\82Í\8b­\8ds\93Ë\94j\82³\82¹\82Ä\82à\82ç\82¤\82º\81I
+[2A 0x0000DC68 00 Marisa *Sanae]
+\82¦\81I\81H\81@\82¿\82å\81A\82¿\82å\82Á\82Æ\81c\81I
+\82¢\82«\82È\82è\81c\82Ç\82¤\82¢\82¤\82Â\82à\82è\82Å\82·\82©\81I\81H
+[2A 0x0000DE5C 00 *Marisa Sanae]
+\82Ç\81[\82à\82±\81[\82à\82È\82¢\82º\81I
+\82·\82×\82Ä\82Í\8b­\82­\82È\82é\82½\82ß\82¾\81I
+[2A 0x0000E050 00 Marisa *Sanae]
+\88Ó\96¡\95s\96¾\82Å\82·\81I
+[2A 0x0000E244 00 Marisa *Sanae]
+\90í\82¢\82Å\82à\82Á\82Æ\8eU\82ç\82©\82µ\82¿\82á\82Á\82Ä\82à
+\82»\82Ì\90Ó\94C\82Í
+[2A 0x0000E438 00 Marisa *Sanae]
+\82Æ\82Á\82Ä\82à\82ç\82¢\82Ü\82·\82©\82ç\82Ë\81I
+[28 0x0000EAFC 00 Marisa *Sanae]
+\82¹\82Á\82©\82­\81A\82¹\82Á\82©\82­ãY\97í\82É\82µ\82½\82Ì\82É\81I
+\82à\82¤\82Á\96Å\92\83\8bê\92\83\82Å\82·\81I
+[2A 0x0000ED04 00 *Marisa Sanae]
+\88«\82¢\82¯\82Ç\81A\8e\84\82Ì\8f\9f\82¿\82¾\81B
+\97Í\82Ì\8d·\82¾\82È\81ô
+[2A 0x0000EEF8 00 Marisa *Sanae]
+\8d¡\93ú\82Í\91f\93G\82È\88ê\93ú\82É\82È\82é\82Á\82Ä
+\8dç\96é\82³\82ñ\82à\82 \82ñ\82È\82É\82Í\82è\82«\82Á\82Ä
+[2A 0x0000F0EC 00 Marisa *Sanae]
+\8e\84\82à\97¿\97\9d\82Ì\8eè\93`\82¢\82·\82é\82Á\82Ä
+\97p\88Ó\82µ\82Ä\82¢\82½\82Ì\82É\81c
+[2A 0x0000F2E0 00 *Marisa Sanae]
+\82¨\91O\81c\82¦\82Á\81H
+\8b\83\82¢\82Ä\82ñ\82Ì\82©\81I\81H
+[2A 0x0000F4D4 00 Marisa *Sanae]
+\82¢\82¢\82¦\81I
+[2A 0x0000F6C8 00 *Marisa Sanae]
+\82¢\82\82¯\82Ä\82ñ\82Ì\82©\81H
+[2A 0x0000F8BC 00 Marisa *Sanae]
+\82¢\82\82¯\82Ä\82È\82Ç\82¢\82Ü\82¹\82ñ
+[2A 0x0000FAB0 00 Marisa *Sanae]
+\83n\83\89\83\8f\83^\82ª\8cy\81[\82­
+\8eÏ\82¦\82­\82è\95Ô\82Á\82Ä\82¢\82é\82¾\82¯\82Å\82·
+[2A 0x0000FCA4 00 *Marisa Sanae]
+\82Ó\82Â\81[\82Í\8cy\81[\82­\8eÏ\82¦\82­\82è\95Ô\82é\82à\82Ì
+\82\82á\82È\82¢\82¾\82ë\81I\81H
+[2A 0x0000FE98 00 *Marisa Sanae]
+\88«\82©\82Á\82½\82æ\81B
+\81c\82Å\82à\82±\82ê\82Î\82Á\82©\82Í\8f÷\82ê\82È\82­\82Á\82Ä\82³
+[2A 0x0001008C 00 Marisa *Sanae]
+\8fo\82Ä\82Á\82Ä\89º\82³\82¢\81I
+[2A 0x00010280 00 *Marisa Sanae]
+\82²\81A\82²\82ß\82ñ\82Á\82Ä\81I
+[2A 0x00010474 00 Marisa *Sanae]
+\88ê\82©\82ç\91|\8f\9c\82Ì\82â\82è\92¼\82µ\82Å\82·\81B
+\82à\82¤\82±\82ê\88È\8fã\90â\91Î\8e×\96\82\82µ\82È\82¢\82Å\89º\82³\82¢\81I
+[2A 0x00010668 00 *Marisa Sanae]
+\82í\82©\82Á\82½\82æ\81A\8eÓ\82Á\82Ä\82é\82¾\82ë\81I
+[2A 0x0001085C 00 Marisa *Sanae]
+\82Ü\82½\8cã\82Å\81I
+\82²\82«\82°\82ñ\82æ\82¤\81I
+[2A 0x00010B1C 00 *Marisa Sanae]
+\93{\82è\82È\82ª\82ç
+\8ds\82Á\82¿\82á\82Á\82½\82©\81c
+[2A 0x00010D10 00 *Marisa Sanae]
+\82µ\82Á\82©\82µ\81A\91\81\95c\82Ì\82â\82Â\89½\82Í\82è\82«\82Á\82Ä\82ñ\82¾\81H
+[2A 0x00010F04 00 *Marisa Sanae]
+\82à\82Æ\82à\82Æ\82¨\82©\82µ\82È\93z\82ç\82¾\82¯\82Ç
+\82±\82±\82ñ\82Æ\82±\82ë\82Ý\82ñ\82È\82¨\82©\82µ\82­\82È\82¢\82©\81c\81H
+[28 0x00011544 02 *Marisa]
+\82¨\95ó\82Æ\82¢\82¦\82Î\81c
+[2A 0x000116F4 02 *Marisa]
+\82â\82Á\82Ï\82è\82±\82±\81c\82¾\82æ\82È\81I
+[2A 0x00011888 02 *Marisa]
+\82 \82¢\82Â\82ª\8bN\82«\82Ä\82­\82é\91O\82É
+\82Æ\82Á\82Æ\82Æ\92T\82³\82¹\82Ä\82à\82ç\82¨\82Á\82Æ\81I
+[2A 0x00011A1C 02 *Marisa]
+\82¤\81[\82ñ\81c
+\82È\82ñ\82©\96Y\82ê\82Ä\82é\82æ\82¤\82È\8bC\82ª\82·\82é\82¯\82Ç
+[2A 0x00011BB0 02 *Marisa]
+\97ì\96²\82É
+\8aÖ\8cW\82 \82Á\82½\82æ\82¤\82È\8bC\82à\82·\82é\82¯\82Ç\81c
+[2A 0x00011D44 02 *Marisa]
+\82Ü\81A\82¢\82Á\82©\81I
+\8ev\82¢\82¾\82µ\82Ä\82©\82ç\8dl\82¦\82æ\82Á\82Æ
+[28 0x000123A8 02 *Marisa]
+\82»\82ê\82É\82µ\82Ä\82à\89A\8bC\82È\8fê\8f\8a\82¾\82È\81c
+[2A 0x00012558 02 *Marisa]
+\82¢\82Â\97\88\82½\82Á\82Ä\8bC\82ª\96Å\93ü\82é\81c
+[2A 0x000126EC 02 *Marisa]
+\82Å\82à\82¨\95ó\82ª\82 \82é\82©\82ç
+\8dK\82¹\82È\82ñ\82¾\82¯\82Ç\82È\82Á\81I
+[2A 0x00012880 02 *Marisa]
+
+[2A 0x00012A6C 00 *Marisa Patch]
+\91\8a\95Ï\82í\82ç\82¸\94\96\88Ã\82¢\82Æ\82±\82Åå¿\82¢\82Ä\82ñ\82¾\82È
+[2A 0x00012C60 00 Marisa *Patch]
+\82¸\82¢\82Ô\82ñ\82È\8c¾\97t\82Ë\81c\81B
+\8bM\95û\82±\82»\82¢\82Â\82à\82±\82»\82±\82»\92p\82¸\82©\82µ\82­\82È\82¢\81H
+[2A 0x00012E54 00 *Marisa Patch]
+\91S\91R\81I\81@\82¨\91O\82Í\82¢\82Â\82à\82¨\8c©\92Ê\82µ\82¾\82ë\81H
+\8e\84\82ª\89½\82â\82Á\82Ä\82ñ\82Ì\82©\82®\82ç\82¢\82³
+[2A 0x00013048 00 Marisa *Patch]
+\82à\82¿\82ë\82ñ\82æ
+\81c\8dD\82«\8f\9f\8eè\82Í\82³\82¹\82È\82¢
+[2A 0x0001323C 00 *Marisa Patch]
+\82³\82 \81A\82Ç\82¤\82¾\82ë\81[\82È\81c\81B
+\8e~\82ß\82ç\82ê\82é\82à\82ñ\82È\82ç\82â\82Á\82Ä\82Ý\82ë
+[2A 0x00013430 00 Marisa *Patch]
+\8d¡\82Ü\82Å\81c\8f­\82µ\8a°\97e\82·\82¬\82½\82Ì\82©\82µ\82ç\81H
+\8e\84\82Í\8eq\82Ç\82à\82É\82Í\97D\82µ\82¢\82Ù\82¤\82¾\82©\82ç\81c
+[2A 0x00013624 00 *Marisa Patch]
+\82¨\8eq\97l\88µ\82¢\82©\82æ
+[2A 0x00013818 00 Marisa *Patch]
+\82»\82ë\82»\82ë\81c\82«\82¿\82ñ\82Æ
+ç^\82¯\82Ä\82 \82°\82È\82¢\82Æ\82¢\82¯\82È\82¢\82æ\82¤\82Ë
+[28 0x00013EDC 00 *Marisa Patch]
+\8eq\82Ç\82à\82Í\95|\82¢\82º\81B
+\91å\90l\82Ì\97\9d\8bü\82Í\92Ê\82ç\82È\82¢\82©\82ç\82È
+[2A 0x000140E4 00 Marisa *Patch]
+\96Y\82ê\82Ä\82½\82í\81c
+\8bð\82©\82³\82Í\97\\91ª\82ð\92´\82¦\82é\8b­\93G\82¾\82Á\82Ä\82±\82Æ
+[2A 0x000142D8 00 *Marisa Patch]
+\82·\82ñ\82²\82¢\8c\99\96¡\82¾\82È\82¨\82¢\81c
+[2A 0x000144CC 00 Marisa *Patch]
+\81c\82»\82ê\82Å\81H
+\8bM\95û\82Ì\8cä\8f\8a\96]\82Ì\82à\82Ì\82Í\89½\81H
+[2A 0x000146C0 00 *Marisa Patch]
+\96\82\8fp\82ð\8d\82\82ß\82é\82¨\95ó\82¾\81I
+[2A 0x000148B4 00 Marisa *Patch]
+\82»\82ê\82Á\82Ä\81c
+\82Ç\82ñ\82È\82à\82Ì\82È\82Ì\81H
+[2A 0x00014AA8 00 *Marisa Patch]
+\82Ç\82ñ\82È\81c\81c\82Ç\82ñ\82È\81H
+\82Ç\82ñ\82È\82¨\95ó\82È\82ñ\82¾\82Á\82¯\81H
+[2A 0x00014C9C 00 Marisa *Patch]
+\92²\82×\82Ä\82È\82¢\82Ì\81H
+\81c\96{\93\96\82É\8eq\82Ç\82à\82Á\82Ä\95|\82¢\81c
+[2A 0x00014E90 00 *Marisa Patch]
+\82Ü\82 \81c\82»\82Ì\81c\82È\82ñ\82¾\81A
+\8eá\82³\82ä\82¦\82Ì\89ß\82¿\81A\82©\82È
+[2A 0x00015084 00 Marisa *Patch]
+\81c\8eq\82Ç\82à\82¾\82Á\82Ä\94F\82ß\82¿\82á\82¤\82í\82¯\82Ë
+[2A 0x00015278 00 *Marisa Patch]
+\82»\82ê\82æ\82è\81A\82¨\91O\82È\82ñ\82©\92m\82Á\82Ä\82é\82ñ\82¾\82ë\81H
+\82¨\95ó\82à\81A\8d¡\93ú\82Ì\8dg\82¢\96\82Ì\82±\82Æ\82à\82³
+[2A 0x0001546C 00 Marisa *Patch]
+\92m\82Á\82Ä\82Ä\82à\8b³\82¦\82Ä\82 \82°\82È\82¢\81B
+\82»\82ê\82É\81c
+[2A 0x00015660 00 Marisa *Patch]
+\82±\82±\82É\82Ç\82ñ\82È\83A\83C\83e\83\80\82ª\82 \82é\82©
+[2A 0x00015854 00 Marisa *Patch]
+\8bM\95û\82Í\82à\82¤\8f\\95ª\92T\82µ\90s\82­\82µ\82Ä
+\8e¯\82Á\82Ä\82é\82Å\82µ\82å\81H
+[2A 0x00015A48 00 *Marisa Patch]
+\82Ü\81A\82»\82è\82á\82»\82¤\82¾\82¯\82Ç\81c
+[2A 0x00015C3C 00 *Marisa Patch]
+\8b³\82¦\82Ä\82­\82ê\82½\82Á\82Ä\82¢\82¢\82¾\82ë
+\82±\82Ì\82Ç\83P\83`
+[2A 0x00015E30 00 Marisa *Patch]
+\82à\82¤\82¢\82¢\82©\82µ\82ç\81H
+\93Ç\8f\91\82ð\91±\82¯\82½\82¢\82Ì\82¾\82¯\82Ç
+[2A 0x00016024 00 *Marisa Patch]
+\82 \82 \81B\82í\82©\82Á\82½\82æ\81B
+\8e×\96\82\82µ\82½\82º\81B\82\82á\82 \82Ü\82½\82È\81I
+[2A 0x000162E4 02 *Patch]
+\81c\82Ü\82½\81c\8fµ\82­\82Â\82à\82è\82Í\82È\82¢\82ñ\82¾\82¯\82Ç
+[2A 0x00016478 02 *Patch]
+\82Ó\82¤\81c
+\82«\82Á\82Æ\82Ü\82½\97\88\82é\82ñ\82Å\82µ\82å\82¤\82Ë\81c
+[28 0x00016A58 02 *Marisa]
+\82¨\95ó\82¨\95ó\81c
+[2A 0x00016C08 02 *Marisa]
+\82È\82Á\82©\82È\82©\8c©\82Â\82©\82ñ\82È\82¢\82æ\82È\81[
+[2A 0x00016D9C 02 *Marisa]
+\83p\83`\83\85\83\8a\81[\82ñ\82Æ\82±\82É\82È\82¢\82Æ\82·\82é\82Æ
+\88ê\91Ì\82Ç\82±\82É\89B\82³\82ê\82Ä\82é\82ñ\82¾\81H
+[2A 0x00016F30 02 *Marisa]
+\82¢\82â\82¢\82â\82»\82Ì\91O\82É\81c
+[2A 0x000170C4 02 *Marisa]
+\82Ç\82ñ\82È\82¨\95ó\82È\82ñ\82¾\82ë\81c
+[28 0x00017728 02 *Marisa]
+\82Ç\81[\82·\82è\82á\82¢\82¢\82ñ\82¾\81c
+[2A 0x000178D8 02 *Marisa]
+\82»\82à\82»\82à\8c`\82Ì\82í\82©\82ç\82È\82¢\82à\82Ì
+\82Ç\82¤\82â\82Á\82Ä\8c©\82Â\82¯\82é\82ñ\82¾\81I\81H
+[2A 0x00017A6C 02 *Marisa]
+l
+[2A 0x00017C7C 00 *Marisa Nitori]
+\82»\82¤\82©\82à\82È\81B
+\83X\83s\81[\83h\82ð\8fd\8e\8b\82µ\82Ä\8am\94F\82ð\91Ó\82Á\82½\82©\82à
+[2A 0x00017E70 00 Marisa *Nitori]
+\83|\83W\82È\81u\82¾\82ë\82¤\81v\82\82á\82È\82­\82Ä\81A
+\83l\83K\82È\81u\82©\82à\82µ\82ê\82È\82¢\81v\82Å\82â\82ç\82È\82¢\82Æ\81I
+[2A 0x00018064 00 *Marisa Nitori]
+\82Á\82Ä\82©\8aî\96{
+\83|\83W\83e\83B\83u\82È\90«\8ai\82¾\82©\82ç\82È\82\9f\81c
+[2A 0x00018258 00 *Marisa Nitori]
+\82Á\82Ä\82¨\91O\81I
+\93Æ\82è\8c¾\82É\8eQ\89Á\82µ\82Ä\82­\82é\82È\81I
+[2A 0x0001844C 00 Marisa *Nitori]
+\82³\82Á\82·\82ª\96¿\97F\81I
+\8fæ\82è\83c\83b\83R\83~\82à\8fã\8eè\82¾\82Ë\82¥\81I
+[2A 0x00018640 00 *Marisa Nitori]
+\82É\82Æ\82è\81c\81c\81I
+\82¨\91O\82Ü\82Å\89½\82Å\82±\82±\82É\82¢\82é\82ñ\82¾\82æ\81I\81H
+[2A 0x00018834 00 Marisa *Nitori]
+\82«\82ã\82¤\82è\81B
+\82¢\82Á\82Ï\82¢\96á\82Á\82¿\82á\82Á\82½
+[2A 0x00018A28 00 Marisa *Nitori]
+\90H\82×\82é\81H
+[2A 0x00018C1C 00 *Marisa Nitori]
+\81c\89\93\97\82µ\82Æ\82­\81B
+\82 \82Æ\81A\8e¿\96â\82É\8e¿\96â\82Å\93\9a\82¦\82é\82È
+[2A 0x00018E10 00 Marisa *Nitori]
+\94ü\96¡\82µ\82¢\82Ì\82É\82¡\81B
+\82 \82Æ\81A\8d¡\93ú\82Í\96Ê\94\92\82¢\82±\82Æ\82 \82é\82ç\82µ\82¢\82¼
+[2A 0x00019004 00 Marisa *Nitori]
+\82«\82ã\82¤\82è\82à\82 \82é\82©\82ç
+\82Á\82Ä\8c¾\82í\82ê\82Ä\97\88\82½\82ñ\82¾
+[2A 0x000191F8 00 Marisa *Nitori]
+\82Å\82à\83R\83R\82É\95Â\82\8d\9e\82ß\82ç\82ê\82¿\82á\82Á\82Ä\82³\81B
+\82à\82µ\82©\82µ\82Ä\96¿\97F\82à\82»\82¤\82©\81I\81H
+[2A 0x000193EC 00 *Marisa Nitori]
+\82«\82ã\82¤\82è\82É\92Þ\82ç\82ê\82ñ\82Ì\82Í\82¨\91O
+\82¾\81E\82¯\81E\82¾\81I
+[2A 0x000195E0 00 *Marisa Nitori]
+\82Å\81A\96Ê\94\92\82¢\82±\82Æ\82Á\82Ä\82Ì\82Í\89½\82¾\81I\81H
+[2A 0x000197D4 00 *Marisa Nitori]
+\82±\82Ì\8dg\82¢\96\82Ì\88Ù\95Ï\82Ì\82±\82Æ\82©\81H
+\82»\82ê\82Æ\82à\81c\82¨\95ó\82Ì\82±\82Æ\82©\81H
+[2A 0x000199C8 00 Marisa *Nitori]
+\82Þ\82®\82Þ\82®\82Þ\82®\81c\82¨\95ó\81H
+[2A 0x00019BBC 00 *Marisa Nitori]
+\82 \82Á\81I\81@\82³\82Ä\82Í\82Á
+\82à\82µ\82©\82µ\82Ä\81c\82¨\91O\82Ì\94­\96¾\82©\81I\81H
+[2A 0x00019DB0 00 *Marisa Nitori]
+\82¨\95ó\82Á\82Ä\82¨\91O\82Ì\94­\96¾\82µ\82½\89½\82©\82È\82Ì\82©\81I\81H
+[2A 0x00019FA4 00 Marisa *Nitori]
+\82Þ\82®\82Þ\82®\82Þ\82®\81c\81H
+[2A 0x0001A198 00 *Marisa Nitori]
+\90H\82Á\82Ä\82ñ\82È\82æ\81I
+[2A 0x0001A38C 00 Marisa *Nitori]
+\82Þ\82®\82Þ\82®\81c
+\8e\84\82Ì\8bó\91O\82Ì\91å\94­\96¾\82ª\89½\82©\82È\81H
+[2A 0x0001A580 00 *Marisa Nitori]
+\82â\82Á\82Ï\82»\82¤\82È\82Ì\82©\81I\81H
+\82¾\82Á\82½\82ç\81c\82»\82ê\82Í\82¢\82½\82¾\82¢\82Ä\82­\82º\81I\81I
+[2A 0x0001A774 00 Marisa *Nitori]
+\82í\81A\82í\82í\82í\81c
+\89½\82ð\82·\82é\8bC\82¾\82Á\96¿\97F\81I
+[2A 0x0001A968 00 *Marisa Nitori]
+\96â\93\9a\96³\97p\81I\81I\81@\82æ\82±\82µ\82â\82ª\82ê\81I\81I
+[2A 0x0001AB5C 00 Marisa *Nitori]
+\82à\82¤\93{\82Á\82½\82ñ\82¾\82©\82ç\82È\81I
+[2A 0x0001AD50 00 Marisa *Nitori]
+\8e\84\82Ì\94­\96¾\82ð\93\90\82à\82¤\82È\82ñ\82Ä\81I
+\82à\82²\82²\82Á\81I
+[2A 0x0001AF44 00 Marisa *Nitori]
+\82º\81[\82Á\82½\82¢\82É\8b\96\82³\82È\82¢\82¼\81I
+[2A 0x0001B138 00 *Marisa Nitori]
+\82«\82ã\82¤\82è\90H\82×\82È\82ª\82ç\8c¾\82¤\82È\81I
+[2A 0x0001B32C 00 *Marisa Nitori]
+\88«\82¢\81c\82¯\82Ç\81A\8b­\82­\82È\82é\82½\82ß\82É
+\8eè\92i\82Í\91I\82ñ\82Å\82ç\82ê\82È\82¢\82ñ\82¾\81I
+[2A 0x0001B520 00 Marisa *Nitori]
+\8f\9f\8eè\82È\93z\82¾\81I
+\8f\9f\8eè\82È\90l\8aÔ\82È\82ñ\82©\82¾\81[\82¢\82«\82ç\82¢\82¾\81I
+[28 0x0001BBE4 00 Marisa *Nitori]
+\82«\82ã\81A\82«\82ã\82¤\82è\82ª\81c
+\91å\8e\96\82È\82«\82ã\82¤\82è\82ª\82±\82È\82²\82È\81c
+[2A 0x0001BDEC 00 *Marisa Nitori]
+\82³\82 \81A\93n\82µ\82Ä\82à\82ç\82¤\82º
+[2A 0x0001BFE0 00 Marisa *Nitori]
+\93n\82·\82à\89½\82à
+\82«\82ã\82¤\82è\82Í\82à\82¤\82±\82È\82²\82È\82¾\82\9f\81I
+[2A 0x0001C1D4 00 *Marisa Nitori]
+\82«\82ã\82¤\82è\82\82á\82È\82¢\81I\81I\81@\94­\96¾\95i\82¾\81I
+[2A 0x0001C3C8 00 Marisa *Nitori]
+\8e\9d\82Á\82Ä\82¯\81I
+\82à\82¤\82±\82ñ\82È\82à\82Ì\8d¡\82Í\96ð\82É\97§\82½\82È\82¢\81I
+[2A 0x0001C5BC 00 *Marisa Nitori]
+\82â\82Á\82½\82\9f\81A\82Â\82¢\82É\8eè\82É\93ü\82ê\82½\82¼\81B
+\82±\82Á\81A\82±\82ê\82©\82\9f!
+[2A 0x0001C7B0 00 *Marisa Nitori]
+\81c\81c\81c\81c\82Í\82Ö\81H
+\82±\82ê\81c\82±\82ê\82Á\82Ä\89½\82¾\81H
+[2A 0x0001C9A4 00 Marisa *Nitori]
+\91å\90Ø\82È\82«\82ã\82¤\82è\82ð\8eç\82é
+\81u\8cg\91Ñ\8cÓ\89Z\92\99\91 \8cÉ\81v\81I
+[2A 0x0001CB98 00 Marisa *Nitori]
+\82»\82Ì\96¼\82à
+\81u\83X\83}\81[\83g\8cÉ\81v\82¾\82Á!
+[2A 0x0001CD8C 00 *Marisa Nitori]
+\82¢\82ç\82Ë\82¦\82¥\81I
+[2A 0x0001CF80 00 Marisa *Nitori]
+\89½\82¾\82Æ\82§\81I
+[2A 0x0001D174 00 Marisa *Nitori]
+\93K\93x\82È\89·\93x\81A\8e¼\93x\81A\8cõ\82Å
+\8a®\91S\82É\8aÇ\97\9d\81I
+[2A 0x0001D368 00 Marisa *Nitori]
+\82±\82ê\82Å\82¢\82Â\82Å\82à\82Ç\82±\82Å\82à
+\90V\91N\82È\82«\82ã\82¤\82è\82¾\82¼\81I
+[2A 0x0001D55C 00 *Marisa Nitori]
+\81c\95Ô\82·\81B
+\82¨\91O\82É\8aú\91Ò\82µ\82½\82Ì\82ª\88«\82©\82Á\82½
+[2A 0x0001D750 00 Marisa *Nitori]
+\82¦\81H\81@\82 \81c\95Ô\82µ\82Ä\82­\82ê\82é\82Ì\82©\81H
+[2A 0x0001D944 00 *Marisa Nitori]
+\82\82á\82 \82È\82Á
+[2A 0x0001DBE0 02 *Nitori]
+\82¦\81A\82¿\82å\82Á\82Æ\82Ç\82±\8ds\82­\82ñ\82¾\96¿\97F\81I
+[2A 0x0001DD74 02 *Nitori]
+\82«\82ã\82¤\82è\81A\82«\82ã\82¤\82è\82ð\95Ù\8f\9e\82µ\82ë\82¨\82¨\82¨\81I
+[28 0x0001DFD4 01 *Marisa]
+\8d¡\93ú\82Í\89½\82È\82ñ\82¾\81c\81H
+\91\81\95c\82É\82É\82Æ\82è\82Ü\82Å\81c
+[2A 0x0001E160 02 *Marisa]
+\82È\82ñ\82¾\82©\8c\99\82È\97\\8a´\82ª\82·\82é\82È
+[2A 0x0001E2F4 02 *Marisa]
+\82Á\82Ä\8c¾\82Á\82Ä\82à
+\82¨\95ó\82ð\92ú\82ß\82é\82È\82ñ\82Ä\82µ\82È\82¢
+[2A 0x0001E488 02 *Marisa]
+\82±\82Ì\82Ü\82Ü
+\93Ë\82«\90i\82Þ\82Ì\82Ý\82¾\82Á\81I
+[28 0x0001EA68 02 *Marisa]
+\82¸\82¢\82Ô\82ñ\89\9c\82Ü\82Å\90i\82ñ\82¾\82Í\82¸\82¾\82¯\82Ç\81c
+\8bó\8aÔ\82ð\82¢\82\82è\82·\82¬\82¾\82ë\81c\82 \82¢\82Â
+[2A 0x0001EC18 02 *Marisa]
+\82¨\82©\82°\82Å\96À\82¢\82Ü\82­\82è\82¾\82º\81c
+\82±\82±\82Í\88ê\91Ì\82Ç\82±\82È\82ñ\82¾\81H
+[2A 0x0001EDAC 02 *Marisa]
+\82 \82Æ\81A\89½\82©\96Y\82ê\82Ä\82é\82Á\82Ä\8c\8f\82Í
+\82¢\82Á\82½\82¢\82È\82ñ\82¾\82Á\82½\82Á\82¯\81H
+[28 0x0001F410 02 *Marisa]
+\82Í\82\9f\81c\82È\82ñ\82©\94æ\82ê\82½\82È
+[2A 0x0001F5C0 02 *Marisa]
+\82æ\82­\8dl\82¦\82½\82ç\82²\82Í\82ñ\82à
+\82¨\82â\82Â\82à\90H\82×\82»\82±\82Ë\82Ä\82é\82µ\81c
+[2A 0x0001F754 02 *Marisa]
+\82±\82ñ\82È\82Æ\82«\82Í
+\82 \82Á\82½\82©\82¢\8dg\92\83\82ª\82¢\82¢\82æ\82È\81c
+[2A 0x0001F8E8 02 *Marisa]
+\8d»\93\9c\82Í\82Ý\82Á\82Â
+\83~\83\8b\83N\82½\82Á\82Õ\82è\82Å\8aÃ\81X\82Ì\81c
+[2A 0x0001FA7C 02 *Marisa]
+\82\82ã\81A\82\82ã\82é\82è\81c
+[2A 0x0001FC10 02 *Marisa]
+l
+[2A 0x0001FE20 00 *Marisa Sakuya]
+\82 \82Á\82Æ\8e¸\97ç\81I
+[2A 0x00020014 00 Marisa *Sakuya]
+\82»\82ê\82Å\81A\89½\82Ì\97p\82È\82Ì\81H
+[2A 0x00020208 00 *Marisa Sakuya]
+\82¨\81[\82¿\82å\82¤\82Ç\82¢\82¢\82Æ\82±\82ë\82É\81I
+[2A 0x000203FC 00 *Marisa Sakuya]
+\8dg\92\83\82¢\82ê\82Ä\82­\82ê\82æ\81B
+\88ê\91§\82Â\82«\82½\82¢\82Æ\82±\82ë\82¾\82Á\82½\82ñ\82¾
+[2A 0x000205F0 00 Marisa *Sakuya]
+\82¨\92f\82è
+[2A 0x000207E4 00 *Marisa Sakuya]
+\82¨\8bq\97l\82Í\82à\82Ä\82È\82·\82à\82ñ\82¾\82º\81H
+\8dg\92\83\82Ì\88ê\94t\82®\82ç\82¢\82¢\82¢\82\82á\82È\82¢\82©
+[2A 0x000209D8 00 Marisa *Sakuya]
+\8e\84\82Í\82±\82Ì\8aÙ\82Ì\83\81\83C\83h\82¾\82¯\82Ç
+\8bM\95û\82Í\8e\84\82Ì\8eå\90l\82Å\82Í\82È\82¢
+[2A 0x00020BCC 00 *Marisa Sakuya]
+\8eå\90l\82Á\82Ä\82¢\82¦\82Î\81A\82¨\91O\82Ì\91å\8e\96\82È
+\82²\8eå\90l\97l\82Í\82Ç\81[\82µ\82Ä\82é\82ñ\82¾\82æ\81I\81H
+[2A 0x00020DC0 00 *Marisa Sakuya]
+\82È\82ñ\82©\82±\82Ì\8aÙ\82Ì\8eü\95Ó\82ª
+\96­\82È\82Ì\82Í\82 \82¢\82Â\82Ì\82¹\82¢\82¾\82ë\81H
+[2A 0x00020FB4 00 Marisa *Sakuya]
+\82¨\8fì\97l\82Í
+\89\9c\82Ì\82¨\95\94\89®\82Å\82¨\82â\82·\82Ý\82æ
+[2A 0x000211A8 00 Marisa *Sakuya]
+\82»\82ê\82æ\82è\82à\96\82\97\9d\8d¹\81A\93\9a\82¦\82È\82³\82¢
+[2A 0x0002139C 00 Marisa *Sakuya]
+\8aÙ\82ð\82¤\82ë\82Â\82­
+\95s\90R\8eÒ\82Ì\95ñ\82ð\8eó\82¯\82½\82Ì\82¾\82¯\82Ç\81H
+[2A 0x00021590 00 Marisa *Sakuya]
+\82»\82ê\82Á\82Ä
+\8bM\95û\82È\82Ì\82©\82µ\82ç\81c\81H
+[2A 0x00021784 00 *Marisa Sakuya]
+\82©\82à\82È\81B
+\82¾\82Á\82½\82ç\82Ç\82¤\82·\82é\8bC\82È\82ñ\82¾\81H
+[2A 0x00021978 00 Marisa *Sakuya]
+\8c\88\82Ü\82Á\82Ä\82¢\82é
+[2A 0x00021B6C 00 Marisa *Sakuya]
+\92\81\8f\98\82ð\95Û\82Â\82Ì\82ª\83\81\83C\83h\82Ì\8ed\8e\96\81c
+\82±\82±\82Å\95Ð\95t\82¯\82Ä\82 \82°\82é\82í\81I
+[28 0x00022230 00 *Marisa Sakuya]
+\82Ç\82¢\82Â\82à\82±\82¢\82Â\82à\8cû\82Î\82Á\82©\82è\82¾\82º
+\82±\82Ì\8aÙ\82Ì\98A\92\86\82Í\81I
+[2A 0x00022438 00 Marisa *Sakuya]
+\81c\95G\82ð\82Â\82¢\82½\8e\84\82ð\82Ç\82ê\82Ù\82Ç
+\94l\82ë\82¤\82Æ\8d\\82í\82È\82¢\82¯\82Ç
+[2A 0x0002262C 00 Marisa *Sakuya]
+\82 \82Ì\95û\82ð\88«\82­\8c¾\82¤\82Ì\82Í\8b\96\82µ\82Ü\82¹\82ñ
+[2A 0x00022820 00 *Marisa Sakuya]
+\8b\96\82³\82È\82¯\82ê\82Î\82Ç\82¤\82·\82é\82ñ\82¾\82æ\81H
+\82»\82Ì\97L\82è\97l\82Å
+[2A 0x00022A14 00 Marisa *Sakuya]
+\81c\82 \82È\82½\82Ì\92p\82¸\82©\82µ\82¢\94é\96§\82ð\96\\98I\82·\82é
+[2A 0x00022C08 00 *Marisa Sakuya]
+\82»\81A\82»\82ñ\82È\82à\82ñ
+\82µ\82ç\82Ë\81[\82¾\82ë\81H
+[2A 0x00022DFC 00 Marisa *Sakuya]
+\82¤\82Ó\82Ó\82Ó\82Ó\81c
+[2A 0x00022FF0 00 *Marisa Sakuya]
+\82È\81A\82È\82ñ\82È\82ñ\82¾\82æ\81I
+\82È\82¢\82æ\82Á\81A\89½\82à\82È\82¢\82©\82ç\82È\82Á\81I
+[2A 0x000231E4 00 Marisa *Sakuya]
+\82»\82Ì\8dÎ\82É\82È\82Á\82Ä
+\89½\82à\82È\82¢\82±\82Æ\82à\92p\82¸\82©\82µ\82¢\82Ì\82æ
+[2A 0x000233D8 00 *Marisa Sakuya]
+\82Ð\82Á\81A\82Ð\82Å\82¦\81c
+\89½\82à\92m\82ç\82È\82¢\82ñ\82\82á\82È\82¢\82©\81I
+[2A 0x000235CC 00 Marisa *Sakuya]
+\82³\82Ä\81A\82Ë\81H
+[2A 0x000237C0 00 Marisa *Sakuya]
+\96\82\97\9d\8d¹\81A\82 \82È\82½\82Í
+\82±\82Ì\90æ\82É\90i\82Ý\82½\82¢\82Ì\81H
+[2A 0x000239B4 00 Marisa *Sakuya]
+\82¨\8fì\97l\82Ì\82Æ\82±\82ë\82Ö\81c
+[2A 0x00023BA8 00 *Marisa Sakuya]
+\90S\94z\82·\82é\82È\81B
+\96³\89v\82È\8eE\90\82Í\82µ\82È\82¢\82º
+[2A 0x00023D9C 00 *Marisa Sakuya]
+\8e\84\82ª\92T\82µ\82Ä\82é\82Ì\82Í\82¨\95ó\82¾
+[2A 0x00023F90 00 *Marisa Sakuya]
+\82Ü\82 \82 \82¢\82Â\82ª
+\91å\90l\82µ\82­\82µ\82Ä\82é\82È\82ç\81c\82¾\82¯\82Ç\82È
+[2A 0x00024184 00 Marisa *Sakuya]
+\82 \82Ì\95û\82ð\95\8e\82ê\82Î
+\95K\82¸\8bê\94t\82ð\82È\82ß\82é\82±\82Æ\82É\82È\82é\82í
+[2A 0x00024378 00 *Marisa Sakuya]
+\82²\90i\8c¾
+\82 \82è\82ª\82½\82­\82¿\82å\82¤\82¾\82¢\82·\82é\82æ
+[2A 0x0002456C 00 *Marisa Sakuya]
+\82\82á\82 \81A\82Ü\82½\82È\82Á\81B
+\8e\9f\82Í\82¨\91O\82Ì\8dg\92\83\82Å\82Ü\82Á\82½\82è\82³\82¹\82Ä\82­\82ê\82æ
+[2A 0x00024760 00 Marisa *Sakuya]
+\82Ó\82¤\82ñ\81c\97p\88Ó\82Í\82 \82é\82¯\82ê\82Ç
+[2A 0x00024954 00 *Marisa Sakuya]
+\82¦\82Á\81I\81H
+[2A 0x00024B48 00 *Marisa Sakuya]
+\82\82á\82 \81A\8dÅ\8f\89\82©\82ç
+\82²\82¿\82»\82¤\82µ\82Ä\82­\82ê\82ê\82Î\82¢\82¢\82Ì\82É
+[2A 0x00024D3C 00 Marisa *Sakuya]
+\97\88\82é\82Ì\82ª\91\81\82·\82¬\82½\82Ì\82æ
+[2A 0x00024F30 00 *Marisa Sakuya]
+\82»\82Á\82©\81H
+[2A 0x00025124 00 Marisa *Sakuya]
+\82¦\82¦\81B
+\82Å\82Í\81A\8e\84\82Í\8ex\93x\82ª\82 \82é\82©\82ç\81c
+[2A 0x00025318 00 Marisa *Sakuya]
+\82­\82ê\82®\82ê\82à\97p\90S\82·\82é\82±\82Æ\82Ë
+[2A 0x0002550C 00 Marisa *Sakuya]
+\82»\82µ\82Ä\81A\90S\92u\82«\82È\82­\82¨\8fì\97l\82É
+\82¬\82Á\82½\82ñ\82¬\82Á\82½\82ñ\82É\82³\82ê\82È\82³\82¢\81ô
+[2A 0x00025700 00 *Marisa Sakuya]
+\8d¡\93ú\88ê\94Ô\82Ì\8fÎ\8aç\82Å\8c¾\82í\82ê\82½\82æ\82Á\81I
+[2A 0x000258F4 00 *Marisa Sakuya]
+\82Ü\82½\8cã\82Å\82È\82Á\81I
+[28 0x00025FB8 00 *Marisa Sakuya]
+\82Ü\82Á\82½\82­\81c\82±\82ê\82ª\82±\82Ì\8aÙ\82Ì
+\82¨\8bq\97l\82É\91Î\82·\82é\82à\82Ä\82È\82µ\82È\82Ì\82©\81H
+[2A 0x000261C0 00 Marisa *Sakuya]
+\82¢\82Â\82à\82±\82ñ\82È\8a´\82\82æ
+[2A 0x000263B4 00 *Marisa Sakuya]
+\82¨\82¢\82Á\81I
+[2A 0x000265A8 00 Marisa *Sakuya]
+\8e\84\91\8a\8eè\82Å\82Í\95s\95\9e\82¾\82Á\82½\82©\82µ\82ç\81H
+\82Ü\82¾\82Ü\82¾\8c³\8bC\82ª\97]\82Á\82Ä\82é\82Ý\82½\82¢\82Ë
+[2A 0x0002679C 00 Marisa *Sakuya]
+\8e\84\82æ\82è\8b­\82¢\91\8a\8eè\82ð\96]\82Þ\82È\82ç
+\82±\82±\82Å\96\9d\90S\82¹\82¸\81A\8fp\82ð\82Ý\82ª\82«\82È\82³\82¢
+[2A 0x00026990 00 *Marisa Sakuya]
+\82µ\82ê\82Á\82Æ\81c\82¨\90à\8b³\81I\81H
+[2A 0x00026B84 00 *Marisa Sakuya]
+\82Á\82½\82­\95\89\82¯\82½\93z\82ª\8c¾\82¤\82±\82Æ\82©\82æ
+[2A 0x00026D78 00 Marisa *Sakuya]
+\92T\82µ\82à\82Ì\81c\8c©\82Â\82©\82é\82Æ\82¢\82¢\82í\82Ë\81B
+\82à\82Á\82Æ\8b­\82­\82È\82ê\82é\82æ\82¤\82É
+[2A 0x00026F6C 00 *Marisa Sakuya]
+\8fã\82©\82ç\96Ú\90ü\82©\82æ\81I
+[2A 0x00027160 00 *Marisa Sakuya]
+\81c\82±\82¤\82È\82Á\82½\82ç\82à\82Á\82©\82¢
+\8aÙ\92\86\92T\82µ\82Ü\82í\82Á\82Ä\82â\82é\82º\81I
+[2A 0x00027354 00 *Marisa Sakuya]
+\8ao\8cå\82µ\82ë\82æ\81I
+[2A 0x00027548 00 Marisa *Sakuya]
+\82¦\82¦\81c\81B
+\8eñ\82ª\97\8e\82¿\82Ä\82¢\82½\82ç\82Ð\82ë\82Á\82Ä\82Ë
+[2A 0x0002773C 00 Marisa *Sakuya]
+\82¢\82Â\82Ü\82Å\82à\95Ð\95t\82©\82È\82¢\82©\82ç
+[2A 0x00027930 00 *Marisa Sakuya]
+\92f\82é\82Á\81I
+\82\82á\82 \82È\82Á\81I
+[2A 0x00027BF0 02 *Sakuya]
+\8ds\82Á\82Ä\82µ\82Ü\82Á\82½\82Ý\82½\82¢\82Ë
+[2A 0x00027D84 02 *Sakuya]
+\82±\82Ì\90æ\82É\90i\82Ü\82¹\82é\82É\82Í
+\82Ü\82¾\82Ü\82¾\82 \82È\82½\82Ì\97Í\82Í\91«\82è\82È\82¢
+[2A 0x00027F18 02 *Sakuya]
+\82»\82Ì\82±\82Æ\82É
+\82Ü\82¸\82Í\8bC\82Ã\82«\82È\82³\82¢\96\82\97\9d\8d¹\81c
+[28 0x000284F8 02 *Marisa]
+\82Ü\81[\82½\82±\82Ì\8bó\8aÔ\82©\81c
+[2A 0x000286A8 02 *Marisa]
+\82±\82ñ\82È\82Æ\82±\82É\82¨\95ó\82 \82é\82í\82¯\82È\82¢\82µ\81c
+[2A 0x0002883C 02 *Marisa]
+\82Å\82à\81A\82¨\95ó\82Í\82¢\82Â\82à\88Ó\8aO\82È\8fê\8f\8a\82Å
+\8c©\82Â\82©\82é\82Á\82Ä\82Ì\82à\92è\94Ô\82¾\82æ\82È\81I\81I
+[2A 0x000289D0 02 *Marisa]
+\82³\81[\82Ä
+\82Í\82è\82«\82Á\82Ä\90i\82ñ\82Å\82Ý\82é\82©\81[
+[28 0x00029034 02 *Marisa]
+\82È\82©\82È\82©\8c©\82Â\82©\82ñ\82Ë\81[\82µ
+[2A 0x000291E4 02 *Marisa]
+\82±\82¤\82È\82Á\82½\82ç\8eè\93\96\82½\82è\8e\9f\91æ
+\82 \82ê\82à\82±\82ê\82à\92²\82×\82Ä\82¢\82­\82µ\82©\82È\82¢\81I
+[2A 0x00029378 02 *Marisa]
+\82±\82ê\82Í\81c\95Z\92\\81H
+[2A 0x0002950C 02 *Marisa]
+\82±\82ê\82Í\81c\8eP\82¾\81B
+[2A 0x000296A0 02 *Marisa]
+\82±\82Á\82¿\82Í\81c\94u\81H
+[2A 0x00029834 02 *Marisa]
+\82»\82Á\82¿\82Ì\81c\82¤\82í\82 \82 \82Á
+[2A 0x000299C8 02 *Marisa]
+\8f_\82ç\82©\82¢\82 \82Á\82½\82©\82¢\82Ñ\82æ\81[\82ñ\82Æ\82Ì\82Ñ\82é\82Á
+\89½\82±\82ê\81c\82¤\82í\82 \82 \82 \82 
+[2A 0x00029B5C 02 *Marisa]
+\82 \81A\82 \82ê\81H\81@\94L\81I\81H
+[2A 0x00029CF0 02 *Marisa]
+\82Å\82Á\82©\82¢\94L\81c\94L\97d\89ö\82©\81H
+\90Ô\96Ñ\82É\8d\95\82Ì\94Á\93_\95¿\81c
+[2A 0x00029E84 02 *Marisa]
+l
+[2A 0x0002A094 00 *Marisa Satori]
+\82³\82Æ\82è\81I\81H
+[2A 0x0002A288 00 *Marisa Satori]
+\82¨\91O\82Ü\82Å
+\8dg\96\82\8aÙ\82É\8fµ\91Ò\82³\82ê\82Ä\82½\82Ì\82©\81H
+[2A 0x0002A47C 00 Marisa *Satori]
+\82¦\82¦\81B\8fµ\91Ò\82³\82ê\82½\82Ì\82¾\82¯\82ê\82Ç
+\95Â\82\8d\9e\82ß\82ç\82ê\82µ\82Ü\82Á\82Ä
+[2A 0x0002A670 00 Marisa *Satori]
+\8bM\95û\82Í\88á\82¤\82Ì\81H
+[2A 0x0002A864 00 *Marisa Satori]
+\8e\84\82Í\82¨\95ó\82ð\92T\82µ\82É\82«\82½\82ñ\82¾
+[2A 0x0002AA58 00 *Marisa Satori]
+\82Á\82Ä\81A\82±\82±\82©\82ç
+\8fo\82ç\82ê\82È\82­\82È\82Á\82Ä\82½\82Ì\82©\81I\81H
+[2A 0x0002AC4C 00 Marisa *Satori]
+\8bC\82Ã\82¢\82Ä\82È\82©\82Á\82½\82ñ\82¾
+[2A 0x0002AE40 00 *Marisa Satori]
+\82¤\82ñ\81A\82Ü\82Á\82½\82­
+[2A 0x0002B034 00 Marisa *Satori]
+\82Í\82 \81c\82 \82é\88Ó\96¡\82·\82²\82¢\81c
+[2A 0x0002B228 00 *Marisa Satori]
+\82Ö\82Ö\82ñ\81ô
+[2A 0x0002B41C 00 Marisa *Satori]
+\82·\82²\82­
+\8aì\82ñ\82Å\82­\82ê\82Ä\82¢\82é\82Ý\82½\82¢\82¾\82¯\82Ç\81c
+[2A 0x0002B610 00 Marisa *Satori]
+\82Ü\82Á\82½\82­\82Ù\82ß\82Ä\82¢\82È\82¢\82©\82ç\81c
+[2A 0x0002B804 00 Marisa *Satori]
+\82Å\82à\81c\82 \82è\82ª\82Æ\82¤
+[2A 0x0002B9F8 00 *Marisa Satori]
+\82Ö\81H
+[2A 0x0002BBEC 00 Marisa *Satori]
+\82»\82Ì\8eq\82ð
+\82±\82¿\82ç\82É\93n\82µ\82Ä\82­\82¾\82³\82¢\81c
+[2A 0x0002BDE0 00 *Marisa Satori]
+\81c\82¿\82å\82¢\91Ò\82Ä\81B
+\82¨\91O\81A\82±\82ê\82ð\92T\82µ\82Ä\82½\82Ì\82©\81H
+[2A 0x0002BFD4 00 Marisa *Satori]
+\82¦\82¦\81c
+[2A 0x0002C1C8 00 Marisa *Satori]
+\82±\82±\82Ö\82à\88ê\8f\8f\82É\97\88\82½\82Ì\81B
+\93¯\94º\82Å\82à\8d\\82í\82È\82¢\82Æ\95·\82¢\82½\82©\82ç
+[2A 0x0002C3BC 00 *Marisa Satori]
+\93¯\94º\81c
+[2A 0x0002C5B0 00 Marisa *Satori]
+\81c\82¢\82â\82ç\82µ\82¢\82±\82Æ\8dl\82¦\82È\82¢\82Å\82Ë
+[2A 0x0002C7A4 00 *Marisa Satori]
+\8dl\82¦\82Ä\82Ë\81[\82æ\81I
+[2A 0x0002C998 00 *Marisa Satori]
+\82Á\82Ä\82©\81A\90l\82Ì\90S\82ð
+\93Ç\82Þ\82ñ\82\82á\82Ë\82¦\81I
+[2A 0x0002CB8C 00 Marisa *Satori]
+\81c\82â\82¾\81c
+[2A 0x0002CD80 00 *Marisa Satori]
+\82¤\82Á\81c\81I\81I
+[2A 0x0002CF74 00 *Marisa Satori]
+\83o\83b\81A\83o\81[\83J\82Á\81I
+[2A 0x0002D168 00 *Marisa Satori]
+\82 \82Á\81c\81I\81H
+[2A 0x0002D35C 00 Marisa *Satori]
+\83`\83\8b\83m\82Æ\93¯\82\82Ë\81c
+[2A 0x0002D550 00 *Marisa Satori]
+\82»\82ñ\82È\82Ó\82¤\82É\90l\82ð
+\88£\82ê\82»\82¤\82É\82Ý\82é\82È\81I
+[2A 0x0002D744 00 Marisa *Satori]
+\82³\82 \81c
+\82»\82Ì\8ee\82ð\95Ô\82µ\82Ä\82¿\82å\82¤\82¾\82¢
+[2A 0x0002D938 00 *Marisa Satori]
+\82¢\82â\81c\82±\82¢\82Â\82Í\93n\82¹\82È\82¢\81B
+\82¿\82å\82Á\82Æ\92²\82×\82³\82¹\82Ä\82à\82ç\82¤\82º
+[2A 0x0002DB2C 00 Marisa *Satori]
+\92²\82×\82é\81c\81H\81@\89½\82Ì\98b\81H
+[2A 0x0002DD20 00 *Marisa Satori]
+\8d\81èÁ\82É\8c©\82¹\82Ä\8am\82©\82ß\82é\82¾\82¯\82¾\81B
+\82±\82¢\82Â\82ª\81c\82¨\95ó\82©\82à\82µ\82ê\82È\82¢
+[2A 0x0002DF14 00 Marisa *Satori]
+\95ó\81H\81@\82»\82¤\82æ\81A\91å\90Ø\82È\95ó\95¨\81B
+\95Ô\82µ\82Ä
+[2A 0x0002E108 00 *Marisa Satori]
+\91Ê\96Ú\82¾
+[2A 0x0002E2FC 00 Marisa *Satori]
+\81c\82È\82º\81H\81@\82³\82 \81A\95Ô\82µ\82Ä\81B
+\82±\82ñ\82È\82±\82Æ\82Åæy\82¢\82Í\8c\99\82È\82Ì
+[2A 0x0002E4F0 00 *Marisa Satori]
+\88«\82¢\82¯\82Ç\81A\8eæ\82è\96ß\82µ\82½\82©\82Á\82½\82ç
+\81c\97Í\82¸\82­\82Å\82â\82é\82ñ\82¾\82È\81I
+[2A 0x0002E6E4 00 Marisa *Satori]
+\81c\91\88\82¢\82Í\8dD\82«\82\82á\82È\82¢\82Ì\82É\81c
+[2A 0x0002E8D8 00 *Marisa Satori]
+\82Å\82à\81A\82â\82é\82ñ\82¾\82ë\81H
+[2A 0x0002EACC 00 Marisa *Satori]
+\82 \82È\82½\82Æ\8e\84\82Í\8d¡\81c
+[2A 0x0002ECC0 00 Marisa *Satori]
+\93¯\82\8bC\8e\9d\82¿\82æ\81c\81I
+[28 0x0002F384 00 Marisa *Satori]
+\8bó\95 \82È\82Ì\82É\82¤\82ñ\82Æ\92£\82è\90Ø\82Á\82½\82Ì\82Ë\81B
+\82 \82È\82½\82Ì\81c\8f\9f\82¿
+[2A 0x0002F58C 00 *Marisa Satori]
+\82¨\82¢\81A\93Ç\82Þ\82È\82æ
+[2A 0x0002F780 00 Marisa *Satori]
+\93Ç\82ñ\82Å\82È\82¢\81B
+\82¨\95 \82Ì\96Â\82é\89¹\82ª\95·\82±\82¦\82½\82¾\82¯
+[2A 0x0002F974 00 *Marisa Satori]
+\95·\82­\82È\81I
+[2A 0x0002FB68 00 Marisa *Satori]
+\82»\82ê\82Í\96³\97\9d\82æ\81B\95·\82±\82¦\82é\82ñ\82¾\82à\82Ì
+[2A 0x0002FD5C 00 *Marisa Satori]
+\82±\82¢\82Â\82Í\98A\82ê\82Ä\82¢\82­\82º\81B
+\8d\81èÁ\82É\82¨\95ó\82©\82Ç\82¤\82©\8am\82©\82ß\82Ä\82à\82ç\82¤
+[2A 0x0002FF50 00 Marisa *Satori]
+\8e\84\82Ì\89Â\88¤\82¢\82¨\97Ó\82ª\81c\95ó\81H
+[2A 0x00030144 00 Marisa *Satori]
+\82»\82ê\82Í\8e\84\82É\82Æ\82Á\82Ä\82Í\95ó\95¨\82¾\82¯\82Ç
+\82 \82È\82½\82É\82Æ\82Á\82Ä\82Í\88á\82¤\82Å\82µ\82å\82¤\81H
+[2A 0x00030338 00 Marisa *Satori]
+\8d¡\93ú\82±\82±\82Ö\88ê\8f\8f\82É\97\88\82½\82Ì\82Í
+\82¨\92\83\89ï\82É\8eQ\89Á\82·\82é\82½\82ß\82æ
+[2A 0x0003052C 00 *Marisa Satori]
+\82¨\92\83\89ï\81H
+\82»\82ñ\82È\82à\82Ì\82 \82é\82Ì\82©\81c
+[2A 0x00030720 00 *Marisa Satori]
+\82 \81A\82»\82ê\82æ\82è\81I
+\82\82á\82 \82±\82Ì\97d\89ö\82Í\81c\81H
+[2A 0x00030914 00 Marisa *Satori]
+\8e\84\82Ì\89Â\88¤\82¢\89Æ\91°
+[2A 0x00030B08 00 *Marisa Satori]
+\81c\82­\82»\82Á\81A\82Ü\81[\82½\82±\82ñ\82È\93W\8aJ\82©\81I
+[2A 0x00030CFC 00 Marisa *Satori]
+\82¨\82¢\82Å\81c\82¨\97Ó
+[2A 0x00030EF0 00 Marisa *Satori]
+\82»\82ñ\82È\82É\93{\82ç\82È\82¢\82Å\81B
+\94Þ\8f\97\82ª\8b¯\82¦\82é\82í
+[2A 0x000310E4 00 *Marisa Satori]
+\82½\82¾\82Ì\83y\83b\83g\82©\82æ\81I
+[2A 0x000312D8 00 Marisa *Satori]
+\94ñ\93¹\82¢\81c\8e\84\82É\82Í\95ó\95¨\82æ
+[2A 0x000314CC 00 *Marisa Satori]
+\82 \81[\81I
+\82Ü\82½\8añ\82è\93¹\82µ\82¿\82Ü\82Á\82½\82º\81I
+[2A 0x000316C0 00 *Marisa Satori]
+\82±\82¤\82È\82Á\82½\82ç\88Ó\92n\82Å\82à
+\82¨\95ó\82Í\8c©\82Â\82¯\8fo\82µ\82Ä\82â\82é\81I
+[2A 0x000318B4 00 *Marisa Satori]
+\82»\82ê\82É\82µ\82Ä\82à\81c\82¨\92\83\89ï\82Á\82Ä\81H
+\8d¡\93ú\81A\8dg\96\82\8aÙ\82Å\89½\82ª\8bN\82±\82Á\82Ä\82é\82ñ\82¾\81H
+[2A 0x00031AA8 00 Marisa *Satori]
+\82³\82 \81c\8e\84\82Í\8eè\93`\82¢\82É\97\88\82½\82¾\82¯\82¾\82©\82ç\81c
+[2A 0x00031C9C 00 Marisa *Satori]
+\8e©\95ª\82Ì\96Ú\82Å\8am\82©\82ß\82Ä\82«\82½\82ç\82Ç\82¤\81H
+[2A 0x00031E90 00 *Marisa Satori]
+\8c¾\82í\82ê\82È\82­\82Ä\82à\82»\82¤\82·\82é\82æ\82Á\81I
+\82\82á\82 \82È\82Á\81I
+[2A 0x00032084 00 Marisa *Satori]
+\82Î\82¢\82Î\81[\82¢\81c
+[2A 0x00032344 02 *Satori]
+\82¨\97Ó\81A\8ds\82Á\82¿\82á\82Á\82½\82Ë
+[2A 0x000324D8 02 *Satori]
+\82¤\82ñ\81c\81H
+\82ª\82³\82Â\82È\8eq\82¾\82Á\82½\82Á\82Ä\81H
+[2A 0x0003266C 02 *Satori]
+\8c©\82½\96Ú\82Í\82»\82¤\82æ\82Ë\81c
+\82¢\82Â\82à\83o\83^\83o\83^\82µ\82Ä\82Ä
+[2A 0x00032800 02 *Satori]
+\82à\82Ì\82Ö\82Ì\8e·\92\85\82à\82Ð\82Ç\82¢\82µ\81c
+[2A 0x00032994 02 *Satori]
+\82Å\82à\90S\82Í\93§\96¾\82È\82ñ\82¾\82æ
+[2A 0x00032B28 02 *Satori]
+\93Ç\82ñ\82Å\82¢\82é\82±\82Á\82¿\82ª
+\92p\82¸\82©\82µ\82­\82È\82é\82­\82ç\82¢\81c
+[28 0x00033108 00 *Marisa Satori]
+\82±\82Ì\97d\89ö\82Í\96á\82Á\82Ä\82­\82º
+[2A 0x00033310 00 Marisa *Satori]
+\82È\82º\81H
+\82Ç\82¤\82µ\82Ä\82»\82ñ\82È\82É\8e·\92\85\82·\82é\82Ì\81H
+[2A 0x00033504 00 *Marisa Satori]
+\82½\82¾\82Ì\90l\8aÔ\82ª\8b­\82­\82È\82é\82É\82Í\81c
+\90\94¼\89Â\82È\82±\82Æ\82¾\82¯\82\82á\91Ê\96Ú\82È\82ñ\82¾
+[2A 0x000336F8 00 Marisa *Satori]
+\82»\82¤\81c\82»\82ñ\82È\82É\82à
+\8b­\82­\82È\82è\82½\82¢\82Ì\82Ë\81c
+[2A 0x000338EC 00 Marisa *Satori]
+\89Â\88¤\82¢\82­\82ç\82¢\8f\83\90\88\81c
+[2A 0x00033AE0 00 *Marisa Satori]
+\82\82ã\82Á\81A\8f\83\90\88\82Æ\82©\8c¾\82¤\82È\82æ\82È\81I
+\82Í\82Á\81A\82Í\82¸\82©\82µ\81[\82¾\82ë\81[\82ª\81c
+[2A 0x00033CD4 00 *Marisa Satori]
+\98b\82ð\96ß\82·\82¼\81I
+\82±\82ê\82ª\96\82\8fp\82ð\8d\82\82ß\82é\82¨\95ó\82¾\82Æ\82µ\82½\82ç\81c
+[2A 0x00033EC8 00 Marisa *Satori]
+\82»\82Ì\8eq\82Í\82½\82¾\82Ì\97d\89ö\81B
+\98A\82ê\82Ä\82¢\82­\82È\82ç\9cß\82©\82ê\82È\82¢\82æ\82¤\82É\82Ë
+[2A 0x000340BC 00 *Marisa Satori]
+\9cß\82­\82Ì\82©\81H
+[2A 0x000342B0 00 Marisa *Satori]
+\9cß\82­\82í\81B\97d\89ö\82¾\82à\82Ì\81B
+\82Ë\81A\82¨\97Ó\81H
+[2A 0x000344A4 00 Marisa *Satori]
+\82Ù\82ç\82¨\82¢\82Å\81H
+[2A 0x00034698 00 Marisa *Satori]
+\82Ó\82Ó\81c\82 \81A\92É\82¢\81c\92É\82¢\82í
+\8a\9a\82Ü\82È\82¢\82Å\81c\92É\82Á\81c\82¢\82½\82½\82½\81c
+[2A 0x0003488C 00 *Marisa Satori]
+\81c\91S\82Á\91R\81c\89ù\82¢\82Ä\82È\82¢\82µ\82Á\81I
+[2A 0x00034A80 00 *Marisa Satori]
+\82¤\82í\82 \81c\81c\97¬\8c\8c\82µ\82Ä\82é\82¼\81B
+\91å\8fä\95v\82©\81H\81H\81H
+[2A 0x00034C74 00 Marisa *Satori]
+\89ù\82­\82©\82ç\89Â\88¤\82¢\82Ì\82Å\82Í\82È\82­\82Ä
+\89Â\88¤\82¢\82©\82ç\89Â\88¤\82¢\82Ì
+[2A 0x00034E68 00 Marisa *Satori]
+\94\92\81X\82µ\82¢\8fÎ\8aç\82Ì\89\9e\95ñ\82æ\82è
+\8a\9a\82Ý\95t\82¢\82Ä\82­\82é\89å\82Ì\82Ù\82¤\82ª\90S\92n\82¢\82¢\82Ì
+[2A 0x0003505C 00 Marisa *Satori]
+\82¾\82©\82ç\8bM\95û\82à\89Â\88¤\82¢\82©\82à
+[2A 0x00035250 00 *Marisa Satori]
+\82È\82Á\81c\81c\95Ï\82È\82±\82Æ\8c¾\82¤\82È\82Á\81I
+\82¨\95ó\82\82á\82Ë\82¦\82È\82ç\95Ô\82·\82æ\82Á\82à\82¤\81I
+[2A 0x00035444 00 *Marisa Satori]
+\82Ù\82ñ\82Æ\82¨\82©\82µ\82È\93z\82¾\82È
+[2A 0x00035638 00 Marisa *Satori]
+\82¤\82Ó\82Ó\82Á
+[2A 0x0003582C 00 Marisa *Satori]
+\90Ô\82­\82È\82Á\82½\82è\82µ\82Ä\8bM\95û\82à\82¨\82©\82µ\82¢\82í\82Ë
+[2A 0x00035A20 00 *Marisa Satori]
+\82\82á\82 \82È\82Á
+[2A 0x00035C14 00 Marisa *Satori]
+\82Í\82¢\81A\82Ü\82½\8cã\82Å\81c
+[2A 0x00035ED4 02 *Satori]
+\95ó\95¨\81A\82«\82Á\82Æ\8c©\82Â\82©\82é\82Æ\8ev\82¤\82í\81c
+[2A 0x00036068 02 *Satori]
+\82Å\82à\81A\82»\82ê\82Í\82à\82Á\82Æ\90æ\81c
+[2A 0x000361FC 02 *Satori]
+\82¢\82Â\82É\82È\82é\82©\82Í\82 \82È\82½\8e\9f\91æ\82æ\81c
+[28 0x000367DC 02 *Marisa]
+\82Í\82 \81c
+[2A 0x0003698C 02 *Marisa]
+\97ì\96²\82Ì\97p\8e\96\82Á\82Ä\82È\82ñ\82¾\82Á\82½\82Á\82¯\81H
+[2A 0x00036B20 02 *Marisa]
+\82à\82¤\8ev\82¢\8fo\82»\82¤\82Á\82Ä
+\93w\97Í\82à\8b\95\82µ\82¢\8a´\82\82¾\82È\81I
+[2A 0x00036CB4 02 *Marisa]
+\82±\82±\82Í\82·\82Ï\82Á\82Æ
+\8bC\8e\9d\82¿\82ð\90Ø\82è\91Ö\82¦\82Ä\82¨\95ó\82É\8fW\92\86\82¾\81I
+[2A 0x00036E48 02 *Marisa]
+\81c\81H
+[2A 0x00036FDC 02 *Marisa]
+\81c\82È\82ñ\82¾\82±\82Ì\93õ\82¢\81c
+[2A 0x00037170 02 *Marisa]
+\95@\82É\82Â\82­\81c\8eK\82Ñ\82½\8a´\82\81c
+[2A 0x00037304 02 *Marisa]
+\82±\82ê\82Í\81c\8c\8c\82Ì\93õ\82¢\81I\81H
+[28 0x00037968 00 *Marisa Remilia]
+\82Æ\82¤\82Æ\82¤\82¨\8fo\82Ü\82µ\82©\82æ\81B
+\82¨\8fì\97l
+[2A 0x00037B70 00 *Marisa Remilia]
+\95\81\92i\82Í\82Ý\82©\82¯\82È\82¢\98A\92\86\82Ü\82Å\91µ\82Á\82Ä
+\8d¡\93ú\82Í\89½\82Ì\8dÕ\82è\82¾\81H
+[2A 0x00037D64 00 Marisa *Remilia]
+\8dÕ\82è\82Å\82Í\82È\82¢\81c\81B
+\82»\82¤\82Ë\82 \82¦\82Ä\8c¾\82¤\82È\82ç\82¨\97V\8bY\82æ
+[2A 0x00037F58 00 *Marisa Remilia]
+\82¨\97V\8bY\82©\82æ\81c
+[2A 0x0003814C 00 *Marisa Remilia]
+\83\8c\83~\83\8a\83A\81A\82¨\91O\82É\97p\82ª\82 \82é
+[2A 0x00038340 00 Marisa *Remilia]
+\8fI\82í\82ç\82¹\82Í\82µ\82È\82¢\81c
+[2A 0x00038534 00 *Marisa Remilia]
+\82Í\82 \81H\81@\82¢\82Á\82½\82¢\89½\82ð\8c¾\82Á\82Ä\81c
+[2A 0x00038728 00 Marisa *Remilia]
+\82¸\82Á\82Æ\82¸\82Á\82Æ
+\82±\82±\82Å\97V\82Ñ\91±\82¯\82é\82ñ\82¾\82©\82ç
+[2A 0x0003891C 00 *Marisa Remilia]
+\82¾\82©\82ç\81A\89½\82Ì\82±\82Æ\82È\82ñ\82¾\82æ\81c
+[2A 0x00038B10 00 *Marisa Remilia]
+\82¨\97V\8bY\89ï\82Æ\89½\82©\8aÖ\8cW\82 \82é\82Ì\82©\81H
+[2A 0x00038D04 00 Marisa *Remilia]
+\81c\90l\8aÔ\81B
+\82¨\91O\82Í\8bC\82Ã\82¢\82Ä\82¢\82È\82¢\82æ\82¤\82¾\82È
+[2A 0x00038EF8 00 Marisa *Remilia]
+\82¸\82Á\82Æ\82¸\82Á\82Æ\8cJ\82è\95Ô\82³\82ê\82é
+\82±\82Ì\97Ö\89ô\82Ì\97V\8bY\82É\81c
+[2A 0x000390EC 00 *Marisa Remilia]
+\82â\82Á\82Ï\82¨\97V\8bY\89ï\82©\82æ\81c
+[2A 0x000392E0 00 Marisa *Remilia]
+\88á\82¤\81c\81I
+[2A 0x000394D4 00 Marisa *Remilia]
+\82Ó\82ñ\81A\90l\8aÔ\82Ì\93ª\82\82á
+\97\9d\89ð\82Å\82«\82È\82¢\82Ì\82Ë
+[2A 0x000396C8 00 *Marisa Remilia]
+\82 \81I\81H
+[2A 0x000398BC 00 *Marisa Remilia]
+\93¯\82\8f\8a\82ð\89½\89ñ\82à\89½\89ñ\82à
+\92Ê\82Á\82½\82Æ\8ev\82Á\82½\82ç
+[2A 0x00039AB0 00 *Marisa Remilia]
+\82¨\91O\82Ì\8ed\8bÆ\82¾\82Á\82½\82ñ\82¾\82È\81I
+[2A 0x00039CA4 00 Marisa *Remilia]
+\82»\82ñ\82È\97\9d\89ð\82Å
+\82æ\82­\82à\82±\82±\82Ü\82Å\97\88\82ê\82½\82à\82Ì\82¾\81c
+[2A 0x00039E98 00 Marisa *Remilia]
+\8aÖ\90S\82µ\82½\82¼\81A\90l\8aÔ\81c
+[2A 0x0003A08C 00 *Marisa Remilia]
+\8dç\96é\82Ì\91\9d\89ü\92z\82©\82Æ\81c
+[2A 0x0003A280 00 Marisa *Remilia]
+\8dç\96é\82Ì\82·\82é\82±\82Æ\82Í\8e\84\82Ì\82·\82é\82±\82Æ\81B
+\8e\84\82Ì\96½\82\82é\92Ê\82è\8dç\96é\82Í\93®\82­
+[2A 0x0003A474 00 Marisa *Remilia]
+\82Å\82à\81A\91\9d\89ü\92z\82Í\82È\82¢\82í\81c
+[2A 0x0003A668 00 *Marisa Remilia]
+\82\82á\82 \82¢\82Á\82½\82¢\89½\82ð\82µ\82½\82ñ\82¾\82æ\81I
+[2A 0x0003A85C 00 Marisa *Remilia]
+\8d\87\82í\82¹\8b¾\82ð\82Ì\82¼\82¢\82½\82±\82Æ\82Í\81H
+[2A 0x0003AA50 00 Marisa *Remilia]
+\8b¾\82É\89f\82é\8b¾\82Ì\92\86\82Ì
+\8b¾\82Ì\92\86\82Ì\8b¾\82Ì\92\86\82Ì\8b¾\82Ì\92\86\82Ì\8b¾\81c
+[2A 0x0003AC44 00 *Marisa Remilia]
+\8b¾\81I\81H
+[2A 0x0003AE38 00 *Marisa Remilia]
+\82â\82Á\82Æ\82¨\95ó\82ç\82µ\82¢\83A\83C\83e\83\80\82ª\8fo\82Ä\82«\82½\82È
+[2A 0x0003B02C 00 Marisa *Remilia]
+\8d\87\82í\82¹\8b¾\82Ì\92\86\82Ì\96³\8cÀ\82Ì\90¢\8aE\82Å
+\82¸\82Á\82Æ\97V\82ñ\82Å\82¢\82½\82¢\82Æ\8ev\82Á\82½\82Ì\82¾
+[2A 0x0003B220 00 Marisa *Remilia]
+\82³\82Æ\82è\82â\91\81\95c\81A\82É\82Æ\82è\82à\8cÄ\82ñ\82Å\82È\81c
+[2A 0x0003B414 00 Marisa *Remilia]
+\96\82\97\9d\8d¹\82à\97ì\96²\82à
+\8e\84\82Ì\91å\8dD\82«\82È\82¨\82à\82¿\82á\82¾
+[2A 0x0003B608 00 Marisa *Remilia]
+\82»\82¤\81c
+\8e\84\82Í\82à\82¤\88ê\93x\97V\82Ñ\82½\82©\82Á\82½
+[2A 0x0003B7FC 00 Marisa *Remilia]
+\82»\82µ\82Ä\81c\8f\9f\82Â\82Ì\82Í\82±\82Ì\8e\84\82æ\81c\81I
+[2A 0x0003B9F0 00 *Marisa Remilia]
+\88«\82¢\82¯\82Ç
+\82¨\82à\82¿\82á\82É\82È\82é\8bC\82Í\82È\82¢\82È\81I
+[2A 0x0003BBE4 00 *Marisa Remilia]
+\8e\84\82Ì\96Ú\93I\82Í\82»\82Ì\8b¾
+\82¨\95ó\82ð\82¢\82½\82¾\82­\82±\82Æ\82¾\82¯\82¾\81I
+[2A 0x0003BDD8 00 Marisa *Remilia]
+\8eE\82é\8bC\82È\82Ì\82Ë\81c
+\8að\82µ\82¢\81c
+[2A 0x0003BFCC 00 Marisa *Remilia]
+\82­\82­\82­\81c\82»\82µ\82Ä\82»\82ê\82ª
+\82±\82Ì\8e\84\82Ì\96]\82Ý\82Å\82à\82 \82é\81c
+[2A 0x0003C1C0 00 Marisa *Remilia]
+\95\91\82¤\89Ø\82Ì\8eé\82Ì\82æ\82¤\82É\81c
+[2A 0x0003C3B4 00 Marisa *Remilia]
+\94ü\82µ\82­\8c\8c\82ð\8eU\82ç\82·\82Ì\81I
+[28 0x0003CA78 00 *Marisa Remilia]
+\82³\82Á\81A\82¨\95ó\82ð\82à\82ç\82¨\81[\82©
+[2A 0x0003CC80 00 Marisa *Remilia]
+\95ó\82ª\8eè\82É\93ü\82Á\82½\82Æ\82µ\82Ä
+\82 \82È\82½\82Í\82Ç\82¤\82µ\82½\82¢\82Ì\81H
+[2A 0x0003CE74 00 Marisa *Remilia]
+\89½\82ð\93¾\82æ\82¤\82Æ\82¢\82¤\82Â\82à\82è\82È\82Ì\81H
+[2A 0x0003D068 00 *Marisa Remilia]
+\82æ\82è\8b­\82¢\96\82\8fp\81I
+[2A 0x0003D25C 00 Marisa *Remilia]
+\8b­\82³\82ð\8b\81\82ß\82é\82©\81c
+[2A 0x0003D450 00 Marisa *Remilia]
+\8e\84\82Í\81c\89½\82ª\97~\82µ\82­\82Ä
+\90í\82Á\82Ä\82¢\82é\82Ì\82¾\82ë\82¤\82©\81c
+[2A 0x0003D644 00 *Marisa Remilia]
+\82¨\91O\82Í\97V\82Ñ\82½\82©\82Á\82½\82ñ\82¾\82ë\81H
+\8e\84\82â\97ì\96²\82ð\82¨\82à\82¿\82á\82É\82µ\82Ä
+[2A 0x0003D838 00 *Marisa Remilia]
+\89i\89\93\82Ì\92e\96\8b\82²\82Á\82±\82Æ\82©
+\82»\82ñ\82È\8a´\82\82\82á\82È\82¢\82Ì\82©\81H
+[2A 0x0003DA2C 00 Marisa *Remilia]
+\82»\82¤\81c\82»\82¤\82©\81c
+\82Ó\82Ó\81A\82»\82Ì\92Ê\82è\82©\82à\82Ë
+[2A 0x0003DC20 00 Marisa *Remilia]
+\8e\84\82Í\82±\82Ì\90¢\8aE\82ª
+[2A 0x0003DE14 00 Marisa *Remilia]
+\88«\96²\82Ý\82½\82¢\82É\91±\82­\90¢\8aE\82ª
+\82¢\82Â\82à\88¤\82¨\82µ\82©\82Á\82½\81c
+[2A 0x0003E008 00 Marisa *Remilia]
+\82¾\82©\82ç\89^\96½\82Ì\92f\90â\82ð\94Û\92è\82µ\82½
+[2A 0x0003E1FC 00 Marisa *Remilia]
+\82Ü\82é\82Å\89ñ\93]\96Ø\94n\82Ý\82½\82¢\82É
+\82®\82é\82®\82é\82®\82é\82®\82é\93¯\82\8ci\90F
+[2A 0x0003E3F0 00 Marisa *Remilia]
+\8ay\82µ\82¢\82Ì\82É\81A\8að\82µ\82¢\82Ì\82É\81c
+\8e~\82ß\82ç\82ê\82È\82­\82È\82Á\82½\82©\82ç\81c
+[2A 0x0003E5E4 00 *Marisa Remilia]
+\8e~\82ß\82ç\82ê\82È\82¢\82Á\82Ä\82Ç\82¤\82¢\82¤\82±\82Æ\82¾\81H
+\82¨\91O\82ª\8en\82ß\82½\82±\82Æ\82¾\82ë\81H
+[2A 0x0003E7D8 00 Marisa *Remilia]
+\82«\82Á\82©\82¯\82Í\81c\82»\82¤
+[2A 0x0003E9CC 00 Marisa *Remilia]
+\82Å\82à\81A\88«\82¢\82Ì\82Í\82 \82Ì\8b¾\81B
+\81u\91\93\96\82\8b¾\81v\82Ì\82¹\82¢\82æ
+[2A 0x0003EBC0 00 Marisa *Remilia]
+\8e\84\82Í\8e¸\94s\82µ\82Ä\82¢\82È\82¢
+[2A 0x0003EDB4 00 *Marisa Remilia]
+\8e¸\94s\82Á\82Ä\81c\82â\82Á\82Ï\82è
+\82¨\91O\82Ì\82¹\82¢\82È\82ñ\82¾\82È\81I
+[2A 0x0003EFA8 00 Marisa *Remilia]
+\82Ó\81A\82Ó\82ñ\82Á\81c\81I
+[2A 0x0003F19C 00 *Marisa Remilia]
+\82Á\82½\82­\81c\82\82á\82 \82¨\91O\82Ì\97Í\82ª
+\82»\82Ì\81u\91\93\96\82\8b¾\81v\82Á\82Ä\82¨\95ó\82Ì\82¹\82¢\82Å
+[2A 0x0003F390 00 *Marisa Remilia]
+\96\\91\96\82µ\82Ä\82é\82Á\82Ä\82í\82¯\82©\81H
+[2A 0x0003F584 00 Marisa *Remilia]
+\82Ó\82Ó\82Ó\82Ó\82Ó\81c\81B
+\8bC\82ª\89\93\82­\82È\82é\82Ù\82Ç\82Ì\8cJ\82è\95Ô\82µ
+[2A 0x0003F778 00 Marisa *Remilia]
+\93¯\82\8dg\82¢\96\82Æ
+\8bL\89¯\82ð\8e¸\82Á\82½\97ì\96²\82Æ\82 \82È\82½
+[2A 0x0003F96C 00 Marisa *Remilia]
+\8c©\82Ä\82¢\82é\82Ì\82Í\96ù\89õ\82¾\82Á\82½\82í
+[2A 0x0003FB60 00 *Marisa Remilia]
+\82Å\82³\81B
+\82Ç\82¤\82·\82ê\82Î\82¢\82¢\82ñ\82¾\81H
+[2A 0x0003FD54 00 *Marisa Remilia]
+\82Ç\82¤\82·\82ê\82Î\81u\91\93\96\82\8b¾\81v\82Ì\96\\91\96\82ð
+\8e~\82ß\82ç\82ê\82é\82ñ\82¾\81H
+[2A 0x0003FF48 00 Marisa *Remilia]
+\89½\82à\90S\94z\82Í\82¢\82ç\82È\82¢
+[2A 0x0004013C 00 *Marisa Remilia]
+\82Í\81H
+[2A 0x00040330 00 Marisa *Remilia]
+\82 \82È\82½\82ª\82±\82±\82É\97\88\82½\82Æ\82¢\82¤\82±\82Æ\82Í
+\8dç\96é\82Ì\8f\80\94õ\82ª\82Ü\82à\82È\82­\8fI\82í\82é
+[2A 0x00040524 00 Marisa *Remilia]
+\82»\82ë\82»\82ë\8f\80\94õ\82ª
+\90®\82Á\82½\82É\88á\82¢\82È\82¢\82í
+[2A 0x00040718 00 *Marisa Remilia]
+\82»\82ê\82Á\82Ä\82¨\92\83\89ï\82Ì\98b\82©\81H
+[2A 0x0004090C 00 Marisa *Remilia]
+\91¼\82É\89½\82ª\82 \82é\81H
+\82³\82 \8ds\82­\82í\82æ\81c
+[2A 0x00040B00 00 *Marisa Remilia]
+\82¿\82å\81A\82¿\82å\82Á\82Æ\91Ò\82Ä\82Á\82Ä\81I
+\8b¾\82Í\82¨\95ó\82Í\81H
+[2A 0x00040CF4 00 Marisa *Remilia]
+\82 \82Æ\82Å\8a\84\82Á\82Ä\82µ\82Ü\82¤\82¯\82Ç\81H
+[2A 0x00040EE8 00 *Marisa Remilia]
+\82¦\81c\82Ü\82\82©\82æ\81c
+[2A 0x000410DC 00 Marisa *Remilia]
+\8a\84\82ç\82È\82¯\82ê\82Î
+\92N\82à\82±\82±\82©\82ç\8fo\82ç\82ê\82È\82¢
+[2A 0x000412D0 00 Marisa *Remilia]
+\82»\82ê\82É\81c\89^\96½\82Ì
+\90V\82½\82È\82Í\82\82Ü\82è\82à\96G\89è\82µ\82È\82¢
+[2A 0x000414C4 00 *Marisa Remilia]
+\82Ü\82½\96ó\82Ì\82í\82©\82ñ\82Ë\81[\82±\82Æ\82ð
+\82¿\82å\82Á\82Æ\82Í\82í\82©\82é\82æ\82¤\90à\96¾\82µ\82ë\82æ\82È
+[2A 0x000416B8 00 Marisa *Remilia]
+\82 \82È\82½\82Ì\93ª\82Å\82Í\96³\97\9d\82Ë
+[2A 0x000418AC 00 *Marisa Remilia]
+\89½\82¾\82æ\81I
+[2A 0x00041AA0 00 *Marisa Remilia]
+\81c\82¨\92\83\89ï\82Á\82Ä\82©\82ç\82É\82Í
+\82²\92y\91\96\82ª\82 \82é\82ñ\82¾\82ë\82¤\82È\82Á\81I
+[2A 0x00041C94 00 Marisa *Remilia]
+\82à\82¿\82ë\82ñ\81B
+\8dç\96é\82Ì\9f¹\82ê\82½\82Æ\82Á\82Ä\82¨\82«\82Ì\8dg\92\83\82à\82Ë
+[2A 0x00041E88 00 Marisa *Remilia]
+\93Á\95Ê\82È\83P\81[\83L\82à\82 \82é
+[2A 0x0004207C 00 *Marisa Remilia]
+\82Ó\82¤\82ñ\81c
+[2A 0x00042270 00 *Marisa Remilia]
+\82\82á\81A\82Ü\82 \81A\82¢\82Á\82©\81I
+[2A 0x00042464 00 *Marisa Remilia]
+\82 \81[\82Á\81I\81H
+[2A 0x00042658 00 Marisa *Remilia]
+\82Ç\82¤\82µ\82½\81H
+[2A 0x0004284C 00 *Marisa Remilia]
+\97ì\96²\82É\82¨\82â\82Â\82ð\94\83\82Á\82Ä\82±\82¢\82Á\82Ä
+\8c¾\82í\82ê\82Ä\82½\82Ì\8ev\82¢\82¾\82µ\82½\81I
+[2A 0x00042A40 00 *Marisa Remilia]
+\82â\82Á\82×\82¦\81A\82Ç\82¤\82µ\82æ\82¤\81c
+[2A 0x00042C34 00 Marisa *Remilia]
+\82Ó\82Ó\81A\82»\82Ì\90S\94z\82Ì\95K\97v\82Í\82È\82¢\82í
+[2A 0x00042E28 00 Marisa *Remilia]
+\92\83\89ï\82É\82Í\89Ù\8eq\82ª\82Â\82«\82à\82Ì\81B
+\82»\82ê\82É\97ì\96²\82à\8fµ\82¢\82Ä\82¢\82é
+[2A 0x0004301C 00 *Marisa Remilia]
+\82¨\82¨\82Á\81I
+\82Å\82«\82é\8eq\82¾\82È\82Á\83\8c\83~\83\8a\83A\81I
+[2A 0x00043210 00 Marisa *Remilia]
+\93\96\82½\82è\91O\82æ\81c
+\8e\84\82ð\92N\82¾\82Æ\8ev\82Á\82Ä\82¢\82é\82Ì\81H
+[2A 0x00043404 00 Marisa *Remilia]
+\8dg\96\82\8aÙ\82Ì\8eå\82É\82µ\82Ä
+\88Å\82ÌáÅ\91®\82ð\93\9d\82×\82é\8eÒ
+[2A 0x000435F8 00 Marisa *Remilia]
+\82»\82µ\82Ä\81c
+[2A 0x000437EC 00 *Marisa Remilia]
+\96ù\89õ\82È\82¨\92\83\89ï\82Ì\8eå\8dÃ\8eÒ\82¾\82ë\81H
+[2A 0x000439E0 00 Marisa *Remilia]
+\82ä\81A\96ù\89õ\82È\81c\82¨\92\83\89ï\81c
+[2A 0x00043BD4 00 Marisa *Remilia]
+\81c\82Ü\82 \82¢\82¢\82í\81B
+\82³\82 \81A\8ds\82­\82í\82æ
+[2A 0x00043DC8 00 Marisa *Remilia]
+\8c\8c\82à\92\83\82à\97â\82¦\82½\82à\82Ì\82Å\82Í
+\95s\96ù\89õ\82È\82¾\82¯\82¾\82©\82ç\82Ë
+[28 0x0004448C 00 Marisa *Remilia]
+\82 \82ç\81A\95s\88Ó\91Å\82¿\82Æ\82Í
+\82È\82©\82È\82©\8cÆ\91§\82Ë
+[2A 0x00044694 00 *Marisa Remilia]
+\82Ü\82³\82©\8cø\82©\82È\82¢\82È\82ñ\82Ä\81c\81I\81H
+[2A 0x00044888 00 Marisa *Remilia]
+\94­\91z\82Í\97Ç\82©\82Á\82½\82¯\82Ç
+\91\8a\8eè\82ª\8e\84\82Æ\82¢\82¤\82±\82Æ\82ð\96Y\82ê\82Ä\82¢\82½\82æ\82¤\82Ë
+[2A 0x00044A7C 00 *Marisa Remilia]
+\82®\82Ê\82Ê\81c
+[2A 0x00044C70 00 Marisa *Remilia]
+\82³\82 \81A\91±\82«\82ð\8en\82ß\82é\82í\82æ\81I
+[28 0x00045334 02 *Marisa]
+\82 \82 \81c
+[2A 0x000454E4 02 *Marisa]
+\94ü\96¡\82©\82Á\82½\82È\81A\82 \82Ì\83P\81[\83L\81c
+[2A 0x00045678 02 *Marisa]
+\94\92\82¢\83N\83\8a\81[\83\80\82Ì\8fã\82É
+\8dg\82¢\82³\82­\82ç\82ñ\82Ú\82©\81c
+[2A 0x0004580C 02 *Marisa]
+\82 \82¢\82Â\82à\82³\82Á\82³\82Æ
+\8fo\82Ä\82­\82ê\82Î\82¢\82¢\82Ì\82É
+[2A 0x000459A0 02 *Marisa]
+\82»\82µ\82½\82ç\81A\82±\82¤\82µ\82Ä\82í\82´\82í\82´
+\8c}\82¦\82É\82¢\82­\8eè\8aÔ\82à\8fÈ\82¯\82½\82Ì\82É\82È\82Á
+[2A 0x00045B34 02 *Marisa]
+\82Ü\82Á\82½\82­
+\82 \82ê\82¾\82¯\93ö\82â\82©\82É\82â\82Á\82Ä\82½\82ç
+[2A 0x00045CC8 02 *Marisa]
+\82Ó\82Â\81[\82Í\92Þ\82ç\82ê\82Ä
+\8fo\82Ä\82­\82é\82Í\82¸\82¾\82ë\81H
+[2A 0x00045E5C 02 *Marisa]
+\82 \82Ì\82Ü\82Ü\82Ì\83y\81[\83X\82Å
+\83`\83\8b\83m\82ª\83P\81[\83L\82ð\90H\82Á\82Ä\82½\82ç
+[2A 0x00045FF0 02 *Marisa]
+\82¨\92\83\89ï\82Ì\82¨\8aJ\82«\82à
+\8bß\82¢\82Á\82Ä\82Ì\82É\82³
+[2A 0x00046184 02 *Marisa]
+\81c\8ed\95û\82È\82¢\81B
+\82 \82¢\82Â\82Ì\82Æ\82±\82ë\82Ü\82Å\8ds\82Á\82Ä\82â\82é\82©
+[28 0x000467E8 00 *Marisa Remilia]
+\82æ\82Á
+[2A 0x000469F0 00 Marisa *Remilia]
+\8d\95\94\92\81I\81H
+[2A 0x00046BE4 00 *Marisa Remilia]
+\8d\95\94\92\82Á\82Ä\81c
+[2A 0x00046DD8 00 *Marisa Remilia]
+\8e\84\82Ì\82±\82Æ\82©\81I\81H
+[2A 0x00046FCC 00 *Marisa Remilia]
+\96\82\97\9d\8d¹\82¾\82ë\81I\81H
+\96Y\82ê\82½\82Ì\82©\81H
+[2A 0x000471C0 00 Marisa *Remilia]
+\82»\82ñ\82È\82í\82¯\82È\82¢\82\82á\82È\82¢
+[2A 0x000473B4 00 *Marisa Remilia]
+\81I\81H
+[2A 0x000475A8 00 *Marisa Remilia]
+\82Á\82½\82­\81A\83t\83\89\83\93\83h\81[\83\8b\82Í
+\82â\82Á\82Æ\82¨\96Ú\8ao\82ß\82Ý\82½\82¢\82¾\82È
+[2A 0x0004779C 00 Marisa *Remilia]
+\82»\82¤\81c
+\82È\82ñ\82¾\82©\91\9b\81X\82µ\82¢\82Æ\8ev\82Á\82Ä
+[2A 0x00047990 00 Marisa *Remilia]
+\90l\82ª\90Q\82Ä\82é\8aÔ\82É\82È\82É\82µ\82Ä\82½\82Ì\81H
+[2A 0x00047B84 00 *Marisa Remilia]
+\82¿\82å\82Á\82Æ\82¨\92\83\89ï\82ð\82Ë
+[2A 0x00047D78 00 Marisa *Remilia]
+\82»\82¤\82È\82Ì\81B
+\82»\82ñ\82È\97\\92è\81A\92m\82ç\82È\82©\82Á\82½\82í
+[2A 0x00047F6C 00 *Marisa Remilia]
+\83\8c\83~\83\8a\83A\82ª
+\82±\82Á\82»\82è\8cv\89æ\82µ\82Ä\82½\82ñ\82¾
+[2A 0x00048160 00 *Marisa Remilia]
+\82»\82ê\82É\82µ\82Ä\82à\82³\81A
+\83t\83\89\83\93\83h\81[\83\8b\82Í\82¨\90Q\96V\82³\82ñ\82¾\82æ\82È
+[2A 0x00048354 00 *Marisa Remilia]
+\82¨\82©\82°\82Å\91Ò\82¿\82­\82½\82Ñ\82ê\82Ä
+\82¿\82å\82Á\82Æ\90H\82×\89ß\82¬\82½\82\82á\82ñ
+[2A 0x00048548 00 Marisa *Remilia]
+\82¨\8eo\82³\82Ü\82Í\82Ç\82¤\82µ\82Ä\82¢\82é\82Ì\81H
+[2A 0x0004873C 00 *Marisa Remilia]
+\83\8c\83~\83\8a\83A\82È\82ç
+\8e\84\82Ì\82Æ\82È\82è\82Å\96°\82Á\82Ä\82½\82æ
+[2A 0x00048930 00 Marisa *Remilia]
+\81c\81c\81I
+[2A 0x00048B24 00 Marisa *Remilia]
+\8eo\97l\82É\89½\82µ\82½\82Ì\81c
+[2A 0x00048D18 00 *Marisa Remilia]
+\82¢\82â\95Ê\82É\89½\82à\81B
+\95 \82¢\82Á\82Ï\82¢\82Å\90Q\82Ä\82é\82¾\82¯\82Å\81c
+[2A 0x00048F0C 00 Marisa *Remilia]
+\83t\83t\81c
+[2A 0x00049100 00 Marisa *Remilia]
+\83t\83t\83t\83t\83t\83t\83t\83t\83t\81ô
+[2A 0x000492F4 00 Marisa *Remilia]
+\8bY\8c¾\82Í\82½\82­\82³\82ñ\82æ\81c\90l\8aÔ\81B
+\82¨\8eo\97l\82É\98TåS\82ð\93­\82¢\82½\82¤\82¦
+[2A 0x000494E8 00 Marisa *Remilia]
+\8aÙ\82ð\8dr\82ç\82µ\82Ä
+\90\82«\82Ä\8bA\82ê\82é\82Æ\8ev\82Á\82Ä\82é\82Ì\81H
+[2A 0x000496DC 00 *Marisa Remilia]
+\82È\82ñ\82©\82æ\82­\82í\82©\82ñ\82È\82¢\82¯\82Ç
+[2A 0x000498D0 00 *Marisa Remilia]
+\96Ú\82ª\8ao\82ß\82Ä
+\82â\82é\8bC\82É\82È\82Á\82½\82Ý\82Ä\81[\82¾\82È
+[2A 0x00049AC4 00 *Marisa Remilia]
+\82¿\82å\82¤\82Ç\82¢\82¢\81I
+\95 \82²\82È\82µ\82É\91Î\8c\88\82¾\81I
+[2A 0x00049CB8 00 Marisa *Remilia]
+\82¤\82Ó\82Ó\81c\82³\82Á\82«\82Ü\82Å
+\8c©\82Ä\82¢\82½\88«\96²\82Ì\91±\82«\82ª\8c©\82ç\82ê\82é\82Ë
+[2A 0x00049EAC 00 Marisa *Remilia]
+\96\82\97\9d\8d¹\82à
+\88ê\8f\8f\82É\8c©\82½\82¢\81H
+[2A 0x0004A0A0 00 *Marisa Remilia]
+\82Ç\82ñ\82È\96²\82È\82ñ\82¾\81H
+[2A 0x0004A294 00 Marisa *Remilia]
+\82·\82×\82Ä\82ª\8cJ\82è\95Ô\82³\82ê\82Ä
+\82¸\82¤\82Á\82Æ\8fI\82í\82ç\82È\82¢\82Ì
+[2A 0x0004A488 00 Marisa *Remilia]
+\82»\82ê\82Å\82Ë\81c
+[2A 0x0004A67C 00 Marisa *Remilia]
+\8e\84\82Í\82»\82ê\82ð
+\8fI\82í\82ç\82¹\82Ä\82µ\82Ü\82¤\82©\82ç
+[2A 0x0004A870 00 Marisa *Remilia]
+\8aF\82É\8d¦\82Ü\82ê\82Ä\82µ\82Ü\82¤\82Ì\82æ\81c
+[2A 0x0004AA64 00 *Marisa Remilia]
+\82 \81A\82¢\82â\81A\82»\82ê\82Á\82Ä
+\82«\82Á\82Æ\90³\96²\82¾\82º\81H
+[2A 0x0004AC58 00 Marisa *Remilia]
+\82¾\82Á\82½\82ç\81A\82±\82±\82Í
+\88«\96²\82Ì\91±\82«\82È\82Ì\82Ë
+[2A 0x0004AE4C 00 Marisa *Remilia]
+\82¢\82¢\82í\81A\82 \82È\82½\82Ì\82±\82Æ
+\8dg\82É\90õ\82ß\82½\82­\82È\82Á\82Ä\82«\82½\81c
+[2A 0x0004B040 00 Marisa *Remilia]
+\8eE\82Á\82Ä\82â\82é\82í\81I\81I
+[2A 0x0004B234 00 *Marisa Remilia]
+\96]\82Þ\82Æ\82±\82ë\82¾\81I
+[28 0x0004B8F8 00 *Marisa Remilia]
+\82Ü\81A\82±\82ñ\82È\82à\82ñ\82©\82È\81ô
+[2A 0x0004BB00 00 Marisa *Remilia]
+\81c\96²\82Å\8c©\82½\82Ì\82Æ\88á\82¤\81c
+[2A 0x0004BCF4 00 *Marisa Remilia]
+\82Ç\82ñ\82È\96²\82¾\82Á\82½\82ñ\82¾\82æ
+[2A 0x0004BEE8 00 Marisa *Remilia]
+\96\82\97\9d\8d¹\82Æ\8e\84\82ª\89f\82Á\82½
+\97â\82½\82¢\8fÉ\8eq\82Ý\82½\82¢\82È\89½\82©\82ð
+[2A 0x0004C0DC 00 Marisa *Remilia]
+\8e\84\82Í\82±\82¤\82µ\82Ä
+\82¬\82ã\82Á\82Æ\82µ\82Ä\81c
+[2A 0x0004C2D0 00 *Marisa Remilia]
+\83p\83\8a\81[\83\93\81I
+\82¾\82ë\82Á\81H
+[2A 0x0004C4C4 00 Marisa *Remilia]
+\81c\81I
+[2A 0x0004C6B8 00 Marisa *Remilia]
+\82Ç\82¤\82µ\82Ä\92m\82Á\82Ä\82¢\82é\82Ì\81H
+[2A 0x0004C8AC 00 *Marisa Remilia]
+\82¾\82©\82ç\82³\82Á\82«\8c¾\82Á\82½\82¾\82ë\81H
+\90³\96²\82Á\82Û\82¢\82Á\82Ä
+[2A 0x0004CAA0 00 *Marisa Remilia]
+\82 \82Æ\82Å\82³\81u\91\93\96\82\8b¾\81v\82Á\82Ä\8b¾\82ð
+\89ó\82µ\82Ä\82Ù\82µ\82¢\82ñ\82¾
+[2A 0x0004CC94 00 *Marisa Remilia]
+\82\82á\82È\82¢\82Æ
+\92N\82à\82±\82±\82©\82ç\8fo\82ç\82ê\82È\82¢\82µ
+[2A 0x0004CE88 00 *Marisa Remilia]
+\8e\84\82½\82¿\82à
+\89Æ\82É\8bA\82ê\82È\82¢\82©\82ç\82³\82Á
+[2A 0x0004D07C 00 Marisa *Remilia]
+\92N\82à\8aO\82É\8fo\82ç\82ê\82È\82¢\82Ì\82Í
+\94ß\82µ\82¢\82±\82Æ\82©\82à\82µ\82ê\82È\82¢\82¯\82Ç
+[2A 0x0004D270 00 Marisa *Remilia]
+\82¿\82å\82Á\82Æ\82»\82ê\82à\82¢\82¢\82©\82à\81c
+[2A 0x0004D464 00 Marisa *Remilia]
+\82¸\82Á\82Æ\88ê\8f\8f\82Ë
+[2A 0x0004D658 00 *Marisa Remilia]
+\82¢\82â\81A\82»\82ê\82Í\8a¨\95Ù\81c
+[2A 0x0004D84C 00 Marisa *Remilia]
+\81I\81H
+[2A 0x0004DA40 00 *Marisa Remilia]
+\82¢\82â\82¢\82â\81A\83V\83\87\83b\83N\8eó\82¯\82é\82È\82æ\81I
+[2A 0x0004DC34 00 *Marisa Remilia]
+\88ê\8f\8f\82É\92\87\97Ç\82­\82Æ\82©\82ª
+\8c\99\82È\82ñ\82\82á\82È\82­\82Ä
+[2A 0x0004DE28 00 *Marisa Remilia]
+\8aO\82É\8fo\82ç\82ê\82È\82¢\82Ì\82ª
+\8d¢\82é\82Á\82Ä\82±\82Æ\82¾\82©\82ç\81I
+[2A 0x0004E01C 00 Marisa *Remilia]
+\82Ó\82¤\81c
+[2A 0x0004E210 00 Marisa *Remilia]
+\96\82\97\9d\8d¹\81A\8d¡\82Ì\82Í\8fç\92k\82æ
+[2A 0x0004E404 00 *Marisa Remilia]
+\90^\8aç\82·\82¬\82é\82¾\82ë\81I
+[2A 0x0004E5F8 00 *Marisa Remilia]
+\82Ü\81A\82¢\82¢\82â\81B
+\82Ù\82ç\81A\91\81\82­\8ds\82±\82Á
+[2A 0x0004E7EC 00 Marisa *Remilia]
+\82¨\92\83\89ï\82É\81c\81H
+\8aO\82É\8fo\82é\82Ì\82Í\81c
+[2A 0x0004E9E0 00 *Marisa Remilia]
+\82 \82 \81A\91å\8fä\95v\81B
+\92ë\82Å\82â\82Á\82Ä\82é\82¯\82Ç
+[2A 0x0004EBD4 00 *Marisa Remilia]
+\8d¡\82Í\8dg\82¢\96\82ª\8fo\82Ä\82é\82©\82ç
+\82¾\82Á\82½\82ç\8bz\8c\8c\8bS\82Å\82à\95½\8bC\82¾\82ë\81H
+[2A 0x0004EDC8 00 *Marisa Remilia]
+\82Ù\82ç\81A\8aO\82É\8fo\82é\82ñ\82¾\82æ
+[2A 0x0004EFBC 00 Marisa *Remilia]
+\81c\82í\82©\82Á\82½
+[2A 0x0004F1B0 00 Marisa *Remilia]
+\82¨\92\83\89ï\81A\8ay\82µ\82Ý\82Ë
+[2A 0x0004F3A4 00 *Marisa Remilia]
+\82¾\82ë\81H
+[2A 0x0004F598 00 *Marisa Remilia]
+\94\92\82¢\83N\83\8a\81[\83\80\82Æ
+\8dg\82¢\82³\82­\82ç\82ñ\82Ú\82ª\82Ì\82Á\82Ä\82é\82³
+[2A 0x0004F78C 00 *Marisa Remilia]
+\82·\82²\82¢\94ü\96¡\82¢\83P\81[\83L\82ª\82 \82é\82ñ\82¾
+[2A 0x0004F980 00 *Marisa Remilia]
+\83`\83\8b\83m\82ª\91_\82Á\82Ä\82½\82¯\82Ç
+\8dç\96é\82É\8am\95Û\82³\82¹\82Ä\82é\82©\82ç
+[2A 0x0004FB74 00 Marisa *Remilia]
+\82 \82è\82ª\82Æ\82¤\81A\97D\82µ\82¢\82í\82Ë
+[2A 0x0004FD68 00 *Marisa Remilia]
+\82»\81A\82»\82¤\82Å\82à\82È\82¢\82¯\82Ç\82È\82Á
+[2A 0x0004FF5C 00 *Marisa Remilia]
+\82Ù\82ç\82Ý\82ñ\82È\91Ò\82Á\82Ä\82é\82ñ\82¾\82©\82ç
+\82³\82Á\82³\82Æ\8ds\82­\82¼\81I
+[2A 0x00050150 00 Marisa *Remilia]
+\82Ó\82¤\82ñ\81c\82Ý\82ñ\82È\82©\81c
+[2A 0x00050344 00 Marisa *Remilia]
+\82½\82Ü\82É\82È\82ç
+\82»\82ê\82à\82¢\82¢\82©\82à\82µ\82ê\82È\82¢
+[2A 0x00050538 00 Marisa *Remilia]
+\96\82\97\9d\8d¹\81c
+[2A 0x0005072C 00 *Marisa Remilia]
+\82ñ\81H
+[2A 0x00050920 00 Marisa *Remilia]
+\91¾\82Á\82¿\82á\82¤\82©\82ç\81c
+\82¨\92\83\89ï\82Å\82Í\81c
+[2A 0x00050B14 00 Marisa *Remilia]
+\82à\82¤\83R\83\93\83e\83B\83j\83\85\81[\82Å\82«\82È\82¢\82Ë
+[28 0x000511D8 02 *Marisa]
+\82È\82Á\82È\82ñ\82¾\81I\81H
+[2A 0x00051388 02 *Marisa]
+\89½\82à\8c©\82¦\82È\82¢\82µ\81A\82±\82ê\82Á\82Ä\81I\81H
+[2A 0x0005151C 02 *Marisa]
+\82Ç\82±\82Ö\98A\82ê\82Ä\82©\82ê\82é\82ñ\82¾\81c
+[2A 0x000516B0 02 *Marisa]
+\8c³\82Ì\8fê\8f\8a\82É\97¬\82³\82ê\82Ä\82é\82Ì\82©\81c\81H
+[28 0x00051D14 02 *Marisa]
+\82ñ\81H
+[2A 0x00051EC4 02 *Marisa]
+\82±\82±\82Í\82Ç\82±\82¾\81H
+[2A 0x00052058 02 *Marisa]
+\82í\82Á\81A\82¿\82å\81A\82¿\82å\82Á\82Æ\91Ò\82Ä\82Á\82Ä\81I
+\90g\91Ì\82ª\82¢\82¤\82±\82Æ\82ð\82«\82©\82Ë\81[\81I\81H
+[2A 0x000521EC 02 *Marisa]
+\82±\82Ì\82Ü\82Ü\82Ç\82±\82©\82É\97¬\82³\82ê\82Ä\81c
diff --git a/scripts/jp/SceStageReimu.txt b/scripts/jp/SceStageReimu.txt
new file mode 100644 (file)
index 0000000..a273795
--- /dev/null
@@ -0,0 +1,1666 @@
+[28 0x00000374 02 *Reimu]
+\82ä\82Á\82­\82è\82¨\92\83\82Å\82à\82Á\82Ä
+\8ev\82Á\82Ä\82½\82¯\82Ç
+[2A 0x00000524 02 *Reimu]
+\82¨\92\83\82¾\82¯\82 \82Á\82Ä
+\82¨\89Ù\8eq\82ª\82È\82¢\82Ì\82È\82ç
+[2A 0x000006B8 02 *Reimu]
+\82³\82³\82â\82©\82È\8ay\82µ\82Ý\82·\82ç\82à
+\82Ü\82Ü\82È\82ç\82È\82¢\82Ì\82æ\82Ë
+[2A 0x0000084C 02 *Reimu]
+\82»\82ê\82É\82µ\82Ä\82à\81A\96\82\97\9d\8d¹\82Ì\82â\82Â
+\82¢\82Á\82½\82¢\82Ç\82±\82Ö\81c
+[2A 0x000009E0 02 *Reimu]
+\82¨\95ó\82ª\82Ç\82¤\82±\82¤\82Á\82Ä
+\94ò\82Ñ\82¾\82µ\82Ä\8ds\82Á\82½\82©\82ç
+[2A 0x00000B74 02 *Reimu]
+\82«\82Á\82Æ\82¨\82Â\82©\82¢\82Ì\82±\82Æ\82È\82ñ\82Ä
+\96Y\82ê\82Ä\82é\82É\88á\82¢\82È\82¢\82í
+[2A 0x00000D08 02 *Reimu]
+\82Ü\82½\95n\96R\82­\82\82Ð\82©\82È\82¢\82Æ
+\82¢\82¢\82¯\82Ç\82Ë\81c
+[2A 0x00000E9C 02 *Reimu]
+\82 \82ê\81H
+[2A 0x00001030 02 *Reimu]
+\82±\82Ì\8cÎ\82Á\82Ä
+\82±\82ñ\82È\82É\8dL\82©\82Á\82½\81H
+[2A 0x000011C4 02 *Reimu]
+\88á\82¤\81B
+\82±\82±\82Í\91O\82Æ\89½\82à\95Ï\82í\82Á\82Ä\82È\82¢
+[2A 0x00001358 02 *Reimu]
+\96\82Å\8e\8b\8aE\82ª\88«\82­\82È\82Á\82Ä\82¢\82é\82©\82ç
+\8dL\82­\82È\82Á\82½\82Ý\82½\82¢\82È\8bC\82ª\82µ\82½
+[2A 0x000014EC 02 *Reimu]
+\82Á\82Ä\81A\82±\82Æ\82©\82È
+[2A 0x00001680 02 *Reimu]
+\81c\81c
+[2A 0x00001814 02 *Reimu]
+\82ñ\81c\81H
+[2A 0x000019A8 02 *Reimu]
+\82±\82ê\82Á\82Ä\82à\82µ\82©\82µ\82Ä
+\8dg\82¢\96\81c\81H
+[2A 0x00001B3C 02 *Reimu]
+\82Æ\82È\82é\82Æ\81A\82 \82¢\82Â\82Ì\8ed\8bÆ\82©
+[2A 0x00001CD0 02 *Reimu]
+\90_\8eÐ\82É\97\88\82È\82¢\82Æ\8ev\82Á\82½\82ç
+\89½\82©\82½\82­\82ç\82ñ\82Å\82é\82í\82¯\82Ë
+[2A 0x00001E64 02 *Reimu]
+\8ed\95û\82È\82¢\81c
+[2A 0x00001FF8 02 *Reimu]
+\8ds\82Á\82Ä\82Ý\82é\82©\81A\8dg\96\82\8aÙ\82Ö\81I
+[28 0x0000265C 00 Reimu *Cirno]
+\82©\82Á\82©\82Á\82©\82Á\82©
+[2A 0x00002864 00 *Reimu Cirno]
+\82Å\82Ä\82«\82½\82æ
+[2A 0x00002A58 00 Reimu *Cirno]
+\81c\82¦\82Ö\82Ö
+\8fo\82Ä\82«\82¿\82á\82Á\82½
+[2A 0x00002C4C 00 *Reimu Cirno]
+\82Í\82¢\82Í\82¢
+[2A 0x00002E40 00 Reimu *Cirno]
+\82Í\82 \81c
+[2A 0x00003034 00 *Reimu Cirno]
+\89½\82Ì\82½\82ß\91§\82æ
+[2A 0x00003228 00 Reimu *Cirno]
+\8bó\8bC\82ð\93Ç\82ß\82È\82¢\90l\82Í
+\82±\82ê\82¾\82©\82ç\81c
+[2A 0x0000341C 00 *Reimu Cirno]
+\8e×\96\82\82Ý\82½\82¢\82¾\82©\82ç
+\8ds\82­\82Ë
+[2A 0x00003610 00 Reimu *Cirno]
+\82¿\82å\81A\82¿\82å\82Á\82Æ\81I
+[2A 0x00003804 00 Reimu *Cirno]
+\82±\82ê\82©\82ç\8c¾\82¤\91ä\8e\8c\82ð
+\82¿\82á\82ñ\82Æ\95·\82¯\81[\81I
+[2A 0x000039F8 00 *Reimu Cirno]
+\82¢\82¢\82¯\82Ç
+[2A 0x00003BEC 00 Reimu *Cirno]
+\82æ\81[\82µ\81I
+[2A 0x00003DE0 00 Reimu *Cirno]
+\82¤\82Ó\82Ó
+[2A 0x00003FD4 00 Reimu *Cirno]
+\82¦\82Ö\82Ö
+[2A 0x000041C8 00 Reimu *Cirno]
+\82 \82Í\82Í
+[2A 0x000043BC 00 Reimu *Cirno]
+\93¹\82É\82¡\81c\81c\96À\82¤\82Í\82\9f\82Á\81c\81I\81I
+[2A 0x000045B0 00 *Reimu Cirno]
+\96À\82Á\82Ä\82È\82ñ\82©\82¢\82È\82¢\82¯\82Ç\81H
+\82¢\82Â\82à\97\88\82Ä\82é\82\82á\82È\82¢
+[2A 0x000047A4 00 Reimu *Cirno]
+\82¦\81I\81@\82 \81I\81@\82¨\81I
+[2A 0x00004998 00 Reimu *Cirno]
+\82»\82Á\82©\82\9f\81I
+[2A 0x00004B8C 00 Reimu *Cirno]
+\82à\82¤\82Á\81A\82©\82Á\82±\82¢\82¢\91ä\8e\8c\82¾\82Á\82½\82Ì\82É
+\8e×\96\82\82·\82é\82È\82ñ\82Ä\82Ð\82Ç\82¢\82â\82Â\82¾\81I
+[2A 0x00004D80 00 *Reimu Cirno]
+\82í\82©\82Á\82½\81B
+\82\82á\82 \81A\82à\82¤\88ê\93x\8c¾\82Á\82Ä\82Ý\82½\82ç\81H
+[2A 0x00004F74 00 Reimu *Cirno]
+\82¤\81c\82»\82ñ\82È\8b}\82É\8c¾\82í\82ê\82Ä\82à
+\82Ç\82¤\82µ\82æ\82¤\81c
+[2A 0x00005168 00 Reimu *Cirno]
+\82¦\82¦\82Æ\81A\82¤\82¤\82ñ\82Æ\81A\82 \82 \82ñ\82Æ\81c
+[2A 0x0000535C 00 Reimu *Cirno]
+\82æ\81[\82µ\82Á\81A\82±\82ê\82Á\81I
+[2A 0x00005550 00 Reimu *Cirno]
+\94ò\82ñ\82Å\82¥\81[\89Î\82É\82¢\82é\82£\81[
+\89Ä\82Ì\92\8e\82Á\81I
+[2A 0x00005744 00 *Reimu Cirno]
+\8ft\82¾\82µ
+[2A 0x00005938 00 Reimu *Cirno]
+\82 \82¦\81H
+[2A 0x00005B2C 00 *Reimu Cirno]
+\82»\82ê\82É\81A\94ò\82ñ\82Å\82é\92\8e\82Á\82Û\82¢\82Ì\82Í
+\82»\82Á\82¿\82¾\82Æ\8ev\82¤\82¯\82Ç\81H
+[2A 0x00005D20 00 Reimu *Cirno]
+\82Ô\81[\82ñ\81A\82Á\82Ä\81H
+[2A 0x00005F14 00 *Reimu Cirno]
+\82»\82»
+[2A 0x00006108 00 Reimu *Cirno]
+\82Á\82Ä\81A\82 \82½\82¢\82Í
+\92\8e\82\82á\82È\82¢\82Á
+[2A 0x000062FC 00 *Reimu Cirno]
+\92\8e\92ö\93x\82Ì
+\8ds\93®\8c´\97\9d\82µ\82©\8e\9d\82Á\82Ä\82È\82¢\82Ì\82É\81H
+[2A 0x000064F0 00 Reimu *Cirno]
+\94n\8e­\82É\82µ\82â\82ª\82Á\82Ä\81[
+[2A 0x000066E4 00 Reimu *Cirno]
+\82 \82ê\81c\81H
+[2A 0x000068D8 00 Reimu *Cirno]
+\91O\82É\82à\82±\82ñ\82È\8a´\82\82Å
+\93{\82Á\82½\8bC\82ª\82·\82é\82¯\82Ç\82Á\81I\81H
+[2A 0x00006ACC 00 Reimu *Cirno]
+\82Ü\82 \82¢\82¢\82â
+[2A 0x00006CC0 00 Reimu *Cirno]
+\82 \82ñ\82½\82È\82ñ\82Ä
+\90â\91Î\97ë\93x\82Å\8f\88\92u\82µ\82Ä\95Û\91\82µ\82Ä\82â\82é\82Á\81I
+[2A 0x00006EB4 00 *Reimu Cirno]
+\82Ç\82¤\82µ\82Ä\95Û\91\81H
+[2A 0x000070A8 00 Reimu *Cirno]
+\92m\82ç\82È\82¢\82Á\81I
+[2A 0x0000729C 00 *Reimu Cirno]
+\92m\82ç\82È\82¢\82Å\8c¾\82¤\82ñ\82¾
+[2A 0x00007490 00 Reimu *Cirno]
+\82¢\82´\81A\8f\9f\95\89\8f\9f\95\89\81[\81I
+[2A 0x00007684 00 *Reimu Cirno]
+\90í\82¢\82½\82ª\82è\82È\82ñ\82¾\82©\82ç\81c
+[2A 0x00007878 00 *Reimu Cirno]
+\81c\82¢\82¢\82í
+[2A 0x00007A6C 00 *Reimu Cirno]
+\8e\84\82à\83L\83\89\83C\82\82á\82È\82¢\82µ
+[28 0x00008130 00 Reimu *Cirno]
+\82Þ\82Þ\82Þ\82Þ\82Þ\82£\81c
+\95\89\82¯\82¿\82á\82Á\82½\81c
+[2A 0x00008338 00 Reimu *Cirno]
+\82±\82ê\82©\82ç\82Ç\81[\82·\82é\82Ì\82³\82Á
+\83\89\83X\83{\83X\82ð\93|\82µ\82¿\82á\82Á\82½\82æ\82Á\81I
+[2A 0x0000852C 00 *Reimu Cirno]
+\82¢\82â\81B
+\83`\83\8b\83m\82Á\82Ä\8dÅ\8f\89\82¾\82µ
+[2A 0x00008720 00 Reimu *Cirno]
+\81c\82ª\82 \82 \82 \82 \82 \82 \82 \82ñ
+[2A 0x00008914 00 *Reimu Cirno]
+\90S\82Ì\92ê\82©\82ç\88Ó\8aO\82Á\82Ä\8aç\82µ\82½\82í
+\82±\82Ì\83\88\81[\83Z\83C
+[2A 0x00008B08 00 Reimu *Cirno]
+\82¦\82Ö\82Ö\82Ö\82Ö
+[2A 0x00008CFC 00 *Reimu Cirno]
+\82Ù\82ß\82Ä\82È\82¢\82¯\82Ç
+[2A 0x00008EF0 00 Reimu *Cirno]
+\82ç\82ñ\82ç\82ñ\82ç\82ç\82ñ\82ç\82ñ\81ô
+[2A 0x000090E4 00 *Reimu Cirno]
+\8ay\82µ\82¢\82Ý\82½\82¢\82Ë
+[2A 0x000092D8 00 Reimu *Cirno]
+\82Ü\82 \82Ë\82Á
+[2A 0x000094CC 00 *Reimu Cirno]
+\8c³\8bC\82Å\82æ\82ë\82µ\82¢\81B
+\82æ\81[\82µ\82æ\82µ\82æ\82µ\82æ\82µ\82æ\82µ
+[2A 0x000096C0 00 Reimu *Cirno]
+\82¦\82Ö\82Ö\82Ö\82Ö
+[2A 0x000098B4 00 Reimu *Cirno]
+\82®\82é\82®\82é\81B
+\82®\82é\82é\82é\82é\82é\82é\81[
+[2A 0x00009AA8 00 *Reimu Cirno]
+\82È\82Â\82©\82ê\82½\82©\81c
+[2A 0x00009C9C 00 Reimu *Cirno]
+\82È\82Á\81A\82È\82Â\82¢\82Ä\82È\82ñ\82©
+\82¢\82È\82¢\82æ\82Á\81I
+[2A 0x00009E90 00 Reimu *Cirno]
+\82¿\82å\81A\82¿\82å\82Á\82Æ
+[2A 0x0000A084 00 Reimu *Cirno]
+\82È\82ñ\82¾\82©
+\82È\82²\82ñ\82¾\82¾\82¯\82¾\82¢\82Á\81I
+[2A 0x0000A278 00 *Reimu Cirno]
+\82Ç\82¿\82ç\82Å\82à\82¢\82¢\82¯\82Ç
+[2A 0x0000A46C 00 Reimu *Cirno]
+\82»\82¢\82¦\82Î\82³\81A\82Ç\82±\8ds\82­\82Ì\81H
+[2A 0x0000A660 00 Reimu *Cirno]
+\82±\82±\82ç\82Ö\82ñ\82·\82ñ\82²\82¢\96\82\82á\82ñ\81I
+[2A 0x0000A854 00 Reimu *Cirno]
+\82à\82µ\82©\82µ\82Ä\81c
+\89½\82©\82 \82Á\82½\81I\81H
+[2A 0x0000AA48 00 *Reimu Cirno]
+\8bC\82Ã\82­\82Ì\92x\82·\82¬
+[2A 0x0000AC3C 00 *Reimu Cirno]
+\82»\81A\82È\82É\82©\82 \82é\82É
+\8c\88\82Ü\82Á\82Ä\82¢\82é\82©\82ç
+[2A 0x0000AE30 00 *Reimu Cirno]
+\81c\89ï\82¢\82É\8ds\82Á\82Ä\82­\82é\82Ì
+[2A 0x0000B024 00 *Reimu Cirno]
+\8dg\96\82\8aÙ\82Ì\82 \82¢\82Â\82É\82Ë
+[2A 0x0000B218 00 Reimu *Cirno]
+\82»\82Á\82©\82\9f\81B
+\8bC\82ð\82Â\82¯\82é\82ñ\82¾\82¼
+[2A 0x0000B40C 00 *Reimu Cirno]
+\82Ü\82½\82Ë
+[2A 0x0000B6CC 02 *Cirno]
+\82Ô\81[\82ñ\81ô
+[2A 0x0000B860 02 *Cirno]
+\82Ô\81[\82ñ\81c
+[2A 0x0000B9F4 02 *Cirno]
+\82Ô\82ñ\81c\82Ô\82ñ\81c\82Ô\82ñ\81I\81H
+[2A 0x0000BB88 02 *Cirno]
+\82È\82ñ\82Å\81u\82Ô\81[\82ñ\81v\82Ä
+\8c¾\82Á\82¿\82á\82¤\82ñ\82¾\82ë\81c
+[2A 0x0000BD1C 02 *Cirno]
+\82 \82½\82¢\82Í
+\92\8e\82\82á\82È\82¢\82Ì\82É\82Á\81I
+[28 0x0000C2FC 00 Reimu *Cirno]
+\89½\82·\82ñ\82Ì\81I\81H
+[2A 0x0000C504 00 Reimu *Cirno]
+\95s\88Ó\91Å\82¿\82È\82ñ\82Ä
+\8eå\90l\8cö\82É\82 \82é\82Ü\82\82«\8ds\88×\82¾\82æ\81I\81H
+[2A 0x0000C6F8 00 *Reimu Cirno]
+\82¾\82Á\82Ä\81A\8c\84\82¾\82ç\82¯\82¾\82Á\82½\82©\82ç\81ô
+[2A 0x0000C8EC 00 Reimu *Cirno]
+\82ª\81[\82ñ\81I
+[2A 0x0000CAE0 00 Reimu *Cirno]
+\82È\82ñ\82Ä\82Ð\82Ç\82¢\82â\82Â\82È\82ñ\82¾\81c
+[2A 0x0000CCD4 00 *Reimu Cirno]
+\82Ü\82 \81A\8bC\82É\82µ\82È\82¢\8bC\82É\82µ\82È\82¢\81ô
+[2A 0x0000CEC8 00 *Reimu Cirno]
+\82³\82 \81A\91±\82«\82ð\82Í\82\82ß\82Ü\82µ\82å\81B
+[2A 0x0000D0BC 00 Reimu *Cirno]
+\82±\82Ì\8d¦\82Ý\90â\91Î\90°\82ç\82·\82ñ\82¾\82©\82ç\81I
+\8ao\8cå\82µ\82ë\81[\81I
+[28 0x0000D780 02 *Reimu]
+\82ñ\81c\82±\82±\82Á\82Ä\81H
+[2A 0x0000D930 02 *Reimu]
+\8dg\96\82\8aÙ\82É\93ü\82Á\82½\82Í\82¸\82È\82Ì\82É
+\8e\97\82Ä\82¢\82é\82¯\82Ç\88á\82¤\81c
+[2A 0x0000DAC4 02 *Reimu]
+\82»\82Á\82©\81A\82½\82Ô\82ñ\82¾\82¯\82Ç
+\8e\9e\8bó\82ª\98c\82ß\82ç\82ê\82Ä\82é
+[2A 0x0000DC58 02 *Reimu]
+\82Í\82 \81c
+[2A 0x0000DDEC 02 *Reimu]
+\82±\82Ì\96­\82È\8fê\8f\8a\82à
+\82 \82¢\82Â\82Ì\82¹\82¢\82©
+[2A 0x0000DF80 02 *Reimu]
+\90l\97l\82É\96À\98f\82ð\82©\82¯\82¿\82á\82¤\82Ì\82Í
+\8ed\95û\82È\82¢\82É\82µ\82Ä\82à
+[2A 0x0000E114 02 *Reimu]
+\8e\84\82ð\8aª\82«\8d\9e\82Þ\82È\82ñ\82Ä\81I
+[2A 0x0000E2A8 02 *Reimu]
+\82¤\81[\82ñ\81c
+\82±\82ê\82Í\82¨\8ed\92u\82«\82ª\95K\97v\82Ë
+[28 0x0000E90C 00 Reimu *Sanae]
+\82 \82ç\82 \82ç\82 \82ç\82 \82ç\81B
+\8aï\8bö\82Ë
+[2A 0x0000EB14 00 *Reimu Sanae]
+\82»\82ê\82Á\82Ä
+\82±\82¿\82ç\82Ì\91ä\8e\8c\82\82á\82È\82¢\81H
+[2A 0x0000ED08 00 *Reimu Sanae]
+\82Ç\82¤\82µ\82Ä\82±\82±\82É\82¢\82é\82í\82¯\81H
+[2A 0x0000EEFC 00 Reimu *Sanae]
+\82í\82©\82Á\82Ä\82¢\82é\82í
+\82«\82Á\82Æ\82 \82È\82½\82Ì\82¹\82¢\82È\82Ì\82æ\82Ë\81c
+[2A 0x0000F0F0 00 *Reimu Sanae]
+\89½\82ª\81H
+[2A 0x0000F2E4 00 Reimu *Sanae]
+\82 \82ç\82 \82ç\81B
+\82µ\82ç\82Î\82Á\82­\82ê\82é\82Ì\81H
+[2A 0x0000F4D8 00 *Reimu Sanae]
+\82È\82ñ\82È\82Ì\82æ
+[2A 0x0000F6CC 00 Reimu *Sanae]
+\8e\84\81A\8dg\96\82\8aÙ\82É\8cÄ\82Î\82ê\82½\82Ì
+[2A 0x0000F8C0 00 *Reimu Sanae]
+\8cÄ\82Î\82ê\81c\81H
+[2A 0x0000FAB4 00 Reimu *Sanae]
+\82¦\82¦\81B
+\82È\82Ì\82É\82±\82ñ\82È\8fê\8f\8a\82Ö\81I
+[2A 0x0000FCA8 00 Reimu *Sanae]
+\82Ç\82¤\82µ\82Ä\82±\82Ì\8e\84\82ª\81I\81H
+\94\92\8fó\82È\82³\82¢\81I
+[2A 0x0000FE9C 00 *Reimu Sanae]
+\92m\82ç\82È\82¢\82©\82ç
+[2A 0x00010090 00 Reimu *Sanae]
+\82»\82¤\81c\82Å\82·\82©\81c
+\92m\82ç\82È\82¢\82Æ\81c
+[2A 0x00010284 00 *Reimu Sanae]
+\91\81\95c\81A\82±\82Ì\8fê\8f\8a\82Ì\90³\91Ì\82í\82©\82é\81H
+[2A 0x00010478 00 Reimu *Sanae]
+\82¢\82¢\82¦\81c\8ec\94O\82Å\82·\82ª
+[2A 0x0001066C 00 Reimu *Sanae]
+\8bC\82Ã\82¢\82½\82ç\81A\82±\82¿\82ç\82Å
+\82Ó\82í\82Ó\82í\89Â\97÷\82É\95\82\82¢\82Ä\82¢\82½\82Ì
+[2A 0x00010860 00 Reimu *Sanae]
+\82«\82Á\82Æ\97Ç\82©\82ç\82Ê
+\8eô\96@\82Ì\82½\82®\82¢\82¾\82í\82Á\81I
+[2A 0x00010A54 00 *Reimu Sanae]
+\82»\82ñ\82È\82É\93{\82ç\82È\82­\82Ä\82à
+[2A 0x00010C48 00 *Reimu Sanae]
+\82¤\81[\82ñ\82Æ\81c\82\82á\82Ë
+[2A 0x00010E3C 00 Reimu *Sanae]
+\91Ò\82¿\82È\82³\82¢\94\8e\97í\82Ì\9bÞ\8f\97\81B
+\8e¿\96â\82ª\82 \82è\82Ü\82·
+[2A 0x00011030 00 Reimu *Sanae]
+\82±\82Ì\90l\82Å\82 \82è\90_\82Å\82à\82 \82é\8e\84\82ª
+\82Ç\82¤\82µ\82Ä\82±\82Ì\82æ\82¤\82È\88Ù\8aE\82É
+[2A 0x00011224 00 Reimu *Sanae]
+\8eú\82í\82ê\82Ä\82¢\82é\82Ì\82©
+[2A 0x00011418 00 Reimu *Sanae]
+\82 \82È\82½\82ª\82²\91\92m\82\82á\82È\82¢\82Æ\82Í
+\82P\83~\83\8a\82à\8ev\82¦\82È\82¢\82Ì
+[2A 0x0001160C 00 *Reimu Sanae]
+\8b^\82Á\82Ä\82é\82Ì\81H
+[2A 0x00011800 00 Reimu *Sanae]
+\82¢\82¢\82¦\81c
+[2A 0x000119F4 00 Reimu *Sanae]
+\82±\82ê\82Í\8am\90M\82Å\82·\81I
+[28 0x000120B8 00 Reimu *Sanae]
+\82Þ\82¤\82£\81c
+\82±\82Ì\8e\84\82ª\95\89\82¯\82é\82È\82ñ\82Ä\82Á\81I\81H
+[2A 0x000122C0 00 Reimu *Sanae]
+\82Ó\82¤\81c\8ed\95û\82ª\82È\82¢\82Å\82·\82Ë
+[2A 0x000124B4 00 Reimu *Sanae]
+\82 \82È\82½\82ª\91\8a\8eè\82¾\82à\82Ì\82Ë
+[2A 0x000126A8 00 *Reimu Sanae]
+\82Å\81A\82±\82±\82É\82Í
+\89½\82ð\82µ\82É\82«\82½\82í\82¯
+[2A 0x0001289C 00 Reimu *Sanae]
+\89½\82©\97p\82ª\82 \82é\82»\82¤\82Å\81B
+\82Å\82à\82Ü\82¾\95·\82¢\82Ä\82Ü\82¹\82ñ
+[2A 0x00012A90 00 Reimu *Sanae]
+\82»\82ê\82É\81A\8cÄ\82Î\82ê\82½\82Ì\82Í
+\8e\84\82¾\82¯\82Å\82Í\82È\82¢\82Ý\82½\82¢\82æ
+[2A 0x00012C84 00 *Reimu Sanae]
+\82»\82Á\82©\81B
+\82»\82ê\82É\82µ\82Ä\82à\82³
+[2A 0x00012E78 00 *Reimu Sanae]
+\82í\82¯\82Ì\82í\82©\82ç\82È\82¢\97p\82È\82Ì\82É
+\82æ\82­\82±\82±\82Ü\82Å\97\88\82½\82í\82Ë
+[2A 0x0001306C 00 Reimu *Sanae]
+\82¤\82ñ\81H
+[2A 0x00013260 00 Reimu *Sanae]
+\82»\82ê\82É\8d¡\93ú\82Í
+\82Æ\82Á\82Ä\82à\82¢\82¢\93V\8bC\82Å\82µ\82½\82µ
+[2A 0x00013454 00 Reimu *Sanae]
+\93¹\92\86\82Ì\98a\89Ù\8eq\89®\82³\82ñ\82Å
+\94\83\82Á\82½\82¨\92c\8eq\82Ì
+[2A 0x00013648 00 Reimu *Sanae]
+\94ü\96¡\82µ\82©\82Á\82½\82±\82Æ
+\94ü\96¡\82µ\82©\82Á\82½\82±\82Æ\81c\81ô
+[2A 0x0001383C 00 *Reimu Sanae]
+\96\9e\8bi\82µ\82½\82Ì\82Ë
+[2A 0x00013A30 00 Reimu *Sanae]
+\82¦\82¦\81A\82à\82¿\82ë\82ñ\81ô
+\82»\82¤\82»\82¤
+[2A 0x00013C24 00 Reimu *Sanae]
+\91å\8e\96\82È\82±\82Æ\82ð\82Ð\82Æ\82Â
+\8b³\82¦\82Ä\82 \82°\82Ü\82µ\82å\82¤
+[2A 0x00013E18 00 *Reimu Sanae]
+\91å\8e\96\82È\81c\82±\82Æ\81H
+[2A 0x0001400C 00 Reimu *Sanae]
+\8e\84\82½\82¿\81A\82Ç\82¤\82â\82ç
+\8fo\82ç\82ê\82È\82¢\82æ\82¤\82Å\82·
+[2A 0x00014200 00 Reimu *Sanae]
+\82±\82Ì\81u\8dg\96\82\8b½\81v\82Æ\82¢\82¤
+\8bó\8aÔ\82Ì\8aO\82É\81I
+[2A 0x000143F4 00 *Reimu Sanae]
+\82È\82É\82»\82ê\81c
+\81u\8dg\96\82\8b½\81v\81c\81H
+[2A 0x000145E8 00 Reimu *Sanae]
+\8cã\82Í\94C\82¹\82Ü\82µ\82½\81B
+\94\8e\97í\82Ì\9bÞ\8f\97
+[2A 0x000147DC 00 *Reimu Sanae]
+\8f\9f\8eè\82È\82±\82Æ\8c¾\82Á\82Ä\81B
+\82Å\82à\82»\82¤\82È\82é\82Ì\82æ\82Ë
+[2A 0x000149D0 00 Reimu *Sanae]
+\82¦\82¦\81A\82»\82¤\82È\82è\82Ü\82·
+[2A 0x00014BC4 00 Reimu *Sanae]
+\82¾\82Á\82Ä\95s\89¸\82È\8e\96\91Ô\82ª
+\8e\97\8d\87\82¤\82Ì\82Á\82Ä
+[2A 0x00014DB8 00 Reimu *Sanae]
+\82 \82È\82½\82Ì\95û\82Å\82·\82µ\82Ë\81B
+\82¤\82Ó\82Ó\82Ó\82Ó
+[2A 0x00014FAC 00 *Reimu Sanae]
+\82\82á\82 \82Ë
+[2A 0x000151A0 00 Reimu *Sanae]
+\82Í\82¢\81A\82²\82«\82°\82ñ\82æ\82¤
+[2A 0x00015460 02 *Sanae]
+\8bC\82ð\82Â\82¯\82Ä\82­\82¾\82³\82¢\82Ë\81c
+\94\8e\97í\82Ì\9bÞ\8f\97
+[2A 0x000155F4 02 *Sanae]
+\81u\8dg\96\82\8b½\81v\82Ì\94é\96§\82Í
+\82Ð\82Æ\82Â\82Å\82Í\82 \82è\82Ü\82¹\82ñ
+[2A 0x00015788 02 *Sanae]
+\82±\82±\82©\82ç\8fo\82ç\82ê\82È\82¢\82¾\82¯\82Å\82Í
+\82È\82¢\82æ\82¤\82¾\82©\82ç
+[2A 0x0001591C 02 *Sanae]
+\82«\82á\82Á\81ô
+[2A 0x00015AB0 02 *Sanae]
+\82±\82Ì\82±\82Æ\82É\8bC\82Ã\82­\82¾\82È\82ñ\82Ä
+\82³\82·\82ª\91\81\95c\97l\82Ë\82Á\81ô
+[28 0x00016090 02 *Reimu]
+\82Ç\82¤\82µ\82½\82Ì\82©\82È
+\82È\82ñ\82¾\82©\82Ù\82±\82è\82Á\82Û\82¢\81H
+[2A 0x00016240 02 *Reimu]
+\95s\8ev\8bc\82Æ\8cÃ\82¢\96{\82Ì\93õ\82¢\82ª\82µ\82È\82¢
+\8fê\8f\8a\82¾\82Á\82½\82Ì\82É
+[2A 0x000163D4 02 *Reimu]
+\83\81\83C\83h\82ª\96Z\82µ\82­\82Ä
+\91|\8f\9c\82É\82Ü\82Å\8eè\82ª\82Ü\82í\82Á\82Ä\82¢\82È\82¢\81H
+[2A 0x00016568 02 *Reimu]
+\82¾\82Æ\82µ\82½\82ç\81A\8dg\82¢\96\82Æ\82¢\82¢
+\82¨\82©\82µ\82È\8fo\97\88\8e\96\82Ì\97 \91¤\82É
+[2A 0x000166FC 02 *Reimu]
+\82 \82¢\82Â\82Æ\83\81\83C\83h\82ª\82¢\82é\82Æ\8dl\82¦\82Ä
+\82«\82Á\82Æ\8aÔ\88á\82¢\82È\82¢\82í\82Ë
+[2A 0x00016890 02 *Reimu]
+\82Ü\81A\82¢\82¢\82¯\82Ç
+[2A 0x00016A24 02 *Reimu]
+\8f\91\89Ë\82Ì\8eå\82É\89ï\82¦\82½\82ç
+\89½\82©\92m\82Á\82Ä\82é\82Æ\8ev\82¤\82©\82ç
+[28 0x00017088 00 Reimu *Patch]
+\82¨\82Í\82æ\82¤\81c
+[2A 0x00017290 00 *Reimu Patch]
+\82¦\81A\82 \81A\82¨\82Í\82æ\82¤
+[2A 0x00017484 00 Reimu *Patch]
+\8dç\96é\82È\82Ì\81H
+[2A 0x00017678 00 *Reimu Patch]
+\8e\84\82Í\8dç\96é\82\82á\82È\82¢\82í
+[2A 0x0001786C 00 Reimu *Patch]
+\82»\82¤\82È\82Ì\81c
+\8dÅ\8bß\91|\8f\9c\82É\97\88\82Ä\82­\82ê\82È\82¢\82í\82Ë
+[2A 0x00017A60 00 Reimu *Patch]
+\82 \82ç\81A\97ì\96²\81c
+[2A 0x00017C54 00 Reimu *Patch]
+\8bC\82ð\82Â\82¯\82Ä\81B
+\82±\82±\82Í\82Ù\82±\82è\82Á\82Û\82¢\82©\82ç
+[2A 0x00017E48 00 Reimu *Patch]
+\82»\82¤\81c
+\82Ü\82é\82Å\82 \82È\82½\82Ì\82æ\82¤\82É
+[2A 0x0001803C 00 *Reimu Patch]
+\89½\82æ\82»\82ê
+[2A 0x00018230 00 Reimu *Patch]
+\92@\82¯\82Î\90F\81X\82Æ
+\82Å\82Ä\82­\82é\82Å\82µ\82å\81H
+[2A 0x00018424 00 Reimu *Patch]
+\82»\82Ì\8dß\8dì\82è\82È\93÷\91Ì\82Å\81c
+\8e\84\82Ì\91å\90Ø\82È\97F\92B\82ð\81c
+[2A 0x00018618 00 *Reimu Patch]
+\82Í\82 \81H
+[2A 0x0001880C 00 Reimu *Patch]
+\8e©\8ao\82Í\82È\82¢\82æ\82¤\82Ë\81c
+[2A 0x00018A00 00 *Reimu Patch]
+\82 \82ñ\82½\82½\82¿\82ª\82¨\82©\82µ\82¢\82Ì\82Í
+\82¢\82Â\82à\82Ì\82±\82Æ\82¾\82¯\82Ç
+[2A 0x00018BF4 00 *Reimu Patch]
+\82¢\82Á\82½\82¢\82Ç\82¤\82µ\82¿\82á\82Á\82½\82Ì\81H
+[2A 0x00018DE8 00 *Reimu Patch]
+\8dç\96é\82ª\91|\8f\9c\82ð\82³\82Ú\82Á\82Ä\82é
+\82È\82ñ\82Ä\82±\82Æ\82Í\82 \82è\82¦\82È\82¢\82µ
+[2A 0x00018FDC 00 Reimu *Patch]
+\82±\82±\82É\82 \82é\96{\82Ì
+\82·\82×\82Ä\82ð\8e\84\82Í\8e¯\82Á\82Ä\82¢\82é\81c
+[2A 0x000191D0 00 Reimu *Patch]
+\8fí\82É\82»\82ê\82Í\95Ï\82ç\82È\82¢\82í\81B
+\82¯\82ê\82Ç\95s\95Ï\82Í\8aï\88Ù\82È\82Ì
+[2A 0x000193C4 00 Reimu *Patch]
+\82 \82Ü\82è\82É\95Ï\82ç\82È\82¢\82±\82Æ\82Í
+\82»\82ê\8e©\91Ì\82ª\88Ù\97l\82È\82Ì
+[2A 0x000195B8 00 *Reimu Patch]
+\89½\82©\92m\82Á\82Ä\82¢\82é\82Ý\82½\82¢\82Ë
+[2A 0x000197AC 00 *Reimu Patch]
+\82 \82È\82½\82ª\92m\82ç\82È\82¢\82È\82ñ\82Ä
+\82 \82è\82¦\82È\82¢\82©\82ç
+[2A 0x000199A0 00 Reimu *Patch]
+\82»\82Ì\92¼\8a´\93I\82È\93´\8e@\82Æ
+\96¾\8am\82È\8c\8b\98_\82Æ\88Ó\8ev\82ð\8c\8b\82Ñ\82Â\82¯\82é\8eè\96@
+[2A 0x00019B94 00 Reimu *Patch]
+\8c\99\82¢\82Å\82Í\82È\82¢\82í\81c
+[2A 0x00019D88 00 *Reimu Patch]
+\8b³\82¦\82Ä\81B\82Ç\82¤\82¢\82¤\88Ó\96¡\81H
+\89½\82ª\95Ï\82ç\82È\82¢\82í\82¯\81H
+[2A 0x00019F7C 00 Reimu *Patch]
+\8d¡\82Í\82í\82©\82ç\82È\82¢\81B
+\82½\82¾\89^\96½\82ª\8d\90\82°\82Ä\82¢\82é\82Ì
+[2A 0x0001A170 00 Reimu *Patch]
+\8e\9e\82ª\82½\82¾\90Ã\82©\82É
+\93H\82è\97\8e\82¿\82é\82©\82Ì\82æ\82¤\82É\81c
+[2A 0x0001A364 00 Reimu *Patch]
+\8e\84\82Í\82 \82È\82½\82ð
+\8fÁ\96Å\82µ\82È\82¢\82Æ\82¢\82¯\82È\82¢
+[2A 0x0001A558 00 *Reimu Patch]
+\82â\82é\8bC\82È\82ñ\82¾
+[2A 0x0001A74C 00 Reimu *Patch]
+\8dÅ\8f\89\82©\82ç\82»\82Ì\82Â\82à\82è\82Å\82µ\82½\81B
+\93`\82í\82Á\82Ä\82¢\82é\82Æ\8ev\82Á\82Ä\82¢\82Ü\82µ\82½\82ª\81H
+[2A 0x0001A940 00 *Reimu Patch]
+\82à\82¿\82ë\82ñ
+[2A 0x0001AB34 00 *Reimu Patch]
+\82 \82Ì\8eq\82½\82¿\82æ\82è\90æ\82É
+\82 \82È\82½\82ð\82¨\8ed\92u\82«\82µ\82Ä\82 \82°\82é\82í
+[28 0x0001B1F8 00 Reimu *Patch]
+\82¨\8ed\92u\82«\82³\82ê\82Ä\82µ\82Ü\82Á\82½\81c
+\82»\82Ì\8dß\8dì\82è\82È\93÷\91Ì\82Å\81c
+[2A 0x0001B400 00 *Reimu Patch]
+\82Ç\82¤\82¢\82¤\88Ó\96¡\82È\82í\82¯\81A\82»\82ê\81B
+\8cë\89ð\82ð\90\82ñ\82\82á\82¤\82Æ\8ev\82¤\82¯\82Ç
+[2A 0x0001B5F4 00 Reimu *Patch]
+\82±\82Ì\82Æ\82±\82ë\81A\82Æ\82Á\82Ä\82à
+\94§\82ª\8a£\91\87\8bC\96¡\82È\82Ì\81c
+[2A 0x0001B7E8 00 *Reimu Patch]
+\8e¿\96â\82É\82Í\93\9a\82¦\82Ä\82È\82¢\82µ
+[2A 0x0001B9DC 00 *Reimu Patch]
+\82»\82ê\82É\81A
+\95Ê\82É\82µ\82Á\82Æ\82è\82·\82×\82·\82×\82É\8c©\82¦\82é\82¯\82Ç
+[2A 0x0001BBD0 00 Reimu *Patch]
+\82 \81A\82 \82è\82ª\82Æ\82¤\81c
+[2A 0x0001BDC4 00 Reimu *Patch]
+\96{\82Í\8e¼\8bC\82ð\8bz\82¢\8eæ\82Á\82Ä\82µ\82Ü\82¤\82©\82ç
+\94§\82Í\8fí\82É\8a£\91\87\8bC\96¡
+[2A 0x0001BFB8 00 Reimu *Patch]
+\82¾\82©\82ç\83r\83^\83~\83\93\82Í
+\82«\82¿\82ñ\82Æ\90Û\82é\82×\82«\82æ\81B
+[2A 0x0001C1AC 00 Reimu *Patch]
+\94§\82ð\8eç\82Á\82Ä\82­\82ê\82é\82©\82ç\81B
+\82±\82ê\81A\93¤\82Ë\81c
+[2A 0x0001C3A0 00 *Reimu Patch]
+\93¤\92m\8e¯\82ð\94â\98I\82µ\82Ä\82­\82é\82ñ\82¾\81c
+[2A 0x0001C594 00 Reimu *Patch]
+\81c\81c\81c\81c
+[2A 0x0001C788 00 *Reimu Patch]
+\8fÆ\82ê\82È\82­\82Ä\82à\82¢\82¢\82Å\82µ\82å\81H
+[2A 0x0001C97C 00 *Reimu Patch]
+\82 \82Á\82»\82¤\82»\82¤
+[2A 0x0001CB70 00 *Reimu Patch]
+\82à\82µ\82©\82µ\82Ä\81F\83p\83`\83\85\83\8a\81[\82È\82ç
+\92m\82Á\82Ä\82¢\82é\82©\82à\82Á\82Ä\8ev\82¤\82ñ\82¾\82¯\82Ç
+[2A 0x0001CD64 00 Reimu *Patch]
+\8bC\82Ì\82¹\82¢\82©\82µ\82ç\81A
+\88ê\8fu\82¾\82¯\8c¾\97t\82Ì\8bæ\90Ø\82è\82ª
+[2A 0x0001CF58 00 Reimu *Patch]
+\81u\81A\81v\82Å\82Í\82È\82­\82Ä
+\81u\81F\81v\82¾\82Á\82½\8bC\82ª\82µ\82½\81c
+[2A 0x0001D14C 00 *Reimu Patch]
+\8bC\82Ì\82¹\82¢\82æ\81B
+\82à\82µ\82©\82µ\82Ä\81F\83p\83`\83\85\83\8a\81[\81H
+[2A 0x0001D340 00 *Reimu Patch]
+\89½\82©\92m\82ç\82È\82¢\81H
+\82Ü\82½\8dg\82¢\96\82ª\97§\82¿\8d\9e\82ß\82Ä\82Ä
+[2A 0x0001D534 00 Reimu *Patch]
+\82»\82Ì\82±\82Æ\82¾\82¯\82Ç\81A\8e¯\82ç\82È\82¢\82í
+[2A 0x0001D728 00 *Reimu Patch]
+\82Ç\82¤\82µ\82Ä\92m\82ç\82È\82¢\82Á\82Ä\82í\82©\82é\82Ì\81H
+[2A 0x0001D91C 00 Reimu *Patch]
+\82·\82Å\82É\8bN\82«\82½\82±\82Æ\82¾\82©\82ç\81c
+\82»\82¤\82Æ\82µ\82©\8c¾\82¦\82È\82¢\82Ì
+[2A 0x0001DB10 00 Reimu *Patch]
+\82±\82ê\82©\82ç\82Ì\89^\96½\82Í\89ß\8b\8e\82É\82 \82è
+\82»\82Ì\89ß\8b\8e\82ª\89^\96½\82ð\8ei\82é\82Æ\82µ\82½\82ç\81H
+[2A 0x0001DD04 00 *Reimu Patch]
+\82æ\82­\82í\82©\82ç\82È\82¢\82È\81B
+\82í\82©\82Á\82½\82ç\8b³\82¦\82Ä\82­\82ê\82é\81H
+[2A 0x0001DEF8 00 Reimu *Patch]
+\82»\82¤\82Ë\81A\82»\82Ì\8e\9e\82É\82Í
+\82Ü\82½\89ï\82¢\82Ü\82µ\82å\82¤
+[2A 0x0001E0EC 00 Reimu *Patch]
+\82¢\82¦\81c
+\82«\82Á\82Æ\89ï\82¤\82Ì\82Å\82µ\82å\82¤\82Ë
+[2A 0x0001E2E0 00 *Reimu Patch]
+\82»\82¤\82È\82ñ\82¾\81c\82»\82¤\82È\82Ì\82©\82à\81B
+\82\82á\82 \82Ë\81A\82»\82ë\82»\82ë\8ds\82­\82í
+[2A 0x0001E4D4 00 Reimu *Patch]
+\82¦\82¦\81c\8bC\82ð\82Â\82¯\82Ä
+[2A 0x0001E794 02 *Patch]
+\82Ó\82¤\81c
+[2A 0x0001E928 02 *Patch]
+\8e\84\82ª\97ì\96²\82É
+\95Ê\82ê\82ð\8c¾\82Á\82½\82Ì\82Í\81c
+[2A 0x0001EABC 02 *Patch]
+\82¨\8ed\92u\82«\82ð\82³\82ê\82½\82Ì\82Í\81c\81c\81c
+[2A 0x0001EC50 02 *Patch]
+\82¢\82Á\82½\82¢\89½\89ñ\96Ú\82¾\82Á\82½\82©\82µ\82ç\81c
+[28 0x0001F230 02 *Reimu]
+\82 \82ê\81H
+\82±\82Ì\82 \82½\82è\82Ì\97l\8eq\82Á\82Ä\81c
+[2A 0x0001F3E0 02 *Reimu]
+\82Ç\82¤\82µ\82Ä\82©\82È\81B
+\8b¹\91\9b\82¬\82ª\82·\82é\81c
+[2A 0x0001F574 02 *Reimu]
+\82Æ\82¢\82¤\82±\82Æ\82Í
+\82±\82Ì\90æ\82ª\82«\82Á\82Æ\90³\89ð\82Ë\81I
+[2A 0x0001F708 02 *Reimu]
+\89½\82©\95Ï\82È\82Ì\82ª
+\8fo\82Ä\82­\82é\82É\88á\82¢\82È\82¢\82à\82Ì
+[28 0x0001FD6C 00 Reimu *Nitori]
+\82 \82Á\81I
+\96¿\97F\82Å\82 \82é\90l\8aÔ\82ª\82±\82±\82É\81I\81H
+[2A 0x0001FF74 00 *Reimu Nitori]
+\81c\81c
+[2A 0x00020168 00 Reimu *Nitori]
+\82Ç\82¤\82µ\82Ä\96Ù\82Á\82Ä\82¢\82é\82Ì\82©\82È\81[\81H
+[2A 0x0002035C 00 *Reimu Nitori]
+\97\\91z\8aO\82Ì\82ª\8fo\82Ä\82«\82½\82©\82ç\81B
+\8f­\82µ\82Ë\81A\8bÁ\82¢\82Ä\82¢\82½\82Ì
+[2A 0x00020550 00 *Reimu Nitori]
+\82â\82Á\82Ï\82è\95Ï\82È\82Ì\82ª\8fo\82Ä\82«\82½\82È\82Æ\81c
+[2A 0x00020744 00 Reimu *Nitori]
+\95·\82±\82¦\82Ä\82é\82æ\81[\81I
+[2A 0x00020938 00 Reimu *Nitori]
+\82·\82®\82»\82Î\82É\82¢\82é\82æ\81I
+[2A 0x00020B2C 00 Reimu *Nitori]
+\8c¾\82¤\82È\82ç\95·\82±\82¦\82È\82¢\82­\82ç\82¢
+\97£\82ê\82Ä\82©\82ç\8c¾\82í\82È\82¢\82Æ\81I
+[2A 0x00020D20 00 *Reimu Nitori]
+\93Æ\82è\8c¾\82¾\82©\82ç
+\8bC\82É\82µ\82È\82¢\82Å
+[2A 0x00020F14 00 *Reimu Nitori]
+\88«\88Ó\82Í\82È\82¢\82©\82ç
+[2A 0x00021108 00 Reimu *Nitori]
+\82»\82Á\82©
+\88«\88Ó\82Í\82È\82¢\82Ì\82©\81[
+[2A 0x000212FC 00 Reimu *Nitori]
+\82Á\82Ä\81A\8f\83\90\88\82É
+\95Ï\82Á\82Ä\8ev\82Á\82Ä\82é\82Á\82Ä\82±\82Æ\81I\81H
+[2A 0x000214F0 00 *Reimu Nitori]
+\8f\83\90\88\82È\98_\97\9d\82Ì\8bA\8c\8b\82Æ\82µ\82Ä
+\82»\82¤\82È\82é\82Ý\82½\82¢\82Ë
+[2A 0x000216E4 00 *Reimu Nitori]
+\94Û\92è\82Í\82Å\82«\82È\82¢\81I
+[2A 0x000218D8 00 Reimu *Nitori]
+\8e©\90M\82½\82Á\82Õ\82è\82Å\94F\82ß\82½\82È\82Á\81I
+[2A 0x00021ACC 00 Reimu *Nitori]
+\82à\82¤\82¢\82¢\81I
+\8eÓ\82Á\82Ä\82­\82ê\82È\82¢\82ñ\82¾\82Á\82½\82ç
+[2A 0x00021CC0 00 Reimu *Nitori]
+\8e\84\82Ì\90V\8dì\95º\8aí\82Ì
+\8eÀ\8c±\91ä\82É\82µ\82Ä\82â\82é\82Á\81I
+[28 0x00022384 00 *Reimu Nitori]
+\88«\82¢\82í\82Ë\81c\82É\82Æ\82è
+[2A 0x0002258C 00 Reimu *Nitori]
+\82¬\82Á\82½\82ñ\82¬\82Á\82½\82ñ\82É\82µ\82½\8cã\82Å
+\8eÓ\82Á\82½\82æ\82±\82Ì\8eq\81I
+[2A 0x00022780 00 Reimu *Nitori]
+\97d\89ö\82Æ\82©\82æ\82è\82à
+\90l\8aÔ\82Ì\95û\82ª\82¸\82Á\82Æ\95|\82¢\82æ\82£\81I
+[2A 0x00022974 00 *Reimu Nitori]
+\82Ç\82¤\82µ\82Ä\82±\82±\82É\82¢\82é\82Ì\81H
+[2A 0x00022B68 00 Reimu *Nitori]
+\82¦\81A\82 \81A\82¤\82ñ\81B
+\8fµ\91Ò\82³\82ê\82½\82ñ\82¾\82¯\82Ç
+[2A 0x00022D5C 00 Reimu *Nitori]
+\8fo\82ê\82È\82­\82È\82Á\82¿\82á\82½\82ñ\82¾\82æ\82Ë
+\82±\82Ì\81u\8dg\96\82\8b½\81v\82©\82ç
+[2A 0x00022F50 00 Reimu *Nitori]
+\89½\82©\82í\82©\82é\81H
+\94\8e\97í\82Ì\9bÞ\8f\97
+[2A 0x00023144 00 *Reimu Nitori]
+\81u\8dg\96\82\8b½\81v\82Ë\81c
+\95\95\8d½\8e\9e\8bó\82Å\82à\8c`\90¬\82µ\82½\82Ý\82½\82¢\82Ë
+[2A 0x00023338 00 *Reimu Nitori]
+\8bó\8aÔ\82Æ\8e\9e\8aÔ\82ð\98c\82Ü\82¹\82é\82È\82ñ\82Ä
+\91å\82»\82ê\82½\82±\82Æ\82ð\82â\82é\82Æ\82µ\82½\82ç
+[2A 0x0002352C 00 *Reimu Nitori]
+\82â\82Á\82Ï\82è\83\8c\83~\83\8a\83A\82Ì\8ed\8bÆ\82©\81c\81B
+\82¾\82Á\82½\82ç\8dç\96é\82à\88ê\8f\8f\82Ë
+[2A 0x00023720 00 Reimu *Nitori]
+\82Å\81A\82³
+[2A 0x00023914 00 Reimu *Nitori]
+\82Å\82ç\82ê\82»\82¤\82©\82È\81H
+\96¿\97F\82Å\82 \82é\90l\8aÔ
+[2A 0x00023B08 00 *Reimu Nitori]
+\82Ü\82¾\92²\82×\92\86\81B
+\82à\82¤\82¿\82å\82Á\82Æ\90æ\82Ü\82Å\8ds\82Á\82Ä\82Ý\82é\82í
+[2A 0x00023CFC 00 Reimu *Nitori]
+\82»\82¤\82È\82Ì\82©\81c
+[2A 0x00023EF0 00 Reimu *Nitori]
+\82\82á\82 \82Ë\81A\90l\8aÔ\81B
+\8bC\82ð\82Â\82¯\82Ä\82¢\82­\82ñ\82¾\82æ\81[
+[2A 0x000240E4 00 *Reimu Nitori]
+\82¦\82¦\81A\82\82á\82 \82Ë
+[2A 0x000243A4 00 Reimu *Nitori]
+\90l\8aÔ\81c\8bC\82Ã\82¢\82Ä\82¢\82é\82Ì\82©\82È\81H
+[2A 0x00024598 00 Reimu *Nitori]
+\82±\82Ì\90¢\8aE\82Á\82Ä
+\82®\82é\82®\82é\82Ü\82í\82Á\82Ä\82é\82ñ\82¾
+[2A 0x0002478C 00 Reimu *Nitori]
+\82æ\82­\82Å\82«\82½\82©\82ç\82­\82è\82Ì
+\8e\95\8eÔ\82Ý\82½\82¢\82É
+[2A 0x00024980 00 Reimu *Nitori]
+\96³\97\9d\82É\8e~\82ß\82é\82Æ
+\82©\82ç\82­\82è\82Á\82Ä\89ó\82ê\82¿\82á\82¤\82¼\81c
+[2A 0x00024B74 00 Reimu *Nitori]
+\82Å\82à\81A\96¿\97F\82È\82ç\91å\8fä\95v\82¾\82æ\82Ë\81I
+\82«\82ã\82¤\82è\90H\82×\82Ä\89ñ\95\9c\82¾\82Á\81I
+[2A 0x00024D68 00 Reimu *Nitori]
+\82¨\82¢\82µ\82Á\81I
+[28 0x000253A8 02 *Reimu]
+\82³\82Ä\82³\82Ä
+\8e\9f\82É\8fo\82Ä\82­\82é\82Ì\82Á\82Ä\92N\82©\82µ\82ç\82Ë
+[2A 0x00025558 02 *Reimu]
+\82±\82Ì\90\90^\96Ê\96Ú\82È\95µ\88Í\8bC\82©\82ç\82·\82é\82Æ\81c
+[2A 0x000256EC 02 *Reimu]
+\82â\82Á\82Ï\82è
+\82 \82Ì\83\81\83C\83h\82Ì\93o\8fê\82æ\82Ë
+[2A 0x00025880 02 *Reimu]
+\89½\82Ì\96Ú\93I\82ª\82 \82Á\82Ä
+\8d¡\89ñ\82Ì\82±\82Æ\82ð\8ed\91g\82ñ\82¾\82Ì\82©\81c
+[2A 0x00025A14 02 *Reimu]
+\89ï\82Á\82Ä\8am\82©\82ß\82Ä\82 \82°\82æ\82¤\82\82á\82È\82¢\81I
+[28 0x00026078 00 Reimu *Sakuya]
+\82Ó\82¤\82ñ\81c\97\88\82½\82ñ\82¾
+[2A 0x00026280 00 *Reimu Sakuya]
+\82¢\82«\82È\82è\82È\82ñ\82È\82Ì
+[2A 0x00026474 00 Reimu *Sakuya]
+\81u\82¢\82ç\82Á\82µ\82á\82¢\82Ü\82¹\81v
+[2A 0x00026668 00 Reimu *Sakuya]
+\82Æ\82Å\82à\8c¾\82Á\82Ä\97~\82µ\82©\82Á\82½\82Ì\82©\82µ\82ç\81H
+[2A 0x0002685C 00 *Reimu Sakuya]
+\95Ê\82É\82¢\82¢\82¯\82Ç
+[2A 0x00026A50 00 Reimu *Sakuya]
+\82¢\82ç\82Á\82µ\82á\82¢\82Ü\82¹\81c
+[2A 0x00026C44 00 Reimu *Sakuya]
+\82¨\8fì\97l\81ô
+[2A 0x00026E38 00 *Reimu Sakuya]
+\82¤\82¦\81c
+\82â\82ß\82Ä\82æ\82Ë
+[2A 0x0002702C 00 Reimu *Sakuya]
+\82¤\82Ó\82Ó
+[2A 0x00027220 00 *Reimu Sakuya]
+\8e\84\82ð\82©\82ç\82©\82¢\82½\82¢\82Ì\82ª\97\9d\97R\82Å
+[2A 0x00027414 00 *Reimu Sakuya]
+\82±\82ñ\82È\82±\82Æ
+\82µ\82Ä\82é\82í\82¯\82\82á\82È\82¢\82í\82æ\82Ë\81H
+[2A 0x00027608 00 Reimu *Sakuya]
+\82¦\82¦\81B
+\93\96\82½\82è\91O\82Å\82µ\82å\82¤\81H
+[2A 0x000277FC 00 *Reimu Sakuya]
+\82¾\82Á\82½\82ç\96Ú\93I\82Í
+\89½\82È\82Ì\81H
+[2A 0x000279F0 00 Reimu *Sakuya]
+\96Ú\93I\81c\81H
+[2A 0x00027BE4 00 Reimu *Sakuya]
+\82Ó\82Ó\81A\82»\82ê\82Í
+\82·\82Å\82É\89Ê\82½\82³\82ê\82½\82í
+[2A 0x00027DD8 00 *Reimu Sakuya]
+\81I\81H
+[2A 0x00027FCC 00 Reimu *Sakuya]
+\82 \82È\82½\82ª\82±\82±\82É\82¢\82é\82±\82Æ
+\82»\82ê\82ª\8e\84\82Ì\96Ú\93I\81c
+[2A 0x000281C0 00 *Reimu Sakuya]
+\82¾\82Á\82½\82ç\81c
+\82à\82¤\8bA\82Á\82½\95û\82ª\82¢\82¢\82Ì\81H
+[2A 0x000283B4 00 Reimu *Sakuya]
+\82¢\82¢\82¦\81B
+\82»\82ñ\82È\82í\82¯\82È\82¢\82\82á\82È\82¢
+[2A 0x000285A8 00 Reimu *Sakuya]
+\93ä\82Í\82Ü\82¾\8ec\82Á\82Ä\82¢\82é\82Å\82µ\82å\82¤\81H
+\8dÄ\82Ñ\8cJ\82è\95Ô\82³\82ê\82½\82 \82Ì\8dg\82¢\96\81c
+[2A 0x0002879C 00 *Reimu Sakuya]
+\92N\82ª\81A\89½\82Ì\82½\82ß\82É\81c\82Ë\81H
+[2A 0x00028990 00 Reimu *Sakuya]
+\82 \82È\82½\82Ì\8dl\82¦\82Í\81H
+[2A 0x00028B84 00 *Reimu Sakuya]
+\8c\88\82Ü\82Á\82Ä\82é\82\82á\82È\82¢
+[2A 0x00028D78 00 *Reimu Sakuya]
+\82 \82È\82½\82ª\91å\8dD\82«\82È
+\82±\82Ì\8aÙ\82Ì\82²\8eå\90l\97l\82æ
+[2A 0x00028F6C 00 Reimu *Sakuya]
+\82¤\82Ó\82Ó\81A\82»\82ê\82ª\82í\82©\82Á\82Ä\82¢\82Ä
+\82±\82±\82Ü\82Å\97\88\82½\82Ì\82æ\82Ë
+[2A 0x00029160 00 Reimu *Sakuya]
+\82³\82Ä\81c\82â\82è\82Ü\82µ\82å\82¤\82©
+[2A 0x00029354 00 *Reimu Sakuya]
+\82¨\91|\8f\9c\82ð\81I\81H
+[2A 0x00029548 00 *Reimu Sakuya]
+\8dç\96é\82Á\82½\82ç
+\82¨\91|\8f\9c\82ð\82³\82Ú\82Á\82Ä\82é\82Å\82µ\82å
+[2A 0x0002973C 00 *Reimu Sakuya]
+\83p\83`\83\85\83\8a\81[\82ª\8d¢\82Á\82Ä\82½\82í
+[2A 0x00029930 00 Reimu *Sakuya]
+\82»\82ê\82Í\82 \82È\82½\82Ì\82¹\82¢\81B
+\82 \82È\82½\82Ì\8dß
+[2A 0x00029B24 00 *Reimu Sakuya]
+\8e\84\82ª\89½\82©\82µ\82½\81H
+[2A 0x00029D18 00 Reimu *Sakuya]
+\89ß\8b\8e\82à\96¢\97\88\82à\8d¡\82à
+[2A 0x00029F0C 00 Reimu *Sakuya]
+\82 \82È\82½\82Í\94Æ\82µ\82Ä\82¢\82é\82Ì\8dß\82ð\81B
+\89½\93x\82à\89½\93x\82à\81c
+[2A 0x0002A100 00 *Reimu Sakuya]
+\8e©\8ao\82Í\82È\82¢\82ñ\82¾\82¯\82Ç
+\82»\82¤\82Ý\82½\82¢\82Ë
+[2A 0x0002A2F4 00 *Reimu Sakuya]
+\89½\82Ì\8dß\82È\82Ì\81H
+[2A 0x0002A4E8 00 Reimu *Sakuya]
+\8c¾\82¦\81c\82È\82¢\81c
+[2A 0x0002A6DC 00 *Reimu Sakuya]
+\82í\81c\81B
+\93\82\93Ë\82É\8fÆ\82ê\82½\81H
+[2A 0x0002A8D0 00 *Reimu Sakuya]
+\82Á\82Ä\82±\82Æ\82Í\81A
+\83\8c\83~\83\8a\83A\97\8d\82Ý\82Ë
+[2A 0x0002AAC4 00 Reimu *Sakuya]
+\83f\83\8c\82Ä\82È\82¢\82©\82ç
+[2A 0x0002ACB8 00 *Reimu Sakuya]
+\8fÆ\82ê\82Á\82Ä\82¢\82Á\82½\82¯\82Ç\81H
+[2A 0x0002AEAC 00 Reimu *Sakuya]
+\8ao\8cå\82È\82³\82¢\81I
+[2A 0x0002B0A0 00 *Reimu Sakuya]
+\93{\82Á\82½\82Ì\82È\82ç\90}\90¯\82Ë
+[2A 0x0002B294 00 Reimu *Sakuya]
+\81I\81H
+[2A 0x0002B488 00 Reimu *Sakuya]
+\82¢\82¢\82Å\82µ\82å\82¤\81B
+\83`\83\8a\82É\82µ\82Ä\95Ð\82Ã\82¯\82Ä\82 \82°\82Ü\82·\81I
+[2A 0x0002B67C 00 *Reimu Sakuya]
+\83\81\83C\83h\82Ì\91|\8f\9c\8e©\8dì\8e©\89\89\81c
+[2A 0x0002B870 00 *Reimu Sakuya]
+\82¢\82¢\82í\81B
+\91\8a\8eè\82µ\82Ä\82 \82°\82é\81I
+[28 0x0002BF34 00 Reimu *Sakuya]
+\82â\82Á\82Ï\82è\93G\82í\82È\82¢\81A\82©\81c
+[2A 0x0002C13C 00 *Reimu Sakuya]
+\82Ç\82¤\82µ\82½\82Ì\81H
+\8b}\82É\82µ\82¨\82ç\82µ\82­\82È\82Á\82¿\82á\82Á\82Ä
+[2A 0x0002C330 00 Reimu *Sakuya]
+\94L\82Ý\82½\82¢\82¾\82Á\82Ä\8ev\82Á\82½\82©\82µ\82ç\81H
+[2A 0x0002C524 00 *Reimu Sakuya]
+\82¤\82¤\82ñ\81H
+[2A 0x0002C718 00 *Reimu Sakuya]
+\82 \82Á\81A\82¿\82å\82Á\82Æ
+\8ev\82Á\82½\82©\82à\82µ\82ê\82È\82¢
+[2A 0x0002C90C 00 Reimu *Sakuya]
+\82É\82á\82ñ\81A\82É\82á\82ñ\81A\82É\82á\82ñ\81B
+\82²\82ë\82É\82á\81[\82ñ\81ô
+[2A 0x0002CB00 00 *Reimu Sakuya]
+\82¦
+[2A 0x0002CCF4 00 Reimu *Sakuya]
+\90â\8bå\82³\82ê\82½
+[2A 0x0002CEE8 00 Reimu *Sakuya]
+\8ao\82¦\82Ä\82¢\82È\82¢\82©\81c
+\82»\82ê\82à\82»\82¤\82æ\82Ë
+[2A 0x0002D0DC 00 *Reimu Sakuya]
+\82¢\82Á\82½\82¢\82Ç\82¤\82µ\82½\82Ì\81H
+[2A 0x0002D2D0 00 Reimu *Sakuya]
+\8e\84\82Ì\82±\82Æ\82È\82ñ\82Ä
+\82Ç\82¤\82Å\82à\82¢\82¢\82ñ\82\82á\82È\82¢\82©\82µ\82ç\81H
+[2A 0x0002D4C4 00 Reimu *Sakuya]
+\82 \82È\82½\82à\8bC\82Ã\82¢\82Ä\82¢\82é\82ñ\82Å\82µ\82å\82¤\81H
+\82±\82±\82ª\82¨\82©\82µ\82¢\82Á\82Ä
+[2A 0x0002D6B8 00 *Reimu Sakuya]
+\82à\82Æ\82à\82Æ
+\82¨\82©\82µ\82È\82Æ\82±\82ë\82¾\82¯\82Ç\82Ë
+[2A 0x0002D8AC 00 *Reimu Sakuya]
+\89½\82©\92m\82Á\82Ä\82é\82Ì\82æ\82Ë\81H
+[2A 0x0002DAA0 00 Reimu *Sakuya]
+\8e\84\82½\82¿\82Í\8aF\81A
+\82±\82Ì\90¢\8aE\82©\82ç\8fo\82ç\82ê\82È\82¢
+[2A 0x0002DC94 00 Reimu *Sakuya]
+\82»\82ñ\82È\98b\82ð\95·\82«\82½\82¢\82Ì\82æ\82Ë
+[2A 0x0002DE88 00 *Reimu Sakuya]
+\82¦\82¦\81B
+\82±\82ê\82Á\82Ä\82â\82Á\82Ï\82è\81c
+[2A 0x0002E07C 00 Reimu *Sakuya]
+\82¨\8fì\97l\82Ì\82¨\97Í\81H
+[2A 0x0002E270 00 Reimu *Sakuya]
+\94¼\95ª\82Í\90^\81A\94¼\95ª\82Í\8bU\81B
+\82»\82ñ\82È\8c\8b\98_\82Ë
+[2A 0x0002E464 00 *Reimu Sakuya]
+\82 \82¢\82Â\82ª\8aÖ\8cW\82µ\82Ä\82é\82Ì\82Í
+\8aÔ\88á\82¢\82È\82¢\82Ì\82Ë\81H
+[2A 0x0002E658 00 Reimu *Sakuya]
+\92m\82è\82½\82¢\82Ì\82Ë\81A\94\8e\97í\97ì\96²
+[2A 0x0002E84C 00 Reimu *Sakuya]
+\82¾\82Á\82½\82ç\82¨\8fì\97l\82Ì
+\82¨\8bC\8e\9d\82¿\82ð\8am\82©\82ß\82Ä\82«\82Ä
+[2A 0x0002EA40 00 *Reimu Sakuya]
+\82»\82Ì\82Â\82à\82è\82æ\81B
+\82\82á\82 \82Ë
+[2A 0x0002EC34 00 Reimu *Sakuya]
+\82»\82ê\82Å\82Í\81c
+[2A 0x0002EED0 02 *Sakuya]
+\82 \82È\82½\82È\82ç
+\82«\82Á\82Æ\82í\82©\82é\81c
+[2A 0x0002F064 02 *Sakuya]
+\82±\82Ì\90¢\8aE\82Ì\92\86\90S\82É\82¢\82é\82Ì\82Í
+\82¨\8fì\97l\82Å\82Í\82È\82¢
+[2A 0x0002F1F8 02 *Sakuya]
+\94\8e\97í\97ì\96²\81c\82 \82È\82½\82È\82Ì\82¾\82Æ
+[28 0x0002F7D8 00 Reimu *Sakuya]
+\82¨\82Â\82©\82ê\82³\82Ü
+[2A 0x0002F9E0 00 *Reimu Sakuya]
+\82¦\81H
+\82¨\82Â\82©\82ê\82³\82Ü
+[2A 0x0002FBD4 00 *Reimu Sakuya]
+\82¢\82Á\82½\82¢\82Ç\82¤\82µ\82¿\82á\82Á\82½\82Ì\81H
+[2A 0x0002FDC8 00 Reimu *Sakuya]
+\95Ê\82É\82Ç\82¤\82à\82µ\82È\82¢\82¯\82Ç\81H
+[2A 0x0002FFBC 00 *Reimu Sakuya]
+\82È\82ñ\82¾\82©\8b}\82É
+\8aÛ\82­\82È\82Á\82Ä\82é\82ñ\82¾\82¯\82Ç
+[2A 0x000301B0 00 Reimu *Sakuya]
+\82¤\82Ó\82Ó\81A\94L\82\82á\82È\82¢\82©\82ç
+[2A 0x000303A4 00 Reimu *Sakuya]
+\82É\82á\82ñ\82É\82á\82ñ\81ô
+[2A 0x00030598 00 *Reimu Sakuya]
+\82¦\81c
+[2A 0x0003078C 00 Reimu *Sakuya]
+\8fç\92k\82¾\82Á\82½\82ñ\82¾\82¯\82Ç
+\8e\97\8d\87\82í\82È\82©\82Á\82½\82©\82µ\82ç
+[2A 0x00030980 00 *Reimu Sakuya]
+\94ß\82µ\82»\82¤\82É\8c¾\82í\82È\82¢\82Å\81B
+\82¿\82å\82Á\82Æ\89Â\88¤\82©\82Á\82½\82©\82È
+[2A 0x00030B74 00 Reimu *Sakuya]
+\96³\97\9d\82ª\82 \82Á\82½\82©\81c
+[2A 0x00030D68 00 Reimu *Sakuya]
+\82 \82È\82½\82É\8f­\82µ\90à\96¾\82µ\82Ä\82¨\82«\82Ü\82·\81B
+\82Ü\82¾\82¨\82µ\82Ü\82¢\82\82á\82È\82¢\81A\82Æ
+[2A 0x00030F5C 00 *Reimu Sakuya]
+\82»\82ê\82Á\82Ä\82Ç\82¤\82¢\82¤\88Ó\96¡\81H
+[2A 0x00031150 00 Reimu *Sakuya]
+\82»\82ê\82É\81A\82 \82È\82½\82É\82¨\8fì\97l\82ð
+\94C\82¹\82é\82±\82Æ\82Í\82Ü\82¾\96³\97\9d
+[2A 0x00031344 00 Reimu *Sakuya]
+\82³\82 \81A\90U\82è\8fo\82µ\82É\82à\82Ç\82Á\82Ä\81B
+\82à\82Á\82Æ\98r\82ð\96\81\82­\82Ì
+[2A 0x00031538 00 Reimu *Sakuya]
+\83Q\81[\83\80\82Í\81c
+\82±\82ê\82©\82ç\82¾\82í
+[28 0x00031BFC 02 *Reimu]
+\82»\82ë\82»\82ë\8fI\82í\82è\82©\82È\81H
+[2A 0x00031DAC 02 *Reimu]
+\82»\82ê\82Æ\82à\81A\82Ü\82¾\91±\82­\81H
+[2A 0x00031F40 02 *Reimu]
+\82Ç\82¿\82ç\82Å\82à\82¢\82¢\82ñ\82¾\82¯\82Ç
+[2A 0x000320D4 02 *Reimu]
+\96\82\97\9d\8d¹\82Ì\82â\82Â
+\82Ç\82¤\82µ\82Ä\82é\82ñ\82¾\82ë
+[2A 0x00032268 02 *Reimu]
+\82¨\82Â\82©\82¢\82Ì\82±\82Æ\82Í
+\96Y\82ê\82Ä\82é\82í\82Ë\82«\82Á\82Æ
+[2A 0x000323FC 02 *Reimu]
+\82Ó\82¤\81c
+[2A 0x00032590 02 *Reimu]
+\82¨\92\83\88ù\82à\82¤\82Æ\8ev\82Á\82½\82ç
+\82¨\89Ù\8eq\82ª\82È\82©\82Á\82½\82¾\82¯\82È\82Ì\82É
+[2A 0x00032724 02 *Reimu]
+\82Ù\82ñ\82Æ\95Ï\82È\93ú\82É\82È\82Á\82½\82È\81c
+[2A 0x000328B8 02 *Reimu]
+\82Ü\81A\82¢\82Â\82à\95Ï\82©\81B
+\90i\82ß\82é\82¾\82¯\90i\82ñ\82Å\82Ý\82é\82©
+[28 0x00032F1C 00 Reimu *Satori]
+\81c\81c
+[2A 0x00033124 00 *Reimu Satori]
+\82Ü\82½\82Ú\82¤\82Á\82Æ\82µ\82Ä\81B
+\82±\82±\82Å\89½\82µ\82Ä\82é\82Ì\81H
+[2A 0x00033318 00 Reimu *Satori]
+\81c\82²\82«\82°\82ñ\82æ\82¤
+[2A 0x0003350C 00 Reimu *Satori]
+\82Å\82à\81c
+[2A 0x00033700 00 Reimu *Satori]
+\82²\82«\82°\82ñ\82Å\82Í\82È\82¢\82æ\82¤\82Å\82·\82Ë\81c
+[2A 0x000338F4 00 *Reimu Satori]
+\93Ç\82ß\82Ä\82µ\82Ü\82Á\82½\81H
+\8e\84\82Ì\90S
+[2A 0x00033AE8 00 Reimu *Satori]
+\82Í\82¢\81c\96]\82ñ\82Å\82Í\82¢\82È\82¢\82¯\82Ç
+\8c©\82¦\82Ä\82µ\82Ü\82¤\82©\82ç\81c
+[2A 0x00033CDC 00 Reimu *Satori]
+\90S\82Ì\95\97\8ci\82ª\81c
+[2A 0x00033ED0 00 Reimu *Satori]
+\82 \82È\82½\82ç\82µ\82­\82È\82¢\82­\82ç\82¢\82É
+\97\90\82ê\82Ä\82¢\82é\82Ì\82ª\81c
+[2A 0x000340C4 00 *Reimu Satori]
+\82»\82¤\82©\82È\81H
+[2A 0x000342B8 00 *Reimu Satori]
+\82 \82ñ\82È\82±\82Æ\82â\82±\82ñ\82È\82±\82Æ\81c
+[2A 0x000344AC 00 Reimu *Satori]
+\82 \81c
+[2A 0x000346A0 00 Reimu *Satori]
+\82»\82ñ\82È\81c
+[2A 0x00034894 00 Reimu *Satori]
+\82¦\82¦\82Á\81c\81I\81H
+[2A 0x00034A88 00 Reimu *Satori]
+\82í\81A\82í\82½\82µ\81c
+[2A 0x00034C7C 00 Reimu *Satori]
+\82­\82­\82Á\81c\82Í\82 \81A\82Í\82 \81c
+[2A 0x00034E70 00 *Reimu Satori]
+\8bC\8e\9d\82¿\82¾\82¯
+\91S\97Í\8e¾\91\96\82µ\82Ä\82Ý\82½
+[2A 0x00035064 00 Reimu *Satori]
+\82Â\81A\82Â\82©\82ê\82Ü\82µ\82½\81c
+[2A 0x00035258 00 *Reimu Satori]
+\90S\82ð\93Ç\82ß\82È\82¢\82­\82ç\82¢
+\94æ\82ê\82¿\82á\82Á\82½\82Æ\82±\82ë\82Å
+[2A 0x0003544C 00 *Reimu Satori]
+\82 \82È\82½\82É\8e¿\96â\82ª\82 \82é\82Ì
+[2A 0x00035640 00 Reimu *Satori]
+\82Ç\82¤\82µ\82Ä\8e\84\82ª\82±\82±\82É\82¢\82é\81c\81H
+[2A 0x00035834 00 Reimu *Satori]
+\82»\82ê\82Æ\82à\81c\82±\82Ì\90¢\8aE\82ª
+\8cJ\82è\95Ô\82³\82ê\82Ä\82¢\82é\97\9d\81c\97R\81c\81H
+[2A 0x00035A28 00 *Reimu Satori]
+\82Ç\82¿\82ç\82à\92m\82è\82½\82¢\82ñ\82¾\82¯\82Ç
+[2A 0x00035C1C 00 Reimu *Satori]
+\8e\84\82Í\8fµ\91Ò\8bq\82Ì\88ê\90l\81B
+\82»\82ê\82ª\82Ð\82Æ\82Â\96Ú\82Ì\93\9a\82¦\82Å\82·\81c
+[2A 0x00035E10 00 Reimu *Satori]
+\82Ó\82½\82Â\96Ú\82Í
+\82Æ\82Ä\82à\95¡\8eG\82Å\82·\81c
+[2A 0x00036004 00 Reimu *Satori]
+\82½\82¾\82í\82©\82Á\82Ä\82¢\82é\82±\82Æ\82Í\81A
+\82Æ\82Ä\82à\8b­\82¢\8ev\82¢\82ª
+[2A 0x000361F8 00 Reimu *Satori]
+\82±\82Ì\90¢\8aE\82ð\82 \82é\8c`\82É
+\82µ\82æ\82¤\82Æ\82µ\82Ä\82¢\82é\82±\82Æ\81c
+[2A 0x000363EC 00 *Reimu Satori]
+\8b­\82¢\8ev\82¢\81H
+[2A 0x000365E0 00 Reimu *Satori]
+\92N\82©\82ª\96]\82ñ\82Å\82¢\82é\82©\82ç
+\82 \82È\82½\82à\8e\84\82à\82±\82±\82É\82¢\82é
+[2A 0x000367D4 00 Reimu *Satori]
+\82»\82¤\82¢\82¤\82±\82Æ\82È\82Ì\82æ
+[2A 0x000369C8 00 *Reimu Satori]
+\82æ\82­\82í\82©\82ç\82È\82¢
+[2A 0x00036BBC 00 *Reimu Satori]
+\82Å\82à\82Ý\82ñ\82È\81A\89½\82©\82ª\82¨\82©\82µ\82¢\81B
+\82»\82ñ\82È\8e\9e\82Á\82Ä
+[2A 0x00036DB0 00 Reimu *Satori]
+\82 \82È\82½\82Í\95ú\82Á\82Ä\82¨\82¯\82È\82¢\81c
+\82í\82©\82è\82Ü\82·\81c
+[2A 0x00036FA4 00 Reimu *Satori]
+\82Å\82Í\90í\82¢\82Ü\82µ\82å\82¤\81c
+[2A 0x00037198 00 Reimu *Satori]
+\82Ð\82Æ\82Â\96Ú\82Ì\97p\8e\96\82à\82 \82é\82¯\82Ç\81c
+\82»\82ê\82Í\8cã\82Å\82à\90æ\82Å\82à\82¢\82¢\82©\82ç\81c
+[28 0x0003785C 00 Reimu *Satori]
+\82¸\82¢\82Ô\82ñ\82Æ\90S\81c
+\90®\82Á\82Ä\82«\82½\82Ý\82½\82¢\82Å\82·\81c
+[2A 0x00037A64 00 *Reimu Satori]
+\82Ó\81[\82ñ\81A\82 \82ñ\82½\82É\82Í
+\8e\84\82Ì\90S\82ª\82»\82¤\8c©\82¦\82é\82í\82¯\82Ë
+[2A 0x00037C58 00 Reimu *Satori]
+\82¦\82¦\81AäD\82É\97\8e\82¿\82½\81c
+\82»\82ñ\82È\8a´\82\82ª\82µ\82Ü\82·\81c
+[2A 0x00037E4C 00 *Reimu Satori]
+\82\82á\82 
+\89½\82à\8c¾\82í\82È\82­\82Ä\82¢\82¢\82Ì\82æ\82Ë
+[2A 0x00038040 00 Reimu *Satori]
+\82¦\82¦\81A\82Å\82à\82±\82Ì\90æ\82Ö\82Æ
+\8b}\82¢\82Å\8b\8e\82Á\82Ä\82µ\82Ü\82¤\91O\82É
+[2A 0x00038234 00 Reimu *Satori]
+\8e\84\82Ì\98b\82ð\95·\82¢\82Ä\82­\82¾\82³\82¢\81c
+[2A 0x00038428 00 *Reimu Satori]
+\82¢\82¢\82í
+[2A 0x0003861C 00 Reimu *Satori]
+\81c\82 \82è\82ª\82Æ\82¤
+[2A 0x00038810 00 Reimu *Satori]
+\82 \82È\82½\82ª\8ev\82Á\82Ä\82¢\82é\92Ê\82è\81A
+\82±\82Ì\90¢\8aE\82Í\8cJ\82è\95Ô\82³\82ê\82Ä\82¢\82é\81c
+[2A 0x00038A04 00 Reimu *Satori]
+\8bC\82Ã\82¢\82Ä\82¢\82é\90l\82à\82¢\82ê\82Î
+\8a´\82\82Ä\82¢\82é\90l\82à\82¢\82é\81c
+[2A 0x00038BF8 00 Reimu *Satori]
+\92m\82Á\82Ä\82¢\82é\90l\82à\82¢\82ê\82Î
+\96³\8e\8b\82µ\82Ä\82¢\82é\90l\82à\82¢\82½\81c
+[2A 0x00038DEC 00 *Reimu Satori]
+\8e\84\82Í\96³\8e\8b\82ð\82µ\82Ä\82¢\82½\82Ì\82©\82È\81H
+[2A 0x00038FE0 00 Reimu *Satori]
+\81c\82»\82¤\82©\82à\82µ\82ê\82È\82¢\82Å\82·
+[2A 0x000391D4 00 Reimu *Satori]
+\82 \82È\82½\82Í
+\89½\93x\82à\8cJ\82è\95Ô\82µ\82½\82Í\82¸\81c
+[2A 0x000393C8 00 Reimu *Satori]
+\81u\8dg\96\88Ù\95Ï\81v\82Å\82Ì
+\8fo\89ï\82¢\82Æ\90í\82¢\82ð\82Å\82·\81c
+[2A 0x000395BC 00 *Reimu Satori]
+\81u\8dg\96\88Ù\95Ï\81v
+\82»\82¤\82©\81c\82»\82¤\82¾\82Á\82½\82Ì\82Ë
+[2A 0x000397B0 00 *Reimu Satori]
+\82 \82Ì\8e\9e\82ð
+\8e\84\82½\82¿\82Í\8cJ\82è\95Ô\82µ\82Ä\82¢\82½
+[2A 0x000399A4 00 *Reimu Satori]
+\82¸\82Á\82Æ\8fI\82í\82ç\82È\82¢\82Ü\82Ü
+[2A 0x00039B98 00 Reimu *Satori]
+\8fI\82í\82é\82±\82Æ\82Í
+\94ß\82µ\82¢\82±\82Æ\82Å\82·\82©\81c\81H
+[2A 0x00039D8C 00 *Reimu Satori]
+\82³\82 \81A\82í\82©\82ç\82È\82¢\82í\81B
+\8e\84\82Í\82Ç\82¿\82ç\82Å\82à\82¢\82¢\82©\82ç
+[2A 0x00039F80 00 *Reimu Satori]
+\82Å\82à\81A\8fI\82í\82è\82ð\94ß\82µ\82¢\82Æ\8ev\82¤
+\8bC\8e\9d\82¿\82Í\82í\82©\82é
+[2A 0x0003A174 00 Reimu *Satori]
+\82¾\82Á\82½\82ç\82»\82Ì\97D\82µ\82¢\8bC\8e\9d\82¿\82ð
+\82 \82Ì\8eq\82É\93`\82¦\82Ä\82 \82°\82Ä\81c
+[2A 0x0003A368 00 Reimu *Satori]
+\82·\82×\82Ä\82Í\81c\89^\96½\82ð\82½\82®\82è\8añ\82¹\82é
+\97Í\82ð\8e\9d\82Á\82Ä\82µ\82Ü\82Á\82½\82ª\82½\82ß\82É
+[2A 0x0003A55C 00 Reimu *Satori]
+\8e©\90g\82Ì\8eã\82³\82É\97\8d\82ß\8eæ\82ç\82ê\82½
+\91Ê\96Ú\82È\8bz\8c\8c\8bS\82Ì\82¹\82¢\81c
+[2A 0x0003A750 00 *Reimu Satori]
+\8dÅ\8cã\82Ì\8dÅ\8cã\82É\93Å\82Ã\82¢\82½\82Ì\82Ë
+[2A 0x0003A944 00 Reimu *Satori]
+\96J\82ß\8c¾\97t\82Å\82·\81c
+\96¢\90¬\8fn\82È\91\93\82¢åQ\93I\82È\81c
+[2A 0x0003AB38 00 *Reimu Satori]
+\82Ç\82±\82ª\82æ
+[2A 0x0003AD2C 00 *Reimu Satori]
+\82¢\82¢\82í\81A\89ï\82Á\82Ä\82­\82é\81B
+\82±\82Ì\90æ\82É\82¢\82é\83\8c\83~\83\8a\83A\82É\82Ë
+[2A 0x0003AF20 00 *Reimu Satori]
+\8dÅ\8cã\82É\82Ù\82ç\81B
+\90S\82ð\93Ç\82ñ\82Å\82Ý\82Ä
+[2A 0x0003B114 00 Reimu *Satori]
+\82Þ\81c
+[2A 0x0003B308 00 Reimu *Satori]
+\82 \82Á\81c
+\82»\82ñ\82È\82Ì\82Á\82Ä\81c
+[2A 0x0003B4FC 00 Reimu *Satori]
+\82à\82¤\82¢\82¢\82Å\82·
+[2A 0x0003B6F0 00 Reimu *Satori]
+\91å\90l\94\83\82¢\82Í
+\91å\90l\82É\82È\82Á\82Ä\82©\82ç\82Å\82·
+[2A 0x0003B8E4 00 Reimu *Satori]
+\82Ù\82ñ\82Æ\82É\95 \8d\95\82¢\82ñ\82Å\82·\82©\82ç\81c
+\82¨\82³\82¢\91K\82Ì\96³\91Ê\8eg\82¢\82Í\82¾\82ß\82Å\82·\81c
+[2A 0x0003BAD8 00 *Reimu Satori]
+\93{\82ç\82ê\82½\82©\81B
+\82\82á\82 \82Ë
+[2A 0x0003BCCC 00 Reimu *Satori]
+\82Í\82¢\81c
+[2A 0x0003BF8C 00 Reimu *Satori]
+\82³\82Ä\82Æ\81c
+\90Ã\82©\82É\82È\82è\82Ü\82µ\82½\81c
+[2A 0x0003C180 00 Reimu *Satori]
+\82¿\82å\82Á\82Æ\82³\82Ý\82µ\82¢\82¯\82Ç\81c
+\82»\82ê\82Í\92N\82©\82Ì\90S\82\82á\82È\82­\82Ä\81c
+[2A 0x0003C374 00 Reimu *Satori]
+\82Ü\82½\89ï\82¦\82Ü\82·\82æ\82Ë\81c
+\82Ý\82ñ\82È\82Æ\81c
+[28 0x0003C9B4 00 Reimu *Satori]
+\82³\82·\82ª\94\8e\97í\82Ì\9bÞ\8f\97\81c
+\82â\82Á\82Ï\82è\82±\82¤\82È\82Á\82Ä\82µ\82Ü\82¢\82Ü\82·\82©\81c
+[2A 0x0003CBBC 00 *Reimu Satori]
+\8e\84\82ª\8dl\82¦\82Ä\82¢\82é\82±\82Æ
+\82í\82©\82é\82í\82æ\82Ë\81H
+[2A 0x0003CDB0 00 Reimu *Satori]
+\81c\81c
+[2A 0x0003CFA4 00 *Reimu Satori]
+\82¦\82¢\81I
+[2A 0x0003D198 00 Reimu *Satori]
+\81c\81c\8c\99\82Å\82·\81B
+\82¢\82â\82ç\82µ\82¢
+[2A 0x0003D38C 00 *Reimu Satori]
+\82»\82ñ\82È\82±\82Æ
+\82¢\82Á\82³\82¢\8dl\82¦\82Ä\82È\82¢\82©\82ç
+[2A 0x0003D580 00 Reimu *Satori]
+\82²\82ß\82ñ\82È\82³\82¢\81c
+[2A 0x0003D774 00 Reimu *Satori]
+\82Å\82à\81c\82 \82È\82½\82Ì
+\8bC\8e\9d\82¿\82\82á\82È\82¢\82Æ\82µ\82½\82ç\81c
+[2A 0x0003D968 00 Reimu *Satori]
+\82 \82Á\81c
+[2A 0x0003DB5C 00 *Reimu Satori]
+\8e©\94\9a\82µ\82½\82Ì\82Ë
+[2A 0x0003DD50 00 Reimu *Satori]
+\82Í\82¢\81c
+[2A 0x0003DF44 00 Reimu *Satori]
+\82 \82È\82½\82ð\82©\82ç\82©\82¨\82¤\82Æ\82µ\82Ä
+\8e¸\94s\82µ\82Ä\82µ\82Ü\82¢\82Ü\82µ\82½\81c
+[2A 0x0003E138 00 *Reimu Satori]
+\82Ü\82Á\82½\82­\81B
+\82¢\82¢\82¯\82Ç\82Ë
+[2A 0x0003E32C 00 *Reimu Satori]
+\82»\82ê\82Å\81H
+[2A 0x0003E520 00 Reimu *Satori]
+\82 \82È\82½\82Ì\93¹\82Í\82±\82Ì\90æ\82É
+\82 \82é\82©\82à\82µ\82ê\82È\82¢\81c
+[2A 0x0003E714 00 Reimu *Satori]
+\82¾\82¯\82Ç\82Ü\82¾\81c
+\90i\82ß\82È\82¢\82Ý\82½\82¢\82Å\82·\81c
+[2A 0x0003E908 00 *Reimu Satori]
+\82»\82ê\82Á\82Ä\82Ç\82¤\82µ\82Ä\82È\82Ì\81H
+[2A 0x0003EAFC 00 Reimu *Satori]
+\92N\82©\82ª\96]\82Þ\89^\96½\82Ì\8c`\82ª
+\82Ü\82¾\82±\82±\82É\82Í\91\8dÝ\82µ\82È\82¢\81c
+[2A 0x0003ECF0 00 Reimu *Satori]
+\82Æ\82Å\82à\8c¾\82Á\82Ä\82¨\82«\82Ü\82·\81c
+[2A 0x0003EEE4 00 Reimu *Satori]
+\82»\82µ\82Ä\82±\82Ì\90¢\8aE\82É\82Í\81c
+\82Ü\82¾\91±\82«\82ª\82 \82é\82æ\82¤\82Å\82·\81c
+[2A 0x0003F0D8 00 *Reimu Satori]
+\82»\82ê\82Á\82Ä\81H
+[2A 0x0003F2CC 00 Reimu *Satori]
+\82Ü\82½\82¨\89ï\82¢\82µ\82Ü\82µ\82å\82¤\81c\81B
+\8d¡\82Æ\82Í\88á\82¤\81A\95Ê\82Ì\8c`\82Å\81c\81c
+[28 0x0003F990 02 *Reimu]
+\81u\8dg\96\88Ù\95Ï\81v\82ª\8cJ\82è\95Ô\82³\82ê\82Ä\82é\81B
+\82»\82ê\82Í\8aÔ\88á\82¢\82È\82¢\82í\82Ë
+[2A 0x0003FB40 02 *Reimu]
+\82±\82Ì\95Â\8d½\8bó\8aÔ\81u\8dg\96\82\8b½\81v\82©\82ç
+\92N\82à\8fo\82ç\82ê\82È\82¢\82Ì\82Í
+[2A 0x0003FCD4 02 *Reimu]
+\8dg\82¢\96\82Ì\82¹\82¢\82È\82Ì\82©
+\82»\82ê\82Æ\82à\95Ê\82Ì\81c
+[2A 0x0003FE68 02 *Reimu]
+\95û\96@\82Í\82È\82ñ\82¾\82Á\82Ä\82¢\82¢\81B
+\82Å\82à\81A\97\9d\97R\82Í\92m\82ç\82È\82«\82á\82Ë\81I
+[2A 0x0003FFFC 02 *Reimu]
+\82±\82Ì\89Q\82Ì\89\9c\82É\82Í\82 \82¢\82Â\82ª\82¢\82é
+[2A 0x00040190 02 *Reimu]
+\83\8c\83~\83\8a\83A\81E\83X\83J\81[\83\8c\83b\83g\81c
+\82¸\82Á\82Æ\91Ò\82Á\82Ä\82¢\82½\82Ì\82æ\82Ë
+[2A 0x00040324 02 *Reimu]
+\82·\82®\82É\8ds\82­\82©\82ç\81B
+\91Ò\82Á\82Ä\82¢\82È\82³\82¢
+[28 0x00040988 00 Reimu *Remilia]
+\82Ó\82Ó\81c
+[2A 0x00040B90 00 Reimu *Remilia]
+\82¤\82Ó\82Ó\82Ó\82Ó\81c
+[2A 0x00040D84 00 *Reimu Remilia]
+\8ay\82µ\82»\82¤\82Ë\81A\83\8c\83~\83\8a\83A
+[2A 0x00040F78 00 Reimu *Remilia]
+\82æ\82­\97\88\82½\81A\94\8e\97í\97ì\96²\81c
+[2A 0x0004116C 00 *Reimu Remilia]
+\81u\8dg\96\82\8b½\81v\82Í\82 \82È\82½\82Ì\82¹\82¢\82Á\82Ä
+\82±\82Æ\82Å\82¢\82¢\82Ì\82æ\82Ë\81H
+[2A 0x00041360 00 Reimu *Remilia]
+\89ä\82ª\97Í\82ª\82Â\82Þ\82¬\82µ\96À\8b{\82Ì
+\97\8a\82è\82È\82«\8fZ\90l\82æ\81c
+[2A 0x00041554 00 Reimu *Remilia]
+\82±\82Ì\8dg\82«\8cË\98f\82¢\82Ì\82Ó\82¿\82Å
+[2A 0x00041748 00 Reimu *Remilia]
+\82±\82Ì\82Ü\82Ü\89ä\82ª\91«\8c³\82É
+\82©\82µ\82¸\82­\82ª\82æ\82¢\82¼\81c
+[2A 0x0004193C 00 Reimu *Remilia]
+\82­\82­\82Á\81c
+\82­\82­\82­\82­\82­\82Á\81c
+[2A 0x00041B30 00 Reimu *Remilia]
+\82 \82Í\82Í\82Í\82Í\82Á\81I
+[2A 0x00041D24 00 *Reimu Remilia]
+\8fZ\90l\82Á\82Ä\81c\81B
+\8fZ\82ñ\82¾\8ao\82¦\82Í\82È\82¢\82©\82ç
+[2A 0x00041F18 00 *Reimu Remilia]
+\82»\82ê\82É
+\82¾\82¢\82½\82¢\82Ì\82±\82Æ\82Í\82í\82©\82Á\82Ä\82é
+[2A 0x0004210C 00 Reimu *Remilia]
+\82¦\82Á\81c\81I\81H
+[2A 0x00042300 00 *Reimu Remilia]
+\92N\82à\8aÙ\82©\82ç\82Å\82ç\82ê\82È\82¢\82µ
+\8e\9e\8aÔ\82à\8cJ\82è\95Ô\82³\82ê\82Ä\82é
+[2A 0x000424F4 00 *Reimu Remilia]
+\82Å\82µ\82å\81H
+[2A 0x000426E8 00 Reimu *Remilia]
+\82Þ\81c
+[2A 0x000428DC 00 Reimu *Remilia]
+\82¤\82Ó\82Ó\82Á\81B
+\82³\82·\82ª\82Ë\97ì\96²
+[2A 0x00042AD0 00 *Reimu Remilia]
+\82³\82 
+\82±\82Ì\90¢\8aE\82ð\8fI\82í\82ç\82¹\82È\82³\82¢
+[2A 0x00042CC4 00 Reimu *Remilia]
+\82Ð\82Ç\82¢\82±\82Æ\82ð\8c¾\82¤\82Ì\82Ë\81B
+\82Å\82à\81A\82»\82ê\82à\8að\82µ\82¢\82í
+[2A 0x00042EB8 00 Reimu *Remilia]
+\8c\8e\82Ì\8dg\82³\82É
+\8b\83\82«\82»\82¤\82É\82È\82é\82±\82Æ
+[2A 0x000430AC 00 Reimu *Remilia]
+\95\91\82¤\89Ø\82Ì\8dg\82ª
+\93ñ\93x\82Æ\8aÒ\82ç\82Ê\82±\82Æ
+[2A 0x000432A0 00 Reimu *Remilia]
+\97ì\96²\82È\82ç\82í\82©\82Á\82Ä\82­\82ê\82é\82Æ
+\8ev\82Á\82Ä\82¢\82½\82à\82Ì
+[2A 0x00043494 00 *Reimu Remilia]
+\82»\82ê\82ª\81u\8dg\96\82\8b½\81v\82Å
+\8e\9e\82ð\8cJ\82è\95Ô\82³\82¹\82½\97\9d\97R\81H
+[2A 0x00043688 00 *Reimu Remilia]
+\8aF\82ð\8aª\82«\8d\9e\82ñ\82Å\81H
+[2A 0x0004387C 00 *Reimu Remilia]
+\82¾\82Á\82½\82ç
+\96{\90S\82ð\95·\82©\82¹\82Ä\82­\82ê\82é\81H
+[2A 0x00043A70 00 Reimu *Remilia]
+\82¢\82¢\82í\81c\95·\82©\82¹\82Ä\82 \82°\82é\81c
+[2A 0x00043C64 00 Reimu *Remilia]
+\8e\84\82Í\97ì\96²\82Æ\90í\82¢\82½\82¢\81c
+[2A 0x00043E58 00 Reimu *Remilia]
+\90í\82¢\82½\82­\82Ä\90í\82¢\82½\82­\82Ä
+\8ed\95û\82ª\82È\82©\82Á\82½\81c
+[2A 0x0004404C 00 Reimu *Remilia]
+\82¸\82Á\82Æ\82¸\82Á\82Æ
+\82¢\82Â\82Ü\82Å\82à\81c
+[2A 0x00044240 00 Reimu *Remilia]
+\82±\82Ì\93µ\82ª\8dg\82É\81c
+\8a®àø\82É\90õ\82ß\94²\82©\82ê\82é\82Ü\82Å\81I
+[28 0x00044904 00 Reimu *Remilia]
+\8e\84\82Ì\95\89\82¯\81c
+[2A 0x00044B0C 00 Reimu *Remilia]
+\82Ç\82¤\82µ\82Ä\81H
+[2A 0x00044D00 00 Reimu *Remilia]
+\82È\82º\8f\9f\82Ä\82È\82¢\81H
+[2A 0x00044EF4 00 *Reimu Remilia]
+\8e\84\82Ì\95û\82ª\8b­\82¢\82©\82ç\82\82á\82È\82¢\81H
+[2A 0x000450E8 00 Reimu *Remilia]
+\82Þ\82¤\82Á\81I\81H
+[2A 0x000452DC 00 *Reimu Remilia]
+\82³\82 \81A\82±\82±\82©\82ç
+\8fo\82µ\82Ä\82à\82ç\82¢\82Ü\82µ\82å\82¤\82©
+[2A 0x000454D0 00 Reimu *Remilia]
+\82­\82Á\82­\82Á\82­\82Á\82­\82Á\82­
+\82»\82ê\82Í\82Ü\82¾\96³\97\9d\82Ë
+[2A 0x000456C4 00 *Reimu Remilia]
+\82»\82ê\82Á\82Ä\81A\82 \82ñ\82½\82Ì\97Í\82\82á
+\95\95\88ó\82ð\89ð\82¯\82È\82¢\82Á\82Ä\82±\82Æ\81H
+[2A 0x000458B8 00 Reimu *Remilia]
+\81c\81c\81c\81c
+[2A 0x00045AAC 00 Reimu *Remilia]
+\82»\82¤\82Æ\82à\82¢\82¤\82í\82Ë
+[2A 0x00045CA0 00 *Reimu Remilia]
+\82Ü\82Á\82½\82­\81A\8e©\95ª\82ª\82Ü\82Æ\82à\82É
+\88µ\82¦\82È\82¢\97Í\82ð\8eg\82Á\82Ä\82Ü\82Å
+[2A 0x00045E94 00 *Reimu Remilia]
+\8e\84\82Æ\90í\82¢\82½\82©\82Á\82½\82Á\82Ä\82¢\82¤\82Ì\81H
+[2A 0x00046088 00 Reimu *Remilia]
+\82»\82Ì\92Ê\82è\82¾\82¯\82Ç\88«\82¢\81H
+[2A 0x0004627C 00 Reimu *Remilia]
+\8fj\8f\9f\89ï\82Ì\8f\80\94õ\82à\82µ\82Ä\82¢\82½\82í
+\8bq\90l\82à\8cÄ\82ñ\82Å\82¨\82¢\82½\82µ
+[2A 0x00046470 00 Reimu *Remilia]
+\82Ü\82 \81c\83Q\83X\83g\82Æ\82¢\82¤\82©
+\98J\93­\97Í\82Æ\82µ\82Ä\82à\90\94\82¦\82Ä\82¢\82½\82¯\82Ç
+[2A 0x00046664 00 *Reimu Remilia]
+\82»\82Ì\8fj\8f\9f\89ï\81A\92\86\8e~\82·\82é\82í\82¯\81H
+[2A 0x00046858 00 Reimu *Remilia]
+\81c\82»\82¤\82·\82é\82µ\82©\82È\82¢\82í
+[2A 0x00046A4C 00 Reimu *Remilia]
+\82µ\82©\82µ\81A\8e\9f\82Í\95K\82¸\82â
+\8e\84\82ª\97ì\96²\82É\8f\9f\82Á\82Ä\82Ý\82¹\82é\81I
+[2A 0x00046C40 00 *Reimu Remilia]
+\96³\97\9d\96³\97\9d
+[2A 0x00046E34 00 Reimu *Remilia]
+\82É\82á\81I\81H
+[2A 0x00047028 00 *Reimu Remilia]
+\82Å\82à\81c\82â\82Á\82½\82ç\82¢\82¢\82\82á\82È\82¢
+[2A 0x0004721C 00 *Reimu Remilia]
+\82Ç\82¤\82¹\82±\82±\8fo\82é\82É\82Í
+\89½\82©\82â\82ç\82È\82¢\82Æ\82¢\82¯\82È\82¢\82ñ\82Å\82µ\82å\82¤\81H
+[2A 0x00047410 00 *Reimu Remilia]
+\82¾\82Á\82½\82ç\8e\9e\8aÔ\82à\82 \82é\82í\82¯\82¾\82µ\82Ë
+[2A 0x00047604 00 *Reimu Remilia]
+\8fj\8f\9f\89ï\82\82á\82È\82¢\82¯\82Ç\81c
+\82»\82¤\82Ë\81A\82¨\92\83\89ï\82Å\82Ç\82¤\81H
+[2A 0x000477F8 00 *Reimu Remilia]
+\82¿\82å\82¤\82Ç
+\82¨\92\83\82ª\88ù\82Ý\82½\82©\82Á\82½\82Ì\82æ\82Ë
+[2A 0x000479EC 00 Reimu *Remilia]
+\82Ó\82¤\82Þ\81c\82»\82ê\82Í\88«\82­\82È\82¢\92ñ\88Ä\82Ë
+[2A 0x00047BE0 00 Reimu *Remilia]
+\82æ\82µ\81A\82Å\82Í\82·\82®\82É\82Í\82\82ß\82æ\82¤\81I
+[2A 0x00047DD4 00 *Reimu Remilia]
+\82Æ\82±\82ë\82Å\8e¿\96â\82È\82ñ\82¾\82¯\82Ç
+[2A 0x00047FC8 00 *Reimu Remilia]
+\82Ç\82¤\82µ\82Ä\81A\82í\82´\82í\82´
+\82±\82ñ\82È\90¢\8aE\82ð\8dì\82Á\82½\82Ì\81H
+[2A 0x000481BC 00 Reimu *Remilia]
+\82»\82ê\82Í\97ì\96²\82Æ\90í\82¤\82½\82ß\82É\81c
+[2A 0x000483B0 00 *Reimu Remilia]
+\82»\82ê\82¾\82¯\82È\82Ì\82©\82µ\82ç\81H
+[2A 0x000485A4 00 Reimu *Remilia]
+\81c\82±\82Ì\90¢\8aE\82ª\81c
+\8fI\82í\82Á\82Ä\97~\82µ\82­\82È\82©\82Á\82½\82¾\82¯\82¾
+[2A 0x00048798 00 *Reimu Remilia]
+\82ñ\81c\81H
+[2A 0x0004898C 00 Reimu *Remilia]
+\93ñ\93x\96Ú\82Í\8c¾\82í\82È\82¢\82í\81I
+[2A 0x00048B80 00 Reimu *Remilia]
+\82³\82 \81A\82±\82Ì\90¢\8aE\82ª\82 \82Ì\97Í\82Å
+\94j\82ç\82ê\82Ä\82µ\82Ü\82¤\82Ü\82Å
+[2A 0x00048D74 00 Reimu *Remilia]
+\92\83\89ï\82Å\82Ü\82Á\82½\82è\82µ\82æ\82¤\82\82á\82È\82¢\82Ì
+[2A 0x00048F68 00 *Reimu Remilia]
+\82 \82Ì\97Í\82Á\82Ä\81c
+[2A 0x0004915C 00 *Reimu Remilia]
+\82»\82Á\82©\81A\82»\82¤\82¢\82¤\82±\82Æ\82©\81B
+\82í\82©\82Á\82½\82í
+[2A 0x00049350 00 *Reimu Remilia]
+\83_\83\81\82Á\8eq\82Í\83_\83\81\82Á\8eq\82È\82è\82É
+\8dl\82¦\82Ä\82½\82í\82¯\82Ë
+[2A 0x00049544 00 *Reimu Remilia]
+\82æ\82µ\82æ\82µ\81B
+\82¢\82¢\8eq\82¢\82¢\8eq
+[2A 0x00049738 00 Reimu *Remilia]
+\82±\81A\82±\82Ì\8e\84\82ð
+\82¢\82¢\8eq\82¢\82¢\8eq\81c\81I\81H
+[2A 0x0004992C 00 *Reimu Remilia]
+\8c\99\82È\82ç\93¦\82°\82½\82ç\81H
+[2A 0x00049B20 00 Reimu *Remilia]
+\82±\82Ì\8bC\8d\82\82«\8dg\82ÌáÅ\91®\82ª
+\90l\8aÔ\82È\82Ç\82É\8b¯\82¦\82Ä\93¦\82°\82é\82Æ\82Å\82à\81H
+[2A 0x00049D14 00 Reimu *Remilia]
+\81c\82µ\82Î\82ç\82­\82±\82Ì\82Ü\82Ü\82Å\82¢\82é\82í
+[2A 0x00049F08 00 *Reimu Remilia]
+\82È\82Â\82©\82ê\82½\82©\81B
+\8f\9f\8eè\82É\82µ\82È\82³\82¢
+[2A 0x0004A0FC 00 Reimu *Remilia]
+\8e\84\82Í\82¢\82Â\82à\8f\9f\8eè\82É\82·\82é\82í\81B
+\96{\93\96\82Í\88Ì\82¢\82Ì\82æ
+[2A 0x0004A2F0 00 *Reimu Remilia]
+\82í\82©\82Á\82½\82í\82©\82Á\82½\82¨\8fì\97l
+[2A 0x0004A4E4 00 Reimu *Remilia]
+\83\8c\83~\83\8a\83A\97l\82Æ\8cÄ\82Ñ\82È\82³\82¢
+[2A 0x0004A6D8 00 *Reimu Remilia]
+\82Í\82¢\82Í\82¢\81A\83\8c\83~\83\8a\83A\97l
+[2A 0x0004A8CC 00 *Reimu Remilia]
+\82\82á\82 \81A\82»\82ë\82»\82ë\8ds\82±\82¤\82©\81B
+\82Ý\82ñ\82È\82ð\8cÄ\82ñ\82Å\82±\82È\82«\82á\82Ë
+[2A 0x0004AAC0 00 Reimu *Remilia]
+\82Ó\82Ó\81B
+\91f\93G\82È\92\83\89ï\82É\82È\82è\82»\82¤\82Ë\81B
+[28 0x0004B184 00 Reimu *Remilia]
+\82»\82ñ\82È\82Ì\82ª
+\8e\84\82É\92Ê\82\82é\82Æ\8ev\82Á\82Ä\82½\81H
+[2A 0x0004B38C 00 *Reimu Remilia]
+\91Ê\96Ú\8c³\82Å\82â\82Á\82Ä\82Ý\82½\82¯\82Ç
+\82â\82Á\82Ï\82è\91Ê\96Ú\82¾\82Á\82½\82©
+[2A 0x0004B580 00 Reimu *Remilia]
+\82Ü\82 \81A\8e\8e\82Ý\82Æ\82µ\82Ä\82Í\82æ\82©\82Á\82½\82í\81B
+\91\8a\8eè\82ª\8e\84\82\82á\82È\82¯\82ê\82Î\82Ë
+[2A 0x0004B774 00 *Reimu Remilia]
+\82Í\82 \81c
+\82\82á\82 \81A\90³\96Ê\82©\82ç\90í\82¤\82µ\82©\82È\82¢\82©
+[2A 0x0004B968 00 Reimu *Remilia]
+\96{\8bC\82Å\82©\82©\82Á\82Ä\82­\82é\82±\82Æ\82Ë
+[28 0x0004C02C 02 *Reimu]
+\81u\82 \82¢\82Â\81v\82ð\8bN\82±\82µ\82Ä\82«\82Ä\82Á\82Ä\81A
+\83\8c\83~\83\8a\83A\82à\91f\92¼\82\82á\82È\82¢\82ñ\82¾\82©\82ç
+[2A 0x0004C1DC 02 *Reimu]
+\8e©\95ª\82Å\8bN\82±\82µ\82Ä\82 \82°\82ê\82Î\82¢\82¢\82Ì\82É
+\92p\82¸\82©\82µ\82ª\82Á\82Ä\82é\81H
+[2A 0x0004C370 02 *Reimu]
+\82»\82ê\82Í\82È\82¢\82©\81c
+[2A 0x0004C504 02 *Reimu]
+\82¨\92\83\89ï\82Å\82¨\95 \82ª\82¢\82Á\82Ï\82¢\82¾\82µ
+\82È\82ñ\82¾\82©\96°\82½\82¢\82¯\82Ç\81c
+[2A 0x0004C698 02 *Reimu]
+\81u\8dg\96\82\8b½\81v\82Ì\95\95\88ó\82ð\94j\82é\82É\82Í
+\82 \82¢\82Â\82Ì\97Í\82ª\95K\97v
+[2A 0x0004C82C 02 *Reimu]
+\8ds\82Á\82Ä\82 \82°\82é\82µ\82©\82È\82¢\82Ì\82æ\82Ë
+[28 0x0004CE90 00 Reimu *Remilia]
+\8dg\94\92\82Ì\9bÞ\8f\97\81c
+[2A 0x0004D098 00 Reimu *Remilia]
+\89½\82ð\82µ\82É\82«\82½\82Ì\81c
+\90l\8aÔ\82Ì\82­\82¹\82É\81c
+[2A 0x0004D28C 00 Reimu *Remilia]
+\82¨\8eo\97l\82ð\98U\97\8d\82µ\82½
+\95s\93Í\82«\8eÒ\81c
+[2A 0x0004D480 00 *Reimu Remilia]
+\82»\82ñ\82È\8ao\82¦\82È\82¢\82©\82ç\81B
+\82 \82Á\82¿\82ª\82È\82Â\82¢\82½\82¾\82¯
+[2A 0x0004D674 00 *Reimu Remilia]
+\8e\84\82Í\97d\90¸\82â\97d\89ö\82É
+\82È\82Â\82©\82ê\82â\82·\82¢\82Ì\82ª\94Y\82Ý\82È\82Ì\82æ\82Ë
+[2A 0x0004D868 00 Reimu *Remilia]
+\82È\82Â\82¢\82½\81H
+[2A 0x0004DA5C 00 Reimu *Remilia]
+\82¤\82Ó\81c
+\82¤\82Ó\82Ó\82Ó\81c
+[2A 0x0004DC50 00 Reimu *Remilia]
+\82 \82Í\82Í\82Í\82Í\82Á\81I
+\82»\82ê\82Í\82¢\82¢\81A\82¢\82¢\82Ì\82Á\81I
+[2A 0x0004DE44 00 Reimu *Remilia]
+\82¨\8eo\97l\82ª\82È\82Â\82¢\82½\82©\81I
+[2A 0x0004E038 00 Reimu *Remilia]
+\82 \82Í\82Í\82Í\82Í\82Í\82Í\82Á\81I
+[2A 0x0004E22C 00 *Reimu Remilia]
+\8ay\82µ\82»\82¤\82Ë\81B
+\97p\82ª\82 \82é\82ñ\82¾\82¯\82Ç
+[2A 0x0004E420 00 Reimu *Remilia]
+\82Ó\82Ó\82Á\81A\82­\82­\82­\82­\82­\82Á
+[2A 0x0004E614 00 Reimu *Remilia]
+\82í\82©\82Á\82Ä\82¢\82é\8dg\94\92\81c
+[2A 0x0004E808 00 Reimu *Remilia]
+\8e\9f\82Í\82±\82Ì\8e\84\82ð
+\82Ä\82È\82Ã\82¯\82é\82Â\82à\82è\82Ë
+[2A 0x0004E9FC 00 *Reimu Remilia]
+\97p\82Í\82 \82é\82¯\82Ç
+\8a¨\88á\82¢\82µ\82Ä\82é\82Ý\82½\82¢\82Ë
+[2A 0x0004EBF0 00 Reimu *Remilia]
+\91Ì\92\86\82ð\92\8e\82ª\94\87\82¢\82¸\82é\82æ\82¤\82È\81c
+\82»\82ñ\82È\88«\8a¦\82ª\82·\82é\82í\81c
+[2A 0x0004EDE4 00 Reimu *Remilia]
+\82±\82Ì\8d\82\8bM\82È\82é\90g\91Ì\82É
+\88«\82µ\82«\89½\82©\82ªå¿\82­\81c
+[2A 0x0004EFD8 00 Reimu *Remilia]
+áu\82­\82Ì\81c
+\90S\82Ì\91\9f\82Ì\82 \82½\82è\82ª\81c
+[2A 0x0004F1CC 00 Reimu *Remilia]
+\82 \82È\82½\82Ì\8ed\8bÆ\82Ë\81H
+\94\8e\97í\82Ì\9bÞ\8f\97\82ß\81c
+[2A 0x0004F3C0 00 *Reimu Remilia]
+\82 \82Í\82Á\81B
+\82»\82Á\82¿\82à\8cJ\82è\95Ô\82µ\82Ä\82½\82ñ\82¾
+[2A 0x0004F5B4 00 Reimu *Remilia]
+\82¦\81H
+\8cJ\82è\95Ô\82µ\82Á\82Ä\82È\82ñ\82È\82Ì\81H
+[2A 0x0004F7A8 00 *Reimu Remilia]
+\82»\82Ì\8a´\82\81A\8e\84\82É\82à\82í\82©\82é
+[2A 0x0004F99C 00 *Reimu Remilia]
+\82 \82ñ\82½\82Í\82Ë\81B
+\82¨\95 \82ª\8c¸\82Á\82Ä\82é\82Ì\82æ
+[2A 0x0004FB90 00 *Reimu Remilia]
+\8cJ\82è\95Ô\82³\82ê\82é\8e\9e\8aÔ\82Ì\92\86\82Å
+\82¸\82Á\82Æ\90H\82×\82Ä\82¢\82È\82¢\82©\82ç
+[2A 0x0004FD84 00 Reimu *Remilia]
+\82¦\81c\81c\81c\82¨\95 \81H
+\95 \83y\83R\82È\82Ì\81c\82±\82ê\81H
+[2A 0x0004FF78 00 *Reimu Remilia]
+\82»\82ê\82à\81c
+\82±\82±\82Å\8fI\82í\82ç\82¹\82Ä\82 \82°\82é
+[2A 0x0005016C 00 *Reimu Remilia]
+\82à\82¤
+\83R\83\93\83e\83B\83j\83\85\81[\82Å\82«\82È\82¢\82Ì\82³\81I
+[2A 0x00050360 00 Reimu *Remilia]
+\81c\82¦\81H
+[2A 0x00050554 00 Reimu *Remilia]
+\82¦\82¦\81[\82Á\81I\81H
+[2A 0x00050748 00 Reimu *Remilia]
+\82Ç\82¤\82µ\82Ä\82»\82Á\82¿\82ª
+\89B\82µ\83{\83X\82Ý\82½\82¢\82È\91ä\8e\8c\82È\82Ì\81I\81H
+[2A 0x0005093C 00 *Reimu Remilia]
+\82³\82Ä\81A\82Ë\81H
+\82½\82Ü\82É\82Í\82¢\82¢\82ñ\82\82á\82È\82¢\81H
+[2A 0x00050B30 00 *Reimu Remilia]
+\8ds\82­\82æ\81I
+[28 0x000511F4 00 *Reimu Remilia]
+\82 \82ç\82½\82ß\82Ä\81B
+\82¨\82Í\82æ\82¤
+[2A 0x000513FC 00 Reimu *Remilia]
+\82¨\81A\82¨\82Í\82æ\82¤\81c
+[2A 0x000515F0 00 *Reimu Remilia]
+\96Ú\82Í\8ao\82ß\82½\81H
+[2A 0x000517E4 00 Reimu *Remilia]
+\90æ\92ö\82©\82ç\83o\83\8a\83o\83\8a\82É
+\8ao\82ß\82Ä\82½\82Ì\82É\81c
+[2A 0x000519D8 00 *Reimu Remilia]
+\82ñ\81H
+[2A 0x00051BCC 00 Reimu *Remilia]
+\82à\82¤\82¢\82¢\82í\81c
+[2A 0x00051DC0 00 Reimu *Remilia]
+\82±\82±\82É\82Í\89½\82ð\82µ\82É\81H
+[2A 0x00051FB4 00 Reimu *Remilia]
+\96{\93\96\82É\82Ä\82È\82Ã\82¯\82é\82Â\82à\82è\82È\82ç
+\8e\84\82Í\82»\82¤\8aÈ\92P\82É\82Í\81c
+[2A 0x000521A8 00 *Reimu Remilia]
+\83\8c\83~\83\8a\83A\82½\82¿\82ª\82 \82ñ\82½\82ð\91Ò\82Á\82Ä\82é\82í\82æ\81B
+\8d¡\81A\82¨\92\83\89ï\82Ì\93r\92\86\82¾\82©\82ç
+[2A 0x0005239C 00 Reimu *Remilia]
+\82¨\92\83\89ï\81H
+[2A 0x00052590 00 Reimu *Remilia]
+\81c\82»\82ê\82¾\82¯\81H
+\8cÄ\82Ñ\82É\97\88\82½\82¾\82¯\82È\82Ì\81H
+[2A 0x00052784 00 *Reimu Remilia]
+\82¢\82¢\82¦\81B\82¨\92\83\89ï\82ª\8fI\82í\82Á\82½\82ç
+\82Ð\82Æ\82Â\82¨\8aè\82¢\82ª\82 \82é\82ñ\82¾\82¯\82Ç
+[2A 0x00052978 00 *Reimu Remilia]
+\82¬\82ã\82Á\82Æ\82µ\82Ä\83p\83\8a\81[\83\93\82Á\82Ä
+\82µ\82¿\82á\82Á\82Ä\82­\82ê\82é\81H
+[2A 0x00052B6C 00 *Reimu Remilia]
+\92×\82µ\82Ä\82Ù\82µ\82¢\82à\82Ì\82ª
+\82 \82é\82ñ\82¾\82¯\82Ç
+[2A 0x00052D60 00 Reimu *Remilia]
+\94j\89ó\82Ë\81c
+[2A 0x00052F54 00 Reimu *Remilia]
+\82¤\82Ó\82Ó\81c
+[2A 0x00053148 00 Reimu *Remilia]
+\82â\82è\82·\82¬\82È\82¢\82æ\82¤\82É
+\8bC\82ð\82Â\82¯\82é\82í
+[2A 0x0005333C 00 *Reimu Remilia]
+\82\82á\82 \81A\8ds\82­\82æ\81B
+\82Ý\82ñ\82È\82ª\91Ò\82Á\82Ä\82é\82©\82ç
+[2A 0x00053530 00 Reimu *Remilia]
+\8dg\94\92\82Ì\9bÞ\8f\97
+[2A 0x00053724 00 *Reimu Remilia]
+\82È\82É\81H
+[2A 0x00053918 00 Reimu *Remilia]
+\8eè\82È\82¸\82¯\82È\82­\82Ä\82¢\82¢\82Ì\81H
+[2A 0x00053B0C 00 *Reimu Remilia]
+\82¢\82â\81A\92N\82à
+\8eè\82È\82¸\82¯\82Ä\82È\82¢\82©\82ç
+[2A 0x00053D00 00 *Reimu Remilia]
+\8c¾\82Á\82½\82Å\82µ\82å
+\8f\9f\8eè\82É\82È\82Â\82¢\82Ä\82­\82é\82Ì
+[2A 0x00053EF4 00 Reimu *Remilia]
+\82Ó\82Á\81A\82»\82¤\82Ë
+[2A 0x000540E8 00 Reimu *Remilia]
+\82»\82¤\82¢\82¤\82Ì\82Í
+\8e©\95ª\82Ì\8f\9f\8eè\81A\82È\82Ì\82Ë
+[2A 0x000542DC 00 *Reimu Remilia]
+\82»\82¤\82»\82¤\81B
+\91\8a\8eè\82Í\8e©\95ª\82Å\91I\82Ñ\82È\82³\82¢
+[2A 0x000544D0 00 Reimu *Remilia]
+\82¾\82Á\82½\82ç\82¢\82¢\82Ì\81B
+\82à\82¤\8c\88\82ß\82Ä\82é\82©\82ç
+[2A 0x000546C4 00 *Reimu Remilia]
+\82»\81H
+[2A 0x000548B8 00 Reimu *Remilia]
+\82¨\92\83\89ï\82Í\92ë\81H
+[2A 0x00054AAC 00 *Reimu Remilia]
+\82»\82¤\82æ\81B\8dg\82¢\96\82ª\82Å\82Ä\82é\82©\82ç
+\8aO\82É\8fo\82Ä\82à\91å\8fä\95v\82æ
+[2A 0x00054CA0 00 Reimu *Remilia]
+\82»\82¤\81c
+[2A 0x00054E94 00 Reimu *Remilia]
+\82Ó\82¤\81c
+[2A 0x00055088 00 Reimu *Remilia]
+\8aO\82Í\8bv\82µ\82Ô\82è\82Ë
+[28 0x0005574C 02 *Reimu]
+\82 \82ê\81H
+\82±\82Ì\8a´\82\82Á\82Ä
+[2A 0x000558FC 02 *Reimu]
+\8ao\82¦\82Ä\82é\82æ\82¤\82È
+\8ao\82¦\82Ä\82È\82¢\82æ\82¤\82È
+[2A 0x00055A90 02 *Reimu]
+\82Ç\82±\82©\82É\88ø\82«\96ß\82³\82ê\82Ä\81c\82é\81H
+[2A 0x00055C24 02 *Reimu]
+\82±\82ê\82Á\82Ä\82à\82µ\82©\82µ\82Ä
+\8e\9e\8aÔ\82ª\8cJ\82è\95Ô\82³\82ê\82Ä\82é\81H
+[28 0x00055E84 02 *Remilia]
+\82Ü\82¾\82±\82Ì\98b\82ð
+\8fI\82í\82ç\82¹\82Ä\82È\82ñ\82©\82 \82°\82È\82¢
+[2A 0x00056034 02 *Remilia]
+\8e\9f\82Í\82±\82±\82Ü\82Å\97\88\82é\82Ì\82æ
+[2A 0x000561C8 02 *Remilia]
+\97ì\96²\81c\8e\9f\82Í\82«\82Á\82Æ\81c
+[28 0x000567A8 02 *Reimu]
+\82 \82ê\82Á\81H
+\89½\82±\82ê\82Á\81H
+[2A 0x00056958 02 *Reimu]
+\82Ç\82±\82©\82É\81c
+[2A 0x00056AEC 02 *Reimu]
+\82¿\82ª\82¤\81B
+\8dÅ\8f\89\82É\96ß\82³\82ê\82Ä\82¢\82­\81c\81H
+[28 0x00056D4C 02 *Remilia]
+\82Ü\82¾\82±\82Ì\98b\82ð
+\8fI\82í\82ç\82¹\82Ä\82È\82ñ\82©\82 \82°\82È\82¢
+[2A 0x00056EFC 02 *Remilia]
+\8e\9f\82Í\82±\82±\82Ü\82Å\97\88\82é\82Ì\82æ
+[2A 0x00057090 02 *Remilia]
+\97ì\96²\81c\8e\9f\82Í\82«\82Á\82Æ\81c
diff --git a/tools/scetool.i686 b/tools/scetool.i686
new file mode 100755 (executable)
index 0000000..39287d0
Binary files /dev/null and b/tools/scetool.i686 differ
diff --git a/tools/scetool.x86_64 b/tools/scetool.x86_64
new file mode 100755 (executable)
index 0000000..b8244b1
Binary files /dev/null and b/tools/scetool.x86_64 differ
diff --git a/tools/src/scetool.c b/tools/src/scetool.c
new file mode 100644 (file)
index 0000000..b57a896
--- /dev/null
@@ -0,0 +1,422 @@
+/********************************************************************
+  (C) 2015 Jon Feldman
+
+  This is a partially reversed way of reading the scripts from
+  Sce files in Maihana ~ Ao no Makyou. It isn't complete...I just
+  figured out enough to read the script data, and nothing more.
+  
+  This is licensed to you under GPLv3. Obey the license.
+ ********************************************************************/
+
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdint.h>
+
+/* =============================================================== */
+/*  Miscellaneous Defines.                                         */
+/* =============================================================== */
+
+#define LEFT 0
+#define RIGHT 1
+
+#define EXPR1 0
+#define EXPR2 0
+#define EXPR3 0
+#define EXPR4 0
+
+/* =============================================================== */
+/* Basic struct definitions.                                       */
+/* =============================================================== */
+
+
+typedef struct char_ent_2a {
+       uint32_t        Magic;                  // 2A
+       uint32_t        Speaker;                // LEFT | RIGHT
+       char            VolName[68];    // Data\Texture\TextureChara2D
+       uint32_t        Expression;             // EXPR1 | EXPR2 | EXPR3 | EXPR4
+       uint32_t        Unknown1;               // Meaning not known. Varies.
+       uint32_t        Unknown2;               // ^
+       uint32_t        Break;                  // 0A
+       uint32_t        Zero;                   // 00
+} char_ent_2a;
+
+typedef struct char_ent_28 {
+       uint32_t        Magic;                  // 28
+       uint32_t        Speaker;                // LEFT | RIGHT
+       char            VolName[68];    // Data\Texture\TextureChara2D
+       uint32_t        Expression;             // EXPR1 | EXPR2 | EXPR3 | EXPR4
+       uint32_t        Unknown1;               // Meaning not known. Varies. Generally 00 00 00 01.
+       uint32_t        Unknown2;               // ^ Same. Usually something like 00 00 0A 00.
+} char_ent_28; // 88 bytes
+
+typedef struct control_blk_05 {
+       uint32_t        Magic;                  // 05
+       char            Reserved[32];   // No clue.
+} control_blk_05;
+
+typedef struct control_blk_40 {
+       uint32_t        Magic;                  // 40
+       uint8_t         Reserved[32];   // Meaning not known.
+} control_blk_40;
+
+typedef struct text_ent {
+       uint32_t        Magic;                  // 1D
+       uint32_t        Speaker;                // LEFT | RIGHT
+       char            TextData[256];  // Textbox contents. 0x0A is newline.
+       uint32_t        Reserved1;              // 01
+       uint32_t        Reserved2;              // 00
+} text_ent;
+
+/* =============================================================== */
+/* Block definitions - these are the meat.                         */
+/* =============================================================== */
+
+// These definitions are used in SceStageMarisa.vol and SceStageReimu.vol.
+// They cover all of those files.
+
+typedef struct block_1char_2a {
+       char_ent_2a     charA;
+       control_blk_40  pre;
+       text_ent                text;
+} block_1char_2a;
+
+typedef struct block_2char_2a {
+       char_ent_2a     charA;
+       char_ent_2a     charB;
+       control_blk_40  pre;
+       text_ent                text;
+} block_2char_2a;
+
+typedef struct block_1char_28 {
+       char_ent_28             charA;
+       control_blk_05  mid;
+       control_blk_40  pre;
+       text_ent                text;
+} block_1char_28;
+
+typedef struct block_2char_28 {
+       char_ent_28             charA;
+       char_ent_28             charB;
+       control_blk_05  mid;
+       control_blk_40  pre;
+       text_ent                text;
+} block_2char_28;
+
+// SceHelp.vol doesn't contain a lot of the other structs.
+// Thus it has it's own unique block types.
+
+typedef struct block_help_2a {
+       char_ent_2a             charA;
+       text_ent                text;
+} block_help_2a;
+
+typedef struct block_help_28 {
+       char_ent_28             charA;
+       control_blk_05  mid;
+       text_ent                text;
+} block_help_28;
+
+
+char* vol2char (char* volname) {
+
+       if (strlen(volname) < 30)
+               return NULL;
+
+       char* newda = (char*)calloc(sizeof(char), strlen(volname) - 30);
+
+       memcpy(newda, &volname[27], strlen(volname) - 30);
+
+       newda[strlen(newda) - 1] = 0;
+
+       return newda;
+}
+
+char* buffer = NULL;
+size_t fsize = 0;
+
+void inject (char* out, char* script) {
+
+       // READING IN FILE JUNK. Skip it.
+
+       FILE* script_f = fopen(script, "rb");
+
+       if (!script_f) {
+               fprintf(stderr, "Invalid file.\n");
+               exit(1);
+       }
+
+       fseek(script_f, 0, SEEK_END);
+       size_t ssize = ftell(script_f);
+       fseek(script_f, 0, SEEK_SET);
+
+       char* scrbuffer = (char*) calloc(sizeof(char),ssize);
+
+       if(scrbuffer == NULL) {
+               fprintf(stderr, "Memory error\n");
+               exit(1);
+       }
+
+       int result = fread(scrbuffer, 1, ssize, script_f);
+       if (result != ssize) {
+               fprintf(stderr, "Mismatch on read size\n");
+               exit(1);
+       }
+
+       fclose(script_f);
+
+       // Actual code now.
+
+       uint32_t type = 0, block = 0, offset = 0;
+       char str[256];
+       int str_loc = 0;
+
+       char* str_split = scrbuffer;
+       while(str_split < scrbuffer+ssize) {
+
+               if (str_split[0] == '[') {
+                       // We need to write a block.
+                       if (offset != 0) {
+                               switch(block) {
+                                       case 0x28:
+                                               switch(type) {
+                                                       case 0: // Two characters
+                                                               memcpy(((block_2char_28*)&buffer[offset])->text.TextData,str,256);
+                                                               break;
+                                                       case 1: // Help
+                                                               memcpy(((block_help_28*)&buffer[offset])->text.TextData,str,256);
+                                                               break;
+                                                       case 2: // One character
+                                                               memcpy(((block_1char_28*)&buffer[offset])->text.TextData,str,256);
+                                                               break;
+                                               }
+                                               break;
+                                       case 0x2A:
+                                               switch(type) {
+                                                       case 0: // Two characters
+                                                               memcpy(((block_2char_2a*)&buffer[offset])->text.TextData,str,256);
+                                                               break;
+                                                       case 1: // Help
+                                                               memcpy(((block_help_2a*)&buffer[offset])->text.TextData,str,256);
+                                                               break;
+                                                       case 2: // One character
+                                                               memcpy(((block_1char_2a*)&buffer[offset])->text.TextData,str,256);
+                                                               break;
+                                               }
+                                               break;
+                               }
+                       }
+
+                       // Reset string.
+                       memset(str, 0, 256);
+                       str_loc = 0;
+
+                       // Control line.
+                       sscanf(str_split, "[%x %x %d", &block, &offset, &type);
+               } else {
+                       // Copy string.
+
+                       if(str_loc != 0) {
+                               str[str_loc] = '\n';
+                               str_loc += 1;
+                       }
+
+                       int i;
+                       for(i=0;;i++) {
+                               if(str_split[i] == '\n') {
+                                       break;
+                               }
+                       }
+
+                       // Text line.
+                       memcpy(&str[str_loc], str_split, i);
+
+                       str_loc += i;
+               }
+
+               // Move pointer to next line.
+               // Unfortunately, using strtok or strcmp explodes with SJIS.
+
+               int i;
+               for(i=0;;i++) {
+                       if(str_split[i] == '\n') {
+                               break;
+                       }
+               }
+               str_split = str_split+i+1;
+       }
+
+       FILE* wrt_out = fopen(out, "wb");
+
+       fwrite(buffer,1,fsize,wrt_out);
+
+       fflush(wrt_out);
+
+       fclose(wrt_out);
+}
+
+void extract (char* out) {
+       FILE* export = fopen(out, "wb");
+
+       //===================================================
+       // Now the real code - search for instances of 0x2A.
+       //===================================================
+       size_t i;
+       for(i=0; i < fsize; i++) {
+               // 2A Control code, text block content type A.
+               if (buffer[i] == 0x2A) {
+                       // MATCHED. Read a block out.
+                       // First...we have no clue whether it's a single character or
+                       // double until we fill a struct and check for mismatches.
+
+                       block_1char_2a* c1 = (block_1char_2a*)calloc(sizeof(block_1char_2a), 1);
+                       memcpy(c1, &buffer[i], sizeof(block_1char_2a));
+
+                       // If charA doesn't have a valid vol file, we ignore.
+                       if (strlen(c1->charA.VolName) > 28)
+                       {
+                               fprintf(export, "[2A 0x%08lX", i);
+
+                               if(c1->pre.Magic == 0x2A) {
+                                       // This is a twosie. Oops.
+                                       block_2char_2a* c2 = (block_2char_2a*)calloc(sizeof(block_2char_2a), 1);
+                                       memcpy(c2, &buffer[i], sizeof(block_2char_2a));
+       
+                                       // Print script info.
+                                       // [speakerflag][volfile]
+                                       // [speakerflag][volfile]
+                                       // [dialogue]
+                                       fprintf(export, " 00 %s%s %s%s]\n%s\n",         (c2->text.Speaker == 0 ? "*" : ""), vol2char(c2->charA.VolName),
+                                                                                                       (c2->text.Speaker == 1 ? "*" : ""), vol2char(c2->charB.VolName),
+                                                                                                       c2->text.TextData);
+
+                                       free(c2);
+
+                                       i += sizeof(block_2char_2a) - 1;
+                               } else if (c1->pre.Magic == 0x1D) {
+                                       // This is a help vol. Not a regular Script vol.
+
+                                       block_help_2a* c2 = (block_help_2a*)calloc(sizeof(block_help_2a), 1);
+                                       memcpy(c2, &buffer[i], sizeof(block_help_2a));
+
+                                       // Print script info.
+                                       fprintf(export, " 01 *%s]\n%s\n",               vol2char(c2->charA.VolName),
+                                                                                               c2->text.TextData);
+
+                                       free(c2);
+
+                                       i += sizeof(block_help_2a) - 1;
+                               } else {
+                                       fprintf(export, " 02 *%s]\n%s\n",               vol2char(c1->charA.VolName),
+                                                                                               c1->text.TextData);
+
+                                       i += sizeof(block_1char_2a) - 1;
+                               }
+                       }
+
+                       free(c1);
+               } else if (buffer[i] == 0x28) {
+                       // Pretty much the same as 0x2A.
+
+                       block_1char_28* c1 = (block_1char_28*)calloc(sizeof(block_1char_28), 1);
+                       memcpy(c1, &buffer[i], sizeof(block_1char_28));
+
+                       // If charA doesn't have a valid vol file, we ignore.
+                       if (strlen(c1->charA.VolName) > 28)
+                       {
+                               fprintf(export, "[28 0x%08lX", i);
+
+                               if(c1->mid.Magic == 0x28) {
+                                       // This is a twosie. Oops.
+                                       block_2char_28* c2 = (block_2char_28*)calloc(sizeof(block_2char_28), 1);
+                                       memcpy(c2, &buffer[i], sizeof(block_2char_28));
+       
+                                       // Print script info.
+                                       fprintf(export, " 00 %s%s %s%s]\n%s\n",         (c2->text.Speaker == 0 ? "*" : ""), vol2char(c2->charA.VolName),
+                                                                                                       (c2->text.Speaker == 1 ? "*" : ""), vol2char(c2->charB.VolName),
+                                                                                                       c2->text.TextData);
+
+                                       free(c2);
+
+                                       i += sizeof(block_2char_28) - 1;
+                               } else if (c1->pre.Magic == 0x1D) {
+                                       // This is a help vol. Not a regular Script vol.
+
+                                       block_help_28* c2 = (block_help_28*)calloc(sizeof(block_help_28), 1);
+                                       memcpy(c2, &buffer[i], sizeof(block_help_28));
+
+                                       // Print script info.
+                                       fprintf(export, " 01 *%s]\n%s\n",               vol2char(c2->charA.VolName),
+                                                                                               c2->text.TextData);
+
+                                       free(c2);
+
+                                       i += sizeof(block_help_28) - 1;
+                               } else {
+                                       fprintf(export, " 02 *%s]\n%s\n",               vol2char(c1->charA.VolName),
+                                                                                               c1->text.TextData);
+
+                                       i += sizeof(block_1char_28) - 1;
+                               }
+                       }
+
+                       free(c1);
+               }
+       }
+
+       fflush(export);
+       fclose(export);
+}
+
+int main(int c, char** v) {
+       if (c <= 3) {
+               fprintf(stderr, "Usage: %s inject|extract {SceFile.vol} {DumpFile.txt} [SceOut.vol]\n", v[0]);
+               return 0;
+       }
+
+       //===========================================================
+       // this is all just standard read-to-memory garbage, skip it.
+       //===========================================================
+
+
+       FILE* sceFile = fopen(v[2], "rb");
+
+       if (!sceFile) {
+               fprintf(stderr, "Invalid file.\n");
+               return 1;
+       }
+
+       fseek(sceFile, 0, SEEK_END);
+       fsize = ftell(sceFile);
+       fseek(sceFile, 0, SEEK_SET);
+
+       buffer = (char*) calloc(sizeof(char),fsize);
+
+       if(buffer == NULL) {
+               fprintf(stderr, "Memory error\n");
+               return 1;               
+       }
+
+       int result = fread(buffer, 1, fsize, sceFile);
+       if (result != fsize) {
+               fprintf(stderr, "Mismatch on read size\n");
+               return 1;
+       }
+
+       fclose(sceFile);
+
+       if(!strcmp(v[1], "extract")) {
+               fprintf(stderr, "[info] Using extractor.\n");
+               extract(v[3]);
+       } else if(!strcmp(v[1], "inject")) {
+               fprintf(stderr, "[info] Using injector.\n");
+               if (c == 5) {
+                       fprintf(stderr, "[info] Alternate output specified. Not clobbering original.\n");
+                       inject(v[4], v[3]);
+               } else {
+                       inject(v[2], v[3]);
+               }
+       }
+
+}