mirror of
https://github.com/upx/upx.git
synced 2025-03-03 21:37:01 +00:00
Compress shared libraries for mips and mipsel in ELF on Linux
modified: p_lx_elf.cpp modified: stub/Makefile new file: stub/mips.r3000-linux.shlib-init.h new file: stub/mipsel.r3000-linux.shlib-init.h new file: stub/src/mips.r3000-linux.shlib-init.S new file: stub/src/mipsel.r3000-linux.shlib-init.S new file: stub/tmp/mips.r3000-linux.shlib-init.bin.dump new file: stub/tmp/mipsel.r3000-linux.shlib-init.bin.dump
This commit is contained in:
parent
ee008acfbd
commit
403b180b1d
@ -405,7 +405,7 @@ off_t PackLinuxElf32::pack3(OutputFile *fo, Filter &ft)
|
||||
}
|
||||
// Compute new offset of &DT_INIT.d_val.
|
||||
if (/*0==jni_onload_sym &&*/ phdr->PT_DYNAMIC==type) {
|
||||
off_init = so_slide + ioff;
|
||||
off_init = ioff + ((xct_off < ioff) ? so_slide : 0);
|
||||
fi->seek(ioff, SEEK_SET);
|
||||
fi->read(ibuf, len);
|
||||
Elf32_Dyn *dyn = (Elf32_Dyn *)(void *)ibuf;
|
||||
@ -421,7 +421,7 @@ off_t PackLinuxElf32::pack3(OutputFile *fo, Filter &ft)
|
||||
}
|
||||
if (xct_off < ioff)
|
||||
set_te32(&phdr->p_offset, so_slide + ioff);
|
||||
}
|
||||
} // end each Phdr
|
||||
if (off_init) { // change DT_INIT.d_val
|
||||
fo->seek(off_init, SEEK_SET);
|
||||
va_init |= (Elf32_Ehdr::EM_ARM==e_machine); // THUMB mode
|
||||
@ -528,7 +528,7 @@ off_t PackLinuxElf64::pack3(OutputFile *fo, Filter &ft)
|
||||
}
|
||||
// Compute new offset of &DT_INIT.d_val.
|
||||
if (phdr->PT_DYNAMIC==type) {
|
||||
off_init = so_slide + ioff;
|
||||
off_init = ioff + ((xct_off < ioff) ? so_slide : 0);
|
||||
fi->seek(ioff, SEEK_SET);
|
||||
fi->read(ibuf, len);
|
||||
Elf64_Dyn *dyn = (Elf64_Dyn *)(void *)ibuf;
|
||||
@ -544,7 +544,7 @@ off_t PackLinuxElf64::pack3(OutputFile *fo, Filter &ft)
|
||||
}
|
||||
if (xct_off < ioff)
|
||||
set_te64(&phdr->p_offset, so_slide + ioff);
|
||||
}
|
||||
} // end each Phdr
|
||||
if (off_init) { // change DT_INIT.d_val
|
||||
fo->seek(off_init, SEEK_SET);
|
||||
upx_uint64_t word; set_te64(&word, va_init);
|
||||
@ -1353,10 +1353,18 @@ static const
|
||||
#include "stub/mipsel.r3000-linux.elf-entry.h"
|
||||
static const
|
||||
#include "stub/mipsel.r3000-linux.elf-fold.h"
|
||||
static const
|
||||
#include "stub/mipsel.r3000-linux.shlib-init.h"
|
||||
|
||||
void
|
||||
PackLinuxElf32mipsel::buildLoader(Filter const *ft)
|
||||
{
|
||||
if (0!=xct_off) { // shared library
|
||||
buildLinuxLoader(
|
||||
stub_mipsel_r3000_linux_shlib_init, sizeof(stub_mipsel_r3000_linux_shlib_init),
|
||||
NULL, 0, ft );
|
||||
return;
|
||||
}
|
||||
buildLinuxLoader(
|
||||
stub_mipsel_r3000_linux_elf_entry, sizeof(stub_mipsel_r3000_linux_elf_entry),
|
||||
stub_mipsel_r3000_linux_elf_fold, sizeof(stub_mipsel_r3000_linux_elf_fold), ft);
|
||||
@ -1366,10 +1374,18 @@ static const
|
||||
#include "stub/mips.r3000-linux.elf-entry.h"
|
||||
static const
|
||||
#include "stub/mips.r3000-linux.elf-fold.h"
|
||||
static const
|
||||
#include "stub/mips.r3000-linux.shlib-init.h"
|
||||
|
||||
void
|
||||
PackLinuxElf32mipseb::buildLoader(Filter const *ft)
|
||||
{
|
||||
if (0!=xct_off) { // shared library
|
||||
buildLinuxLoader(
|
||||
stub_mips_r3000_linux_shlib_init, sizeof(stub_mips_r3000_linux_shlib_init),
|
||||
NULL, 0, ft );
|
||||
return;
|
||||
}
|
||||
buildLinuxLoader(
|
||||
stub_mips_r3000_linux_elf_entry, sizeof(stub_mips_r3000_linux_elf_entry),
|
||||
stub_mips_r3000_linux_elf_fold, sizeof(stub_mips_r3000_linux_elf_fold), ft);
|
||||
@ -1710,17 +1726,32 @@ bool PackLinuxElf32::canPack()
|
||||
|
||||
if (/*jni_onload_sym ||*/ elf_find_dynamic(Elf32_Dyn::DT_INIT)) {
|
||||
if (this->e_machine!=Elf32_Ehdr::EM_386
|
||||
&& this->e_machine!=Elf32_Ehdr::EM_MIPS
|
||||
&& this->e_machine!=Elf32_Ehdr::EM_ARM)
|
||||
goto abandon; // need stub: EM_MIPS EM_PPC
|
||||
goto abandon; // need stub: EM_PPC
|
||||
if (elf_has_dynamic(Elf32_Dyn::DT_TEXTREL)) {
|
||||
throwCantPack("DT_TEXTREL found; re-compile with -fPIC");
|
||||
goto abandon;
|
||||
}
|
||||
Elf32_Shdr const *shdr = shdri;
|
||||
xct_va = ~0u;
|
||||
for (int j= e_shnum; --j>=0; ++shdr) {
|
||||
if (Elf32_Shdr::SHF_EXECINSTR & get_te32(&shdr->sh_flags)) {
|
||||
xct_va = umin(xct_va, get_te32(&shdr->sh_addr));
|
||||
if (e_shnum) {
|
||||
for (int j= e_shnum; --j>=0; ++shdr) {
|
||||
if (Elf32_Shdr::SHF_EXECINSTR & get_te32(&shdr->sh_flags)) {
|
||||
xct_va = umin(xct_va, get_te32(&shdr->sh_addr));
|
||||
}
|
||||
}
|
||||
}
|
||||
else { // no Sections; use heuristics
|
||||
unsigned const strsz = elf_unsigned_dynamic(Elf32_Dyn::DT_STRSZ);
|
||||
unsigned const strtab = elf_unsigned_dynamic(Elf32_Dyn::DT_STRTAB);
|
||||
unsigned const relsz = elf_unsigned_dynamic(Elf32_Dyn::DT_RELSZ);
|
||||
unsigned const rel = elf_unsigned_dynamic(Elf32_Dyn::DT_REL);
|
||||
unsigned const init = elf_unsigned_dynamic(Elf32_Dyn::DT_INIT);
|
||||
if ((init == (relsz + rel ) && rel == (strsz + strtab))
|
||||
|| (init == (strsz + strtab) && strtab == (relsz + rel ))
|
||||
) {
|
||||
xct_va = init;
|
||||
}
|
||||
}
|
||||
// Rely on 0==elf_unsigned_dynamic(tag) if no such tag.
|
||||
|
@ -117,8 +117,10 @@ STUBS += i386-win32.pe.h
|
||||
STUBS += m68k-atari.tos.h
|
||||
STUBS += mips.r3000-linux.elf-entry.h
|
||||
STUBS += mips.r3000-linux.elf-fold.h
|
||||
STUBS += mips.r3000-linux.shlib-init.h
|
||||
STUBS += mipsel.r3000-linux.elf-entry.h
|
||||
STUBS += mipsel.r3000-linux.elf-fold.h
|
||||
STUBS += mipsel.r3000-linux.shlib-init.h
|
||||
STUBS += mipsel.r3000-ps1.h
|
||||
STUBS += powerpc-darwin.dylib-entry.h
|
||||
STUBS += powerpc-darwin.macho-entry.h
|
||||
@ -1199,6 +1201,27 @@ tmp/mips.r3000-linux.elf-main.o : $(srcdir)/src/$$T.c $(srcdir)/src/i386-linux.e
|
||||
$(call tc,f-objstrip,$@)
|
||||
|
||||
|
||||
# /***********************************************************************
|
||||
# // mips.r3000-linux.shlib
|
||||
# ************************************************************************/
|
||||
|
||||
mips.r3000-linux.shlib%.h : tc_list = mips.r3000-linux.elf default
|
||||
mips.r3000-linux.shlib%.h : tc_bfdname = elf32-bigmips
|
||||
|
||||
mips.r3000-linux.shlib%.h : $(srcdir)/src/$$T.S
|
||||
ifeq (1,1)
|
||||
# info: we really need as-2.17 here
|
||||
$(call tc,pp-as) -D_TARGET_LINUX_ -D__MIPSEB__ $< -o - | $(RTRIM) > tmp/$T.i
|
||||
$(call tc,as) tmp/$T.i -o tmp/$T.bin
|
||||
$(call tc,gpp_mkdep) --mode=c --MMD=$@ --MF=tmp/$T.d $<
|
||||
else
|
||||
# info: as-2.16.1 as used by gcc-4.1.1 does _not_ work
|
||||
$(call tc,gcc) -c -D_TARGET_LINUX_ -Wa,-O,-mno-pdr $< -o tmp/$T.bin
|
||||
endif
|
||||
$(call tc,f-embed_objinfo,tmp/$T.bin)
|
||||
$(call tc,bin2h-c) tmp/$T.bin $@
|
||||
|
||||
|
||||
# /***********************************************************************
|
||||
# // mipsel.r3000-linux.elf
|
||||
# ************************************************************************/
|
||||
@ -1237,6 +1260,27 @@ tmp/mipsel.r3000-linux.elf-main.o : $(srcdir)/src/$$T.c $(srcdir)/src/i386-linux
|
||||
$(call tc,f-objstrip,$@)
|
||||
|
||||
|
||||
# /***********************************************************************
|
||||
# // mipsel.r3000-linux.shlib
|
||||
# ************************************************************************/
|
||||
|
||||
mipsel.r3000-linux.shlib%.h : tc_list = mipsel.r3000-ps1 default
|
||||
mipsel.r3000-linux.shlib%.h : tc_bfdname = elf32-littlemips
|
||||
|
||||
mipsel.r3000-linux.shlib%.h : $(srcdir)/src/$$T.S
|
||||
ifeq (1,1)
|
||||
# info: we really need as-2.17 here
|
||||
$(call tc,pp-as) -D_TARGET_LINUX_ -D__MIPSEL__ $< -o - | $(RTRIM) > tmp/$T.i
|
||||
$(call tc,as) tmp/$T.i -o tmp/$T.bin
|
||||
$(call tc,gpp_mkdep) --mode=c --MMD=$@ --MF=tmp/$T.d $<
|
||||
else
|
||||
# info: as-2.16.1 as used by gcc-4.1.1 does _not_ work
|
||||
$(call tc,gcc) -c -D_TARGET_LINUX_ -Wa,-O,-mno-pdr $< -o tmp/$T.bin
|
||||
endif
|
||||
$(call tc,f-embed_objinfo,tmp/$T.bin)
|
||||
$(call tc,bin2h-c) tmp/$T.bin $@
|
||||
|
||||
|
||||
# /***********************************************************************
|
||||
# // mipsel.r3000-ps1
|
||||
# ************************************************************************/
|
||||
|
671
src/stub/mips.r3000-linux.shlib-init.h
Normal file
671
src/stub/mips.r3000-linux.shlib-init.h
Normal file
@ -0,0 +1,671 @@
|
||||
/* mips.r3000-linux.shlib-init.h
|
||||
created from mips.r3000-linux.shlib-init.bin, 10101 (0x2775) bytes
|
||||
|
||||
This file is part of the UPX executable compressor.
|
||||
|
||||
Copyright (C) 1996-2017 Markus Franz Xaver Johannes Oberhumer
|
||||
Copyright (C) 1996-2017 Laszlo Molnar
|
||||
Copyright (C) 2000-2017 John F. Reiser
|
||||
All Rights Reserved.
|
||||
|
||||
UPX and the UCL library are free software; you can redistribute them
|
||||
and/or modify them under the terms of the GNU General Public License as
|
||||
published by the Free Software Foundation; either version 2 of
|
||||
the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; see the file COPYING.
|
||||
If not, write to the Free Software Foundation, Inc.,
|
||||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
Markus F.X.J. Oberhumer Laszlo Molnar
|
||||
<markus@oberhumer.com> <ezerotven+github@gmail.com>
|
||||
|
||||
John F. Reiser
|
||||
<jreiser@users.sourceforge.net>
|
||||
*/
|
||||
|
||||
|
||||
#define STUB_MIPS_R3000_LINUX_SHLIB_INIT_SIZE 10101
|
||||
#define STUB_MIPS_R3000_LINUX_SHLIB_INIT_ADLER32 0x4a8bb8a9
|
||||
#define STUB_MIPS_R3000_LINUX_SHLIB_INIT_CRC32 0xcfc2ae66
|
||||
|
||||
unsigned char stub_mips_r3000_linux_shlib_init[10101] = {
|
||||
/* 0x0000 */ 127, 69, 76, 70, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0010 */ 0, 1, 0, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0020 */ 0, 0, 30,248, 0, 0, 0, 1, 0, 52, 0, 0, 0, 0, 0, 40,
|
||||
/* 0x0030 */ 0, 0, 0, 0, 0, 0, 0, 13, 39,189,255,232,175,164, 0, 0,
|
||||
/* 0x0040 */ 175,165, 0, 4,175,166, 0, 8,175,190, 0, 12,175,191, 0, 16,
|
||||
/* 0x0050 */ 175,169, 0, 20, 4, 16, 0, 1, 36, 2, 0, 40, 3,226, 16, 35,
|
||||
/* 0x0060 */ 36, 66, 0, 0, 0, 64,248, 9, 0, 0, 0, 0, 60, 13,128, 0,
|
||||
/* 0x0070 */ 1,160, 72, 33, 36, 11, 0, 1, 4, 17, 0, 77, 36, 15, 0, 1,
|
||||
/* 0x0080 */ 17,192, 0, 5,144,142, 0, 0, 36,132, 0, 1, 36,198, 0, 1,
|
||||
/* 0x0090 */ 16, 0,255,249,160,206,255,255, 4, 17, 0, 69, 0, 15,120, 64,
|
||||
/* 0x00a0 */ 4, 17, 0, 67, 1,238,120, 33, 21,192, 0, 5, 37,238,255,254,
|
||||
/* 0x00b0 */ 4, 17, 0, 63, 1,238,120, 33, 16, 0,255,247, 1,238,120, 33,
|
||||
/* 0x00c0 */ 21,192, 0, 5, 37,239,255,253, 4, 17, 0, 57, 1, 96,120, 33,
|
||||
/* 0x00d0 */ 16, 0, 0, 11, 49,204, 0, 1,144,142, 0, 0, 0, 15,122, 0,
|
||||
/* 0x00e0 */ 1,238,120, 33, 37,238, 0, 1, 17,192,255,255, 36,132, 0, 1,
|
||||
/* 0x00f0 */ 0, 15,120, 66, 37,239, 0, 1, 1,224, 88, 33, 49,204, 0, 1,
|
||||
/* 0x0100 */ 4, 17, 0, 43, 0, 0, 0, 0, 21,128, 0, 12, 37,204,255,254,
|
||||
/* 0x0110 */ 17,192, 0, 5, 36, 12, 0, 1, 4, 17, 0, 37, 0, 0, 0, 0,
|
||||
/* 0x0120 */ 16, 0, 0, 6, 1,192, 96, 33, 4, 17, 0, 33, 0, 12, 96, 64,
|
||||
/* 0x0130 */ 4, 17, 0, 31, 1,142, 96, 33, 17,192,255,251, 45,238, 5, 1,
|
||||
/* 0x0140 */ 37,140, 0, 5, 1,142, 96, 35, 0,207,120, 35,145,238, 0, 0,
|
||||
/* 0x0150 */ 37,140,255,255, 37,239, 0, 1, 36,198, 0, 1, 21,128,255,251,
|
||||
/* 0x0160 */ 160,206,255,255, 16, 0,255,196, 0, 0, 0, 0,136,137, 0, 0,
|
||||
/* 0x0170 */ 152,137, 0, 3, 60, 1, 0,255, 52, 33, 0,255, 0, 9,114, 2,
|
||||
/* 0x0180 */ 1,193,112, 36, 1, 33, 72, 36, 0, 9, 74, 0, 1, 46, 72, 37,
|
||||
/* 0x0190 */ 0, 9,116, 2, 0, 9, 76, 0, 1, 46, 72, 37, 36,132, 0, 4,
|
||||
/* 0x01a0 */ 0, 9,119,194, 0, 9, 72, 64, 3,224, 0, 8, 37, 41, 0, 1,
|
||||
/* 0x01b0 */ 17,169,255,238, 0, 9,119,194, 3,224, 0, 8, 0, 9, 72, 64,
|
||||
/* 0x01c0 */ 60, 13,128, 0, 1,160, 72, 33, 36, 11, 0, 1, 4, 17, 0, 73,
|
||||
/* 0x01d0 */ 36, 15, 0, 1, 17,192, 0, 5,144,142, 0, 0, 36,132, 0, 1,
|
||||
/* 0x01e0 */ 36,198, 0, 1, 16, 0,255,249,160,206,255,255, 4, 17, 0, 65,
|
||||
/* 0x01f0 */ 0, 15,120, 64, 4, 17, 0, 63, 1,238,120, 33, 21,192, 0, 5,
|
||||
/* 0x0200 */ 37,238,255,254, 4, 17, 0, 59, 1,207,120, 33, 16, 0,255,247,
|
||||
/* 0x0210 */ 1,238,120, 33, 21,192, 0, 5, 37,239,255,253, 4, 17, 0, 53,
|
||||
/* 0x0220 */ 1, 96,120, 33, 16, 0, 0, 11, 49,204, 0, 1,144,142, 0, 0,
|
||||
/* 0x0230 */ 0, 15,122, 0, 1,238,120, 33, 37,238, 0, 1, 17,192,255,255,
|
||||
/* 0x0240 */ 36,132, 0, 1, 0, 15,120, 66, 37,239, 0, 1, 1,224, 88, 33,
|
||||
/* 0x0250 */ 49,204, 0, 1, 4, 17, 0, 39, 0, 12, 96, 64, 1,142, 96, 33,
|
||||
/* 0x0260 */ 21,128, 0, 7, 37,140,255,254, 36, 12, 0, 1, 4, 17, 0, 33,
|
||||
/* 0x0270 */ 0, 12, 96, 64, 4, 17, 0, 31, 1,142, 96, 33, 17,192,255,251,
|
||||
/* 0x0280 */ 45,238, 5, 1, 37,140, 0, 4, 1,142, 96, 35, 0,207,120, 35,
|
||||
/* 0x0290 */ 145,238, 0, 0, 37,140,255,255, 37,239, 0, 1, 36,198, 0, 1,
|
||||
/* 0x02a0 */ 21,128,255,251,160,206,255,255, 16, 0,255,200, 0, 0, 0, 0,
|
||||
/* 0x02b0 */ 136,137, 0, 0,152,137, 0, 3, 60, 1, 0,255, 52, 33, 0,255,
|
||||
/* 0x02c0 */ 0, 9,114, 2, 1,193,112, 36, 1, 33, 72, 36, 0, 9, 74, 0,
|
||||
/* 0x02d0 */ 1, 46, 72, 37, 0, 9,116, 2, 0, 9, 76, 0, 1, 46, 72, 37,
|
||||
/* 0x02e0 */ 36,132, 0, 4, 0, 9,119,194, 0, 9, 72, 64, 3,224, 0, 8,
|
||||
/* 0x02f0 */ 37, 41, 0, 1, 17,169,255,238, 0, 9,119,194, 3,224, 0, 8,
|
||||
/* 0x0300 */ 0, 9, 72, 64, 60, 13,128, 0, 1,160, 72, 33, 36, 11, 0, 1,
|
||||
/* 0x0310 */ 4, 17, 0, 66, 36, 15, 0, 1, 17,192, 0, 5,144,142, 0, 0,
|
||||
/* 0x0320 */ 36,132, 0, 1, 36,198, 0, 1, 16, 0,255,249,160,206,255,255,
|
||||
/* 0x0330 */ 4, 17, 0, 58, 0, 15,120, 64, 4, 17, 0, 56, 1,238,120, 33,
|
||||
/* 0x0340 */ 17,192,255,251, 36, 14, 0, 2, 21,238, 0, 3, 37,239,255,253,
|
||||
/* 0x0350 */ 16, 0, 0, 7, 1, 96,120, 33,144,142, 0, 0, 0, 15,122, 0,
|
||||
/* 0x0360 */ 1,238,120, 33, 37,239, 0, 1, 17,224,255,255, 36,132, 0, 1,
|
||||
/* 0x0370 */ 4, 17, 0, 42, 1,224, 88, 33, 1,192, 96, 33, 4, 17, 0, 39,
|
||||
/* 0x0380 */ 0, 12, 96, 64, 1,142, 96, 33, 21,128, 0, 7, 37,140,255,254,
|
||||
/* 0x0390 */ 36, 12, 0, 1, 4, 17, 0, 33, 0, 12, 96, 64, 4, 17, 0, 31,
|
||||
/* 0x03a0 */ 1,142, 96, 33, 17,192,255,251, 45,238, 13, 1, 37,140, 0, 4,
|
||||
/* 0x03b0 */ 1,142, 96, 35, 0,207,120, 35,145,238, 0, 0, 37,140,255,255,
|
||||
/* 0x03c0 */ 37,239, 0, 1, 36,198, 0, 1, 21,128,255,251,160,206,255,255,
|
||||
/* 0x03d0 */ 16, 0,255,207, 0, 0, 0, 0,136,137, 0, 0,152,137, 0, 3,
|
||||
/* 0x03e0 */ 60, 1, 0,255, 52, 33, 0,255, 0, 9,114, 2, 1,193,112, 36,
|
||||
/* 0x03f0 */ 1, 33, 72, 36, 0, 9, 74, 0, 1, 46, 72, 37, 0, 9,116, 2,
|
||||
/* 0x0400 */ 0, 9, 76, 0, 1, 46, 72, 37, 36,132, 0, 4, 0, 9,119,194,
|
||||
/* 0x0410 */ 0, 9, 72, 64, 3,224, 0, 8, 37, 41, 0, 1, 17,169,255,238,
|
||||
/* 0x0420 */ 0, 9,119,194, 3,224, 0, 8, 0, 9, 72, 64,144,153, 0, 0,
|
||||
/* 0x0430 */ 36, 7,250, 0,144,152, 0, 1, 51, 34, 0, 7, 0, 25,200,194,
|
||||
/* 0x0440 */ 3, 39, 56, 4, 36,231,241, 96, 3,167,232, 33,175,167, 0, 40,
|
||||
/* 0x0450 */ 39,170, 0, 32,175,191, 0, 44,140,233, 0, 0,175,166, 0, 36,
|
||||
/* 0x0460 */ 0,192, 64, 33, 39,167, 0, 28, 36,166,255,254, 36,133, 0, 2,
|
||||
/* 0x0470 */ 39,164, 0, 48,160,130, 0, 2, 51, 7, 0, 15,160,135, 0, 0,
|
||||
/* 0x0480 */ 0, 24,193, 2, 4, 17, 0, 16,160,152, 0, 1,175,162, 0, 28,
|
||||
/* 0x0490 */ 143,164, 0, 36,143,165, 0, 32, 36, 6, 0, 3, 36, 2, 16, 51,
|
||||
/* 0x04a0 */ 0, 0, 0, 12,143,162, 0, 28,143,167, 0, 40,143,191, 0, 44,
|
||||
/* 0x04b0 */ 3,167, 56, 35, 39,189, 0, 4, 23,167,255,254,175,160,255,252,
|
||||
/* 0x04c0 */ 3,224, 0, 8, 0, 0, 0, 0, 39,189,255,200,175,183, 0, 52,
|
||||
/* 0x04d0 */ 175,182, 0, 48,175,181, 0, 44,175,180, 0, 40,175,179, 0, 36,
|
||||
/* 0x04e0 */ 175,178, 0, 32,175,177, 0, 28,175,176, 0, 24, 0,160,168, 33,
|
||||
/* 0x04f0 */ 175,167, 0, 12, 1, 0,152, 33,175,169, 0, 16,175,170, 0, 20,
|
||||
/* 0x0500 */ 36,144, 0, 4,144,130, 0, 2, 36, 3, 0, 1, 0, 67, 16, 4,
|
||||
/* 0x0510 */ 36, 66,255,255,175,162, 0, 8,144,130, 0, 1, 0, 0, 0, 0,
|
||||
/* 0x0520 */ 0, 67, 16, 4, 36, 66,255,255,175,162, 0, 4,144,150, 0, 0,
|
||||
/* 0x0530 */ 172,224, 0, 0,173, 64, 0, 0,144,132, 0, 1, 0, 0, 0, 0,
|
||||
/* 0x0540 */ 2,196, 32, 33, 36, 2, 3, 0, 0,130, 32, 4, 36,132, 7, 54,
|
||||
/* 0x0550 */ 2, 0, 16, 33, 16, 0, 0, 4, 0, 0, 88, 33, 36, 3, 4, 0,
|
||||
/* 0x0560 */ 164, 67,255,254, 37,107, 0, 1, 21,100,255,252, 36, 66, 0, 2,
|
||||
/* 0x0570 */ 2,166, 56, 33, 2,160,104, 33, 0, 0,192, 33, 0, 0, 32, 33,
|
||||
/* 0x0580 */ 0,245, 16, 35, 16,130, 2,123, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x0590 */ 0, 0, 0, 0, 0, 98,192, 37, 36,132, 0, 1, 36, 2, 0, 5,
|
||||
/* 0x05a0 */ 20,130,255,247, 37,173, 0, 1, 0, 0, 80, 33, 0, 0,112, 33,
|
||||
/* 0x05b0 */ 0, 0,144, 33, 36, 17, 0, 1, 36, 20, 0, 1, 36, 23, 0, 1,
|
||||
/* 0x05c0 */ 175,183, 0, 0, 16, 0, 2, 87, 36, 15,255,255, 52, 70,255,255,
|
||||
/* 0x05d0 */ 0,207, 16, 43, 20, 64, 0, 8, 0, 0, 0, 0, 17,167, 2,101,
|
||||
/* 0x05e0 */ 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x05f0 */ 0, 98,192, 37, 37,173, 0, 1,143,163, 0, 8, 0, 0, 0, 0,
|
||||
/* 0x0600 */ 1, 67, 40, 36, 0, 18,201, 0, 0,185, 16, 33, 0, 2, 16, 64,
|
||||
/* 0x0610 */ 2, 2, 88, 33,149, 99, 0, 0, 0, 15, 18,194, 0, 67, 0, 24,
|
||||
/* 0x0620 */ 0, 0, 96, 18, 3, 12, 16, 43, 16, 64, 0,125, 36, 2, 8, 0,
|
||||
/* 0x0630 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,165, 98, 0, 0,
|
||||
/* 0x0640 */ 143,163, 0, 4, 0, 0, 0, 0, 1, 67, 16, 36, 2,194, 24, 4,
|
||||
/* 0x0650 */ 36, 2, 0, 8, 0, 86, 16, 35, 0, 78, 16, 7, 0, 98, 16, 33,
|
||||
/* 0x0660 */ 0, 2, 26, 64, 0, 2, 18,192, 0, 67, 16, 35, 2, 2, 16, 33,
|
||||
/* 0x0670 */ 36, 70, 14,108, 42, 66, 0, 7, 16, 64, 0, 3, 1,128,120, 33,
|
||||
/* 0x0680 */ 16, 0, 0, 85, 36, 5, 0, 1, 1, 81, 16, 35, 2, 98, 16, 33,
|
||||
/* 0x0690 */ 144, 89, 0, 0, 36, 5, 0, 1, 60, 2, 0,255, 52, 66,255,255,
|
||||
/* 0x06a0 */ 0, 79, 16, 43, 20, 64, 0, 8, 0, 0, 0, 0, 17,167, 2, 49,
|
||||
/* 0x06b0 */ 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x06c0 */ 0, 98,192, 37, 37,173, 0, 1, 0, 25,200, 64, 51, 44, 1, 0,
|
||||
/* 0x06d0 */ 0, 12, 16, 64, 0,194, 16, 33, 0, 5,112, 64, 0, 78, 88, 33,
|
||||
/* 0x06e0 */ 149, 99, 2, 0, 0, 15, 18,194, 0, 67, 0, 24, 0, 0, 32, 18,
|
||||
/* 0x06f0 */ 3, 4, 16, 43, 16, 64, 0, 9, 36, 2, 8, 0, 0, 67, 16, 35,
|
||||
/* 0x0700 */ 0, 2, 17, 67, 0, 98, 16, 33,165, 98, 2, 0, 21,128, 0, 41,
|
||||
/* 0x0710 */ 1,192, 40, 33, 16, 0, 0, 9, 0,128,120, 33, 1,228,120, 35,
|
||||
/* 0x0720 */ 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,165, 98, 2, 0,
|
||||
/* 0x0730 */ 36,162, 0, 1, 17,128, 0, 40, 0,162, 40, 33, 40,162, 1, 0,
|
||||
/* 0x0740 */ 16, 64, 0, 37, 60, 2, 0,255, 16, 0,255,213, 52, 66,255,255,
|
||||
/* 0x0750 */ 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 9, 0, 5, 96, 64,
|
||||
/* 0x0760 */ 17,167, 2, 4, 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x0770 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1, 0, 5, 96, 64,
|
||||
/* 0x0780 */ 0,204, 88, 33,149, 99, 0, 0, 0, 15, 18,194, 0, 67, 0, 24,
|
||||
/* 0x0790 */ 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 8, 36, 2, 8, 0,
|
||||
/* 0x07a0 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,165, 98, 0, 0,
|
||||
/* 0x07b0 */ 1,128, 40, 33, 16, 0, 0, 8, 0,128,120, 33, 1,228,120, 35,
|
||||
/* 0x07c0 */ 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,165, 98, 0, 0,
|
||||
/* 0x07d0 */ 36,162, 0, 1, 0,162, 40, 33, 40,162, 1, 0, 20, 64,255,220,
|
||||
/* 0x07e0 */ 60, 2, 0,255, 48,174, 0,255, 2,106, 16, 33,160, 78, 0, 0,
|
||||
/* 0x07f0 */ 42, 66, 0, 4, 16, 64, 0, 3, 37, 67, 0, 1, 16, 0, 1,200,
|
||||
/* 0x0800 */ 0, 0,144, 33, 42, 66, 0, 10, 16, 64, 0, 3, 0, 0, 0, 0,
|
||||
/* 0x0810 */ 16, 0, 1,195, 38, 82,255,253, 16, 0, 1,193, 38, 82,255,250,
|
||||
/* 0x0820 */ 1,236, 32, 35, 0, 3, 17, 66, 0, 98, 16, 35,165, 98, 0, 0,
|
||||
/* 0x0830 */ 0,196, 16, 43, 20, 64, 0, 8, 3, 12,192, 35, 17,167, 1,205,
|
||||
/* 0x0840 */ 0, 4, 34, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0850 */ 0, 98,192, 37, 37,173, 0, 1, 0, 18, 16, 64, 2, 2,112, 33,
|
||||
/* 0x0860 */ 149,195, 1,128, 0, 4, 18,194, 0, 67, 0, 24, 0, 0, 96, 18,
|
||||
/* 0x0870 */ 3, 12, 16, 43, 16, 64, 0, 15, 36, 2, 8, 0, 0, 67, 16, 35,
|
||||
/* 0x0880 */ 0, 2, 17, 67, 0, 98, 16, 33,165,194, 1,128, 42, 66, 0, 7,
|
||||
/* 0x0890 */ 20, 64, 0, 2, 0, 0,144, 33, 36, 18, 0, 3, 38, 14, 6,100,
|
||||
/* 0x08a0 */ 175,183, 0, 0, 2,128,184, 33, 2, 32,160, 33, 16, 0, 0,144,
|
||||
/* 0x08b0 */ 1,128, 88, 33, 0,140, 88, 35, 0, 3, 17, 66, 0, 98, 16, 35,
|
||||
/* 0x08c0 */ 165,194, 1,128, 0,203, 16, 43, 20, 64, 0, 8, 3, 12,192, 35,
|
||||
/* 0x08d0 */ 17,167, 1,168, 0, 11, 90, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x08e0 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,149,195, 1,152,
|
||||
/* 0x08f0 */ 0, 11, 18,194, 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43,
|
||||
/* 0x0900 */ 16, 64, 0, 50, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x0910 */ 0, 98, 16, 33,165,194, 1,152, 60, 2, 1, 0, 0,130, 16, 43,
|
||||
/* 0x0920 */ 16, 64, 0, 8, 0,128, 88, 33, 17,167, 1,146, 0, 4, 90, 0,
|
||||
/* 0x0930 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x0940 */ 37,173, 0, 1, 0, 25, 16, 64, 2, 2, 24, 33, 0, 5, 16, 64,
|
||||
/* 0x0950 */ 0, 98, 32, 33,148,131, 1,224, 0, 11, 18,194, 0, 67, 0, 24,
|
||||
/* 0x0960 */ 0, 0, 96, 18, 3, 12, 16, 43, 16, 64, 0, 18, 36, 2, 8, 0,
|
||||
/* 0x0970 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33, 17, 64, 1,125,
|
||||
/* 0x0980 */ 164,130, 1,224, 42, 66, 0, 7, 20, 64, 0, 2, 36, 18, 0, 9,
|
||||
/* 0x0990 */ 36, 18, 0, 11, 1, 81, 16, 35, 2, 98, 16, 33,144, 78, 0, 0,
|
||||
/* 0x09a0 */ 2,106, 16, 33,160, 78, 0, 0, 37, 67, 0, 1, 16, 0, 1, 92,
|
||||
/* 0x09b0 */ 1,128,120, 33, 1,108, 88, 35, 3, 12,192, 35, 0, 3, 17, 66,
|
||||
/* 0x09c0 */ 0, 98, 16, 35, 16, 0, 0, 69,164,130, 1,224, 1,100, 88, 35,
|
||||
/* 0x09d0 */ 0, 3, 17, 66, 0, 98, 16, 35,165,194, 1,152, 0,203, 16, 43,
|
||||
/* 0x09e0 */ 20, 64, 0, 8, 3, 4,192, 35, 17,167, 1, 98, 0, 11, 90, 0,
|
||||
/* 0x09f0 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x0a00 */ 37,173, 0, 1,149,195, 1,176, 0, 11, 18,194, 0, 67, 0, 24,
|
||||
/* 0x0a10 */ 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 7, 36, 2, 8, 0,
|
||||
/* 0x0a20 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,165,194, 1,176,
|
||||
/* 0x0a30 */ 16, 0, 0, 28, 2,128, 16, 33, 1,100, 88, 35, 0, 3, 17, 66,
|
||||
/* 0x0a40 */ 0, 98, 16, 35,165,194, 1,176, 0,203, 16, 43, 20, 64, 0, 8,
|
||||
/* 0x0a50 */ 3, 4,192, 35, 17,167, 1, 71, 0, 11, 90, 0, 0, 24, 26, 0,
|
||||
/* 0x0a60 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x0a70 */ 149,195, 1,200, 0, 11, 18,194, 0, 67, 0, 24, 0, 0, 32, 18,
|
||||
/* 0x0a80 */ 3, 4, 16, 43, 16, 64, 0, 11, 36, 2, 8, 0, 0, 67, 16, 35,
|
||||
/* 0x0a90 */ 0, 2, 17, 67, 0, 98, 16, 33,165,194, 1,200, 2,224, 16, 33,
|
||||
/* 0x0aa0 */ 2,128,184, 33, 2, 32,160, 33, 0, 64,136, 33, 16, 0, 0, 11,
|
||||
/* 0x0ab0 */ 0,128, 88, 33, 1,100, 88, 35, 3, 4,192, 35, 0, 3, 17, 66,
|
||||
/* 0x0ac0 */ 0, 98, 16, 35,165,194, 1,200,143,162, 0, 0,175,183, 0, 0,
|
||||
/* 0x0ad0 */ 2,128,184, 33, 2, 32,160, 33, 0, 64,136, 33, 42, 66, 0, 7,
|
||||
/* 0x0ae0 */ 20, 64, 0, 2, 36, 18, 0, 8, 36, 18, 0, 11, 38, 14, 10,104,
|
||||
/* 0x0af0 */ 60, 2, 0,255, 52, 76,255,255, 1,139, 16, 43, 20, 64, 0, 8,
|
||||
/* 0x0b00 */ 0, 0, 0, 0, 17,167, 1, 27, 0, 11, 90, 0, 0, 24, 26, 0,
|
||||
/* 0x0b10 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x0b20 */ 149,195, 0, 0, 0, 11, 18,194, 0, 67, 0, 24, 0, 0, 32, 18,
|
||||
/* 0x0b30 */ 3, 4, 16, 43, 16, 64, 0, 12, 36, 2, 8, 0, 0, 67, 16, 35,
|
||||
/* 0x0b40 */ 0, 2, 17, 67, 0, 98, 16, 33,165,194, 0, 0, 0, 5, 17, 0,
|
||||
/* 0x0b50 */ 1,194, 16, 33, 36, 69, 0, 4, 0,128,120, 33, 36, 8, 0, 3,
|
||||
/* 0x0b60 */ 16, 0, 0, 41, 0, 0, 48, 33, 1,100, 88, 35, 0, 3, 17, 66,
|
||||
/* 0x0b70 */ 0, 98, 16, 35,165,194, 0, 0, 1,139, 16, 43, 20, 64, 0, 8,
|
||||
/* 0x0b80 */ 3, 4,192, 35, 17,167, 0,251, 0, 11, 90, 0, 0, 24, 26, 0,
|
||||
/* 0x0b90 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x0ba0 */ 149,195, 0, 2, 0, 11, 18,194, 0, 67, 0, 24, 0, 0, 32, 18,
|
||||
/* 0x0bb0 */ 3, 4, 16, 43, 16, 64, 0, 12, 36, 2, 8, 0, 0, 67, 16, 35,
|
||||
/* 0x0bc0 */ 0, 2, 17, 67, 0, 98, 16, 33,165,194, 0, 2, 0, 5, 17, 0,
|
||||
/* 0x0bd0 */ 1,194, 16, 33, 36, 69, 1, 4, 0,128,120, 33, 36, 8, 0, 3,
|
||||
/* 0x0be0 */ 16, 0, 0, 9, 36, 6, 0, 8, 1,100,120, 35, 3, 4,192, 35,
|
||||
/* 0x0bf0 */ 0, 3, 17, 66, 0, 98, 16, 35,165,194, 0, 2, 37,197, 2, 4,
|
||||
/* 0x0c00 */ 36, 8, 0, 8, 36, 6, 0, 16, 1, 0,112, 33, 36, 25, 0, 1,
|
||||
/* 0x0c10 */ 60, 2, 0,255, 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 9,
|
||||
/* 0x0c20 */ 0, 25, 96, 64, 17,167, 0,211, 0, 15,122, 0, 0, 24, 26, 0,
|
||||
/* 0x0c30 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x0c40 */ 0, 25, 96, 64, 0,172, 88, 33,149, 99, 0, 0, 0, 15, 18,194,
|
||||
/* 0x0c50 */ 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 8,
|
||||
/* 0x0c60 */ 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,
|
||||
/* 0x0c70 */ 165, 98, 0, 0, 1,128,200, 33, 16, 0, 0, 8, 0,128,120, 33,
|
||||
/* 0x0c80 */ 1,228,120, 35, 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,
|
||||
/* 0x0c90 */ 165, 98, 0, 0, 39, 34, 0, 1, 3, 34,200, 33, 37,206,255,255,
|
||||
/* 0x0ca0 */ 21,192,255,220, 60, 2, 0,255, 36, 2, 0, 1, 1, 2, 16, 4,
|
||||
/* 0x0cb0 */ 3, 34, 16, 35, 0, 70, 72, 33, 42, 66, 0, 4, 16, 64, 0,134,
|
||||
/* 0x0cc0 */ 41, 34, 0, 4, 20, 64, 0, 2, 1, 32, 24, 33, 36, 3, 0, 3,
|
||||
/* 0x0cd0 */ 0, 3, 17,192, 2, 2, 16, 33, 36, 70, 3, 96, 36, 14, 0, 1,
|
||||
/* 0x0ce0 */ 36, 25, 0, 6, 60, 2, 0,255, 52, 66,255,255, 0, 79, 16, 43,
|
||||
/* 0x0cf0 */ 20, 64, 0, 9, 0, 14, 96, 64, 17,167, 0,158, 0, 15,122, 0,
|
||||
/* 0x0d00 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x0d10 */ 37,173, 0, 1, 0, 14, 96, 64, 0,204, 88, 33,149, 99, 0, 0,
|
||||
/* 0x0d20 */ 0, 15, 18,194, 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43,
|
||||
/* 0x0d30 */ 16, 64, 0, 8, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x0d40 */ 0, 98, 16, 33,165, 98, 0, 0, 1,128,112, 33, 16, 0, 0, 8,
|
||||
/* 0x0d50 */ 0,128,120, 33, 1,228,120, 35, 3, 4,192, 35, 0, 3, 17, 66,
|
||||
/* 0x0d60 */ 0, 98, 16, 35,165, 98, 0, 0, 37,194, 0, 1, 1,194,112, 33,
|
||||
/* 0x0d70 */ 39, 57,255,255, 23, 32,255,220, 60, 2, 0,255, 37,195,255,192,
|
||||
/* 0x0d80 */ 40, 98, 0, 4, 20, 64, 0, 80, 0, 96,112, 33, 0, 3, 32, 67,
|
||||
/* 0x0d90 */ 48, 98, 0, 1, 52, 75, 0, 2, 40, 98, 0, 14, 16, 64, 0, 8,
|
||||
/* 0x0da0 */ 36,153,255,255, 3, 43,112, 4, 0, 14, 16, 64, 2, 2, 32, 33,
|
||||
/* 0x0db0 */ 0, 3, 16, 64, 0,130, 16, 35, 16, 0, 0, 26, 36, 72, 5, 94,
|
||||
/* 0x0dc0 */ 36,132,255,251, 60, 2, 0,255, 52, 66,255,255, 0, 79, 16, 43,
|
||||
/* 0x0dd0 */ 20, 64, 0, 8, 0, 0, 0, 0, 17,167, 0,102, 0, 15,122, 0,
|
||||
/* 0x0de0 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x0df0 */ 37,173, 0, 1, 0, 15,120, 66, 3, 15, 16, 43, 20, 64, 0, 3,
|
||||
/* 0x0e00 */ 0, 11, 88, 64, 3, 15,192, 35, 53,107, 0, 1, 36,132,255,255,
|
||||
/* 0x0e10 */ 20,128,255,237, 60, 2, 0,255, 38, 8, 6, 68, 0, 11,113, 0,
|
||||
/* 0x0e20 */ 36, 25, 0, 4, 36, 6, 0, 1, 36, 5, 0, 1, 60, 2, 0,255,
|
||||
/* 0x0e30 */ 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 9, 0, 5, 96, 64,
|
||||
/* 0x0e40 */ 17,167, 0, 76, 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x0e50 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1, 0, 5, 96, 64,
|
||||
/* 0x0e60 */ 1, 12, 88, 33,149, 99, 0, 0, 0, 15, 18,194, 0, 67, 0, 24,
|
||||
/* 0x0e70 */ 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 8, 36, 2, 8, 0,
|
||||
/* 0x0e80 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,165, 98, 0, 0,
|
||||
/* 0x0e90 */ 1,128, 40, 33, 16, 0, 0, 9, 0,128,120, 33, 1,228,120, 35,
|
||||
/* 0x0ea0 */ 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,165, 98, 0, 0,
|
||||
/* 0x0eb0 */ 36,162, 0, 1, 0,162, 40, 33, 1,198,112, 37, 39, 57,255,255,
|
||||
/* 0x0ec0 */ 23, 32,255,218, 0, 6, 48, 64, 37,209, 0, 1, 18, 32, 0, 26,
|
||||
/* 0x0ed0 */ 60, 2, 0,255, 38, 82, 0, 7, 1, 81, 16, 43, 20, 64, 0, 38,
|
||||
/* 0x0ee0 */ 36, 2, 0, 1, 1, 81, 16, 35, 2, 98, 88, 33, 2,106, 32, 33,
|
||||
/* 0x0ef0 */ 1, 64, 24, 33,145,110, 0, 0, 36, 99, 0, 1, 1, 73, 16, 33,
|
||||
/* 0x0f00 */ 36, 66, 0, 2, 16, 98, 0, 6,160,142, 0, 0, 37,107, 0, 1,
|
||||
/* 0x0f10 */ 143,162, 0, 16, 0, 0, 0, 0, 20, 98,255,246, 36,132, 0, 1,
|
||||
/* 0x0f20 */ 0, 96, 80, 33,143,163, 0, 16, 0, 0, 0, 0, 1, 67, 16, 43,
|
||||
/* 0x0f30 */ 20, 64,253,166, 60, 2, 0,255, 52, 66,255,255, 0, 79, 16, 43,
|
||||
/* 0x0f40 */ 20, 64, 0, 4, 1,181, 40, 35, 17,167, 0, 10, 37,173, 0, 1,
|
||||
/* 0x0f50 */ 1,181, 40, 35,143,162, 0, 12, 0, 0, 0, 0,172, 69, 0, 0,
|
||||
/* 0x0f60 */ 143,163, 0, 20, 0, 0, 0, 0,172,106, 0, 0, 16, 0, 0, 2,
|
||||
/* 0x0f70 */ 0, 0, 16, 33, 36, 2, 0, 1,143,183, 0, 52,143,182, 0, 48,
|
||||
/* 0x0f80 */ 143,181, 0, 44,143,180, 0, 40,143,179, 0, 36,143,178, 0, 32,
|
||||
/* 0x0f90 */ 143,177, 0, 28,143,176, 0, 24, 3,224, 0, 8, 39,189, 0, 56,
|
||||
/* 0x0fa0 */ 39,189,255,200,175,183, 0, 52,175,182, 0, 48,175,181, 0, 44,
|
||||
/* 0x0fb0 */ 175,180, 0, 40,175,179, 0, 36,175,178, 0, 32,175,177, 0, 28,
|
||||
/* 0x0fc0 */ 175,176, 0, 24, 0,160,168, 33,175,167, 0, 12, 1, 0,152, 33,
|
||||
/* 0x0fd0 */ 175,169, 0, 16,175,170, 0, 20, 36,144, 0, 4,144,130, 0, 2,
|
||||
/* 0x0fe0 */ 36, 3, 0, 1, 0, 67, 16, 4, 36, 66,255,255,175,162, 0, 8,
|
||||
/* 0x0ff0 */ 144,130, 0, 1, 0, 0, 0, 0, 0, 67, 16, 4, 36, 66,255,255,
|
||||
/* 0x1000 */ 175,162, 0, 4,144,150, 0, 0,172,224, 0, 0,173, 64, 0, 0,
|
||||
/* 0x1010 */ 144,132, 0, 1, 0, 0, 0, 0, 2,196, 32, 33, 36, 2, 3, 0,
|
||||
/* 0x1020 */ 0,130, 32, 4, 36,132, 7, 54, 2, 0, 16, 33, 16, 0, 0, 4,
|
||||
/* 0x1030 */ 0, 0, 88, 33, 36, 3, 4, 0,164, 67,255,254, 37,107, 0, 1,
|
||||
/* 0x1040 */ 21,100,255,252, 36, 66, 0, 2, 2,166, 56, 33, 2,160,104, 33,
|
||||
/* 0x1050 */ 0, 0,192, 33, 0, 0, 32, 33, 0,245, 16, 35, 16,130, 2,123,
|
||||
/* 0x1060 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x1070 */ 36,132, 0, 1, 36, 2, 0, 5, 20,130,255,247, 37,173, 0, 1,
|
||||
/* 0x1080 */ 0, 0, 80, 33, 0, 0,112, 33, 0, 0,144, 33, 36, 17, 0, 1,
|
||||
/* 0x1090 */ 36, 20, 0, 1, 36, 23, 0, 1,175,183, 0, 0, 16, 0, 2, 87,
|
||||
/* 0x10a0 */ 36, 15,255,255, 52, 70,255,255, 0,207, 16, 43, 20, 64, 0, 8,
|
||||
/* 0x10b0 */ 0, 0, 0, 0, 17,167, 2,101, 0, 15,122, 0, 0, 24, 26, 0,
|
||||
/* 0x10c0 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x10d0 */ 143,163, 0, 8, 0, 0, 0, 0, 1, 67, 40, 36, 0, 18,201, 0,
|
||||
/* 0x10e0 */ 0,185, 16, 33, 0, 2, 16, 64, 2, 2, 88, 33,149, 99, 0, 0,
|
||||
/* 0x10f0 */ 0, 15, 18,194, 0, 67, 0, 24, 0, 0, 96, 18, 3, 12, 16, 43,
|
||||
/* 0x1100 */ 16, 64, 0,125, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x1110 */ 0, 98, 16, 33,165, 98, 0, 0,143,163, 0, 4, 0, 0, 0, 0,
|
||||
/* 0x1120 */ 1, 67, 16, 36, 2,194, 24, 4, 36, 2, 0, 8, 0, 86, 16, 35,
|
||||
/* 0x1130 */ 0, 78, 16, 7, 0, 98, 16, 33, 0, 2, 26, 64, 0, 2, 18,192,
|
||||
/* 0x1140 */ 0, 67, 16, 35, 2, 2, 16, 33, 36, 70, 14,108, 42, 66, 0, 7,
|
||||
/* 0x1150 */ 16, 64, 0, 3, 1,128,120, 33, 16, 0, 0, 85, 36, 5, 0, 1,
|
||||
/* 0x1160 */ 1, 81, 16, 35, 2, 98, 16, 33,144, 89, 0, 0, 36, 5, 0, 1,
|
||||
/* 0x1170 */ 60, 2, 0,255, 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 8,
|
||||
/* 0x1180 */ 0, 0, 0, 0, 17,167, 2, 49, 0, 15,122, 0, 0, 24, 26, 0,
|
||||
/* 0x1190 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x11a0 */ 0, 25,200, 64, 51, 44, 1, 0, 0, 12, 16, 64, 0,194, 16, 33,
|
||||
/* 0x11b0 */ 0, 5,112, 64, 0, 78, 88, 33,149, 99, 2, 0, 0, 15, 18,194,
|
||||
/* 0x11c0 */ 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 9,
|
||||
/* 0x11d0 */ 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,
|
||||
/* 0x11e0 */ 165, 98, 2, 0, 21,128, 0, 41, 1,192, 40, 33, 16, 0, 0, 9,
|
||||
/* 0x11f0 */ 0,128,120, 33, 1,228,120, 35, 3, 4,192, 35, 0, 3, 17, 66,
|
||||
/* 0x1200 */ 0, 98, 16, 35,165, 98, 2, 0, 36,162, 0, 1, 17,128, 0, 40,
|
||||
/* 0x1210 */ 0,162, 40, 33, 40,162, 1, 0, 16, 64, 0, 37, 60, 2, 0,255,
|
||||
/* 0x1220 */ 16, 0,255,213, 52, 66,255,255, 52, 66,255,255, 0, 79, 16, 43,
|
||||
/* 0x1230 */ 20, 64, 0, 9, 0, 5, 96, 64, 17,167, 2, 4, 0, 15,122, 0,
|
||||
/* 0x1240 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x1250 */ 37,173, 0, 1, 0, 5, 96, 64, 0,204, 88, 33,149, 99, 0, 0,
|
||||
/* 0x1260 */ 0, 15, 18,194, 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43,
|
||||
/* 0x1270 */ 16, 64, 0, 8, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x1280 */ 0, 98, 16, 33,165, 98, 0, 0, 1,128, 40, 33, 16, 0, 0, 8,
|
||||
/* 0x1290 */ 0,128,120, 33, 1,228,120, 35, 3, 4,192, 35, 0, 3, 17, 66,
|
||||
/* 0x12a0 */ 0, 98, 16, 35,165, 98, 0, 0, 36,162, 0, 1, 0,162, 40, 33,
|
||||
/* 0x12b0 */ 40,162, 1, 0, 20, 64,255,220, 60, 2, 0,255, 48,174, 0,255,
|
||||
/* 0x12c0 */ 2,106, 16, 33,160, 78, 0, 0, 42, 66, 0, 4, 16, 64, 0, 3,
|
||||
/* 0x12d0 */ 37, 67, 0, 1, 16, 0, 1,200, 0, 0,144, 33, 42, 66, 0, 10,
|
||||
/* 0x12e0 */ 16, 64, 0, 3, 0, 0, 0, 0, 16, 0, 1,195, 38, 82,255,253,
|
||||
/* 0x12f0 */ 16, 0, 1,193, 38, 82,255,250, 1,236, 32, 35, 0, 3, 17, 66,
|
||||
/* 0x1300 */ 0, 98, 16, 35,165, 98, 0, 0, 0,196, 16, 43, 20, 64, 0, 8,
|
||||
/* 0x1310 */ 3, 12,192, 35, 17,167, 1,205, 0, 4, 34, 0, 0, 24, 26, 0,
|
||||
/* 0x1320 */ 145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,
|
||||
/* 0x1330 */ 0, 18, 16, 64, 2, 2,112, 33,149,195, 1,128, 0, 4, 18,194,
|
||||
/* 0x1340 */ 0, 67, 0, 24, 0, 0, 96, 18, 3, 12, 16, 43, 16, 64, 0, 15,
|
||||
/* 0x1350 */ 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,
|
||||
/* 0x1360 */ 165,194, 1,128, 42, 66, 0, 7, 20, 64, 0, 2, 0, 0,144, 33,
|
||||
/* 0x1370 */ 36, 18, 0, 3, 38, 14, 6,100,175,183, 0, 0, 2,128,184, 33,
|
||||
/* 0x1380 */ 2, 32,160, 33, 16, 0, 0,144, 1,128, 88, 33, 0,140, 88, 35,
|
||||
/* 0x1390 */ 0, 3, 17, 66, 0, 98, 16, 35,165,194, 1,128, 0,203, 16, 43,
|
||||
/* 0x13a0 */ 20, 64, 0, 8, 3, 12,192, 35, 17,167, 1,168, 0, 11, 90, 0,
|
||||
/* 0x13b0 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x13c0 */ 37,173, 0, 1,149,195, 1,152, 0, 11, 18,194, 0, 67, 0, 24,
|
||||
/* 0x13d0 */ 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 50, 36, 2, 8, 0,
|
||||
/* 0x13e0 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,165,194, 1,152,
|
||||
/* 0x13f0 */ 60, 2, 1, 0, 0,130, 16, 43, 16, 64, 0, 8, 0,128, 88, 33,
|
||||
/* 0x1400 */ 17,167, 1,146, 0, 4, 90, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x1410 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1, 0, 25, 16, 64,
|
||||
/* 0x1420 */ 2, 2, 24, 33, 0, 5, 16, 64, 0, 98, 32, 33,148,131, 1,224,
|
||||
/* 0x1430 */ 0, 11, 18,194, 0, 67, 0, 24, 0, 0, 96, 18, 3, 12, 16, 43,
|
||||
/* 0x1440 */ 16, 64, 0, 18, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x1450 */ 0, 98, 16, 33, 17, 64, 1,125,164,130, 1,224, 42, 66, 0, 7,
|
||||
/* 0x1460 */ 20, 64, 0, 2, 36, 18, 0, 9, 36, 18, 0, 11, 1, 81, 16, 35,
|
||||
/* 0x1470 */ 2, 98, 16, 33,144, 78, 0, 0, 2,106, 16, 33,160, 78, 0, 0,
|
||||
/* 0x1480 */ 37, 67, 0, 1, 16, 0, 1, 92, 1,128,120, 33, 1,108, 88, 35,
|
||||
/* 0x1490 */ 3, 12,192, 35, 0, 3, 17, 66, 0, 98, 16, 35, 16, 0, 0, 69,
|
||||
/* 0x14a0 */ 164,130, 1,224, 1,100, 88, 35, 0, 3, 17, 66, 0, 98, 16, 35,
|
||||
/* 0x14b0 */ 165,194, 1,152, 0,203, 16, 43, 20, 64, 0, 8, 3, 4,192, 35,
|
||||
/* 0x14c0 */ 17,167, 1, 98, 0, 11, 90, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x14d0 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1,149,195, 1,176,
|
||||
/* 0x14e0 */ 0, 11, 18,194, 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43,
|
||||
/* 0x14f0 */ 16, 64, 0, 7, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x1500 */ 0, 98, 16, 33,165,194, 1,176, 16, 0, 0, 28, 2,128, 16, 33,
|
||||
/* 0x1510 */ 1,100, 88, 35, 0, 3, 17, 66, 0, 98, 16, 35,165,194, 1,176,
|
||||
/* 0x1520 */ 0,203, 16, 43, 20, 64, 0, 8, 3, 4,192, 35, 17,167, 1, 71,
|
||||
/* 0x1530 */ 0, 11, 90, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1540 */ 0, 98,192, 37, 37,173, 0, 1,149,195, 1,200, 0, 11, 18,194,
|
||||
/* 0x1550 */ 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 11,
|
||||
/* 0x1560 */ 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,
|
||||
/* 0x1570 */ 165,194, 1,200, 2,224, 16, 33, 2,128,184, 33, 2, 32,160, 33,
|
||||
/* 0x1580 */ 0, 64,136, 33, 16, 0, 0, 11, 0,128, 88, 33, 1,100, 88, 35,
|
||||
/* 0x1590 */ 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,165,194, 1,200,
|
||||
/* 0x15a0 */ 143,162, 0, 0,175,183, 0, 0, 2,128,184, 33, 2, 32,160, 33,
|
||||
/* 0x15b0 */ 0, 64,136, 33, 42, 66, 0, 7, 20, 64, 0, 2, 36, 18, 0, 8,
|
||||
/* 0x15c0 */ 36, 18, 0, 11, 38, 14, 10,104, 60, 2, 0,255, 52, 76,255,255,
|
||||
/* 0x15d0 */ 1,139, 16, 43, 20, 64, 0, 8, 0, 0, 0, 0, 17,167, 1, 27,
|
||||
/* 0x15e0 */ 0, 11, 90, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x15f0 */ 0, 98,192, 37, 37,173, 0, 1,149,195, 0, 0, 0, 11, 18,194,
|
||||
/* 0x1600 */ 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 12,
|
||||
/* 0x1610 */ 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,
|
||||
/* 0x1620 */ 165,194, 0, 0, 0, 5, 17, 0, 1,194, 16, 33, 36, 69, 0, 4,
|
||||
/* 0x1630 */ 0,128,120, 33, 36, 8, 0, 3, 16, 0, 0, 41, 0, 0, 48, 33,
|
||||
/* 0x1640 */ 1,100, 88, 35, 0, 3, 17, 66, 0, 98, 16, 35,165,194, 0, 0,
|
||||
/* 0x1650 */ 1,139, 16, 43, 20, 64, 0, 8, 3, 4,192, 35, 17,167, 0,251,
|
||||
/* 0x1660 */ 0, 11, 90, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1670 */ 0, 98,192, 37, 37,173, 0, 1,149,195, 0, 2, 0, 11, 18,194,
|
||||
/* 0x1680 */ 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 12,
|
||||
/* 0x1690 */ 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,
|
||||
/* 0x16a0 */ 165,194, 0, 2, 0, 5, 17, 0, 1,194, 16, 33, 36, 69, 1, 4,
|
||||
/* 0x16b0 */ 0,128,120, 33, 36, 8, 0, 3, 16, 0, 0, 9, 36, 6, 0, 8,
|
||||
/* 0x16c0 */ 1,100,120, 35, 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,
|
||||
/* 0x16d0 */ 165,194, 0, 2, 37,197, 2, 4, 36, 8, 0, 8, 36, 6, 0, 16,
|
||||
/* 0x16e0 */ 1, 0,112, 33, 36, 25, 0, 1, 60, 2, 0,255, 52, 66,255,255,
|
||||
/* 0x16f0 */ 0, 79, 16, 43, 20, 64, 0, 9, 0, 25, 96, 64, 17,167, 0,211,
|
||||
/* 0x1700 */ 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1710 */ 0, 98,192, 37, 37,173, 0, 1, 0, 25, 96, 64, 0,172, 88, 33,
|
||||
/* 0x1720 */ 149, 99, 0, 0, 0, 15, 18,194, 0, 67, 0, 24, 0, 0, 32, 18,
|
||||
/* 0x1730 */ 3, 4, 16, 43, 16, 64, 0, 8, 36, 2, 8, 0, 0, 67, 16, 35,
|
||||
/* 0x1740 */ 0, 2, 17, 67, 0, 98, 16, 33,165, 98, 0, 0, 1,128,200, 33,
|
||||
/* 0x1750 */ 16, 0, 0, 8, 0,128,120, 33, 1,228,120, 35, 3, 4,192, 35,
|
||||
/* 0x1760 */ 0, 3, 17, 66, 0, 98, 16, 35,165, 98, 0, 0, 39, 34, 0, 1,
|
||||
/* 0x1770 */ 3, 34,200, 33, 37,206,255,255, 21,192,255,220, 60, 2, 0,255,
|
||||
/* 0x1780 */ 36, 2, 0, 1, 1, 2, 16, 4, 3, 34, 16, 35, 0, 70, 72, 33,
|
||||
/* 0x1790 */ 42, 66, 0, 4, 16, 64, 0,134, 41, 34, 0, 4, 20, 64, 0, 2,
|
||||
/* 0x17a0 */ 1, 32, 24, 33, 36, 3, 0, 3, 0, 3, 17,192, 2, 2, 16, 33,
|
||||
/* 0x17b0 */ 36, 70, 3, 96, 36, 14, 0, 1, 36, 25, 0, 6, 60, 2, 0,255,
|
||||
/* 0x17c0 */ 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 9, 0, 14, 96, 64,
|
||||
/* 0x17d0 */ 17,167, 0,158, 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x17e0 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1, 0, 14, 96, 64,
|
||||
/* 0x17f0 */ 0,204, 88, 33,149, 99, 0, 0, 0, 15, 18,194, 0, 67, 0, 24,
|
||||
/* 0x1800 */ 0, 0, 32, 18, 3, 4, 16, 43, 16, 64, 0, 8, 36, 2, 8, 0,
|
||||
/* 0x1810 */ 0, 67, 16, 35, 0, 2, 17, 67, 0, 98, 16, 33,165, 98, 0, 0,
|
||||
/* 0x1820 */ 1,128,112, 33, 16, 0, 0, 8, 0,128,120, 33, 1,228,120, 35,
|
||||
/* 0x1830 */ 3, 4,192, 35, 0, 3, 17, 66, 0, 98, 16, 35,165, 98, 0, 0,
|
||||
/* 0x1840 */ 37,194, 0, 1, 1,194,112, 33, 39, 57,255,255, 23, 32,255,220,
|
||||
/* 0x1850 */ 60, 2, 0,255, 37,195,255,192, 40, 98, 0, 4, 20, 64, 0, 80,
|
||||
/* 0x1860 */ 0, 96,112, 33, 0, 3, 32, 67, 48, 98, 0, 1, 52, 75, 0, 2,
|
||||
/* 0x1870 */ 40, 98, 0, 14, 16, 64, 0, 8, 36,153,255,255, 3, 43,112, 4,
|
||||
/* 0x1880 */ 0, 14, 16, 64, 2, 2, 32, 33, 0, 3, 16, 64, 0,130, 16, 35,
|
||||
/* 0x1890 */ 16, 0, 0, 26, 36, 72, 5, 94, 36,132,255,251, 60, 2, 0,255,
|
||||
/* 0x18a0 */ 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 8, 0, 0, 0, 0,
|
||||
/* 0x18b0 */ 17,167, 0,102, 0, 15,122, 0, 0, 24, 26, 0,145,162, 0, 0,
|
||||
/* 0x18c0 */ 0, 0, 0, 0, 0, 98,192, 37, 37,173, 0, 1, 0, 15,120, 66,
|
||||
/* 0x18d0 */ 3, 15, 16, 43, 20, 64, 0, 3, 0, 11, 88, 64, 3, 15,192, 35,
|
||||
/* 0x18e0 */ 53,107, 0, 1, 36,132,255,255, 20,128,255,237, 60, 2, 0,255,
|
||||
/* 0x18f0 */ 38, 8, 6, 68, 0, 11,113, 0, 36, 25, 0, 4, 36, 6, 0, 1,
|
||||
/* 0x1900 */ 36, 5, 0, 1, 60, 2, 0,255, 52, 66,255,255, 0, 79, 16, 43,
|
||||
/* 0x1910 */ 20, 64, 0, 9, 0, 5, 96, 64, 17,167, 0, 76, 0, 15,122, 0,
|
||||
/* 0x1920 */ 0, 24, 26, 0,145,162, 0, 0, 0, 0, 0, 0, 0, 98,192, 37,
|
||||
/* 0x1930 */ 37,173, 0, 1, 0, 5, 96, 64, 1, 12, 88, 33,149, 99, 0, 0,
|
||||
/* 0x1940 */ 0, 15, 18,194, 0, 67, 0, 24, 0, 0, 32, 18, 3, 4, 16, 43,
|
||||
/* 0x1950 */ 16, 64, 0, 8, 36, 2, 8, 0, 0, 67, 16, 35, 0, 2, 17, 67,
|
||||
/* 0x1960 */ 0, 98, 16, 33,165, 98, 0, 0, 1,128, 40, 33, 16, 0, 0, 9,
|
||||
/* 0x1970 */ 0,128,120, 33, 1,228,120, 35, 3, 4,192, 35, 0, 3, 17, 66,
|
||||
/* 0x1980 */ 0, 98, 16, 35,165, 98, 0, 0, 36,162, 0, 1, 0,162, 40, 33,
|
||||
/* 0x1990 */ 1,198,112, 37, 39, 57,255,255, 23, 32,255,218, 0, 6, 48, 64,
|
||||
/* 0x19a0 */ 37,209, 0, 1, 18, 32, 0, 26, 60, 2, 0,255, 38, 82, 0, 7,
|
||||
/* 0x19b0 */ 1, 81, 16, 43, 20, 64, 0, 38, 36, 2, 0, 1, 1, 81, 16, 35,
|
||||
/* 0x19c0 */ 2, 98, 88, 33, 2,106, 32, 33, 1, 64, 24, 33,145,110, 0, 0,
|
||||
/* 0x19d0 */ 36, 99, 0, 1, 1, 73, 16, 33, 36, 66, 0, 2, 16, 98, 0, 6,
|
||||
/* 0x19e0 */ 160,142, 0, 0, 37,107, 0, 1,143,162, 0, 16, 0, 0, 0, 0,
|
||||
/* 0x19f0 */ 20, 98,255,246, 36,132, 0, 1, 0, 96, 80, 33,143,163, 0, 16,
|
||||
/* 0x1a00 */ 0, 0, 0, 0, 1, 67, 16, 43, 20, 64,253,166, 60, 2, 0,255,
|
||||
/* 0x1a10 */ 52, 66,255,255, 0, 79, 16, 43, 20, 64, 0, 4, 1,181, 40, 35,
|
||||
/* 0x1a20 */ 17,167, 0, 10, 37,173, 0, 1, 1,181, 40, 35,143,162, 0, 12,
|
||||
/* 0x1a30 */ 0, 0, 0, 0,172, 69, 0, 0,143,163, 0, 20, 0, 0, 0, 0,
|
||||
/* 0x1a40 */ 172,106, 0, 0, 16, 0, 0, 2, 0, 0, 16, 33, 36, 2, 0, 1,
|
||||
/* 0x1a50 */ 143,183, 0, 52,143,182, 0, 48,143,181, 0, 44,143,180, 0, 40,
|
||||
/* 0x1a60 */ 143,179, 0, 36,143,178, 0, 32,143,177, 0, 28,143,176, 0, 24,
|
||||
/* 0x1a70 */ 3,224, 0, 8, 39,189, 0, 56, 0, 0, 0, 13, 39,189,255,252,
|
||||
/* 0x1a80 */ 175,191, 0, 0, 0,164, 40, 32,172,230, 0, 0,140,227, 0, 0,
|
||||
/* 0x1a90 */ 0,133,192, 35,143,191, 0, 0,175,184, 0, 0, 0, 96, 32, 33,
|
||||
/* 0x1aa0 */ 0,195, 40, 35,172,229, 0, 0, 36, 6, 0, 3, 36, 2, 16, 51,
|
||||
/* 0x1ab0 */ 0, 0, 0, 12,143,162, 0, 0, 3,224, 0, 8, 39,189, 0, 4,
|
||||
/* 0x1ac0 */ 39,233,255,184,143,232,255,184, 1, 40, 72, 35,143,232,255,188,
|
||||
/* 0x1ad0 */ 1, 40, 64, 33,175,200, 0, 20,143,232,255,192, 1, 40, 64, 33,
|
||||
/* 0x1ae0 */ 39,189,255,252,175,168, 0, 0,143,232,255,196, 1, 40, 32, 33,
|
||||
/* 0x1af0 */ 36,133, 0, 24, 39,189,255,248,140,168, 0, 4, 36,165, 0, 12,
|
||||
/* 0x1b00 */ 0,168, 40, 33, 4, 17, 0,194, 0, 0, 0, 0, 0, 4, 77, 0,
|
||||
/* 0x1b10 */ 0, 9, 77, 2, 1, 9, 64, 33, 39,189,255,252,175,168, 0, 0,
|
||||
/* 0x1b20 */ 0,137, 32, 35, 39,189,255,252,175,164, 0, 0, 1, 9, 64, 35,
|
||||
/* 0x1b30 */ 0,137, 32, 33, 39,189,255,252,175,169, 0, 0, 39,189,255,252,
|
||||
/* 0x1b40 */ 128,167, 0, 5, 39,189,255,252,175,167, 0, 0,128,167, 0, 6,
|
||||
/* 0x1b50 */ 39,189,255,252,175,167, 0, 0, 39,189,255,252,175,168, 0, 0,
|
||||
/* 0x1b60 */ 39,189,255,252,175,164, 0, 0, 4, 17, 0,169, 0, 0, 0, 0,
|
||||
/* 0x1b70 */ 1, 0, 72, 33, 4, 17, 0,166, 0, 0, 0, 0, 39,189,255,252,
|
||||
/* 0x1b80 */ 175,168, 0, 0, 39,189,255,252,175,191, 0, 0, 39,199,255,216,
|
||||
/* 0x1b90 */ 39,189,255,240,175,165, 0, 0,175,169, 0, 4,175,164, 0, 8,
|
||||
/* 0x1ba0 */ 175,167, 0, 12, 48,167, 0, 3, 33, 41, 0, 3, 1, 39, 72, 32,
|
||||
/* 0x1bb0 */ 0, 9, 72,130,143,199,255,232, 0,233, 48, 32, 4, 17, 0,160,
|
||||
/* 0x1bc0 */ 143,199,255,204, 4, 17, 0,158,143,199,255,228, 4, 17, 0, 94,
|
||||
/* 0x1bd0 */ 36, 8,255,255, 36, 7, 0, 50, 36, 6, 0, 3,143,197,255,240,
|
||||
/* 0x1be0 */ 143,196,255,236, 0,128, 72, 33, 36, 2, 15,250, 0, 0, 0, 12,
|
||||
/* 0x1bf0 */ 0, 73, 56, 35, 16,224, 0, 1, 0, 0, 0, 13,143,201,255,232,
|
||||
/* 0x1c00 */ 4, 17, 0, 65,143,197,255,244,143,164, 0, 0,143,165, 0, 4,
|
||||
/* 0x1c10 */ 143,166, 0, 8,143,167, 0, 12,143,168, 0, 16, 39,189, 0, 20,
|
||||
/* 0x1c20 */ 1, 0,248, 9, 0, 0, 0, 0, 39,189, 0, 4, 4, 17, 0, 10,
|
||||
/* 0x1c30 */ 36, 2, 15,251, 0, 0, 0, 12,143,164, 0, 0,143,166, 0, 4,
|
||||
/* 0x1c40 */ 143,166, 0, 8,143,190, 0, 12,143,191, 0, 16, 39,189, 0, 20,
|
||||
/* 0x1c50 */ 3,224,248, 9, 0, 0, 0, 0,143,200,255,252,143,164, 0, 0,
|
||||
/* 0x1c60 */ 143,165, 0, 4, 39,189, 0, 8,173, 4, 0, 0,173, 5, 0, 4,
|
||||
/* 0x1c70 */ 143,164, 0, 0,143,165, 0, 4,143,166, 0, 8,143,167, 0, 12,
|
||||
/* 0x1c80 */ 143,168, 0, 16,143,169, 0, 20, 39,189, 0, 24, 16,224, 0, 3,
|
||||
/* 0x1c90 */ 0, 0, 0, 0, 1, 0,248, 9, 0, 0, 0, 0,143,164, 0, 0,
|
||||
/* 0x1ca0 */ 143,165, 0, 4, 36, 6, 0, 0, 0,164, 40, 33, 36,165, 0, 8,
|
||||
/* 0x1cb0 */ 36, 2, 16, 51, 0, 0, 0, 12,143,164, 0, 0,143,165, 0, 4,
|
||||
/* 0x1cc0 */ 39,189, 0, 8, 36, 6, 0, 5, 36, 2, 16, 29, 0, 0, 0, 12,
|
||||
/* 0x1cd0 */ 143,164, 0, 0,143,165, 0, 4,143,166, 0, 8, 39,189, 0, 12,
|
||||
/* 0x1ce0 */ 0,192, 0, 8,140,169,255,252, 0, 9, 76, 0, 0, 9, 76, 2,
|
||||
/* 0x1cf0 */ 37, 41,255,255,140,162, 0, 0, 36,165, 0, 4,172,130, 0, 0,
|
||||
/* 0x1d00 */ 36,132, 0, 4, 37, 41,255,255, 49, 39, 0, 3, 20,224,255,250,
|
||||
/* 0x1d10 */ 140,162, 0, 0,140,163, 0, 4,140,168, 0, 8,140,169, 0, 12,
|
||||
/* 0x1d20 */ 172,130, 0, 0,172,131, 0, 4,172,136, 0, 8,172,137, 0, 12,
|
||||
/* 0x1d30 */ 37, 41,255,252, 36,165, 0, 16, 21, 32,255,245, 36,132, 0, 16,
|
||||
/* 0x1d40 */ 3,224, 0, 8, 0, 0, 0, 0, 39,189,255,252,175,191, 0, 0,
|
||||
/* 0x1d50 */ 3,224, 56, 33, 4, 17, 0, 58, 0, 0, 0, 0, 0, 6, 40,128,
|
||||
/* 0x1d60 */ 36, 8,255,255, 36, 7, 0, 34, 36, 6, 0, 7,175,197,255,248,
|
||||
/* 0x1d70 */ 36, 4, 0, 0, 36, 2, 15,250, 0, 0, 0, 12, 16,224, 0, 1,
|
||||
/* 0x1d80 */ 0, 0, 0, 13,175,194,255,244,143,197,255,236, 4, 17,255,222,
|
||||
/* 0x1d90 */ 143,201,255,232,143,197,255,188,143,201,255,192, 48,167, 0, 3,
|
||||
/* 0x1da0 */ 0,167, 40, 35, 1, 39, 72, 33, 0,228, 56, 33,175,199,255,188,
|
||||
/* 0x1db0 */ 33, 41, 0, 3, 4, 17,255,212, 0, 9, 72,130, 0,128, 48, 33,
|
||||
/* 0x1dc0 */ 143,197,255,204, 4, 17,255,199,175,196,255,204,143,197,255,228,
|
||||
/* 0x1dd0 */ 4, 17,255,196,175,196,255,228,143,165, 0, 0,143,164, 0, 4,
|
||||
/* 0x1de0 */ 39,189, 0, 8, 4, 17,255,191, 0, 0, 0, 0, 0,128, 40, 33,
|
||||
/* 0x1df0 */ 0,192, 32, 33, 36, 6, 0, 0, 36, 2, 16, 51, 0, 0, 0, 12,
|
||||
/* 0x1e00 */ 143,191, 0, 0, 39,189, 0, 4, 3,224, 0, 8, 0, 0, 0, 0,
|
||||
/* 0x1e10 */ 128,168, 0, 0,128,167, 0, 1, 0, 7, 58, 0, 1, 7, 64, 37,
|
||||
/* 0x1e20 */ 128,167, 0, 2, 0, 7, 60, 0, 1, 7, 64, 37,128,167, 0, 3,
|
||||
/* 0x1e30 */ 0, 7, 62, 0, 1, 7, 64, 37, 3,224, 0, 8, 36,165, 0, 4,
|
||||
/* 0x1e40 */ 140,231,255,252, 0, 7, 60, 0, 0, 7, 60, 2, 36,231,255,255,
|
||||
/* 0x1e50 */ 3,224, 0, 8, 0,199, 48, 33,102,105,108,101, 32,102,111,114,
|
||||
/* 0x1e60 */ 109, 97,116, 32,101,108,102, 51, 50, 45, 98,105,103,109,105,112,
|
||||
/* 0x1e70 */ 115, 10, 10, 83,101, 99,116,105,111,110,115, 58, 10, 73,100,120,
|
||||
/* 0x1e80 */ 32, 78, 97,109,101, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 83,
|
||||
/* 0x1e90 */ 105,122,101, 32, 32, 32, 32, 32, 32, 86, 77, 65, 32, 32, 32, 32,
|
||||
/* 0x1ea0 */ 32, 32, 32, 76, 77, 65, 32, 32, 32, 32, 32, 32, 32, 70,105,108,
|
||||
/* 0x1eb0 */ 101, 32,111,102,102, 32, 32, 65,108,103,110, 32, 32, 70,108, 97,
|
||||
/* 0x1ec0 */ 103,115, 10, 32, 32, 48, 32, 69, 76, 70, 77, 65, 73, 78, 88, 32,
|
||||
/* 0x1ed0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 51, 56, 32, 32, 48,
|
||||
/* 0x1ee0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x1ef0 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 51, 52, 32, 32, 50, 42, 42,
|
||||
/* 0x1f00 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76,
|
||||
/* 0x1f10 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 49,
|
||||
/* 0x1f20 */ 32, 78, 82, 86, 50, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 48,
|
||||
/* 0x1f30 */ 48, 48, 48, 48, 49, 53, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x1f40 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48,
|
||||
/* 0x1f50 */ 48, 48, 48, 54, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78,
|
||||
/* 0x1f60 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69,
|
||||
/* 0x1f70 */ 65, 68, 79, 78, 76, 89, 10, 32, 32, 50, 32, 78, 82, 86, 50, 68,
|
||||
/* 0x1f80 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 49, 52,
|
||||
/* 0x1f90 */ 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48,
|
||||
/* 0x1fa0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, 99, 48, 32,
|
||||
/* 0x1fb0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44,
|
||||
/* 0x1fc0 */ 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89,
|
||||
/* 0x1fd0 */ 10, 32, 32, 51, 32, 78, 82, 86, 50, 66, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x1fe0 */ 32, 32, 32, 48, 48, 48, 48, 48, 49, 50, 56, 32, 32, 48, 48, 48,
|
||||
/* 0x1ff0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32,
|
||||
/* 0x2000 */ 32, 48, 48, 48, 48, 48, 51, 48, 52, 32, 32, 50, 42, 42, 48, 32,
|
||||
/* 0x2010 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67,
|
||||
/* 0x2020 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 52, 32, 76,
|
||||
/* 0x2030 */ 90, 77, 65, 95, 69, 76, 70, 48, 48, 32, 32, 32, 32, 48, 48, 48,
|
||||
/* 0x2040 */ 48, 48, 48, 57, 99, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32,
|
||||
/* 0x2050 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48,
|
||||
/* 0x2060 */ 52, 50, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69,
|
||||
/* 0x2070 */ 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32,
|
||||
/* 0x2080 */ 53, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 32, 32, 32, 32,
|
||||
/* 0x2090 */ 48, 48, 48, 48, 48, 97,100, 56, 32, 32, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x20a0 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48,
|
||||
/* 0x20b0 */ 48, 48, 48, 52, 99, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79,
|
||||
/* 0x20c0 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89,
|
||||
/* 0x20d0 */ 10, 32, 32, 54, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 32,
|
||||
/* 0x20e0 */ 32, 32, 32, 48, 48, 48, 48, 48, 97,100, 56, 32, 32, 48, 48, 48,
|
||||
/* 0x20f0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32,
|
||||
/* 0x2100 */ 32, 48, 48, 48, 48, 48,102, 97, 48, 32, 32, 50, 42, 42, 48, 32,
|
||||
/* 0x2110 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79,
|
||||
/* 0x2120 */ 78, 76, 89, 10, 32, 32, 55, 32, 76, 90, 77, 65, 95, 68, 69, 67,
|
||||
/* 0x2130 */ 51, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32,
|
||||
/* 0x2140 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2150 */ 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 55, 56, 32, 32, 50, 42,
|
||||
/* 0x2160 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69,
|
||||
/* 0x2170 */ 65, 68, 79, 78, 76, 89, 10, 32, 32, 56, 32, 78, 82, 86, 95, 72,
|
||||
/* 0x2180 */ 69, 65, 68, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 49,
|
||||
/* 0x2190 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48,
|
||||
/* 0x21a0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 55, 99, 32,
|
||||
/* 0x21b0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44,
|
||||
/* 0x21c0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 57, 32, 78, 82,
|
||||
/* 0x21d0 */ 86, 95, 84, 65, 73, 76, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48,
|
||||
/* 0x21e0 */ 48, 48, 49, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32,
|
||||
/* 0x21f0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97,
|
||||
/* 0x2200 */ 56, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78,
|
||||
/* 0x2210 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 48,
|
||||
/* 0x2220 */ 32, 67, 70, 76, 85, 83, 72, 32, 32, 32, 32, 32, 32, 32, 32, 48,
|
||||
/* 0x2230 */ 48, 48, 48, 48, 48, 50, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2240 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48,
|
||||
/* 0x2250 */ 48, 49, 97, 57, 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78,
|
||||
/* 0x2260 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10,
|
||||
/* 0x2270 */ 32, 49, 49, 32, 69, 76, 70, 77, 65, 73, 78, 89, 32, 32, 32, 32,
|
||||
/* 0x2280 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48,
|
||||
/* 0x2290 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32,
|
||||
/* 0x22a0 */ 48, 48, 48, 48, 49, 97, 99, 48, 32, 32, 50, 42, 42, 48, 32, 32,
|
||||
/* 0x22b0 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78,
|
||||
/* 0x22c0 */ 76, 89, 10, 32, 49, 50, 32, 69, 76, 70, 77, 65, 73, 78, 90, 32,
|
||||
/* 0x22d0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 51, 57, 56, 32, 32, 48,
|
||||
/* 0x22e0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x22f0 */ 48, 32, 32, 48, 48, 48, 48, 49, 97, 99, 48, 32, 32, 50, 42, 42,
|
||||
/* 0x2300 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65,
|
||||
/* 0x2310 */ 68, 79, 78, 76, 89, 10, 83, 89, 77, 66, 79, 76, 32, 84, 65, 66,
|
||||
/* 0x2320 */ 76, 69, 58, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32,
|
||||
/* 0x2330 */ 32, 32,100, 32, 32, 69, 76, 70, 77, 65, 73, 78, 88, 9, 48, 48,
|
||||
/* 0x2340 */ 48, 48, 48, 48, 48, 48, 32, 69, 76, 70, 77, 65, 73, 78, 88, 10,
|
||||
/* 0x2350 */ 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32,
|
||||
/* 0x2360 */ 32, 78, 82, 86, 95, 84, 65, 73, 76, 9, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2370 */ 48, 48, 32, 78, 82, 86, 95, 84, 65, 73, 76, 10, 48, 48, 48, 48,
|
||||
/* 0x2380 */ 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 69, 76, 70,
|
||||
/* 0x2390 */ 77, 65, 73, 78, 90, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 69,
|
||||
/* 0x23a0 */ 76, 70, 77, 65, 73, 78, 90, 10, 48, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x23b0 */ 32,108, 32, 32, 32, 32,100, 32, 32, 78, 82, 86, 50, 69, 9, 48,
|
||||
/* 0x23c0 */ 48, 48, 48, 48, 48, 48, 48, 32, 78, 82, 86, 50, 69, 10, 48, 48,
|
||||
/* 0x23d0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78,
|
||||
/* 0x23e0 */ 82, 86, 50, 68, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 82,
|
||||
/* 0x23f0 */ 86, 50, 68, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32,
|
||||
/* 0x2400 */ 32, 32,100, 32, 32, 78, 82, 86, 50, 66, 9, 48, 48, 48, 48, 48,
|
||||
/* 0x2410 */ 48, 48, 48, 32, 78, 82, 86, 50, 66, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2420 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95,
|
||||
/* 0x2430 */ 69, 76, 70, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76,
|
||||
/* 0x2440 */ 90, 77, 65, 95, 69, 76, 70, 48, 48, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2450 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95,
|
||||
/* 0x2460 */ 68, 69, 67, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76,
|
||||
/* 0x2470 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2480 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95,
|
||||
/* 0x2490 */ 68, 69, 67, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76,
|
||||
/* 0x24a0 */ 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x24b0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95,
|
||||
/* 0x24c0 */ 68, 69, 67, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76,
|
||||
/* 0x24d0 */ 90, 77, 65, 95, 68, 69, 67, 51, 48, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x24e0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 82, 86, 95, 72,
|
||||
/* 0x24f0 */ 69, 65, 68, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 82, 86,
|
||||
/* 0x2500 */ 95, 72, 69, 65, 68, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108,
|
||||
/* 0x2510 */ 32, 32, 32, 32,100, 32, 32, 67, 70, 76, 85, 83, 72, 9, 48, 48,
|
||||
/* 0x2520 */ 48, 48, 48, 48, 48, 48, 32, 67, 70, 76, 85, 83, 72, 10, 48, 48,
|
||||
/* 0x2530 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 69,
|
||||
/* 0x2540 */ 76, 70, 77, 65, 73, 78, 89, 9, 48, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2550 */ 32, 69, 76, 70, 77, 65, 73, 78, 89, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2560 */ 48, 48, 32,103, 32, 32, 32, 32, 32, 79, 32, 69, 76, 70, 77, 65,
|
||||
/* 0x2570 */ 73, 78, 88, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 95,115,116,
|
||||
/* 0x2580 */ 97,114,116, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,103, 32, 32,
|
||||
/* 0x2590 */ 32, 32, 32, 79, 32, 69, 76, 70, 77, 65, 73, 78, 89, 9, 48, 48,
|
||||
/* 0x25a0 */ 48, 48, 48, 48, 48, 48, 32,101,110,100, 95,100,101, 99,111,109,
|
||||
/* 0x25b0 */ 112,114,101,115,115, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79,
|
||||
/* 0x25c0 */ 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 69,
|
||||
/* 0x25d0 */ 76, 70, 77, 65, 73, 78, 88, 93, 58, 10, 79, 70, 70, 83, 69, 84,
|
||||
/* 0x25e0 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x25f0 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48,
|
||||
/* 0x2600 */ 48, 50, 52, 32, 82, 95, 77, 73, 80, 83, 95, 76, 79, 49, 54, 32,
|
||||
/* 0x2610 */ 32, 32, 32, 32, 32, 32, 69, 76, 70, 77, 65, 73, 78, 88, 10, 48,
|
||||
/* 0x2620 */ 48, 48, 48, 48, 48, 50, 99, 32, 82, 95, 77, 73, 80, 83, 95, 76,
|
||||
/* 0x2630 */ 79, 49, 54, 32, 32, 32, 32, 32, 32, 32, 69, 76, 70, 77, 65, 73,
|
||||
/* 0x2640 */ 78, 90, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82,
|
||||
/* 0x2650 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 82, 86, 50,
|
||||
/* 0x2660 */ 69, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80,
|
||||
/* 0x2670 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86,
|
||||
/* 0x2680 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 55, 99, 32, 82, 95,
|
||||
/* 0x2690 */ 77, 73, 80, 83, 95, 80, 67, 49, 54, 32, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x26a0 */ 78, 82, 86, 95, 84, 65, 73, 76, 10, 10, 82, 69, 76, 79, 67, 65,
|
||||
/* 0x26b0 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82,
|
||||
/* 0x26c0 */ 32, 91, 78, 82, 86, 50, 68, 93, 58, 10, 79, 70, 70, 83, 69, 84,
|
||||
/* 0x26d0 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x26e0 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48,
|
||||
/* 0x26f0 */ 48, 55, 99, 32, 82, 95, 77, 73, 80, 83, 95, 80, 67, 49, 54, 32,
|
||||
/* 0x2700 */ 32, 32, 32, 32, 32, 32, 78, 82, 86, 95, 84, 65, 73, 76, 10, 10,
|
||||
/* 0x2710 */ 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82,
|
||||
/* 0x2720 */ 68, 83, 32, 70, 79, 82, 32, 91, 78, 82, 86, 50, 66, 93, 58, 10,
|
||||
/* 0x2730 */ 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32,
|
||||
/* 0x2740 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69,
|
||||
/* 0x2750 */ 10, 48, 48, 48, 48, 48, 48, 54, 52, 32, 82, 95, 77, 73, 80, 83,
|
||||
/* 0x2760 */ 95, 80, 67, 49, 54, 32, 32, 32, 32, 32, 32, 32, 78, 82, 86, 95,
|
||||
/* 0x2770 */ 84, 65, 73, 76, 10
|
||||
};
|
663
src/stub/mipsel.r3000-linux.shlib-init.h
Normal file
663
src/stub/mipsel.r3000-linux.shlib-init.h
Normal file
@ -0,0 +1,663 @@
|
||||
/* mipsel.r3000-linux.shlib-init.h
|
||||
created from mipsel.r3000-linux.shlib-init.bin, 9984 (0x2700) bytes
|
||||
|
||||
This file is part of the UPX executable compressor.
|
||||
|
||||
Copyright (C) 1996-2017 Markus Franz Xaver Johannes Oberhumer
|
||||
Copyright (C) 1996-2017 Laszlo Molnar
|
||||
Copyright (C) 2000-2017 John F. Reiser
|
||||
All Rights Reserved.
|
||||
|
||||
UPX and the UCL library are free software; you can redistribute them
|
||||
and/or modify them under the terms of the GNU General Public License as
|
||||
published by the Free Software Foundation; either version 2 of
|
||||
the License, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; see the file COPYING.
|
||||
If not, write to the Free Software Foundation, Inc.,
|
||||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
Markus F.X.J. Oberhumer Laszlo Molnar
|
||||
<markus@oberhumer.com> <ezerotven+github@gmail.com>
|
||||
|
||||
John F. Reiser
|
||||
<jreiser@users.sourceforge.net>
|
||||
*/
|
||||
|
||||
|
||||
#define STUB_MIPSEL_R3000_LINUX_SHLIB_INIT_SIZE 9984
|
||||
#define STUB_MIPSEL_R3000_LINUX_SHLIB_INIT_ADLER32 0x9d0ba1cb
|
||||
#define STUB_MIPSEL_R3000_LINUX_SHLIB_INIT_CRC32 0xc2ed1dcc
|
||||
|
||||
unsigned char stub_mipsel_r3000_linux_shlib_init[9984] = {
|
||||
/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0010 */ 1, 0, 8, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0020 */ 128, 30, 0, 0, 1, 0, 0, 0, 52, 0, 0, 0, 0, 0, 40, 0,
|
||||
/* 0x0030 */ 0, 0, 0, 0, 13, 0, 0, 0,232,255,189, 39, 0, 0,164,175,
|
||||
/* 0x0040 */ 4, 0,165,175, 8, 0,166,175, 12, 0,190,175, 16, 0,191,175,
|
||||
/* 0x0050 */ 20, 0,169,175, 1, 0, 16, 4, 40, 0, 2, 36, 35, 16,226, 3,
|
||||
/* 0x0060 */ 0, 0, 66, 36, 9,248, 64, 0, 0, 0, 0, 0, 0,128, 13, 60,
|
||||
/* 0x0070 */ 33, 72,160, 1, 1, 0, 11, 36, 67, 0, 17, 4, 1, 0, 15, 36,
|
||||
/* 0x0080 */ 5, 0,192, 17, 0, 0,142,144, 1, 0,132, 36, 1, 0,198, 36,
|
||||
/* 0x0090 */ 249,255, 0, 16,255,255,206,160, 59, 0, 17, 4, 64,120, 15, 0,
|
||||
/* 0x00a0 */ 57, 0, 17, 4, 33,120,238, 1, 5, 0,192, 21,254,255,238, 37,
|
||||
/* 0x00b0 */ 53, 0, 17, 4, 33,120,238, 1,247,255, 0, 16, 33,120,238, 1,
|
||||
/* 0x00c0 */ 5, 0,192, 21,253,255,239, 37, 47, 0, 17, 4, 33,120, 96, 1,
|
||||
/* 0x00d0 */ 11, 0, 0, 16, 1, 0,204, 49, 0, 0,142,144, 0,122, 15, 0,
|
||||
/* 0x00e0 */ 33,120,238, 1, 1, 0,238, 37,255,255,192, 17, 1, 0,132, 36,
|
||||
/* 0x00f0 */ 66,120, 15, 0, 1, 0,239, 37, 33, 88,224, 1, 1, 0,204, 49,
|
||||
/* 0x0100 */ 33, 0, 17, 4, 0, 0, 0, 0, 12, 0,128, 21,254,255,204, 37,
|
||||
/* 0x0110 */ 5, 0,192, 17, 1, 0, 12, 36, 27, 0, 17, 4, 0, 0, 0, 0,
|
||||
/* 0x0120 */ 6, 0, 0, 16, 33, 96,192, 1, 23, 0, 17, 4, 64, 96, 12, 0,
|
||||
/* 0x0130 */ 21, 0, 17, 4, 33, 96,142, 1,251,255,192, 17, 1, 5,238, 45,
|
||||
/* 0x0140 */ 5, 0,140, 37, 35, 96,142, 1, 35,120,207, 0, 0, 0,238,145,
|
||||
/* 0x0150 */ 255,255,140, 37, 1, 0,239, 37, 1, 0,198, 36,251,255,128, 21,
|
||||
/* 0x0160 */ 255,255,206,160,196,255, 0, 16, 0, 0, 0, 0, 0, 0,137,152,
|
||||
/* 0x0170 */ 3, 0,137,136, 4, 0,132, 36,194,119, 9, 0, 64, 72, 9, 0,
|
||||
/* 0x0180 */ 8, 0,224, 3, 1, 0, 41, 37,248,255,169, 17,194,119, 9, 0,
|
||||
/* 0x0190 */ 8, 0,224, 3, 64, 72, 9, 0, 0,128, 13, 60, 33, 72,160, 1,
|
||||
/* 0x01a0 */ 1, 0, 11, 36, 63, 0, 17, 4, 1, 0, 15, 36, 5, 0,192, 17,
|
||||
/* 0x01b0 */ 0, 0,142,144, 1, 0,132, 36, 1, 0,198, 36,249,255, 0, 16,
|
||||
/* 0x01c0 */ 255,255,206,160, 55, 0, 17, 4, 64,120, 15, 0, 53, 0, 17, 4,
|
||||
/* 0x01d0 */ 33,120,238, 1, 5, 0,192, 21,254,255,238, 37, 49, 0, 17, 4,
|
||||
/* 0x01e0 */ 33,120,207, 1,247,255, 0, 16, 33,120,238, 1, 5, 0,192, 21,
|
||||
/* 0x01f0 */ 253,255,239, 37, 43, 0, 17, 4, 33,120, 96, 1, 11, 0, 0, 16,
|
||||
/* 0x0200 */ 1, 0,204, 49, 0, 0,142,144, 0,122, 15, 0, 33,120,238, 1,
|
||||
/* 0x0210 */ 1, 0,238, 37,255,255,192, 17, 1, 0,132, 36, 66,120, 15, 0,
|
||||
/* 0x0220 */ 1, 0,239, 37, 33, 88,224, 1, 1, 0,204, 49, 29, 0, 17, 4,
|
||||
/* 0x0230 */ 64, 96, 12, 0, 33, 96,142, 1, 7, 0,128, 21,254,255,140, 37,
|
||||
/* 0x0240 */ 1, 0, 12, 36, 23, 0, 17, 4, 64, 96, 12, 0, 21, 0, 17, 4,
|
||||
/* 0x0250 */ 33, 96,142, 1,251,255,192, 17, 1, 5,238, 45, 4, 0,140, 37,
|
||||
/* 0x0260 */ 35, 96,142, 1, 35,120,207, 0, 0, 0,238,145,255,255,140, 37,
|
||||
/* 0x0270 */ 1, 0,239, 37, 1, 0,198, 36,251,255,128, 21,255,255,206,160,
|
||||
/* 0x0280 */ 200,255, 0, 16, 0, 0, 0, 0, 0, 0,137,152, 3, 0,137,136,
|
||||
/* 0x0290 */ 4, 0,132, 36,194,119, 9, 0, 64, 72, 9, 0, 8, 0,224, 3,
|
||||
/* 0x02a0 */ 1, 0, 41, 37,248,255,169, 17,194,119, 9, 0, 8, 0,224, 3,
|
||||
/* 0x02b0 */ 64, 72, 9, 0, 0,128, 13, 60, 33, 72,160, 1, 1, 0, 11, 36,
|
||||
/* 0x02c0 */ 56, 0, 17, 4, 1, 0, 15, 36, 5, 0,192, 17, 0, 0,142,144,
|
||||
/* 0x02d0 */ 1, 0,132, 36, 1, 0,198, 36,249,255, 0, 16,255,255,206,160,
|
||||
/* 0x02e0 */ 48, 0, 17, 4, 64,120, 15, 0, 46, 0, 17, 4, 33,120,238, 1,
|
||||
/* 0x02f0 */ 251,255,192, 17, 2, 0, 14, 36, 3, 0,238, 21,253,255,239, 37,
|
||||
/* 0x0300 */ 7, 0, 0, 16, 33,120, 96, 1, 0, 0,142,144, 0,122, 15, 0,
|
||||
/* 0x0310 */ 33,120,238, 1, 1, 0,239, 37,255,255,224, 17, 1, 0,132, 36,
|
||||
/* 0x0320 */ 32, 0, 17, 4, 33, 88,224, 1, 33, 96,192, 1, 29, 0, 17, 4,
|
||||
/* 0x0330 */ 64, 96, 12, 0, 33, 96,142, 1, 7, 0,128, 21,254,255,140, 37,
|
||||
/* 0x0340 */ 1, 0, 12, 36, 23, 0, 17, 4, 64, 96, 12, 0, 21, 0, 17, 4,
|
||||
/* 0x0350 */ 33, 96,142, 1,251,255,192, 17, 1, 13,238, 45, 4, 0,140, 37,
|
||||
/* 0x0360 */ 35, 96,142, 1, 35,120,207, 0, 0, 0,238,145,255,255,140, 37,
|
||||
/* 0x0370 */ 1, 0,239, 37, 1, 0,198, 36,251,255,128, 21,255,255,206,160,
|
||||
/* 0x0380 */ 207,255, 0, 16, 0, 0, 0, 0, 0, 0,137,152, 3, 0,137,136,
|
||||
/* 0x0390 */ 4, 0,132, 36,194,119, 9, 0, 64, 72, 9, 0, 8, 0,224, 3,
|
||||
/* 0x03a0 */ 1, 0, 41, 37,248,255,169, 17,194,119, 9, 0, 8, 0,224, 3,
|
||||
/* 0x03b0 */ 64, 72, 9, 0, 0, 0,153,144, 0,250, 7, 36, 1, 0,152,144,
|
||||
/* 0x03c0 */ 7, 0, 34, 51,194,200, 25, 0, 4, 56, 39, 3, 96,241,231, 36,
|
||||
/* 0x03d0 */ 33,232,167, 3, 40, 0,167,175, 32, 0,170, 39, 44, 0,191,175,
|
||||
/* 0x03e0 */ 0, 0,233,140, 36, 0,166,175, 33, 64,192, 0, 28, 0,167, 39,
|
||||
/* 0x03f0 */ 254,255,166, 36, 2, 0,133, 36, 48, 0,164, 39, 2, 0,130,160,
|
||||
/* 0x0400 */ 15, 0, 7, 51, 0, 0,135,160, 2,193, 24, 0, 16, 0, 17, 4,
|
||||
/* 0x0410 */ 1, 0,152,160, 28, 0,162,175, 36, 0,164,143, 32, 0,165,143,
|
||||
/* 0x0420 */ 3, 0, 6, 36, 51, 16, 2, 36, 12, 0, 0, 0, 28, 0,162,143,
|
||||
/* 0x0430 */ 40, 0,167,143, 44, 0,191,143, 35, 56,167, 3, 4, 0,189, 39,
|
||||
/* 0x0440 */ 254,255,167, 23,252,255,160,175, 8, 0,224, 3, 0, 0, 0, 0,
|
||||
/* 0x0450 */ 200,255,189, 39, 52, 0,183,175, 48, 0,182,175, 44, 0,181,175,
|
||||
/* 0x0460 */ 40, 0,180,175, 36, 0,179,175, 32, 0,178,175, 28, 0,177,175,
|
||||
/* 0x0470 */ 24, 0,176,175, 33,168,160, 0, 12, 0,167,175, 33,152, 0, 1,
|
||||
/* 0x0480 */ 16, 0,169,175, 20, 0,170,175, 4, 0,144, 36, 2, 0,130,144,
|
||||
/* 0x0490 */ 1, 0, 3, 36, 4, 16, 67, 0,255,255, 66, 36, 8, 0,162,175,
|
||||
/* 0x04a0 */ 1, 0,130,144, 0, 0, 0, 0, 4, 16, 67, 0,255,255, 66, 36,
|
||||
/* 0x04b0 */ 4, 0,162,175, 0, 0,150,144, 0, 0,224,172, 0, 0, 64,173,
|
||||
/* 0x04c0 */ 1, 0,132,144, 0, 0, 0, 0, 33, 32,196, 2, 0, 3, 2, 36,
|
||||
/* 0x04d0 */ 4, 32,130, 0, 54, 7,132, 36, 33, 16, 0, 2, 4, 0, 0, 16,
|
||||
/* 0x04e0 */ 33, 88, 0, 0, 0, 4, 3, 36,254,255, 67,164, 1, 0,107, 37,
|
||||
/* 0x04f0 */ 252,255,100, 21, 2, 0, 66, 36, 33, 56,166, 2, 33,104,160, 2,
|
||||
/* 0x0500 */ 33,192, 0, 0, 33, 32, 0, 0, 35, 16,245, 0,123, 2,130, 16,
|
||||
/* 0x0510 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x0520 */ 1, 0,132, 36, 5, 0, 2, 36,247,255,130, 20, 1, 0,173, 37,
|
||||
/* 0x0530 */ 33, 80, 0, 0, 33,112, 0, 0, 33,144, 0, 0, 1, 0, 17, 36,
|
||||
/* 0x0540 */ 1, 0, 20, 36, 1, 0, 23, 36, 0, 0,183,175, 87, 2, 0, 16,
|
||||
/* 0x0550 */ 255,255, 15, 36,255,255, 70, 52, 43, 16,207, 0, 8, 0, 64, 20,
|
||||
/* 0x0560 */ 0, 0, 0, 0,101, 2,167, 17, 0,122, 15, 0, 0, 26, 24, 0,
|
||||
/* 0x0570 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x0580 */ 8, 0,163,143, 0, 0, 0, 0, 36, 40, 67, 1, 0,201, 18, 0,
|
||||
/* 0x0590 */ 33, 16,185, 0, 64, 16, 2, 0, 33, 88, 2, 2, 0, 0, 99,149,
|
||||
/* 0x05a0 */ 194, 18, 15, 0, 24, 0, 67, 0, 18, 96, 0, 0, 43, 16, 12, 3,
|
||||
/* 0x05b0 */ 125, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x05c0 */ 33, 16, 98, 0, 0, 0, 98,165, 4, 0,163,143, 0, 0, 0, 0,
|
||||
/* 0x05d0 */ 36, 16, 67, 1, 4, 24,194, 2, 8, 0, 2, 36, 35, 16, 86, 0,
|
||||
/* 0x05e0 */ 7, 16, 78, 0, 33, 16, 98, 0, 64, 26, 2, 0,192, 18, 2, 0,
|
||||
/* 0x05f0 */ 35, 16, 67, 0, 33, 16, 2, 2,108, 14, 70, 36, 7, 0, 66, 42,
|
||||
/* 0x0600 */ 3, 0, 64, 16, 33,120,128, 1, 85, 0, 0, 16, 1, 0, 5, 36,
|
||||
/* 0x0610 */ 35, 16, 81, 1, 33, 16, 98, 2, 0, 0, 89,144, 1, 0, 5, 36,
|
||||
/* 0x0620 */ 255, 0, 2, 60,255,255, 66, 52, 43, 16, 79, 0, 8, 0, 64, 20,
|
||||
/* 0x0630 */ 0, 0, 0, 0, 49, 2,167, 17, 0,122, 15, 0, 0, 26, 24, 0,
|
||||
/* 0x0640 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x0650 */ 64,200, 25, 0, 0, 1, 44, 51, 64, 16, 12, 0, 33, 16,194, 0,
|
||||
/* 0x0660 */ 64,112, 5, 0, 33, 88, 78, 0, 0, 2, 99,149,194, 18, 15, 0,
|
||||
/* 0x0670 */ 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3, 9, 0, 64, 16,
|
||||
/* 0x0680 */ 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,
|
||||
/* 0x0690 */ 0, 2, 98,165, 41, 0,128, 21, 33, 40,192, 1, 9, 0, 0, 16,
|
||||
/* 0x06a0 */ 33,120,128, 0, 35,120,228, 1, 35,192, 4, 3, 66, 17, 3, 0,
|
||||
/* 0x06b0 */ 35, 16, 98, 0, 0, 2, 98,165, 1, 0,162, 36, 40, 0,128, 17,
|
||||
/* 0x06c0 */ 33, 40,162, 0, 0, 1,162, 40, 37, 0, 64, 16,255, 0, 2, 60,
|
||||
/* 0x06d0 */ 213,255, 0, 16,255,255, 66, 52,255,255, 66, 52, 43, 16, 79, 0,
|
||||
/* 0x06e0 */ 9, 0, 64, 20, 64, 96, 5, 0, 4, 2,167, 17, 0,122, 15, 0,
|
||||
/* 0x06f0 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x0700 */ 1, 0,173, 37, 64, 96, 5, 0, 33, 88,204, 0, 0, 0, 99,149,
|
||||
/* 0x0710 */ 194, 18, 15, 0, 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3,
|
||||
/* 0x0720 */ 8, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x0730 */ 33, 16, 98, 0, 0, 0, 98,165, 33, 40,128, 1, 8, 0, 0, 16,
|
||||
/* 0x0740 */ 33,120,128, 0, 35,120,228, 1, 35,192, 4, 3, 66, 17, 3, 0,
|
||||
/* 0x0750 */ 35, 16, 98, 0, 0, 0, 98,165, 1, 0,162, 36, 33, 40,162, 0,
|
||||
/* 0x0760 */ 0, 1,162, 40,220,255, 64, 20,255, 0, 2, 60,255, 0,174, 48,
|
||||
/* 0x0770 */ 33, 16,106, 2, 0, 0, 78,160, 4, 0, 66, 42, 3, 0, 64, 16,
|
||||
/* 0x0780 */ 1, 0, 67, 37,200, 1, 0, 16, 33,144, 0, 0, 10, 0, 66, 42,
|
||||
/* 0x0790 */ 3, 0, 64, 16, 0, 0, 0, 0,195, 1, 0, 16,253,255, 82, 38,
|
||||
/* 0x07a0 */ 193, 1, 0, 16,250,255, 82, 38, 35, 32,236, 1, 66, 17, 3, 0,
|
||||
/* 0x07b0 */ 35, 16, 98, 0, 0, 0, 98,165, 43, 16,196, 0, 8, 0, 64, 20,
|
||||
/* 0x07c0 */ 35,192, 12, 3,205, 1,167, 17, 0, 34, 4, 0, 0, 26, 24, 0,
|
||||
/* 0x07d0 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x07e0 */ 64, 16, 18, 0, 33,112, 2, 2,128, 1,195,149,194, 18, 4, 0,
|
||||
/* 0x07f0 */ 24, 0, 67, 0, 18, 96, 0, 0, 43, 16, 12, 3, 15, 0, 64, 16,
|
||||
/* 0x0800 */ 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,
|
||||
/* 0x0810 */ 128, 1,194,165, 7, 0, 66, 42, 2, 0, 64, 20, 33,144, 0, 0,
|
||||
/* 0x0820 */ 3, 0, 18, 36,100, 6, 14, 38, 0, 0,183,175, 33,184,128, 2,
|
||||
/* 0x0830 */ 33,160, 32, 2,144, 0, 0, 16, 33, 88,128, 1, 35, 88,140, 0,
|
||||
/* 0x0840 */ 66, 17, 3, 0, 35, 16, 98, 0,128, 1,194,165, 43, 16,203, 0,
|
||||
/* 0x0850 */ 8, 0, 64, 20, 35,192, 12, 3,168, 1,167, 17, 0, 90, 11, 0,
|
||||
/* 0x0860 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x0870 */ 1, 0,173, 37,152, 1,195,149,194, 18, 11, 0, 24, 0, 67, 0,
|
||||
/* 0x0880 */ 18, 32, 0, 0, 43, 16, 4, 3, 50, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x0890 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,152, 1,194,165,
|
||||
/* 0x08a0 */ 0, 1, 2, 60, 43, 16,130, 0, 8, 0, 64, 16, 33, 88,128, 0,
|
||||
/* 0x08b0 */ 146, 1,167, 17, 0, 90, 4, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x08c0 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37, 64, 16, 25, 0,
|
||||
/* 0x08d0 */ 33, 24, 2, 2, 64, 16, 5, 0, 33, 32, 98, 0,224, 1,131,148,
|
||||
/* 0x08e0 */ 194, 18, 11, 0, 24, 0, 67, 0, 18, 96, 0, 0, 43, 16, 12, 3,
|
||||
/* 0x08f0 */ 18, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x0900 */ 33, 16, 98, 0,125, 1, 64, 17,224, 1,130,164, 7, 0, 66, 42,
|
||||
/* 0x0910 */ 2, 0, 64, 20, 9, 0, 18, 36, 11, 0, 18, 36, 35, 16, 81, 1,
|
||||
/* 0x0920 */ 33, 16, 98, 2, 0, 0, 78,144, 33, 16,106, 2, 0, 0, 78,160,
|
||||
/* 0x0930 */ 1, 0, 67, 37, 92, 1, 0, 16, 33,120,128, 1, 35, 88,108, 1,
|
||||
/* 0x0940 */ 35,192, 12, 3, 66, 17, 3, 0, 35, 16, 98, 0, 69, 0, 0, 16,
|
||||
/* 0x0950 */ 224, 1,130,164, 35, 88,100, 1, 66, 17, 3, 0, 35, 16, 98, 0,
|
||||
/* 0x0960 */ 152, 1,194,165, 43, 16,203, 0, 8, 0, 64, 20, 35,192, 4, 3,
|
||||
/* 0x0970 */ 98, 1,167, 17, 0, 90, 11, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x0980 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,176, 1,195,149,
|
||||
/* 0x0990 */ 194, 18, 11, 0, 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3,
|
||||
/* 0x09a0 */ 7, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x09b0 */ 33, 16, 98, 0,176, 1,194,165, 28, 0, 0, 16, 33, 16,128, 2,
|
||||
/* 0x09c0 */ 35, 88,100, 1, 66, 17, 3, 0, 35, 16, 98, 0,176, 1,194,165,
|
||||
/* 0x09d0 */ 43, 16,203, 0, 8, 0, 64, 20, 35,192, 4, 3, 71, 1,167, 17,
|
||||
/* 0x09e0 */ 0, 90, 11, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x09f0 */ 37,192, 98, 0, 1, 0,173, 37,200, 1,195,149,194, 18, 11, 0,
|
||||
/* 0x0a00 */ 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3, 11, 0, 64, 16,
|
||||
/* 0x0a10 */ 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,
|
||||
/* 0x0a20 */ 200, 1,194,165, 33, 16,224, 2, 33,184,128, 2, 33,160, 32, 2,
|
||||
/* 0x0a30 */ 33,136, 64, 0, 11, 0, 0, 16, 33, 88,128, 0, 35, 88,100, 1,
|
||||
/* 0x0a40 */ 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0,200, 1,194,165,
|
||||
/* 0x0a50 */ 0, 0,162,143, 0, 0,183,175, 33,184,128, 2, 33,160, 32, 2,
|
||||
/* 0x0a60 */ 33,136, 64, 0, 7, 0, 66, 42, 2, 0, 64, 20, 8, 0, 18, 36,
|
||||
/* 0x0a70 */ 11, 0, 18, 36,104, 10, 14, 38,255, 0, 2, 60,255,255, 76, 52,
|
||||
/* 0x0a80 */ 43, 16,139, 1, 8, 0, 64, 20, 0, 0, 0, 0, 27, 1,167, 17,
|
||||
/* 0x0a90 */ 0, 90, 11, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x0aa0 */ 37,192, 98, 0, 1, 0,173, 37, 0, 0,195,149,194, 18, 11, 0,
|
||||
/* 0x0ab0 */ 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3, 12, 0, 64, 16,
|
||||
/* 0x0ac0 */ 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,
|
||||
/* 0x0ad0 */ 0, 0,194,165, 0, 17, 5, 0, 33, 16,194, 1, 4, 0, 69, 36,
|
||||
/* 0x0ae0 */ 33,120,128, 0, 3, 0, 8, 36, 41, 0, 0, 16, 33, 48, 0, 0,
|
||||
/* 0x0af0 */ 35, 88,100, 1, 66, 17, 3, 0, 35, 16, 98, 0, 0, 0,194,165,
|
||||
/* 0x0b00 */ 43, 16,139, 1, 8, 0, 64, 20, 35,192, 4, 3,251, 0,167, 17,
|
||||
/* 0x0b10 */ 0, 90, 11, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x0b20 */ 37,192, 98, 0, 1, 0,173, 37, 2, 0,195,149,194, 18, 11, 0,
|
||||
/* 0x0b30 */ 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3, 12, 0, 64, 16,
|
||||
/* 0x0b40 */ 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,
|
||||
/* 0x0b50 */ 2, 0,194,165, 0, 17, 5, 0, 33, 16,194, 1, 4, 1, 69, 36,
|
||||
/* 0x0b60 */ 33,120,128, 0, 3, 0, 8, 36, 9, 0, 0, 16, 8, 0, 6, 36,
|
||||
/* 0x0b70 */ 35,120,100, 1, 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0,
|
||||
/* 0x0b80 */ 2, 0,194,165, 4, 2,197, 37, 8, 0, 8, 36, 16, 0, 6, 36,
|
||||
/* 0x0b90 */ 33,112, 0, 1, 1, 0, 25, 36,255, 0, 2, 60,255,255, 66, 52,
|
||||
/* 0x0ba0 */ 43, 16, 79, 0, 9, 0, 64, 20, 64, 96, 25, 0,211, 0,167, 17,
|
||||
/* 0x0bb0 */ 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x0bc0 */ 37,192, 98, 0, 1, 0,173, 37, 64, 96, 25, 0, 33, 88,172, 0,
|
||||
/* 0x0bd0 */ 0, 0, 99,149,194, 18, 15, 0, 24, 0, 67, 0, 18, 32, 0, 0,
|
||||
/* 0x0be0 */ 43, 16, 4, 3, 8, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0,
|
||||
/* 0x0bf0 */ 67, 17, 2, 0, 33, 16, 98, 0, 0, 0, 98,165, 33,200,128, 1,
|
||||
/* 0x0c00 */ 8, 0, 0, 16, 33,120,128, 0, 35,120,228, 1, 35,192, 4, 3,
|
||||
/* 0x0c10 */ 66, 17, 3, 0, 35, 16, 98, 0, 0, 0, 98,165, 1, 0, 34, 39,
|
||||
/* 0x0c20 */ 33,200, 34, 3,255,255,206, 37,220,255,192, 21,255, 0, 2, 60,
|
||||
/* 0x0c30 */ 1, 0, 2, 36, 4, 16, 2, 1, 35, 16, 34, 3, 33, 72, 70, 0,
|
||||
/* 0x0c40 */ 4, 0, 66, 42,134, 0, 64, 16, 4, 0, 34, 41, 2, 0, 64, 20,
|
||||
/* 0x0c50 */ 33, 24, 32, 1, 3, 0, 3, 36,192, 17, 3, 0, 33, 16, 2, 2,
|
||||
/* 0x0c60 */ 96, 3, 70, 36, 1, 0, 14, 36, 6, 0, 25, 36,255, 0, 2, 60,
|
||||
/* 0x0c70 */ 255,255, 66, 52, 43, 16, 79, 0, 9, 0, 64, 20, 64, 96, 14, 0,
|
||||
/* 0x0c80 */ 158, 0,167, 17, 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x0c90 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37, 64, 96, 14, 0,
|
||||
/* 0x0ca0 */ 33, 88,204, 0, 0, 0, 99,149,194, 18, 15, 0, 24, 0, 67, 0,
|
||||
/* 0x0cb0 */ 18, 32, 0, 0, 43, 16, 4, 3, 8, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x0cc0 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x0cd0 */ 33,112,128, 1, 8, 0, 0, 16, 33,120,128, 0, 35,120,228, 1,
|
||||
/* 0x0ce0 */ 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x0cf0 */ 1, 0,194, 37, 33,112,194, 1,255,255, 57, 39,220,255, 32, 23,
|
||||
/* 0x0d00 */ 255, 0, 2, 60,192,255,195, 37, 4, 0, 98, 40, 80, 0, 64, 20,
|
||||
/* 0x0d10 */ 33,112, 96, 0, 67, 32, 3, 0, 1, 0, 98, 48, 2, 0, 75, 52,
|
||||
/* 0x0d20 */ 14, 0, 98, 40, 8, 0, 64, 16,255,255,153, 36, 4,112, 43, 3,
|
||||
/* 0x0d30 */ 64, 16, 14, 0, 33, 32, 2, 2, 64, 16, 3, 0, 35, 16,130, 0,
|
||||
/* 0x0d40 */ 26, 0, 0, 16, 94, 5, 72, 36,251,255,132, 36,255, 0, 2, 60,
|
||||
/* 0x0d50 */ 255,255, 66, 52, 43, 16, 79, 0, 8, 0, 64, 20, 0, 0, 0, 0,
|
||||
/* 0x0d60 */ 102, 0,167, 17, 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x0d70 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37, 66,120, 15, 0,
|
||||
/* 0x0d80 */ 43, 16, 15, 3, 3, 0, 64, 20, 64, 88, 11, 0, 35,192, 15, 3,
|
||||
/* 0x0d90 */ 1, 0,107, 53,255,255,132, 36,237,255,128, 20,255, 0, 2, 60,
|
||||
/* 0x0da0 */ 68, 6, 8, 38, 0,113, 11, 0, 4, 0, 25, 36, 1, 0, 6, 36,
|
||||
/* 0x0db0 */ 1, 0, 5, 36,255, 0, 2, 60,255,255, 66, 52, 43, 16, 79, 0,
|
||||
/* 0x0dc0 */ 9, 0, 64, 20, 64, 96, 5, 0, 76, 0,167, 17, 0,122, 15, 0,
|
||||
/* 0x0dd0 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x0de0 */ 1, 0,173, 37, 64, 96, 5, 0, 33, 88, 12, 1, 0, 0, 99,149,
|
||||
/* 0x0df0 */ 194, 18, 15, 0, 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3,
|
||||
/* 0x0e00 */ 8, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x0e10 */ 33, 16, 98, 0, 0, 0, 98,165, 33, 40,128, 1, 9, 0, 0, 16,
|
||||
/* 0x0e20 */ 33,120,128, 0, 35,120,228, 1, 35,192, 4, 3, 66, 17, 3, 0,
|
||||
/* 0x0e30 */ 35, 16, 98, 0, 0, 0, 98,165, 1, 0,162, 36, 33, 40,162, 0,
|
||||
/* 0x0e40 */ 37,112,198, 1,255,255, 57, 39,218,255, 32, 23, 64, 48, 6, 0,
|
||||
/* 0x0e50 */ 1, 0,209, 37, 26, 0, 32, 18,255, 0, 2, 60, 7, 0, 82, 38,
|
||||
/* 0x0e60 */ 43, 16, 81, 1, 38, 0, 64, 20, 1, 0, 2, 36, 35, 16, 81, 1,
|
||||
/* 0x0e70 */ 33, 88, 98, 2, 33, 32,106, 2, 33, 24, 64, 1, 0, 0,110,145,
|
||||
/* 0x0e80 */ 1, 0, 99, 36, 33, 16, 73, 1, 2, 0, 66, 36, 6, 0, 98, 16,
|
||||
/* 0x0e90 */ 0, 0,142,160, 1, 0,107, 37, 16, 0,162,143, 0, 0, 0, 0,
|
||||
/* 0x0ea0 */ 246,255, 98, 20, 1, 0,132, 36, 33, 80, 96, 0, 16, 0,163,143,
|
||||
/* 0x0eb0 */ 0, 0, 0, 0, 43, 16, 67, 1,166,253, 64, 20,255, 0, 2, 60,
|
||||
/* 0x0ec0 */ 255,255, 66, 52, 43, 16, 79, 0, 4, 0, 64, 20, 35, 40,181, 1,
|
||||
/* 0x0ed0 */ 10, 0,167, 17, 1, 0,173, 37, 35, 40,181, 1, 12, 0,162,143,
|
||||
/* 0x0ee0 */ 0, 0, 0, 0, 0, 0, 69,172, 20, 0,163,143, 0, 0, 0, 0,
|
||||
/* 0x0ef0 */ 0, 0,106,172, 2, 0, 0, 16, 33, 16, 0, 0, 1, 0, 2, 36,
|
||||
/* 0x0f00 */ 52, 0,183,143, 48, 0,182,143, 44, 0,181,143, 40, 0,180,143,
|
||||
/* 0x0f10 */ 36, 0,179,143, 32, 0,178,143, 28, 0,177,143, 24, 0,176,143,
|
||||
/* 0x0f20 */ 8, 0,224, 3, 56, 0,189, 39,200,255,189, 39, 52, 0,183,175,
|
||||
/* 0x0f30 */ 48, 0,182,175, 44, 0,181,175, 40, 0,180,175, 36, 0,179,175,
|
||||
/* 0x0f40 */ 32, 0,178,175, 28, 0,177,175, 24, 0,176,175, 33,168,160, 0,
|
||||
/* 0x0f50 */ 12, 0,167,175, 33,152, 0, 1, 16, 0,169,175, 20, 0,170,175,
|
||||
/* 0x0f60 */ 4, 0,144, 36, 2, 0,130,144, 1, 0, 3, 36, 4, 16, 67, 0,
|
||||
/* 0x0f70 */ 255,255, 66, 36, 8, 0,162,175, 1, 0,130,144, 0, 0, 0, 0,
|
||||
/* 0x0f80 */ 4, 16, 67, 0,255,255, 66, 36, 4, 0,162,175, 0, 0,150,144,
|
||||
/* 0x0f90 */ 0, 0,224,172, 0, 0, 64,173, 1, 0,132,144, 0, 0, 0, 0,
|
||||
/* 0x0fa0 */ 33, 32,196, 2, 0, 3, 2, 36, 4, 32,130, 0, 54, 7,132, 36,
|
||||
/* 0x0fb0 */ 33, 16, 0, 2, 4, 0, 0, 16, 33, 88, 0, 0, 0, 4, 3, 36,
|
||||
/* 0x0fc0 */ 254,255, 67,164, 1, 0,107, 37,252,255,100, 21, 2, 0, 66, 36,
|
||||
/* 0x0fd0 */ 33, 56,166, 2, 33,104,160, 2, 33,192, 0, 0, 33, 32, 0, 0,
|
||||
/* 0x0fe0 */ 35, 16,245, 0,123, 2,130, 16, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x0ff0 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,132, 36, 5, 0, 2, 36,
|
||||
/* 0x1000 */ 247,255,130, 20, 1, 0,173, 37, 33, 80, 0, 0, 33,112, 0, 0,
|
||||
/* 0x1010 */ 33,144, 0, 0, 1, 0, 17, 36, 1, 0, 20, 36, 1, 0, 23, 36,
|
||||
/* 0x1020 */ 0, 0,183,175, 87, 2, 0, 16,255,255, 15, 36,255,255, 70, 52,
|
||||
/* 0x1030 */ 43, 16,207, 0, 8, 0, 64, 20, 0, 0, 0, 0,101, 2,167, 17,
|
||||
/* 0x1040 */ 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x1050 */ 37,192, 98, 0, 1, 0,173, 37, 8, 0,163,143, 0, 0, 0, 0,
|
||||
/* 0x1060 */ 36, 40, 67, 1, 0,201, 18, 0, 33, 16,185, 0, 64, 16, 2, 0,
|
||||
/* 0x1070 */ 33, 88, 2, 2, 0, 0, 99,149,194, 18, 15, 0, 24, 0, 67, 0,
|
||||
/* 0x1080 */ 18, 96, 0, 0, 43, 16, 12, 3,125, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x1090 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x10a0 */ 4, 0,163,143, 0, 0, 0, 0, 36, 16, 67, 1, 4, 24,194, 2,
|
||||
/* 0x10b0 */ 8, 0, 2, 36, 35, 16, 86, 0, 7, 16, 78, 0, 33, 16, 98, 0,
|
||||
/* 0x10c0 */ 64, 26, 2, 0,192, 18, 2, 0, 35, 16, 67, 0, 33, 16, 2, 2,
|
||||
/* 0x10d0 */ 108, 14, 70, 36, 7, 0, 66, 42, 3, 0, 64, 16, 33,120,128, 1,
|
||||
/* 0x10e0 */ 85, 0, 0, 16, 1, 0, 5, 36, 35, 16, 81, 1, 33, 16, 98, 2,
|
||||
/* 0x10f0 */ 0, 0, 89,144, 1, 0, 5, 36,255, 0, 2, 60,255,255, 66, 52,
|
||||
/* 0x1100 */ 43, 16, 79, 0, 8, 0, 64, 20, 0, 0, 0, 0, 49, 2,167, 17,
|
||||
/* 0x1110 */ 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x1120 */ 37,192, 98, 0, 1, 0,173, 37, 64,200, 25, 0, 0, 1, 44, 51,
|
||||
/* 0x1130 */ 64, 16, 12, 0, 33, 16,194, 0, 64,112, 5, 0, 33, 88, 78, 0,
|
||||
/* 0x1140 */ 0, 2, 99,149,194, 18, 15, 0, 24, 0, 67, 0, 18, 32, 0, 0,
|
||||
/* 0x1150 */ 43, 16, 4, 3, 9, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0,
|
||||
/* 0x1160 */ 67, 17, 2, 0, 33, 16, 98, 0, 0, 2, 98,165, 41, 0,128, 21,
|
||||
/* 0x1170 */ 33, 40,192, 1, 9, 0, 0, 16, 33,120,128, 0, 35,120,228, 1,
|
||||
/* 0x1180 */ 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0, 0, 2, 98,165,
|
||||
/* 0x1190 */ 1, 0,162, 36, 40, 0,128, 17, 33, 40,162, 0, 0, 1,162, 40,
|
||||
/* 0x11a0 */ 37, 0, 64, 16,255, 0, 2, 60,213,255, 0, 16,255,255, 66, 52,
|
||||
/* 0x11b0 */ 255,255, 66, 52, 43, 16, 79, 0, 9, 0, 64, 20, 64, 96, 5, 0,
|
||||
/* 0x11c0 */ 4, 2,167, 17, 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x11d0 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37, 64, 96, 5, 0,
|
||||
/* 0x11e0 */ 33, 88,204, 0, 0, 0, 99,149,194, 18, 15, 0, 24, 0, 67, 0,
|
||||
/* 0x11f0 */ 18, 32, 0, 0, 43, 16, 4, 3, 8, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x1200 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x1210 */ 33, 40,128, 1, 8, 0, 0, 16, 33,120,128, 0, 35,120,228, 1,
|
||||
/* 0x1220 */ 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x1230 */ 1, 0,162, 36, 33, 40,162, 0, 0, 1,162, 40,220,255, 64, 20,
|
||||
/* 0x1240 */ 255, 0, 2, 60,255, 0,174, 48, 33, 16,106, 2, 0, 0, 78,160,
|
||||
/* 0x1250 */ 4, 0, 66, 42, 3, 0, 64, 16, 1, 0, 67, 37,200, 1, 0, 16,
|
||||
/* 0x1260 */ 33,144, 0, 0, 10, 0, 66, 42, 3, 0, 64, 16, 0, 0, 0, 0,
|
||||
/* 0x1270 */ 195, 1, 0, 16,253,255, 82, 38,193, 1, 0, 16,250,255, 82, 38,
|
||||
/* 0x1280 */ 35, 32,236, 1, 66, 17, 3, 0, 35, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x1290 */ 43, 16,196, 0, 8, 0, 64, 20, 35,192, 12, 3,205, 1,167, 17,
|
||||
/* 0x12a0 */ 0, 34, 4, 0, 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0,
|
||||
/* 0x12b0 */ 37,192, 98, 0, 1, 0,173, 37, 64, 16, 18, 0, 33,112, 2, 2,
|
||||
/* 0x12c0 */ 128, 1,195,149,194, 18, 4, 0, 24, 0, 67, 0, 18, 96, 0, 0,
|
||||
/* 0x12d0 */ 43, 16, 12, 3, 15, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0,
|
||||
/* 0x12e0 */ 67, 17, 2, 0, 33, 16, 98, 0,128, 1,194,165, 7, 0, 66, 42,
|
||||
/* 0x12f0 */ 2, 0, 64, 20, 33,144, 0, 0, 3, 0, 18, 36,100, 6, 14, 38,
|
||||
/* 0x1300 */ 0, 0,183,175, 33,184,128, 2, 33,160, 32, 2,144, 0, 0, 16,
|
||||
/* 0x1310 */ 33, 88,128, 1, 35, 88,140, 0, 66, 17, 3, 0, 35, 16, 98, 0,
|
||||
/* 0x1320 */ 128, 1,194,165, 43, 16,203, 0, 8, 0, 64, 20, 35,192, 12, 3,
|
||||
/* 0x1330 */ 168, 1,167, 17, 0, 90, 11, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x1340 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,152, 1,195,149,
|
||||
/* 0x1350 */ 194, 18, 11, 0, 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3,
|
||||
/* 0x1360 */ 50, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x1370 */ 33, 16, 98, 0,152, 1,194,165, 0, 1, 2, 60, 43, 16,130, 0,
|
||||
/* 0x1380 */ 8, 0, 64, 16, 33, 88,128, 0,146, 1,167, 17, 0, 90, 4, 0,
|
||||
/* 0x1390 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x13a0 */ 1, 0,173, 37, 64, 16, 25, 0, 33, 24, 2, 2, 64, 16, 5, 0,
|
||||
/* 0x13b0 */ 33, 32, 98, 0,224, 1,131,148,194, 18, 11, 0, 24, 0, 67, 0,
|
||||
/* 0x13c0 */ 18, 96, 0, 0, 43, 16, 12, 3, 18, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x13d0 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,125, 1, 64, 17,
|
||||
/* 0x13e0 */ 224, 1,130,164, 7, 0, 66, 42, 2, 0, 64, 20, 9, 0, 18, 36,
|
||||
/* 0x13f0 */ 11, 0, 18, 36, 35, 16, 81, 1, 33, 16, 98, 2, 0, 0, 78,144,
|
||||
/* 0x1400 */ 33, 16,106, 2, 0, 0, 78,160, 1, 0, 67, 37, 92, 1, 0, 16,
|
||||
/* 0x1410 */ 33,120,128, 1, 35, 88,108, 1, 35,192, 12, 3, 66, 17, 3, 0,
|
||||
/* 0x1420 */ 35, 16, 98, 0, 69, 0, 0, 16,224, 1,130,164, 35, 88,100, 1,
|
||||
/* 0x1430 */ 66, 17, 3, 0, 35, 16, 98, 0,152, 1,194,165, 43, 16,203, 0,
|
||||
/* 0x1440 */ 8, 0, 64, 20, 35,192, 4, 3, 98, 1,167, 17, 0, 90, 11, 0,
|
||||
/* 0x1450 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x1460 */ 1, 0,173, 37,176, 1,195,149,194, 18, 11, 0, 24, 0, 67, 0,
|
||||
/* 0x1470 */ 18, 32, 0, 0, 43, 16, 4, 3, 7, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x1480 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,176, 1,194,165,
|
||||
/* 0x1490 */ 28, 0, 0, 16, 33, 16,128, 2, 35, 88,100, 1, 66, 17, 3, 0,
|
||||
/* 0x14a0 */ 35, 16, 98, 0,176, 1,194,165, 43, 16,203, 0, 8, 0, 64, 20,
|
||||
/* 0x14b0 */ 35,192, 4, 3, 71, 1,167, 17, 0, 90, 11, 0, 0, 26, 24, 0,
|
||||
/* 0x14c0 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x14d0 */ 200, 1,195,149,194, 18, 11, 0, 24, 0, 67, 0, 18, 32, 0, 0,
|
||||
/* 0x14e0 */ 43, 16, 4, 3, 11, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0,
|
||||
/* 0x14f0 */ 67, 17, 2, 0, 33, 16, 98, 0,200, 1,194,165, 33, 16,224, 2,
|
||||
/* 0x1500 */ 33,184,128, 2, 33,160, 32, 2, 33,136, 64, 0, 11, 0, 0, 16,
|
||||
/* 0x1510 */ 33, 88,128, 0, 35, 88,100, 1, 35,192, 4, 3, 66, 17, 3, 0,
|
||||
/* 0x1520 */ 35, 16, 98, 0,200, 1,194,165, 0, 0,162,143, 0, 0,183,175,
|
||||
/* 0x1530 */ 33,184,128, 2, 33,160, 32, 2, 33,136, 64, 0, 7, 0, 66, 42,
|
||||
/* 0x1540 */ 2, 0, 64, 20, 8, 0, 18, 36, 11, 0, 18, 36,104, 10, 14, 38,
|
||||
/* 0x1550 */ 255, 0, 2, 60,255,255, 76, 52, 43, 16,139, 1, 8, 0, 64, 20,
|
||||
/* 0x1560 */ 0, 0, 0, 0, 27, 1,167, 17, 0, 90, 11, 0, 0, 26, 24, 0,
|
||||
/* 0x1570 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x1580 */ 0, 0,195,149,194, 18, 11, 0, 24, 0, 67, 0, 18, 32, 0, 0,
|
||||
/* 0x1590 */ 43, 16, 4, 3, 12, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0,
|
||||
/* 0x15a0 */ 67, 17, 2, 0, 33, 16, 98, 0, 0, 0,194,165, 0, 17, 5, 0,
|
||||
/* 0x15b0 */ 33, 16,194, 1, 4, 0, 69, 36, 33,120,128, 0, 3, 0, 8, 36,
|
||||
/* 0x15c0 */ 41, 0, 0, 16, 33, 48, 0, 0, 35, 88,100, 1, 66, 17, 3, 0,
|
||||
/* 0x15d0 */ 35, 16, 98, 0, 0, 0,194,165, 43, 16,139, 1, 8, 0, 64, 20,
|
||||
/* 0x15e0 */ 35,192, 4, 3,251, 0,167, 17, 0, 90, 11, 0, 0, 26, 24, 0,
|
||||
/* 0x15f0 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x1600 */ 2, 0,195,149,194, 18, 11, 0, 24, 0, 67, 0, 18, 32, 0, 0,
|
||||
/* 0x1610 */ 43, 16, 4, 3, 12, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0,
|
||||
/* 0x1620 */ 67, 17, 2, 0, 33, 16, 98, 0, 2, 0,194,165, 0, 17, 5, 0,
|
||||
/* 0x1630 */ 33, 16,194, 1, 4, 1, 69, 36, 33,120,128, 0, 3, 0, 8, 36,
|
||||
/* 0x1640 */ 9, 0, 0, 16, 8, 0, 6, 36, 35,120,100, 1, 35,192, 4, 3,
|
||||
/* 0x1650 */ 66, 17, 3, 0, 35, 16, 98, 0, 2, 0,194,165, 4, 2,197, 37,
|
||||
/* 0x1660 */ 8, 0, 8, 36, 16, 0, 6, 36, 33,112, 0, 1, 1, 0, 25, 36,
|
||||
/* 0x1670 */ 255, 0, 2, 60,255,255, 66, 52, 43, 16, 79, 0, 9, 0, 64, 20,
|
||||
/* 0x1680 */ 64, 96, 25, 0,211, 0,167, 17, 0,122, 15, 0, 0, 26, 24, 0,
|
||||
/* 0x1690 */ 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37,
|
||||
/* 0x16a0 */ 64, 96, 25, 0, 33, 88,172, 0, 0, 0, 99,149,194, 18, 15, 0,
|
||||
/* 0x16b0 */ 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3, 8, 0, 64, 16,
|
||||
/* 0x16c0 */ 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0,
|
||||
/* 0x16d0 */ 0, 0, 98,165, 33,200,128, 1, 8, 0, 0, 16, 33,120,128, 0,
|
||||
/* 0x16e0 */ 35,120,228, 1, 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0,
|
||||
/* 0x16f0 */ 0, 0, 98,165, 1, 0, 34, 39, 33,200, 34, 3,255,255,206, 37,
|
||||
/* 0x1700 */ 220,255,192, 21,255, 0, 2, 60, 1, 0, 2, 36, 4, 16, 2, 1,
|
||||
/* 0x1710 */ 35, 16, 34, 3, 33, 72, 70, 0, 4, 0, 66, 42,134, 0, 64, 16,
|
||||
/* 0x1720 */ 4, 0, 34, 41, 2, 0, 64, 20, 33, 24, 32, 1, 3, 0, 3, 36,
|
||||
/* 0x1730 */ 192, 17, 3, 0, 33, 16, 2, 2, 96, 3, 70, 36, 1, 0, 14, 36,
|
||||
/* 0x1740 */ 6, 0, 25, 36,255, 0, 2, 60,255,255, 66, 52, 43, 16, 79, 0,
|
||||
/* 0x1750 */ 9, 0, 64, 20, 64, 96, 14, 0,158, 0,167, 17, 0,122, 15, 0,
|
||||
/* 0x1760 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x1770 */ 1, 0,173, 37, 64, 96, 14, 0, 33, 88,204, 0, 0, 0, 99,149,
|
||||
/* 0x1780 */ 194, 18, 15, 0, 24, 0, 67, 0, 18, 32, 0, 0, 43, 16, 4, 3,
|
||||
/* 0x1790 */ 8, 0, 64, 16, 0, 8, 2, 36, 35, 16, 67, 0, 67, 17, 2, 0,
|
||||
/* 0x17a0 */ 33, 16, 98, 0, 0, 0, 98,165, 33,112,128, 1, 8, 0, 0, 16,
|
||||
/* 0x17b0 */ 33,120,128, 0, 35,120,228, 1, 35,192, 4, 3, 66, 17, 3, 0,
|
||||
/* 0x17c0 */ 35, 16, 98, 0, 0, 0, 98,165, 1, 0,194, 37, 33,112,194, 1,
|
||||
/* 0x17d0 */ 255,255, 57, 39,220,255, 32, 23,255, 0, 2, 60,192,255,195, 37,
|
||||
/* 0x17e0 */ 4, 0, 98, 40, 80, 0, 64, 20, 33,112, 96, 0, 67, 32, 3, 0,
|
||||
/* 0x17f0 */ 1, 0, 98, 48, 2, 0, 75, 52, 14, 0, 98, 40, 8, 0, 64, 16,
|
||||
/* 0x1800 */ 255,255,153, 36, 4,112, 43, 3, 64, 16, 14, 0, 33, 32, 2, 2,
|
||||
/* 0x1810 */ 64, 16, 3, 0, 35, 16,130, 0, 26, 0, 0, 16, 94, 5, 72, 36,
|
||||
/* 0x1820 */ 251,255,132, 36,255, 0, 2, 60,255,255, 66, 52, 43, 16, 79, 0,
|
||||
/* 0x1830 */ 8, 0, 64, 20, 0, 0, 0, 0,102, 0,167, 17, 0,122, 15, 0,
|
||||
/* 0x1840 */ 0, 26, 24, 0, 0, 0,162,145, 0, 0, 0, 0, 37,192, 98, 0,
|
||||
/* 0x1850 */ 1, 0,173, 37, 66,120, 15, 0, 43, 16, 15, 3, 3, 0, 64, 20,
|
||||
/* 0x1860 */ 64, 88, 11, 0, 35,192, 15, 3, 1, 0,107, 53,255,255,132, 36,
|
||||
/* 0x1870 */ 237,255,128, 20,255, 0, 2, 60, 68, 6, 8, 38, 0,113, 11, 0,
|
||||
/* 0x1880 */ 4, 0, 25, 36, 1, 0, 6, 36, 1, 0, 5, 36,255, 0, 2, 60,
|
||||
/* 0x1890 */ 255,255, 66, 52, 43, 16, 79, 0, 9, 0, 64, 20, 64, 96, 5, 0,
|
||||
/* 0x18a0 */ 76, 0,167, 17, 0,122, 15, 0, 0, 26, 24, 0, 0, 0,162,145,
|
||||
/* 0x18b0 */ 0, 0, 0, 0, 37,192, 98, 0, 1, 0,173, 37, 64, 96, 5, 0,
|
||||
/* 0x18c0 */ 33, 88, 12, 1, 0, 0, 99,149,194, 18, 15, 0, 24, 0, 67, 0,
|
||||
/* 0x18d0 */ 18, 32, 0, 0, 43, 16, 4, 3, 8, 0, 64, 16, 0, 8, 2, 36,
|
||||
/* 0x18e0 */ 35, 16, 67, 0, 67, 17, 2, 0, 33, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x18f0 */ 33, 40,128, 1, 9, 0, 0, 16, 33,120,128, 0, 35,120,228, 1,
|
||||
/* 0x1900 */ 35,192, 4, 3, 66, 17, 3, 0, 35, 16, 98, 0, 0, 0, 98,165,
|
||||
/* 0x1910 */ 1, 0,162, 36, 33, 40,162, 0, 37,112,198, 1,255,255, 57, 39,
|
||||
/* 0x1920 */ 218,255, 32, 23, 64, 48, 6, 0, 1, 0,209, 37, 26, 0, 32, 18,
|
||||
/* 0x1930 */ 255, 0, 2, 60, 7, 0, 82, 38, 43, 16, 81, 1, 38, 0, 64, 20,
|
||||
/* 0x1940 */ 1, 0, 2, 36, 35, 16, 81, 1, 33, 88, 98, 2, 33, 32,106, 2,
|
||||
/* 0x1950 */ 33, 24, 64, 1, 0, 0,110,145, 1, 0, 99, 36, 33, 16, 73, 1,
|
||||
/* 0x1960 */ 2, 0, 66, 36, 6, 0, 98, 16, 0, 0,142,160, 1, 0,107, 37,
|
||||
/* 0x1970 */ 16, 0,162,143, 0, 0, 0, 0,246,255, 98, 20, 1, 0,132, 36,
|
||||
/* 0x1980 */ 33, 80, 96, 0, 16, 0,163,143, 0, 0, 0, 0, 43, 16, 67, 1,
|
||||
/* 0x1990 */ 166,253, 64, 20,255, 0, 2, 60,255,255, 66, 52, 43, 16, 79, 0,
|
||||
/* 0x19a0 */ 4, 0, 64, 20, 35, 40,181, 1, 10, 0,167, 17, 1, 0,173, 37,
|
||||
/* 0x19b0 */ 35, 40,181, 1, 12, 0,162,143, 0, 0, 0, 0, 0, 0, 69,172,
|
||||
/* 0x19c0 */ 20, 0,163,143, 0, 0, 0, 0, 0, 0,106,172, 2, 0, 0, 16,
|
||||
/* 0x19d0 */ 33, 16, 0, 0, 1, 0, 2, 36, 52, 0,183,143, 48, 0,182,143,
|
||||
/* 0x19e0 */ 44, 0,181,143, 40, 0,180,143, 36, 0,179,143, 32, 0,178,143,
|
||||
/* 0x19f0 */ 28, 0,177,143, 24, 0,176,143, 8, 0,224, 3, 56, 0,189, 39,
|
||||
/* 0x1a00 */ 13, 0, 0, 0,252,255,189, 39, 0, 0,191,175, 32, 40,164, 0,
|
||||
/* 0x1a10 */ 0, 0,230,172, 0, 0,227,140, 35,192,133, 0, 0, 0,191,143,
|
||||
/* 0x1a20 */ 0, 0,184,175, 33, 32, 96, 0, 35, 40,195, 0, 0, 0,229,172,
|
||||
/* 0x1a30 */ 3, 0, 6, 36, 51, 16, 2, 36, 12, 0, 0, 0, 0, 0,162,143,
|
||||
/* 0x1a40 */ 8, 0,224, 3, 4, 0,189, 39,184,255,233, 39,184,255,232,143,
|
||||
/* 0x1a50 */ 35, 72, 40, 1,188,255,232,143, 33, 64, 40, 1, 20, 0,200,175,
|
||||
/* 0x1a60 */ 192,255,232,143, 33, 64, 40, 1,252,255,189, 39, 0, 0,168,175,
|
||||
/* 0x1a70 */ 196,255,232,143, 33, 32, 40, 1, 24, 0,133, 36,248,255,189, 39,
|
||||
/* 0x1a80 */ 4, 0,168,140, 12, 0,165, 36, 33, 40,168, 0,194, 0, 17, 4,
|
||||
/* 0x1a90 */ 0, 0, 0, 0, 0, 77, 4, 0, 2, 77, 9, 0, 33, 64, 9, 1,
|
||||
/* 0x1aa0 */ 252,255,189, 39, 0, 0,168,175, 35, 32,137, 0,252,255,189, 39,
|
||||
/* 0x1ab0 */ 0, 0,164,175, 35, 64, 9, 1, 33, 32,137, 0,252,255,189, 39,
|
||||
/* 0x1ac0 */ 0, 0,169,175,252,255,189, 39, 5, 0,167,128,252,255,189, 39,
|
||||
/* 0x1ad0 */ 0, 0,167,175, 6, 0,167,128,252,255,189, 39, 0, 0,167,175,
|
||||
/* 0x1ae0 */ 252,255,189, 39, 0, 0,168,175,252,255,189, 39, 0, 0,164,175,
|
||||
/* 0x1af0 */ 169, 0, 17, 4, 0, 0, 0, 0, 33, 72, 0, 1,166, 0, 17, 4,
|
||||
/* 0x1b00 */ 0, 0, 0, 0,252,255,189, 39, 0, 0,168,175,252,255,189, 39,
|
||||
/* 0x1b10 */ 0, 0,191,175,216,255,199, 39,240,255,189, 39, 0, 0,165,175,
|
||||
/* 0x1b20 */ 4, 0,169,175, 8, 0,164,175, 12, 0,167,175, 3, 0,167, 48,
|
||||
/* 0x1b30 */ 3, 0, 41, 33, 32, 72, 39, 1,130, 72, 9, 0,232,255,199,143,
|
||||
/* 0x1b40 */ 32, 48,233, 0,160, 0, 17, 4,204,255,199,143,158, 0, 17, 4,
|
||||
/* 0x1b50 */ 228,255,199,143, 94, 0, 17, 4,255,255, 8, 36, 50, 0, 7, 36,
|
||||
/* 0x1b60 */ 3, 0, 6, 36,240,255,197,143,236,255,196,143, 33, 72,128, 0,
|
||||
/* 0x1b70 */ 250, 15, 2, 36, 12, 0, 0, 0, 35, 56, 73, 0, 1, 0,224, 16,
|
||||
/* 0x1b80 */ 13, 0, 0, 0,232,255,201,143, 65, 0, 17, 4,244,255,197,143,
|
||||
/* 0x1b90 */ 0, 0,164,143, 4, 0,165,143, 8, 0,166,143, 12, 0,167,143,
|
||||
/* 0x1ba0 */ 16, 0,168,143, 20, 0,189, 39, 9,248, 0, 1, 0, 0, 0, 0,
|
||||
/* 0x1bb0 */ 4, 0,189, 39, 10, 0, 17, 4,251, 15, 2, 36, 12, 0, 0, 0,
|
||||
/* 0x1bc0 */ 0, 0,164,143, 4, 0,166,143, 8, 0,166,143, 12, 0,190,143,
|
||||
/* 0x1bd0 */ 16, 0,191,143, 20, 0,189, 39, 9,248,224, 3, 0, 0, 0, 0,
|
||||
/* 0x1be0 */ 252,255,200,143, 0, 0,164,143, 4, 0,165,143, 8, 0,189, 39,
|
||||
/* 0x1bf0 */ 0, 0, 4,173, 4, 0, 5,173, 0, 0,164,143, 4, 0,165,143,
|
||||
/* 0x1c00 */ 8, 0,166,143, 12, 0,167,143, 16, 0,168,143, 20, 0,169,143,
|
||||
/* 0x1c10 */ 24, 0,189, 39, 3, 0,224, 16, 0, 0, 0, 0, 9,248, 0, 1,
|
||||
/* 0x1c20 */ 0, 0, 0, 0, 0, 0,164,143, 4, 0,165,143, 0, 0, 6, 36,
|
||||
/* 0x1c30 */ 33, 40,164, 0, 8, 0,165, 36, 51, 16, 2, 36, 12, 0, 0, 0,
|
||||
/* 0x1c40 */ 0, 0,164,143, 4, 0,165,143, 8, 0,189, 39, 5, 0, 6, 36,
|
||||
/* 0x1c50 */ 29, 16, 2, 36, 12, 0, 0, 0, 0, 0,164,143, 4, 0,165,143,
|
||||
/* 0x1c60 */ 8, 0,166,143, 12, 0,189, 39, 8, 0,192, 0,252,255,169,140,
|
||||
/* 0x1c70 */ 0, 76, 9, 0, 2, 76, 9, 0,255,255, 41, 37, 0, 0,162,140,
|
||||
/* 0x1c80 */ 4, 0,165, 36, 0, 0,130,172, 4, 0,132, 36,255,255, 41, 37,
|
||||
/* 0x1c90 */ 3, 0, 39, 49,250,255,224, 20, 0, 0,162,140, 4, 0,163,140,
|
||||
/* 0x1ca0 */ 8, 0,168,140, 12, 0,169,140, 0, 0,130,172, 4, 0,131,172,
|
||||
/* 0x1cb0 */ 8, 0,136,172, 12, 0,137,172,252,255, 41, 37, 16, 0,165, 36,
|
||||
/* 0x1cc0 */ 245,255, 32, 21, 16, 0,132, 36, 8, 0,224, 3, 0, 0, 0, 0,
|
||||
/* 0x1cd0 */ 252,255,189, 39, 0, 0,191,175, 33, 56,224, 3, 58, 0, 17, 4,
|
||||
/* 0x1ce0 */ 0, 0, 0, 0,128, 40, 6, 0,255,255, 8, 36, 34, 0, 7, 36,
|
||||
/* 0x1cf0 */ 7, 0, 6, 36,248,255,197,175, 0, 0, 4, 36,250, 15, 2, 36,
|
||||
/* 0x1d00 */ 12, 0, 0, 0, 1, 0,224, 16, 13, 0, 0, 0,244,255,194,175,
|
||||
/* 0x1d10 */ 236,255,197,143,222,255, 17, 4,232,255,201,143,188,255,197,143,
|
||||
/* 0x1d20 */ 192,255,201,143, 3, 0,167, 48, 35, 40,167, 0, 33, 72, 39, 1,
|
||||
/* 0x1d30 */ 33, 56,228, 0,188,255,199,175, 3, 0, 41, 33,212,255, 17, 4,
|
||||
/* 0x1d40 */ 130, 72, 9, 0, 33, 48,128, 0,204,255,197,143,199,255, 17, 4,
|
||||
/* 0x1d50 */ 204,255,196,175,228,255,197,143,196,255, 17, 4,228,255,196,175,
|
||||
/* 0x1d60 */ 0, 0,165,143, 4, 0,164,143, 8, 0,189, 39,191,255, 17, 4,
|
||||
/* 0x1d70 */ 0, 0, 0, 0, 33, 40,128, 0, 33, 32,192, 0, 0, 0, 6, 36,
|
||||
/* 0x1d80 */ 51, 16, 2, 36, 12, 0, 0, 0, 0, 0,191,143, 4, 0,189, 39,
|
||||
/* 0x1d90 */ 8, 0,224, 3, 0, 0, 0, 0, 0, 0,168,128, 1, 0,167,128,
|
||||
/* 0x1da0 */ 0, 58, 7, 0, 37, 64, 7, 1, 2, 0,167,128, 0, 60, 7, 0,
|
||||
/* 0x1db0 */ 37, 64, 7, 1, 3, 0,167,128, 0, 62, 7, 0, 37, 64, 7, 1,
|
||||
/* 0x1dc0 */ 8, 0,224, 3, 4, 0,165, 36,252,255,231,140, 0, 60, 7, 0,
|
||||
/* 0x1dd0 */ 2, 60, 7, 0,255,255,231, 36, 8, 0,224, 3, 33, 48,199, 0,
|
||||
/* 0x1de0 */ 102,105,108,101, 32,102,111,114,109, 97,116, 32,101,108,102, 51,
|
||||
/* 0x1df0 */ 50, 45,108,105,116,116,108,101,109,105,112,115, 10, 10, 83,101,
|
||||
/* 0x1e00 */ 99,116,105,111,110,115, 58, 10, 73,100,120, 32, 78, 97,109,101,
|
||||
/* 0x1e10 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 83,105,122,101, 32, 32,
|
||||
/* 0x1e20 */ 32, 32, 32, 32, 86, 77, 65, 32, 32, 32, 32, 32, 32, 32, 76, 77,
|
||||
/* 0x1e30 */ 65, 32, 32, 32, 32, 32, 32, 32, 70,105,108,101, 32,111,102,102,
|
||||
/* 0x1e40 */ 32, 32, 65,108,103,110, 32, 32, 70,108, 97,103,115, 10, 32, 32,
|
||||
/* 0x1e50 */ 48, 32, 69, 76, 70, 77, 65, 73, 78, 88, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x1e60 */ 48, 48, 48, 48, 48, 48, 51, 56, 32, 32, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x1e70 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48,
|
||||
/* 0x1e80 */ 48, 48, 48, 48, 51, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79,
|
||||
/* 0x1e90 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82,
|
||||
/* 0x1ea0 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 49, 32, 78, 82, 86, 50,
|
||||
/* 0x1eb0 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 49,
|
||||
/* 0x1ec0 */ 50, 99, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48,
|
||||
/* 0x1ed0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 54, 99,
|
||||
/* 0x1ee0 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83,
|
||||
/* 0x1ef0 */ 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76,
|
||||
/* 0x1f00 */ 89, 10, 32, 32, 50, 32, 78, 82, 86, 50, 68, 32, 32, 32, 32, 32,
|
||||
/* 0x1f10 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 49, 49, 99, 32, 32, 48, 48,
|
||||
/* 0x1f20 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x1f30 */ 32, 32, 48, 48, 48, 48, 48, 49, 57, 56, 32, 32, 50, 42, 42, 48,
|
||||
/* 0x1f40 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79,
|
||||
/* 0x1f50 */ 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 51, 32,
|
||||
/* 0x1f60 */ 78, 82, 86, 50, 66, 32, 32, 32, 32, 32, 32, 32, 32, 32, 48, 48,
|
||||
/* 0x1f70 */ 48, 48, 48, 49, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x1f80 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48,
|
||||
/* 0x1f90 */ 48, 50, 98, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84,
|
||||
/* 0x1fa0 */ 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65,
|
||||
/* 0x1fb0 */ 68, 79, 78, 76, 89, 10, 32, 32, 52, 32, 76, 90, 77, 65, 95, 69,
|
||||
/* 0x1fc0 */ 76, 70, 48, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 57, 99,
|
||||
/* 0x1fd0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48,
|
||||
/* 0x1fe0 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 51, 98, 52, 32, 32,
|
||||
/* 0x1ff0 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32,
|
||||
/* 0x2000 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 53, 32, 76, 90, 77,
|
||||
/* 0x2010 */ 65, 95, 68, 69, 67, 50, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48,
|
||||
/* 0x2020 */ 97,100, 56, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48,
|
||||
/* 0x2030 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 52, 53,
|
||||
/* 0x2040 */ 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84,
|
||||
/* 0x2050 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 54, 32,
|
||||
/* 0x2060 */ 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 32, 32, 32, 32, 48, 48,
|
||||
/* 0x2070 */ 48, 48, 48, 97,100, 56, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2080 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48,
|
||||
/* 0x2090 */ 48,102, 50, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84,
|
||||
/* 0x20a0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32,
|
||||
/* 0x20b0 */ 32, 55, 32, 76, 90, 77, 65, 95, 68, 69, 67, 51, 48, 32, 32, 32,
|
||||
/* 0x20c0 */ 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48,
|
||||
/* 0x20d0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48,
|
||||
/* 0x20e0 */ 48, 48, 48, 49, 97, 48, 48, 32, 32, 50, 42, 42, 48, 32, 32, 67,
|
||||
/* 0x20f0 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76,
|
||||
/* 0x2100 */ 89, 10, 32, 32, 56, 32, 78, 82, 86, 95, 72, 69, 65, 68, 32, 32,
|
||||
/* 0x2110 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 49, 48, 32, 32, 48, 48,
|
||||
/* 0x2120 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2130 */ 32, 32, 48, 48, 48, 48, 49, 97, 48, 52, 32, 32, 50, 42, 42, 48,
|
||||
/* 0x2140 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68,
|
||||
/* 0x2150 */ 79, 78, 76, 89, 10, 32, 32, 57, 32, 78, 82, 86, 95, 84, 65, 73,
|
||||
/* 0x2160 */ 76, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 49, 48, 32,
|
||||
/* 0x2170 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48,
|
||||
/* 0x2180 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 49, 52, 32, 32, 50,
|
||||
/* 0x2190 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82,
|
||||
/* 0x21a0 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 48, 32, 67, 70, 76, 85,
|
||||
/* 0x21b0 */ 83, 72, 32, 32, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x21c0 */ 50, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48,
|
||||
/* 0x21d0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 50, 52,
|
||||
/* 0x21e0 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83,
|
||||
/* 0x21f0 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 49, 32, 69,
|
||||
/* 0x2200 */ 76, 70, 77, 65, 73, 78, 89, 32, 32, 32, 32, 32, 32, 48, 48, 48,
|
||||
/* 0x2210 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32,
|
||||
/* 0x2220 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49,
|
||||
/* 0x2230 */ 97, 52, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69,
|
||||
/* 0x2240 */ 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49,
|
||||
/* 0x2250 */ 50, 32, 69, 76, 70, 77, 65, 73, 78, 90, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x2260 */ 48, 48, 48, 48, 48, 51, 57, 56, 32, 32, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2270 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48,
|
||||
/* 0x2280 */ 48, 48, 49, 97, 52, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79,
|
||||
/* 0x2290 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89,
|
||||
/* 0x22a0 */ 10, 83, 89, 77, 66, 79, 76, 32, 84, 65, 66, 76, 69, 58, 10, 48,
|
||||
/* 0x22b0 */ 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32,
|
||||
/* 0x22c0 */ 69, 76, 70, 77, 65, 73, 78, 88, 9, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x22d0 */ 48, 32, 69, 76, 70, 77, 65, 73, 78, 88, 10, 48, 48, 48, 48, 48,
|
||||
/* 0x22e0 */ 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 82, 86, 95,
|
||||
/* 0x22f0 */ 84, 65, 73, 76, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 82,
|
||||
/* 0x2300 */ 86, 95, 84, 65, 73, 76, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,
|
||||
/* 0x2310 */ 108, 32, 32, 32, 32,100, 32, 32, 69, 76, 70, 77, 65, 73, 78, 90,
|
||||
/* 0x2320 */ 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 69, 76, 70, 77, 65, 73,
|
||||
/* 0x2330 */ 78, 90, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32,
|
||||
/* 0x2340 */ 32,100, 32, 32, 78, 82, 86, 50, 69, 9, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2350 */ 48, 48, 32, 78, 82, 86, 50, 69, 10, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2360 */ 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 82, 86, 50, 68, 9,
|
||||
/* 0x2370 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 82, 86, 50, 68, 10, 48,
|
||||
/* 0x2380 */ 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32,
|
||||
/* 0x2390 */ 78, 82, 86, 50, 66, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78,
|
||||
/* 0x23a0 */ 82, 86, 50, 66, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32,
|
||||
/* 0x23b0 */ 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48,
|
||||
/* 0x23c0 */ 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 69,
|
||||
/* 0x23d0 */ 76, 70, 48, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32,
|
||||
/* 0x23e0 */ 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48,
|
||||
/* 0x23f0 */ 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 68,
|
||||
/* 0x2400 */ 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32,
|
||||
/* 0x2410 */ 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48,
|
||||
/* 0x2420 */ 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 68,
|
||||
/* 0x2430 */ 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32,
|
||||
/* 0x2440 */ 32, 32, 32,100, 32, 32, 76, 90, 77, 65, 95, 68, 69, 67, 51, 48,
|
||||
/* 0x2450 */ 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 90, 77, 65, 95, 68,
|
||||
/* 0x2460 */ 69, 67, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32,
|
||||
/* 0x2470 */ 32, 32, 32,100, 32, 32, 78, 82, 86, 95, 72, 69, 65, 68, 9, 48,
|
||||
/* 0x2480 */ 48, 48, 48, 48, 48, 48, 48, 32, 78, 82, 86, 95, 72, 69, 65, 68,
|
||||
/* 0x2490 */ 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100,
|
||||
/* 0x24a0 */ 32, 32, 67, 70, 76, 85, 83, 72, 9, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x24b0 */ 48, 32, 67, 70, 76, 85, 83, 72, 10, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x24c0 */ 48, 32,108, 32, 32, 32, 32,100, 32, 32, 69, 76, 70, 77, 65, 73,
|
||||
/* 0x24d0 */ 78, 89, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 69, 76, 70, 77,
|
||||
/* 0x24e0 */ 65, 73, 78, 89, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,103, 32,
|
||||
/* 0x24f0 */ 32, 32, 32, 32, 79, 32, 69, 76, 70, 77, 65, 73, 78, 88, 9, 48,
|
||||
/* 0x2500 */ 48, 48, 48, 48, 48, 48, 48, 32, 95,115,116, 97,114,116, 10, 48,
|
||||
/* 0x2510 */ 48, 48, 48, 48, 48, 48, 48, 32,103, 32, 32, 32, 32, 32, 79, 32,
|
||||
/* 0x2520 */ 69, 76, 70, 77, 65, 73, 78, 89, 9, 48, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x2530 */ 48, 32,101,110,100, 95,100,101, 99,111,109,112,114,101,115,115,
|
||||
/* 0x2540 */ 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67,
|
||||
/* 0x2550 */ 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 69, 76, 70, 77, 65, 73,
|
||||
/* 0x2560 */ 78, 88, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89,
|
||||
/* 0x2570 */ 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x2580 */ 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 50, 52, 32, 82,
|
||||
/* 0x2590 */ 95, 77, 73, 80, 83, 95, 76, 79, 49, 54, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x25a0 */ 32, 69, 76, 70, 77, 65, 73, 78, 88, 10, 48, 48, 48, 48, 48, 48,
|
||||
/* 0x25b0 */ 50, 99, 32, 82, 95, 77, 73, 80, 83, 95, 76, 79, 49, 54, 32, 32,
|
||||
/* 0x25c0 */ 32, 32, 32, 32, 32, 69, 76, 70, 77, 65, 73, 78, 90, 10, 10, 82,
|
||||
/* 0x25d0 */ 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68,
|
||||
/* 0x25e0 */ 83, 32, 70, 79, 82, 32, 91, 78, 82, 86, 50, 69, 93, 58, 10, 79,
|
||||
/* 0x25f0 */ 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32,
|
||||
/* 0x2600 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10,
|
||||
/* 0x2610 */ 48, 48, 48, 48, 48, 48, 55, 99, 32, 82, 95, 77, 73, 80, 83, 95,
|
||||
/* 0x2620 */ 80, 67, 49, 54, 32, 32, 32, 32, 32, 32, 32, 78, 82, 86, 95, 84,
|
||||
/* 0x2630 */ 65, 73, 76, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32,
|
||||
/* 0x2640 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 82, 86,
|
||||
/* 0x2650 */ 50, 68, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89,
|
||||
/* 0x2660 */ 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x2670 */ 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 55, 99, 32, 82,
|
||||
/* 0x2680 */ 95, 77, 73, 80, 83, 95, 80, 67, 49, 54, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x2690 */ 32, 78, 82, 86, 95, 84, 65, 73, 76, 10, 10, 82, 69, 76, 79, 67,
|
||||
/* 0x26a0 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79,
|
||||
/* 0x26b0 */ 82, 32, 91, 78, 82, 86, 50, 66, 93, 58, 10, 79, 70, 70, 83, 69,
|
||||
/* 0x26c0 */ 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32,
|
||||
/* 0x26d0 */ 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48,
|
||||
/* 0x26e0 */ 48, 48, 54, 52, 32, 82, 95, 77, 73, 80, 83, 95, 80, 67, 49, 54,
|
||||
/* 0x26f0 */ 32, 32, 32, 32, 32, 32, 32, 78, 82, 86, 95, 84, 65, 73, 76, 10
|
||||
};
|
2
src/stub/src/mips.r3000-linux.shlib-init.S
Normal file
2
src/stub/src/mips.r3000-linux.shlib-init.S
Normal file
@ -0,0 +1,2 @@
|
||||
#define BIG_ENDIAN 1
|
||||
#include "mipsel.r3000-linux.shlib-init.S"
|
521
src/stub/src/mipsel.r3000-linux.shlib-init.S
Normal file
521
src/stub/src/mipsel.r3000-linux.shlib-init.S
Normal file
@ -0,0 +1,521 @@
|
||||
/* mipsel-linux.shlib-init.S -- Linux Elf shared library init & decompressor
|
||||
*
|
||||
* This file is part of the UPX executable compressor.
|
||||
*
|
||||
* Copyright (C) 1996-2017 Markus Franz Xaver Johannes Oberhumer
|
||||
* Copyright (C) 1996-2017 Laszlo Molnar
|
||||
* Copyright (C) 2000-2017 John F. Reiser
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* UPX and the UCL library are free software; you can redistribute them
|
||||
* and/or modify them under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of
|
||||
* the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; see the file COPYING.
|
||||
* If not, write to the Free Software Foundation, Inc.,
|
||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* Markus F.X.J. Oberhumer Laszlo Molnar
|
||||
* <markus@oberhumer.com> <ezerotven+github@gmail.com>
|
||||
*
|
||||
* John F. Reiser
|
||||
* <jreiser@users.sourceforge.net>
|
||||
*/
|
||||
|
||||
#ifndef BIG_ENDIAN //{
|
||||
#define BIG_ENDIAN 0
|
||||
#endif //}
|
||||
|
||||
#include "arch/mips/r3000/macros.ash"
|
||||
#include "arch/mips/r3000/bits.ash"
|
||||
|
||||
.set mips1
|
||||
.set noreorder
|
||||
.set noat
|
||||
.altmacro
|
||||
|
||||
#deifne PUSH1(a) addiu sp,sp,-1*4; sw a,0(sp)
|
||||
#define PUSH4(a,b,c,d) addiu sp,sp,-4*4; sw a,0(sp); sw b,1*4(sp); sw c,2*4(sp); sw d,3*4(sp)
|
||||
#define PUSH6(a,b,c,d,e,f) addiu sp,sp,-6*4; sw a,0(sp); sw b,1*4(sp); sw c,2*4(sp); sw d,3*4(sp); sw e,4*4(sp); sw f,5*4(sp)
|
||||
#define POP1(a) lw a,0*4(sp); addiu sp,sp,1*4
|
||||
#define POP2(a,b) lw a,0*4(sp); lw b,1*4(sp); addiu sp,sp,2*4
|
||||
#define POP3(a,b,c) lw a,0*4(sp); lw b,1*4(sp); lw c,2*4(sp); addiu sp,sp,3*4
|
||||
#define POP5(a,b,c,d,e) lw a,0*4(sp); lw b,1*4(sp); lw c,2*4(sp); lw d,3*4(sp); lw e,4*4(sp); addiu sp,sp,5*4
|
||||
#define POP6(a,b,c,d,e,f) lw a,0*4(sp); lw b,1*4(sp); lw c,2*4(sp); lw d,3*4(sp); lw e,4*4(sp); lw f,5*4(sp); addiu sp,sp,6*4
|
||||
|
||||
sz_Elf32_Ehdr = 13*4
|
||||
sz_Elf32_Phdr = 8*4
|
||||
|
||||
sz_b_info= 12
|
||||
sz_unc= 0
|
||||
sz_cpr= 4
|
||||
b_method= 8
|
||||
sz_l_info= 12
|
||||
sz_p_info= 12
|
||||
|
||||
PROT_READ= 1
|
||||
PROT_WRITE= 2
|
||||
PROT_EXEC= 4
|
||||
|
||||
MAP_PRIVATE= 2
|
||||
MAP_FIXED= 0x10
|
||||
MAP_ANONYMOUS= 0x20
|
||||
|
||||
PAGE_SHIFT= 12
|
||||
PAGE_MASK= (~0<<PAGE_SHIFT)
|
||||
PAGE_SIZE= -PAGE_MASK
|
||||
|
||||
__NR_Linux = 4000
|
||||
__NR_exit = 1+ __NR_Linux
|
||||
__NR_write = 4+ __NR_Linux
|
||||
__NR_mmap64 = 90+ __NR_Linux
|
||||
__NR_munmap = 91+ __NR_Linux
|
||||
__NR_mprotect = 125+ __NR_Linux
|
||||
__NR_cacheflush = 147 + __NR_Linux
|
||||
|
||||
/* asm/cachectl.h */
|
||||
ICACHE= 1<<0
|
||||
DCACHE= 1<<1
|
||||
|
||||
.macro do_sys n
|
||||
li v0,\n; syscall
|
||||
.endm
|
||||
|
||||
#define r_esys a3
|
||||
|
||||
#define arg1 a0
|
||||
#define arg2 a1
|
||||
#define arg3 a2
|
||||
#define arg4 a3
|
||||
#define arg5 a4
|
||||
#define arg6 a5
|
||||
|
||||
#define edi a0
|
||||
#define esi a1
|
||||
#define edx a2
|
||||
#define ta3 a3
|
||||
#define eax $8 /* a4 */
|
||||
#define ecx $9 /* a5 */
|
||||
|
||||
#define lr ra
|
||||
|
||||
section ELFMAINX
|
||||
y_reloc= . - 4*4 // .long offset(.) // detect relocation
|
||||
u_dtini= . - 3*4 // .long offset(user DT_INIT)
|
||||
e_hatch= . - 2*4 // .long offset(escape_hatch)
|
||||
pb_info= . - 1*4 // .long offset({p_info; b_info; compressed data})
|
||||
|
||||
_start: .globl _start
|
||||
break // for debugging
|
||||
PUSH6(arg1,arg2,arg3,fp,lr,ecx)
|
||||
o_uinit= 5*4 // slot
|
||||
bltzal $0,9f # ra= &9f; no branch (condition is false!)
|
||||
li v0,%lo(9f)
|
||||
9:
|
||||
subu v0,ra,v0
|
||||
addiu v0,v0,%lo(main)
|
||||
jalr v0 // ra= &f_decompress
|
||||
nop
|
||||
e_start:
|
||||
|
||||
/* Returns 0 on success; non-zero on failure. */
|
||||
f_exp: // alternate name
|
||||
decompressor: // (uchar const *lxsrc, size_t lxsrclen, uchar *lxdst, u32 &lxdstlen, uint method)
|
||||
#define lxsrc a0
|
||||
#define lxsrclen a1
|
||||
#define lxdst a2
|
||||
#define lxdstlen a3
|
||||
|
||||
#undef src /* bits.ash */
|
||||
#define src lxsrc
|
||||
#define lsrc lxsrclen
|
||||
#undef dst /* bits.ash */
|
||||
#define dst lxdst
|
||||
#define ldst lxdstlen
|
||||
#define meth a4
|
||||
|
||||
UCL_init 32,1,0
|
||||
decomp_done = eof
|
||||
#include "arch/mips/r3000/nrv2e_d.ash"
|
||||
section NRV2E
|
||||
build nrv2e, full
|
||||
|
||||
#include "arch/mips/r3000/nrv2d_d.ash"
|
||||
section NRV2D
|
||||
build nrv2d, full
|
||||
|
||||
#include "arch/mips/r3000/nrv2b_d.ash"
|
||||
section NRV2B
|
||||
build nrv2b, full
|
||||
|
||||
section LZMA_ELF00 # (a0=lxsrc, a1=lxsrclen, a2=lxdst, a3= &lxdstlen)
|
||||
|
||||
/* LzmaDecode(a0=CLzmaDecoderState *,
|
||||
a1=src, a2=srclen, a3=*psrcdone,
|
||||
dst, dstlen, *pdstdone);
|
||||
struct CLzmaDecoderState {
|
||||
uchar lit_context_bits;
|
||||
uchar lit_pos_bits;
|
||||
uchar pos_bits;
|
||||
uchar unused;
|
||||
struct CProb[LZMA_BASE_SIZE + (LZMA_LIT_SIZE<<n)];
|
||||
};
|
||||
*/
|
||||
|
||||
LZMA_BASE_NUM = 1846
|
||||
LZMA_LIT_NUM = 768
|
||||
|
||||
lxlzma_szframe = 12*4
|
||||
lxlzma_sv_pc = 11*4
|
||||
lxlzma_sv_sp = 10*4
|
||||
lxlzma_dst = 9*4
|
||||
lxlzma_dstdone = 8*4
|
||||
lxlzma_srcdone = 7*4
|
||||
lxlzma_retval = lxlzma_srcdone
|
||||
|
||||
#define a4 t0
|
||||
#define a5 t1
|
||||
#define a6 t2
|
||||
|
||||
lbu t9,0(lxsrc) # ((lit_context_bits + lit_pos_bits)<<3) | pos_bits
|
||||
li ta3,-2*LZMA_LIT_NUM
|
||||
lbu t8,1(lxsrc) # (lit_pos_bits<<4) | lit_context_bits
|
||||
andi v0,t9,7 # pos_bits
|
||||
srl t9,t9,3 # (lit_context_bits + lit_pos_bits)
|
||||
sllv ta3,ta3,t9
|
||||
addiu ta3,ta3,-4 - 2*LZMA_BASE_NUM - lxlzma_szframe
|
||||
addu sp,sp,ta3 # alloca
|
||||
sw ta3,lxlzma_sv_sp(sp) # dynamic frame size
|
||||
addiu a6,sp,lxlzma_dstdone
|
||||
sw ra, lxlzma_sv_pc(sp)
|
||||
lw a5,0(lxdstlen)
|
||||
sw lxdst,lxlzma_dst(sp)
|
||||
move a4,lxdst
|
||||
addiu a3,sp,lxlzma_srcdone
|
||||
addiu a2,lxsrclen,-2 # 2 header bytes
|
||||
addiu a1,lxsrc,2 # 2 header bytes
|
||||
addiu a0,sp,lxlzma_szframe # &CLzamDecoderState
|
||||
sb v0,2(a0) # pos_bits
|
||||
andi ta3,t8,0xf
|
||||
sb ta3, 0(a0) # lit_context_bits
|
||||
srl t8,t8,4
|
||||
bal lzma_decode
|
||||
sb t8,1(a0) # lit_pos_bits
|
||||
|
||||
/* It seems that for our uses the icache does not need to be invalidated,
|
||||
because no lines from the destination have ever been fetched. However,
|
||||
if the dcache is write-back, then some of the results might not be in
|
||||
memory yet, and the icache could fetch stale data; so memory must be
|
||||
updated from dcache.
|
||||
The *next* call of the decompressor will tend to sweep much of the dcache
|
||||
anyway, because the probability history array (typically ushort[7990] or
|
||||
ushort[14134]) gets initialized.
|
||||
*/
|
||||
sw v0,lxlzma_retval(sp) # return value from decompression
|
||||
|
||||
lw a0,lxlzma_dst(sp)
|
||||
lw a1,lxlzma_dstdone(sp)
|
||||
li a2,ICACHE|DCACHE
|
||||
li v0,__NR_cacheflush; syscall
|
||||
|
||||
lw v0,lxlzma_retval(sp) # return value from decompression
|
||||
|
||||
lw ta3,lxlzma_sv_sp(sp)
|
||||
lw ra,lxlzma_sv_pc(sp)
|
||||
/* Workaround suspected glibc bug: elf/rtld.c assumes uninit local is zero.
|
||||
2007-11-24 openembedded.org mipsel-linux 2.6.12.6/glibc 2.3.2
|
||||
*/
|
||||
subu ta3,sp,ta3 # previous sp (un_alloca)
|
||||
0:
|
||||
addiu sp,4
|
||||
bne sp,ta3,0b
|
||||
sw $0,-4(sp)
|
||||
|
||||
jr ra
|
||||
nop
|
||||
|
||||
|
||||
lzma_decode:
|
||||
section LZMA_DEC20
|
||||
#if 1 /*{*/
|
||||
#include "arch/mips/r3000/lzma_d.S"
|
||||
#else /*}{*/
|
||||
#include "arch/mips/r3000/lzma_d-mips3k.S" /* gpp_inc:ignore=1: */
|
||||
#endif /*}*/
|
||||
|
||||
|
||||
section LZMA_DEC30
|
||||
break // FIXME
|
||||
|
||||
section NRV_HEAD
|
||||
addiu sp,-4
|
||||
sw ra,0(sp)
|
||||
add lxsrclen,lxsrclen,lxsrc // src_EOF
|
||||
sw lxdst,(lxdstlen) // original lxdst in &lxdstlen
|
||||
|
||||
section NRV_TAIL
|
||||
eof:
|
||||
lw v1,(lxdstlen) // original lxdst
|
||||
subu t8,lxsrc,lxsrclen // new_src - src_EOF; // return 0: good; else: bad
|
||||
lw ra,0(sp)
|
||||
sw t8,0(sp)
|
||||
|
||||
section CFLUSH
|
||||
move a0,v1 // original lxdst
|
||||
subu a1,lxdst,v1 // actual length generated
|
||||
sw a1,(lxdstlen)
|
||||
li a2,ICACHE|DCACHE
|
||||
li v0,__NR_cacheflush; syscall
|
||||
|
||||
lw v0,0(sp)
|
||||
jr ra
|
||||
addiu sp,4
|
||||
|
||||
section ELFMAINY
|
||||
end_decompress: .globl end_decompress
|
||||
|
||||
/* IDENTSTR goes here */
|
||||
|
||||
section ELFMAINZ
|
||||
.macro push reg
|
||||
addiu sp,sp,-4
|
||||
sw \reg,0(sp)
|
||||
.endm
|
||||
.macro pop reg
|
||||
lw \reg,0(sp)
|
||||
addiu sp,sp,4
|
||||
.endm
|
||||
|
||||
#define lodslu bal get4u; nop
|
||||
|
||||
main:
|
||||
// 1. allocate temporary pages
|
||||
// 2. copy to temporary pages:
|
||||
// fragment of page below dst; compressed src;
|
||||
// decompress+unfilter; supervise
|
||||
// 3. mmap destination pages for decompressed data
|
||||
// 4. create escape hatch
|
||||
// 5. jump to temporary pages
|
||||
// 6. uncompress
|
||||
// 7. unfilter
|
||||
// 8. mprotect decompressed pages
|
||||
// 9 setup args for unmap of temp pages
|
||||
// 10. jump to escape hatch
|
||||
// 11. unmap temporary pages
|
||||
// 12. goto user DT_INIT
|
||||
|
||||
addiu ecx,lr,y_reloc - e_start
|
||||
lw eax,y_reloc - e_start(lr); subu ecx,ecx,eax; //sw ecx,o_reloc(fp)
|
||||
lw eax,u_dtini - e_start(lr); addu eax,ecx,eax; sw eax,o_uinit(fp) // reloc DT_INIT for step 12
|
||||
lw eax,e_hatch - e_start(lr); addu eax,ecx,eax; push eax // reloc &hatch for step 10
|
||||
o_hatch= -1*4
|
||||
lw eax,pb_info - e_start(lr); addu edi,ecx,eax // &l_info; also destination for decompress
|
||||
addiu esi,edi,sz_l_info + sz_p_info // &b_info
|
||||
|
||||
addiu sp,sp,-2*4 // param space: munmap temp pages step 9
|
||||
p_unmap= -3*4
|
||||
|
||||
lw eax,sz_cpr(esi); addiu esi,esi,3*4
|
||||
addu esi,esi,eax // skip unpack helper block
|
||||
|
||||
lodslu // eax=dstlen
|
||||
sll ecx,edi,(32-PAGE_SHIFT)
|
||||
srl ecx,ecx,(32-PAGE_SHIFT) // ecx= w_fragment
|
||||
addu eax,eax,ecx; push eax // params: mprotect restored pages step 8
|
||||
subu edi,edi,ecx; push edi
|
||||
p_mprot= -5*4
|
||||
subu eax,eax,ecx // dstlen
|
||||
addu edi,edi,ecx // dst
|
||||
push ecx // w_fragment
|
||||
o_wfrag= -6*4
|
||||
|
||||
addiu sp,sp,-4 // FIXME
|
||||
o_unflt= -7*4
|
||||
|
||||
lb ta3,b_method-4+1(esi); push ta3 // ftid
|
||||
lb ta3,b_method-4+2(esi); push ta3 // cto8
|
||||
push eax // dstlen also for unfilter step 7
|
||||
push edi // dst param for unfilter step 7
|
||||
p_unflt= -11*4
|
||||
|
||||
lodslu; move ecx,eax // ecx= srclen
|
||||
lodslu; push eax // method,filter,cto,junk
|
||||
push lr // &decompress
|
||||
o_uncpr= -13*4
|
||||
addiu ta3,fp,p_unflt+1*4 // &dstlen
|
||||
PUSH4(esi,ecx,edi,ta3) // src, srclen, dst, &dstlen; arglist ready for decompress step 6
|
||||
p_uncpr= -17*4
|
||||
|
||||
andi ta3,esi,3 // length of prefix alignment
|
||||
addi ecx,ecx,3 // allow suffix alignment
|
||||
add ecx,ecx,ta3 // prefix increases byte length
|
||||
srl ecx,ecx,2
|
||||
lw ta3,o_wfrag(fp); add edx,ta3,ecx // w_srclen + w_frag
|
||||
bal wlen_subr
|
||||
lw ta3,o_uncpr(fp)
|
||||
bal wlen_subr
|
||||
lw ta3,o_unflt(fp)
|
||||
|
||||
bal L220
|
||||
supervise:
|
||||
// Allocate pages for result of decompressing.
|
||||
// These replace the compressed source and the following hole.
|
||||
li arg5,-1 // cater to *BSD for fd of MAP_ANON
|
||||
li arg4,MAP_PRIVATE|MAP_ANONYMOUS|MAP_FIXED
|
||||
li arg3,PROT_READ|PROT_WRITE
|
||||
lw arg2,p_mprot+4(fp) // dstlen
|
||||
lw arg1,p_mprot (fp) // dst
|
||||
move arg6,arg1 // required result
|
||||
do_sys __NR_mmap64; subu ta3,v0,arg6; beqz ta3,0f; break; 0:
|
||||
|
||||
// Restore fragment of page below dst
|
||||
lw ecx,o_wfrag(fp)
|
||||
//move edi,r0 // NOP: edi==r0
|
||||
bal movsl
|
||||
lw esi,p_unmap(fp)
|
||||
|
||||
POP5(arg1,arg2,arg3,arg4,eax)
|
||||
jalr eax // decompress
|
||||
nop
|
||||
addiu sp,sp,4 // toss arg5
|
||||
|
||||
bal L620
|
||||
//hatch:
|
||||
do_sys __NR_munmap
|
||||
POP5(arg1,arg3,arg3,fp,lr)
|
||||
jalr ra
|
||||
nop
|
||||
|
||||
L620: // Implant escape hatch at end of .text
|
||||
lw eax,o_hatch(fp)
|
||||
POP2(arg1,arg2)
|
||||
sw arg1,0(eax)
|
||||
sw arg2,4(eax)
|
||||
|
||||
//p_unflt
|
||||
POP6(arg1,arg2,arg3,arg4,eax,ecx) // ecx=w_fragment [toss]
|
||||
beqz arg4,0f // 0==ftid ==> no filter
|
||||
nop
|
||||
jalr eax // unfilter
|
||||
nop
|
||||
0:
|
||||
//p_mprot
|
||||
lw arg1,0*4(sp) // lo(dst)
|
||||
lw arg2,1*4(sp) // len
|
||||
li arg3,0
|
||||
addu arg2,arg2,arg1 // hi(dst)
|
||||
addiu arg2,arg2,2*4 // len(hatch)
|
||||
do_sys __NR_cacheflush
|
||||
|
||||
POP2(arg1,arg2)
|
||||
li arg3,PROT_READ|PROT_EXEC
|
||||
do_sys __NR_mprotect
|
||||
|
||||
//p_unmap
|
||||
POP3(arg1,arg2,arg3)
|
||||
jr arg3 // goto hatch
|
||||
|
||||
movsl_subr:
|
||||
lw ecx,-4(esi) // 'bal <over>' instruction word
|
||||
sll ecx,ecx,16
|
||||
srl ecx,ecx,16 // displ
|
||||
addiu ecx,ecx,-1 // displ includes delay slot
|
||||
// FALL THROUGH to the part of 'movsl' that trims to a multiple of 4 words.
|
||||
9:
|
||||
lw v0,0*4(esi); addiu esi,esi,1*4
|
||||
sw v0,0*4(edi); addiu edi,edi,1*4
|
||||
addiu ecx,ecx,-1
|
||||
movsl: // edi= 4-byte aligned dst; esi= 4-byte aligned src; ecx= word count
|
||||
andi ta3,ecx,3; bnez ta3,4+ 9b //; nop # same instr at 9b: and 7f:
|
||||
7:
|
||||
lw v0,0*4(esi); lw v1,1*4(esi); lw t0,2*4(esi); lw t1,3*4(esi)
|
||||
sw v0,0*4(edi); sw v1,1*4(edi); sw t0,2*4(edi); sw t1,3*4(edi)
|
||||
addiu ecx,ecx,-4
|
||||
addiu esi,esi,4*4
|
||||
bnez ecx,7b
|
||||
addiu edi,edi,4*4
|
||||
9:
|
||||
jr ra; nop
|
||||
|
||||
L220:
|
||||
addiu sp,sp,-1*4; sw ra,0(sp) // PUSH1(ra)
|
||||
o_super= -18*4
|
||||
move ta3,lr
|
||||
bal wlen_subr // wlen_supervise
|
||||
nop
|
||||
sll arg2,edx,2 // convert to bytes
|
||||
|
||||
// Allocate pages to hold temporary copy.
|
||||
li arg5,-1 // cater to *BSD for fd of MAP_ANON
|
||||
li arg4,MAP_PRIVATE|MAP_ANONYMOUS
|
||||
li arg3,PROT_READ|PROT_WRITE|PROT_EXEC
|
||||
sw arg2,p_unmap+1*4(fp) // length to unmap
|
||||
li arg1,0 // any addr
|
||||
do_sys __NR_mmap64; beqz r_esys,0f; break; 0:
|
||||
sw v0,p_unmap+0*4(fp) // address to unmap
|
||||
|
||||
lw esi,p_mprot(fp)
|
||||
//move edi,r0 // edi= dst NOP: edi==r0
|
||||
bal movsl // copy the fragment
|
||||
lw ecx,o_wfrag(fp) // w_fragment
|
||||
|
||||
lw esi,p_uncpr+0*4(fp) // src
|
||||
lw ecx,p_uncpr+1*4(fp) // len
|
||||
andi ta3,esi,3 // length of prefix alignment
|
||||
subu esi,esi,ta3 // down to word aligned
|
||||
addu ecx,ecx,ta3 // prefix increases byte length
|
||||
addu ta3,ta3,edi // skip prefix at destination
|
||||
sw ta3,p_uncpr+0*4(fp) // dst
|
||||
addi ecx,ecx,3 // round up to full words
|
||||
bal movsl // copy all aligned words that contain compressed data
|
||||
srl ecx,ecx,2
|
||||
|
||||
move edx,edi // lo(dst) of copied code
|
||||
|
||||
lw esi,o_uncpr(fp)
|
||||
bal movsl_subr // copy decompressor
|
||||
sw edi,o_uncpr(fp)
|
||||
|
||||
lw esi,o_unflt(fp)
|
||||
bal movsl_subr // copy unfilter
|
||||
sw edi,o_unflt(fp)
|
||||
|
||||
POP2(esi,edi) // &supervise, &copied
|
||||
bal movsl_subr // copy supervisor
|
||||
nop
|
||||
|
||||
move arg2,edi // hi(dst) of copied code
|
||||
move arg1,edx // lo(dst) of copied code
|
||||
li arg3,0
|
||||
do_sys __NR_cacheflush
|
||||
|
||||
POP1(ra)
|
||||
jr ra
|
||||
nop
|
||||
|
||||
get4u:
|
||||
lb eax,0(esi)
|
||||
lb ta3,1(esi); sll ta3,ta3,1*8; or eax,eax,ta3
|
||||
lb ta3,2(esi); sll ta3,ta3,2*8; or eax,eax,ta3
|
||||
lb ta3,3(esi); sll ta3,ta3,3*8; or eax,eax,ta3
|
||||
jr ra
|
||||
addiu esi,esi,4
|
||||
|
||||
wlen_subr: // edx+= nwords of inline subr at *ta3
|
||||
lw ta3,-4(ta3) // 'bal <over>' instruction word
|
||||
sll ta3,ta3,16
|
||||
srl ta3,ta3,16
|
||||
addiu ta3,ta3,-1 // displ includes delay slot
|
||||
jr ra
|
||||
addu edx,edx,ta3
|
||||
|
||||
/*__XTHEENDX__*/
|
||||
|
||||
/* vim:set ts=8 sw=8 et: */
|
50
src/stub/tmp/mips.r3000-linux.shlib-init.bin.dump
Normal file
50
src/stub/tmp/mips.r3000-linux.shlib-init.bin.dump
Normal file
@ -0,0 +1,50 @@
|
||||
file format elf32-bigmips
|
||||
|
||||
Sections:
|
||||
Idx Name Size VMA LMA File off Algn Flags
|
||||
0 ELFMAINX 00000038 00000000 00000000 00000034 2**0 CONTENTS, RELOC, READONLY
|
||||
1 NRV2E 00000154 00000000 00000000 0000006c 2**0 CONTENTS, RELOC, READONLY
|
||||
2 NRV2D 00000144 00000000 00000000 000001c0 2**0 CONTENTS, RELOC, READONLY
|
||||
3 NRV2B 00000128 00000000 00000000 00000304 2**0 CONTENTS, RELOC, READONLY
|
||||
4 LZMA_ELF00 0000009c 00000000 00000000 0000042c 2**0 CONTENTS, READONLY
|
||||
5 LZMA_DEC20 00000ad8 00000000 00000000 000004c8 2**0 CONTENTS, READONLY
|
||||
6 LZMA_DEC10 00000ad8 00000000 00000000 00000fa0 2**0 CONTENTS, READONLY
|
||||
7 LZMA_DEC30 00000004 00000000 00000000 00001a78 2**0 CONTENTS, READONLY
|
||||
8 NRV_HEAD 00000010 00000000 00000000 00001a7c 2**0 CONTENTS, READONLY
|
||||
9 NRV_TAIL 00000010 00000000 00000000 00001a8c 2**0 CONTENTS, READONLY
|
||||
10 CFLUSH 00000024 00000000 00000000 00001a9c 2**0 CONTENTS, READONLY
|
||||
11 ELFMAINY 00000000 00000000 00000000 00001ac0 2**0 CONTENTS, READONLY
|
||||
12 ELFMAINZ 00000398 00000000 00000000 00001ac0 2**0 CONTENTS, READONLY
|
||||
SYMBOL TABLE:
|
||||
00000000 l d ELFMAINX 00000000 ELFMAINX
|
||||
00000000 l d NRV_TAIL 00000000 NRV_TAIL
|
||||
00000000 l d ELFMAINZ 00000000 ELFMAINZ
|
||||
00000000 l d NRV2E 00000000 NRV2E
|
||||
00000000 l d NRV2D 00000000 NRV2D
|
||||
00000000 l d NRV2B 00000000 NRV2B
|
||||
00000000 l d LZMA_ELF00 00000000 LZMA_ELF00
|
||||
00000000 l d LZMA_DEC20 00000000 LZMA_DEC20
|
||||
00000000 l d LZMA_DEC10 00000000 LZMA_DEC10
|
||||
00000000 l d LZMA_DEC30 00000000 LZMA_DEC30
|
||||
00000000 l d NRV_HEAD 00000000 NRV_HEAD
|
||||
00000000 l d CFLUSH 00000000 CFLUSH
|
||||
00000000 l d ELFMAINY 00000000 ELFMAINY
|
||||
00000000 g O ELFMAINX 00000000 _start
|
||||
00000000 g O ELFMAINY 00000000 end_decompress
|
||||
|
||||
RELOCATION RECORDS FOR [ELFMAINX]:
|
||||
OFFSET TYPE VALUE
|
||||
00000024 R_MIPS_LO16 ELFMAINX
|
||||
0000002c R_MIPS_LO16 ELFMAINZ
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2E]:
|
||||
OFFSET TYPE VALUE
|
||||
0000007c R_MIPS_PC16 NRV_TAIL
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2D]:
|
||||
OFFSET TYPE VALUE
|
||||
0000007c R_MIPS_PC16 NRV_TAIL
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2B]:
|
||||
OFFSET TYPE VALUE
|
||||
00000064 R_MIPS_PC16 NRV_TAIL
|
50
src/stub/tmp/mipsel.r3000-linux.shlib-init.bin.dump
Normal file
50
src/stub/tmp/mipsel.r3000-linux.shlib-init.bin.dump
Normal file
@ -0,0 +1,50 @@
|
||||
file format elf32-littlemips
|
||||
|
||||
Sections:
|
||||
Idx Name Size VMA LMA File off Algn Flags
|
||||
0 ELFMAINX 00000038 00000000 00000000 00000034 2**0 CONTENTS, RELOC, READONLY
|
||||
1 NRV2E 0000012c 00000000 00000000 0000006c 2**0 CONTENTS, RELOC, READONLY
|
||||
2 NRV2D 0000011c 00000000 00000000 00000198 2**0 CONTENTS, RELOC, READONLY
|
||||
3 NRV2B 00000100 00000000 00000000 000002b4 2**0 CONTENTS, RELOC, READONLY
|
||||
4 LZMA_ELF00 0000009c 00000000 00000000 000003b4 2**0 CONTENTS, READONLY
|
||||
5 LZMA_DEC20 00000ad8 00000000 00000000 00000450 2**0 CONTENTS, READONLY
|
||||
6 LZMA_DEC10 00000ad8 00000000 00000000 00000f28 2**0 CONTENTS, READONLY
|
||||
7 LZMA_DEC30 00000004 00000000 00000000 00001a00 2**0 CONTENTS, READONLY
|
||||
8 NRV_HEAD 00000010 00000000 00000000 00001a04 2**0 CONTENTS, READONLY
|
||||
9 NRV_TAIL 00000010 00000000 00000000 00001a14 2**0 CONTENTS, READONLY
|
||||
10 CFLUSH 00000024 00000000 00000000 00001a24 2**0 CONTENTS, READONLY
|
||||
11 ELFMAINY 00000000 00000000 00000000 00001a48 2**0 CONTENTS, READONLY
|
||||
12 ELFMAINZ 00000398 00000000 00000000 00001a48 2**0 CONTENTS, READONLY
|
||||
SYMBOL TABLE:
|
||||
00000000 l d ELFMAINX 00000000 ELFMAINX
|
||||
00000000 l d NRV_TAIL 00000000 NRV_TAIL
|
||||
00000000 l d ELFMAINZ 00000000 ELFMAINZ
|
||||
00000000 l d NRV2E 00000000 NRV2E
|
||||
00000000 l d NRV2D 00000000 NRV2D
|
||||
00000000 l d NRV2B 00000000 NRV2B
|
||||
00000000 l d LZMA_ELF00 00000000 LZMA_ELF00
|
||||
00000000 l d LZMA_DEC20 00000000 LZMA_DEC20
|
||||
00000000 l d LZMA_DEC10 00000000 LZMA_DEC10
|
||||
00000000 l d LZMA_DEC30 00000000 LZMA_DEC30
|
||||
00000000 l d NRV_HEAD 00000000 NRV_HEAD
|
||||
00000000 l d CFLUSH 00000000 CFLUSH
|
||||
00000000 l d ELFMAINY 00000000 ELFMAINY
|
||||
00000000 g O ELFMAINX 00000000 _start
|
||||
00000000 g O ELFMAINY 00000000 end_decompress
|
||||
|
||||
RELOCATION RECORDS FOR [ELFMAINX]:
|
||||
OFFSET TYPE VALUE
|
||||
00000024 R_MIPS_LO16 ELFMAINX
|
||||
0000002c R_MIPS_LO16 ELFMAINZ
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2E]:
|
||||
OFFSET TYPE VALUE
|
||||
0000007c R_MIPS_PC16 NRV_TAIL
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2D]:
|
||||
OFFSET TYPE VALUE
|
||||
0000007c R_MIPS_PC16 NRV_TAIL
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2B]:
|
||||
OFFSET TYPE VALUE
|
||||
00000064 R_MIPS_PC16 NRV_TAIL
|
Loading…
x
Reference in New Issue
Block a user