mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
powerpc (32-bit) works on MacOS using Sierra-compatible strategy.
modified: p_mach.cpp modified: p_mach.h modified: stub/powerpc-darwin.macho-entry.h modified: stub/powerpc-darwin.macho-upxmain.exe modified: stub/powerpc-darwin.macho-upxmain.h modified: stub/src/powerpc-darwin.macho-entry.S modified: stub/src/powerpc-darwin.macho-upxsubr.S modified: stub/tmp/powerpc-darwin.macho-entry.bin.dump
This commit is contained in:
parent
edb0b7519a
commit
a72aca4379
|
@ -376,6 +376,30 @@ void PackMachAMD64::addStubEntrySections(Filter const * /*ft*/)
|
|||
}
|
||||
}
|
||||
|
||||
void PackMachPPC32::addStubEntrySections(Filter const * /*ft*/)
|
||||
{
|
||||
if (my_filetype!=Mach_header::MH_EXECUTE) {
|
||||
addLoader("MACHMAINX", NULL);
|
||||
}
|
||||
else {
|
||||
addLoader("PPC32BXX", NULL);
|
||||
}
|
||||
addLoader("MACH_UNC", NULL);
|
||||
//addLoader(getDecompressorSections(), NULL);
|
||||
addLoader(
|
||||
( M_IS_NRV2E(ph.method) ? "NRV_HEAD,NRV2E,NRV_TAIL"
|
||||
: M_IS_NRV2D(ph.method) ? "NRV_HEAD,NRV2D,NRV_TAIL"
|
||||
: M_IS_NRV2B(ph.method) ? "NRV_HEAD,NRV2B,NRV_TAIL"
|
||||
: M_IS_LZMA(ph.method) ? "LZMA_ELF00,+80C,LZMA_DEC20,LZMA_DEC30"
|
||||
: NULL), NULL);
|
||||
if (hasLoaderSection("CFLUSH"))
|
||||
addLoader("CFLUSH");
|
||||
addLoader("MACHMAINY,IDENTSTR,+40,MACHMAINZ", NULL);
|
||||
if (my_filetype!=Mach_header::MH_EXECUTE) {
|
||||
addLoader("FOLDEXEC", NULL);
|
||||
}
|
||||
}
|
||||
|
||||
void PackMachARMEL::addStubEntrySections(Filter const * /*ft*/)
|
||||
{
|
||||
addLoader("MACHMAINX", NULL);
|
||||
|
@ -605,6 +629,7 @@ void PackMachBase<T>::pack4(OutputFile *fo, Filter &ft) // append PackHeader
|
|||
char *tail = (char *)(1+ mhp);
|
||||
Mach_segment_command *segtxt = 0; // in temp for output
|
||||
Mach_section_command *sectxt = 0; // in temp for output
|
||||
unsigned txt_addr = 0;
|
||||
char *const lcp_end = mhdro.sizeofcmds + tail;
|
||||
Mach_command *lcp = (Mach_command *)(1+ mhp);
|
||||
Mach_command *lcp_next;
|
||||
|
@ -625,6 +650,7 @@ void PackMachBase<T>::pack4(OutputFile *fo, Filter &ft) // append PackHeader
|
|||
if (!strcmp("__TEXT", segptr->segname)) {
|
||||
segtxt = segptr; // remember base for appending
|
||||
sectxt = (Mach_section_command *)(1+ segptr);
|
||||
txt_addr = sectxt->addr;
|
||||
// Collapse into 1 section by appending onto the first section.
|
||||
unsigned off_hi = sectxt->size + sectxt->offset;
|
||||
Mach_section_command const *scpk = 1+ sectxt;
|
||||
|
@ -634,8 +660,12 @@ void PackMachBase<T>::pack4(OutputFile *fo, Filter &ft) // append PackHeader
|
|||
sectxt->size += scpk->size;
|
||||
}
|
||||
else {
|
||||
printWarn(fi->getName(), "Unexpected .text section %s size=%u\n",
|
||||
(char const *)&scpk->sectname, (unsigned)scpk->size);
|
||||
if (!(Mach_header::CPU_TYPE_POWERPC == my_cputype
|
||||
&& 12==(unsigned)scpk->size
|
||||
&& !strcmp("__cstring", (char const *)&scpk->sectname))) {
|
||||
printWarn(fi->getName(), "Unexpected .text section %s size=%u\n",
|
||||
(char const *)&scpk->sectname, (unsigned)scpk->size);
|
||||
}
|
||||
// Assume the maximum size: to end of the page.
|
||||
sectxt->size = (segptr->vmsize + segptr->vmaddr) - sectxt->addr;
|
||||
// Try to stop the cascade of errors.
|
||||
|
@ -746,7 +776,7 @@ void PackMachBase<T>::pack4(OutputFile *fo, Filter &ft) // append PackHeader
|
|||
skip = 1;
|
||||
} break;
|
||||
case Mach_segment_command::LC_MAIN: {
|
||||
// Replace later with LC_UNIX_THREAD.
|
||||
// Replace later with LC_UNIXTHREAD.
|
||||
// LC_MAIN requires libSystem.B.dylib to provide the environment for main(), and CALLs the entryoff.
|
||||
// LC_UNIXTHREAD does not need libSystem.B.dylib, and JMPs to the .rip with %rsp/argc and argv= 8+%rsp
|
||||
threado_setPC(segTEXT.vmaddr +
|
||||
|
@ -754,8 +784,8 @@ void PackMachBase<T>::pack4(OutputFile *fo, Filter &ft) // append PackHeader
|
|||
skip = 1;
|
||||
} break;
|
||||
case Mach_segment_command::LC_UNIXTHREAD: { // pre-LC_MAIN
|
||||
threado_setPC(segTEXT.vmaddr +
|
||||
(threadc_getPC(lcp) - segTEXT.fileoff));
|
||||
threado_setPC(secTEXT.addr +
|
||||
(threadc_getPC(lcp) - txt_addr));
|
||||
skip = 1;
|
||||
} break;
|
||||
case Mach_segment_command::LC_LOAD_DYLIB: {
|
||||
|
@ -797,7 +827,7 @@ next:
|
|||
lcp = lcp_next;
|
||||
} // end for each Mach_command
|
||||
|
||||
// Append LC_UNIX_THREAD
|
||||
// Append LC_UNIXTHREAD
|
||||
unsigned const sz_threado = threado_size();
|
||||
mhp->ncmds += 1;
|
||||
mhp->sizeofcmds += sz_threado;
|
||||
|
@ -1335,11 +1365,10 @@ void PackMachBase<T>::pack1(OutputFile *const fo, Filter &/*ft*/) // generate e
|
|||
mhdro = mhdri;
|
||||
if (my_filetype==Mach_header::MH_EXECUTE) {
|
||||
memcpy(&mhdro, stub_main, sizeof(mhdro));
|
||||
mhdro.ncmds += 1; // we add LC_SEGMENT{,_64} for UPX_DATA
|
||||
mhdro.sizeofcmds += sizeof(segXHDR);
|
||||
mhdro.flags &= ~Mach_header::MH_PIE; // we require fixed address
|
||||
mhdro.flags |= Mach_header::MH_BINDATLOAD; // DT_BIND_NOW
|
||||
}
|
||||
unsigned pos = sizeof(mhdro);
|
||||
fo->write(&mhdro, sizeof(mhdro));
|
||||
|
||||
memset(&segZERO, 0, sizeof(segZERO));
|
||||
|
@ -1422,27 +1451,14 @@ void PackMachBase<T>::pack1(OutputFile *const fo, Filter &/*ft*/) // generate e
|
|||
if (lc_seg == ptr1->cmd) {
|
||||
if (!strcmp("__LINKEDIT", segptr->segname)) {
|
||||
// Mach_command before __LINKEDIT
|
||||
pos += (char const *)ptr1 - (char const *)(1+ ptr0);
|
||||
fo->write((1+ ptr0), (char const *)ptr1 - (char const *)(1+ ptr0));
|
||||
// LC_SEGMENT_64 for UPX_DATA; steal space from -Wl,-headerpadsize
|
||||
if (Mach_header::CPU_TYPE_POWERPC != my_cputype) {
|
||||
segXHDR.cmdsize = sizeof(segXHDR);
|
||||
segXHDR.vmaddr = 0;
|
||||
segXHDR.fileoff = 0;
|
||||
segXHDR.maxprot = Mach_segment_command::VM_PROT_READ;
|
||||
segXHDR.initprot = Mach_segment_command::VM_PROT_READ;
|
||||
segXHDR.nsects = 0;
|
||||
}
|
||||
pos += sizeof(segXHDR);
|
||||
fo->write(&segXHDR, sizeof(segXHDR));
|
||||
if (Mach_header::CPU_TYPE_POWERPC == my_cputype) {
|
||||
// First LC_SEGMENT must have a section because
|
||||
// its .offset is the limit for adding new headers
|
||||
// for UUID or code signing (by Apple tools).
|
||||
fo->write(&secXHDR, sizeof(secXHDR));
|
||||
}
|
||||
// Mach_command __LINKEDIT and after
|
||||
pos += cmdsize;
|
||||
fo->write((char const *)ptr1, cmdsize);
|
||||
// Contents before __LINKEDIT; put non-headers at same offset in file
|
||||
unsigned pos = sizeof(mhdro) + mhdro.sizeofcmds; // includes sizeof(segXHDR)
|
||||
fo->write(&stub_main[pos], segptr->fileoff - pos);
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -916,6 +916,7 @@ protected:
|
|||
|
||||
virtual void pack1_setup_threado(OutputFile *const fo);
|
||||
virtual Linker* newLinker() const;
|
||||
virtual void addStubEntrySections(Filter const *);
|
||||
|
||||
__packed_struct(Mach_thread_command)
|
||||
TE32 cmd; /* LC_THREAD or LC_UNIXTHREAD */
|
||||
|
|
File diff suppressed because it is too large
Load Diff
BIN
src/stub/powerpc-darwin.macho-upxmain.exe
Normal file → Executable file
BIN
src/stub/powerpc-darwin.macho-upxmain.exe
Normal file → Executable file
Binary file not shown.
|
@ -1,5 +1,5 @@
|
|||
/* powerpc-darwin.macho-upxmain.h
|
||||
created from powerpc-darwin.macho-upxmain.exe, 8192 (0x2000) bytes
|
||||
created from powerpc-darwin.macho-upxmain.exe, 4096 (0x1000) bytes
|
||||
|
||||
This file is part of the UPX executable compressor.
|
||||
|
||||
|
@ -31,11 +31,11 @@
|
|||
*/
|
||||
|
||||
|
||||
#define STUB_POWERPC_DARWIN_MACHO_UPXMAIN_EXE_SIZE 8192
|
||||
#define STUB_POWERPC_DARWIN_MACHO_UPXMAIN_EXE_ADLER32 0x7b0d2d35
|
||||
#define STUB_POWERPC_DARWIN_MACHO_UPXMAIN_EXE_CRC32 0x79bc06b7
|
||||
#define STUB_POWERPC_DARWIN_MACHO_UPXMAIN_EXE_SIZE 4096
|
||||
#define STUB_POWERPC_DARWIN_MACHO_UPXMAIN_EXE_ADLER32 0x08a9d1ed
|
||||
#define STUB_POWERPC_DARWIN_MACHO_UPXMAIN_EXE_CRC32 0xb1b1cc8f
|
||||
|
||||
unsigned char stub_powerpc_darwin_macho_upxmain_exe[8192] = {
|
||||
unsigned char stub_powerpc_darwin_macho_upxmain_exe[4096] = {
|
||||
/* 0x0000 */ 254,237,250,206, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 2,
|
||||
/* 0x0010 */ 0, 0, 0, 6, 0, 0, 2,184, 0, 0, 0, 1, 0, 0, 0, 1,
|
||||
/* 0x0020 */ 0, 0, 0, 56, 95, 95, 80, 65, 71, 69, 90, 69, 82, 79, 0, 0,
|
||||
|
@ -43,35 +43,35 @@ unsigned char stub_powerpc_darwin_macho_upxmain_exe[8192] = {
|
|||
/* 0x0040 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0050 */ 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 4, 95, 95, 84, 69,
|
||||
/* 0x0060 */ 88, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0,
|
||||
/* 0x0070 */ 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 7,
|
||||
/* 0x0070 */ 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 7,
|
||||
/* 0x0080 */ 0, 0, 0, 5, 0, 0, 0, 3, 0, 0, 0, 0, 95, 95,116,101,
|
||||
/* 0x0090 */ 120,116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 95, 84, 69,
|
||||
/* 0x00a0 */ 88, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 52,
|
||||
/* 0x00b0 */ 0, 0, 13,152, 0, 0, 18, 52, 0, 0, 0, 2, 0, 0, 0, 0,
|
||||
/* 0x00a0 */ 88, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23,244,
|
||||
/* 0x00b0 */ 0, 0, 7,220, 0, 0, 7,244, 0, 0, 0, 2, 0, 0, 0, 0,
|
||||
/* 0x00c0 */ 0, 0, 0, 0,128, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x00d0 */ 95, 95,112,105, 99,115,121,109, 98,111,108,115,116,117, 98, 49,
|
||||
/* 0x00e0 */ 95, 95, 84, 69, 88, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x00f0 */ 0, 0, 47,224, 0, 0, 0, 0, 0, 0, 31,224, 0, 0, 0, 5,
|
||||
/* 0x00f0 */ 0, 0, 31,224, 0, 0, 0, 0, 0, 0, 15,224, 0, 0, 0, 5,
|
||||
/* 0x0100 */ 0, 0, 0, 0, 0, 0, 0, 0,128, 0, 4, 8, 0, 0, 0, 0,
|
||||
/* 0x0110 */ 0, 0, 0, 32, 95, 95, 99,115,116,114,105,110,103, 0, 0, 0,
|
||||
/* 0x0120 */ 0, 0, 0, 0, 95, 95, 84, 69, 88, 84, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0130 */ 0, 0, 0, 0, 0, 0, 47,224, 0, 0, 0, 12, 0, 0, 31,224,
|
||||
/* 0x0130 */ 0, 0, 0, 0, 0, 0, 31,224, 0, 0, 0, 12, 0, 0, 15,224,
|
||||
/* 0x0140 */ 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2,
|
||||
/* 0x0150 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,124,
|
||||
/* 0x0160 */ 95, 95, 68, 65, 84, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0170 */ 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0170 */ 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0180 */ 0, 0, 0, 7, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0,
|
||||
/* 0x0190 */ 95, 95,108, 97, 95,115,121,109, 98,111,108, 95,112,116,114, 0,
|
||||
/* 0x01a0 */ 95, 95, 68, 65, 84, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x01b0 */ 0, 0, 48, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 2,
|
||||
/* 0x01b0 */ 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 2,
|
||||
/* 0x01c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0,
|
||||
/* 0x01d0 */ 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 56, 95, 95, 76, 73,
|
||||
/* 0x01e0 */ 78, 75, 69, 68, 73, 84, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0,
|
||||
/* 0x01f0 */ 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 7,
|
||||
/* 0x01e0 */ 78, 75, 69, 68, 73, 84, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0,
|
||||
/* 0x01f0 */ 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 7,
|
||||
/* 0x0200 */ 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 2,
|
||||
/* 0x0210 */ 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0220 */ 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0,176, 0, 0, 0, 1,
|
||||
/* 0x0230 */ 0, 0, 0, 40, 0, 0, 34, 52, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0230 */ 0, 0, 0, 40, 0, 0, 23,244, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0240 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0250 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0260 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
|
@ -163,389 +163,133 @@ unsigned char stub_powerpc_darwin_macho_upxmain_exe[8192] = {
|
|||
/* 0x07c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x07d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x07e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x07f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0800 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0810 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0820 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0830 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0840 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0850 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0860 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0870 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0880 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0890 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x08a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x08b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x08c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x08d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x08e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x08f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0900 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0910 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0920 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0930 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0940 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0950 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0960 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0970 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0980 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0990 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x09a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x09b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x09c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x09d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x09e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x09f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0a90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0aa0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ab0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ac0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ad0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ae0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0af0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0b90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ba0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0bb0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0bc0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0bd0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0be0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0bf0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0c90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ca0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0cb0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0cc0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0cd0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ce0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0cf0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0d90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0da0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0db0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0dc0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0dd0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0de0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0df0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0e90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ea0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0eb0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ec0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ed0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ee0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ef0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f00 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f30 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f40 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f50 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f60 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f70 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f80 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0f90 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0fa0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0fb0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0fc0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x07f0 */ 0, 0, 0, 0,127,224, 0, 8,128, 97, 0, 0, 56,129, 0, 4,
|
||||
/* 0x0800 */ 56, 33,255,228, 72, 0, 6,217,124,105, 3,166, 56, 33, 0, 24,
|
||||
/* 0x0810 */ 56, 0, 0, 0,124, 8, 3,166, 78,128, 4, 33,127,224, 0, 8,
|
||||
/* 0x0820 */ 124,199, 51,120, 56,192, 0, 0, 56, 0, 0,153, 72, 0, 0, 16,
|
||||
/* 0x0830 */ 125, 9, 67,120, 57, 0, 0, 0, 56, 0, 0,197, 68, 0, 0, 2,
|
||||
/* 0x0840 */ 56, 96,255,255, 78,128, 0, 32, 56, 0, 0, 1, 75,255,255,240,
|
||||
/* 0x0850 */ 56, 0, 0, 3, 75,255,255,232, 56, 0, 0, 5, 75,255,255,224,
|
||||
/* 0x0860 */ 56, 0, 0, 6, 75,255,255,216, 56, 0, 0, 74, 75,255,255,208,
|
||||
/* 0x0870 */ 56, 0, 0, 73, 75,255,255,200, 72, 0, 0, 0,124, 8, 2,166,
|
||||
/* 0x0880 */ 144, 1, 0, 8,148, 33,255,176,129, 99, 0, 4,128, 3, 0, 0,
|
||||
/* 0x0890 */ 127,128, 40, 64, 64,188, 0, 92, 56, 96, 0,127, 75,255,255,173,
|
||||
/* 0x08a0 */ 125,105, 91,120,124, 75, 18, 20, 56, 66, 0, 1,124, 75, 16, 80,
|
||||
/* 0x08b0 */ 124, 73, 3,166,136, 9, 0, 0,152, 4, 0, 0, 57, 41, 0, 1,
|
||||
/* 0x08c0 */ 56,132, 0, 1, 66, 0,255,240,128, 3, 0, 4,124, 5, 2, 20,
|
||||
/* 0x08d0 */ 144, 3, 0, 4,128, 3, 0, 0,124, 5, 0, 80,144, 3, 0, 0,
|
||||
/* 0x08e0 */ 56, 33, 0, 80,128, 1, 0, 8,124, 8, 3,166, 78,128, 0, 32,
|
||||
/* 0x08f0 */ 47,133, 0, 0, 56, 69,255,255, 64,158,255,168, 75,255,255,204,
|
||||
/* 0x0900 */ 124, 8, 2,166,191, 33,255,228,144, 1, 0, 8,148, 33,255,144,
|
||||
/* 0x0910 */ 124,125, 27,120,124,158, 35,120,124,186, 43,120,124,217, 51,120,
|
||||
/* 0x0920 */ 128, 4, 0, 0, 47,128, 0, 0, 65,190, 1, 40, 59,129, 0, 60,
|
||||
/* 0x0930 */ 63, 96, 33, 88, 99,123, 80, 85,127,163,235,120,127,132,227,120,
|
||||
/* 0x0940 */ 56,160, 0, 12, 75,255,255, 57,128, 65, 0, 60, 47,130, 0, 0,
|
||||
/* 0x0950 */ 64,190, 0, 32,128, 1, 0, 64,127,128,216, 0, 64,190, 0, 32,
|
||||
/* 0x0960 */ 128, 29, 0, 0, 47,128, 0, 0, 64,190, 0, 20, 72, 0, 0,228,
|
||||
/* 0x0970 */ 128,161, 0, 64, 47,133, 0, 0, 64,190, 0, 12, 56, 96, 0,127,
|
||||
/* 0x0980 */ 75,255,254,201,127, 2, 40, 64, 65,184,255,244,128, 30, 0, 0,
|
||||
/* 0x0990 */ 127,130, 0, 64, 65,189,255,232, 64,153, 0,136,144, 65, 0, 56,
|
||||
/* 0x09a0 */ 128,125, 0, 4,124,164, 43,120,128,190, 0, 4, 56,193, 0, 56,
|
||||
/* 0x09b0 */ 136,225, 0, 68,127, 76,211,120,127, 73, 3,166, 78,128, 4, 33,
|
||||
/* 0x09c0 */ 47,131, 0, 0, 64,190,255,184,128,129, 0, 60,128, 1, 0, 56,
|
||||
/* 0x09d0 */ 127,132, 0, 0, 64,190,255,168,136,193, 0, 69, 47,134, 0, 0,
|
||||
/* 0x09e0 */ 65,158, 0, 32, 47,153, 0, 0, 65,158, 0, 24,128,126, 0, 4,
|
||||
/* 0x09f0 */ 136,161, 0, 70,127, 44,203,120,127, 41, 3,166, 78,128, 4, 33,
|
||||
/* 0x0a00 */ 128, 29, 0, 4,128, 65, 0, 64,124, 0, 18, 20,144, 29, 0, 4,
|
||||
/* 0x0a10 */ 128, 29, 0, 0,124, 2, 0, 80,144, 29, 0, 0, 72, 0, 0, 16,
|
||||
/* 0x0a20 */ 127,163,235,120,128,158, 0, 4, 75,255,254, 85,128, 30, 0, 4,
|
||||
/* 0x0a30 */ 128, 65, 0, 60,124, 0, 18, 20,144, 30, 0, 4,128, 30, 0, 0,
|
||||
/* 0x0a40 */ 124, 2, 0, 80,144, 30, 0, 0, 47,128, 0, 0, 64,158,254,236,
|
||||
/* 0x0a50 */ 56, 33, 0,112,128, 1, 0, 8,124, 8, 3,166,187, 33,255,228,
|
||||
/* 0x0a60 */ 78,128, 0, 32, 44, 4, 0, 0, 77,130, 0, 32, 56, 0, 0, 0,
|
||||
/* 0x0a70 */ 124,137, 3,166,152, 3, 0, 0, 56, 99, 0, 1, 66, 0,255,248,
|
||||
/* 0x0a80 */ 78,128, 0, 32,124, 8, 2,166,124, 64, 0, 38,189,225,255,188,
|
||||
/* 0x0a90 */ 144, 1, 0, 8,144, 65, 0, 4,148, 33,255, 96,124,121, 27,120,
|
||||
/* 0x0aa0 */ 124,147, 35,120,124,180, 43,120,124,208, 51,120,124,239, 59,120,
|
||||
/* 0x0ab0 */ 125, 18, 67,120,125, 49, 75,120, 59,195, 0, 28,128, 3, 0, 16,
|
||||
/* 0x0ac0 */ 47,128, 0, 0, 64,158, 0, 12, 59, 0, 0, 0, 72, 0, 2, 12,
|
||||
/* 0x0ad0 */ 58,192, 0, 0, 59, 0, 0, 0, 58,160, 0, 0, 59, 64, 0, 0,
|
||||
/* 0x0ae0 */ 46, 5, 0, 0,128, 94, 0, 0, 47,130, 0, 1, 64,190, 1,112,
|
||||
/* 0x0af0 */ 128,158, 0, 28, 47,132, 0, 0, 65,158, 1,100,129, 62, 0, 36,
|
||||
/* 0x0b00 */ 145, 33, 0, 56,128, 94, 0, 24,124, 85, 18, 20,144, 65, 0, 60,
|
||||
/* 0x0b10 */ 126,226, 34, 20, 84, 64, 5, 62,127,160, 16, 80,127,105, 2, 21,
|
||||
/* 0x0b20 */ 65,130, 0,136, 47,157, 0, 0, 65,158, 0, 12, 56, 64, 0, 18,
|
||||
/* 0x0b30 */ 72, 0, 0, 8, 56, 64, 0, 2, 64,178, 0, 24,128, 30, 0, 36,
|
||||
/* 0x0b40 */ 47,128, 0, 0, 65,158, 0, 12, 56,192, 0, 0, 72, 0, 0, 8,
|
||||
/* 0x0b50 */ 56,192, 16, 0,124, 70, 51,120,128, 30, 0, 36, 47,128, 0, 0,
|
||||
/* 0x0b60 */ 65,158, 0, 12,126, 7,131,120, 72, 0, 0, 8, 56,224,255,255,
|
||||
/* 0x0b70 */ 129, 30, 0, 32,127,163,235,120,127,100,219,120, 56,160, 0, 3,
|
||||
/* 0x0b80 */ 125, 19, 66, 20, 75,255,252,173, 47,131,255,255, 65,158, 0,136,
|
||||
/* 0x0b90 */ 47,157, 0, 0, 65,158, 0, 12,124,125, 27,120, 72, 0, 0, 12,
|
||||
/* 0x0ba0 */ 124,117, 27,120,124,125, 27,120, 65,146, 0, 56,128, 30, 0, 36,
|
||||
/* 0x0bb0 */ 47,128, 0, 0, 65,158, 0, 44,128, 30, 0, 32, 47,128, 0, 0,
|
||||
/* 0x0bc0 */ 64,158, 0, 12,147,175, 0, 0,127,214,243,120,126,131,163,120,
|
||||
/* 0x0bd0 */ 56,129, 0, 56,126, 69,147,120,126, 38,139,120, 75,255,253, 37,
|
||||
/* 0x0be0 */ 124, 27, 0,208, 84, 28, 5, 62,124,125,218, 20,127,132,227,120,
|
||||
/* 0x0bf0 */ 75,255,254,117, 47,155, 0, 0, 65,190, 0, 36,127,163,235,120,
|
||||
/* 0x0c00 */ 127,100,219,120,128,190, 0, 44, 75,255,252, 97, 47,131, 0, 0,
|
||||
/* 0x0c10 */ 65,190, 0, 12, 56, 96, 0,127, 75,255,252, 49,124, 27,226, 20,
|
||||
/* 0x0c20 */ 127,189, 2, 20,127,151,232, 64, 64,157, 0,152, 47,157, 0, 0,
|
||||
/* 0x0c30 */ 65,158, 0,144,127,163,235,120,124,157,184, 80,128,190, 0, 44,
|
||||
/* 0x0c40 */ 56,192, 16, 18, 56,224,255,255, 57, 0, 0, 0, 75,255,251,229,
|
||||
/* 0x0c50 */ 127,157, 24, 0, 65,190, 0,108, 75,255,255,188, 56, 2,255,252,
|
||||
/* 0x0c60 */ 43,128, 0, 1, 65,189, 0, 40,128, 30, 0, 8, 47,128, 0, 1,
|
||||
/* 0x0c70 */ 64,190, 0, 80,128, 30, 0, 12, 47,128, 0, 40, 64,190, 0, 68,
|
||||
/* 0x0c80 */ 128, 30, 0, 16,127, 21, 2, 20, 72, 0, 0, 56, 60, 0,128, 0,
|
||||
/* 0x0c90 */ 96, 0, 0, 40,127,130, 0, 0, 64,190, 0, 40,131, 30, 0, 12,
|
||||
/* 0x0ca0 */ 128, 22, 0, 32,127,152, 0, 64, 65,156, 0, 24,128, 22, 0, 36,
|
||||
/* 0x0cb0 */ 127,152, 0, 64, 64,156, 0, 12,128, 22, 0, 24,127, 24, 2, 20,
|
||||
/* 0x0cc0 */ 59, 90, 0, 1,128, 30, 0, 4,127,222, 2, 20,128, 25, 0, 16,
|
||||
/* 0x0cd0 */ 127,154, 0, 64, 65,156,254, 16,127, 3,195,120, 56, 33, 0,160,
|
||||
/* 0x0ce0 */ 128, 1, 0, 8,129, 97, 0, 4,124, 8, 3,166,185,225,255,188,
|
||||
/* 0x0cf0 */ 125,112,129, 32, 78,128, 0, 32, 57, 35, 0, 8,129, 99, 0, 4,
|
||||
/* 0x0d00 */ 47,139, 0, 0, 64,190, 0, 48, 72, 0, 0, 36,128, 2, 0, 0,
|
||||
/* 0x0d10 */ 56, 66, 0, 20, 47,128, 0, 18, 64,190, 0, 12,128,105, 0, 8,
|
||||
/* 0x0d20 */ 78,128, 0, 32, 57, 41, 0, 20, 66, 0,255,228, 56, 96, 0, 0,
|
||||
/* 0x0d30 */ 78,128, 0, 32,128, 9, 0, 0, 47,128, 0, 18, 65,190,255,224,
|
||||
/* 0x0d40 */ 56, 73, 0, 20,125,105, 3,166, 75,255,255,220,124, 8, 2,166,
|
||||
/* 0x0d50 */ 191, 65,255,232,144, 1, 0, 8,148, 33,255,128,144,129, 0,156,
|
||||
/* 0x0d60 */ 124,190, 43,120,124,218, 51,120,124,253, 59,120,125, 27, 67,120,
|
||||
/* 0x0d70 */ 125, 60, 75,120, 57, 35, 0, 24,145, 33, 0, 60,128, 65, 0,156,
|
||||
/* 0x0d80 */ 56, 66,255,232,144, 65, 0, 56,144,161, 0, 68,128, 3, 0, 24,
|
||||
/* 0x0d90 */ 144, 1, 0, 64,144, 65, 0, 72,145, 33, 0, 76, 56, 97, 0, 56,
|
||||
/* 0x0da0 */ 56,129, 0, 64,124,229, 59,120, 56,192, 0, 0, 75,255,251, 85,
|
||||
/* 0x0db0 */ 127,195,243,120, 56,128, 0, 0, 56,161, 0, 72, 56,192,255,255,
|
||||
/* 0x0dc0 */ 127,135,227,120,127,168,235,120,127,105,219,120, 75,255,252,185,
|
||||
/* 0x0dd0 */ 124,124, 27,120, 56, 94, 0, 28,129, 62, 0, 16, 47,137, 0, 0,
|
||||
/* 0x0de0 */ 64,190, 0,212, 72, 0, 0,224,128, 2, 0, 0, 47,128, 0, 14,
|
||||
/* 0x0df0 */ 64,190, 0,180,128, 98, 0, 8,124, 98, 26, 20, 56,128, 0, 0,
|
||||
/* 0x0e00 */ 56,160, 0, 0, 75,255,250, 85,124,125, 27,121, 65,128, 0, 36,
|
||||
/* 0x0e10 */ 59,128, 0, 0,127,163,235,120,127,196,243,120,127, 69,211,120,
|
||||
/* 0x0e20 */ 127,134,227,120, 75,255,249,253,127,154, 24, 0, 65,190, 0, 12,
|
||||
/* 0x0e30 */ 56, 96, 0,127, 75,255,250, 21,128, 94, 0, 0, 60, 0,190,186,
|
||||
/* 0x0e40 */ 96, 0,254,202,127,130, 0, 0, 65,158, 0, 20, 60, 0,202,254,
|
||||
/* 0x0e50 */ 96, 0,186,190,127,130, 0, 0, 64,190, 0, 24,127,195,243,120,
|
||||
/* 0x0e60 */ 75,255,254,153,124,124, 27,121, 65,162,255,200, 75,255,255,168,
|
||||
/* 0x0e70 */ 127,195,243,120,127,132,227,120, 56,160, 0, 0,127,166,235,120,
|
||||
/* 0x0e80 */ 56,224, 0, 0, 57, 0, 0, 0, 57, 32, 0, 0, 75,255,251,249,
|
||||
/* 0x0e90 */ 124,124, 27,120,127,163,235,120, 75,255,249,201, 72, 0, 0, 40,
|
||||
/* 0x0ea0 */ 125, 41, 3,166,128, 2, 0, 4,124, 66, 2, 20, 66, 0,255, 60,
|
||||
/* 0x0eb0 */ 72, 0, 0, 20,128, 2, 0, 0, 47,128, 0, 14, 64,158,255,228,
|
||||
/* 0x0ec0 */ 75,255,255, 52,127,131,227,120, 56, 33, 0,128,128, 1, 0, 8,
|
||||
/* 0x0ed0 */ 124, 8, 3,166,187, 65,255,232, 78,128, 0, 32,124, 8, 2,166,
|
||||
/* 0x0ee0 */ 191, 97,255,236,144, 1, 0, 8,148, 33,239,160, 66,159, 0, 5,
|
||||
/* 0x0ef0 */ 127,232, 2,166,124,137, 35,120, 60, 95, 0, 0, 56, 66,255,236,
|
||||
/* 0x0f00 */ 84, 66, 0, 38, 57, 98, 0, 28,128, 2, 0, 16, 47,128, 0, 0,
|
||||
/* 0x0f10 */ 65,158, 0,112, 60, 95, 0, 0, 57, 2, 0,240, 56,232, 0, 2,
|
||||
/* 0x0f20 */ 124, 9, 3,166,128, 11, 0, 0, 47,128, 0, 1, 64,190, 0, 72,
|
||||
/* 0x0f30 */ 128, 8, 0, 2,128, 75, 0, 10,127,128, 16, 0, 64,190, 0, 56,
|
||||
/* 0x0f40 */ 128, 7, 0, 4,128, 75, 0, 14,127,128, 16, 0, 64,190, 0, 40,
|
||||
/* 0x0f50 */ 128, 75, 0, 24, 57, 2, 0, 4,128, 2, 0, 0,124,226, 2, 20,
|
||||
/* 0x0f60 */ 135,194,255,252, 47,158, 0, 0, 65,158,255,248,127,126, 16, 80,
|
||||
/* 0x0f70 */ 72, 0, 0, 16,128, 11, 0, 4,125,107, 2, 20, 66, 0,255,168,
|
||||
/* 0x0f80 */ 59,161, 0, 56,127, 99,219,120,127,196,243,120,127,165,235,120,
|
||||
/* 0x0f90 */ 56,192, 16, 0, 57, 41,255,248, 75,255,253,181,124,124, 27,120,
|
||||
/* 0x0fa0 */ 127,163,235,120, 56,128, 16, 0, 75,255,250,189,127, 99,219,120,
|
||||
/* 0x0fb0 */ 127,196,243,120, 75,255,248,189,127,131,227,120, 56, 33, 16, 96,
|
||||
/* 0x0fc0 */ 128, 1, 0, 8,124, 8, 3,166,187, 97,255,236, 78,128, 0, 32,
|
||||
/* 0x0fd0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0fe0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ff0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1000 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1010 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1020 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1030 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1040 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1050 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1060 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1070 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1080 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1090 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x10a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x10b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x10c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x10d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x10e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x10f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1100 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1110 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1120 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1130 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1140 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1150 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1160 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1170 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1180 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1190 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x11a0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x11b0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x11c0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x11d0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x11e0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x11f0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1200 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1210 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1220 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1230 */ 0, 0, 0, 0, 72, 0, 11,144,124,199, 51,120, 56,192, 0, 0,
|
||||
/* 0x1240 */ 56, 0, 0,153, 72, 0, 0, 16,125, 9, 67,120, 57, 0, 0, 0,
|
||||
/* 0x1250 */ 56, 0, 0,197, 68, 0, 0, 2, 56, 96,255,255, 78,128, 0, 32,
|
||||
/* 0x1260 */ 56, 0, 0, 1, 75,255,255,240, 56, 0, 0, 3, 75,255,255,232,
|
||||
/* 0x1270 */ 56, 0, 0, 5, 75,255,255,224, 56, 0, 0, 6, 75,255,255,216,
|
||||
/* 0x1280 */ 56, 0, 0, 74, 75,255,255,208, 56, 0, 0, 73, 75,255,255,200,
|
||||
/* 0x1290 */ 72, 0, 0, 0,124, 8, 2,166,191,193,255,248,144, 1, 0, 8,
|
||||
/* 0x12a0 */ 148, 33,255,160,124, 62, 11,120,144,126, 0,120,144,158, 0,124,
|
||||
/* 0x12b0 */ 144,190, 0,128,128, 94, 0,120,128, 2, 0, 4,144, 30, 0, 64,
|
||||
/* 0x12c0 */ 128, 30, 0,124,144, 30, 0, 60,128, 94, 0,120,128, 66, 0, 0,
|
||||
/* 0x12d0 */ 128, 30, 0,128,127,130, 0, 64, 64,156, 0, 12, 56, 96, 0,127,
|
||||
/* 0x12e0 */ 75,255,255,129,128, 30, 0,128,144, 30, 0, 56, 72, 0, 0, 48,
|
||||
/* 0x12f0 */ 128, 94, 0, 64,136, 2, 0, 0, 84, 0, 6, 62,128, 94, 0, 60,
|
||||
/* 0x1300 */ 152, 2, 0, 0,128, 94, 0, 64, 56, 2, 0, 1,144, 30, 0, 64,
|
||||
/* 0x1310 */ 128, 94, 0, 60, 56, 2, 0, 1,144, 30, 0, 60,128, 94, 0, 56,
|
||||
/* 0x1320 */ 56, 2,255,255,144, 30, 0, 56,128, 94, 0, 56, 56, 0,255,255,
|
||||
/* 0x1330 */ 127,130, 0, 0, 64,158,255,188,128, 94, 0,120,128, 66, 0, 4,
|
||||
/* 0x1340 */ 128, 30, 0,128,124, 2, 2, 20,128, 94, 0,120,144, 2, 0, 4,
|
||||
/* 0x1350 */ 128, 94, 0,120,128, 66, 0, 0,128, 30, 0,128,124, 0, 16, 80,
|
||||
/* 0x1360 */ 128, 94, 0,120,144, 2, 0, 0,128, 33, 0, 0,128, 1, 0, 8,
|
||||
/* 0x1370 */ 124, 8, 3,166,187,193,255,248, 78,128, 0, 32,124, 8, 2,166,
|
||||
/* 0x1380 */ 191,193,255,248,144, 1, 0, 8,148, 33,255,144,124, 62, 11,120,
|
||||
/* 0x1390 */ 144,126, 0,136,144,158, 0,140,144,190, 0,144,144,222, 0,148,
|
||||
/* 0x13a0 */ 72, 0, 1,240, 56, 30, 0, 60,128,126, 0,136,124, 4, 3,120,
|
||||
/* 0x13b0 */ 56,160, 0, 12, 75,255,254,225,128, 30, 0, 60, 47,128, 0, 0,
|
||||
/* 0x13c0 */ 64,158, 0, 44,128, 30, 0, 64, 60, 64, 33, 88, 96, 66, 80, 85,
|
||||
/* 0x13d0 */ 127,128, 16, 0, 64,158, 0, 36,128, 94, 0,136,128, 2, 0, 0,
|
||||
/* 0x13e0 */ 47,128, 0, 0, 64,158, 0, 20, 72, 0, 1,184,128, 30, 0, 64,
|
||||
/* 0x13f0 */ 47,128, 0, 0, 64,158, 0, 12, 56, 96, 0,127, 75,255,254,101,
|
||||
/* 0x1400 */ 128, 30, 0, 64,128, 94, 0, 60,127,128, 16, 64, 65,157,255,236,
|
||||
/* 0x1410 */ 129, 62, 0, 60,128, 94, 0,140,128, 2, 0, 0,127,137, 0, 64,
|
||||
/* 0x1420 */ 65,157,255,216,128, 30, 0, 64,128, 94, 0, 60,127,128, 16, 64,
|
||||
/* 0x1430 */ 64,156, 1, 20,128, 30, 0, 60,144, 30, 0, 72,128, 94, 0,136,
|
||||
/* 0x1440 */ 128, 2, 0, 4,124, 9, 3,120,129,126, 0, 64,128, 94, 0,140,
|
||||
/* 0x1450 */ 128, 2, 0, 4,124, 2, 3,120,136, 30, 0, 68, 84, 0, 6, 62,
|
||||
/* 0x1460 */ 124, 10, 3,120, 56, 30, 0, 72,129, 30, 0,144,125, 35, 75,120,
|
||||
/* 0x1470 */ 125,100, 91,120,124, 69, 19,120,124, 6, 3,120,125, 71, 83,120,
|
||||
/* 0x1480 */ 125, 12, 67,120,125,137, 3,166, 78,128, 4, 33,124, 96, 27,120,
|
||||
/* 0x1490 */ 144, 30, 0, 56,128, 30, 0, 56, 47,128, 0, 0, 64,158,255, 92,
|
||||
/* 0x14a0 */ 128, 30, 0, 60,128, 94, 0, 72,127,128, 16, 0, 64,158,255, 76,
|
||||
/* 0x14b0 */ 136, 30, 0, 69, 84, 0, 6, 62, 47,128, 0, 0, 65,158, 0, 84,
|
||||
/* 0x14c0 */ 128, 30, 0,148, 47,128, 0, 0, 65,158, 0, 72,128, 94, 0,140,
|
||||
/* 0x14d0 */ 128, 2, 0, 4,124, 9, 3,120,129,126, 0, 72,136, 30, 0, 70,
|
||||
/* 0x14e0 */ 84, 0, 6, 62,124, 10, 3,120,136, 30, 0, 69, 84, 0, 6, 62,
|
||||
/* 0x14f0 */ 128, 94, 0,148,125, 35, 75,120,125,100, 91,120,125, 69, 83,120,
|
||||
/* 0x1500 */ 124, 6, 3,120,124, 76, 19,120,125,137, 3,166, 78,128, 4, 33,
|
||||
/* 0x1510 */ 128, 94, 0,136,128, 66, 0, 4,128, 30, 0, 64,124, 2, 2, 20,
|
||||
/* 0x1520 */ 128, 94, 0,136,144, 2, 0, 4,128, 94, 0,136,128, 66, 0, 0,
|
||||
/* 0x1530 */ 128, 30, 0, 64,124, 0, 16, 80,128, 94, 0,136,144, 2, 0, 0,
|
||||
/* 0x1540 */ 72, 0, 0, 32,128, 94, 0,140,128, 2, 0, 4,128, 94, 0, 64,
|
||||
/* 0x1550 */ 128,126, 0,136,124, 4, 3,120,124, 69, 19,120, 75,255,253, 57,
|
||||
/* 0x1560 */ 128, 94, 0,140,128, 66, 0, 4,128, 30, 0, 60,124, 2, 2, 20,
|
||||
/* 0x1570 */ 128, 94, 0,140,144, 2, 0, 4,128, 94, 0,140,128, 66, 0, 0,
|
||||
/* 0x1580 */ 128, 30, 0, 60,124, 0, 16, 80,128, 94, 0,140,144, 2, 0, 0,
|
||||
/* 0x1590 */ 128, 94, 0,140,128, 2, 0, 0, 47,128, 0, 0, 64,158,254, 8,
|
||||
/* 0x15a0 */ 128, 33, 0, 0,128, 1, 0, 8,124, 8, 3,166,187,193,255,248,
|
||||
/* 0x15b0 */ 78,128, 0, 32,191,193,255,248,148, 33,255,208,124, 62, 11,120,
|
||||
/* 0x15c0 */ 144,126, 0, 72,144,158, 0, 76,128, 30, 0, 76, 47,128, 0, 0,
|
||||
/* 0x15d0 */ 65,158, 0, 52,128, 94, 0, 72, 56, 0, 0, 0,152, 2, 0, 0,
|
||||
/* 0x15e0 */ 128, 94, 0, 72, 56, 2, 0, 1,144, 30, 0, 72,128, 94, 0, 76,
|
||||
/* 0x15f0 */ 56, 2,255,255,144, 30, 0, 76,128, 30, 0, 76, 47,128, 0, 0,
|
||||
/* 0x1600 */ 64,158,255,212,128, 33, 0, 0,187,193,255,248, 78,128, 0, 32,
|
||||
/* 0x1610 */ 124, 8, 2,166,191,193,255,248,144, 1, 0, 8,148, 33,255, 80,
|
||||
/* 0x1620 */ 124, 62, 11,120,144,126, 0,200,144,158, 0,204,144,190, 0,208,
|
||||
/* 0x1630 */ 144,222, 0,212,144,254, 0,216,145, 30, 0,220,145, 62, 0,224,
|
||||
/* 0x1640 */ 128, 94, 0,200, 56, 2, 0, 28,144, 30, 0,116, 56, 0, 0, 0,
|
||||
/* 0x1650 */ 144, 30, 0,112, 56, 0, 0, 0,144, 30, 0,108, 56, 0, 0, 0,
|
||||
/* 0x1660 */ 144, 30, 0,104, 56, 0, 0, 0,144, 30, 0,100, 72, 0, 4, 44,
|
||||
/* 0x1670 */ 128, 94, 0,116,128, 2, 0, 0, 47,128, 0, 1, 64,158, 3, 52,
|
||||
/* 0x1680 */ 128, 94, 0,116,128, 2, 0, 28, 47,128, 0, 0, 65,158, 3, 36,
|
||||
/* 0x1690 */ 128, 94, 0,116,128, 2, 0, 36,144, 30, 0,120,128, 30, 0,120,
|
||||
/* 0x16a0 */ 144, 30, 0, 96,128, 94, 0,116,128, 2, 0, 24,124, 2, 3,120,
|
||||
/* 0x16b0 */ 128, 30, 0,104,124, 2, 2, 20,144, 30, 0,124,128, 30, 0,124,
|
||||
/* 0x16c0 */ 144, 30, 0, 92,128, 94, 0,116,128, 2, 0, 28,124, 2, 3,120,
|
||||
/* 0x16d0 */ 128, 30, 0, 92,124, 2, 2, 20,144, 30, 0, 88,128, 30, 0, 92,
|
||||
/* 0x16e0 */ 84, 0, 5, 62,144, 30, 0, 84,128, 94, 0, 84,128, 30, 0, 92,
|
||||
/* 0x16f0 */ 124, 2, 0, 80,144, 30, 0, 92,128, 94, 0, 96,128, 30, 0, 84,
|
||||
/* 0x1700 */ 124, 2, 2, 20,144, 30, 0, 96,128, 30, 0, 96, 47,128, 0, 0,
|
||||
/* 0x1710 */ 65,158, 1, 44,128, 30, 0,208, 47,128, 0, 0, 65,158, 0, 16,
|
||||
/* 0x1720 */ 56, 0, 0, 3,144, 30, 0,148, 72, 0, 0, 12, 56, 64, 0, 0,
|
||||
/* 0x1730 */ 144, 94, 0,148,128, 30, 0, 96,129, 62, 0,148,124, 9, 2, 20,
|
||||
/* 0x1740 */ 144, 30, 0, 80, 56, 0, 0, 3,144, 30, 0, 76,128, 30, 0, 92,
|
||||
/* 0x1750 */ 47,128, 0, 0, 65,158, 0, 16, 56, 0, 0, 18,144, 30, 0,144,
|
||||
/* 0x1760 */ 72, 0, 0, 12, 56, 64, 0, 2,144, 94, 0,144,128, 30, 0,208,
|
||||
/* 0x1770 */ 47,128, 0, 0, 64,158, 0, 20,128, 94, 0,116,128, 2, 0, 36,
|
||||
/* 0x1780 */ 47,128, 0, 0, 64,158, 0, 16, 57, 32, 16, 0,145, 62, 0,140,
|
||||
/* 0x1790 */ 72, 0, 0, 12, 56, 0, 0, 0,144, 30, 0,140,128, 94, 0,144,
|
||||
/* 0x17a0 */ 129, 62, 0,140,124, 64, 75,120,144, 30, 0, 72,128, 94, 0,116,
|
||||
/* 0x17b0 */ 128, 2, 0, 36, 47,128, 0, 0, 65,158, 0, 16,128, 30, 0,212,
|
||||
/* 0x17c0 */ 144, 30, 0,136, 72, 0, 0, 12, 56, 64,255,255,144, 94, 0,136,
|
||||
/* 0x17d0 */ 129, 62, 0,136,145, 62, 0, 68,128, 94, 0,116,128, 66, 0, 32,
|
||||
/* 0x17e0 */ 128, 30, 0,204,124, 2, 2, 20,144, 30, 0, 64,128,126, 0, 92,
|
||||
/* 0x17f0 */ 128,158, 0, 80,128,190, 0, 76,128,222, 0, 72,128,254, 0, 68,
|
||||
/* 0x1800 */ 129, 30, 0, 64, 75,255,250, 69,124, 96, 27,120,144, 30, 0, 60,
|
||||
/* 0x1810 */ 128, 94, 0, 60, 56, 0,255,255,127,130, 0, 0, 65,158, 0,208,
|
||||
/* 0x1820 */ 128, 30, 0, 92, 47,128, 0, 0, 64,158, 0, 12,128, 30, 0, 60,
|
||||
/* 0x1830 */ 144, 30, 0,104,128, 30, 0, 60,144, 30, 0, 92,128, 30, 0,208,
|
||||
/* 0x1840 */ 47,128, 0, 0, 65,158, 0, 80,128, 94, 0,116,128, 2, 0, 36,
|
||||
/* 0x1850 */ 47,128, 0, 0, 65,158, 0, 64,128, 94, 0,116,128, 2, 0, 32,
|
||||
/* 0x1860 */ 47,128, 0, 0, 64,158, 0, 24,128, 30, 0,116,144, 30, 0,112,
|
||||
/* 0x1870 */ 128, 30, 0, 92,128, 94, 0,216,144, 2, 0, 0, 56, 30, 0,120,
|
||||
/* 0x1880 */ 128,126, 0,208,124, 4, 3,120,128,190, 0,220,128,222, 0,224,
|
||||
/* 0x1890 */ 75,255,250,237,128, 30, 0, 96,124, 0, 0,208, 84, 0, 5, 62,
|
||||
/* 0x18a0 */ 144, 30, 0, 84,128, 94, 0, 96,128, 30, 0, 92,124, 2, 2, 20,
|
||||
/* 0x18b0 */ 124, 3, 3,120,128,158, 0, 84, 75,255,252,253,128, 30, 0, 96,
|
||||
/* 0x18c0 */ 47,128, 0, 0, 65,158, 0, 48,128, 94, 0,116,128, 2, 0, 44,
|
||||
/* 0x18d0 */ 128,126, 0, 92,128,158, 0, 96,124, 5, 3,120, 75,255,249,165,
|
||||
/* 0x18e0 */ 124, 96, 27,120, 47,128, 0, 0, 65,158, 0, 12, 56, 96, 0,127,
|
||||
/* 0x18f0 */ 75,255,249,113,128, 94, 0, 96,128, 30, 0, 84,124, 2, 2, 20,
|
||||
/* 0x1900 */ 124, 2, 3,120,128, 30, 0, 92,124, 0, 18, 20,144, 30, 0, 92,
|
||||
/* 0x1910 */ 128, 94, 0, 92,128, 30, 0, 88,127,130, 0, 64, 64,156, 0, 88,
|
||||
/* 0x1920 */ 128, 30, 0, 92, 47,128, 0, 0, 65,158, 1, 76,128, 94, 0, 88,
|
||||
/* 0x1930 */ 128, 30, 0, 92,124, 0, 16, 80,124, 9, 3,120,128, 94, 0,116,
|
||||
/* 0x1940 */ 128, 2, 0, 44,128,126, 0, 92,125, 36, 75,120,124, 5, 3,120,
|
||||
/* 0x1950 */ 56,192, 16, 18, 56,224,255,255, 57, 0, 0, 0, 75,255,248,237,
|
||||
/* 0x1960 */ 124, 98, 27,120,128, 30, 0, 92,127,130, 0, 0, 64,158,255,128,
|
||||
/* 0x1970 */ 72, 0, 1, 4,128, 30, 0,208, 47,128, 0, 0, 65,158, 0,248,
|
||||
/* 0x1980 */ 128, 94, 0, 96, 56, 2, 0, 3, 84, 0, 5, 62,144, 30, 0, 96,
|
||||
/* 0x1990 */ 128, 30, 0, 96, 43,128, 0, 3, 65,157, 0,220,128, 30, 0, 92,
|
||||
/* 0x19a0 */ 124, 3, 3,120,128,158, 0, 96, 75,255,248,225, 72, 0, 0,200,
|
||||
/* 0x19b0 */ 128, 94, 0,116,128, 2, 0, 0, 47,128, 0, 5, 65,158, 0, 20,
|
||||
/* 0x19c0 */ 128, 94, 0,116,128, 2, 0, 0, 47,128, 0, 4, 64,158, 0, 68,
|
||||
/* 0x19d0 */ 128, 30, 0,116,144, 30, 0, 56,128, 94, 0, 56,128, 2, 0, 8,
|
||||
/* 0x19e0 */ 47,128, 0, 1, 64,158, 0,144,128, 94, 0, 56,128, 2, 0, 12,
|
||||
/* 0x19f0 */ 47,128, 0, 40, 64,158, 0,128,128, 94, 0, 56,128, 66, 0, 16,
|
||||
/* 0x1a00 */ 128, 30, 0,104,124, 2, 2, 20,144, 30, 0,108, 72, 0, 0,104,
|
||||
/* 0x1a10 */ 128, 94, 0,116,128, 66, 0, 0, 60, 0,128, 0, 96, 0, 0, 40,
|
||||
/* 0x1a20 */ 127,130, 0, 0, 64,158, 0, 80,128, 94, 0,116,128, 98, 0, 12,
|
||||
/* 0x1a30 */ 128, 66, 0, 8,144,126, 0,108,128, 94, 0,112,128, 66, 0, 32,
|
||||
/* 0x1a40 */ 128, 30, 0,108,127,130, 0, 64, 65,157, 0, 44,128, 94, 0,112,
|
||||
/* 0x1a50 */ 128, 66, 0, 36,128, 30, 0,108,127,130, 0, 64, 64,157, 0, 24,
|
||||
/* 0x1a60 */ 128, 94, 0,112,128, 66, 0, 24,128, 30, 0,108,124, 0, 18, 20,
|
||||
/* 0x1a70 */ 144, 30, 0,108,128, 94, 0,100, 56, 2, 0, 1,144, 30, 0,100,
|
||||
/* 0x1a80 */ 128, 94, 0,116,128, 2, 0, 4,124, 2, 3,120,128, 30, 0,116,
|
||||
/* 0x1a90 */ 124, 2, 2, 20,144, 30, 0,116,128, 94, 0,200,128, 66, 0, 16,
|
||||
/* 0x1aa0 */ 128, 30, 0,100,127,130, 0, 64, 65,157,251,200,128, 30, 0,108,
|
||||
/* 0x1ab0 */ 124, 3, 3,120,128, 33, 0, 0,128, 1, 0, 8,124, 8, 3,166,
|
||||
/* 0x1ac0 */ 187,193,255,248, 78,128, 0, 32,191,193,255,248,148, 33,255,192,
|
||||
/* 0x1ad0 */ 124, 62, 11,120,144,126, 0, 88,128, 94, 0, 88, 56, 2, 0, 8,
|
||||
/* 0x1ae0 */ 144, 30, 0, 28, 56, 0, 0, 0,144, 30, 0, 24, 72, 0, 0, 60,
|
||||
/* 0x1af0 */ 128, 94, 0, 28,128, 2, 0, 0, 47,128, 0, 18, 64,158, 0, 20,
|
||||
/* 0x1b00 */ 128, 94, 0, 28,128, 66, 0, 8,144, 94, 0, 40, 72, 0, 0, 56,
|
||||
/* 0x1b10 */ 128, 94, 0, 24, 56, 2, 0, 1,144, 30, 0, 24,128, 94, 0, 28,
|
||||
/* 0x1b20 */ 56, 2, 0, 20,144, 30, 0, 28,128, 94, 0, 88,128, 66, 0, 4,
|
||||
/* 0x1b30 */ 128, 30, 0, 24,127,130, 0, 64, 65,157,255,184, 56, 0, 0, 0,
|
||||
/* 0x1b40 */ 144, 30, 0, 40,128, 30, 0, 40,124, 3, 3,120,128, 33, 0, 0,
|
||||
/* 0x1b50 */ 187,193,255,248, 78,128, 0, 32,124, 8, 2,166,191,193,255,248,
|
||||
/* 0x1b60 */ 144, 1, 0, 8,148, 33,255,128,124, 62, 11,120,144,126, 0,152,
|
||||
/* 0x1b70 */ 144,158, 0,156,144,190, 0,160,144,222, 0,164,144,254, 0,168,
|
||||
/* 0x1b80 */ 145, 30, 0,172,145, 62, 0,176, 56, 0, 0, 0,144, 30, 0, 72,
|
||||
/* 0x1b90 */ 128, 94, 0,152, 56, 2, 0, 24,144, 30, 0, 84,128, 94, 0,156,
|
||||
/* 0x1ba0 */ 56, 2,255,232,144, 30, 0, 80,128, 30, 0,160,144, 30, 0, 92,
|
||||
/* 0x1bb0 */ 128, 30, 0, 84,124, 2, 3,120,128, 2, 0, 0,144, 30, 0, 88,
|
||||
/* 0x1bc0 */ 128, 30, 0, 80,128, 94, 0, 84,144, 30, 0, 96,144, 94, 0,100,
|
||||
/* 0x1bd0 */ 56, 30, 0, 80, 56, 94, 0, 88,124, 3, 3,120,124, 68, 19,120,
|
||||
/* 0x1be0 */ 128,190, 0,168, 56,192, 0, 0, 75,255,247,149, 56, 30, 0, 96,
|
||||
/* 0x1bf0 */ 128,126, 0,160,128,158, 0, 72,124, 5, 3,120, 56,192,255,255,
|
||||
/* 0x1c00 */ 128,254, 0,176,129, 30, 0,168,129, 62, 0,172, 75,255,250, 5,
|
||||
/* 0x1c10 */ 124, 96, 27,120,144, 30, 0, 76,128, 94, 0,160, 56, 2, 0, 28,
|
||||
/* 0x1c20 */ 144, 30, 0, 68, 56, 0, 0, 0,144, 30, 0, 64, 72, 0, 1,104,
|
||||
/* 0x1c30 */ 128, 94, 0, 68,128, 2, 0, 0, 47,128, 0, 14, 64,158, 1, 52,
|
||||
/* 0x1c40 */ 128, 94, 0, 68, 56, 2, 0, 8,124, 2, 3,120,128, 2, 0, 0,
|
||||
/* 0x1c50 */ 124, 2, 3,120,128, 30, 0, 68,124, 2, 2, 20,144, 30, 0, 60,
|
||||
/* 0x1c60 */ 128,126, 0, 60, 56,128, 0, 0, 56,160, 0, 0, 75,255,246, 5,
|
||||
/* 0x1c70 */ 124, 96, 27,120,144, 30, 0, 56,128, 30, 0, 56, 47,128, 0, 0,
|
||||
/* 0x1c80 */ 65,156, 0, 44,128,126, 0, 56,128,158, 0,160,128,190, 0,164,
|
||||
/* 0x1c90 */ 128,222, 0, 72, 75,255,245,165,124, 96, 27,120,124, 2, 3,120,
|
||||
/* 0x1ca0 */ 128, 30, 0,164,127,130, 0, 0, 65,158, 0, 12, 56, 96, 0,127,
|
||||
/* 0x1cb0 */ 75,255,245,177,128, 94, 0,160,128, 66, 0, 0,144, 94, 0,104,
|
||||
/* 0x1cc0 */ 60, 0,202,254, 96, 0,186,190,128, 94, 0,104,127,130, 0, 0,
|
||||
/* 0x1cd0 */ 65,158, 0, 72, 60, 0,202,254, 96, 0,186,190,128, 94, 0,104,
|
||||
/* 0x1ce0 */ 127,130, 0, 64, 65,157, 0, 28, 60, 0,190,186, 96, 0,254,202,
|
||||
/* 0x1cf0 */ 128, 94, 0,104,127,130, 0, 0, 65,158, 0, 32, 72, 0, 0, 64,
|
||||
/* 0x1d00 */ 60, 0,254,237, 96, 0,250,206,128, 94, 0,104,127,130, 0, 0,
|
||||
/* 0x1d10 */ 65,158, 0, 44, 72, 0, 0, 40,128, 30, 0,160,124, 3, 3,120,
|
||||
/* 0x1d20 */ 75,255,253,169,124, 96, 27,120,144, 30, 0, 72,128, 30, 0, 72,
|
||||
/* 0x1d30 */ 47,128, 0, 0, 64,158,255, 80, 75,255,255,116,128,126, 0,160,
|
||||
/* 0x1d40 */ 128,158, 0, 72, 56,160, 0, 0,128,222, 0, 56, 56,224, 0, 0,
|
||||
/* 0x1d50 */ 57, 0, 0, 0, 57, 32, 0, 0, 75,255,248,185,124, 96, 27,120,
|
||||
/* 0x1d60 */ 144, 30, 0, 76,128,126, 0, 56, 75,255,245, 17, 72, 0, 0, 60,
|
||||
/* 0x1d70 */ 128, 94, 0, 64, 56, 2, 0, 1,144, 30, 0, 64,128, 94, 0, 68,
|
||||
/* 0x1d80 */ 128, 2, 0, 4,124, 2, 3,120,128, 30, 0, 68,124, 2, 2, 20,
|
||||
/* 0x1d90 */ 144, 30, 0, 68,128, 94, 0,160,128, 66, 0, 16,128, 30, 0, 64,
|
||||
/* 0x1da0 */ 127,130, 0, 64, 65,157,254,140,128, 30, 0, 76,124, 3, 3,120,
|
||||
/* 0x1db0 */ 128, 33, 0, 0,128, 1, 0, 8,124, 8, 3,166,187,193,255,248,
|
||||
/* 0x1dc0 */ 78,128, 0, 32,124, 8, 2,166,191,193,255,248,144, 1, 0, 8,
|
||||
/* 0x1dd0 */ 148, 33,191,112,124, 62, 11,120, 66,159, 0, 5,127,232, 2,166,
|
||||
/* 0x1de0 */ 144,126, 64,168,144,158, 64,172,128, 1, 0, 4,144, 30, 64,168,
|
||||
/* 0x1df0 */ 144, 94, 64,172, 60, 95, 0, 0, 56, 2,255,232, 84, 0, 0, 38,
|
||||
/* 0x1e00 */ 144, 30, 0, 92,128, 94, 0, 92, 56, 2, 0, 28,144, 30, 0, 88,
|
||||
/* 0x1e10 */ 56, 0, 0, 0,144, 30, 0, 68, 72, 0, 1, 36,128, 94, 0, 88,
|
||||
/* 0x1e20 */ 128, 2, 0, 0, 47,128, 0, 1, 64,158, 0,240,128, 30, 0, 88,
|
||||
/* 0x1e30 */ 144, 30, 0, 60, 60, 95, 0, 0, 56, 66, 2, 4, 56, 2, 0, 2,
|
||||
/* 0x1e40 */ 124, 2, 3,120,129, 34, 0, 0,129, 66, 0, 4,145, 62, 64,112,
|
||||
/* 0x1e50 */ 145, 94, 64,116,128, 94, 0, 60, 56, 66, 0, 8, 56, 2, 0, 2,
|
||||
/* 0x1e60 */ 124, 2, 3,120,129, 34, 0, 0,129, 66, 0, 4,145, 62, 64,104,
|
||||
/* 0x1e70 */ 145, 94, 64,108,129, 94, 64,112,128, 30, 64,104,127,138, 0, 0,
|
||||
/* 0x1e80 */ 64,158, 0,152,128, 94, 64,116,129, 62, 64,108,127,130, 72, 0,
|
||||
/* 0x1e90 */ 64,158, 0,136,128, 94, 0, 60,128, 66, 0, 24, 56, 2, 0, 2,
|
||||
/* 0x1ea0 */ 144, 30, 0, 84,128, 94, 0, 60,128, 2, 0, 24,124, 2, 3,120,
|
||||
/* 0x1eb0 */ 160, 2, 0, 0, 84, 0, 4, 62,124, 9, 3,120,128, 94, 0, 60,
|
||||
/* 0x1ec0 */ 128, 2, 0, 24,124, 9, 2, 20,144, 30, 0, 80,128, 94, 0, 60,
|
||||
/* 0x1ed0 */ 128, 2, 0, 24,144, 30, 0, 56,128, 94, 0, 56, 56, 2,255,252,
|
||||
/* 0x1ee0 */ 144, 30, 0, 56,128, 94, 0, 56,128, 2, 0, 0,144, 30, 0, 72,
|
||||
/* 0x1ef0 */ 128, 30, 0, 72, 47,128, 0, 0, 65,158,255,224,128, 30, 0, 72,
|
||||
/* 0x1f00 */ 124, 0, 0,208,124, 2, 3,120,128, 30, 0, 56,124, 2, 2, 20,
|
||||
/* 0x1f10 */ 144, 30, 0, 76, 72, 0, 0, 60,128, 94, 0, 68, 56, 2, 0, 1,
|
||||
/* 0x1f20 */ 144, 30, 0, 68,128, 94, 0, 88,128, 2, 0, 4,124, 2, 3,120,
|
||||
/* 0x1f30 */ 128, 30, 0, 88,124, 2, 2, 20,144, 30, 0, 88,128, 94, 0, 92,
|
||||
/* 0x1f40 */ 128, 66, 0, 16,128, 30, 0, 68,127,130, 0, 64, 65,157,254,208,
|
||||
/* 0x1f50 */ 129, 62, 0, 76, 57,126, 0, 96,128, 94, 64,172, 56, 2,255,248,
|
||||
/* 0x1f60 */ 125, 35, 75,120,128,158, 0, 72,125,101, 91,120, 56,192, 64, 0,
|
||||
/* 0x1f70 */ 128,254, 0, 80,129, 30, 0, 84,124, 9, 3,120, 75,255,251,221,
|
||||
/* 0x1f80 */ 124, 96, 27,120,144, 30, 0, 64,128,126, 0, 76,128,158, 0, 72,
|
||||
/* 0x1f90 */ 75,255,242,249,128, 94, 64,172, 56, 66,255,252,128, 30, 64,168,
|
||||
/* 0x1fa0 */ 144, 2, 0, 0,128, 94, 0, 64,128, 30, 64,172,124, 79,241, 32,
|
||||
/* 0x1fb0 */ 56, 0, 0, 0,124, 3, 3,120,128, 33, 0, 0,128, 1, 0, 8,
|
||||
/* 0x1fc0 */ 124, 8, 3,166,187,193,255,248, 78,128, 0, 32, 0, 0, 0, 0,
|
||||
/* 0x1fd0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1fe0 */ 95, 95, 76, 73, 78, 75, 69, 68, 73, 84, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x1ff0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
||||
/* 0x0fe0 */ 95, 95, 76, 73, 78, 75, 69, 68, 73, 84, 0, 0, 0, 0, 0, 0,
|
||||
/* 0x0ff0 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
|
||||
};
|
||||
|
|
|
@ -29,10 +29,17 @@
|
|||
#include "arch/powerpc/32/macros.S"
|
||||
#include "arch/powerpc/32/ppc_regs.h"
|
||||
|
||||
section MACOS000
|
||||
section PPC32BXX
|
||||
0: .int 9f - 0b
|
||||
#include "arch/powerpc/32/bxx.S"
|
||||
9:
|
||||
|
||||
section MACMAINX
|
||||
_start: .globl _start
|
||||
call main # must be exactly 1 instruction; link_register= &decompress
|
||||
|
||||
section MACH_UNC
|
||||
|
||||
section NRV_HEAD
|
||||
SZ_DLINE=128 # size of data cache line in Apple G5
|
||||
|
||||
|
@ -94,13 +101,12 @@ cfl_nrv:
|
|||
#undef dst0
|
||||
sync // wait for all memory operations to finish
|
||||
isync // discard prefetched instructions (if any)
|
||||
cfl_ret:
|
||||
ret
|
||||
|
||||
section ELFMAINY
|
||||
section MACHMAINY
|
||||
ret
|
||||
// IDENTSTR goes here
|
||||
|
||||
section ELFMAINZ
|
||||
section MACHMAINZ
|
||||
sz_b_info= 12
|
||||
sz_unc= 0
|
||||
sz_cpr= 4
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
; <jreiser@users.sourceforge.net>
|
||||
;
|
||||
*/
|
||||
.machine ppc
|
||||
|
||||
SYS_exit =1
|
||||
SYS_fork =2
|
||||
|
@ -44,7 +45,17 @@ SYS_munmap= 73
|
|||
SYS_mprotect= 74
|
||||
|
||||
_start: .globl _start
|
||||
b _main
|
||||
trap // debug
|
||||
lwz r3,0(r1) // argc
|
||||
la r4,4(r1) // argv
|
||||
la r1,-(1+6)*4(r1) // 6:frame convention, 1: mhdrpp
|
||||
bl _main
|
||||
mtctr r3 // entry to dyloader
|
||||
la r1, (0+6)*4(r1) // undo frame; retain mhdrp
|
||||
li r0,0
|
||||
mtlr r0 // paranoia
|
||||
bctrl
|
||||
trap // should never happen
|
||||
|
||||
/* SYS_mmap takes a 64-bit off_t, but gcc-3.4.1-20040827 passes long long
|
||||
in wrong registers. So change C interface to use size_t (32-bits) instead
|
||||
|
|
|
@ -2,24 +2,28 @@ file format elf32-powerpc
|
|||
|
||||
Sections:
|
||||
Idx Name Size VMA LMA File off Algn Flags
|
||||
0 MACOS000 00000004 00000000 00000000 00000034 2**0 CONTENTS, RELOC, READONLY
|
||||
1 NRV_HEAD 00000000 00000000 00000000 00000038 2**0 CONTENTS, READONLY
|
||||
2 NRV2E 00000148 00000000 00000000 00000038 2**0 CONTENTS, RELOC, READONLY
|
||||
3 NRV2D 0000012c 00000000 00000000 00000180 2**0 CONTENTS, RELOC, READONLY
|
||||
4 NRV2B 000000f0 00000000 00000000 000002ac 2**0 CONTENTS, RELOC, READONLY
|
||||
5 LZMA_ELF00 0000008c 00000000 00000000 0000039c 2**0 CONTENTS, RELOC, READONLY
|
||||
6 LZMA_DEC10 0000099c 00000000 00000000 00000428 2**0 CONTENTS, READONLY
|
||||
7 LZMA_DEC20 0000099c 00000000 00000000 00000dc4 2**0 CONTENTS, READONLY
|
||||
8 LZMA_DEC30 00000020 00000000 00000000 00001760 2**0 CONTENTS, READONLY
|
||||
9 NRV_TAIL 0000001c 00000000 00000000 00001780 2**0 CONTENTS, READONLY
|
||||
10 CFLUSH 00000024 00000000 00000000 0000179c 2**0 CONTENTS, READONLY
|
||||
11 ELFMAINY 00000000 00000000 00000000 000017c0 2**0 CONTENTS, READONLY
|
||||
12 ELFMAINZ 00000054 00000000 00000000 000017c0 2**0 CONTENTS, READONLY
|
||||
0 PPC32BXX 00000068 00000000 00000000 00000034 2**0 CONTENTS, READONLY
|
||||
1 MACMAINX 00000004 00000000 00000000 0000009c 2**0 CONTENTS, RELOC, READONLY
|
||||
2 MACH_UNC 00000000 00000000 00000000 000000a0 2**0 CONTENTS, READONLY
|
||||
3 NRV_HEAD 00000000 00000000 00000000 000000a0 2**0 CONTENTS, READONLY
|
||||
4 NRV2E 00000148 00000000 00000000 000000a0 2**0 CONTENTS, RELOC, READONLY
|
||||
5 NRV2D 0000012c 00000000 00000000 000001e8 2**0 CONTENTS, RELOC, READONLY
|
||||
6 NRV2B 000000f0 00000000 00000000 00000314 2**0 CONTENTS, RELOC, READONLY
|
||||
7 LZMA_ELF00 0000008c 00000000 00000000 00000404 2**0 CONTENTS, RELOC, READONLY
|
||||
8 LZMA_DEC10 0000099c 00000000 00000000 00000490 2**0 CONTENTS, READONLY
|
||||
9 LZMA_DEC20 0000099c 00000000 00000000 00000e2c 2**0 CONTENTS, READONLY
|
||||
10 LZMA_DEC30 00000020 00000000 00000000 000017c8 2**0 CONTENTS, READONLY
|
||||
11 NRV_TAIL 0000001c 00000000 00000000 000017e8 2**0 CONTENTS, READONLY
|
||||
12 CFLUSH 00000020 00000000 00000000 00001804 2**0 CONTENTS, READONLY
|
||||
13 MACHMAINY 00000004 00000000 00000000 00001824 2**0 CONTENTS, READONLY
|
||||
14 MACHMAINZ 00000054 00000000 00000000 00001828 2**0 CONTENTS, READONLY
|
||||
SYMBOL TABLE:
|
||||
00000000 l d LZMA_DEC30 00000000 LZMA_DEC30
|
||||
00000000 l d NRV_TAIL 00000000 NRV_TAIL
|
||||
00000000 l d ELFMAINZ 00000000 ELFMAINZ
|
||||
00000000 l d MACOS000 00000000 MACOS000
|
||||
00000000 l d MACHMAINZ 00000000 MACHMAINZ
|
||||
00000000 l d PPC32BXX 00000000 PPC32BXX
|
||||
00000000 l d MACMAINX 00000000 MACMAINX
|
||||
00000000 l d MACH_UNC 00000000 MACH_UNC
|
||||
00000000 l d NRV_HEAD 00000000 NRV_HEAD
|
||||
00000000 l d NRV2E 00000000 NRV2E
|
||||
00000000 l d NRV2D 00000000 NRV2D
|
||||
|
@ -28,12 +32,12 @@ SYMBOL TABLE:
|
|||
00000000 l d LZMA_DEC10 00000000 LZMA_DEC10
|
||||
00000000 l d LZMA_DEC20 00000000 LZMA_DEC20
|
||||
00000000 l d CFLUSH 00000000 CFLUSH
|
||||
00000000 l d ELFMAINY 00000000 ELFMAINY
|
||||
00000000 g MACOS000 00000000 _start
|
||||
00000000 l d MACHMAINY 00000000 MACHMAINY
|
||||
00000000 g MACMAINX 00000000 _start
|
||||
|
||||
RELOCATION RECORDS FOR [MACOS000]:
|
||||
RELOCATION RECORDS FOR [MACMAINX]:
|
||||
OFFSET TYPE VALUE
|
||||
00000000 R_PPC_REL24 ELFMAINZ+0x00000048
|
||||
00000000 R_PPC_REL24 MACHMAINZ+0x00000048
|
||||
|
||||
RELOCATION RECORDS FOR [NRV2E]:
|
||||
OFFSET TYPE VALUE
|
||||
|
|
Loading…
Reference in New Issue
Block a user