From 856ecb84a05ca320a8f7e9a32769ec0f5b9734f6 Mon Sep 17 00:00:00 2001 From: John Reiser Date: Thu, 15 Oct 2009 20:35:07 -0700 Subject: [PATCH] Compress shared library for i386-linux. DT_INIT must exist. Everything needed by ld-linux for runtime relocation must be at the beginning of the first PT_LOAD, etc. --- src/p_lx_elf.cpp | 535 ++++- src/p_lx_elf.h | 34 +- src/stub/Makefile | 13 + src/stub/i386-linux.shlib-init.h | 2396 +++++++++++++++++++ src/stub/src/i386-linux.shlib-init.S | 314 +++ src/stub/tmp/i386-linux.shlib-init.bin.dump | 653 +++++ 6 files changed, 3837 insertions(+), 108 deletions(-) create mode 100644 src/stub/i386-linux.shlib-init.h create mode 100644 src/stub/src/i386-linux.shlib-init.S create mode 100644 src/stub/tmp/i386-linux.shlib-init.bin.dump diff --git a/src/p_lx_elf.cpp b/src/p_lx_elf.cpp index c1ed0469..bf0356b7 100644 --- a/src/p_lx_elf.cpp +++ b/src/p_lx_elf.cpp @@ -69,7 +69,7 @@ PackLinuxElf32::checkEhdr(Elf32_Ehdr const *ehdr) const return 3; if (get_te32(&ehdr->e_version) != Elf32_Ehdr::EV_CURRENT) return 4; - if (get_te16(&ehdr->e_phnum) < 1) + if (e_phnum < 1) return 5; if (get_te16(&ehdr->e_phentsize) != sizeof(Elf32_Phdr)) return 6; @@ -118,7 +118,7 @@ PackLinuxElf64::checkEhdr(Elf64_Ehdr const *ehdr) const return 3; if (get_te32(&ehdr->e_version) != Elf64_Ehdr::EV_CURRENT) return 4; - if (get_te16(&ehdr->e_phnum) < 1) + if (e_phnum < 1) return 5; if (get_te16(&ehdr->e_phentsize) != sizeof(Elf64_Phdr)) return 6; @@ -142,9 +142,9 @@ PackLinuxElf64::checkEhdr(Elf64_Ehdr const *ehdr) const } PackLinuxElf::PackLinuxElf(InputFile *f) - : super(f), file_image(NULL), dynstr(NULL), + : super(f), e_phnum(0), file_image(NULL), dynstr(NULL), sz_phdrs(0), sz_elf_hdrs(0), sz_pack2(0), - lg2_page(12), page_size(1u<getBytesWritten(); fo->write(&zero, 3& -len); // ALIGN_UP 0 mod 4 len += (3& -len); // 0 mod 4 - if (0==(4 & len)) { - fo->write(&zero, 4); - len += 4; - } // 4 mod 8 - set_te32(&disp, len); // FIXME? -(sz_elf_hdrs+sizeof(l_info)+sizeof(p_info)) - fo->write(&disp, sizeof(disp)); - sz_pack2 = sizeof(disp) + len; // 0 mod 8 + unsigned const t = 4 ^ (4 & len) ^ ((!!xct_off)<<2); // 0 or 4 + fo->write(&zero, t); + len += t; + if (xct_off) { + set_te32(&disp, xct_va - xct_off + len); // to detect dynamic reloc + fo->write(&disp, sizeof(disp)); + len += sizeof(disp); - super::pack3(fo, ft); + set_te32(&disp, elf_unsigned_dynamic(Elf32_Dyn::DT_INIT)); + fo->write(&disp, sizeof(disp)); + len += sizeof(disp); + + set_te32(&disp, hatch_va); + fo->write(&disp, sizeof(disp)); + len += sizeof(disp); + + set_te32(&disp, xct_va); + fo->write(&disp, sizeof(disp)); + len += sizeof(disp); + } + else { + set_te32(&disp, len - xct_off); // distance back to beginning + fo->write(&disp, sizeof(disp)); + len += sizeof(disp); + } + sz_pack2 = len; // 0 mod 8 + + super::pack3(fo, ft); // append the decompressor } void PackLinuxElf32::pack3(OutputFile *fo, Filter &ft) { super::pack3(fo, ft); set_te32(&elfout.phdr[0].p_filesz, sz_pack2); + if (0!=xct_off) { // shared library + Elf32_Phdr *phdr = phdri; + unsigned off = sz_pack2; + unsigned off_init = 0; // where in file + unsigned va_init = sz_pack2; // virtual address + unsigned rel = 0; + unsigned old_dtinit = 0; + for (int j = e_phnum; --j>=0; ++phdr) { + unsigned const len = get_te32(&phdr->p_filesz); + unsigned const ioff = get_te32(&phdr->p_offset); + unsigned const type = get_te32(&phdr->p_type); + if (phdr->PT_INTERP==type) { // FIXME + // Rotate to highest position, so it can be lopped + // by decrementing e_phnum. FIXME: must relocate .p_offset, + // and ::pack4 must rewrite it to the output, too. + memcpy((unsigned char *)ibuf, phdr, sizeof(*phdr)); + memcpy(phdr, 1+phdr, j * sizeof(*phdr)); + memcpy(&phdr[j], (unsigned char *)ibuf, sizeof(*phdr)); + --phdr; + set_te16(&ehdri.e_phnum, --e_phnum); + continue; + } + if (phdr->PT_LOAD32==type) { + if (xct_off < ioff) { // Slide up non-first PT_LOAD. + fi->seek(ioff, SEEK_SET); + fi->readx(ibuf, len); + off += ~page_mask & (ioff - off); + fo->seek(off, SEEK_SET); + fo->write(ibuf, len); + rel = off - ioff; + set_te32(&phdr->p_offset, rel + ioff); + } + else { // Change length of first PT_LOAD. + va_init += get_te32(&phdr->p_vaddr); + set_te32(&phdr->p_filesz, sz_pack2); + set_te32(&phdr->p_memsz, sz_pack2); // FIXME + } + continue; // all done with this PT_LOAD + } + // Compute new offset of &DT_INIT.d_val. + if (phdr->PT_DYNAMIC==type) { + off_init = rel + ioff; + fi->seek(ioff, SEEK_SET); + fi->read(ibuf, len); + Elf32_Dyn *dyn = (Elf32_Dyn *)(void *)ibuf; + for (int j = len; j > 0; ++dyn, j -= sizeof(*dyn)) { + if (dyn->DT_INIT==get_te32(&dyn->d_tag)) { + old_dtinit = dyn->d_val; + unsigned const t = (unsigned char *)&dyn->d_val - + (unsigned char *)ibuf; + off_init += t; + break; + } + } + // fall through to relocate .p_offset + } + if (xct_off < ioff) + set_te32(&phdr->p_offset, rel + ioff); + } + if (off_init) { // change DT_INIT.d_val + fo->seek(off_init, SEEK_SET); + unsigned word; set_te32(&word, va_init); + fo->rewrite(&word, sizeof(word)); + fo->seek(0, SEEK_END); + } + ehdri.e_shnum = 0; + ehdri.e_shoff = old_dtinit; // easy to find for unpacking + //ehdri.e_shentsize = 0; + //ehdri.e_shstrndx = 0; + } } void PackLinuxElf64::pack3(OutputFile *fo, Filter &ft) @@ -212,6 +301,8 @@ PackLinuxElf32::PackLinuxElf32(InputFile *f) shstrtab(NULL), n_elf_shnum(0), sec_strndx(NULL), sec_dynsym(NULL), sec_dynstr(NULL) { + f->seek(0, SEEK_SET); + f->readx(&ehdri, sizeof(ehdri)); } PackLinuxElf32::~PackLinuxElf32() @@ -220,8 +311,11 @@ PackLinuxElf32::~PackLinuxElf32() } PackLinuxElf64::PackLinuxElf64(InputFile *f) - : super(f), phdri(NULL), page_mask(~0ull<seek(0, SEEK_SET); + f->readx(&ehdri, sizeof(ehdri)); } PackLinuxElf64::~PackLinuxElf64() @@ -474,7 +568,7 @@ PackLinuxElf32::buildLinuxLoader( } unsigned char const *const uncLoader = fold_hdrlen + fold; - h.sz_cpr = MemBuffer::getSizeForCompression(h.sz_unc); + h.sz_cpr = MemBuffer::getSizeForCompression(h.sz_unc + (0==h.sz_unc)); unsigned char *const cprLoader = new unsigned char[sizeof(h) + h.sz_cpr]; if (0 < szfold) { int r = upx_compress(uncLoader, h.sz_unc, sizeof(h) + cprLoader, &h.sz_cpr, @@ -571,7 +665,7 @@ PackLinuxElf64amd::defineSymbols(Filter const *) // size (total over all PT_LOAD64) as an upper bound. unsigned len = 0; acc_uint64l_t lo_va_user = ~0ull; // infinity - for (int j= get_te16(&ehdri.e_phnum); --j>=0; ) { + for (int j= e_phnum; --j>=0; ) { if (PT_LOAD64 == get_te32(&phdri[j].p_type)) { len += (unsigned)get_te64(&phdri[j].p_filesz); acc_uint64l_t const va = get_te64(&phdri[j].p_vaddr); @@ -598,7 +692,7 @@ PackLinuxElf64amd::defineSymbols(Filter const *) set_te64(&elfout.phdr[0].p_paddr, lo_va_user); lo_va_stub = lo_va_user; adrc = lo_va_stub; - adrm = getbrk(phdri, get_te16(&ehdri.e_phnum)); + adrm = getbrk(phdri, e_phnum); adru = page_mask & (~page_mask + adrm); // round up to page boundary adrx = adru + hlen; lenm = page_size + len; @@ -640,10 +734,18 @@ static const #include "stub/i386-linux.elf-entry.h" static const #include "stub/i386-linux.elf-fold.h" +static const +#include "stub/i386-linux.shlib-init.h" void PackLinuxElf32x86::buildLoader(const Filter *ft) { + if (0!=xct_off) { // shared library + buildLinuxLoader( + stub_i386_linux_shlib_init, sizeof(stub_i386_linux_shlib_init), + NULL, 0, ft ); + return; + } unsigned char tmp[sizeof(stub_i386_linux_elf_fold)]; memcpy(tmp, stub_i386_linux_elf_fold, sizeof(stub_i386_linux_elf_fold)); checkPatch(NULL, 0, 0, 0); // reset @@ -842,6 +944,12 @@ Elf32_Shdr const *PackLinuxElf32::elf_find_section_type( return 0; } +static unsigned +umin(unsigned a, unsigned b) +{ + return (a < b) ? a : b; +} + bool PackLinuxElf32::canPack() { union { @@ -872,8 +980,8 @@ bool PackLinuxElf32::canPack() } unsigned osabi0 = u.buf[Elf32_Ehdr::EI_OSABI]; + unsigned va_load = 0; // The first PT_LOAD32 must cover the beginning of the file (0==p_offset). - unsigned const e_phnum = get_te16(&ehdr->e_phnum); Elf32_Phdr const *phdr = (Elf32_Phdr const *)(u.buf + e_phoff); for (unsigned j=0; j < e_phnum; ++phdr, ++j) { if (j >= 14) @@ -885,6 +993,7 @@ bool PackLinuxElf32::canPack() throwCantPack("invalid Phdr p_offset; try '--force-execve'"); return false; } + va_load = phdr->p_vaddr; exetype = 1; } if (Elf32_Ehdr::ELFOSABI_NONE==osabi0 // Still seems to be generic. @@ -938,51 +1047,96 @@ bool PackLinuxElf32::canPack() fi->seek(0, SEEK_SET); fi->readx(file_image, file_size); memcpy(&ehdri, ehdr, sizeof(Elf32_Ehdr)); - phdri= (Elf32_Phdr *)(e_phoff + file_image); // do not free() !! - shdri= (Elf32_Shdr *)(e_shoff + file_image); // do not free() !! + phdri= (Elf32_Phdr *)(e_phoff + file_image); // do not free() !! + shdri= (Elf32_Shdr const *)(e_shoff + file_image); // do not free() !! n_elf_shnum = get_te16(&ehdr->e_shnum); - shdri = (Elf32_Shdr const *)(e_shoff + file_image); //sec_strndx = &shdri[ehdr->e_shstrndx]; //shstrtab = (char const *)(sec_strndx->sh_offset + file_image); sec_dynsym = elf_find_section_type(Elf32_Shdr::SHT_DYNSYM); - sec_dynstr = get_te32(&sec_dynsym->sh_link) + shdri; + if (sec_dynsym) + sec_dynstr = get_te32(&sec_dynsym->sh_link) + shdri; int j= e_phnum; phdr= phdri; - for (; --j>=0; ++phdr) if (Elf32_Phdr::PT_DYNAMIC==get_te32(&phdr->p_type)) { + for (; --j>=0; ++phdr) + if (Elf32_Phdr::PT_DYNAMIC==get_te32(&phdr->p_type)) { dynseg= (Elf32_Dyn const *)(get_te32(&phdr->p_offset) + file_image); break; } // elf_find_dynamic() returns 0 if 0==dynseg. - //gashtab= (unsigned int const *)elf_find_dynamic(Elf32_Dyn::DT_GNU_HASH); - //hashtab= (unsigned int const *)elf_find_dynamic(Elf32_Dyn::DT_HASH); dynstr= (char const *)elf_find_dynamic(Elf32_Dyn::DT_STRTAB); dynsym= (Elf32_Sym const *)elf_find_dynamic(Elf32_Dyn::DT_SYMTAB); - Elf32_Rel const * - jmprel= (Elf32_Rel const *)elf_find_dynamic(Elf32_Dyn::DT_JMPREL); - //unsigned const sz_1pltrel = - // (Elf32_Dyn::DT_REL==elf_unsigned_dynamic(Elf32_Dyn::DT_PLTREL)) - // ? elf_unsigned_dynamic(Elf32_Dyn::DT_RELENT) - // : elf_unsigned_dynamic(Elf32_Dyn::DT_RELAENT); // Modified 2009-10-10 to detect a ProgramLinkageTable relocation // which references the symbol, because DT_GNU_HASH contains only // defined symbols, and there might be no DT_HASH. + Elf32_Rel const * + jmprel= (Elf32_Rel const *)elf_find_dynamic(Elf32_Dyn::DT_JMPREL); for ( int sz = elf_unsigned_dynamic(Elf32_Dyn::DT_PLTRELSZ); 0 < sz; - (sz -= sizeof(Elf32_Rel)), ++jmprel) { - unsigned const symnum = jmprel->r_info >> 8; + (sz -= sizeof(Elf32_Rel)), ++jmprel + ) { + unsigned const symnum = get_te32(&jmprel->r_info) >> 8; char const *const symnam = get_te32(&dynsym[symnum].st_name) + dynstr; if (0==strcmp(symnam, "__libc_start_main") || 0==strcmp(symnam, "__uClibc_main") || 0==strcmp(symnam, "__uClibc_start_main")) - goto main_found; + goto proceed; } - phdri = 0; + + // Heuristic HACK for shared libraries (compare Darwin (MacOS) Dylib.) + // If there is an existing DT_INIT, and if everything that the dynamic + // linker ld-linux needs to perform relocations before calling DT_INIT + // resides below the first SHT_EXECINSTR Section in one PT_LOAD, then + // compress from the first executable Section to the end of that PT_LOAD. + // We must not alter anything that ld-linux might touch before it calls + // the DT_INIT function. + // + // Obviously this hack requires that the linker script put pieces + // into good positions when building the original shared library, + // and also requires ld-linux to behave. + + if (elf_find_dynamic(Elf32_Dyn::DT_INIT)) { + Elf32_Shdr const *shdr = shdri; + xct_va = ~0u; + for (j= n_elf_shnum; --j>=0; ++shdr) { + if (Elf32_Shdr::SHF_EXECINSTR & get_te32(&shdr->sh_flags)) { + xct_va = umin(xct_va, get_te32(&shdr->sh_addr)); + } + } + // Rely on 0==elf_unsigned_dynamic(tag) if no such tag. + unsigned const va_gash = elf_unsigned_dynamic(Elf32_Dyn::DT_GNU_HASH); + unsigned const va_hash = elf_unsigned_dynamic(Elf32_Dyn::DT_HASH); + if (xct_va < va_gash || (0==va_gash && xct_va < va_hash) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_STRTAB) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_SYMTAB) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_REL) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_RELA) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_JMPREL) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_VERDEF) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_VERSYM) + || xct_va < elf_unsigned_dynamic(Elf32_Dyn::DT_VERNEEDED) ) { + goto abandon; + } + for ((shdr= shdri), (j= n_elf_shnum); --j>=0; ++shdr) { + if ( shdr->sh_addr==va_gash + || (shdr->sh_addr==va_hash && 0==va_gash) ) { + shdr= &shdri[shdr->sh_link]; // the associated SHT_SYMTAB + hatch_off = (char *)&ehdri.e_ident[12] - (char *)&ehdri; + hatch_va = hatch_off + va_load; + break; + } + } + // FIXME: DT_TEXTREL + xct_off = elf_get_offset_from_address(xct_va); + goto proceed; // But proper packing depends on checking xct_va. + } +abandon: + phdri = 0; // Done with this return false; -main_found: +proceed: phdri = 0; } // XXX Theoretically the following test should be first, @@ -1026,7 +1180,6 @@ PackLinuxElf64amd::canPack() } // The first PT_LOAD64 must cover the beginning of the file (0==p_offset). - unsigned const e_phnum = get_te16(&ehdr->e_phnum); Elf64_Phdr const *phdr = (Elf64_Phdr const *)(u.buf + (unsigned) e_phoff); for (unsigned j=0; j < e_phnum; ++phdr, ++j) { if (j >= 14) @@ -1125,9 +1278,8 @@ PackLinuxElf32::generateElfHdr( sz_elf_hdrs = sizeof(*h2) - sizeof(linfo); // default set_te32(&h2->phdr[0].p_filesz, sizeof(*h2)); // + identsize; - h2->phdr[0].p_memsz = h2->phdr[0].p_filesz; + h2->phdr[0].p_memsz = h2->phdr[0].p_filesz; - unsigned const e_phnum = get_te16(&ehdri.e_phnum); Elf32_Phdr const *phdr = phdri; for (unsigned j=0; j < e_phnum; ++phdr, ++j) { if (phdr->PT_LOAD32 == get_te32(&phdr->p_type)) { @@ -1251,7 +1403,6 @@ PackLinuxElf64::generateElfHdr( set_te64(&h2->phdr[0].p_filesz, sizeof(*h2)); // + identsize; h2->phdr[0].p_memsz = h2->phdr[0].p_filesz; - unsigned const e_phnum = get_te16(&ehdri.e_phnum); Elf64_Phdr const *phdr = phdri; for (unsigned j=0; j < e_phnum; ++phdr, ++j) { if (phdr->PT_LOAD64 == get_te64(&phdr->p_type)) { @@ -1295,7 +1446,6 @@ void PackLinuxElf32::pack1(OutputFile */*fo*/, Filter &/*ft*/) fi->seek(0, SEEK_SET); fi->readx(&ehdri, sizeof(ehdri)); unsigned const e_phoff = get_te32(&ehdri.e_phoff); - unsigned const e_phnum = get_te16(&ehdri.e_phnum); assert(e_phoff == sizeof(Elf32_Ehdr)); // checked by canPack() sz_phdrs = e_phnum * get_te16(&ehdri.e_phentsize); @@ -1309,13 +1459,23 @@ void PackLinuxElf32::pack1(OutputFile */*fo*/, Filter &/*ft*/) void PackLinuxElf32x86::pack1(OutputFile *fo, Filter &ft) { PackLinuxElf32::pack1(fo, ft); - generateElfHdr(fo, stub_i386_linux_elf_fold, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + if (0==xct_off) // main executable + generateElfHdr(fo, stub_i386_linux_elf_fold, + getbrk(phdri, e_phnum) ); + else { // shared library + fi->seek(0, SEEK_SET); + fi->readx(ibuf, xct_off); + + sz_elf_hdrs = xct_off - sizeof(l_info); + fo->write(ibuf, xct_off); + + } } void PackBSDElf32x86::pack1(OutputFile *fo, Filter &ft) { PackLinuxElf32::pack1(fo, ft); - generateElfHdr(fo, stub_i386_bsd_elf_fold, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, stub_i386_bsd_elf_fold, getbrk(phdri, e_phnum) ); } void PackLinuxElf32armLe::pack1(OutputFile *fo, Filter &ft) @@ -1331,7 +1491,7 @@ void PackLinuxElf32armLe::pack1(OutputFile *fo, Filter &ft) else { memcpy(&h3, stub_arm_linux_elf_fold, sizeof(Elf32_Ehdr) + 2*sizeof(Elf32_Phdr)); } - generateElfHdr(fo, &h3, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, &h3, getbrk(phdri, e_phnum) ); } void PackLinuxElf32armBe::pack1(OutputFile *fo, Filter &ft) @@ -1339,7 +1499,7 @@ void PackLinuxElf32armBe::pack1(OutputFile *fo, Filter &ft) super::pack1(fo, ft); cprElfHdr3 h3; memcpy(&h3, stub_armeb_linux_elf_fold, sizeof(Elf32_Ehdr) + 2*sizeof(Elf32_Phdr)); - generateElfHdr(fo, &h3, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, &h3, getbrk(phdri, e_phnum) ); } void PackLinuxElf32mipsel::pack1(OutputFile *fo, Filter &ft) @@ -1347,7 +1507,7 @@ void PackLinuxElf32mipsel::pack1(OutputFile *fo, Filter &ft) super::pack1(fo, ft); cprElfHdr3 h3; memcpy(&h3, stub_mipsel_r3000_linux_elf_fold, sizeof(Elf32_Ehdr) + 2*sizeof(Elf32_Phdr)); - generateElfHdr(fo, &h3, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, &h3, getbrk(phdri, e_phnum) ); } void PackLinuxElf32mipseb::pack1(OutputFile *fo, Filter &ft) @@ -1355,13 +1515,13 @@ void PackLinuxElf32mipseb::pack1(OutputFile *fo, Filter &ft) super::pack1(fo, ft); cprElfHdr3 h3; memcpy(&h3, stub_mips_r3000_linux_elf_fold, sizeof(Elf32_Ehdr) + 2*sizeof(Elf32_Phdr)); - generateElfHdr(fo, &h3, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, &h3, getbrk(phdri, e_phnum) ); } void PackLinuxElf32ppc::pack1(OutputFile *fo, Filter &ft) { super::pack1(fo, ft); - generateElfHdr(fo, stub_powerpc_linux_elf_fold, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, stub_powerpc_linux_elf_fold, getbrk(phdri, e_phnum) ); } void PackLinuxElf64::pack1(OutputFile */*fo*/, Filter &/*ft*/) @@ -1369,7 +1529,6 @@ void PackLinuxElf64::pack1(OutputFile */*fo*/, Filter &/*ft*/) fi->seek(0, SEEK_SET); fi->readx(&ehdri, sizeof(ehdri)); unsigned const e_phoff = get_te32(&ehdri.e_phoff); - unsigned const e_phnum = get_te16(&ehdri.e_phnum); assert(e_phoff == sizeof(Elf64_Ehdr)); // checked by canPack() sz_phdrs = e_phnum * get_te16(&ehdri.e_phentsize); @@ -1383,7 +1542,7 @@ void PackLinuxElf64::pack1(OutputFile */*fo*/, Filter &/*ft*/) void PackLinuxElf64amd::pack1(OutputFile *fo, Filter &ft) { super::pack1(fo, ft); - generateElfHdr(fo, stub_amd64_linux_elf_fold, getbrk(phdri, get_te16(&ehdri.e_phnum)) ); + generateElfHdr(fo, stub_amd64_linux_elf_fold, getbrk(phdri, e_phnum) ); } // Determine length of gap between PT_LOAD phdr[k] and closest PT_LOAD @@ -1428,10 +1587,26 @@ void PackLinuxElf32::pack2(OutputFile *fo, Filter &ft) { Extent x; unsigned k; + bool is_shlib = (0!=xct_off); + + if (0) { // Only to make unpacking easier! + struct b_info h; memset(&h, 0, sizeof(h)); + h.sz_unc = sizeof(ehdri) + sizeof(*phdri) * e_phnum; + h.b_method = (unsigned char) ph.method; + int const r = upx_compress(ibuf, h.sz_unc, obuf, &h.sz_cpr, + NULL, ph.method, 10, NULL, NULL ); + if (r != UPX_E_OK || h.sz_cpr >= h.sz_unc) + throwInternalError("loader compression failed"); + + unsigned const clen = h.sz_cpr; + set_te32(&h.sz_unc, h.sz_unc); + set_te32(&h.sz_cpr, h.sz_cpr); + fo->write(&h, sizeof(h)); + fo->write(obuf, clen); + } // count passes, set ptload vars uip->ui_total_passes = 0; - unsigned const e_phnum = get_te16(&ehdri.e_phnum); for (k = 0; k < e_phnum; ++k) { if (PT_LOAD32 == get_te32(&phdri[k].p_type)) { uip->ui_total_passes++; @@ -1442,11 +1617,11 @@ void PackLinuxElf32::pack2(OutputFile *fo, Filter &ft) } // compress extents - unsigned total_in = 0; - unsigned total_out = 0; - unsigned hdr_u_len = sizeof(Elf32_Ehdr) + sz_phdrs; + unsigned total_in = xct_off - (is_shlib ? hdr_u_len : 0); + unsigned total_out = xct_off; + uip->ui_pass = 0; ft.addvalue = 0; @@ -1458,19 +1633,24 @@ void PackLinuxElf32::pack2(OutputFile *fo, Filter &ft) x.offset = get_te32(&phdri[k].p_offset); x.size = get_te32(&phdri[k].p_filesz); if (0 == nx) { // 1st PT_LOAD32 must cover Ehdr at 0==p_offset - unsigned const delta = sizeof(Elf32_Ehdr) + sz_phdrs; + unsigned const delta = !is_shlib + ? (sizeof(Elf32_Ehdr) + sz_phdrs) // main executable + : xct_off; // shared library if (ft.id < 0x40) { // FIXME: ?? ft.addvalue += delta; } - x.offset += delta; - x.size -= delta; + x.offset += delta; + x.size -= delta; } // compressWithFilters() always assumes a "loader", so would // throw NotCompressible for small .data Extents, which PowerPC // sometimes marks as PF_X anyway. So filter only first segment. + if (0==nx || !is_shlib) packExtent(x, total_in, total_out, ((0==nx && (Elf32_Phdr::PF_X & get_te32(&phdri[k].p_flags))) ? &ft : 0 ), fo, hdr_u_len); + else + total_in += x.size; hdr_u_len = 0; ++nx; } @@ -1532,7 +1712,6 @@ void PackLinuxElf64::pack2(OutputFile *fo, Filter &ft) // count passes, set ptload vars uip->ui_total_passes = 0; - unsigned const e_phnum = get_te16(&ehdri.e_phnum); for (k = 0; k < e_phnum; ++k) { if (PT_LOAD64==get_te32(&phdri[k].p_type)) { uip->ui_total_passes++; @@ -1647,7 +1826,7 @@ void PackLinuxElf32::ARM_defineSymbols(Filter const * /*ft*/) set_te32(&elfout.phdr[0].p_paddr, lo_va_user); lo_va_stub = lo_va_user; adrc = lo_va_stub; - adrm = getbrk(phdri, get_te16(&ehdri.e_phnum)); + adrm = getbrk(phdri, e_phnum); adrx = hlen + (page_mask & (~page_mask + adrm)); // round up to page boundary } adrm = page_mask & (~page_mask + adrm); // round up to page boundary @@ -1679,7 +1858,7 @@ void PackLinuxElf32mipseb::defineSymbols(Filter const * /*ft*/) // size (total over all PT_LOAD32) as an upper bound. unsigned len = 0; unsigned lo_va_user = ~0u; // infinity - for (int j= get_te16(&ehdri.e_phnum); --j>=0; ) { + for (int j= e_phnum; --j>=0; ) { if (PT_LOAD32 == get_te32(&phdri[j].p_type)) { len += (unsigned)get_te32(&phdri[j].p_filesz); unsigned const va = get_te32(&phdri[j].p_vaddr); @@ -1706,7 +1885,7 @@ void PackLinuxElf32mipseb::defineSymbols(Filter const * /*ft*/) set_te32(&elfout.phdr[0].p_paddr, lo_va_user); lo_va_stub = lo_va_user; adrc = lo_va_stub; - adrm = getbrk(phdri, get_te16(&ehdri.e_phnum)); + adrm = getbrk(phdri, e_phnum); adru = page_mask & (~page_mask + adrm); // round up to page boundary adrx = adru + hlen; lenm = page_size + len; @@ -1751,7 +1930,7 @@ void PackLinuxElf32mipsel::defineSymbols(Filter const * /*ft*/) // size (total over all PT_LOAD32) as an upper bound. unsigned len = 0; unsigned lo_va_user = ~0u; // infinity - for (int j= get_te16(&ehdri.e_phnum); --j>=0; ) { + for (int j= e_phnum; --j>=0; ) { if (PT_LOAD32 == get_te32(&phdri[j].p_type)) { len += (unsigned)get_te32(&phdri[j].p_filesz); unsigned const va = get_te32(&phdri[j].p_vaddr); @@ -1778,7 +1957,7 @@ void PackLinuxElf32mipsel::defineSymbols(Filter const * /*ft*/) set_te32(&elfout.phdr[0].p_paddr, lo_va_user); lo_va_stub = lo_va_user; adrc = lo_va_stub; - adrm = getbrk(phdri, get_te16(&ehdri.e_phnum)); + adrm = getbrk(phdri, e_phnum); adru = page_mask & (~page_mask + adrm); // round up to page boundary adrx = adru + hlen; lenm = page_size + len; @@ -1845,20 +2024,31 @@ void PackLinuxElf32::pack4(OutputFile *fo, Filter &ft) // Strict SELinux (or PaX, grSecurity) disallows PF_W with PF_X //elfout.phdr[0].p_flags |= Elf32_Phdr::PF_W; } + fo->seek(0, SEEK_SET); - if (Elf32_Phdr::PT_NOTE==get_te32(&elfout.phdr[2].p_type)) { - unsigned const reloc = get_te32(&elfout.phdr[0].p_vaddr); - set_te32( &elfout.phdr[2].p_vaddr, - reloc + get_te32(&elfout.phdr[2].p_vaddr)); - set_te32( &elfout.phdr[2].p_paddr, - reloc + get_te32(&elfout.phdr[2].p_paddr)); - fo->rewrite(&elfout, sz_elf_hdrs); - fo->rewrite(&elfnote, sizeof(elfnote)); + if (0!=xct_off) { // shared library + ehdri.e_ident[0+hatch_off] = 0xcd; // INT 0x80 (syscall [munmap]) + ehdri.e_ident[1+hatch_off] = 0x80; + ehdri.e_ident[2+hatch_off] = 0x61; // POPA + ehdri.e_ident[3+hatch_off] = 0xc3; // RET + fo->rewrite(&ehdri, sizeof(ehdri)); + fo->rewrite(phdri, e_phnum * sizeof(*phdri)); } else { - fo->rewrite(&elfout, sz_elf_hdrs); + if (Elf32_Phdr::PT_NOTE==get_te32(&elfout.phdr[2].p_type)) { + unsigned const reloc = get_te32(&elfout.phdr[0].p_vaddr); + set_te32( &elfout.phdr[2].p_vaddr, + reloc + get_te32(&elfout.phdr[2].p_vaddr)); + set_te32( &elfout.phdr[2].p_paddr, + reloc + get_te32(&elfout.phdr[2].p_paddr)); + fo->rewrite(&elfout, sz_elf_hdrs); + fo->rewrite(&elfnote, sizeof(elfnote)); + } + else { + fo->rewrite(&elfout, sz_elf_hdrs); + } + fo->rewrite(&linfo, sizeof(linfo)); } - fo->rewrite(&linfo, sizeof(linfo)); } void PackLinuxElf64::pack4(OutputFile *fo, Filter &ft) @@ -1924,8 +2114,20 @@ void PackLinuxElf32::unpack(OutputFile *fo) ph.filter_cto = bhdr.b_cto8; // Uncompress Ehdr and Phdrs. + bool is_shlib = (sizeof(u) < ph.u_len); + if (is_shlib) { + fi->seek(0, SEEK_SET); + fi->readx(ibuf, file_size); // the whole compressed file + // FIXME: re-construct original Ehdr and Phdrs in ibuf + fo->write(ibuf, overlay_offset); + // FIXME: not finished + return; + } fi->readx(ibuf, ph.c_len); - decompress(ibuf, (upx_byte *)ehdr, false); + if (!is_shlib) { + decompress(ibuf, (upx_byte *)ehdr, false); + fi->seek(- (off_t) (szb_info + ph.c_len), SEEK_CUR); + } unsigned total_in = 0; unsigned total_out = 0; @@ -1934,9 +2136,7 @@ void PackLinuxElf32::unpack(OutputFile *fo) // decompress PT_LOAD32 bool first_PF_X = true; - unsigned const phnum = get_te16(&ehdr->e_phnum); - fi->seek(- (off_t) (szb_info + ph.c_len), SEEK_CUR); - for (unsigned j=0; j < phnum; ++phdr, ++j) { + for (unsigned j=0; j < e_phnum; ++phdr, ++j) { if (PT_LOAD32==get_te32(&phdr->p_type)) { unsigned const filesz = get_te32(&phdr->p_filesz); unsigned const offset = get_te32(&phdr->p_offset); @@ -1955,8 +2155,8 @@ void PackLinuxElf32::unpack(OutputFile *fo) } phdr = (Elf32_Phdr *) (u.buf + sizeof(*ehdr)); - for (unsigned j = 0; j < phnum; ++j) { - unsigned const size = find_LOAD_gap(phdr, j, phnum); + for (unsigned j = 0; j < e_phnum; ++j) { + unsigned const size = find_LOAD_gap(phdr, j, e_phnum); if (size) { unsigned const where = get_te32(&phdr[j].p_offset) + get_te32(&phdr[j].p_filesz); @@ -2042,9 +2242,8 @@ void PackLinuxElf64::unpack(OutputFile *fo) // decompress PT_LOAD32 bool first_PF_X = true; - unsigned const phnum = get_te16(&ehdr->e_phnum); fi->seek(- (off_t) (szb_info + ph.c_len), SEEK_CUR); - for (unsigned j=0; j < phnum; ++phdr, ++j) { + for (unsigned j=0; j < e_phnum; ++phdr, ++j) { if (PT_LOAD32==get_te32(&phdr->p_type)) { acc_uint64l_t const filesz = get_te64(&phdr->p_filesz); acc_uint64l_t const offset = get_te64(&phdr->p_offset); @@ -2063,8 +2262,8 @@ void PackLinuxElf64::unpack(OutputFile *fo) } phdr = (Elf64_Phdr *) (u.buf + sizeof(*ehdr)); - for (unsigned j = 0; j < phnum; ++j) { - unsigned const size = find_LOAD_gap(phdr, j, phnum); + for (unsigned j = 0; j < e_phnum; ++j) { + unsigned const size = find_LOAD_gap(phdr, j, e_phnum); if (size) { unsigned const where = get_te64(&phdr[j].p_offset) + get_te64(&phdr[j].p_filesz); @@ -2260,7 +2459,7 @@ unsigned PackLinuxElf32::elf_get_offset_from_address(unsigned const addr) const { Elf32_Phdr const *phdr = phdri; - int j = get_te16(&ehdri.e_phnum); + int j = e_phnum; for (; --j>=0; ++phdr) if (PT_LOAD32 == get_te32(&phdr->p_type)) { unsigned const t = addr - get_te32(&phdr->p_vaddr); if (t < get_te32(&phdr->p_filesz)) { @@ -2285,7 +2484,7 @@ PackLinuxElf32::elf_find_dynamic(unsigned int const key) const return 0; } -unsigned +uint64_t PackLinuxElf32::elf_unsigned_dynamic(unsigned int const key) const { Elf32_Dyn const *dynp= dynseg; @@ -2296,6 +2495,46 @@ PackLinuxElf32::elf_unsigned_dynamic(unsigned int const key) const return 0; } +unsigned +PackLinuxElf64::elf_get_offset_from_address(unsigned const addr) const +{ + Elf64_Phdr const *phdr = phdri; + int j = e_phnum; + for (; --j>=0; ++phdr) if (PT_LOAD64 == get_te64(&phdr->p_type)) { + unsigned const t = addr - get_te64(&phdr->p_vaddr); + if (t < get_te64(&phdr->p_filesz)) { + return t + get_te64(&phdr->p_offset); + } + } + return 0; +} + +void const * +PackLinuxElf64::elf_find_dynamic(unsigned int const key) const +{ + Elf64_Dyn const *dynp= dynseg; + if (dynp) + for (; Elf64_Dyn::DT_NULL!=dynp->d_tag; ++dynp) if (get_te64(&dynp->d_tag)==key) { + unsigned const t= elf_get_offset_from_address(get_te64(&dynp->d_val)); + if (t) { + return t + file_image; + } + break; + } + return 0; +} + +uint64_t +PackLinuxElf64::elf_unsigned_dynamic(unsigned int const key) const +{ + Elf64_Dyn const *dynp= dynseg; + if (dynp) + for (; Elf64_Dyn::DT_NULL!=dynp->d_tag; ++dynp) if (get_te64(&dynp->d_tag)==key) { + return get_te64(&dynp->d_val); + } + return 0; +} + unsigned PackLinuxElf32::gnu_hash(char const *q) { unsigned char const *p = (unsigned char const *)q; @@ -2378,7 +2617,10 @@ void PackLinuxElf32x86::unpack(OutputFile *fo) //struct { Elf32_Ehdr ehdr; Elf32_Phdr phdr; } e; } u; Elf32_Ehdr *const ehdr = (Elf32_Ehdr *) u.buf; - Elf32_Phdr const *phdr = (Elf32_Phdr *) (u.buf + sizeof(*ehdr)); + Elf32_Phdr *phdr = (Elf32_Phdr *) (u.buf + sizeof(*ehdr)); + unsigned old_data_off = 0; + unsigned old_data_len = 0; + unsigned old_dtinit = 0; unsigned szb_info = sizeof(b_info); { @@ -2392,6 +2634,7 @@ void PackLinuxElf32x86::unpack(OutputFile *fo) szb_info = 2*sizeof(unsigned); } } + old_dtinit = ehdr->e_shoff; fi->seek(overlay_offset, SEEK_SET); p_info hbuf; @@ -2407,39 +2650,86 @@ void PackLinuxElf32x86::unpack(OutputFile *fo) ph.u_len = get_te32(&bhdr.sz_unc); ph.c_len = get_te32(&bhdr.sz_cpr); ph.filter_cto = bhdr.b_cto8; + bool const is_shlib = ehdr->e_ident[12]==0xcd; - // Uncompress Ehdr and Phdrs. + // Peek at resulting Ehdr and Phdrs for use in controlling unpacking. + // Uncompress an extra time, and don't verify or update checksums. + if (ibuf.getSize() < ph.c_len || sizeof(u) < ph.u_len) + throwCompressedDataViolation(); fi->readx(ibuf, ph.c_len); decompress(ibuf, (upx_byte *)ehdr, false); + fi->seek(- (off_t) (szb_info + ph.c_len), SEEK_CUR); unsigned total_in = 0; unsigned total_out = 0; unsigned c_adler = upx_adler32(NULL, 0); unsigned u_adler = upx_adler32(NULL, 0); - // decompress PT_LOAD32 - bool first_PF_X = true; - fi->seek(- (off_t) (szb_info + ph.c_len), SEEK_CUR); - unsigned const phnum = get_te16(&ehdr->e_phnum); - for (unsigned j=0; j < phnum; ++phdr, ++j) { - if (PT_LOAD32==get_te32(&phdr->p_type)) { - if (fo) - fo->seek(get_te32(&phdr->p_offset), SEEK_SET); - if (Elf32_Phdr::PF_X & phdr->p_flags) { - unpackExtent(get_te32(&phdr->p_filesz), fo, total_in, total_out, - c_adler, u_adler, first_PF_X, szb_info); - first_PF_X = false; + if (is_shlib) { + // Unpack and output the Ehdr and Phdrs for real. + // This depends on position within input file fi. + unpackExtent(ph.u_len, fo, total_in, total_out, + c_adler, u_adler, false, szb_info); + + // The first PT_LOAD. Part is not compressed (for benefit of rtld.) + // Read enough to position the input for next unpackExtent. + fi->seek(0, SEEK_SET); + fi->readx(ibuf, overlay_offset + sizeof(hbuf) + szb_info + ph.c_len); + if (fo) { + fo->write(ibuf + ph.u_len, overlay_offset - ph.u_len); + } + // Search the Phdrs of compressed + int n_ptload = 0; + phdr = (Elf32_Phdr *)(1+ (Elf32_Ehdr *)(unsigned char *)ibuf); + for (unsigned j=0; j < e_phnum; ++phdr, ++j) { + if (PT_LOAD32==get_te32(&phdr->p_type) && 0!=n_ptload++) { + old_data_off = get_te32(&phdr->p_offset); + old_data_len = get_te32(&phdr->p_filesz); + break; } - else { - unpackExtent(get_te32(&phdr->p_filesz), fo, total_in, total_out, - c_adler, u_adler, false, szb_info); + } + + total_in = overlay_offset; + total_out = overlay_offset; + ph.u_len = 0; + + // Decompress and unfilter the tail of first PT_LOAD. + phdr = (Elf32_Phdr *)(1+ ehdr); + for (unsigned j=0; j < e_phnum; ++phdr, ++j) { + if (PT_LOAD32==get_te32(&phdr->p_type)) { + ph.u_len = get_te32(&phdr->p_filesz) - overlay_offset; + break; + } + } + unpackExtent(ph.u_len, fo, total_in, total_out, + c_adler, u_adler, false, szb_info); + } + else { // main executable + // Decompress each PT_LOAD. + bool first_PF_X = true; + for (unsigned j=0; j < e_phnum; ++phdr, ++j) { + if (PT_LOAD32==get_te32(&phdr->p_type)) { + unsigned const filesz = get_te32(&phdr->p_filesz); + unsigned const offset = get_te32(&phdr->p_offset); + if (fo) + fo->seek(offset, SEEK_SET); + if (Elf32_Phdr::PF_X & get_te32(&phdr->p_flags)) { + unpackExtent(filesz, fo, total_in, total_out, + c_adler, u_adler, first_PF_X, szb_info); + first_PF_X = false; + } + else { + unpackExtent(filesz, fo, total_in, total_out, + c_adler, u_adler, false, szb_info); + } } } } + // The gaps between PT_LOAD and after last PT_LOAD phdr = (Elf32_Phdr *) (u.buf + sizeof(*ehdr)); - for (unsigned j = 0; j < phnum; ++j) { - unsigned const size = find_LOAD_gap(phdr, j, phnum); + for (unsigned j = 0; j < e_phnum; ++j) { + unsigned const size = find_LOAD_gap(phdr, j, e_phnum); if (size) { unsigned const where = get_te32(&phdr[j].p_offset) + get_te32(&phdr[j].p_filesz); @@ -2464,6 +2754,45 @@ void PackLinuxElf32x86::unpack(OutputFile *fo) throwCompressedDataViolation(); } + if (is_shlib) { // the non-first PT_LOAD + int n_ptload = 0; + unsigned load_off = 0; + phdr = (Elf32_Phdr *) (u.buf + sizeof(*ehdr)); + for (unsigned j= 0; j < e_phnum; ++j, ++phdr) { + if (PT_LOAD32==get_te32(&phdr->p_type) && 0!=n_ptload++) { + load_off = get_te32(&phdr->p_offset); + fi->seek(old_data_off, SEEK_SET); + fi->readx(ibuf, old_data_len); + total_in += old_data_len; + total_out += old_data_len; + if (fo) { + fo->seek(get_te32(&phdr->p_offset), SEEK_SET); + fo->rewrite(ibuf, old_data_len); + } + } + } + // Restore DT_INIT.d_val + phdr = (Elf32_Phdr *) (u.buf + sizeof(*ehdr)); + for (unsigned j= 0; j < e_phnum; ++j, ++phdr) { + if (phdr->PT_DYNAMIC==get_te32(&phdr->p_type)) { + unsigned const dyn_off = get_te32(&phdr->p_offset); + unsigned const dyn_len = get_te32(&phdr->p_filesz); + Elf32_Dyn *dyn = (Elf32_Dyn *)((unsigned char *)ibuf + + (dyn_off - load_off)); + for (unsigned j= 0; j < dyn_len; ++dyn, j += sizeof(*dyn)) { + if (dyn->DT_INIT==get_te32(&dyn->d_tag)) { + if (fo) { + fo->seek(sizeof(unsigned) + j + dyn_off, SEEK_SET); + fo->rewrite(&old_dtinit, sizeof(old_dtinit)); + fo->seek(0, SEEK_END); + } + break; + } + } + } + } + } + // update header with totals ph.c_len = total_in; ph.u_len = total_out; diff --git a/src/p_lx_elf.h b/src/p_lx_elf.h index 228f0822..9040121b 100644 --- a/src/p_lx_elf.h +++ b/src/p_lx_elf.h @@ -63,7 +63,12 @@ protected: virtual void addStubEntrySections(Filter const *); virtual void unpack(OutputFile *fo) = 0; + virtual unsigned elf_get_offset_from_address(unsigned) const = 0; + virtual void const *elf_find_dynamic(unsigned) const = 0; + virtual uint64_t elf_unsigned_dynamic(unsigned) const = 0; + protected: + unsigned e_phnum; /* Program header table entry count */ char *file_image; // if ET_DYN investigation char const *dynstr; // from DT_STRTAB @@ -72,6 +77,10 @@ protected: unsigned sz_pack2; // after pack2(), before loader unsigned lg2_page; // log2(PAGE_SIZE) unsigned page_size; // 1u< + + John F. Reiser + + */ + + +#define STUB_I386_LINUX_SHLIB_INIT_SIZE 37710 +#define STUB_I386_LINUX_SHLIB_INIT_ADLER32 0x5441e027 +#define STUB_I386_LINUX_SHLIB_INIT_CRC32 0xa4b5d2a6 + +unsigned char stub_i386_linux_shlib_init[37710] = { +/* 0x0000 */ 127, 69, 76, 70, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, +/* 0x0010 */ 1, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +/* 0x0020 */ 40, 35, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 0, 40, 0, +/* 0x0030 */ 243, 0,240, 0,204, 80, 96,137,229,232, 49, 0, 0, 0, 96,139, +/* 0x0040 */ 116, 36, 36,139,124, 36, 44,131,205,255,235, 3,164,235, 3,138, +/* 0x0050 */ 6, 70,136, 7, 71, 1,219,117, 7,139, 30,131,238,252, 17,219, +/* 0x0060 */ 114, 1, 49,192, 64,138, 7,114,255,184, 1, 0, 0, 0, 1,219, +/* 0x0070 */ 117, 7,139, 30,131,238,252, 17,219, 17,192, 1,219,117, 7,139, +/* 0x0080 */ 30,131,238,252, 17,219,115,255, 1,219,115,255,117, 9,139, 30, +/* 0x0090 */ 131,238,252, 17,219,115,255, 49,201,131,232, 3,114, 13,193,224, +/* 0x00a0 */ 8,138, 6, 70,131,240,255,116,255,137,197, 1,219,117, 7,139, +/* 0x00b0 */ 30,131,238,252, 17,219, 17,201, 1,219,117, 7,139, 30,131,238, +/* 0x00c0 */ 252, 17,219, 17,201,117,255, 65, 1,219,117, 7,139, 30,131,238, +/* 0x00d0 */ 252, 17,219, 17,201, 1,219,117, 7,139, 30,131,238,252, 17,219, +/* 0x00e0 */ 115, 48, 1,219,115, 48,117, 9,139, 30,131,238,252, 17,219,115, +/* 0x00f0 */ 48, 65, 65,131,193, 2,129,253, 0,243,255,255,131,209, 1, 86, +/* 0x0100 */ 141, 52, 47,243,164, 94,233,252,255,255,255,141, 20, 47,131,253, +/* 0x0110 */ 252,138, 4, 15,118,255,138, 2, 66,136, 7, 71, 73,117,247,233, +/* 0x0120 */ 252,255,255,255,139, 2,131,194, 4,137, 7,131,199, 4,131,233, +/* 0x0130 */ 4,119,241, 1,207,233,252,255,255,255,235, 3,164,235, 3,138, +/* 0x0140 */ 6, 70,136, 7, 71, 1,219,117, 7,139, 30,131,238,252, 17,219, +/* 0x0150 */ 114, 1, 49,192, 64,138, 7,114,255,184, 1, 0, 0, 0, 1,219, +/* 0x0160 */ 117, 7,139, 30,131,238,252, 17,219, 17,192, 1,219,117, 7,139, +/* 0x0170 */ 30,131,238,252, 17,219,114, 15, 1,219,115, 11,117, 15,139, 30, +/* 0x0180 */ 131,238,252, 17,219,114, 15, 72, 1,219,117, 7,139, 30,131,238, +/* 0x0190 */ 252, 17,219, 17,192,235,255, 49,201,131,232, 3,114, 17,193,224, +/* 0x01a0 */ 8,138, 6, 70,131,240,255,116,255,209,248,137,197,235, 11, 1, +/* 0x01b0 */ 219,117, 7,139, 30,131,238,252, 17,219, 17,201, 1,219,117, 7, +/* 0x01c0 */ 139, 30,131,238,252, 17,219, 17,201,117,255, 65, 1,219,117, 7, +/* 0x01d0 */ 139, 30,131,238,252, 17,219, 17,201, 1,219,117, 7,139, 30,131, +/* 0x01e0 */ 238,252, 17,219,115, 68, 1,219,115, 68,117, 9,139, 30,131,238, +/* 0x01f0 */ 252, 17,219,115, 68, 65, 65,131,193, 2,129,253, 0,251,255,255, +/* 0x0200 */ 131,209, 1, 86,141, 52, 47,243,164, 94,233,252,255,255,255,141, +/* 0x0210 */ 20, 47,131,253,252,138, 4, 15,118,255,138, 2, 66,136, 7, 71, +/* 0x0220 */ 73,117,247,233,252,255,255,255,139, 2,131,194, 4,137, 7,131, +/* 0x0230 */ 199, 4,131,233, 4,119,241, 1,207,233,252,255,255,255,235, 3, +/* 0x0240 */ 164,235, 3,138, 6, 70,136, 7, 71, 1,219,117, 7,139, 30,131, +/* 0x0250 */ 238,252, 17,219,114, 1, 49,192, 64,138, 7,114,255,184, 1, 0, +/* 0x0260 */ 0, 0, 1,219,117, 7,139, 30,131,238,252, 17,219, 17,192, 1, +/* 0x0270 */ 219,117, 7,139, 30,131,238,252, 17,219,114, 30, 1,219,115, 11, +/* 0x0280 */ 117, 30,139, 30,131,238,252, 17,219,114, 30, 72, 1,219,117, 7, +/* 0x0290 */ 139, 30,131,238,252, 17,219, 17,192,235,255, 1,219,117, 7,139, +/* 0x02a0 */ 30,131,238,252, 17,219, 17,201,235,255, 49,201,131,232, 3,114, +/* 0x02b0 */ 17,193,224, 8,138, 6, 70,131,240,255,116,255,209,248,137,197, +/* 0x02c0 */ 235, 11, 1,219,117, 7,139, 30,131,238,252, 17,219,114,204, 65, +/* 0x02d0 */ 1,219,117, 7,139, 30,131,238,252, 17,219,114,190, 1,219,117, +/* 0x02e0 */ 7,139, 30,131,238,252, 17,219, 17,201, 1,219,117, 7,139, 30, +/* 0x02f0 */ 131,238,252, 17,219,115, 81, 1,219,115, 81,117, 9,139, 30,131, +/* 0x0300 */ 238,252, 17,219,115, 81, 65, 65,131,193, 2,129,253, 0,251,255, +/* 0x0310 */ 255,131,209, 2, 86,141, 52, 47,243,164, 94,233,252,255,255,255, +/* 0x0320 */ 141, 20, 47,131,253,252,138, 4, 15,118,255,138, 2, 66,136, 7, +/* 0x0330 */ 71, 73,117,247,233,252,255,255,255,139, 2,131,194, 4,137, 7, +/* 0x0340 */ 131,199, 4,131,233, 4,119,241, 1,207,233,252,255,255,255,137, +/* 0x0350 */ 229,141,156, 36, 0, 0, 0, 0, 49,192, 80, 57,220,117,251, 70, +/* 0x0360 */ 70, 83,104, 0, 0, 0, 0, 87,131,195, 4, 83,104, 0, 0, 0, +/* 0x0370 */ 0, 86,131,195, 4, 83, 80,199, 3, 0, 0, 0, 0,137,229,139, +/* 0x0380 */ 85, 40,172, 74,136,193, 36, 7,192,233, 3,187, 0,253,255,255, +/* 0x0390 */ 211,227,141,164, 92,144,241,255,255,131,228,224,106, 0,106, 0, +/* 0x03a0 */ 137,227, 83,131,195, 4,139, 77, 48,255, 49, 87, 83,131,195, 4, +/* 0x03b0 */ 136, 67, 2,172, 74,136,193, 36, 15,136, 3,192,233, 4,136, 75, +/* 0x03c0 */ 1, 82, 86, 83, 80, 85, 87, 86, 83,131,236,124,139,148, 36,144, +/* 0x03d0 */ 0, 0, 0,199, 68, 36,116, 0, 0, 0, 0,198, 68, 36,115, 0, +/* 0x03e0 */ 139,172, 36,156, 0, 0, 0,141, 66, 4,137, 68, 36,120,184, 1, +/* 0x03f0 */ 0, 0, 0, 15,182, 74, 2,137,195,211,227,137,217, 73,137, 76, +/* 0x0400 */ 36,108, 15,182, 74, 1,211,224, 72,137, 68, 36,104,139,132, 36, +/* 0x0410 */ 168, 0, 0, 0, 15,182, 50,199, 69, 0, 0, 0, 0, 0,199, 68, +/* 0x0420 */ 36, 96, 0, 0, 0, 0,199, 0, 0, 0, 0, 0,184, 0, 3, 0, +/* 0x0430 */ 0,137,116, 36,100,199, 68, 36, 92, 1, 0, 0, 0,199, 68, 36, +/* 0x0440 */ 88, 1, 0, 0, 0,199, 68, 36, 84, 1, 0, 0, 0,199, 68, 36, +/* 0x0450 */ 80, 1, 0, 0, 0, 15,182, 74, 1, 1,241,211,224,141,136, 54, +/* 0x0460 */ 7, 0, 0, 57, 76, 36,116,115, 14,139, 68, 36,120,102,199, 0, +/* 0x0470 */ 0, 4,131,192, 2,226,246,139,156, 36,148, 0, 0, 0, 49,255, +/* 0x0480 */ 199, 68, 36, 72,255,255,255,255,137,218, 3,148, 36,152, 0, 0, +/* 0x0490 */ 0,137, 84, 36, 76, 49,210, 59, 92, 36, 76, 15,132,124, 9, 0, +/* 0x04a0 */ 0, 15,182, 3,193,231, 8, 66, 67, 9,199,131,250, 4,126,231, +/* 0x04b0 */ 139,140, 36,164, 0, 0, 0, 57, 76, 36,116, 15,131,100, 9, 0, +/* 0x04c0 */ 0,139,116, 36,116, 35,116, 36,108,139, 68, 36, 96,139, 84, 36, +/* 0x04d0 */ 120,193,224, 4,137,116, 36, 68, 1,240,129,124, 36, 72,255,255, +/* 0x04e0 */ 255, 0,141, 44, 66,119, 24, 59, 92, 36, 76, 15,132, 44, 9, 0, +/* 0x04f0 */ 0,193,100, 36, 72, 8, 15,182, 3,193,231, 8, 67, 9,199,139, +/* 0x0500 */ 68, 36, 72,102,139, 85, 0,193,232, 11, 15,183,202, 15,175,193, +/* 0x0510 */ 57,199, 15,131,221, 1, 0, 0,137, 68, 36, 72,184, 0, 8, 0, +/* 0x0520 */ 0, 41,200,138, 76, 36,100,193,248, 5,190, 1, 0, 0, 0,141, +/* 0x0530 */ 4, 2, 15,182, 84, 36,115,102,137, 69, 0,139, 68, 36,116, 35, +/* 0x0540 */ 68, 36,104,139,108, 36,120,211,224,185, 8, 0, 0, 0, 43, 76, +/* 0x0550 */ 36,100,211,250, 1,208,105,192, 0, 6, 0, 0,131,124, 36, 96, +/* 0x0560 */ 6,141,132, 5,108, 14, 0, 0,137, 68, 36, 20, 15,142,202, 0, +/* 0x0570 */ 0, 0,139, 68, 36,116, 43, 68, 36, 92,139,148, 36,160, 0, 0, +/* 0x0580 */ 0, 15,182, 4, 2,137, 68, 36, 64,209,100, 36, 64,139, 76, 36, +/* 0x0590 */ 64,141, 20, 54,139,108, 36, 20,129,225, 0, 1, 0, 0,129,124, +/* 0x05a0 */ 36, 72,255,255,255, 0,141, 68, 77, 0,137, 76, 36, 60,141, 44, +/* 0x05b0 */ 16,119, 24, 59, 92, 36, 76, 15,132, 96, 8, 0, 0,193,100, 36, +/* 0x05c0 */ 72, 8, 15,182, 3,193,231, 8, 67, 9,199,139, 68, 36, 72,102, +/* 0x05d0 */ 139,141, 0, 2, 0, 0,193,232, 11, 15,183,241, 15,175,198, 57, +/* 0x05e0 */ 199,115, 35,137, 68, 36, 72,184, 0, 8, 0, 0, 41,240,137,214, +/* 0x05f0 */ 193,248, 5,131,124, 36, 60, 0,141, 4, 1,102,137,133, 0, 2, +/* 0x0600 */ 0, 0,116, 34,235, 46, 41, 68, 36, 72, 41,199,137,200,141,114, +/* 0x0610 */ 1,102,193,232, 5,102, 41,193,131,124, 36, 60, 0,102,137,141, +/* 0x0620 */ 0, 2, 0, 0,116, 14,129,254,255, 0, 0, 0, 15,142, 87,255, +/* 0x0630 */ 255,255,235,121,129,254,255, 0, 0, 0,127,113,141, 20, 54,139, +/* 0x0640 */ 108, 36, 20, 1,213,129,124, 36, 72,255,255,255, 0,119, 24, 59, +/* 0x0650 */ 92, 36, 76, 15,132,196, 7, 0, 0,193,100, 36, 72, 8, 15,182, +/* 0x0660 */ 3,193,231, 8, 67, 9,199,139, 68, 36, 72,102,139, 77, 0,193, +/* 0x0670 */ 232, 11, 15,183,241, 15,175,198, 57,199,115, 25,137, 68, 36, 72, +/* 0x0680 */ 184, 0, 8, 0, 0, 41,240,137,214,193,248, 5,141, 4, 1,102, +/* 0x0690 */ 137, 69, 0,235,159, 41, 68, 36, 72, 41,199,137,200,141,114, 1, +/* 0x06a0 */ 102,193,232, 5,102, 41,193,102,137, 77, 0,235,135,139, 84, 36, +/* 0x06b0 */ 116,137,240,139,140, 36,160, 0, 0, 0,136, 68, 36,115,136, 4, +/* 0x06c0 */ 10, 66,131,124, 36, 96, 3,137, 84, 36,116,127, 13,199, 68, 36, +/* 0x06d0 */ 96, 0, 0, 0, 0,233, 27, 7, 0, 0,131,124, 36, 96, 9,127, +/* 0x06e0 */ 10,131,108, 36, 96, 3,233, 10, 7, 0, 0,131,108, 36, 96, 6, +/* 0x06f0 */ 233, 0, 7, 0, 0,139, 76, 36, 72, 41,199,139,116, 36, 96, 41, +/* 0x0700 */ 193,137,208,102,193,232, 5,102, 41,194,129,249,255,255,255, 0, +/* 0x0710 */ 102,137, 85, 0,139,108, 36,120,141,116,117, 0,137,116, 36, 56, +/* 0x0720 */ 119, 22, 59, 92, 36, 76, 15,132,241, 6, 0, 0, 15,182, 3,193, +/* 0x0730 */ 231, 8,193,225, 8, 67, 9,199,139,108, 36, 56,137,200,193,232, +/* 0x0740 */ 11,102,139,149,128, 1, 0, 0, 15,183,234, 15,175,197, 57,199, +/* 0x0750 */ 115, 82,137,198,184, 0, 8, 0, 0, 41,232,139,108, 36, 88,193, +/* 0x0760 */ 248, 5,139, 76, 36, 84,141, 4, 2,139, 84, 36, 56,137, 76, 36, +/* 0x0770 */ 80,139, 76, 36,120,102,137,130,128, 1, 0, 0,139, 68, 36, 92, +/* 0x0780 */ 137,108, 36, 84,137, 68, 36, 88, 49,192,131,124, 36, 96, 6, 15, +/* 0x0790 */ 159,192,129,193,100, 6, 0, 0,141, 4, 64,137, 68, 36, 96,233, +/* 0x07a0 */ 116, 2, 0, 0,137,206, 41,199, 41,198,137,208,102,193,232, 5, +/* 0x07b0 */ 139, 76, 36, 56,102, 41,194,129,254,255,255,255, 0,102,137,145, +/* 0x07c0 */ 128, 1, 0, 0,119, 22, 59, 92, 36, 76, 15,132, 77, 6, 0, 0, +/* 0x07d0 */ 15,182, 3,193,231, 8,193,230, 8, 67, 9,199,139,108, 36, 56, +/* 0x07e0 */ 137,242,193,234, 11,102,139,141,152, 1, 0, 0, 15,183,193, 15, +/* 0x07f0 */ 175,208, 57,215, 15,131,227, 0, 0, 0,189, 0, 8, 0, 0,137, +/* 0x0800 */ 214, 41,197,199, 68, 36, 52, 0, 8, 0, 0,137,232,193,248, 5, +/* 0x0810 */ 141, 4, 1,139, 76, 36, 56,102,137,129,152, 1, 0, 0,139, 68, +/* 0x0820 */ 36, 96,139, 76, 36, 68,193,224, 5, 3, 68, 36,120,129,250,255, +/* 0x0830 */ 255,255, 0,141, 44, 72,119, 22, 59, 92, 36, 76, 15,132,219, 5, +/* 0x0840 */ 0, 0, 15,182, 3,193,231, 8,193,230, 8, 67, 9,199,102,139, +/* 0x0850 */ 149,224, 1, 0, 0,137,240,193,232, 11, 15,183,202, 15,175,193, +/* 0x0860 */ 57,199,115, 96, 41, 76, 36, 52,193,124, 36, 52, 5,139,116, 36, +/* 0x0870 */ 52,137, 68, 36, 72,131,124, 36,116, 0,141, 4, 50,102,137,133, +/* 0x0880 */ 224, 1, 0, 0, 15,132,147, 5, 0, 0, 49,192,131,124, 36, 96, +/* 0x0890 */ 6,139,172, 36,160, 0, 0, 0,139, 84, 36,116, 15,159,192,141, +/* 0x08a0 */ 68, 0, 9,137, 68, 36, 96,139, 68, 36,116, 43, 68, 36, 92,138, +/* 0x08b0 */ 68, 5, 0,136, 68, 36,115,136, 4, 42, 66,137, 84, 36,116,233, +/* 0x08c0 */ 49, 5, 0, 0, 41,198, 41,199,137,208,102,193,232, 5,102, 41, +/* 0x08d0 */ 194,102,137,149,224, 1, 0, 0,233, 31, 1, 0, 0,137,200, 41, +/* 0x08e0 */ 214,102,193,232, 5,139,108, 36, 56,102, 41,193, 41,215,129,254, +/* 0x08f0 */ 255,255,255, 0,102,137,141,152, 1, 0, 0,119, 22, 59, 92, 36, +/* 0x0900 */ 76, 15,132, 22, 5, 0, 0, 15,182, 3,193,231, 8,193,230, 8, +/* 0x0910 */ 67, 9,199,139, 76, 36, 56,137,240,193,232, 11,102,139,145,176, +/* 0x0920 */ 1, 0, 0, 15,183,202, 15,175,193, 57,199,115, 35,137,198,184, +/* 0x0930 */ 0, 8, 0, 0, 41,200,139,108, 36, 56,193,248, 5,141, 4, 2, +/* 0x0940 */ 102,137,133,176, 1, 0, 0,139, 68, 36, 88,233,160, 0, 0, 0, +/* 0x0950 */ 137,241, 41,199, 41,193,137,208,102,193,232, 5,102, 41,194,139, +/* 0x0960 */ 68, 36, 56,129,249,255,255,255, 0,102,137,144,176, 1, 0, 0, +/* 0x0970 */ 119, 22, 59, 92, 36, 76, 15,132,161, 4, 0, 0, 15,182, 3,193, +/* 0x0980 */ 231, 8,193,225, 8, 67, 9,199,139,116, 36, 56,137,200,193,232, +/* 0x0990 */ 11,102,139,150,200, 1, 0, 0, 15,183,234, 15,175,197, 57,199, +/* 0x09a0 */ 115, 32,137,198,184, 0, 8, 0, 0, 41,232,139,108, 36, 56,193, +/* 0x09b0 */ 248, 5,141, 4, 2,102,137,133,200, 1, 0, 0,139, 68, 36, 84, +/* 0x09c0 */ 235, 38,137,206, 41,199, 41,198,137,208,102,193,232, 5,102, 41, +/* 0x09d0 */ 194,139, 68, 36, 56,102,137,144,200, 1, 0, 0,139, 84, 36, 84, +/* 0x09e0 */ 139, 68, 36, 80,137, 84, 36, 80,139, 76, 36, 88,137, 76, 36, 84, +/* 0x09f0 */ 139,108, 36, 92,137, 68, 36, 92,137,108, 36, 88, 49,192,131,124, +/* 0x0a00 */ 36, 96, 6,139, 76, 36,120, 15,159,192,129,193,104, 10, 0, 0, +/* 0x0a10 */ 141, 68, 64, 8,137, 68, 36, 96,129,254,255,255,255, 0,119, 22, +/* 0x0a20 */ 59, 92, 36, 76, 15,132,243, 3, 0, 0, 15,182, 3,193,231, 8, +/* 0x0a30 */ 193,230, 8, 67, 9,199,102,139, 17,137,240,193,232, 11, 15,183, +/* 0x0a40 */ 234, 15,175,197, 57,199,115, 47,137, 68, 36, 72,184, 0, 8, 0, +/* 0x0a50 */ 0, 41,232,193,100, 36, 68, 4,193,248, 5,199, 68, 36, 44, 0, +/* 0x0a60 */ 0, 0, 0,141, 4, 2,102,137, 1,139, 68, 36, 68,141, 76, 1, +/* 0x0a70 */ 4,137, 76, 36, 16,235,114, 41,198, 41,199,137,208,102,193,232, +/* 0x0a80 */ 5,102, 41,194,129,254,255,255,255, 0,102,137, 17,119, 22, 59, +/* 0x0a90 */ 92, 36, 76, 15,132,132, 3, 0, 0, 15,182, 3,193,231, 8,193, +/* 0x0aa0 */ 230, 8, 67, 9,199,102,139, 81, 2,137,240,193,232, 11, 15,183, +/* 0x0ab0 */ 234, 15,175,197, 57,199,115, 59,137, 68, 36, 72,184, 0, 8, 0, +/* 0x0ac0 */ 0, 41,232,193,100, 36, 68, 4,193,248, 5,199, 68, 36, 44, 8, +/* 0x0ad0 */ 0, 0, 0,141, 4, 2,139, 84, 36, 68,102,137, 65, 2,141,140, +/* 0x0ae0 */ 17, 4, 1, 0, 0,137, 76, 36, 16,199, 68, 36, 48, 3, 0, 0, +/* 0x0af0 */ 0,235, 47, 41,198, 41,199,137,208,137,116, 36, 72,102,193,232, +/* 0x0b00 */ 5,199, 68, 36, 44, 16, 0, 0, 0,102, 41,194,199, 68, 36, 48, +/* 0x0b10 */ 8, 0, 0, 0,102,137, 81, 2,129,193, 4, 2, 0, 0,137, 76, +/* 0x0b20 */ 36, 16,139, 76, 36, 48,186, 1, 0, 0, 0,137, 76, 36, 40,141, +/* 0x0b30 */ 44, 18,139,116, 36, 16, 1,238,129,124, 36, 72,255,255,255, 0, +/* 0x0b40 */ 119, 24, 59, 92, 36, 76, 15,132,209, 2, 0, 0,193,100, 36, 72, +/* 0x0b50 */ 8, 15,182, 3,193,231, 8, 67, 9,199,139, 68, 36, 72,102,139, +/* 0x0b60 */ 22,193,232, 11, 15,183,202, 15,175,193, 57,199,115, 24,137, 68, +/* 0x0b70 */ 36, 72,184, 0, 8, 0, 0, 41,200,193,248, 5,141, 4, 2,137, +/* 0x0b80 */ 234,102,137, 6,235, 21, 41, 68, 36, 72, 41,199,137,208,102,193, +/* 0x0b90 */ 232, 5,102, 41,194,102,137, 22,141, 85, 1,139,116, 36, 40, 78, +/* 0x0ba0 */ 137,116, 36, 40,117,137,138, 76, 36, 48,184, 1, 0, 0, 0,211, +/* 0x0bb0 */ 224, 41,194, 3, 84, 36, 44,131,124, 36, 96, 3,137, 84, 36, 12, +/* 0x0bc0 */ 15,143,231, 1, 0, 0,131, 68, 36, 96, 7,131,250, 3,137,208, +/* 0x0bd0 */ 126, 5,184, 3, 0, 0, 0,139,116, 36,120,193,224, 7,199, 68, +/* 0x0be0 */ 36, 36, 6, 0, 0, 0,141,132, 6, 96, 3, 0, 0,137, 68, 36, +/* 0x0bf0 */ 8,184, 1, 0, 0, 0,141, 44, 0,139,116, 36, 8, 1,238,129, +/* 0x0c00 */ 124, 36, 72,255,255,255, 0,119, 24, 59, 92, 36, 76, 15,132, 10, +/* 0x0c10 */ 2, 0, 0,193,100, 36, 72, 8, 15,182, 3,193,231, 8, 67, 9, +/* 0x0c20 */ 199,139, 68, 36, 72,102,139, 22,193,232, 11, 15,183,202, 15,175, +/* 0x0c30 */ 193, 57,199,115, 24,137, 68, 36, 72,184, 0, 8, 0, 0, 41,200, +/* 0x0c40 */ 193,248, 5,141, 4, 2,102,137, 6,137,232,235, 21, 41, 68, 36, +/* 0x0c50 */ 72, 41,199,137,208,102,193,232, 5,102, 41,194,141, 69, 1,102, +/* 0x0c60 */ 137, 22,139,108, 36, 36, 77,137,108, 36, 36,117,137,141, 80,192, +/* 0x0c70 */ 131,250, 3,137, 20, 36, 15,142, 39, 1, 0, 0,137,208,137,214, +/* 0x0c80 */ 209,248,131,230, 1,141, 72,255,131,206, 2,131,250, 13,137, 76, +/* 0x0c90 */ 36, 32,127, 28,139,108, 36,120,211,230, 1,210,137, 52, 36,141, +/* 0x0ca0 */ 68,117, 0, 41,208, 5, 94, 5, 0, 0,137, 68, 36, 4,235, 86, +/* 0x0cb0 */ 141, 80,251,129,124, 36, 72,255,255,255, 0,119, 24, 59, 92, 36, +/* 0x0cc0 */ 76, 15,132, 86, 1, 0, 0,193,100, 36, 72, 8, 15,182, 3,193, +/* 0x0cd0 */ 231, 8, 67, 9,199,209,108, 36, 72, 1,246, 59,124, 36, 72,114, +/* 0x0ce0 */ 7, 43,124, 36, 72,131,206, 1, 74,117,200,139, 68, 36,120,193, +/* 0x0cf0 */ 230, 4,137, 52, 36, 5, 68, 6, 0, 0,199, 68, 36, 32, 4, 0, +/* 0x0d00 */ 0, 0,137, 68, 36, 4,199, 68, 36, 28, 1, 0, 0, 0,184, 1, +/* 0x0d10 */ 0, 0, 0,139,108, 36, 4, 1,192,137, 68, 36, 24, 1,197,129, +/* 0x0d20 */ 124, 36, 72,255,255,255, 0,119, 24, 59, 92, 36, 76, 15,132,234, +/* 0x0d30 */ 0, 0, 0,193,100, 36, 72, 8, 15,182, 3,193,231, 8, 67, 9, +/* 0x0d40 */ 199,139, 68, 36, 72,102,139, 85, 0,193,232, 11, 15,183,242, 15, +/* 0x0d50 */ 175,198, 57,199,115, 27,137, 68, 36, 72,184, 0, 8, 0, 0, 41, +/* 0x0d60 */ 240,193,248, 5,141, 4, 2,102,137, 69, 0,139, 68, 36, 24,235, +/* 0x0d70 */ 31, 41, 68, 36, 72, 41,199,137,208,102,193,232, 5,102, 41,194, +/* 0x0d80 */ 139, 68, 36, 24,102,137, 85, 0,139, 84, 36, 28, 64, 9, 20, 36, +/* 0x0d90 */ 139, 76, 36, 32,209,100, 36, 28, 73,137, 76, 36, 32, 15,133,112, +/* 0x0da0 */ 255,255,255,139, 52, 36, 70,137,116, 36, 92,116, 89,139, 76, 36, +/* 0x0db0 */ 12,139,108, 36,116,131,193, 2, 57,108, 36, 92,119, 95,139,132, +/* 0x0dc0 */ 36,160, 0, 0, 0,137,234, 43, 68, 36, 92, 3,148, 36,160, 0, +/* 0x0dd0 */ 0, 0,141, 52, 40,138, 6, 70,136, 68, 36,115,136, 2, 66,255, +/* 0x0de0 */ 68, 36,116, 73,116, 15,139,172, 36,164, 0, 0, 0, 57,108, 36, +/* 0x0df0 */ 116,114,226,235, 17,139,132, 36,164, 0, 0, 0, 57, 68, 36,116, +/* 0x0e00 */ 15,130,187,246,255,255,129,124, 36, 72,255,255,255, 0,119, 21, +/* 0x0e10 */ 59, 92, 36, 76,184, 1, 0, 0, 0,116, 41,235, 7,184, 1, 0, +/* 0x0e20 */ 0, 0,235, 32, 67, 43,156, 36,148, 0, 0, 0, 49,192,139,148, +/* 0x0e30 */ 36,156, 0, 0, 0,139, 76, 36,116,137, 26,139,156, 36,168, 0, +/* 0x0e40 */ 0, 0,137, 11,131,196,124, 91, 94, 95, 93, 85, 87, 86, 83,131, +/* 0x0e50 */ 236,124,139,148, 36,144, 0, 0, 0,199, 68, 36,116, 0, 0, 0, +/* 0x0e60 */ 0,198, 68, 36,115, 0,139,172, 36,156, 0, 0, 0,141, 66, 4, +/* 0x0e70 */ 137, 68, 36,120,184, 1, 0, 0, 0, 15,182, 74, 2,137,195,211, +/* 0x0e80 */ 227,137,217, 73,137, 76, 36,108, 15,182, 74, 1,211,224, 72,137, +/* 0x0e90 */ 68, 36,104,139,132, 36,168, 0, 0, 0, 15,182, 50,199, 69, 0, +/* 0x0ea0 */ 0, 0, 0, 0,199, 68, 36, 96, 0, 0, 0, 0,199, 0, 0, 0, +/* 0x0eb0 */ 0, 0,184, 0, 3, 0, 0,137,116, 36,100,199, 68, 36, 92, 1, +/* 0x0ec0 */ 0, 0, 0,199, 68, 36, 88, 1, 0, 0, 0,199, 68, 36, 84, 1, +/* 0x0ed0 */ 0, 0, 0,199, 68, 36, 80, 1, 0, 0, 0, 15,182, 74, 1, 1, +/* 0x0ee0 */ 241,211,224,141,136, 54, 7, 0, 0, 57, 76, 36,116,115, 14,139, +/* 0x0ef0 */ 68, 36,120,102,199, 0, 0, 4,131,192, 2,226,246,139,156, 36, +/* 0x0f00 */ 148, 0, 0, 0, 49,255,199, 68, 36, 72,255,255,255,255,137,218, +/* 0x0f10 */ 3,148, 36,152, 0, 0, 0,137, 84, 36, 76, 49,210, 59, 92, 36, +/* 0x0f20 */ 76, 15,132,124, 9, 0, 0, 15,182, 3,193,231, 8, 66, 67, 9, +/* 0x0f30 */ 199,131,250, 4,126,231,139,140, 36,164, 0, 0, 0, 57, 76, 36, +/* 0x0f40 */ 116, 15,131,100, 9, 0, 0,139,116, 36,116, 35,116, 36,108,139, +/* 0x0f50 */ 68, 36, 96,139, 84, 36,120,193,224, 4,137,116, 36, 68, 1,240, +/* 0x0f60 */ 129,124, 36, 72,255,255,255, 0,141, 44, 66,119, 24, 59, 92, 36, +/* 0x0f70 */ 76, 15,132, 44, 9, 0, 0,193,100, 36, 72, 8, 15,182, 3,193, +/* 0x0f80 */ 231, 8, 67, 9,199,139, 68, 36, 72,102,139, 85, 0,193,232, 11, +/* 0x0f90 */ 15,183,202, 15,175,193, 57,199, 15,131,221, 1, 0, 0,137, 68, +/* 0x0fa0 */ 36, 72,184, 0, 8, 0, 0, 41,200,138, 76, 36,100,193,248, 5, +/* 0x0fb0 */ 190, 1, 0, 0, 0,141, 4, 2, 15,182, 84, 36,115,102,137, 69, +/* 0x0fc0 */ 0,139, 68, 36,116, 35, 68, 36,104,139,108, 36,120,211,224,185, +/* 0x0fd0 */ 8, 0, 0, 0, 43, 76, 36,100,211,250, 1,208,105,192, 0, 6, +/* 0x0fe0 */ 0, 0,131,124, 36, 96, 6,141,132, 5,108, 14, 0, 0,137, 68, +/* 0x0ff0 */ 36, 20, 15,142,202, 0, 0, 0,139, 68, 36,116, 43, 68, 36, 92, +/* 0x1000 */ 139,148, 36,160, 0, 0, 0, 15,182, 4, 2,137, 68, 36, 64,209, +/* 0x1010 */ 100, 36, 64,139, 76, 36, 64,141, 20, 54,139,108, 36, 20,129,225, +/* 0x1020 */ 0, 1, 0, 0,129,124, 36, 72,255,255,255, 0,141, 68, 77, 0, +/* 0x1030 */ 137, 76, 36, 60,141, 44, 16,119, 24, 59, 92, 36, 76, 15,132, 96, +/* 0x1040 */ 8, 0, 0,193,100, 36, 72, 8, 15,182, 3,193,231, 8, 67, 9, +/* 0x1050 */ 199,139, 68, 36, 72,102,139,141, 0, 2, 0, 0,193,232, 11, 15, +/* 0x1060 */ 183,241, 15,175,198, 57,199,115, 35,137, 68, 36, 72,184, 0, 8, +/* 0x1070 */ 0, 0, 41,240,137,214,193,248, 5,131,124, 36, 60, 0,141, 4, +/* 0x1080 */ 1,102,137,133, 0, 2, 0, 0,116, 34,235, 46, 41, 68, 36, 72, +/* 0x1090 */ 41,199,137,200,141,114, 1,102,193,232, 5,102, 41,193,131,124, +/* 0x10a0 */ 36, 60, 0,102,137,141, 0, 2, 0, 0,116, 14,129,254,255, 0, +/* 0x10b0 */ 0, 0, 15,142, 87,255,255,255,235,121,129,254,255, 0, 0, 0, +/* 0x10c0 */ 127,113,141, 20, 54,139,108, 36, 20, 1,213,129,124, 36, 72,255, +/* 0x10d0 */ 255,255, 0,119, 24, 59, 92, 36, 76, 15,132,196, 7, 0, 0,193, +/* 0x10e0 */ 100, 36, 72, 8, 15,182, 3,193,231, 8, 67, 9,199,139, 68, 36, +/* 0x10f0 */ 72,102,139, 77, 0,193,232, 11, 15,183,241, 15,175,198, 57,199, +/* 0x1100 */ 115, 25,137, 68, 36, 72,184, 0, 8, 0, 0, 41,240,137,214,193, +/* 0x1110 */ 248, 5,141, 4, 1,102,137, 69, 0,235,159, 41, 68, 36, 72, 41, +/* 0x1120 */ 199,137,200,141,114, 1,102,193,232, 5,102, 41,193,102,137, 77, +/* 0x1130 */ 0,235,135,139, 84, 36,116,137,240,139,140, 36,160, 0, 0, 0, +/* 0x1140 */ 136, 68, 36,115,136, 4, 10, 66,131,124, 36, 96, 3,137, 84, 36, +/* 0x1150 */ 116,127, 13,199, 68, 36, 96, 0, 0, 0, 0,233, 27, 7, 0, 0, +/* 0x1160 */ 131,124, 36, 96, 9,127, 10,131,108, 36, 96, 3,233, 10, 7, 0, +/* 0x1170 */ 0,131,108, 36, 96, 6,233, 0, 7, 0, 0,139, 76, 36, 72, 41, +/* 0x1180 */ 199,139,116, 36, 96, 41,193,137,208,102,193,232, 5,102, 41,194, +/* 0x1190 */ 129,249,255,255,255, 0,102,137, 85, 0,139,108, 36,120,141,116, +/* 0x11a0 */ 117, 0,137,116, 36, 56,119, 22, 59, 92, 36, 76, 15,132,241, 6, +/* 0x11b0 */ 0, 0, 15,182, 3,193,231, 8,193,225, 8, 67, 9,199,139,108, +/* 0x11c0 */ 36, 56,137,200,193,232, 11,102,139,149,128, 1, 0, 0, 15,183, +/* 0x11d0 */ 234, 15,175,197, 57,199,115, 82,137,198,184, 0, 8, 0, 0, 41, +/* 0x11e0 */ 232,139,108, 36, 88,193,248, 5,139, 76, 36, 84,141, 4, 2,139, +/* 0x11f0 */ 84, 36, 56,137, 76, 36, 80,139, 76, 36,120,102,137,130,128, 1, +/* 0x1200 */ 0, 0,139, 68, 36, 92,137,108, 36, 84,137, 68, 36, 88, 49,192, +/* 0x1210 */ 131,124, 36, 96, 6, 15,159,192,129,193,100, 6, 0, 0,141, 4, +/* 0x1220 */ 64,137, 68, 36, 96,233,116, 2, 0, 0,137,206, 41,199, 41,198, +/* 0x1230 */ 137,208,102,193,232, 5,139, 76, 36, 56,102, 41,194,129,254,255, +/* 0x1240 */ 255,255, 0,102,137,145,128, 1, 0, 0,119, 22, 59, 92, 36, 76, +/* 0x1250 */ 15,132, 77, 6, 0, 0, 15,182, 3,193,231, 8,193,230, 8, 67, +/* 0x1260 */ 9,199,139,108, 36, 56,137,242,193,234, 11,102,139,141,152, 1, +/* 0x1270 */ 0, 0, 15,183,193, 15,175,208, 57,215, 15,131,227, 0, 0, 0, +/* 0x1280 */ 189, 0, 8, 0, 0,137,214, 41,197,199, 68, 36, 52, 0, 8, 0, +/* 0x1290 */ 0,137,232,193,248, 5,141, 4, 1,139, 76, 36, 56,102,137,129, +/* 0x12a0 */ 152, 1, 0, 0,139, 68, 36, 96,139, 76, 36, 68,193,224, 5, 3, +/* 0x12b0 */ 68, 36,120,129,250,255,255,255, 0,141, 44, 72,119, 22, 59, 92, +/* 0x12c0 */ 36, 76, 15,132,219, 5, 0, 0, 15,182, 3,193,231, 8,193,230, +/* 0x12d0 */ 8, 67, 9,199,102,139,149,224, 1, 0, 0,137,240,193,232, 11, +/* 0x12e0 */ 15,183,202, 15,175,193, 57,199,115, 96, 41, 76, 36, 52,193,124, +/* 0x12f0 */ 36, 52, 5,139,116, 36, 52,137, 68, 36, 72,131,124, 36,116, 0, +/* 0x1300 */ 141, 4, 50,102,137,133,224, 1, 0, 0, 15,132,147, 5, 0, 0, +/* 0x1310 */ 49,192,131,124, 36, 96, 6,139,172, 36,160, 0, 0, 0,139, 84, +/* 0x1320 */ 36,116, 15,159,192,141, 68, 0, 9,137, 68, 36, 96,139, 68, 36, +/* 0x1330 */ 116, 43, 68, 36, 92,138, 68, 5, 0,136, 68, 36,115,136, 4, 42, +/* 0x1340 */ 66,137, 84, 36,116,233, 49, 5, 0, 0, 41,198, 41,199,137,208, +/* 0x1350 */ 102,193,232, 5,102, 41,194,102,137,149,224, 1, 0, 0,233, 31, +/* 0x1360 */ 1, 0, 0,137,200, 41,214,102,193,232, 5,139,108, 36, 56,102, +/* 0x1370 */ 41,193, 41,215,129,254,255,255,255, 0,102,137,141,152, 1, 0, +/* 0x1380 */ 0,119, 22, 59, 92, 36, 76, 15,132, 22, 5, 0, 0, 15,182, 3, +/* 0x1390 */ 193,231, 8,193,230, 8, 67, 9,199,139, 76, 36, 56,137,240,193, +/* 0x13a0 */ 232, 11,102,139,145,176, 1, 0, 0, 15,183,202, 15,175,193, 57, +/* 0x13b0 */ 199,115, 35,137,198,184, 0, 8, 0, 0, 41,200,139,108, 36, 56, +/* 0x13c0 */ 193,248, 5,141, 4, 2,102,137,133,176, 1, 0, 0,139, 68, 36, +/* 0x13d0 */ 88,233,160, 0, 0, 0,137,241, 41,199, 41,193,137,208,102,193, +/* 0x13e0 */ 232, 5,102, 41,194,139, 68, 36, 56,129,249,255,255,255, 0,102, +/* 0x13f0 */ 137,144,176, 1, 0, 0,119, 22, 59, 92, 36, 76, 15,132,161, 4, +/* 0x1400 */ 0, 0, 15,182, 3,193,231, 8,193,225, 8, 67, 9,199,139,116, +/* 0x1410 */ 36, 56,137,200,193,232, 11,102,139,150,200, 1, 0, 0, 15,183, +/* 0x1420 */ 234, 15,175,197, 57,199,115, 32,137,198,184, 0, 8, 0, 0, 41, +/* 0x1430 */ 232,139,108, 36, 56,193,248, 5,141, 4, 2,102,137,133,200, 1, +/* 0x1440 */ 0, 0,139, 68, 36, 84,235, 38,137,206, 41,199, 41,198,137,208, +/* 0x1450 */ 102,193,232, 5,102, 41,194,139, 68, 36, 56,102,137,144,200, 1, +/* 0x1460 */ 0, 0,139, 84, 36, 84,139, 68, 36, 80,137, 84, 36, 80,139, 76, +/* 0x1470 */ 36, 88,137, 76, 36, 84,139,108, 36, 92,137, 68, 36, 92,137,108, +/* 0x1480 */ 36, 88, 49,192,131,124, 36, 96, 6,139, 76, 36,120, 15,159,192, +/* 0x1490 */ 129,193,104, 10, 0, 0,141, 68, 64, 8,137, 68, 36, 96,129,254, +/* 0x14a0 */ 255,255,255, 0,119, 22, 59, 92, 36, 76, 15,132,243, 3, 0, 0, +/* 0x14b0 */ 15,182, 3,193,231, 8,193,230, 8, 67, 9,199,102,139, 17,137, +/* 0x14c0 */ 240,193,232, 11, 15,183,234, 15,175,197, 57,199,115, 47,137, 68, +/* 0x14d0 */ 36, 72,184, 0, 8, 0, 0, 41,232,193,100, 36, 68, 4,193,248, +/* 0x14e0 */ 5,199, 68, 36, 44, 0, 0, 0, 0,141, 4, 2,102,137, 1,139, +/* 0x14f0 */ 68, 36, 68,141, 76, 1, 4,137, 76, 36, 16,235,114, 41,198, 41, +/* 0x1500 */ 199,137,208,102,193,232, 5,102, 41,194,129,254,255,255,255, 0, +/* 0x1510 */ 102,137, 17,119, 22, 59, 92, 36, 76, 15,132,132, 3, 0, 0, 15, +/* 0x1520 */ 182, 3,193,231, 8,193,230, 8, 67, 9,199,102,139, 81, 2,137, +/* 0x1530 */ 240,193,232, 11, 15,183,234, 15,175,197, 57,199,115, 59,137, 68, +/* 0x1540 */ 36, 72,184, 0, 8, 0, 0, 41,232,193,100, 36, 68, 4,193,248, +/* 0x1550 */ 5,199, 68, 36, 44, 8, 0, 0, 0,141, 4, 2,139, 84, 36, 68, +/* 0x1560 */ 102,137, 65, 2,141,140, 17, 4, 1, 0, 0,137, 76, 36, 16,199, +/* 0x1570 */ 68, 36, 48, 3, 0, 0, 0,235, 47, 41,198, 41,199,137,208,137, +/* 0x1580 */ 116, 36, 72,102,193,232, 5,199, 68, 36, 44, 16, 0, 0, 0,102, +/* 0x1590 */ 41,194,199, 68, 36, 48, 8, 0, 0, 0,102,137, 81, 2,129,193, +/* 0x15a0 */ 4, 2, 0, 0,137, 76, 36, 16,139, 76, 36, 48,186, 1, 0, 0, +/* 0x15b0 */ 0,137, 76, 36, 40,141, 44, 18,139,116, 36, 16, 1,238,129,124, +/* 0x15c0 */ 36, 72,255,255,255, 0,119, 24, 59, 92, 36, 76, 15,132,209, 2, +/* 0x15d0 */ 0, 0,193,100, 36, 72, 8, 15,182, 3,193,231, 8, 67, 9,199, +/* 0x15e0 */ 139, 68, 36, 72,102,139, 22,193,232, 11, 15,183,202, 15,175,193, +/* 0x15f0 */ 57,199,115, 24,137, 68, 36, 72,184, 0, 8, 0, 0, 41,200,193, +/* 0x1600 */ 248, 5,141, 4, 2,137,234,102,137, 6,235, 21, 41, 68, 36, 72, +/* 0x1610 */ 41,199,137,208,102,193,232, 5,102, 41,194,102,137, 22,141, 85, +/* 0x1620 */ 1,139,116, 36, 40, 78,137,116, 36, 40,117,137,138, 76, 36, 48, +/* 0x1630 */ 184, 1, 0, 0, 0,211,224, 41,194, 3, 84, 36, 44,131,124, 36, +/* 0x1640 */ 96, 3,137, 84, 36, 12, 15,143,231, 1, 0, 0,131, 68, 36, 96, +/* 0x1650 */ 7,131,250, 3,137,208,126, 5,184, 3, 0, 0, 0,139,116, 36, +/* 0x1660 */ 120,193,224, 7,199, 68, 36, 36, 6, 0, 0, 0,141,132, 6, 96, +/* 0x1670 */ 3, 0, 0,137, 68, 36, 8,184, 1, 0, 0, 0,141, 44, 0,139, +/* 0x1680 */ 116, 36, 8, 1,238,129,124, 36, 72,255,255,255, 0,119, 24, 59, +/* 0x1690 */ 92, 36, 76, 15,132, 10, 2, 0, 0,193,100, 36, 72, 8, 15,182, +/* 0x16a0 */ 3,193,231, 8, 67, 9,199,139, 68, 36, 72,102,139, 22,193,232, +/* 0x16b0 */ 11, 15,183,202, 15,175,193, 57,199,115, 24,137, 68, 36, 72,184, +/* 0x16c0 */ 0, 8, 0, 0, 41,200,193,248, 5,141, 4, 2,102,137, 6,137, +/* 0x16d0 */ 232,235, 21, 41, 68, 36, 72, 41,199,137,208,102,193,232, 5,102, +/* 0x16e0 */ 41,194,141, 69, 1,102,137, 22,139,108, 36, 36, 77,137,108, 36, +/* 0x16f0 */ 36,117,137,141, 80,192,131,250, 3,137, 20, 36, 15,142, 39, 1, +/* 0x1700 */ 0, 0,137,208,137,214,209,248,131,230, 1,141, 72,255,131,206, +/* 0x1710 */ 2,131,250, 13,137, 76, 36, 32,127, 28,139,108, 36,120,211,230, +/* 0x1720 */ 1,210,137, 52, 36,141, 68,117, 0, 41,208, 5, 94, 5, 0, 0, +/* 0x1730 */ 137, 68, 36, 4,235, 86,141, 80,251,129,124, 36, 72,255,255,255, +/* 0x1740 */ 0,119, 24, 59, 92, 36, 76, 15,132, 86, 1, 0, 0,193,100, 36, +/* 0x1750 */ 72, 8, 15,182, 3,193,231, 8, 67, 9,199,209,108, 36, 72, 1, +/* 0x1760 */ 246, 59,124, 36, 72,114, 7, 43,124, 36, 72,131,206, 1, 74,117, +/* 0x1770 */ 200,139, 68, 36,120,193,230, 4,137, 52, 36, 5, 68, 6, 0, 0, +/* 0x1780 */ 199, 68, 36, 32, 4, 0, 0, 0,137, 68, 36, 4,199, 68, 36, 28, +/* 0x1790 */ 1, 0, 0, 0,184, 1, 0, 0, 0,139,108, 36, 4, 1,192,137, +/* 0x17a0 */ 68, 36, 24, 1,197,129,124, 36, 72,255,255,255, 0,119, 24, 59, +/* 0x17b0 */ 92, 36, 76, 15,132,234, 0, 0, 0,193,100, 36, 72, 8, 15,182, +/* 0x17c0 */ 3,193,231, 8, 67, 9,199,139, 68, 36, 72,102,139, 85, 0,193, +/* 0x17d0 */ 232, 11, 15,183,242, 15,175,198, 57,199,115, 27,137, 68, 36, 72, +/* 0x17e0 */ 184, 0, 8, 0, 0, 41,240,193,248, 5,141, 4, 2,102,137, 69, +/* 0x17f0 */ 0,139, 68, 36, 24,235, 31, 41, 68, 36, 72, 41,199,137,208,102, +/* 0x1800 */ 193,232, 5,102, 41,194,139, 68, 36, 24,102,137, 85, 0,139, 84, +/* 0x1810 */ 36, 28, 64, 9, 20, 36,139, 76, 36, 32,209,100, 36, 28, 73,137, +/* 0x1820 */ 76, 36, 32, 15,133,112,255,255,255,139, 52, 36, 70,137,116, 36, +/* 0x1830 */ 92,116, 89,139, 76, 36, 12,139,108, 36,116,131,193, 2, 57,108, +/* 0x1840 */ 36, 92,119, 95,139,132, 36,160, 0, 0, 0,137,234, 43, 68, 36, +/* 0x1850 */ 92, 3,148, 36,160, 0, 0, 0,141, 52, 40,138, 6, 70,136, 68, +/* 0x1860 */ 36,115,136, 2, 66,255, 68, 36,116, 73,116, 15,139,172, 36,164, +/* 0x1870 */ 0, 0, 0, 57,108, 36,116,114,226,235, 17,139,132, 36,164, 0, +/* 0x1880 */ 0, 0, 57, 68, 36,116, 15,130,187,246,255,255,129,124, 36, 72, +/* 0x1890 */ 255,255,255, 0,119, 21, 59, 92, 36, 76,184, 1, 0, 0, 0,116, +/* 0x18a0 */ 41,235, 7,184, 1, 0, 0, 0,235, 32, 67, 43,156, 36,148, 0, +/* 0x18b0 */ 0, 0, 49,192,139,148, 36,156, 0, 0, 0,139, 76, 36,116,137, +/* 0x18c0 */ 26,139,156, 36,168, 0, 0, 0,137, 11,131,196,124, 91, 94, 95, +/* 0x18d0 */ 93, 3,115,252, 3,123,248, 49,192,141,140, 36, 0,255,255,255, +/* 0x18e0 */ 137,236, 80, 57,204,117,251,137,236, 49,201,185, 0, 0, 0, 0, +/* 0x18f0 */ 138, 7, 71, 44,232, 60, 1,119,247,128, 63, 0,117, 4,139, 7, +/* 0x1900 */ 138, 95, 4,102,193,232, 8,134,196,193,192, 16,134,196, 41,248, +/* 0x1910 */ 128,235,232,137, 7,131,199, 5,136,216,226, 9,185, 0, 0, 0, +/* 0x1920 */ 0,176,232,176,233,242,174,117, 4,128, 63, 0,117,255,139, 7, +/* 0x1930 */ 102,193,232, 8,134,196,193,192, 16,134,196, 41,248,171,235, 4, +/* 0x1940 */ 139, 84, 36, 36, 3, 84, 36, 40, 57,214,116, 1, 72, 43,124, 36, +/* 0x1950 */ 44,139, 84, 36, 48,137, 58,137, 68, 36, 28, 97,195,235, 4, 90, +/* 0x1960 */ 88, 89,151, 96, 49,219,187, 0, 0, 0, 0,106, 15, 88,138,100, +/* 0x1970 */ 36, 32,106, 15, 91,138,124, 36, 32,138, 84, 36, 32,233,252,255, +/* 0x1980 */ 255,255, 15,183, 47, 43,110, 12, 41,221,117,255,131,237, 1,115, +/* 0x1990 */ 255,136, 95,255, 73,136, 7, 71,139, 7,156,102,193,232, 8,193, +/* 0x19a0 */ 192, 16,134,196,157,115,255,176, 0, 15,200,115,255,193,232, 1, +/* 0x19b0 */ 115, 4,254,203, 75, 35, 30,125, 2, 3, 30,137, 4,156,235,255, +/* 0x19c0 */ 141, 20, 24, 15,182,210, 35, 22, 59, 22,114, 2, 43, 22,139, 4, +/* 0x19d0 */ 148,254,203, 75, 35, 30,125, 2, 3, 30,139, 44,156,133,237,117, +/* 0x19e0 */ 9, 80,139, 70, 4,254,200, 72, 35, 6,125, 2, 3, 6, 49,237, +/* 0x19f0 */ 137, 70, 4,135,108,132, 4, 88,137, 44,148,137, 4,156, 41,248, +/* 0x1a00 */ 131,233, 4, 3, 70, 16, 1,240,137, 7,131,199, 4,235,255,233, +/* 0x1a10 */ 252,255,255,255, 80,176,233,176,232, 80,106, 0, 83,137,230, 94, +/* 0x1a20 */ 137,218,178,233,178,232, 67,106, 0,254,203, 75,117,255, 15,183, +/* 0x1a30 */ 7,131,199, 1, 60,128,114, 4, 60,143,118,255, 41,208, 43, 70, +/* 0x1a40 */ 8,131,232, 2,116,255,131,232, 1,114,255,115,255,122, 0,123, +/* 0x1a50 */ 0,248,235,255,131,233, 1,127,255,137,231,185, 4, 1, 0, 0, +/* 0x1a60 */ 139, 14,131,193, 5,139, 14,131,193, 4, 49,192,243,171,137,252, +/* 0x1a70 */ 86, 97,151, 81, 80, 82,195,137,254,235, 29,138, 7,131,199, 1, +/* 0x1a80 */ 60,128,114, 10, 60,143,119, 6,128,127,254, 15,116, 5, 44,232, +/* 0x1a90 */ 60, 1,119,255, 56, 23,117,255,139, 7,102,193,232, 8,193,192, +/* 0x1aa0 */ 16,134,196, 41,248, 1,240,137, 7,131,199, 4,131,233, 4,138, +/* 0x1ab0 */ 7,131,199, 1,226, 13,131,233, 1,127, 3, 97,195,106, 29, 90, +/* 0x1ac0 */ 232, 29, 0, 0, 0, 80, 82, 79, 84, 95, 69, 88, 69, 67,124, 80, +/* 0x1ad0 */ 82, 79, 84, 95, 87, 82, 73, 84, 69, 32,102, 97,105,108,101,100, +/* 0x1ae0 */ 46, 10, 89,106, 2, 91,106, 4, 88,205,128,179,127,106, 1, 88, +/* 0x1af0 */ 205,128, 90,141,114,230,137,241,173, 41,193,173, 1,200,137, 69, +/* 0x1b00 */ 32,173, 1,200, 80,173, 1,200,151,141,119, 12, 80, 80,173,173, +/* 0x1b10 */ 1,198,173,173,137,251,129,227,255, 15, 0, 0, 1,216, 41,223, +/* 0x1b20 */ 80, 87, 41,216, 1,223, 15,182, 78, 5, 81, 15,182, 78, 6, 81, +/* 0x1b30 */ 80,137,225, 87, 82,173,146,173, 80, 81, 87, 82, 86,139, 69,216, +/* 0x1b40 */ 3, 80,252,232, 86, 0, 0, 0,106, 0,106, 0,106, 50,106, 3, +/* 0x1b50 */ 255,117,240,255,117,236,137,217,137,227,106, 90, 88,205,128, 59, +/* 0x1b60 */ 3,116, 1,244,131,196, 24,151,139,117,244,131,193, 3,193,233, +/* 0x1b70 */ 2,243,165,255, 85,216,131,196, 20, 88,102,131,124, 36, 12, 0, +/* 0x1b80 */ 116, 5,131,192, 2,255,208,131,196, 16, 91, 89,106, 5, 90,106, +/* 0x1b90 */ 125, 88,205,128, 91, 89,106, 91, 88,195,205,128, 97,195, 94, 3, +/* 0x1ba0 */ 86,252, 1,218,106, 0,106, 0,106, 34,106, 7, 82,106, 0,137, +/* 0x1bb0 */ 217,137,227,106, 90, 88,205,128, 61, 0,240,255,255,114, 1,244, +/* 0x1bc0 */ 131,196, 24,137,203,137, 69,244,137, 85,248,151,150,139,117,236, +/* 0x1bd0 */ 131,193, 3,193,233, 2,243,165, 94, 89, 81, 87,131,193, 3,193, +/* 0x1be0 */ 233, 2,243,165,139,117,216,137,125,216,139, 78,252,243,164,150, +/* 0x1bf0 */ 87,139, 78,252,243,164,195,102,105,108,101, 32,102,111,114,109, +/* 0x1c00 */ 97,116, 32,101,108,102, 51, 50, 45,105, 51, 56, 54, 10, 10, 83, +/* 0x1c10 */ 101, 99,116,105,111,110,115, 58, 10, 73,100,120, 32, 78, 97,109, +/* 0x1c20 */ 101, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 83,105,122,101, 32, +/* 0x1c30 */ 32, 32, 32, 32, 32, 86, 77, 65, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x1c40 */ 77, 65, 32, 32, 32, 32, 32, 32, 32, 70,105,108,101, 32,111,102, +/* 0x1c50 */ 102, 32, 32, 65,108,103,110, 32, 32, 70,108, 97,103,115, 10, 32, +/* 0x1c60 */ 32, 48, 32, 76, 69, 88, 69, 67, 48, 48, 48, 32, 32, 32, 32, 32, +/* 0x1c70 */ 32, 48, 48, 48, 48, 48, 48, 48, 97, 32, 32, 48, 48, 48, 48, 48, +/* 0x1c80 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1c90 */ 48, 48, 48, 48, 48, 51, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x1ca0 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x1cb0 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 49, 32, 76, 69, 88, +/* 0x1cc0 */ 69, 67, 48, 48, 57, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x1cd0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1ce0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 51, +/* 0x1cf0 */ 101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x1d00 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 50, 32, +/* 0x1d10 */ 76, 69, 88, 69, 67, 48, 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x1d20 */ 48, 48, 48, 48, 48, 99, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x1d30 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x1d40 */ 48, 48, 51,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x1d50 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x1d60 */ 32, 51, 32, 78, 50, 66, 83, 77, 65, 49, 48, 32, 32, 32, 32, 32, +/* 0x1d70 */ 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, +/* 0x1d80 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1d90 */ 48, 48, 48, 48, 48, 52, 97, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x1da0 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x1db0 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 52, 32, 78, 50, 66, +/* 0x1dc0 */ 70, 65, 83, 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x1dd0 */ 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1de0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 52, +/* 0x1df0 */ 100, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x1e00 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x1e10 */ 76, 89, 10, 32, 32, 53, 32, 78, 50, 66, 70, 65, 83, 49, 49, 32, +/* 0x1e20 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 54, 32, 32, 48, +/* 0x1e30 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1e40 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 52,102, 32, 32, 50, 42, 42, +/* 0x1e50 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x1e60 */ 68, 79, 78, 76, 89, 10, 32, 32, 54, 32, 78, 50, 66, 68, 69, 67, +/* 0x1e70 */ 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 98, +/* 0x1e80 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x1e90 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 53, 53, 32, 32, +/* 0x1ea0 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x1eb0 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 55, 32, 78, 50, 66, +/* 0x1ec0 */ 83, 77, 65, 50, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x1ed0 */ 48, 48, 53, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x1ee0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 54, +/* 0x1ef0 */ 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x1f00 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x1f10 */ 76, 89, 10, 32, 32, 56, 32, 78, 50, 66, 70, 65, 83, 50, 48, 32, +/* 0x1f20 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 57, 32, 32, 48, +/* 0x1f30 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1f40 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 54, 53, 32, 32, 50, 42, 42, +/* 0x1f50 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x1f60 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 32, 57, +/* 0x1f70 */ 32, 78, 50, 66, 68, 69, 67, 50, 48, 32, 32, 32, 32, 32, 32, 48, +/* 0x1f80 */ 48, 48, 48, 48, 48, 48,100, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x1f90 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x1fa0 */ 48, 48, 48, 54,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x1fb0 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x1fc0 */ 32, 49, 48, 32, 78, 50, 66, 83, 77, 65, 51, 48, 32, 32, 32, 32, +/* 0x1fd0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48,100, 32, 32, 48, 48, 48, 48, +/* 0x1fe0 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x1ff0 */ 48, 48, 48, 48, 48, 48, 55, 98, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x2000 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, +/* 0x2010 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 49, 32, 78, 50, +/* 0x2020 */ 66, 70, 65, 83, 51, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x2030 */ 48, 48, 48,102, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x2040 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2050 */ 56, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x2060 */ 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, +/* 0x2070 */ 78, 76, 89, 10, 32, 49, 50, 32, 78, 50, 66, 68, 69, 67, 51, 48, +/* 0x2080 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 51,101, 32, 32, +/* 0x2090 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x20a0 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 57, 55, 32, 32, 50, 42, +/* 0x20b0 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x20c0 */ 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, +/* 0x20d0 */ 51, 32, 78, 50, 66, 83, 77, 65, 52, 48, 32, 32, 32, 32, 32, 32, +/* 0x20e0 */ 48, 48, 48, 48, 48, 48, 48,100, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x20f0 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x2100 */ 48, 48, 48, 48,100, 53, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, +/* 0x2110 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, +/* 0x2120 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 52, 32, 78, 50, 66, 70, +/* 0x2130 */ 65, 83, 52, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2140 */ 48,102, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x2150 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48,101, 50, +/* 0x2160 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x2170 */ 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x2180 */ 89, 10, 32, 49, 53, 32, 78, 50, 66, 83, 77, 65, 53, 48, 32, 32, +/* 0x2190 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, +/* 0x21a0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x21b0 */ 32, 32, 48, 48, 48, 48, 48, 48,102, 49, 32, 32, 50, 42, 42, 48, +/* 0x21c0 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x21d0 */ 79, 78, 76, 89, 10, 32, 49, 54, 32, 78, 50, 66, 70, 65, 83, 53, +/* 0x21e0 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, +/* 0x21f0 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x2200 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48,102, 51, 32, 32, 50, +/* 0x2210 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x2220 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 55, 32, 78, 50, 66, 68, +/* 0x2230 */ 69, 67, 53, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2240 */ 48, 57, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x2250 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48,102, 54, +/* 0x2260 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x2270 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 49, 56, 32, 78, +/* 0x2280 */ 50, 66, 83, 77, 65, 54, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, +/* 0x2290 */ 48, 48, 48, 48, 99, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x22a0 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x22b0 */ 48,102,102, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, +/* 0x22c0 */ 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, +/* 0x22d0 */ 79, 78, 76, 89, 10, 32, 49, 57, 32, 78, 50, 66, 70, 65, 83, 54, +/* 0x22e0 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 49, 57, 32, +/* 0x22f0 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x2300 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, 48, 98, 32, 32, 50, +/* 0x2310 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x2320 */ 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x2330 */ 50, 48, 32, 78, 50, 66, 70, 65, 83, 54, 49, 32, 32, 32, 32, 32, +/* 0x2340 */ 32, 48, 48, 48, 48, 48, 48, 49, 54, 32, 32, 48, 48, 48, 48, 48, +/* 0x2350 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x2360 */ 48, 48, 48, 48, 49, 50, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x2370 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x2380 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 50, 49, 32, 78, 50, 66, +/* 0x2390 */ 68, 69, 67, 54, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x23a0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x23b0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, 51, +/* 0x23c0 */ 97, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x23d0 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 50, 50, 32, +/* 0x23e0 */ 78, 50, 68, 83, 77, 65, 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x23f0 */ 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2400 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x2410 */ 48, 49, 51, 97, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x2420 */ 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, +/* 0x2430 */ 68, 79, 78, 76, 89, 10, 32, 50, 51, 32, 78, 50, 68, 70, 65, 83, +/* 0x2440 */ 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, +/* 0x2450 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x2460 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, 51,100, 32, 32, +/* 0x2470 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x2480 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x2490 */ 32, 50, 52, 32, 78, 50, 68, 70, 65, 83, 49, 49, 32, 32, 32, 32, +/* 0x24a0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 54, 32, 32, 48, 48, 48, 48, +/* 0x24b0 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x24c0 */ 48, 48, 48, 48, 48, 49, 51,102, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x24d0 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x24e0 */ 76, 89, 10, 32, 50, 53, 32, 78, 50, 68, 68, 69, 67, 49, 48, 32, +/* 0x24f0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 98, 32, 32, 48, +/* 0x2500 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2510 */ 48, 32, 32, 48, 48, 48, 48, 48, 49, 52, 53, 32, 32, 50, 42, 42, +/* 0x2520 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x2530 */ 68, 79, 78, 76, 89, 10, 32, 50, 54, 32, 78, 50, 68, 83, 77, 65, +/* 0x2540 */ 50, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, +/* 0x2550 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x2560 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, 53, 48, 32, 32, +/* 0x2570 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x2580 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x2590 */ 32, 50, 55, 32, 78, 50, 68, 70, 65, 83, 50, 48, 32, 32, 32, 32, +/* 0x25a0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 57, 32, 32, 48, 48, 48, 48, +/* 0x25b0 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x25c0 */ 48, 48, 48, 48, 48, 49, 53, 53, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x25d0 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, +/* 0x25e0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 50, 56, 32, 78, 50, +/* 0x25f0 */ 68, 68, 69, 67, 50, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x2600 */ 48, 48, 48,100, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x2610 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, +/* 0x2620 */ 53,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x2630 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 50, 57, +/* 0x2640 */ 32, 78, 50, 68, 83, 77, 65, 51, 48, 32, 32, 32, 32, 32, 32, 48, +/* 0x2650 */ 48, 48, 48, 48, 48, 48,100, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2660 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x2670 */ 48, 48, 49, 54, 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x2680 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, +/* 0x2690 */ 65, 68, 79, 78, 76, 89, 10, 32, 51, 48, 32, 78, 50, 68, 70, 65, +/* 0x26a0 */ 83, 51, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x26b0 */ 102, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x26c0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49, 55, 56, 32, +/* 0x26d0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x26e0 */ 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, +/* 0x26f0 */ 10, 32, 51, 49, 32, 78, 50, 68, 68, 69, 67, 51, 48, 32, 32, 32, +/* 0x2700 */ 32, 32, 32, 48, 48, 48, 48, 48, 48, 53, 50, 32, 32, 48, 48, 48, +/* 0x2710 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x2720 */ 32, 48, 48, 48, 48, 48, 49, 56, 55, 32, 32, 50, 42, 42, 48, 32, +/* 0x2730 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, +/* 0x2740 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 51, 50, 32, 78, +/* 0x2750 */ 50, 68, 83, 77, 65, 52, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, +/* 0x2760 */ 48, 48, 48, 48,100, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x2770 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x2780 */ 49,100, 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, +/* 0x2790 */ 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, +/* 0x27a0 */ 79, 78, 76, 89, 10, 32, 51, 51, 32, 78, 50, 68, 70, 65, 83, 52, +/* 0x27b0 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48,102, 32, +/* 0x27c0 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x27d0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49,101, 54, 32, 32, 50, +/* 0x27e0 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x27f0 */ 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x2800 */ 51, 52, 32, 78, 50, 68, 83, 77, 65, 53, 48, 32, 32, 32, 32, 32, +/* 0x2810 */ 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, +/* 0x2820 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x2830 */ 48, 48, 48, 48, 49,102, 53, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x2840 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x2850 */ 89, 10, 32, 51, 53, 32, 78, 50, 68, 70, 65, 83, 53, 48, 32, 32, +/* 0x2860 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, +/* 0x2870 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2880 */ 32, 32, 48, 48, 48, 48, 48, 49,102, 55, 32, 32, 50, 42, 42, 48, +/* 0x2890 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x28a0 */ 79, 78, 76, 89, 10, 32, 51, 54, 32, 78, 50, 68, 68, 69, 67, 53, +/* 0x28b0 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 57, 32, +/* 0x28c0 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x28d0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 49,102, 97, 32, 32, 50, +/* 0x28e0 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x28f0 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 51, 55, 32, 78, 50, 68, 83, +/* 0x2900 */ 77, 65, 54, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2910 */ 48, 99, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x2920 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 50, 48, 51, +/* 0x2930 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x2940 */ 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x2950 */ 89, 10, 32, 51, 56, 32, 78, 50, 68, 70, 65, 83, 54, 48, 32, 32, +/* 0x2960 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 49, 57, 32, 32, 48, 48, +/* 0x2970 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2980 */ 32, 32, 48, 48, 48, 48, 48, 50, 48,102, 32, 32, 50, 42, 42, 48, +/* 0x2990 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, +/* 0x29a0 */ 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 51, 57, 32, +/* 0x29b0 */ 78, 50, 68, 70, 65, 83, 54, 49, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x29c0 */ 48, 48, 48, 48, 49, 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x29d0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x29e0 */ 48, 50, 50, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x29f0 */ 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, +/* 0x2a00 */ 68, 79, 78, 76, 89, 10, 32, 52, 48, 32, 78, 50, 68, 68, 69, 67, +/* 0x2a10 */ 54, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2a20 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x2a30 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 50, 51,101, 32, 32, +/* 0x2a40 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x2a50 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 52, 49, 32, 78, 50, 69, +/* 0x2a60 */ 83, 77, 65, 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x2a70 */ 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x2a80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 50, 51, +/* 0x2a90 */ 101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x2aa0 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x2ab0 */ 76, 89, 10, 32, 52, 50, 32, 78, 50, 69, 70, 65, 83, 49, 48, 32, +/* 0x2ac0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, +/* 0x2ad0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2ae0 */ 48, 32, 32, 48, 48, 48, 48, 48, 50, 52, 49, 32, 32, 50, 42, 42, +/* 0x2af0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x2b00 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 52, 51, +/* 0x2b10 */ 32, 78, 50, 69, 70, 65, 83, 49, 49, 32, 32, 32, 32, 32, 32, 48, +/* 0x2b20 */ 48, 48, 48, 48, 48, 48, 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2b30 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x2b40 */ 48, 48, 50, 52, 51, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x2b50 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x2b60 */ 32, 52, 52, 32, 78, 50, 69, 68, 69, 67, 49, 48, 32, 32, 32, 32, +/* 0x2b70 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 98, 32, 32, 48, 48, 48, 48, +/* 0x2b80 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x2b90 */ 48, 48, 48, 48, 48, 50, 52, 57, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x2ba0 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x2bb0 */ 76, 89, 10, 32, 52, 53, 32, 78, 50, 69, 83, 77, 65, 50, 48, 32, +/* 0x2bc0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, +/* 0x2bd0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2be0 */ 48, 32, 32, 48, 48, 48, 48, 48, 50, 53, 52, 32, 32, 50, 42, 42, +/* 0x2bf0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x2c00 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 52, 54, +/* 0x2c10 */ 32, 78, 50, 69, 70, 65, 83, 50, 48, 32, 32, 32, 32, 32, 32, 48, +/* 0x2c20 */ 48, 48, 48, 48, 48, 48, 57, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2c30 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x2c40 */ 48, 48, 50, 53, 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x2c50 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, +/* 0x2c60 */ 65, 68, 79, 78, 76, 89, 10, 32, 52, 55, 32, 78, 50, 69, 68, 69, +/* 0x2c70 */ 67, 50, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x2c80 */ 100, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x2c90 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 50, 54, 50, 32, +/* 0x2ca0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x2cb0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 52, 56, 32, 78, 50, +/* 0x2cc0 */ 69, 83, 77, 65, 51, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x2cd0 */ 48, 48, 48,100, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x2ce0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 50, +/* 0x2cf0 */ 54,102, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x2d00 */ 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, +/* 0x2d10 */ 78, 76, 89, 10, 32, 52, 57, 32, 78, 50, 69, 70, 65, 83, 51, 48, +/* 0x2d20 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48,102, 32, 32, +/* 0x2d30 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2d40 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 50, 55, 99, 32, 32, 50, 42, +/* 0x2d50 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x2d60 */ 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 53, +/* 0x2d70 */ 48, 32, 78, 50, 69, 68, 69, 67, 51, 48, 32, 32, 32, 32, 32, 32, +/* 0x2d80 */ 48, 48, 48, 48, 48, 48, 53,102, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2d90 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x2da0 */ 48, 48, 48, 50, 56, 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, +/* 0x2db0 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, +/* 0x2dc0 */ 69, 65, 68, 79, 78, 76, 89, 10, 32, 53, 49, 32, 78, 50, 69, 83, +/* 0x2dd0 */ 77, 65, 52, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x2de0 */ 48,100, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x2df0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 50,101, 97, +/* 0x2e00 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x2e10 */ 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x2e20 */ 89, 10, 32, 53, 50, 32, 78, 50, 69, 70, 65, 83, 52, 48, 32, 32, +/* 0x2e30 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48,102, 32, 32, 48, 48, +/* 0x2e40 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2e50 */ 32, 32, 48, 48, 48, 48, 48, 50,102, 55, 32, 32, 50, 42, 42, 48, +/* 0x2e60 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, +/* 0x2e70 */ 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 53, 51, 32, +/* 0x2e80 */ 78, 50, 69, 83, 77, 65, 53, 48, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x2e90 */ 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2ea0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x2eb0 */ 48, 51, 48, 54, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x2ec0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x2ed0 */ 53, 52, 32, 78, 50, 69, 70, 65, 83, 53, 48, 32, 32, 32, 32, 32, +/* 0x2ee0 */ 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, +/* 0x2ef0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x2f00 */ 48, 48, 48, 48, 51, 48, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x2f10 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x2f20 */ 89, 10, 32, 53, 53, 32, 78, 50, 69, 68, 69, 67, 53, 48, 32, 32, +/* 0x2f30 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 57, 32, 32, 48, 48, +/* 0x2f40 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x2f50 */ 32, 32, 48, 48, 48, 48, 48, 51, 48, 98, 32, 32, 50, 42, 42, 48, +/* 0x2f60 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x2f70 */ 79, 78, 76, 89, 10, 32, 53, 54, 32, 78, 50, 69, 83, 77, 65, 54, +/* 0x2f80 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 99, 32, +/* 0x2f90 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x2fa0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 51, 49, 52, 32, 32, 50, +/* 0x2fb0 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x2fc0 */ 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, +/* 0x2fd0 */ 53, 55, 32, 78, 50, 69, 70, 65, 83, 54, 48, 32, 32, 32, 32, 32, +/* 0x2fe0 */ 32, 48, 48, 48, 48, 48, 48, 49, 57, 32, 32, 48, 48, 48, 48, 48, +/* 0x2ff0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x3000 */ 48, 48, 48, 48, 51, 50, 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x3010 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x3020 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 53, 56, 32, 78, 50, 69, +/* 0x3030 */ 70, 65, 83, 54, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x3040 */ 48, 49, 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x3050 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 51, 51, +/* 0x3060 */ 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x3070 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3080 */ 76, 89, 10, 32, 53, 57, 32, 78, 50, 69, 68, 69, 67, 54, 48, 32, +/* 0x3090 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x30a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x30b0 */ 48, 32, 32, 48, 48, 48, 48, 48, 51, 52,102, 32, 32, 50, 42, 42, +/* 0x30c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x30d0 */ 68, 79, 78, 76, 89, 10, 32, 54, 48, 32, 76, 90, 77, 65, 95, 68, +/* 0x30e0 */ 69, 67, 48, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 50,101, +/* 0x30f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3100 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 51, 52,102, 32, 32, +/* 0x3110 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3120 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3130 */ 32, 54, 49, 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 32, 32, +/* 0x3140 */ 32, 32, 48, 48, 48, 48, 48, 48, 52, 56, 32, 32, 48, 48, 48, 48, +/* 0x3150 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3160 */ 48, 48, 48, 48, 48, 51, 55,100, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3170 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3180 */ 76, 89, 10, 32, 54, 50, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, +/* 0x3190 */ 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, 97, 56, 54, 32, 32, 48, +/* 0x31a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x31b0 */ 48, 32, 32, 48, 48, 48, 48, 48, 51, 99, 53, 32, 32, 50, 42, 42, +/* 0x31c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x31d0 */ 68, 79, 78, 76, 89, 10, 32, 54, 51, 32, 76, 90, 77, 65, 95, 68, +/* 0x31e0 */ 69, 67, 50, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, 97, 56, 54, +/* 0x31f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3200 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48,101, 52, 98, 32, 32, +/* 0x3210 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3220 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 54, 52, 32, 76, 90, 77, +/* 0x3230 */ 65, 95, 68, 69, 67, 51, 48, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x3240 */ 48, 49, 97, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x3250 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 56,100, +/* 0x3260 */ 49, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x3270 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 54, 53, 32, +/* 0x3280 */ 67, 65, 76, 76, 84, 82, 48, 48, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x3290 */ 48, 48, 48, 48, 48,101, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x32a0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x32b0 */ 49, 56,101, 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x32c0 */ 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, +/* 0x32d0 */ 68, 79, 78, 76, 89, 10, 32, 54, 54, 32, 67, 84, 67, 76, 69, 86, +/* 0x32e0 */ 69, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, +/* 0x32f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3300 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 56,102, 57, 32, 32, +/* 0x3310 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3320 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3330 */ 32, 54, 55, 32, 67, 65, 76, 76, 84, 82, 48, 49, 32, 32, 32, 32, +/* 0x3340 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, 48, +/* 0x3350 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3360 */ 48, 48, 48, 48, 49, 56,102,101, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3370 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3380 */ 76, 89, 10, 32, 54, 56, 32, 67, 84, 66, 83, 72, 82, 48, 49, 32, +/* 0x3390 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, +/* 0x33a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x33b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 48, 51, 32, 32, 50, 42, 42, +/* 0x33c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x33d0 */ 68, 79, 78, 76, 89, 10, 32, 54, 57, 32, 67, 84, 66, 82, 79, 82, +/* 0x33e0 */ 48, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, +/* 0x33f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3400 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 48, 55, 32, 32, +/* 0x3410 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3420 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 55, 48, 32, 67, 84, 66, +/* 0x3430 */ 83, 87, 65, 48, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x3440 */ 48, 48, 53, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x3450 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 48, +/* 0x3460 */ 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x3470 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 55, 49, 32, +/* 0x3480 */ 67, 65, 76, 76, 84, 82, 48, 50, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x3490 */ 48, 48, 48, 48, 48,101, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x34a0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x34b0 */ 49, 57, 48,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x34c0 */ 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, +/* 0x34d0 */ 68, 79, 78, 76, 89, 10, 32, 55, 50, 32, 67, 65, 76, 76, 84, 82, +/* 0x34e0 */ 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, +/* 0x34f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3500 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 49, 99, 32, 32, +/* 0x3510 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3520 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3530 */ 32, 55, 51, 32, 67, 65, 76, 76, 84, 82, 69, 56, 32, 32, 32, 32, +/* 0x3540 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, +/* 0x3550 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3560 */ 48, 48, 48, 48, 49, 57, 50, 49, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3570 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3580 */ 76, 89, 10, 32, 55, 52, 32, 67, 65, 76, 76, 84, 82, 69, 57, 32, +/* 0x3590 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, +/* 0x35a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x35b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 50, 51, 32, 32, 50, 42, 42, +/* 0x35c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x35d0 */ 68, 79, 78, 76, 89, 10, 32, 55, 53, 32, 67, 65, 76, 76, 84, 82, +/* 0x35e0 */ 49, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, +/* 0x35f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3600 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 50, 53, 32, 32, +/* 0x3610 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3620 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3630 */ 32, 55, 54, 32, 67, 84, 67, 76, 69, 86, 69, 50, 32, 32, 32, 32, +/* 0x3640 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, 48, +/* 0x3650 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3660 */ 48, 48, 48, 48, 49, 57, 50, 57, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3670 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, +/* 0x3680 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 55, 55, 32, 67, 65, +/* 0x3690 */ 76, 76, 84, 82, 49, 50, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x36a0 */ 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x36b0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, +/* 0x36c0 */ 50,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x36d0 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 55, 56, +/* 0x36e0 */ 32, 67, 84, 66, 83, 72, 82, 49, 49, 32, 32, 32, 32, 32, 32, 48, +/* 0x36f0 */ 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3700 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x3710 */ 48, 49, 57, 51, 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x3720 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3730 */ 32, 55, 57, 32, 67, 84, 66, 82, 79, 82, 49, 49, 32, 32, 32, 32, +/* 0x3740 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, +/* 0x3750 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3760 */ 48, 48, 48, 48, 49, 57, 51, 52, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3770 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3780 */ 76, 89, 10, 32, 56, 48, 32, 67, 84, 66, 83, 87, 65, 49, 49, 32, +/* 0x3790 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, +/* 0x37a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x37b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 51, 54, 32, 32, 50, 42, 42, +/* 0x37c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x37d0 */ 68, 79, 78, 76, 89, 10, 32, 56, 49, 32, 67, 65, 76, 76, 84, 82, +/* 0x37e0 */ 49, 51, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, +/* 0x37f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3800 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 51, 98, 32, 32, +/* 0x3810 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3820 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3830 */ 32, 56, 50, 32, 76, 69, 88, 69, 67, 48, 49, 53, 32, 32, 32, 32, +/* 0x3840 */ 32, 32, 48, 48, 48, 48, 48, 48, 49,100, 32, 32, 48, 48, 48, 48, +/* 0x3850 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3860 */ 48, 48, 48, 48, 49, 57, 52, 48, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3870 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3880 */ 76, 89, 10, 32, 56, 51, 32, 76, 88, 85, 78, 70, 48, 48, 48, 32, +/* 0x3890 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, +/* 0x38a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x38b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 53,100, 32, 32, 50, 42, 42, +/* 0x38c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x38d0 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 56, 52, +/* 0x38e0 */ 32, 76, 88, 85, 78, 70, 48, 48, 50, 32, 32, 32, 32, 32, 32, 48, +/* 0x38f0 */ 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3900 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x3910 */ 48, 49, 57, 53,102, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x3920 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3930 */ 32, 56, 53, 32, 77, 82, 85, 66, 89, 84, 69, 48, 32, 32, 32, 32, +/* 0x3940 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, +/* 0x3950 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3960 */ 48, 48, 48, 48, 49, 57, 54, 52, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3970 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3980 */ 76, 89, 10, 32, 56, 54, 32, 76, 88, 77, 82, 85, 48, 48, 53, 32, +/* 0x3990 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, +/* 0x39a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x39b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 54, 54, 32, 32, 50, 42, 42, +/* 0x39c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x39d0 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 56, 55, +/* 0x39e0 */ 32, 76, 88, 77, 82, 85, 48, 48, 54, 32, 32, 32, 32, 32, 32, 48, +/* 0x39f0 */ 48, 48, 48, 48, 48, 48, 55, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3a00 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x3a10 */ 48, 49, 57, 54, 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x3a20 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3a30 */ 32, 56, 56, 32, 76, 88, 77, 82, 85, 48, 48, 55, 32, 32, 32, 32, +/* 0x3a40 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 55, 32, 32, 48, 48, 48, 48, +/* 0x3a50 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3a60 */ 48, 48, 48, 48, 49, 57, 55, 50, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3a70 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3a80 */ 76, 89, 10, 32, 56, 57, 32, 76, 88, 85, 78, 70, 48, 48, 56, 32, +/* 0x3a90 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, +/* 0x3aa0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3ab0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 55, 57, 32, 32, 50, 42, 42, +/* 0x3ac0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x3ad0 */ 68, 79, 78, 76, 89, 10, 32, 57, 48, 32, 76, 88, 85, 78, 70, 48, +/* 0x3ae0 */ 49, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, +/* 0x3af0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3b00 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 55,100, 32, 32, +/* 0x3b10 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3b20 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3b30 */ 32, 57, 49, 32, 76, 88, 74, 67, 67, 48, 49, 48, 32, 32, 32, 32, +/* 0x3b40 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, +/* 0x3b50 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3b60 */ 48, 48, 48, 48, 49, 57, 56, 50, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3b70 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3b80 */ 76, 89, 10, 32, 57, 50, 32, 76, 88, 77, 82, 85, 48, 52, 53, 32, +/* 0x3b90 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, +/* 0x3ba0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3bb0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 56, 53, 32, 32, 50, 42, 42, +/* 0x3bc0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x3bd0 */ 68, 79, 78, 76, 89, 10, 32, 57, 51, 32, 76, 88, 77, 82, 85, 48, +/* 0x3be0 */ 52, 54, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, +/* 0x3bf0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3c00 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 56, 56, 32, 32, +/* 0x3c10 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3c20 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 57, 52, 32, 76, 88, 74, +/* 0x3c30 */ 67, 67, 48, 50, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x3c40 */ 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x3c50 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 56, +/* 0x3c60 */ 97, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x3c70 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3c80 */ 76, 89, 10, 32, 57, 53, 32, 76, 88, 74, 67, 67, 48, 50, 49, 32, +/* 0x3c90 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, +/* 0x3ca0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3cb0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 56, 99, 32, 32, 50, 42, 42, +/* 0x3cc0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x3cd0 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 32, 57, 54, +/* 0x3ce0 */ 32, 76, 88, 74, 67, 67, 48, 50, 51, 32, 32, 32, 32, 32, 32, 48, +/* 0x3cf0 */ 48, 48, 48, 48, 48, 48, 55, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3d00 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x3d10 */ 48, 49, 57, 57, 49, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x3d20 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3d30 */ 32, 57, 55, 32, 76, 88, 85, 78, 70, 48, 51, 55, 32, 32, 32, 32, +/* 0x3d40 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, +/* 0x3d50 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3d60 */ 48, 48, 48, 48, 49, 57, 57, 56, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3d70 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3d80 */ 76, 89, 10, 32, 57, 56, 32, 76, 88, 85, 78, 70, 51, 56, 54, 32, +/* 0x3d90 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 49, 32, 32, 48, +/* 0x3da0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3db0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 57, 97, 32, 32, 50, 42, 42, +/* 0x3dc0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x3dd0 */ 68, 79, 78, 76, 89, 10, 32, 57, 57, 32, 76, 88, 85, 78, 70, 51, +/* 0x3de0 */ 56, 55, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 57, +/* 0x3df0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3e00 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 57, 98, 32, 32, +/* 0x3e10 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3e20 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 48, 48, 32, 76, 88, 85, +/* 0x3e30 */ 78, 70, 51, 56, 56, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x3e40 */ 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x3e50 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 97, +/* 0x3e60 */ 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x3e70 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x3e80 */ 76, 89, 10, 49, 48, 49, 32, 76, 88, 85, 78, 70, 52, 56, 54, 32, +/* 0x3e90 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, +/* 0x3ea0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x3eb0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 97, 55, 32, 32, 50, 42, 42, +/* 0x3ec0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x3ed0 */ 68, 79, 78, 76, 89, 10, 49, 48, 50, 32, 76, 88, 85, 78, 70, 52, +/* 0x3ee0 */ 56, 55, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, +/* 0x3ef0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x3f00 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 97, 98, 32, 32, +/* 0x3f10 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x3f20 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x3f30 */ 49, 48, 51, 32, 76, 88, 77, 82, 85, 48, 54, 53, 32, 32, 32, 32, +/* 0x3f40 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, 48, +/* 0x3f50 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3f60 */ 48, 48, 48, 48, 49, 57, 97,100, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x3f70 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, +/* 0x3f80 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 48, 52, 32, 77, 82, +/* 0x3f90 */ 85, 66, 89, 84, 69, 51, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x3fa0 */ 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x3fb0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, +/* 0x3fc0 */ 98, 50, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x3fd0 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 48, 53, +/* 0x3fe0 */ 32, 77, 82, 85, 65, 82, 66, 51, 48, 32, 32, 32, 32, 32, 32, 48, +/* 0x3ff0 */ 48, 48, 48, 48, 48, 48, 49, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4000 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4010 */ 48, 49, 57, 98, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x4020 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x4030 */ 49, 48, 54, 32, 77, 82, 85, 66, 73, 84, 83, 51, 32, 32, 32, 32, +/* 0x4040 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, +/* 0x4050 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x4060 */ 48, 48, 48, 48, 49, 57, 98, 53, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x4070 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x4080 */ 76, 89, 10, 49, 48, 55, 32, 77, 82, 85, 65, 82, 66, 52, 48, 32, +/* 0x4090 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, 32, 48, +/* 0x40a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x40b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 98, 55, 32, 32, 50, 42, 42, +/* 0x40c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x40d0 */ 68, 79, 78, 76, 89, 10, 49, 48, 56, 32, 76, 88, 77, 82, 85, 48, +/* 0x40e0 */ 55, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 56, +/* 0x40f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4100 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 98, 98, 32, 32, +/* 0x4110 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x4120 */ 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x4130 */ 49, 48, 57, 32, 77, 82, 85, 66, 89, 84, 69, 52, 32, 32, 32, 32, +/* 0x4140 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, +/* 0x4150 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x4160 */ 48, 48, 48, 48, 49, 57, 99, 51, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x4170 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x4180 */ 76, 89, 10, 49, 49, 48, 32, 77, 82, 85, 66, 73, 84, 83, 52, 32, +/* 0x4190 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, +/* 0x41a0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x41b0 */ 48, 32, 32, 48, 48, 48, 48, 49, 57, 99, 54, 32, 32, 50, 42, 42, +/* 0x41c0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x41d0 */ 68, 79, 78, 76, 89, 10, 49, 49, 49, 32, 77, 82, 85, 65, 82, 66, +/* 0x41e0 */ 53, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 54, +/* 0x41f0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4200 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 99, 56, 32, 32, +/* 0x4210 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x4220 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 49, 50, 32, 76, 88, 77, +/* 0x4230 */ 82, 85, 48, 56, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x4240 */ 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4250 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57, 99, +/* 0x4260 */ 101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x4270 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 49, 51, 32, +/* 0x4280 */ 77, 82, 85, 66, 89, 84, 69, 53, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x4290 */ 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x42a0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x42b0 */ 49, 57,100, 49, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x42c0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, +/* 0x42d0 */ 49, 52, 32, 77, 82, 85, 65, 82, 66, 54, 48, 32, 32, 32, 32, 32, +/* 0x42e0 */ 32, 48, 48, 48, 48, 48, 48, 48, 49, 32, 32, 48, 48, 48, 48, 48, +/* 0x42f0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4300 */ 48, 48, 48, 49, 57,100, 51, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x4310 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x4320 */ 89, 10, 49, 49, 53, 32, 77, 82, 85, 66, 73, 84, 83, 53, 32, 32, +/* 0x4330 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, +/* 0x4340 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4350 */ 32, 32, 48, 48, 48, 48, 49, 57,100, 52, 32, 32, 50, 42, 42, 48, +/* 0x4360 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x4370 */ 79, 78, 76, 89, 10, 49, 49, 54, 32, 77, 82, 85, 65, 82, 66, 55, +/* 0x4380 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 52, 32, +/* 0x4390 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x43a0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57,100, 54, 32, 32, 50, +/* 0x43b0 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x43c0 */ 69, 65, 68, 79, 78, 76, 89, 10, 49, 49, 55, 32, 76, 88, 77, 82, +/* 0x43d0 */ 85, 48, 57, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x43e0 */ 48, 98, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x43f0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57,100, 97, +/* 0x4400 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x4410 */ 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x4420 */ 89, 10, 49, 49, 56, 32, 77, 82, 85, 66, 89, 84, 69, 54, 32, 32, +/* 0x4430 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, +/* 0x4440 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4450 */ 32, 32, 48, 48, 48, 48, 49, 57,101, 53, 32, 32, 50, 42, 42, 48, +/* 0x4460 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x4470 */ 79, 78, 76, 89, 10, 49, 49, 57, 32, 77, 82, 85, 65, 82, 66, 56, +/* 0x4480 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 49, 32, +/* 0x4490 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x44a0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57,101, 55, 32, 32, 50, +/* 0x44b0 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x44c0 */ 69, 65, 68, 79, 78, 76, 89, 10, 49, 50, 48, 32, 77, 82, 85, 66, +/* 0x44d0 */ 73, 84, 83, 54, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x44e0 */ 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x44f0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 57,101, 56, +/* 0x4500 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x4510 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 50, 49, 32, 77, +/* 0x4520 */ 82, 85, 65, 82, 66, 57, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, +/* 0x4530 */ 48, 48, 48, 48, 52, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x4540 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, +/* 0x4550 */ 57,101, 97, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, +/* 0x4560 */ 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 50, +/* 0x4570 */ 50, 32, 76, 88, 77, 82, 85, 49, 48, 48, 32, 32, 32, 32, 32, 32, +/* 0x4580 */ 48, 48, 48, 48, 48, 48, 49, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x4590 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x45a0 */ 48, 48, 49, 57,101,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, +/* 0x45b0 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, +/* 0x45c0 */ 10, 49, 50, 51, 32, 76, 88, 85, 78, 70, 48, 52, 48, 32, 32, 32, +/* 0x45d0 */ 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, +/* 0x45e0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x45f0 */ 32, 48, 48, 48, 48, 49, 57,102,101, 32, 32, 50, 42, 42, 48, 32, +/* 0x4600 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, +/* 0x4610 */ 78, 76, 89, 10, 49, 50, 52, 32, 76, 88, 77, 82, 85, 49, 49, 48, +/* 0x4620 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, +/* 0x4630 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x4640 */ 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 48, 51, 32, 32, 50, 42, +/* 0x4650 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x4660 */ 65, 68, 79, 78, 76, 89, 10, 49, 50, 53, 32, 76, 88, 77, 82, 85, +/* 0x4670 */ 49, 49, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4680 */ 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4690 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 48, 54, 32, +/* 0x46a0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x46b0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 50, 54, 32, 76, 88, +/* 0x46c0 */ 85, 78, 70, 48, 52, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x46d0 */ 48, 48, 48, 55, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x46e0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, +/* 0x46f0 */ 48, 56, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x4700 */ 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, +/* 0x4710 */ 78, 76, 89, 10, 49, 50, 55, 32, 76, 88, 85, 78, 70, 48, 52, 50, +/* 0x4720 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x4730 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x4740 */ 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 48,102, 32, 32, 50, 42, +/* 0x4750 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x4760 */ 65, 68, 79, 78, 76, 89, 10, 49, 50, 56, 32, 76, 69, 88, 69, 67, +/* 0x4770 */ 48, 49, 54, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4780 */ 53, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4790 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 48,102, 32, +/* 0x47a0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x47b0 */ 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, +/* 0x47c0 */ 10, 49, 50, 57, 32, 76, 88, 77, 82, 85, 48, 49, 48, 32, 32, 32, +/* 0x47d0 */ 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 49, 32, 32, 48, 48, 48, +/* 0x47e0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x47f0 */ 32, 48, 48, 48, 48, 49, 97, 49, 52, 32, 32, 50, 42, 42, 48, 32, +/* 0x4800 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, +/* 0x4810 */ 78, 76, 89, 10, 49, 51, 48, 32, 76, 88, 74, 77, 80, 65, 48, 48, +/* 0x4820 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, +/* 0x4830 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x4840 */ 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 49, 53, 32, 32, 50, 42, +/* 0x4850 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x4860 */ 65, 68, 79, 78, 76, 89, 10, 49, 51, 49, 32, 76, 88, 67, 65, 76, +/* 0x4870 */ 76, 66, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4880 */ 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4890 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 49, 55, 32, +/* 0x48a0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x48b0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 51, 50, 32, 76, 88, +/* 0x48c0 */ 85, 78, 70, 48, 50, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x48d0 */ 48, 48, 48, 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x48e0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, +/* 0x48f0 */ 49, 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x4900 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 51, 51, +/* 0x4910 */ 32, 76, 88, 77, 82, 85, 48, 50, 50, 32, 32, 32, 32, 32, 32, 48, +/* 0x4920 */ 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4930 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4940 */ 48, 49, 97, 49,102, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x4950 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x4960 */ 49, 51, 52, 32, 76, 88, 74, 77, 80, 65, 48, 49, 32, 32, 32, 32, +/* 0x4970 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, +/* 0x4980 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x4990 */ 48, 48, 48, 48, 49, 97, 50, 50, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x49a0 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x49b0 */ 76, 89, 10, 49, 51, 53, 32, 76, 88, 67, 65, 76, 76, 66, 49, 32, +/* 0x49c0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, +/* 0x49d0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x49e0 */ 48, 32, 32, 48, 48, 48, 48, 49, 97, 50, 52, 32, 32, 50, 42, 42, +/* 0x49f0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, +/* 0x4a00 */ 68, 79, 78, 76, 89, 10, 49, 51, 54, 32, 77, 82, 85, 66, 73, 84, +/* 0x4a10 */ 83, 49, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 49, +/* 0x4a20 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4a30 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 50, 54, 32, 32, +/* 0x4a40 */ 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, +/* 0x4a50 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 51, 55, 32, 76, 88, 77, +/* 0x4a60 */ 82, 85, 48, 51, 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x4a70 */ 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4a80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 50, +/* 0x4a90 */ 55, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x4aa0 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 51, 56, 32, +/* 0x4ab0 */ 77, 82, 85, 66, 89, 84, 69, 49, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x4ac0 */ 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4ad0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4ae0 */ 49, 97, 50, 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x4af0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, +/* 0x4b00 */ 51, 57, 32, 77, 82, 85, 65, 82, 66, 49, 48, 32, 32, 32, 32, 32, +/* 0x4b10 */ 32, 48, 48, 48, 48, 48, 48, 48, 49, 32, 32, 48, 48, 48, 48, 48, +/* 0x4b20 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4b30 */ 48, 48, 48, 49, 97, 50, 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x4b40 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x4b50 */ 89, 10, 49, 52, 48, 32, 76, 88, 77, 82, 85, 48, 52, 48, 32, 32, +/* 0x4b60 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, +/* 0x4b70 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4b80 */ 32, 32, 48, 48, 48, 48, 49, 97, 50, 99, 32, 32, 50, 42, 42, 48, +/* 0x4b90 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, +/* 0x4ba0 */ 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 52, 49, 32, +/* 0x4bb0 */ 76, 88, 85, 78, 70, 48, 51, 48, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x4bc0 */ 48, 48, 48, 48, 48, 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4bd0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4be0 */ 49, 97, 50,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x4bf0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, +/* 0x4c00 */ 52, 50, 32, 76, 88, 74, 67, 67, 48, 48, 48, 32, 32, 32, 32, 32, +/* 0x4c10 */ 32, 48, 48, 48, 48, 48, 48, 48, 56, 32, 32, 48, 48, 48, 48, 48, +/* 0x4c20 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4c30 */ 48, 48, 48, 49, 97, 51, 52, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x4c40 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x4c50 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 52, 51, 32, 76, 88, 67, +/* 0x4c60 */ 74, 48, 77, 82, 85, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x4c70 */ 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4c80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 51, +/* 0x4c90 */ 99, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x4ca0 */ 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 52, 52, 32, +/* 0x4cb0 */ 76, 88, 67, 74, 49, 77, 82, 85, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x4cc0 */ 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4cd0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4ce0 */ 49, 97, 51,101, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x4cf0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, +/* 0x4d00 */ 52, 53, 32, 76, 88, 67, 65, 76, 74, 77, 80, 32, 32, 32, 32, 32, +/* 0x4d10 */ 32, 48, 48, 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, +/* 0x4d20 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4d30 */ 48, 48, 48, 49, 97, 52, 49, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x4d40 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x4d50 */ 89, 10, 49, 52, 54, 32, 76, 88, 67, 65, 76, 76, 48, 48, 32, 32, +/* 0x4d60 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, +/* 0x4d70 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4d80 */ 32, 32, 48, 48, 48, 48, 49, 97, 52, 52, 32, 32, 50, 42, 42, 48, +/* 0x4d90 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, +/* 0x4da0 */ 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 52, 55, 32, +/* 0x4db0 */ 76, 88, 67, 65, 76, 76, 48, 49, 32, 32, 32, 32, 32, 32, 48, 48, +/* 0x4dc0 */ 48, 48, 48, 48, 48, 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x4dd0 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, +/* 0x4de0 */ 49, 97, 52, 54, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, +/* 0x4df0 */ 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, +/* 0x4e00 */ 52, 56, 32, 76, 88, 67, 74, 50, 77, 82, 85, 32, 32, 32, 32, 32, +/* 0x4e10 */ 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, +/* 0x4e20 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4e30 */ 48, 48, 48, 49, 97, 52, 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, +/* 0x4e40 */ 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, +/* 0x4e50 */ 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 52, 57, 32, 76, 88, 67, +/* 0x4e60 */ 74, 52, 77, 82, 85, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, +/* 0x4e70 */ 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, +/* 0x4e80 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 52, +/* 0x4e90 */ 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, +/* 0x4ea0 */ 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, +/* 0x4eb0 */ 76, 89, 10, 49, 53, 48, 32, 76, 88, 67, 74, 54, 77, 82, 85, 32, +/* 0x4ec0 */ 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, +/* 0x4ed0 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4ee0 */ 48, 32, 32, 48, 48, 48, 48, 49, 97, 52,100, 32, 32, 50, 42, 42, +/* 0x4ef0 */ 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, +/* 0x4f00 */ 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 53, 49, +/* 0x4f10 */ 32, 76, 88, 67, 74, 55, 77, 82, 85, 32, 32, 32, 32, 32, 32, 48, +/* 0x4f20 */ 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4f30 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4f40 */ 48, 49, 97, 52,102, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x4f50 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, +/* 0x4f60 */ 65, 68, 79, 78, 76, 89, 10, 49, 53, 50, 32, 76, 88, 67, 74, 56, +/* 0x4f70 */ 77, 82, 85, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x4f80 */ 51, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x4f90 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 53, 49, 32, +/* 0x4fa0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x4fb0 */ 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, +/* 0x4fc0 */ 10, 49, 53, 51, 32, 76, 88, 85, 78, 70, 48, 51, 52, 32, 32, 32, +/* 0x4fd0 */ 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, +/* 0x4fe0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x4ff0 */ 32, 48, 48, 48, 48, 49, 97, 53, 52, 32, 32, 50, 42, 42, 48, 32, +/* 0x5000 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, +/* 0x5010 */ 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 53, 52, 32, 76, +/* 0x5020 */ 88, 77, 82, 85, 48, 53, 53, 32, 32, 32, 32, 32, 32, 48, 48, 48, +/* 0x5030 */ 48, 48, 48, 48, 50, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x5040 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, +/* 0x5050 */ 97, 53, 57, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, +/* 0x5060 */ 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 53, +/* 0x5070 */ 53, 32, 77, 82, 85, 66, 89, 84, 69, 50, 32, 32, 32, 32, 32, 32, +/* 0x5080 */ 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x5090 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x50a0 */ 48, 48, 49, 97, 53, 98, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, +/* 0x50b0 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, +/* 0x50c0 */ 10, 49, 53, 54, 32, 77, 82, 85, 66, 73, 84, 83, 50, 32, 32, 32, +/* 0x50d0 */ 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, 48, 48, 48, +/* 0x50e0 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x50f0 */ 32, 48, 48, 48, 48, 49, 97, 54, 48, 32, 32, 50, 42, 42, 48, 32, +/* 0x5100 */ 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, +/* 0x5110 */ 78, 76, 89, 10, 49, 53, 55, 32, 77, 82, 85, 65, 82, 66, 50, 48, +/* 0x5120 */ 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 53, 32, 32, +/* 0x5130 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x5140 */ 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 54, 53, 32, 32, 50, 42, +/* 0x5150 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x5160 */ 65, 68, 79, 78, 76, 89, 10, 49, 53, 56, 32, 76, 88, 77, 82, 85, +/* 0x5170 */ 48, 53, 55, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x5180 */ 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x5190 */ 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 54, 97, 32, +/* 0x51a0 */ 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, +/* 0x51b0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 53, 57, 32, 76, 88, +/* 0x51c0 */ 77, 82, 85, 48, 53, 56, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x51d0 */ 48, 48, 48, 49, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x51e0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, +/* 0x51f0 */ 55, 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x5200 */ 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 54, 48, +/* 0x5210 */ 32, 76, 88, 85, 78, 70, 48, 51, 53, 32, 32, 32, 32, 32, 32, 48, +/* 0x5220 */ 48, 48, 48, 48, 48, 48, 54, 32, 32, 48, 48, 48, 48, 48, 48, 48, +/* 0x5230 */ 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, +/* 0x5240 */ 48, 49, 97, 55, 49, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, +/* 0x5250 */ 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, +/* 0x5260 */ 49, 54, 49, 32, 99,116,111,107, 51, 50, 46, 48, 48, 32, 32, 32, +/* 0x5270 */ 32, 32, 48, 48, 48, 48, 48, 48, 48, 57, 32, 32, 48, 48, 48, 48, +/* 0x5280 */ 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x5290 */ 48, 48, 48, 48, 49, 97, 55, 55, 32, 32, 50, 42, 42, 48, 32, 32, +/* 0x52a0 */ 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, +/* 0x52b0 */ 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 54, 50, 32, 99,116, +/* 0x52c0 */ 111,107, 51, 50, 46, 49, 48, 32, 32, 32, 32, 32, 48, 48, 48, 48, +/* 0x52d0 */ 48, 48, 48,101, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x52e0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, +/* 0x52f0 */ 56, 48, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, +/* 0x5300 */ 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, +/* 0x5310 */ 78, 76, 89, 10, 49, 54, 51, 32, 99,116,111,107, 51, 50, 46, 50, +/* 0x5320 */ 48, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 50, 49, 32, 32, +/* 0x5330 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x5340 */ 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 56,101, 32, 32, 50, 42, +/* 0x5350 */ 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, +/* 0x5360 */ 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, 89, 10, 49, 54, +/* 0x5370 */ 52, 32, 99,116,111,107, 51, 50, 46, 51, 48, 32, 32, 32, 32, 32, +/* 0x5380 */ 48, 48, 48, 48, 48, 48, 48, 55, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x5390 */ 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x53a0 */ 48, 48, 49, 97, 97,102, 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, +/* 0x53b0 */ 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, +/* 0x53c0 */ 69, 65, 68, 79, 78, 76, 89, 10, 49, 54, 53, 32, 99,116,111,107, +/* 0x53d0 */ 51, 50, 46, 52, 48, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, +/* 0x53e0 */ 48, 53, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, +/* 0x53f0 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 98, 54, +/* 0x5400 */ 32, 32, 50, 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, +/* 0x5410 */ 44, 32, 82, 69, 76, 79, 67, 44, 32, 82, 69, 65, 68, 79, 78, 76, +/* 0x5420 */ 89, 10, 49, 54, 54, 32, 76, 69, 88, 69, 67, 48, 49, 55, 32, 32, +/* 0x5430 */ 32, 32, 32, 32, 48, 48, 48, 48, 48, 48, 48, 50, 32, 32, 48, 48, +/* 0x5440 */ 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5450 */ 32, 32, 48, 48, 48, 48, 49, 97, 98, 98, 32, 32, 50, 42, 42, 48, +/* 0x5460 */ 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, 69, 65, 68, +/* 0x5470 */ 79, 78, 76, 89, 10, 49, 54, 55, 32, 76, 69, 88, 69, 67, 48, 50, +/* 0x5480 */ 48, 32, 32, 32, 32, 32, 32, 48, 48, 48, 48, 48, 49, 51, 97, 32, +/* 0x5490 */ 32, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 48, 48, 48, 48, 48, +/* 0x54a0 */ 48, 48, 48, 32, 32, 48, 48, 48, 48, 49, 97, 98,100, 32, 32, 50, +/* 0x54b0 */ 42, 42, 48, 32, 32, 67, 79, 78, 84, 69, 78, 84, 83, 44, 32, 82, +/* 0x54c0 */ 69, 65, 68, 79, 78, 76, 89, 10, 83, 89, 77, 66, 79, 76, 32, 84, +/* 0x54d0 */ 65, 66, 76, 69, 58, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x54e0 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 83, 77, 65, 49, 48, 9, +/* 0x54f0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, 83, 77, 65, 49, +/* 0x5500 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5510 */ 100, 32, 32, 78, 50, 66, 70, 65, 83, 49, 49, 9, 48, 48, 48, 48, +/* 0x5520 */ 48, 48, 48, 48, 32, 78, 50, 66, 70, 65, 83, 49, 49, 10, 48, 48, +/* 0x5530 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5540 */ 50, 66, 68, 69, 67, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5550 */ 32, 78, 50, 66, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5560 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 68, 69, +/* 0x5570 */ 67, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, +/* 0x5580 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5590 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 68, 69, 67, 51, 48, 9, +/* 0x55a0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, 68, 69, 67, 51, +/* 0x55b0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x55c0 */ 100, 32, 32, 78, 50, 66, 68, 69, 67, 53, 48, 9, 48, 48, 48, 48, +/* 0x55d0 */ 48, 48, 48, 48, 32, 78, 50, 66, 68, 69, 67, 53, 48, 10, 48, 48, +/* 0x55e0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x55f0 */ 50, 66, 70, 65, 83, 54, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5600 */ 32, 78, 50, 66, 70, 65, 83, 54, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x5610 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 68, 69, +/* 0x5620 */ 67, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, +/* 0x5630 */ 68, 69, 67, 54, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5640 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 83, 77, 65, 49, 48, 9, +/* 0x5650 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, 83, 77, 65, 49, +/* 0x5660 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5670 */ 100, 32, 32, 78, 50, 68, 70, 65, 83, 49, 49, 9, 48, 48, 48, 48, +/* 0x5680 */ 48, 48, 48, 48, 32, 78, 50, 68, 70, 65, 83, 49, 49, 10, 48, 48, +/* 0x5690 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x56a0 */ 50, 68, 68, 69, 67, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x56b0 */ 32, 78, 50, 68, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x56c0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 68, 69, +/* 0x56d0 */ 67, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, +/* 0x56e0 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x56f0 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 68, 69, 67, 51, 48, 9, +/* 0x5700 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, 68, 69, 67, 51, +/* 0x5710 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5720 */ 100, 32, 32, 78, 50, 68, 68, 69, 67, 53, 48, 9, 48, 48, 48, 48, +/* 0x5730 */ 48, 48, 48, 48, 32, 78, 50, 68, 68, 69, 67, 53, 48, 10, 48, 48, +/* 0x5740 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5750 */ 50, 68, 70, 65, 83, 54, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5760 */ 32, 78, 50, 68, 70, 65, 83, 54, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x5770 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 68, 69, +/* 0x5780 */ 67, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, +/* 0x5790 */ 68, 69, 67, 54, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x57a0 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 83, 77, 65, 49, 48, 9, +/* 0x57b0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, 83, 77, 65, 49, +/* 0x57c0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x57d0 */ 100, 32, 32, 78, 50, 69, 70, 65, 83, 49, 49, 9, 48, 48, 48, 48, +/* 0x57e0 */ 48, 48, 48, 48, 32, 78, 50, 69, 70, 65, 83, 49, 49, 10, 48, 48, +/* 0x57f0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5800 */ 50, 69, 68, 69, 67, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5810 */ 32, 78, 50, 69, 68, 69, 67, 49, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5820 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 68, 69, +/* 0x5830 */ 67, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, +/* 0x5840 */ 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5850 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 68, 69, 67, 51, 48, 9, +/* 0x5860 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, 68, 69, 67, 51, +/* 0x5870 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5880 */ 100, 32, 32, 78, 50, 69, 68, 69, 67, 53, 48, 9, 48, 48, 48, 48, +/* 0x5890 */ 48, 48, 48, 48, 32, 78, 50, 69, 68, 69, 67, 53, 48, 10, 48, 48, +/* 0x58a0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x58b0 */ 50, 69, 70, 65, 83, 54, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x58c0 */ 32, 78, 50, 69, 70, 65, 83, 54, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x58d0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 68, 69, +/* 0x58e0 */ 67, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, +/* 0x58f0 */ 68, 69, 67, 54, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5900 */ 32, 32, 32, 32,100, 32, 32, 67, 65, 76, 76, 84, 82, 48, 48, 9, +/* 0x5910 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 65, 76, 76, 84, 82, 48, +/* 0x5920 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5930 */ 100, 32, 32, 67, 65, 76, 76, 84, 82, 49, 48, 9, 48, 48, 48, 48, +/* 0x5940 */ 48, 48, 48, 48, 32, 67, 65, 76, 76, 84, 82, 49, 48, 10, 48, 48, +/* 0x5950 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, +/* 0x5960 */ 65, 76, 76, 84, 82, 49, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5970 */ 32, 67, 65, 76, 76, 84, 82, 49, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x5980 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, 65, 76, 76, 84, +/* 0x5990 */ 82, 49, 51, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 65, 76, +/* 0x59a0 */ 76, 84, 82, 49, 51, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x59b0 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 85, 78, 70, 48, 49, 48, 9, +/* 0x59c0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 48, 49, +/* 0x59d0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x59e0 */ 100, 32, 32, 76, 88, 74, 67, 67, 48, 49, 48, 9, 48, 48, 48, 48, +/* 0x59f0 */ 48, 48, 48, 48, 32, 76, 88, 74, 67, 67, 48, 49, 48, 10, 48, 48, +/* 0x5a00 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x5a10 */ 88, 85, 78, 70, 48, 51, 55, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5a20 */ 32, 76, 88, 85, 78, 70, 48, 51, 55, 10, 48, 48, 48, 48, 48, 48, +/* 0x5a30 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x5a40 */ 48, 55, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x5a50 */ 82, 85, 48, 55, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5a60 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, 49, 48, 48, 9, +/* 0x5a70 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 49, 48, +/* 0x5a80 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5a90 */ 100, 32, 32, 76, 88, 85, 78, 70, 48, 52, 48, 9, 48, 48, 48, 48, +/* 0x5aa0 */ 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 48, 52, 48, 10, 48, 48, +/* 0x5ab0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x5ac0 */ 88, 85, 78, 70, 48, 52, 50, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5ad0 */ 32, 76, 88, 85, 78, 70, 48, 52, 50, 10, 48, 48, 48, 48, 48, 48, +/* 0x5ae0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x5af0 */ 48, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x5b00 */ 82, 85, 48, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5b10 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 85, 78, 70, 48, 51, 48, 9, +/* 0x5b20 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 48, 51, +/* 0x5b30 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5b40 */ 100, 32, 32, 76, 88, 67, 74, 56, 77, 82, 85, 9, 48, 48, 48, 48, +/* 0x5b50 */ 48, 48, 48, 48, 32, 76, 88, 67, 74, 56, 77, 82, 85, 10, 48, 48, +/* 0x5b60 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x5b70 */ 88, 85, 78, 70, 48, 51, 52, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5b80 */ 32, 76, 88, 85, 78, 70, 48, 51, 52, 10, 48, 48, 48, 48, 48, 48, +/* 0x5b90 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 99,116,111,107, 51, +/* 0x5ba0 */ 50, 46, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 99,116, +/* 0x5bb0 */ 111,107, 51, 50, 46, 48, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5bc0 */ 32,108, 32, 32, 32, 32,100, 32, 32, 99,116,111,107, 51, 50, 46, +/* 0x5bd0 */ 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 99,116,111,107, +/* 0x5be0 */ 51, 50, 46, 49, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5bf0 */ 32, 32, 32, 32,100, 32, 32, 99,116,111,107, 51, 50, 46, 50, 48, +/* 0x5c00 */ 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 99,116,111,107, 51, 50, +/* 0x5c10 */ 46, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, +/* 0x5c20 */ 32, 32,100, 32, 32, 99,116,111,107, 51, 50, 46, 52, 48, 9, 48, +/* 0x5c30 */ 48, 48, 48, 48, 48, 48, 48, 32, 99,116,111,107, 51, 50, 46, 52, +/* 0x5c40 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5c50 */ 100, 32, 32, 76, 69, 88, 69, 67, 48, 50, 48, 9, 48, 48, 48, 48, +/* 0x5c60 */ 48, 48, 48, 48, 32, 76, 69, 88, 69, 67, 48, 50, 48, 10, 48, 48, +/* 0x5c70 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x5c80 */ 69, 88, 69, 67, 48, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5c90 */ 32, 76, 69, 88, 69, 67, 48, 48, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5ca0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 69, 88, 69, 67, +/* 0x5cb0 */ 48, 48, 57, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 69, 88, +/* 0x5cc0 */ 69, 67, 48, 48, 57, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5cd0 */ 32, 32, 32, 32,100, 32, 32, 76, 69, 88, 69, 67, 48, 49, 48, 9, +/* 0x5ce0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 69, 88, 69, 67, 48, 49, +/* 0x5cf0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5d00 */ 100, 32, 32, 78, 50, 66, 70, 65, 83, 49, 48, 9, 48, 48, 48, 48, +/* 0x5d10 */ 48, 48, 48, 48, 32, 78, 50, 66, 70, 65, 83, 49, 48, 10, 48, 48, +/* 0x5d20 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5d30 */ 50, 66, 83, 77, 65, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5d40 */ 32, 78, 50, 66, 83, 77, 65, 50, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5d50 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 70, 65, +/* 0x5d60 */ 83, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, +/* 0x5d70 */ 70, 65, 83, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5d80 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 83, 77, 65, 51, 48, 9, +/* 0x5d90 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, 83, 77, 65, 51, +/* 0x5da0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5db0 */ 100, 32, 32, 78, 50, 66, 70, 65, 83, 51, 48, 9, 48, 48, 48, 48, +/* 0x5dc0 */ 48, 48, 48, 48, 32, 78, 50, 66, 70, 65, 83, 51, 48, 10, 48, 48, +/* 0x5dd0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5de0 */ 50, 66, 83, 77, 65, 52, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5df0 */ 32, 78, 50, 66, 83, 77, 65, 52, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5e00 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 70, 65, +/* 0x5e10 */ 83, 52, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, +/* 0x5e20 */ 70, 65, 83, 52, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5e30 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 83, 77, 65, 53, 48, 9, +/* 0x5e40 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, 83, 77, 65, 53, +/* 0x5e50 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5e60 */ 100, 32, 32, 78, 50, 66, 70, 65, 83, 53, 48, 9, 48, 48, 48, 48, +/* 0x5e70 */ 48, 48, 48, 48, 32, 78, 50, 66, 70, 65, 83, 53, 48, 10, 48, 48, +/* 0x5e80 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5e90 */ 50, 66, 83, 77, 65, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5ea0 */ 32, 78, 50, 66, 83, 77, 65, 54, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5eb0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 66, 70, 65, +/* 0x5ec0 */ 83, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 66, +/* 0x5ed0 */ 70, 65, 83, 54, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5ee0 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 70, 65, 83, 49, 48, 9, +/* 0x5ef0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, 70, 65, 83, 49, +/* 0x5f00 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5f10 */ 100, 32, 32, 78, 50, 68, 83, 77, 65, 50, 48, 9, 48, 48, 48, 48, +/* 0x5f20 */ 48, 48, 48, 48, 32, 78, 50, 68, 83, 77, 65, 50, 48, 10, 48, 48, +/* 0x5f30 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5f40 */ 50, 68, 70, 65, 83, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x5f50 */ 32, 78, 50, 68, 70, 65, 83, 50, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x5f60 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 83, 77, +/* 0x5f70 */ 65, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, +/* 0x5f80 */ 83, 77, 65, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x5f90 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 70, 65, 83, 51, 48, 9, +/* 0x5fa0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, 70, 65, 83, 51, +/* 0x5fb0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x5fc0 */ 100, 32, 32, 78, 50, 68, 83, 77, 65, 52, 48, 9, 48, 48, 48, 48, +/* 0x5fd0 */ 48, 48, 48, 48, 32, 78, 50, 68, 83, 77, 65, 52, 48, 10, 48, 48, +/* 0x5fe0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x5ff0 */ 50, 68, 70, 65, 83, 52, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6000 */ 32, 78, 50, 68, 70, 65, 83, 52, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6010 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 83, 77, +/* 0x6020 */ 65, 53, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, +/* 0x6030 */ 83, 77, 65, 53, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6040 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 68, 70, 65, 83, 53, 48, 9, +/* 0x6050 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 68, 70, 65, 83, 53, +/* 0x6060 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6070 */ 100, 32, 32, 78, 50, 68, 83, 77, 65, 54, 48, 9, 48, 48, 48, 48, +/* 0x6080 */ 48, 48, 48, 48, 32, 78, 50, 68, 83, 77, 65, 54, 48, 10, 48, 48, +/* 0x6090 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x60a0 */ 50, 68, 70, 65, 83, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x60b0 */ 32, 78, 50, 68, 70, 65, 83, 54, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x60c0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 70, 65, +/* 0x60d0 */ 83, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, +/* 0x60e0 */ 70, 65, 83, 49, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x60f0 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 83, 77, 65, 50, 48, 9, +/* 0x6100 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, 83, 77, 65, 50, +/* 0x6110 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6120 */ 100, 32, 32, 78, 50, 69, 70, 65, 83, 50, 48, 9, 48, 48, 48, 48, +/* 0x6130 */ 48, 48, 48, 48, 32, 78, 50, 69, 70, 65, 83, 50, 48, 10, 48, 48, +/* 0x6140 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x6150 */ 50, 69, 83, 77, 65, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6160 */ 32, 78, 50, 69, 83, 77, 65, 51, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6170 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 70, 65, +/* 0x6180 */ 83, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, +/* 0x6190 */ 70, 65, 83, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x61a0 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 83, 77, 65, 52, 48, 9, +/* 0x61b0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, 83, 77, 65, 52, +/* 0x61c0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x61d0 */ 100, 32, 32, 78, 50, 69, 70, 65, 83, 52, 48, 9, 48, 48, 48, 48, +/* 0x61e0 */ 48, 48, 48, 48, 32, 78, 50, 69, 70, 65, 83, 52, 48, 10, 48, 48, +/* 0x61f0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, +/* 0x6200 */ 50, 69, 83, 77, 65, 53, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6210 */ 32, 78, 50, 69, 83, 77, 65, 53, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6220 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 70, 65, +/* 0x6230 */ 83, 53, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, +/* 0x6240 */ 70, 65, 83, 53, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6250 */ 32, 32, 32, 32,100, 32, 32, 78, 50, 69, 83, 77, 65, 54, 48, 9, +/* 0x6260 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, 50, 69, 83, 77, 65, 54, +/* 0x6270 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6280 */ 100, 32, 32, 78, 50, 69, 70, 65, 83, 54, 48, 9, 48, 48, 48, 48, +/* 0x6290 */ 48, 48, 48, 48, 32, 78, 50, 69, 70, 65, 83, 54, 48, 10, 48, 48, +/* 0x62a0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x62b0 */ 90, 77, 65, 95, 68, 69, 67, 48, 48, 9, 48, 48, 48, 48, 48, 48, +/* 0x62c0 */ 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 48, 48, 10, 48, 48, +/* 0x62d0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x62e0 */ 90, 77, 65, 95, 69, 76, 70, 48, 48, 9, 48, 48, 48, 48, 48, 48, +/* 0x62f0 */ 48, 48, 32, 76, 90, 77, 65, 95, 69, 76, 70, 48, 48, 10, 48, 48, +/* 0x6300 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6310 */ 90, 77, 65, 95, 68, 69, 67, 49, 48, 9, 48, 48, 48, 48, 48, 48, +/* 0x6320 */ 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 49, 48, 10, 48, 48, +/* 0x6330 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6340 */ 90, 77, 65, 95, 68, 69, 67, 50, 48, 9, 48, 48, 48, 48, 48, 48, +/* 0x6350 */ 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 50, 48, 10, 48, 48, +/* 0x6360 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6370 */ 90, 77, 65, 95, 68, 69, 67, 51, 48, 9, 48, 48, 48, 48, 48, 48, +/* 0x6380 */ 48, 48, 32, 76, 90, 77, 65, 95, 68, 69, 67, 51, 48, 10, 48, 48, +/* 0x6390 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, +/* 0x63a0 */ 84, 67, 76, 69, 86, 69, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x63b0 */ 32, 67, 84, 67, 76, 69, 86, 69, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x63c0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, 65, 76, 76, 84, +/* 0x63d0 */ 82, 48, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 65, 76, +/* 0x63e0 */ 76, 84, 82, 48, 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x63f0 */ 32, 32, 32, 32,100, 32, 32, 67, 84, 66, 83, 72, 82, 48, 49, 9, +/* 0x6400 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 84, 66, 83, 72, 82, 48, +/* 0x6410 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6420 */ 100, 32, 32, 67, 84, 66, 82, 79, 82, 48, 49, 9, 48, 48, 48, 48, +/* 0x6430 */ 48, 48, 48, 48, 32, 67, 84, 66, 82, 79, 82, 48, 49, 10, 48, 48, +/* 0x6440 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, +/* 0x6450 */ 84, 66, 83, 87, 65, 48, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6460 */ 32, 67, 84, 66, 83, 87, 65, 48, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x6470 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, 65, 76, 76, 84, +/* 0x6480 */ 82, 48, 50, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 65, 76, +/* 0x6490 */ 76, 84, 82, 48, 50, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x64a0 */ 32, 32, 32, 32,100, 32, 32, 67, 65, 76, 76, 84, 82, 69, 56, 9, +/* 0x64b0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 65, 76, 76, 84, 82, 69, +/* 0x64c0 */ 56, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x64d0 */ 100, 32, 32, 67, 65, 76, 76, 84, 82, 69, 57, 9, 48, 48, 48, 48, +/* 0x64e0 */ 48, 48, 48, 48, 32, 67, 65, 76, 76, 84, 82, 69, 57, 10, 48, 48, +/* 0x64f0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, +/* 0x6500 */ 84, 67, 76, 69, 86, 69, 50, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6510 */ 32, 67, 84, 67, 76, 69, 86, 69, 50, 10, 48, 48, 48, 48, 48, 48, +/* 0x6520 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, 65, 76, 76, 84, +/* 0x6530 */ 82, 49, 50, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 65, 76, +/* 0x6540 */ 76, 84, 82, 49, 50, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6550 */ 32, 32, 32, 32,100, 32, 32, 67, 84, 66, 83, 72, 82, 49, 49, 9, +/* 0x6560 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 67, 84, 66, 83, 72, 82, 49, +/* 0x6570 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6580 */ 100, 32, 32, 67, 84, 66, 82, 79, 82, 49, 49, 9, 48, 48, 48, 48, +/* 0x6590 */ 48, 48, 48, 48, 32, 67, 84, 66, 82, 79, 82, 49, 49, 10, 48, 48, +/* 0x65a0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 67, +/* 0x65b0 */ 84, 66, 83, 87, 65, 49, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x65c0 */ 32, 67, 84, 66, 83, 87, 65, 49, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x65d0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 69, 88, 69, 67, +/* 0x65e0 */ 48, 49, 53, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 69, 88, +/* 0x65f0 */ 69, 67, 48, 49, 53, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6600 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 85, 78, 70, 48, 48, 48, 9, +/* 0x6610 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 48, 48, +/* 0x6620 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6630 */ 100, 32, 32, 76, 88, 85, 78, 70, 48, 48, 50, 9, 48, 48, 48, 48, +/* 0x6640 */ 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 48, 48, 50, 10, 48, 48, +/* 0x6650 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x6660 */ 82, 85, 66, 89, 84, 69, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6670 */ 32, 77, 82, 85, 66, 89, 84, 69, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6680 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x6690 */ 48, 48, 53, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x66a0 */ 82, 85, 48, 48, 53, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x66b0 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, 48, 48, 54, 9, +/* 0x66c0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 48, +/* 0x66d0 */ 54, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x66e0 */ 100, 32, 32, 76, 88, 77, 82, 85, 48, 48, 55, 9, 48, 48, 48, 48, +/* 0x66f0 */ 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 48, 55, 10, 48, 48, +/* 0x6700 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6710 */ 88, 85, 78, 70, 48, 48, 56, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6720 */ 32, 76, 88, 85, 78, 70, 48, 48, 56, 10, 48, 48, 48, 48, 48, 48, +/* 0x6730 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x6740 */ 48, 52, 53, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x6750 */ 82, 85, 48, 52, 53, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6760 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, 48, 52, 54, 9, +/* 0x6770 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 52, +/* 0x6780 */ 54, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6790 */ 100, 32, 32, 76, 88, 74, 67, 67, 48, 50, 48, 9, 48, 48, 48, 48, +/* 0x67a0 */ 48, 48, 48, 48, 32, 76, 88, 74, 67, 67, 48, 50, 48, 10, 48, 48, +/* 0x67b0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x67c0 */ 88, 74, 67, 67, 48, 50, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x67d0 */ 32, 76, 88, 74, 67, 67, 48, 50, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x67e0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 74, 67, 67, +/* 0x67f0 */ 48, 50, 51, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 74, +/* 0x6800 */ 67, 67, 48, 50, 51, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6810 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 85, 78, 70, 51, 56, 54, 9, +/* 0x6820 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 51, 56, +/* 0x6830 */ 54, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6840 */ 100, 32, 32, 76, 88, 85, 78, 70, 51, 56, 55, 9, 48, 48, 48, 48, +/* 0x6850 */ 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 51, 56, 55, 10, 48, 48, +/* 0x6860 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6870 */ 88, 85, 78, 70, 51, 56, 56, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6880 */ 32, 76, 88, 85, 78, 70, 51, 56, 56, 10, 48, 48, 48, 48, 48, 48, +/* 0x6890 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 85, 78, 70, +/* 0x68a0 */ 52, 56, 54, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 85, +/* 0x68b0 */ 78, 70, 52, 56, 54, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x68c0 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 85, 78, 70, 52, 56, 55, 9, +/* 0x68d0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 52, 56, +/* 0x68e0 */ 55, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x68f0 */ 100, 32, 32, 76, 88, 77, 82, 85, 48, 54, 53, 9, 48, 48, 48, 48, +/* 0x6900 */ 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 54, 53, 10, 48, 48, +/* 0x6910 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x6920 */ 82, 85, 66, 89, 84, 69, 51, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6930 */ 32, 77, 82, 85, 66, 89, 84, 69, 51, 10, 48, 48, 48, 48, 48, 48, +/* 0x6940 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 65, 82, +/* 0x6950 */ 66, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, +/* 0x6960 */ 65, 82, 66, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6970 */ 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 66, 73, 84, 83, 51, 9, +/* 0x6980 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, 66, 73, 84, 83, +/* 0x6990 */ 51, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x69a0 */ 100, 32, 32, 77, 82, 85, 65, 82, 66, 52, 48, 9, 48, 48, 48, 48, +/* 0x69b0 */ 48, 48, 48, 48, 32, 77, 82, 85, 65, 82, 66, 52, 48, 10, 48, 48, +/* 0x69c0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x69d0 */ 82, 85, 66, 89, 84, 69, 52, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x69e0 */ 32, 77, 82, 85, 66, 89, 84, 69, 52, 10, 48, 48, 48, 48, 48, 48, +/* 0x69f0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 66, 73, +/* 0x6a00 */ 84, 83, 52, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, +/* 0x6a10 */ 66, 73, 84, 83, 52, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6a20 */ 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 65, 82, 66, 53, 48, 9, +/* 0x6a30 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, 65, 82, 66, 53, +/* 0x6a40 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6a50 */ 100, 32, 32, 76, 88, 77, 82, 85, 48, 56, 48, 9, 48, 48, 48, 48, +/* 0x6a60 */ 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 56, 48, 10, 48, 48, +/* 0x6a70 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x6a80 */ 82, 85, 66, 89, 84, 69, 53, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6a90 */ 32, 77, 82, 85, 66, 89, 84, 69, 53, 10, 48, 48, 48, 48, 48, 48, +/* 0x6aa0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 65, 82, +/* 0x6ab0 */ 66, 54, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, +/* 0x6ac0 */ 65, 82, 66, 54, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6ad0 */ 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 66, 73, 84, 83, 53, 9, +/* 0x6ae0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, 66, 73, 84, 83, +/* 0x6af0 */ 53, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6b00 */ 100, 32, 32, 77, 82, 85, 65, 82, 66, 55, 48, 9, 48, 48, 48, 48, +/* 0x6b10 */ 48, 48, 48, 48, 32, 77, 82, 85, 65, 82, 66, 55, 48, 10, 48, 48, +/* 0x6b20 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6b30 */ 88, 77, 82, 85, 48, 57, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6b40 */ 32, 76, 88, 77, 82, 85, 48, 57, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6b50 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 66, 89, +/* 0x6b60 */ 84, 69, 54, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, +/* 0x6b70 */ 66, 89, 84, 69, 54, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6b80 */ 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 65, 82, 66, 56, 48, 9, +/* 0x6b90 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, 65, 82, 66, 56, +/* 0x6ba0 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6bb0 */ 100, 32, 32, 77, 82, 85, 66, 73, 84, 83, 54, 9, 48, 48, 48, 48, +/* 0x6bc0 */ 48, 48, 48, 48, 32, 77, 82, 85, 66, 73, 84, 83, 54, 10, 48, 48, +/* 0x6bd0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x6be0 */ 82, 85, 65, 82, 66, 57, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6bf0 */ 32, 77, 82, 85, 65, 82, 66, 57, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6c00 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x6c10 */ 49, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x6c20 */ 82, 85, 49, 49, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6c30 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, 49, 49, 49, 9, +/* 0x6c40 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 49, 49, +/* 0x6c50 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6c60 */ 100, 32, 32, 76, 88, 85, 78, 70, 48, 52, 49, 9, 48, 48, 48, 48, +/* 0x6c70 */ 48, 48, 48, 48, 32, 76, 88, 85, 78, 70, 48, 52, 49, 10, 48, 48, +/* 0x6c80 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6c90 */ 69, 88, 69, 67, 48, 49, 54, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6ca0 */ 32, 76, 69, 88, 69, 67, 48, 49, 54, 10, 48, 48, 48, 48, 48, 48, +/* 0x6cb0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x6cc0 */ 48, 49, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x6cd0 */ 82, 85, 48, 49, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6ce0 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 74, 77, 80, 65, 48, 48, 9, +/* 0x6cf0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 74, 77, 80, 65, 48, +/* 0x6d00 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6d10 */ 100, 32, 32, 76, 88, 67, 65, 76, 76, 66, 48, 9, 48, 48, 48, 48, +/* 0x6d20 */ 48, 48, 48, 48, 32, 76, 88, 67, 65, 76, 76, 66, 48, 10, 48, 48, +/* 0x6d30 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6d40 */ 88, 85, 78, 70, 48, 50, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6d50 */ 32, 76, 88, 85, 78, 70, 48, 50, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x6d60 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, +/* 0x6d70 */ 48, 50, 50, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, +/* 0x6d80 */ 82, 85, 48, 50, 50, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6d90 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 74, 77, 80, 65, 48, 49, 9, +/* 0x6da0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 74, 77, 80, 65, 48, +/* 0x6db0 */ 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6dc0 */ 100, 32, 32, 76, 88, 67, 65, 76, 76, 66, 49, 9, 48, 48, 48, 48, +/* 0x6dd0 */ 48, 48, 48, 48, 32, 76, 88, 67, 65, 76, 76, 66, 49, 10, 48, 48, +/* 0x6de0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x6df0 */ 82, 85, 66, 73, 84, 83, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6e00 */ 32, 77, 82, 85, 66, 73, 84, 83, 49, 10, 48, 48, 48, 48, 48, 48, +/* 0x6e10 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 66, 89, +/* 0x6e20 */ 84, 69, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, +/* 0x6e30 */ 66, 89, 84, 69, 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6e40 */ 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 65, 82, 66, 49, 48, 9, +/* 0x6e50 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, 65, 82, 66, 49, +/* 0x6e60 */ 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6e70 */ 100, 32, 32, 76, 88, 77, 82, 85, 48, 52, 48, 9, 48, 48, 48, 48, +/* 0x6e80 */ 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 52, 48, 10, 48, 48, +/* 0x6e90 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6ea0 */ 88, 74, 67, 67, 48, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6eb0 */ 32, 76, 88, 74, 67, 67, 48, 48, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6ec0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 67, 74, 48, +/* 0x6ed0 */ 77, 82, 85, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 67, +/* 0x6ee0 */ 74, 48, 77, 82, 85, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6ef0 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 67, 74, 49, 77, 82, 85, 9, +/* 0x6f00 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 67, 74, 49, 77, 82, +/* 0x6f10 */ 85, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6f20 */ 100, 32, 32, 76, 88, 67, 65, 76, 74, 77, 80, 9, 48, 48, 48, 48, +/* 0x6f30 */ 48, 48, 48, 48, 32, 76, 88, 67, 65, 76, 74, 77, 80, 10, 48, 48, +/* 0x6f40 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x6f50 */ 88, 67, 65, 76, 76, 48, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x6f60 */ 32, 76, 88, 67, 65, 76, 76, 48, 48, 10, 48, 48, 48, 48, 48, 48, +/* 0x6f70 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 67, 65, 76, +/* 0x6f80 */ 76, 48, 49, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 67, +/* 0x6f90 */ 65, 76, 76, 48, 49, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x6fa0 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 67, 74, 50, 77, 82, 85, 9, +/* 0x6fb0 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 67, 74, 50, 77, 82, +/* 0x6fc0 */ 85, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x6fd0 */ 100, 32, 32, 76, 88, 67, 74, 52, 77, 82, 85, 9, 48, 48, 48, 48, +/* 0x6fe0 */ 48, 48, 48, 48, 32, 76, 88, 67, 74, 52, 77, 82, 85, 10, 48, 48, +/* 0x6ff0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x7000 */ 88, 67, 74, 54, 77, 82, 85, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x7010 */ 32, 76, 88, 67, 74, 54, 77, 82, 85, 10, 48, 48, 48, 48, 48, 48, +/* 0x7020 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, 88, 67, 74, 55, +/* 0x7030 */ 77, 82, 85, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 67, +/* 0x7040 */ 74, 55, 77, 82, 85, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x7050 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, 48, 53, 53, 9, +/* 0x7060 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 53, +/* 0x7070 */ 53, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x7080 */ 100, 32, 32, 77, 82, 85, 66, 89, 84, 69, 50, 9, 48, 48, 48, 48, +/* 0x7090 */ 48, 48, 48, 48, 32, 77, 82, 85, 66, 89, 84, 69, 50, 10, 48, 48, +/* 0x70a0 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, +/* 0x70b0 */ 82, 85, 66, 73, 84, 83, 50, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x70c0 */ 32, 77, 82, 85, 66, 73, 84, 83, 50, 10, 48, 48, 48, 48, 48, 48, +/* 0x70d0 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 77, 82, 85, 65, 82, +/* 0x70e0 */ 66, 50, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 77, 82, 85, +/* 0x70f0 */ 65, 82, 66, 50, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, +/* 0x7100 */ 32, 32, 32, 32,100, 32, 32, 76, 88, 77, 82, 85, 48, 53, 55, 9, +/* 0x7110 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 53, +/* 0x7120 */ 55, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32, +/* 0x7130 */ 100, 32, 32, 76, 88, 77, 82, 85, 48, 53, 56, 9, 48, 48, 48, 48, +/* 0x7140 */ 48, 48, 48, 48, 32, 76, 88, 77, 82, 85, 48, 53, 56, 10, 48, 48, +/* 0x7150 */ 48, 48, 48, 48, 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 76, +/* 0x7160 */ 88, 85, 78, 70, 48, 51, 53, 9, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x7170 */ 32, 76, 88, 85, 78, 70, 48, 51, 53, 10, 48, 48, 48, 48, 48, 48, +/* 0x7180 */ 48, 48, 32,108, 32, 32, 32, 32,100, 32, 32, 99,116,111,107, 51, +/* 0x7190 */ 50, 46, 51, 48, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 99,116, +/* 0x71a0 */ 111,107, 51, 50, 46, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48, 48, +/* 0x71b0 */ 32,108, 32, 32, 32, 32,100, 32, 32, 76, 69, 88, 69, 67, 48, 49, +/* 0x71c0 */ 55, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 76, 69, 88, 69, 67, +/* 0x71d0 */ 48, 49, 55, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32,103, 32, 32, +/* 0x71e0 */ 32, 32, 32, 32, 32, 76, 69, 88, 69, 67, 48, 48, 48, 9, 48, 48, +/* 0x71f0 */ 48, 48, 48, 48, 48, 48, 32, 95,115,116, 97,114,116, 10, 48, 48, +/* 0x7200 */ 48, 48, 48, 48, 48, 48, 32, 32, 32, 32, 32, 32, 32, 32, 32, 42, +/* 0x7210 */ 85, 78, 68, 42, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32,108,122, +/* 0x7220 */ 109, 97, 95,115,116, 97, 99,107, 95, 97,100,106,117,115,116, 10, +/* 0x7230 */ 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7240 */ 32, 42, 85, 78, 68, 42, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, +/* 0x7250 */ 108,122,109, 97, 95,117, 95,108,101,110, 10, 48, 48, 48, 48, 48, +/* 0x7260 */ 48, 48, 48, 32, 32, 32, 32, 32, 32, 32, 32, 32, 42, 85, 78, 68, +/* 0x7270 */ 42, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32,108,122,109, 97, 95, +/* 0x7280 */ 99, 95,108,101,110, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x7290 */ 32, 32, 32, 32, 32, 32, 32, 42, 85, 78, 68, 42, 9, 48, 48, 48, +/* 0x72a0 */ 48, 48, 48, 48, 48, 32,108,122,109, 97, 95,112,114,111,112,101, +/* 0x72b0 */ 114,116,105,101,115, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, +/* 0x72c0 */ 32, 32, 32, 32, 32, 32, 32, 42, 85, 78, 68, 42, 9, 48, 48, 48, +/* 0x72d0 */ 48, 48, 48, 48, 48, 32,102,105,108,116,101,114, 95,108,101,110, +/* 0x72e0 */ 103,116,104, 10, 48, 48, 48, 48, 48, 48, 48, 48, 32, 32, 32, 32, +/* 0x72f0 */ 32, 32, 32, 32, 32, 42, 85, 78, 68, 42, 9, 48, 48, 48, 48, 48, +/* 0x7300 */ 48, 48, 48, 32,102,105,108,116,101,114, 95, 99,116,111, 10, 48, +/* 0x7310 */ 48, 48, 48, 48, 48, 48, 48, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7320 */ 42, 85, 78, 68, 42, 9, 48, 48, 48, 48, 48, 48, 48, 48, 32, 78, +/* 0x7330 */ 77, 82, 85, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x7340 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 69, 88, +/* 0x7350 */ 69, 67, 48, 48, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x7360 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7370 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x7380 */ 54, 32, 82, 95, 51, 56, 54, 95, 80, 67, 51, 50, 32, 32, 32, 32, +/* 0x7390 */ 32, 32, 32, 32, 76, 69, 88, 69, 67, 48, 50, 48, 10, 10, 82, 69, +/* 0x73a0 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x73b0 */ 32, 70, 79, 82, 32, 91, 78, 50, 66, 83, 77, 65, 49, 48, 93, 58, +/* 0x73c0 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x73d0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x73e0 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, +/* 0x73f0 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, +/* 0x7400 */ 68, 69, 67, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, +/* 0x7410 */ 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, +/* 0x7420 */ 50, 66, 70, 65, 83, 49, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, +/* 0x7430 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7440 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, +/* 0x7450 */ 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, +/* 0x7460 */ 32, 32, 32, 32, 32, 32, 78, 50, 66, 68, 69, 67, 49, 48, 10, 10, +/* 0x7470 */ 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, +/* 0x7480 */ 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 66, 83, 77, 65, 50, 48, +/* 0x7490 */ 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, +/* 0x74a0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, +/* 0x74b0 */ 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, +/* 0x74c0 */ 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, +/* 0x74d0 */ 50, 66, 83, 77, 65, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, +/* 0x74e0 */ 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, +/* 0x74f0 */ 91, 78, 50, 66, 70, 65, 83, 50, 48, 93, 58, 10, 79, 70, 70, 83, +/* 0x7500 */ 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, +/* 0x7510 */ 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, +/* 0x7520 */ 48, 48, 48, 48, 51, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, +/* 0x7530 */ 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, 70, 65, 83, 49, 49, +/* 0x7540 */ 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, +/* 0x7550 */ 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 66, 83, 77, 65, +/* 0x7560 */ 51, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, +/* 0x7570 */ 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7580 */ 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 99, 32, 82, +/* 0x7590 */ 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x75a0 */ 32, 78, 50, 66, 68, 69, 67, 50, 48, 10, 10, 82, 69, 76, 79, 67, +/* 0x75b0 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, +/* 0x75c0 */ 82, 32, 91, 78, 50, 66, 70, 65, 83, 51, 48, 93, 58, 10, 79, 70, +/* 0x75d0 */ 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, +/* 0x75e0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, +/* 0x75f0 */ 48, 48, 48, 48, 48, 48, 51, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x7600 */ 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, 68, 69, 67, +/* 0x7610 */ 50, 48, 10, 48, 48, 48, 48, 48, 48, 48,101, 32, 82, 95, 51, 56, +/* 0x7620 */ 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, +/* 0x7630 */ 66, 68, 69, 67, 50, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, +/* 0x7640 */ 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, +/* 0x7650 */ 78, 50, 66, 68, 69, 67, 51, 48, 93, 58, 10, 79, 70, 70, 83, 69, +/* 0x7660 */ 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7670 */ 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, +/* 0x7680 */ 48, 48, 49, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, +/* 0x7690 */ 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, 68, 69, 67, 54, 48, 10, +/* 0x76a0 */ 48, 48, 48, 48, 48, 48, 50,102, 32, 82, 95, 51, 56, 54, 95, 80, +/* 0x76b0 */ 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, 68, 69, +/* 0x76c0 */ 67, 53, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x76d0 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 66, +/* 0x76e0 */ 83, 77, 65, 52, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x76f0 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7700 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x7710 */ 99, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x7720 */ 32, 32, 32, 32, 78, 50, 66, 68, 69, 67, 51, 48, 10, 10, 82, 69, +/* 0x7730 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x7740 */ 32, 70, 79, 82, 32, 91, 78, 50, 66, 70, 65, 83, 52, 48, 93, 58, +/* 0x7750 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x7760 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x7770 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 51, 32, 82, 95, 51, 56, 54, +/* 0x7780 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, +/* 0x7790 */ 68, 69, 67, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48,101, 32, 82, +/* 0x77a0 */ 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x77b0 */ 32, 78, 50, 66, 68, 69, 67, 51, 48, 10, 10, 82, 69, 76, 79, 67, +/* 0x77c0 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, +/* 0x77d0 */ 82, 32, 91, 78, 50, 66, 83, 77, 65, 54, 48, 93, 58, 10, 79, 70, +/* 0x77e0 */ 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, +/* 0x77f0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, +/* 0x7800 */ 48, 48, 48, 48, 48, 48, 56, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x7810 */ 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, 68, 69, 67, +/* 0x7820 */ 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x7830 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 66, 70, +/* 0x7840 */ 65, 83, 54, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x7850 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7860 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 97, +/* 0x7870 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x7880 */ 32, 32, 32, 78, 50, 66, 70, 65, 83, 54, 49, 10, 48, 48, 48, 48, +/* 0x7890 */ 48, 48, 49, 53, 32, 82, 95, 51, 56, 54, 95, 80, 67, 51, 50, 32, +/* 0x78a0 */ 32, 32, 32, 32, 32, 32, 32, 78, 50, 66, 68, 69, 67, 49, 48, 10, +/* 0x78b0 */ 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, +/* 0x78c0 */ 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 66, 70, 65, 83, 54, +/* 0x78d0 */ 49, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, +/* 0x78e0 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, +/* 0x78f0 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 49, 50, 32, 82, 95, +/* 0x7900 */ 51, 56, 54, 95, 80, 67, 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7910 */ 78, 50, 66, 68, 69, 67, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, +/* 0x7920 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, +/* 0x7930 */ 32, 91, 78, 50, 68, 83, 77, 65, 49, 48, 93, 58, 10, 79, 70, 70, +/* 0x7940 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x7950 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x7960 */ 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x7970 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, 49, +/* 0x7980 */ 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x7990 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 68, 70, 65, +/* 0x79a0 */ 83, 49, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, +/* 0x79b0 */ 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x79c0 */ 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, +/* 0x79d0 */ 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, +/* 0x79e0 */ 32, 32, 78, 50, 68, 68, 69, 67, 49, 48, 10, 10, 82, 69, 76, 79, +/* 0x79f0 */ 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, +/* 0x7a00 */ 79, 82, 32, 91, 78, 50, 68, 83, 77, 65, 50, 48, 93, 58, 10, 79, +/* 0x7a10 */ 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, +/* 0x7a20 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, +/* 0x7a30 */ 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, +/* 0x7a40 */ 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 83, 77, +/* 0x7a50 */ 65, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x7a60 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 68, +/* 0x7a70 */ 70, 65, 83, 50, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x7a80 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7a90 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x7aa0 */ 51, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x7ab0 */ 32, 32, 32, 32, 78, 50, 68, 70, 65, 83, 49, 49, 10, 10, 82, 69, +/* 0x7ac0 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x7ad0 */ 32, 70, 79, 82, 32, 91, 78, 50, 68, 83, 77, 65, 51, 48, 93, 58, +/* 0x7ae0 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x7af0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x7b00 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 99, 32, 82, 95, 51, 56, 54, +/* 0x7b10 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, +/* 0x7b20 */ 68, 69, 67, 51, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, +/* 0x7b30 */ 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, +/* 0x7b40 */ 50, 68, 70, 65, 83, 51, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, +/* 0x7b50 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7b60 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, +/* 0x7b70 */ 48, 48, 53, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, +/* 0x7b80 */ 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, 51, 48, 10, 48, +/* 0x7b90 */ 48, 48, 48, 48, 48, 48,101, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x7ba0 */ 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, +/* 0x7bb0 */ 51, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x7bc0 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 68, 68, +/* 0x7bd0 */ 69, 67, 51, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x7be0 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7bf0 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48,102, +/* 0x7c00 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x7c10 */ 32, 32, 32, 78, 50, 68, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x7c20 */ 48, 48, 50, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, +/* 0x7c30 */ 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, 54, 48, 10, +/* 0x7c40 */ 48, 48, 48, 48, 48, 48, 52, 51, 32, 82, 95, 51, 56, 54, 95, 80, +/* 0x7c50 */ 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, +/* 0x7c60 */ 67, 53, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x7c70 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 68, +/* 0x7c80 */ 83, 77, 65, 52, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x7c90 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7ca0 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x7cb0 */ 99, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x7cc0 */ 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, 51, 48, 10, 10, 82, 69, +/* 0x7cd0 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x7ce0 */ 32, 70, 79, 82, 32, 91, 78, 50, 68, 70, 65, 83, 52, 48, 93, 58, +/* 0x7cf0 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x7d00 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x7d10 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 51, 32, 82, 95, 51, 56, 54, +/* 0x7d20 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, +/* 0x7d30 */ 68, 69, 67, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48,101, 32, 82, +/* 0x7d40 */ 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7d50 */ 32, 78, 50, 68, 68, 69, 67, 51, 48, 10, 10, 82, 69, 76, 79, 67, +/* 0x7d60 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, +/* 0x7d70 */ 82, 32, 91, 78, 50, 68, 83, 77, 65, 54, 48, 93, 58, 10, 79, 70, +/* 0x7d80 */ 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, +/* 0x7d90 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, +/* 0x7da0 */ 48, 48, 48, 48, 48, 48, 56, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x7db0 */ 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, +/* 0x7dc0 */ 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x7dd0 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 68, 70, +/* 0x7de0 */ 65, 83, 54, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x7df0 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7e00 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 97, +/* 0x7e10 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x7e20 */ 32, 32, 32, 78, 50, 68, 70, 65, 83, 54, 49, 10, 48, 48, 48, 48, +/* 0x7e30 */ 48, 48, 49, 53, 32, 82, 95, 51, 56, 54, 95, 80, 67, 51, 50, 32, +/* 0x7e40 */ 32, 32, 32, 32, 32, 32, 32, 78, 50, 68, 68, 69, 67, 49, 48, 10, +/* 0x7e50 */ 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, +/* 0x7e60 */ 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 68, 70, 65, 83, 54, +/* 0x7e70 */ 49, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, +/* 0x7e80 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, +/* 0x7e90 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 49, 50, 32, 82, 95, +/* 0x7ea0 */ 51, 56, 54, 95, 80, 67, 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7eb0 */ 78, 50, 68, 68, 69, 67, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, +/* 0x7ec0 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, +/* 0x7ed0 */ 32, 91, 78, 50, 69, 83, 77, 65, 49, 48, 93, 58, 10, 79, 70, 70, +/* 0x7ee0 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x7ef0 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x7f00 */ 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x7f10 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, 49, +/* 0x7f20 */ 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x7f30 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 69, 70, 65, +/* 0x7f40 */ 83, 49, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, +/* 0x7f50 */ 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x7f60 */ 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, +/* 0x7f70 */ 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, +/* 0x7f80 */ 32, 32, 78, 50, 69, 68, 69, 67, 49, 48, 10, 10, 82, 69, 76, 79, +/* 0x7f90 */ 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, +/* 0x7fa0 */ 79, 82, 32, 91, 78, 50, 69, 83, 77, 65, 50, 48, 93, 58, 10, 79, +/* 0x7fb0 */ 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, +/* 0x7fc0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, +/* 0x7fd0 */ 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, +/* 0x7fe0 */ 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 83, 77, +/* 0x7ff0 */ 65, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x8000 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 69, +/* 0x8010 */ 70, 65, 83, 50, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x8020 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8030 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x8040 */ 51, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x8050 */ 32, 32, 32, 32, 78, 50, 69, 70, 65, 83, 49, 49, 10, 10, 82, 69, +/* 0x8060 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x8070 */ 32, 70, 79, 82, 32, 91, 78, 50, 69, 83, 77, 65, 51, 48, 93, 58, +/* 0x8080 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x8090 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x80a0 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 99, 32, 82, 95, 51, 56, 54, +/* 0x80b0 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, +/* 0x80c0 */ 68, 69, 67, 51, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, +/* 0x80d0 */ 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, +/* 0x80e0 */ 50, 69, 70, 65, 83, 51, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, +/* 0x80f0 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8100 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, +/* 0x8110 */ 48, 48, 53, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, +/* 0x8120 */ 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, 51, 48, 10, 48, +/* 0x8130 */ 48, 48, 48, 48, 48, 48,101, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x8140 */ 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, +/* 0x8150 */ 51, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x8160 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 69, 68, +/* 0x8170 */ 69, 67, 51, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x8180 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8190 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48,102, +/* 0x81a0 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x81b0 */ 32, 32, 32, 78, 50, 69, 68, 69, 67, 50, 48, 10, 48, 48, 48, 48, +/* 0x81c0 */ 48, 48, 49,101, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, +/* 0x81d0 */ 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, 53, 48, 10, +/* 0x81e0 */ 48, 48, 48, 48, 48, 48, 51, 48, 32, 82, 95, 51, 56, 54, 95, 80, +/* 0x81f0 */ 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, +/* 0x8200 */ 67, 54, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x8210 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 69, +/* 0x8220 */ 83, 77, 65, 52, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x8230 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8240 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x8250 */ 99, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x8260 */ 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, 51, 48, 10, 10, 82, 69, +/* 0x8270 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x8280 */ 32, 70, 79, 82, 32, 91, 78, 50, 69, 70, 65, 83, 52, 48, 93, 58, +/* 0x8290 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x82a0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x82b0 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 51, 32, 82, 95, 51, 56, 54, +/* 0x82c0 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, +/* 0x82d0 */ 68, 69, 67, 51, 48, 10, 48, 48, 48, 48, 48, 48, 48,101, 32, 82, +/* 0x82e0 */ 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x82f0 */ 32, 78, 50, 69, 68, 69, 67, 51, 48, 10, 10, 82, 69, 76, 79, 67, +/* 0x8300 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, +/* 0x8310 */ 82, 32, 91, 78, 50, 69, 83, 77, 65, 54, 48, 93, 58, 10, 79, 70, +/* 0x8320 */ 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, +/* 0x8330 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, +/* 0x8340 */ 48, 48, 48, 48, 48, 48, 56, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x8350 */ 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, +/* 0x8360 */ 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x8370 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 69, 70, +/* 0x8380 */ 65, 83, 54, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x8390 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x83a0 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 97, +/* 0x83b0 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x83c0 */ 32, 32, 32, 78, 50, 69, 70, 65, 83, 54, 49, 10, 48, 48, 48, 48, +/* 0x83d0 */ 48, 48, 49, 53, 32, 82, 95, 51, 56, 54, 95, 80, 67, 51, 50, 32, +/* 0x83e0 */ 32, 32, 32, 32, 32, 32, 32, 78, 50, 69, 68, 69, 67, 49, 48, 10, +/* 0x83f0 */ 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, +/* 0x8400 */ 82, 68, 83, 32, 70, 79, 82, 32, 91, 78, 50, 69, 70, 65, 83, 54, +/* 0x8410 */ 49, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, +/* 0x8420 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, +/* 0x8430 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 49, 50, 32, 82, 95, +/* 0x8440 */ 51, 56, 54, 95, 80, 67, 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8450 */ 78, 50, 69, 68, 69, 67, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, +/* 0x8460 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, +/* 0x8470 */ 32, 91, 76, 90, 77, 65, 95, 68, 69, 67, 48, 48, 93, 58, 10, 79, +/* 0x8480 */ 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, +/* 0x8490 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, +/* 0x84a0 */ 48, 48, 48, 48, 48, 48, 48, 53, 32, 82, 95, 51, 56, 54, 95, 51, +/* 0x84b0 */ 50, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,108,122,109, 97, 95, +/* 0x84c0 */ 115,116, 97, 99,107, 95, 97,100,106,117,115,116, 10, 48, 48, 48, +/* 0x84d0 */ 48, 48, 48, 49, 52, 32, 82, 95, 51, 56, 54, 95, 51, 50, 32, 32, +/* 0x84e0 */ 32, 32, 32, 32, 32, 32, 32, 32,108,122,109, 97, 95,117, 95,108, +/* 0x84f0 */ 101,110, 10, 48, 48, 48, 48, 48, 48, 49,101, 32, 82, 95, 51, 56, +/* 0x8500 */ 54, 95, 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,108,122, +/* 0x8510 */ 109, 97, 95, 99, 95,108,101,110, 10, 48, 48, 48, 48, 48, 48, 50, +/* 0x8520 */ 97, 32, 82, 95, 51, 56, 54, 95, 51, 50, 32, 32, 32, 32, 32, 32, +/* 0x8530 */ 32, 32, 32, 32,108,122,109, 97, 95,112,114,111,112,101,114,116, +/* 0x8540 */ 105,101,115, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x8550 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 67, 65, 76, +/* 0x8560 */ 76, 84, 82, 48, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x8570 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8580 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x8590 */ 49, 32, 82, 95, 51, 56, 54, 95, 51, 50, 32, 32, 32, 32, 32, 32, +/* 0x85a0 */ 32, 32, 32, 32,102,105,108,116,101,114, 95,108,101,110,103,116, +/* 0x85b0 */ 104, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x85c0 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 67, 84, 67, 76, 69, +/* 0x85d0 */ 86, 69, 49, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, +/* 0x85e0 */ 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x85f0 */ 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 50, 32, +/* 0x8600 */ 82, 95, 51, 56, 54, 95, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8610 */ 32, 32,102,105,108,116,101,114, 95, 99,116,111, 10, 48, 48, 48, +/* 0x8620 */ 48, 48, 48, 48, 52, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, +/* 0x8630 */ 32, 32, 32, 32, 32, 32, 32, 32, 67, 65, 76, 76, 84, 82, 48, 48, +/* 0x8640 */ 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, +/* 0x8650 */ 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 67, 65, 76, 76, 84, 82, +/* 0x8660 */ 48, 50, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, +/* 0x8670 */ 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8680 */ 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48,100, 32, 82, +/* 0x8690 */ 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x86a0 */ 32, 67, 65, 76, 76, 84, 82, 48, 48, 10, 10, 82, 69, 76, 79, 67, +/* 0x86b0 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, +/* 0x86c0 */ 82, 32, 91, 67, 65, 76, 76, 84, 82, 49, 48, 93, 58, 10, 79, 70, +/* 0x86d0 */ 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, +/* 0x86e0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, +/* 0x86f0 */ 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 51, 50, +/* 0x8700 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,102,105,108,116,101,114, +/* 0x8710 */ 95,108,101,110,103,116,104, 10, 10, 82, 69, 76, 79, 67, 65, 84, +/* 0x8720 */ 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, +/* 0x8730 */ 91, 67, 65, 76, 76, 84, 82, 49, 49, 93, 58, 10, 79, 70, 70, 83, +/* 0x8740 */ 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, +/* 0x8750 */ 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, +/* 0x8760 */ 48, 48, 48, 48, 51, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, +/* 0x8770 */ 32, 32, 32, 32, 32, 32, 32, 32, 67, 65, 76, 76, 84, 82, 49, 51, +/* 0x8780 */ 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, +/* 0x8790 */ 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 67, 84, 67, 76, 69, 86, +/* 0x87a0 */ 69, 50, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, +/* 0x87b0 */ 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x87c0 */ 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 50, 32, 82, +/* 0x87d0 */ 95, 51, 56, 54, 95, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x87e0 */ 32,102,105,108,116,101,114, 95, 99,116,111, 10, 48, 48, 48, 48, +/* 0x87f0 */ 48, 48, 48, 52, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, +/* 0x8800 */ 32, 32, 32, 32, 32, 32, 32, 67, 65, 76, 76, 84, 82, 49, 49, 10, +/* 0x8810 */ 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, +/* 0x8820 */ 82, 68, 83, 32, 70, 79, 82, 32, 91, 67, 65, 76, 76, 84, 82, 49, +/* 0x8830 */ 51, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, +/* 0x8840 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, +/* 0x8850 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 52, 32, 82, 95, +/* 0x8860 */ 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8870 */ 67, 65, 76, 76, 84, 82, 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, +/* 0x8880 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, +/* 0x8890 */ 32, 91, 76, 88, 85, 78, 70, 48, 48, 48, 93, 58, 10, 79, 70, 70, +/* 0x88a0 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x88b0 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x88c0 */ 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x88d0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, 48, 49, +/* 0x88e0 */ 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x88f0 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 77, 82, 85, +/* 0x8900 */ 48, 48, 53, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, +/* 0x8910 */ 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8920 */ 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, +/* 0x8930 */ 82, 95, 51, 56, 54, 95, 51, 50, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8940 */ 32, 32, 78, 77, 82, 85, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, +/* 0x8950 */ 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, +/* 0x8960 */ 76, 88, 85, 78, 70, 48, 49, 48, 93, 58, 10, 79, 70, 70, 83, 69, +/* 0x8970 */ 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8980 */ 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, +/* 0x8990 */ 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 51, 50, 32, +/* 0x89a0 */ 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, 48, 52, 50, 10, +/* 0x89b0 */ 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, +/* 0x89c0 */ 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 74, 67, 67, 48, 50, +/* 0x89d0 */ 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, +/* 0x89e0 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, +/* 0x89f0 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, +/* 0x8a00 */ 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8a10 */ 76, 88, 85, 78, 70, 48, 51, 52, 10, 10, 82, 69, 76, 79, 67, 65, +/* 0x8a20 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, +/* 0x8a30 */ 32, 91, 76, 88, 74, 67, 67, 48, 50, 49, 93, 58, 10, 79, 70, 70, +/* 0x8a40 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x8a50 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x8a60 */ 48, 48, 48, 48, 48, 52, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x8a70 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, 48, 51, +/* 0x8a80 */ 52, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x8a90 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 85, 78, 70, +/* 0x8aa0 */ 51, 56, 56, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, +/* 0x8ab0 */ 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8ac0 */ 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 50, 32, +/* 0x8ad0 */ 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, +/* 0x8ae0 */ 32, 32, 76, 88, 85, 78, 70, 48, 52, 48, 10, 10, 82, 69, 76, 79, +/* 0x8af0 */ 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, +/* 0x8b00 */ 79, 82, 32, 91, 76, 88, 85, 78, 70, 52, 56, 55, 93, 58, 10, 79, +/* 0x8b10 */ 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, +/* 0x8b20 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, +/* 0x8b30 */ 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, +/* 0x8b40 */ 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, +/* 0x8b50 */ 48, 52, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, +/* 0x8b60 */ 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 77, +/* 0x8b70 */ 82, 85, 48, 54, 53, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x8b80 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8b90 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x8ba0 */ 52, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x8bb0 */ 32, 32, 32, 32, 76, 88, 77, 82, 85, 48, 55, 48, 10, 10, 82, 69, +/* 0x8bc0 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x8bd0 */ 32, 70, 79, 82, 32, 91, 76, 88, 77, 82, 85, 48, 55, 48, 93, 58, +/* 0x8be0 */ 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, +/* 0x8bf0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, +/* 0x8c00 */ 69, 10, 48, 48, 48, 48, 48, 48, 48, 52, 32, 82, 95, 51, 56, 54, +/* 0x8c10 */ 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, +/* 0x8c20 */ 78, 70, 48, 52, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, +/* 0x8c30 */ 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, +/* 0x8c40 */ 88, 77, 82, 85, 48, 57, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, +/* 0x8c50 */ 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8c60 */ 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, +/* 0x8c70 */ 48, 48, 54, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, +/* 0x8c80 */ 32, 32, 32, 32, 32, 32, 76, 88, 77, 82, 85, 49, 48, 48, 10, 10, +/* 0x8c90 */ 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, +/* 0x8ca0 */ 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 85, 78, 70, 48, 52, 49, +/* 0x8cb0 */ 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, +/* 0x8cc0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, +/* 0x8cd0 */ 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 54, 32, 82, 95, 51, +/* 0x8ce0 */ 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, +/* 0x8cf0 */ 88, 85, 78, 70, 48, 51, 52, 10, 10, 82, 69, 76, 79, 67, 65, 84, +/* 0x8d00 */ 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, +/* 0x8d10 */ 91, 76, 69, 88, 69, 67, 48, 49, 54, 93, 58, 10, 79, 70, 70, 83, +/* 0x8d20 */ 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, +/* 0x8d30 */ 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, +/* 0x8d40 */ 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 51, 50, +/* 0x8d50 */ 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, 48, 52, 50, +/* 0x8d60 */ 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, +/* 0x8d70 */ 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 77, 82, 85, 48, +/* 0x8d80 */ 52, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, +/* 0x8d90 */ 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8da0 */ 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, +/* 0x8db0 */ 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8dc0 */ 32, 76, 88, 77, 82, 85, 48, 51, 48, 10, 10, 82, 69, 76, 79, 67, +/* 0x8dd0 */ 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, +/* 0x8de0 */ 82, 32, 91, 76, 88, 74, 67, 67, 48, 48, 48, 93, 58, 10, 79, 70, +/* 0x8df0 */ 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, +/* 0x8e00 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, +/* 0x8e10 */ 48, 48, 48, 48, 48, 48, 55, 32, 82, 95, 51, 56, 54, 95, 80, 67, +/* 0x8e20 */ 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 74, 67, 67, 48, +/* 0x8e30 */ 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x8e40 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 67, 65, +/* 0x8e50 */ 76, 76, 48, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x8e60 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8e70 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, +/* 0x8e80 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x8e90 */ 32, 32, 32, 76, 88, 85, 78, 70, 48, 51, 55, 10, 10, 82, 69, 76, +/* 0x8ea0 */ 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, +/* 0x8eb0 */ 70, 79, 82, 32, 91, 76, 88, 67, 74, 50, 77, 82, 85, 93, 58, 10, +/* 0x8ec0 */ 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, +/* 0x8ed0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, +/* 0x8ee0 */ 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, +/* 0x8ef0 */ 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, +/* 0x8f00 */ 70, 48, 51, 55, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, +/* 0x8f10 */ 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, +/* 0x8f20 */ 67, 74, 52, 77, 82, 85, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, +/* 0x8f30 */ 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x8f40 */ 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, +/* 0x8f50 */ 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, +/* 0x8f60 */ 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, 48, 51, 52, 10, 10, 82, +/* 0x8f70 */ 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, +/* 0x8f80 */ 83, 32, 70, 79, 82, 32, 91, 76, 88, 67, 74, 54, 77, 82, 85, 93, +/* 0x8f90 */ 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, +/* 0x8fa0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, +/* 0x8fb0 */ 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 49, 32, 82, 95, 51, 56, +/* 0x8fc0 */ 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, +/* 0x8fd0 */ 67, 74, 56, 77, 82, 85, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, +/* 0x8fe0 */ 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, +/* 0x8ff0 */ 76, 88, 67, 74, 55, 77, 82, 85, 93, 58, 10, 79, 70, 70, 83, 69, +/* 0x9000 */ 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x9010 */ 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, +/* 0x9020 */ 48, 48, 48, 49, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, +/* 0x9030 */ 32, 32, 32, 32, 32, 32, 32, 76, 88, 67, 74, 56, 77, 82, 85, 10, +/* 0x9040 */ 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, +/* 0x9050 */ 82, 68, 83, 32, 70, 79, 82, 32, 91, 76, 88, 67, 74, 56, 77, 82, +/* 0x9060 */ 85, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, +/* 0x9070 */ 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, +/* 0x9080 */ 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 50, 32, 82, 95, +/* 0x9090 */ 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x90a0 */ 76, 88, 85, 78, 70, 48, 51, 55, 10, 10, 82, 69, 76, 79, 67, 65, +/* 0x90b0 */ 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, +/* 0x90c0 */ 32, 91, 76, 88, 85, 78, 70, 48, 51, 52, 93, 58, 10, 79, 70, 70, +/* 0x90d0 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x90e0 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x90f0 */ 48, 48, 48, 48, 48, 52, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x9100 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 76, 88, 85, 78, 70, 48, 51, +/* 0x9110 */ 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, +/* 0x9120 */ 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 99,116,111,107, 51, +/* 0x9130 */ 50, 46, 48, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, +/* 0x9140 */ 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x9150 */ 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, 51, +/* 0x9160 */ 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, +/* 0x9170 */ 32, 32, 32, 99,116,111,107, 51, 50, 46, 50, 48, 10, 10, 82, 69, +/* 0x9180 */ 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, +/* 0x9190 */ 32, 70, 79, 82, 32, 91, 99,116,111,107, 51, 50, 46, 49, 48, 93, +/* 0x91a0 */ 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, +/* 0x91b0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, +/* 0x91c0 */ 85, 69, 10, 48, 48, 48, 48, 48, 48, 48,100, 32, 82, 95, 51, 56, +/* 0x91d0 */ 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99,116, +/* 0x91e0 */ 111,107, 51, 50, 46, 50, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, +/* 0x91f0 */ 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, +/* 0x9200 */ 91, 99,116,111,107, 51, 50, 46, 50, 48, 93, 58, 10, 79, 70, 70, +/* 0x9210 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x9220 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x9230 */ 48, 48, 48, 48, 48, 53, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x9240 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 99,116,111,107, 51, 50, 46, +/* 0x9250 */ 52, 48, 10, 48, 48, 48, 48, 48, 48, 48, 57, 32, 82, 95, 51, 56, +/* 0x9260 */ 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, 32, 32, 32, 32, 99,116, +/* 0x9270 */ 111,107, 51, 50, 46, 52, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, +/* 0x9280 */ 73, 79, 78, 32, 82, 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, +/* 0x9290 */ 91, 99,116,111,107, 51, 50, 46, 51, 48, 93, 58, 10, 79, 70, 70, +/* 0x92a0 */ 83, 69, 84, 32, 32, 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, +/* 0x92b0 */ 32, 32, 32, 32, 32, 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, +/* 0x92c0 */ 48, 48, 48, 48, 48, 54, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, +/* 0x92d0 */ 32, 32, 32, 32, 32, 32, 32, 32, 32, 99,116,111,107, 51, 50, 46, +/* 0x92e0 */ 49, 48, 10, 10, 82, 69, 76, 79, 67, 65, 84, 73, 79, 78, 32, 82, +/* 0x92f0 */ 69, 67, 79, 82, 68, 83, 32, 70, 79, 82, 32, 91, 99,116,111,107, +/* 0x9300 */ 51, 50, 46, 52, 48, 93, 58, 10, 79, 70, 70, 83, 69, 84, 32, 32, +/* 0x9310 */ 32, 84, 89, 80, 69, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, +/* 0x9320 */ 32, 32, 32, 86, 65, 76, 85, 69, 10, 48, 48, 48, 48, 48, 48, 48, +/* 0x9330 */ 52, 32, 82, 95, 51, 56, 54, 95, 80, 67, 56, 32, 32, 32, 32, 32, +/* 0x9340 */ 32, 32, 32, 32, 99,116,111,107, 51, 50, 46, 48, 48, 10 +}; diff --git a/src/stub/src/i386-linux.shlib-init.S b/src/stub/src/i386-linux.shlib-init.S new file mode 100644 index 00000000..543c2228 --- /dev/null +++ b/src/stub/src/i386-linux.shlib-init.S @@ -0,0 +1,314 @@ +/* +; i386-linux.shlib-init.S -- Linux shared library init & decompressor (Elf binary) +; +; This file is part of the UPX executable compressor. +; +; Copyright (C) 1996-2009 Markus Franz Xaver Johannes Oberhumer +; Copyright (C) 1996-2009 Laszlo Molnar +; Copyright (C) 2000-2009 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 +; +; +; John F. Reiser +; +; +*/ + +#include "arch/i386/macros.S" + + +/************************************************************************* +// program entry point +// see glibc/sysdeps/i386/elf/start.S +**************************************************************************/ + +section LEXEC000 +// .long . // compress-time virtual address (detect runtime relocation) +// .long user DT_INIT +// .long &escape_hatch +// .long &{p_info; b_info; compressed data} +_start: .globl _start + //// int3 + push eax; pusha + mov ebp,esp +o_uinit= 8*4 // beyond saved registers +//o_reloc= 6*4 // saved ecx + + call main // push address of decompress subroutine +decompress: + +// /************************************************************************* +// // C callable decompressor +// **************************************************************************/ + +// /* Offsets to parameters, allowing for {pusha + call} */ +#define O_INP (8*4 +1*4) +#define O_INS (8*4 +2*4) +#define O_OUTP (8*4 +3*4) +#define O_OUTS (8*4 +4*4) +#define O_PARAM (8*4 +5*4) + +#define INP dword ptr [esp+O_INP] +#define INS dword ptr [esp+O_INS] +#define OUTP dword ptr [esp+O_OUTP] +#define OUTS dword ptr [esp+O_OUTS] +#define PARM dword ptr [esp+O_PARAM] + +section LEXEC009 + //; empty section for commonality with l_lx_exec86.asm +section LEXEC010 + pusha + // cld + + mov esi, INP + mov edi, OUTP + + or ebp, -1 +//;; align 8 + +#include "arch/i386/nrv2b_d32.S" +#include "arch/i386/nrv2d_d32.S" +#include "arch/i386/nrv2e_d32.S" +#include "arch/i386/lzma_d.S" + cjt32 0 + +section LEXEC015 + // eax is 0 from decompressor code + //xor eax, eax ; return code + +// check compressed size + mov edx, INP + add edx, INS + cmp esi, edx + jz .ok + dec eax +.ok: + +// write back the uncompressed size + sub edi, OUTP + mov edx, OUTS + mov [edx], edi + + mov [7*4 + esp], eax + popa + ret + + ctojr32 + ctok32 edi, dl +section LEXEC017 + popa + ret + +section LEXEC020 + +#define PAGE_SIZE ( 1<<12) +PAGE_MASK= -PAGE_SIZE // AND clears the offset within page + +#define MAP_FIXED 0x10 +#define MAP_PRIVATE 0x02 +#define MAP_ANONYMOUS 0x20 +#define PROT_READ 1 +#define PROT_WRITE 2 +#define PROT_EXEC 4 +#define __NR_mmap 90 +#define __NR_munmap 91 +#define __NR_mprotect 125 +#define szElf32_Ehdr 0x34 +#define p_memsz 5*4 +sz_p_info = 3*4 +sz_b_info=3*4 + sz_unc= 0 + sz_cpr= 4 + b_method= 8 + +#define __NR_write 4 +#define __NR_exit 1 + +#define pushsbli .byte 0x6a, /* push sign-extended byte to long immediate*/ + +msg_SELinux: + pushsbli L71 - L70 + pop edx // length + call L71 +L70: + .ascii "PROT_EXEC|PROT_WRITE failed.\n" +L71: + pop ecx // message text + push 2 // fd stderr + pop ebx + push __NR_write; pop eax; int 0x80 +die: + mov bl, 127 // only low 7 bits matter! + push __NR_exit; pop eax; int 0x80 + +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 + + pop edx // &decompress + + lea esi,[edx + _start - decompress - 4*4] + mov ecx,esi + lodsd; sub ecx,eax; //mov [ebp+o_reloc],ecx + lodsd; add eax,ecx; mov [ebp+o_uinit],eax // reloc DT_INIT for step 12 + lodsd; add eax,ecx; push eax // reloc &hatch for step 10 +o_hatch= -1*4 + lodsd; add eax,ecx; xchg eax,edi // &p_info; also destination for decompress + lea esi,[edi + sz_p_info] // &b_info + + push eax; push eax // param space: munmap temp pages step 9 +p_unmap= -3*4 + + lodsd; lodsd; add esi,eax; lodsd // skip unpack helper block + + lodsd // eax=dstlen + mov ebx,edi + and ebx,~PAGE_MASK // ebx= fragment + add eax,ebx // extend to page-aligned + sub edi,ebx + push eax; push edi // params: mprotect restored pages step 8 +p_mprot= -5*4 + sub eax,ebx // restore + add edi,ebx + + movzbl ecx,[esi+b_method-4+1]; push ecx // ftid + movzbl ecx,[esi+b_method-4+2]; push ecx // cto8 + push eax; mov ecx,esp // dstlen also for unfilter step 7 + push edi // dst param for unfilter step 7 +p_unflt= -9*4 + push edx // &decompress +o_uncpr= -10*4 + + lodsd; xchg eax,edx // edx= srclen + lodsd; push eax // method,filter,cto,junk + push ecx // &dstlen + push edi // dst + push edx // srclen + push esi // src; arglist ready for decompress step 6 +p_uncpr= -15*4 + + mov eax,[ebp+o_uncpr] // &decompress + add edx,[eax-4] // l_d_cpr + l_f_unc + + call L220 +supervise: + // Allocate pages for result of decompressing. + // These replace the compressed source and the following hole. + push 0; push 0 + push MAP_PRIVATE|MAP_ANONYMOUS|MAP_FIXED + push PROT_READ|PROT_WRITE + push [ebp+p_mprot+4] // dstlen + push [ebp+p_mprot] // dst + mov ecx,ebx // save fragment + mov ebx,esp + push __NR_mmap; pop eax; int 0x80 + cmp eax,[ebx]; je 0f; hlt; 0: + add esp,6*4 + + // Restore fragment of page below dst + xchg eax,edi + mov esi,[ebp+p_unmap] + add ecx,3; shr ecx,2 // FIXME: is this safe? + rep movsd + + call [ebp+o_uncpr] // decompress + add esp,5*4 // remove params +//o_uncpr + pop eax // &decompress +//p_unflt + cmp [word ptr esp+3*4],0; je 0f // 0==ftid ==> no filter + add eax,2; call eax // unfilter {i386 f_unf==(2+f_unc)} +0: + add esp,4*4 +//p_mprot + pop ebx // dst including fragment + pop ecx // dstlen + push PROT_READ|PROT_EXEC; pop edx + push __NR_mprotect; pop eax; int 0x80 +//p_unmap + pop ebx // &temp pages + pop ecx // length + push __NR_munmap; pop eax + ret // goto escape hatch +//hatch: + int 0x80 // munmap temporary pages + popa + ret // goto user DT_INIT + +L220: + pop esi // &supervise + add edx,[esi-4] // total length to allocate + add edx,ebx // include fragment + + // Allocate pages to hold temporary copy. + push 0; push 0 + push MAP_PRIVATE|MAP_ANONYMOUS + push PROT_READ|PROT_WRITE|PROT_EXEC + push edx // length with fragment + push 0 // addr + mov ecx,ebx // save fragment + mov ebx,esp // & vec + push __NR_mmap; pop eax; int 0x80 + cmp eax,PAGE_MASK; jb 0f; hlt; 0: + add esp,6*4 + mov ebx,ecx // save fragment + + mov [ebp+p_unmap ],eax // addr + mov [ebp+p_unmap+4],edx // length with fragment + xchg eax,edi // edi= dst + xchg eax,esi // eax= &supervise +//p_uncpr + mov esi,[ebp+p_mprot] + add ecx,3; shr ecx,2 // FIXME: is this safe? + rep movsd // copy the fragment + + pop esi // &src data (after fragment) + pop ecx; push ecx // length + push edi // &copied data (after fragment) + add ecx,3; shr ecx,2 + rep movsd // copy compressed data + + mov esi,[ebp+o_uncpr] + mov [ebp+o_uncpr],edi + mov ecx,[esi-4] + rep movsb + +//o_super + xchg eax,esi // esi= &supervise + push edi // &copied + mov ecx,[esi-4] + rep movsb + + ret // goto copied supervise: + +// vi:ts=8:et:nowrap + diff --git a/src/stub/tmp/i386-linux.shlib-init.bin.dump b/src/stub/tmp/i386-linux.shlib-init.bin.dump new file mode 100644 index 00000000..c3176f52 --- /dev/null +++ b/src/stub/tmp/i386-linux.shlib-init.bin.dump @@ -0,0 +1,653 @@ +file format elf32-i386 + +Sections: +Idx Name Size VMA LMA File off Algn Flags + 0 LEXEC000 0000000a 00000000 00000000 00000034 2**0 CONTENTS, RELOC, READONLY + 1 LEXEC009 00000000 00000000 00000000 0000003e 2**0 CONTENTS, READONLY + 2 LEXEC010 0000000c 00000000 00000000 0000003e 2**0 CONTENTS, READONLY + 3 N2BSMA10 00000003 00000000 00000000 0000004a 2**0 CONTENTS, RELOC, READONLY + 4 N2BFAS10 00000002 00000000 00000000 0000004d 2**0 CONTENTS, RELOC, READONLY + 5 N2BFAS11 00000006 00000000 00000000 0000004f 2**0 CONTENTS, READONLY + 6 N2BDEC10 0000000b 00000000 00000000 00000055 2**0 CONTENTS, READONLY + 7 N2BSMA20 00000005 00000000 00000000 00000060 2**0 CONTENTS, RELOC, READONLY + 8 N2BFAS20 00000009 00000000 00000000 00000065 2**0 CONTENTS, RELOC, READONLY + 9 N2BDEC20 0000000d 00000000 00000000 0000006e 2**0 CONTENTS, READONLY + 10 N2BSMA30 0000000d 00000000 00000000 0000007b 2**0 CONTENTS, RELOC, READONLY + 11 N2BFAS30 0000000f 00000000 00000000 00000088 2**0 CONTENTS, RELOC, READONLY + 12 N2BDEC30 0000003e 00000000 00000000 00000097 2**0 CONTENTS, RELOC, READONLY + 13 N2BSMA40 0000000d 00000000 00000000 000000d5 2**0 CONTENTS, RELOC, READONLY + 14 N2BFAS40 0000000f 00000000 00000000 000000e2 2**0 CONTENTS, RELOC, READONLY + 15 N2BSMA50 00000002 00000000 00000000 000000f1 2**0 CONTENTS, READONLY + 16 N2BFAS50 00000003 00000000 00000000 000000f3 2**0 CONTENTS, READONLY + 17 N2BDEC50 00000009 00000000 00000000 000000f6 2**0 CONTENTS, READONLY + 18 N2BSMA60 0000000c 00000000 00000000 000000ff 2**0 CONTENTS, RELOC, READONLY + 19 N2BFAS60 00000019 00000000 00000000 0000010b 2**0 CONTENTS, RELOC, READONLY + 20 N2BFAS61 00000016 00000000 00000000 00000124 2**0 CONTENTS, RELOC, READONLY + 21 N2BDEC60 00000000 00000000 00000000 0000013a 2**0 CONTENTS, READONLY + 22 N2DSMA10 00000003 00000000 00000000 0000013a 2**0 CONTENTS, RELOC, READONLY + 23 N2DFAS10 00000002 00000000 00000000 0000013d 2**0 CONTENTS, RELOC, READONLY + 24 N2DFAS11 00000006 00000000 00000000 0000013f 2**0 CONTENTS, READONLY + 25 N2DDEC10 0000000b 00000000 00000000 00000145 2**0 CONTENTS, READONLY + 26 N2DSMA20 00000005 00000000 00000000 00000150 2**0 CONTENTS, RELOC, READONLY + 27 N2DFAS20 00000009 00000000 00000000 00000155 2**0 CONTENTS, RELOC, READONLY + 28 N2DDEC20 0000000d 00000000 00000000 0000015e 2**0 CONTENTS, READONLY + 29 N2DSMA30 0000000d 00000000 00000000 0000016b 2**0 CONTENTS, RELOC, READONLY + 30 N2DFAS30 0000000f 00000000 00000000 00000178 2**0 CONTENTS, RELOC, READONLY + 31 N2DDEC30 00000052 00000000 00000000 00000187 2**0 CONTENTS, RELOC, READONLY + 32 N2DSMA40 0000000d 00000000 00000000 000001d9 2**0 CONTENTS, RELOC, READONLY + 33 N2DFAS40 0000000f 00000000 00000000 000001e6 2**0 CONTENTS, RELOC, READONLY + 34 N2DSMA50 00000002 00000000 00000000 000001f5 2**0 CONTENTS, READONLY + 35 N2DFAS50 00000003 00000000 00000000 000001f7 2**0 CONTENTS, READONLY + 36 N2DDEC50 00000009 00000000 00000000 000001fa 2**0 CONTENTS, READONLY + 37 N2DSMA60 0000000c 00000000 00000000 00000203 2**0 CONTENTS, RELOC, READONLY + 38 N2DFAS60 00000019 00000000 00000000 0000020f 2**0 CONTENTS, RELOC, READONLY + 39 N2DFAS61 00000016 00000000 00000000 00000228 2**0 CONTENTS, RELOC, READONLY + 40 N2DDEC60 00000000 00000000 00000000 0000023e 2**0 CONTENTS, READONLY + 41 N2ESMA10 00000003 00000000 00000000 0000023e 2**0 CONTENTS, RELOC, READONLY + 42 N2EFAS10 00000002 00000000 00000000 00000241 2**0 CONTENTS, RELOC, READONLY + 43 N2EFAS11 00000006 00000000 00000000 00000243 2**0 CONTENTS, READONLY + 44 N2EDEC10 0000000b 00000000 00000000 00000249 2**0 CONTENTS, READONLY + 45 N2ESMA20 00000005 00000000 00000000 00000254 2**0 CONTENTS, RELOC, READONLY + 46 N2EFAS20 00000009 00000000 00000000 00000259 2**0 CONTENTS, RELOC, READONLY + 47 N2EDEC20 0000000d 00000000 00000000 00000262 2**0 CONTENTS, READONLY + 48 N2ESMA30 0000000d 00000000 00000000 0000026f 2**0 CONTENTS, RELOC, READONLY + 49 N2EFAS30 0000000f 00000000 00000000 0000027c 2**0 CONTENTS, RELOC, READONLY + 50 N2EDEC30 0000005f 00000000 00000000 0000028b 2**0 CONTENTS, RELOC, READONLY + 51 N2ESMA40 0000000d 00000000 00000000 000002ea 2**0 CONTENTS, RELOC, READONLY + 52 N2EFAS40 0000000f 00000000 00000000 000002f7 2**0 CONTENTS, RELOC, READONLY + 53 N2ESMA50 00000002 00000000 00000000 00000306 2**0 CONTENTS, READONLY + 54 N2EFAS50 00000003 00000000 00000000 00000308 2**0 CONTENTS, READONLY + 55 N2EDEC50 00000009 00000000 00000000 0000030b 2**0 CONTENTS, READONLY + 56 N2ESMA60 0000000c 00000000 00000000 00000314 2**0 CONTENTS, RELOC, READONLY + 57 N2EFAS60 00000019 00000000 00000000 00000320 2**0 CONTENTS, RELOC, READONLY + 58 N2EFAS61 00000016 00000000 00000000 00000339 2**0 CONTENTS, RELOC, READONLY + 59 N2EDEC60 00000000 00000000 00000000 0000034f 2**0 CONTENTS, READONLY + 60 LZMA_DEC00 0000002e 00000000 00000000 0000034f 2**0 CONTENTS, RELOC, READONLY + 61 LZMA_ELF00 00000048 00000000 00000000 0000037d 2**0 CONTENTS, READONLY + 62 LZMA_DEC10 00000a86 00000000 00000000 000003c5 2**0 CONTENTS, READONLY + 63 LZMA_DEC20 00000a86 00000000 00000000 00000e4b 2**0 CONTENTS, READONLY + 64 LZMA_DEC30 0000001a 00000000 00000000 000018d1 2**0 CONTENTS, READONLY + 65 CALLTR00 0000000e 00000000 00000000 000018eb 2**0 CONTENTS, RELOC, READONLY + 66 CTCLEVE1 00000005 00000000 00000000 000018f9 2**0 CONTENTS, RELOC, READONLY + 67 CALLTR01 00000005 00000000 00000000 000018fe 2**0 CONTENTS, READONLY + 68 CTBSHR01 00000004 00000000 00000000 00001903 2**0 CONTENTS, READONLY + 69 CTBROR01 00000002 00000000 00000000 00001907 2**0 CONTENTS, READONLY + 70 CTBSWA01 00000005 00000000 00000000 00001909 2**0 CONTENTS, READONLY + 71 CALLTR02 0000000e 00000000 00000000 0000190e 2**0 CONTENTS, RELOC, READONLY + 72 CALLTR10 00000005 00000000 00000000 0000191c 2**0 CONTENTS, RELOC, READONLY + 73 CALLTRE8 00000002 00000000 00000000 00001921 2**0 CONTENTS, READONLY + 74 CALLTRE9 00000002 00000000 00000000 00001923 2**0 CONTENTS, READONLY + 75 CALLTR11 00000004 00000000 00000000 00001925 2**0 CONTENTS, RELOC, READONLY + 76 CTCLEVE2 00000005 00000000 00000000 00001929 2**0 CONTENTS, RELOC, READONLY + 77 CALLTR12 00000002 00000000 00000000 0000192e 2**0 CONTENTS, READONLY + 78 CTBSHR11 00000004 00000000 00000000 00001930 2**0 CONTENTS, READONLY + 79 CTBROR11 00000002 00000000 00000000 00001934 2**0 CONTENTS, READONLY + 80 CTBSWA11 00000005 00000000 00000000 00001936 2**0 CONTENTS, READONLY + 81 CALLTR13 00000005 00000000 00000000 0000193b 2**0 CONTENTS, RELOC, READONLY + 82 LEXEC015 0000001d 00000000 00000000 00001940 2**0 CONTENTS, READONLY + 83 LXUNF000 00000002 00000000 00000000 0000195d 2**0 CONTENTS, RELOC, READONLY + 84 LXUNF002 00000005 00000000 00000000 0000195f 2**0 CONTENTS, READONLY + 85 MRUBYTE0 00000002 00000000 00000000 00001964 2**0 CONTENTS, READONLY + 86 LXMRU005 00000005 00000000 00000000 00001966 2**0 CONTENTS, RELOC, READONLY + 87 LXMRU006 00000007 00000000 00000000 0000196b 2**0 CONTENTS, READONLY + 88 LXMRU007 00000007 00000000 00000000 00001972 2**0 CONTENTS, READONLY + 89 LXUNF008 00000004 00000000 00000000 00001979 2**0 CONTENTS, READONLY + 90 LXUNF010 00000005 00000000 00000000 0000197d 2**0 CONTENTS, RELOC, READONLY + 91 LXJCC010 00000003 00000000 00000000 00001982 2**0 CONTENTS, READONLY + 92 LXMRU045 00000003 00000000 00000000 00001985 2**0 CONTENTS, READONLY + 93 LXMRU046 00000002 00000000 00000000 00001988 2**0 CONTENTS, READONLY + 94 LXJCC020 00000002 00000000 00000000 0000198a 2**0 CONTENTS, RELOC, READONLY + 95 LXJCC021 00000005 00000000 00000000 0000198c 2**0 CONTENTS, RELOC, READONLY + 96 LXJCC023 00000007 00000000 00000000 00001991 2**0 CONTENTS, READONLY + 97 LXUNF037 00000002 00000000 00000000 00001998 2**0 CONTENTS, READONLY + 98 LXUNF386 00000001 00000000 00000000 0000199a 2**0 CONTENTS, READONLY + 99 LXUNF387 00000009 00000000 00000000 0000199b 2**0 CONTENTS, READONLY +100 LXUNF388 00000003 00000000 00000000 000019a4 2**0 CONTENTS, RELOC, READONLY +101 LXUNF486 00000004 00000000 00000000 000019a7 2**0 CONTENTS, READONLY +102 LXUNF487 00000002 00000000 00000000 000019ab 2**0 CONTENTS, RELOC, READONLY +103 LXMRU065 00000005 00000000 00000000 000019ad 2**0 CONTENTS, RELOC, READONLY +104 MRUBYTE3 00000002 00000000 00000000 000019b2 2**0 CONTENTS, READONLY +105 MRUARB30 00000001 00000000 00000000 000019b4 2**0 CONTENTS, READONLY +106 MRUBITS3 00000002 00000000 00000000 000019b5 2**0 CONTENTS, READONLY +107 MRUARB40 00000004 00000000 00000000 000019b7 2**0 CONTENTS, READONLY +108 LXMRU070 00000008 00000000 00000000 000019bb 2**0 CONTENTS, RELOC, READONLY +109 MRUBYTE4 00000003 00000000 00000000 000019c3 2**0 CONTENTS, READONLY +110 MRUBITS4 00000002 00000000 00000000 000019c6 2**0 CONTENTS, READONLY +111 MRUARB50 00000006 00000000 00000000 000019c8 2**0 CONTENTS, READONLY +112 LXMRU080 00000003 00000000 00000000 000019ce 2**0 CONTENTS, READONLY +113 MRUBYTE5 00000002 00000000 00000000 000019d1 2**0 CONTENTS, READONLY +114 MRUARB60 00000001 00000000 00000000 000019d3 2**0 CONTENTS, READONLY +115 MRUBITS5 00000002 00000000 00000000 000019d4 2**0 CONTENTS, READONLY +116 MRUARB70 00000004 00000000 00000000 000019d6 2**0 CONTENTS, READONLY +117 LXMRU090 0000000b 00000000 00000000 000019da 2**0 CONTENTS, RELOC, READONLY +118 MRUBYTE6 00000002 00000000 00000000 000019e5 2**0 CONTENTS, READONLY +119 MRUARB80 00000001 00000000 00000000 000019e7 2**0 CONTENTS, READONLY +120 MRUBITS6 00000002 00000000 00000000 000019e8 2**0 CONTENTS, READONLY +121 MRUARB90 00000004 00000000 00000000 000019ea 2**0 CONTENTS, READONLY +122 LXMRU100 00000010 00000000 00000000 000019ee 2**0 CONTENTS, READONLY +123 LXUNF040 00000005 00000000 00000000 000019fe 2**0 CONTENTS, READONLY +124 LXMRU110 00000003 00000000 00000000 00001a03 2**0 CONTENTS, READONLY +125 LXMRU111 00000002 00000000 00000000 00001a06 2**0 CONTENTS, READONLY +126 LXUNF041 00000007 00000000 00000000 00001a08 2**0 CONTENTS, RELOC, READONLY +127 LXUNF042 00000000 00000000 00000000 00001a0f 2**0 CONTENTS, READONLY +128 LEXEC016 00000005 00000000 00000000 00001a0f 2**0 CONTENTS, RELOC, READONLY +129 LXMRU010 00000001 00000000 00000000 00001a14 2**0 CONTENTS, READONLY +130 LXJMPA00 00000002 00000000 00000000 00001a15 2**0 CONTENTS, READONLY +131 LXCALLB0 00000002 00000000 00000000 00001a17 2**0 CONTENTS, READONLY +132 LXUNF021 00000006 00000000 00000000 00001a19 2**0 CONTENTS, READONLY +133 LXMRU022 00000003 00000000 00000000 00001a1f 2**0 CONTENTS, READONLY +134 LXJMPA01 00000002 00000000 00000000 00001a22 2**0 CONTENTS, READONLY +135 LXCALLB1 00000002 00000000 00000000 00001a24 2**0 CONTENTS, READONLY +136 MRUBITS1 00000001 00000000 00000000 00001a26 2**0 CONTENTS, READONLY +137 LXMRU030 00000002 00000000 00000000 00001a27 2**0 CONTENTS, READONLY +138 MRUBYTE1 00000002 00000000 00000000 00001a29 2**0 CONTENTS, READONLY +139 MRUARB10 00000001 00000000 00000000 00001a2b 2**0 CONTENTS, READONLY +140 LXMRU040 00000002 00000000 00000000 00001a2c 2**0 CONTENTS, RELOC, READONLY +141 LXUNF030 00000006 00000000 00000000 00001a2e 2**0 CONTENTS, READONLY +142 LXJCC000 00000008 00000000 00000000 00001a34 2**0 CONTENTS, RELOC, READONLY +143 LXCJ0MRU 00000002 00000000 00000000 00001a3c 2**0 CONTENTS, READONLY +144 LXCJ1MRU 00000003 00000000 00000000 00001a3e 2**0 CONTENTS, READONLY +145 LXCALJMP 00000003 00000000 00000000 00001a41 2**0 CONTENTS, READONLY +146 LXCALL00 00000002 00000000 00000000 00001a44 2**0 CONTENTS, RELOC, READONLY +147 LXCALL01 00000003 00000000 00000000 00001a46 2**0 CONTENTS, READONLY +148 LXCJ2MRU 00000002 00000000 00000000 00001a49 2**0 CONTENTS, RELOC, READONLY +149 LXCJ4MRU 00000002 00000000 00000000 00001a4b 2**0 CONTENTS, RELOC, READONLY +150 LXCJ6MRU 00000002 00000000 00000000 00001a4d 2**0 CONTENTS, RELOC, READONLY +151 LXCJ7MRU 00000002 00000000 00000000 00001a4f 2**0 CONTENTS, RELOC, READONLY +152 LXCJ8MRU 00000003 00000000 00000000 00001a51 2**0 CONTENTS, RELOC, READONLY +153 LXUNF034 00000005 00000000 00000000 00001a54 2**0 CONTENTS, RELOC, READONLY +154 LXMRU055 00000002 00000000 00000000 00001a59 2**0 CONTENTS, READONLY +155 MRUBYTE2 00000005 00000000 00000000 00001a5b 2**0 CONTENTS, READONLY +156 MRUBITS2 00000005 00000000 00000000 00001a60 2**0 CONTENTS, READONLY +157 MRUARB20 00000005 00000000 00000000 00001a65 2**0 CONTENTS, READONLY +158 LXMRU057 00000006 00000000 00000000 00001a6a 2**0 CONTENTS, READONLY +159 LXMRU058 00000001 00000000 00000000 00001a70 2**0 CONTENTS, READONLY +160 LXUNF035 00000006 00000000 00000000 00001a71 2**0 CONTENTS, READONLY +161 ctok32.00 00000009 00000000 00000000 00001a77 2**0 CONTENTS, RELOC, READONLY +162 ctok32.10 0000000e 00000000 00000000 00001a80 2**0 CONTENTS, RELOC, READONLY +163 ctok32.20 00000021 00000000 00000000 00001a8e 2**0 CONTENTS, RELOC, READONLY +164 ctok32.30 00000007 00000000 00000000 00001aaf 2**0 CONTENTS, RELOC, READONLY +165 ctok32.40 00000005 00000000 00000000 00001ab6 2**0 CONTENTS, RELOC, READONLY +166 LEXEC017 00000002 00000000 00000000 00001abb 2**0 CONTENTS, READONLY +167 LEXEC020 0000013a 00000000 00000000 00001abd 2**0 CONTENTS, READONLY +SYMBOL TABLE: +00000000 l d N2BSMA10 00000000 N2BSMA10 +00000000 l d N2BFAS11 00000000 N2BFAS11 +00000000 l d N2BDEC10 00000000 N2BDEC10 +00000000 l d N2BDEC20 00000000 N2BDEC20 +00000000 l d N2BDEC30 00000000 N2BDEC30 +00000000 l d N2BDEC50 00000000 N2BDEC50 +00000000 l d N2BFAS61 00000000 N2BFAS61 +00000000 l d N2BDEC60 00000000 N2BDEC60 +00000000 l d N2DSMA10 00000000 N2DSMA10 +00000000 l d N2DFAS11 00000000 N2DFAS11 +00000000 l d N2DDEC10 00000000 N2DDEC10 +00000000 l d N2DDEC20 00000000 N2DDEC20 +00000000 l d N2DDEC30 00000000 N2DDEC30 +00000000 l d N2DDEC50 00000000 N2DDEC50 +00000000 l d N2DFAS61 00000000 N2DFAS61 +00000000 l d N2DDEC60 00000000 N2DDEC60 +00000000 l d N2ESMA10 00000000 N2ESMA10 +00000000 l d N2EFAS11 00000000 N2EFAS11 +00000000 l d N2EDEC10 00000000 N2EDEC10 +00000000 l d N2EDEC20 00000000 N2EDEC20 +00000000 l d N2EDEC30 00000000 N2EDEC30 +00000000 l d N2EDEC50 00000000 N2EDEC50 +00000000 l d N2EFAS61 00000000 N2EFAS61 +00000000 l d N2EDEC60 00000000 N2EDEC60 +00000000 l d CALLTR00 00000000 CALLTR00 +00000000 l d CALLTR10 00000000 CALLTR10 +00000000 l d CALLTR11 00000000 CALLTR11 +00000000 l d CALLTR13 00000000 CALLTR13 +00000000 l d LXUNF010 00000000 LXUNF010 +00000000 l d LXJCC010 00000000 LXJCC010 +00000000 l d LXUNF037 00000000 LXUNF037 +00000000 l d LXMRU070 00000000 LXMRU070 +00000000 l d LXMRU100 00000000 LXMRU100 +00000000 l d LXUNF040 00000000 LXUNF040 +00000000 l d LXUNF042 00000000 LXUNF042 +00000000 l d LXMRU030 00000000 LXMRU030 +00000000 l d LXUNF030 00000000 LXUNF030 +00000000 l d LXCJ8MRU 00000000 LXCJ8MRU +00000000 l d LXUNF034 00000000 LXUNF034 +00000000 l d ctok32.00 00000000 ctok32.00 +00000000 l d ctok32.10 00000000 ctok32.10 +00000000 l d ctok32.20 00000000 ctok32.20 +00000000 l d ctok32.40 00000000 ctok32.40 +00000000 l d LEXEC020 00000000 LEXEC020 +00000000 l d LEXEC000 00000000 LEXEC000 +00000000 l d LEXEC009 00000000 LEXEC009 +00000000 l d LEXEC010 00000000 LEXEC010 +00000000 l d N2BFAS10 00000000 N2BFAS10 +00000000 l d N2BSMA20 00000000 N2BSMA20 +00000000 l d N2BFAS20 00000000 N2BFAS20 +00000000 l d N2BSMA30 00000000 N2BSMA30 +00000000 l d N2BFAS30 00000000 N2BFAS30 +00000000 l d N2BSMA40 00000000 N2BSMA40 +00000000 l d N2BFAS40 00000000 N2BFAS40 +00000000 l d N2BSMA50 00000000 N2BSMA50 +00000000 l d N2BFAS50 00000000 N2BFAS50 +00000000 l d N2BSMA60 00000000 N2BSMA60 +00000000 l d N2BFAS60 00000000 N2BFAS60 +00000000 l d N2DFAS10 00000000 N2DFAS10 +00000000 l d N2DSMA20 00000000 N2DSMA20 +00000000 l d N2DFAS20 00000000 N2DFAS20 +00000000 l d N2DSMA30 00000000 N2DSMA30 +00000000 l d N2DFAS30 00000000 N2DFAS30 +00000000 l d N2DSMA40 00000000 N2DSMA40 +00000000 l d N2DFAS40 00000000 N2DFAS40 +00000000 l d N2DSMA50 00000000 N2DSMA50 +00000000 l d N2DFAS50 00000000 N2DFAS50 +00000000 l d N2DSMA60 00000000 N2DSMA60 +00000000 l d N2DFAS60 00000000 N2DFAS60 +00000000 l d N2EFAS10 00000000 N2EFAS10 +00000000 l d N2ESMA20 00000000 N2ESMA20 +00000000 l d N2EFAS20 00000000 N2EFAS20 +00000000 l d N2ESMA30 00000000 N2ESMA30 +00000000 l d N2EFAS30 00000000 N2EFAS30 +00000000 l d N2ESMA40 00000000 N2ESMA40 +00000000 l d N2EFAS40 00000000 N2EFAS40 +00000000 l d N2ESMA50 00000000 N2ESMA50 +00000000 l d N2EFAS50 00000000 N2EFAS50 +00000000 l d N2ESMA60 00000000 N2ESMA60 +00000000 l d N2EFAS60 00000000 N2EFAS60 +00000000 l d LZMA_DEC00 00000000 LZMA_DEC00 +00000000 l d LZMA_ELF00 00000000 LZMA_ELF00 +00000000 l d LZMA_DEC10 00000000 LZMA_DEC10 +00000000 l d LZMA_DEC20 00000000 LZMA_DEC20 +00000000 l d LZMA_DEC30 00000000 LZMA_DEC30 +00000000 l d CTCLEVE1 00000000 CTCLEVE1 +00000000 l d CALLTR01 00000000 CALLTR01 +00000000 l d CTBSHR01 00000000 CTBSHR01 +00000000 l d CTBROR01 00000000 CTBROR01 +00000000 l d CTBSWA01 00000000 CTBSWA01 +00000000 l d CALLTR02 00000000 CALLTR02 +00000000 l d CALLTRE8 00000000 CALLTRE8 +00000000 l d CALLTRE9 00000000 CALLTRE9 +00000000 l d CTCLEVE2 00000000 CTCLEVE2 +00000000 l d CALLTR12 00000000 CALLTR12 +00000000 l d CTBSHR11 00000000 CTBSHR11 +00000000 l d CTBROR11 00000000 CTBROR11 +00000000 l d CTBSWA11 00000000 CTBSWA11 +00000000 l d LEXEC015 00000000 LEXEC015 +00000000 l d LXUNF000 00000000 LXUNF000 +00000000 l d LXUNF002 00000000 LXUNF002 +00000000 l d MRUBYTE0 00000000 MRUBYTE0 +00000000 l d LXMRU005 00000000 LXMRU005 +00000000 l d LXMRU006 00000000 LXMRU006 +00000000 l d LXMRU007 00000000 LXMRU007 +00000000 l d LXUNF008 00000000 LXUNF008 +00000000 l d LXMRU045 00000000 LXMRU045 +00000000 l d LXMRU046 00000000 LXMRU046 +00000000 l d LXJCC020 00000000 LXJCC020 +00000000 l d LXJCC021 00000000 LXJCC021 +00000000 l d LXJCC023 00000000 LXJCC023 +00000000 l d LXUNF386 00000000 LXUNF386 +00000000 l d LXUNF387 00000000 LXUNF387 +00000000 l d LXUNF388 00000000 LXUNF388 +00000000 l d LXUNF486 00000000 LXUNF486 +00000000 l d LXUNF487 00000000 LXUNF487 +00000000 l d LXMRU065 00000000 LXMRU065 +00000000 l d MRUBYTE3 00000000 MRUBYTE3 +00000000 l d MRUARB30 00000000 MRUARB30 +00000000 l d MRUBITS3 00000000 MRUBITS3 +00000000 l d MRUARB40 00000000 MRUARB40 +00000000 l d MRUBYTE4 00000000 MRUBYTE4 +00000000 l d MRUBITS4 00000000 MRUBITS4 +00000000 l d MRUARB50 00000000 MRUARB50 +00000000 l d LXMRU080 00000000 LXMRU080 +00000000 l d MRUBYTE5 00000000 MRUBYTE5 +00000000 l d MRUARB60 00000000 MRUARB60 +00000000 l d MRUBITS5 00000000 MRUBITS5 +00000000 l d MRUARB70 00000000 MRUARB70 +00000000 l d LXMRU090 00000000 LXMRU090 +00000000 l d MRUBYTE6 00000000 MRUBYTE6 +00000000 l d MRUARB80 00000000 MRUARB80 +00000000 l d MRUBITS6 00000000 MRUBITS6 +00000000 l d MRUARB90 00000000 MRUARB90 +00000000 l d LXMRU110 00000000 LXMRU110 +00000000 l d LXMRU111 00000000 LXMRU111 +00000000 l d LXUNF041 00000000 LXUNF041 +00000000 l d LEXEC016 00000000 LEXEC016 +00000000 l d LXMRU010 00000000 LXMRU010 +00000000 l d LXJMPA00 00000000 LXJMPA00 +00000000 l d LXCALLB0 00000000 LXCALLB0 +00000000 l d LXUNF021 00000000 LXUNF021 +00000000 l d LXMRU022 00000000 LXMRU022 +00000000 l d LXJMPA01 00000000 LXJMPA01 +00000000 l d LXCALLB1 00000000 LXCALLB1 +00000000 l d MRUBITS1 00000000 MRUBITS1 +00000000 l d MRUBYTE1 00000000 MRUBYTE1 +00000000 l d MRUARB10 00000000 MRUARB10 +00000000 l d LXMRU040 00000000 LXMRU040 +00000000 l d LXJCC000 00000000 LXJCC000 +00000000 l d LXCJ0MRU 00000000 LXCJ0MRU +00000000 l d LXCJ1MRU 00000000 LXCJ1MRU +00000000 l d LXCALJMP 00000000 LXCALJMP +00000000 l d LXCALL00 00000000 LXCALL00 +00000000 l d LXCALL01 00000000 LXCALL01 +00000000 l d LXCJ2MRU 00000000 LXCJ2MRU +00000000 l d LXCJ4MRU 00000000 LXCJ4MRU +00000000 l d LXCJ6MRU 00000000 LXCJ6MRU +00000000 l d LXCJ7MRU 00000000 LXCJ7MRU +00000000 l d LXMRU055 00000000 LXMRU055 +00000000 l d MRUBYTE2 00000000 MRUBYTE2 +00000000 l d MRUBITS2 00000000 MRUBITS2 +00000000 l d MRUARB20 00000000 MRUARB20 +00000000 l d LXMRU057 00000000 LXMRU057 +00000000 l d LXMRU058 00000000 LXMRU058 +00000000 l d LXUNF035 00000000 LXUNF035 +00000000 l d ctok32.30 00000000 ctok32.30 +00000000 l d LEXEC017 00000000 LEXEC017 +00000000 g LEXEC000 00000000 _start +00000000 *UND* 00000000 lzma_stack_adjust +00000000 *UND* 00000000 lzma_u_len +00000000 *UND* 00000000 lzma_c_len +00000000 *UND* 00000000 lzma_properties +00000000 *UND* 00000000 filter_length +00000000 *UND* 00000000 filter_cto +00000000 *UND* 00000000 NMRU + +RELOCATION RECORDS FOR [LEXEC000]: +OFFSET TYPE VALUE +00000006 R_386_PC32 LEXEC020 + +RELOCATION RECORDS FOR [N2BSMA10]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2BDEC10 + +RELOCATION RECORDS FOR [N2BFAS10]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2BDEC10 + +RELOCATION RECORDS FOR [N2BSMA20]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2BSMA10 + +RELOCATION RECORDS FOR [N2BFAS20]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2BFAS11 + +RELOCATION RECORDS FOR [N2BSMA30]: +OFFSET TYPE VALUE +0000000c R_386_PC8 N2BDEC20 + +RELOCATION RECORDS FOR [N2BFAS30]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2BDEC20 +0000000e R_386_PC8 N2BDEC20 + +RELOCATION RECORDS FOR [N2BDEC30]: +OFFSET TYPE VALUE +00000011 R_386_PC8 N2BDEC60 +0000002f R_386_PC8 N2BDEC50 + +RELOCATION RECORDS FOR [N2BSMA40]: +OFFSET TYPE VALUE +0000000c R_386_PC8 N2BDEC30 + +RELOCATION RECORDS FOR [N2BFAS40]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2BDEC30 +0000000e R_386_PC8 N2BDEC30 + +RELOCATION RECORDS FOR [N2BSMA60]: +OFFSET TYPE VALUE +00000008 R_386_PC32 N2BDEC10 + +RELOCATION RECORDS FOR [N2BFAS60]: +OFFSET TYPE VALUE +0000000a R_386_PC8 N2BFAS61 +00000015 R_386_PC32 N2BDEC10 + +RELOCATION RECORDS FOR [N2BFAS61]: +OFFSET TYPE VALUE +00000012 R_386_PC32 N2BDEC10 + +RELOCATION RECORDS FOR [N2DSMA10]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2DDEC10 + +RELOCATION RECORDS FOR [N2DFAS10]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2DDEC10 + +RELOCATION RECORDS FOR [N2DSMA20]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2DSMA10 + +RELOCATION RECORDS FOR [N2DFAS20]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2DFAS11 + +RELOCATION RECORDS FOR [N2DSMA30]: +OFFSET TYPE VALUE +0000000c R_386_PC8 N2DDEC30 + +RELOCATION RECORDS FOR [N2DFAS30]: +OFFSET TYPE VALUE +00000005 R_386_PC8 N2DDEC30 +0000000e R_386_PC8 N2DDEC30 + +RELOCATION RECORDS FOR [N2DDEC30]: +OFFSET TYPE VALUE +0000000f R_386_PC8 N2DDEC20 +00000021 R_386_PC8 N2DDEC60 +00000043 R_386_PC8 N2DDEC50 + +RELOCATION RECORDS FOR [N2DSMA40]: +OFFSET TYPE VALUE +0000000c R_386_PC8 N2DDEC30 + +RELOCATION RECORDS FOR [N2DFAS40]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2DDEC30 +0000000e R_386_PC8 N2DDEC30 + +RELOCATION RECORDS FOR [N2DSMA60]: +OFFSET TYPE VALUE +00000008 R_386_PC32 N2DDEC10 + +RELOCATION RECORDS FOR [N2DFAS60]: +OFFSET TYPE VALUE +0000000a R_386_PC8 N2DFAS61 +00000015 R_386_PC32 N2DDEC10 + +RELOCATION RECORDS FOR [N2DFAS61]: +OFFSET TYPE VALUE +00000012 R_386_PC32 N2DDEC10 + +RELOCATION RECORDS FOR [N2ESMA10]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2EDEC10 + +RELOCATION RECORDS FOR [N2EFAS10]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2EDEC10 + +RELOCATION RECORDS FOR [N2ESMA20]: +OFFSET TYPE VALUE +00000001 R_386_PC8 N2ESMA10 + +RELOCATION RECORDS FOR [N2EFAS20]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2EFAS11 + +RELOCATION RECORDS FOR [N2ESMA30]: +OFFSET TYPE VALUE +0000000c R_386_PC8 N2EDEC30 + +RELOCATION RECORDS FOR [N2EFAS30]: +OFFSET TYPE VALUE +00000005 R_386_PC8 N2EDEC30 +0000000e R_386_PC8 N2EDEC30 + +RELOCATION RECORDS FOR [N2EDEC30]: +OFFSET TYPE VALUE +0000000f R_386_PC8 N2EDEC20 +0000001e R_386_PC8 N2EDEC50 +00000030 R_386_PC8 N2EDEC60 + +RELOCATION RECORDS FOR [N2ESMA40]: +OFFSET TYPE VALUE +0000000c R_386_PC8 N2EDEC30 + +RELOCATION RECORDS FOR [N2EFAS40]: +OFFSET TYPE VALUE +00000003 R_386_PC8 N2EDEC30 +0000000e R_386_PC8 N2EDEC30 + +RELOCATION RECORDS FOR [N2ESMA60]: +OFFSET TYPE VALUE +00000008 R_386_PC32 N2EDEC10 + +RELOCATION RECORDS FOR [N2EFAS60]: +OFFSET TYPE VALUE +0000000a R_386_PC8 N2EFAS61 +00000015 R_386_PC32 N2EDEC10 + +RELOCATION RECORDS FOR [N2EFAS61]: +OFFSET TYPE VALUE +00000012 R_386_PC32 N2EDEC10 + +RELOCATION RECORDS FOR [LZMA_DEC00]: +OFFSET TYPE VALUE +00000005 R_386_32 lzma_stack_adjust +00000014 R_386_32 lzma_u_len +0000001e R_386_32 lzma_c_len +0000002a R_386_32 lzma_properties + +RELOCATION RECORDS FOR [CALLTR00]: +OFFSET TYPE VALUE +00000001 R_386_32 filter_length + +RELOCATION RECORDS FOR [CTCLEVE1]: +OFFSET TYPE VALUE +00000002 R_386_8 filter_cto +00000004 R_386_PC8 CALLTR00 + +RELOCATION RECORDS FOR [CALLTR02]: +OFFSET TYPE VALUE +0000000d R_386_PC8 CALLTR00 + +RELOCATION RECORDS FOR [CALLTR10]: +OFFSET TYPE VALUE +00000001 R_386_32 filter_length + +RELOCATION RECORDS FOR [CALLTR11]: +OFFSET TYPE VALUE +00000003 R_386_PC8 CALLTR13 + +RELOCATION RECORDS FOR [CTCLEVE2]: +OFFSET TYPE VALUE +00000002 R_386_8 filter_cto +00000004 R_386_PC8 CALLTR11 + +RELOCATION RECORDS FOR [CALLTR13]: +OFFSET TYPE VALUE +00000004 R_386_PC8 CALLTR10 + +RELOCATION RECORDS FOR [LXUNF000]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXUNF010 + +RELOCATION RECORDS FOR [LXMRU005]: +OFFSET TYPE VALUE +00000001 R_386_32 NMRU + +RELOCATION RECORDS FOR [LXUNF010]: +OFFSET TYPE VALUE +00000001 R_386_PC32 LXUNF042 + +RELOCATION RECORDS FOR [LXJCC020]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXUNF034 + +RELOCATION RECORDS FOR [LXJCC021]: +OFFSET TYPE VALUE +00000004 R_386_PC8 LXUNF034 + +RELOCATION RECORDS FOR [LXUNF388]: +OFFSET TYPE VALUE +00000002 R_386_PC8 LXUNF040 + +RELOCATION RECORDS FOR [LXUNF487]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXUNF040 + +RELOCATION RECORDS FOR [LXMRU065]: +OFFSET TYPE VALUE +00000004 R_386_PC8 LXMRU070 + +RELOCATION RECORDS FOR [LXMRU070]: +OFFSET TYPE VALUE +00000004 R_386_PC8 LXUNF040 + +RELOCATION RECORDS FOR [LXMRU090]: +OFFSET TYPE VALUE +00000006 R_386_PC8 LXMRU100 + +RELOCATION RECORDS FOR [LXUNF041]: +OFFSET TYPE VALUE +00000006 R_386_PC8 LXUNF034 + +RELOCATION RECORDS FOR [LEXEC016]: +OFFSET TYPE VALUE +00000001 R_386_PC32 LXUNF042 + +RELOCATION RECORDS FOR [LXMRU040]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXMRU030 + +RELOCATION RECORDS FOR [LXJCC000]: +OFFSET TYPE VALUE +00000007 R_386_PC8 LXJCC010 + +RELOCATION RECORDS FOR [LXCALL00]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXUNF037 + +RELOCATION RECORDS FOR [LXCJ2MRU]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXUNF037 + +RELOCATION RECORDS FOR [LXCJ4MRU]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXUNF034 + +RELOCATION RECORDS FOR [LXCJ6MRU]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXCJ8MRU + +RELOCATION RECORDS FOR [LXCJ7MRU]: +OFFSET TYPE VALUE +00000001 R_386_PC8 LXCJ8MRU + +RELOCATION RECORDS FOR [LXCJ8MRU]: +OFFSET TYPE VALUE +00000002 R_386_PC8 LXUNF037 + +RELOCATION RECORDS FOR [LXUNF034]: +OFFSET TYPE VALUE +00000004 R_386_PC8 LXUNF030 + +RELOCATION RECORDS FOR [ctok32.00]: +OFFSET TYPE VALUE +00000003 R_386_PC8 ctok32.20 + +RELOCATION RECORDS FOR [ctok32.10]: +OFFSET TYPE VALUE +0000000d R_386_PC8 ctok32.20 + +RELOCATION RECORDS FOR [ctok32.20]: +OFFSET TYPE VALUE +00000005 R_386_PC8 ctok32.40 +00000009 R_386_PC8 ctok32.40 + +RELOCATION RECORDS FOR [ctok32.30]: +OFFSET TYPE VALUE +00000006 R_386_PC8 ctok32.10 + +RELOCATION RECORDS FOR [ctok32.40]: +OFFSET TYPE VALUE +00000004 R_386_PC8 ctok32.00