*** src/sys/conf/files.orig --- src/sys/conf/files *************** *** 462,467 **** --- 462,468 ---- kern/tty_subr.c standard kern/tty_tty.c standard kern/uipc_domain.c standard + kern/uipc_jumbo.c standard kern/uipc_mbuf.c standard kern/uipc_mbuf2.c standard kern/uipc_proto.c standard *************** *** 469,474 **** --- 470,476 ---- kern/uipc_socket2.c standard kern/uipc_syscalls.c standard kern/uipc_usrreq.c standard + kern/uipc_zcopy.c optional zcopy kern/vfs_aio.c standard kern/vfs_bio.c standard kern/vfs_cache.c standard *** src/sys/conf/majors.orig --- src/sys/conf/majors *************** *** 165,170 **** --- 165,171 ---- 146 twe 3ware Escalade ATA RAID (controller) 147 twed 3ware Escalade ATA RAID (drives) 148 agp AGP + 149 ti Tigon Gigabit Ethernet driver (ken@FreeBSD.ORG) 200 ?? entries from 200-252 are reserved for local use 252 ?? entries from 200-252 are reserved for local use 253 mfs Used by MFS *** src/sys/conf/options.orig --- src/sys/conf/options *************** *** 294,299 **** --- 294,305 ---- NETGRAPH_UI opt_netgraph.h NETGRAPH_VJC opt_netgraph.h + + ZCOPY opt_zcopy.h + ZERO_COPY_SOCKETS opt_zero.h + PRIVATE_JUMBOS opt_alteon.h + TI_JUMBO_HDRSPLIT opt_alteon.h + # ATM (HARP version) ATM_CORE opt_atm.h ATM_IP opt_atm.h *************** *** 350,355 **** --- 356,363 ---- INVARIANTS opt_global.h SIMPLELOCK_DEBUG opt_global.h VFS_BIO_DEBUG opt_global.h + MSIZE opt_global.h + MCLSHIFT opt_global.h # These are VM related options VM_KMEM_SIZE opt_vm.h *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/i386/conf/sphere Sat Jul 8 21:56:25 2000 *************** *** 0 **** --- 1,175 ---- + # + # GENERIC -- Generic machine with WD/AHx/NCR/BTx family disks + # + # For more information read the handbook part System Administration -> + # Configuring the FreeBSD Kernel -> The Configuration File. + # The handbook is available in /usr/share/doc/handbook or online as + # latest version from the FreeBSD World Wide Web server + # + # + # An exhaustive list of options and more detailed explanations of the + # device lines is present in the ./LINT configuration file. If you are + # in doubt as to the purpose or necessity of a line, check first in LINT. + # + # $Id: GENERIC,v 1.77.2.1 1996/12/21 02:10:50 se Exp $ + + machine "i386" + # cpu "I386_CPU" + # cpu "I486_CPU" + cpu "I586_CPU" + cpu "I686_CPU" + ident sphere + maxusers 128 + + hints "sphere.hints" # hints for sphere + + # options MATH_EMULATE #Support for x87 emulation + options INET #InterNETworking + options FFS #Berkeley Fast Filesystem + options NFS #Network Filesystem + options MSDOSFS #MSDOS Filesystem + options "CD9660" #ISO 9660 Filesystem + options PROCFS #Process filesystem + options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] + # options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device + options UCONSOLE #Allow users to grab the console + # options USERCONFIG #boot -c editor + # options VISUAL_USERCONFIG #visual boot -c editor + #options CHILD_MAX=128 + #options OPEN_MAX=128 + options SYSVSHM + options SYSVSEM + options SYSVMSG + options KTRACE + options MROUTING + #options IPFIREWALL + #options IPFIREWALL_VERBOSE + # options IPFIREWALL_VERBOSE_LIMIT=100 + #options IPDIVERT + #options DEVFS + #options "MAXMEM=(192*1024)" + options MAXCONS=16 + options AHC_ALLOW_MEMIO + options COMPAT_LINUX + options DDB + options MSGBUF_SIZE=32768 + #options CONSPEED=115200 + options SOFTUPDATES + options P1003_1B #Posix P1003_1B real-time extentions + options _KPOSIX_PRIORITY_SCHEDULING + options ZERO_COPY_SOCKETS + #options ZCOPY + options ENABLE_VFS_IOOPT + options MCLSHIFT=12 # 4k (page size) mbuf clusters + options MSIZE=256 # 256byte mbufs + options NMBCLUSTERS=(512+512*32) + options TI_JUMBO_HDRSPLIT + + + config kernel + + device isa + # device eisa0 + device pci + + device fdc + + # A single entry for any of these devices (ncr, ahb, ahc, amd) is + # sufficient for any number of installed devices. + device ahc + #options "AHC_FORCE_PIO" # Some motherboards choke on MemI/O, + # so use PIO in the ahc driver in the + # generic kernel. + + + device scbus + + device da + + device sa + + device cd #Only need one of these, the code dynamically grows + + # Ken's passthrough SCSI driver + device pass + + # device pnp0 + device pcm + device gusc + + # ATA and ATAPI devices + device ata + device atadisk # ATA disk drives + device atapicd # ATAPI CDROM drives + device atapifd # ATAPI floppy drives + device atapist # ATAPI tape drives + options ATA_STATIC_ID #Static device numbering + #options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices + + + # atkbdc0 controlls both the keyboard and the PS/2 mouse + device atkbdc 1 + device atkbd + device psm + + device vga + + # syscons is the default console driver, resembling an SCO console + device sc 1 + + # Mandatory, don't remove + device npx + + # device sio0 at isa? port "IO_COM1" flags 0x80 irq 4 + # Use this for a serial console + # device sio0 at isa? port "IO_COM1" flags 0x30 irq 4 + # device sio1 at isa? port "IO_COM2" irq 3 + + device sio + + device ppc + device ppbus + device lpt + + # USB support + device uhci + device ohci + device usb + # + # for the moment we have to specify the priorities of the device + # drivers explicitly by the ordering in the list below. This will + # be changed in the future. + # + device ums + device uhid + device ukbd + device ulpt + device ugen + device umass + + # + #options USB_DEBUG + #options USBVERBOSE + + # Order is important here due to intrusive probes, do *not* alphabetize + # this list of network interfaces until the probes have been fixed. + # Right now it appears that the ie0 must be probed before ep0. See + # revision 1.20 of this file. + device de + device fxp + device ti + # device vx0 + + # device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 + + device loop + device ether + device sl + # ijppp uses tun instead of ppp device + device ppp 1 + device tun + device pty + device gzip # Exec gzipped a.out's + device bpf + device snp 3 + device vn *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/i386/conf/sphere.hints Sat Jul 8 21:56:25 2000 *************** *** 0 **** --- 1,35 ---- + hint.fdc.0.at="isa" + hint.fdc.0.port="0x3F0" + hint.fdc.0.irq="6" + hint.fdc.0.drq="2" + hint.fd.0.at="fdc0" + hint.fd.0.drive="0" + hint.fd.1.at="fdc0" + hint.fd.1.drive="1" + hint.ata.0.at="isa" + hint.ata.0.port="0x1F0" + hint.ata.0.irq="14" + hint.ata.1.at="isa" + hint.ata.1.port="0x170" + hint.ata.1.irq="15" + hint.atkbdc.0.at="isa" + hint.atkbdc.0.port="0x060" + hint.atkbd.0.at="atkbdc" + hint.atkbd.0.irq="1" + hint.psm.0.at="atkbdc" + hint.psm.0.irq="12" + hint.vga.0.at="isa" + hint.sc.0.at="isa" + hint.npx.0.at="nexus" + hint.npx.0.port="0x0F0" + hint.npx.0.irq="13" + hint.sio.0.at="isa" + hint.sio.0.port="0x3F8" + hint.sio.0.flags="0x80" + hint.sio.0.irq="4" + hint.sio.1.at="isa" + hint.sio.1.port="0x2F8" + hint.sio.1.irq="3" + hint.ppc.0.at="isa" + hint.ppc.0.irq="7" + hint.lpt.0.at="ppbus" *** src/sys/kern/kern_subr.c.orig --- src/sys/kern/kern_subr.c *************** *** 39,44 **** --- 39,47 ---- * $FreeBSD: src/sys/kern/kern_subr.c,v 1.33 2000/05/26 02:04:34 jake Exp $ */ + #include "opt_zero.h" + #include "opt_zcopy.h" + #include #include #include *************** *** 54,59 **** --- 57,140 ---- static void uio_yield __P((void)); + #if defined(ZERO_COPY_SOCKETS) || defined(ZCOPY) + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + + extern vm_object_t tpz_vm_object; + struct vm_pgmoveco_stats{ + int fails; + int cnt; + int cp; + int iov_base; + int uio_offset; + }; + struct vm_pgmoveco_stats tpz_vm_pgmoveco_stats = {0,0,0,0,0}; + int vm_pgmoveco __P((vm_map_t, vm_object_t, vm_offset_t, + vm_offset_t)); + int vm_pgtrade __P((caddr_t, caddr_t)); + + + int + vm_pgmoveco(mapa, srcobj, kaddr, uaddr) + vm_map_t mapa; + vm_object_t srcobj; + vm_offset_t kaddr, uaddr; + { + vm_map_t map = mapa; + vm_page_t kern_pg, user_pg; + vm_object_t uobject; + vm_map_entry_t entry; + vm_pindex_t upindex, kpindex; + vm_prot_t prot; + boolean_t wired; + + if ((vm_map_lookup(&map, uaddr, + VM_PROT_READ, &entry, &uobject, + &upindex, &prot, &wired)) != KERN_SUCCESS) { + return EFAULT; + } + if ((user_pg = vm_page_lookup(uobject, upindex)) != NULL) { + vm_page_sleep_busy(user_pg, 1, "vm_pgmoveco"); + pmap_remove(map->pmap, uaddr, uaddr+PAGE_SIZE); + vm_page_busy(user_pg); + vm_page_free(user_pg); + } + + kern_pg = PHYS_TO_VM_PAGE(vtophys(kaddr)); + if (kern_pg->busy || ((kern_pg->queue - kern_pg->pc) == PQ_FREE) || + (kern_pg->hold_count != 0)|| (kern_pg->flags & PG_BUSY)) { + printf("vm_pgmoveco: pindex(%lu), busy(%d), PG_BUSY(%d), hold(%d) paddr(0x%lx)\n", + (u_long)kern_pg->pindex, kern_pg->busy, (kern_pg->flags & PG_BUSY) ? 1 : 0, + kern_pg->hold_count,kern_pg->phys_addr); + if ((kern_pg->queue - kern_pg->pc) == PQ_FREE) + panic("vm_pgmoveco: renaming free page"); + else + Debugger("vm_pgmoveco: renaming busy page"); + } + kpindex = kern_pg->pindex; + vm_page_busy(kern_pg); + vm_page_rename(kern_pg, uobject, upindex); + vm_page_flag_clear(kern_pg, PG_BUSY); + kern_pg->valid = VM_PAGE_BITS_ALL; + + vm_map_lookup_done(map, entry); + return KERN_SUCCESS; + } + #endif /* ZERO_COPY_SOCKETS || ZCOPY */ + int uiomove(cp, n, uio) register caddr_t cp; *************** *** 154,160 **** --- 235,269 ---- case UIO_USERISPACE: if (ticks - switchticks >= hogticks) uio_yield(); + #if (defined(ZERO_COPY_SOCKETS) || defined(ZCOPY)) && defined(ENABLE_VFS_IOOPT) + if (uio->uio_rw == UIO_READ) { + if (vfs_ioopt && obj && ((cnt & PAGE_MASK) == 0) && + ((((intptr_t) iov->iov_base) & PAGE_MASK) == 0) && + ((uio->uio_offset & PAGE_MASK) == 0) && + ((((intptr_t) cp) & PAGE_MASK) == 0)) { + switch(obj->type){ + case OBJT_VNODE: /* VMIO: use vm_uiomove */ + error = vm_uiomove(&curproc->p_vmspace->vm_map, obj, + uio->uio_offset, cnt, + (vm_offset_t) iov->iov_base, NULL); + break; + case OBJT_DEFAULT: /* SOCKET: use page-trading */ + error = vm_pgmoveco(&curproc->p_vmspace->vm_map, obj, + (vm_offset_t)cp, + (vm_offset_t)iov->iov_base); + break; + default: + panic("vm uiomove called with unhandled object type"); + } + } else { + error = copyout(cp, iov->iov_base, cnt); + } + } else { + error = copyin(iov->iov_base, cp, cnt); + } + #else /*ZERO_COPY_SOCKETS || ZCOPY && ENABLE_VFS_IOOPT */ + if (uio->uio_rw == UIO_READ) { #ifdef ENABLE_VFS_IOOPT if (vfs_ioopt && ((cnt & PAGE_MASK) == 0) && ((((intptr_t) iov->iov_base) & PAGE_MASK) == 0) && *************** *** 171,176 **** --- 280,286 ---- } else { error = copyin(iov->iov_base, cp, cnt); } + #endif /*ZERO_COPY_SOCKETS || ZCOPY && ENABLE_VFS_IOOPT*/ if (error) return (error); break; *************** *** 428,430 **** --- 538,811 ---- mi_switch(); splx(s); } + + + #ifdef ZERO_COPY_SOCKETS + + /* + * XXX I really want to be in separate file + * + */ + + struct netsend_cow_stats{ + int attempted; + int fail_not_mapped; + int fail_wired; + int fail_not_anon; + int fail_pmap_cow; + int fail_pg_error; + int fail_kva; + int free_post_exit; + int success; + int iodone; + int freed; + }; + + struct netsend_cow_stats nscow_stats = {0,0,0,0,0,0,0,0,0,0,0}; + + #include + extern struct sf_buf *sf_bufs; + extern vm_offset_t sf_base; + #define dtosf(x) (&sf_bufs[((uintptr_t)(x) - (uintptr_t)sf_base) >> PAGE_SHIFT]) + void sf_buf_ref(caddr_t addr, u_int size); + void sf_buf_free(caddr_t addr, u_int size); + struct sf_buf * sf_buf_alloc(void); + + static void + tpz_netsend_iodone(caddr_t addr, u_int len) + { + int s; + struct sf_buf *sf; + + vm_offset_t paddr; + vm_page_t pp; + + sf = dtosf(addr); + if (sf->refcnt == 0) + panic("sf_buf_free: freeing free sf_buf"); + if(sf->refcnt > 1) + sf->refcnt--; + else { + paddr = vtophys((vm_offset_t)addr); + pp = PHYS_TO_VM_PAGE(paddr); + s = splvm(); + /* remove COW mapping */ + vm_page_cowclear(pp); + vm_object_deallocate(pp->object); + splx(s); + /* note that sf_buf_free() unwires the page for us*/ + sf_buf_free(addr, len); + } + nscow_stats.iodone++; + } + + int + tpz_netsend_cow(struct mbuf *m0, struct uio *uio); + + int + tpz_netsend_cow(struct mbuf *m0, struct uio *uio) + { + struct sf_buf *sf; + vm_page_t pp; + vm_offset_t pa; + struct iovec *iov; + struct vmspace *vmspace = curproc->p_vmspace; + struct vm_map *map = &vmspace->vm_map; + vm_offset_t uva = (vm_offset_t) uio->uio_iov->iov_base; + int s = splvm(); + + /* + * verify page is mapped & not already wired for i/o + */ + nscow_stats.attempted++; + pa=pmap_extract(map->pmap, uva); + if(!pa) { + nscow_stats.fail_not_mapped++; + splx(s); + return(0); + } + pp = PHYS_TO_VM_PAGE(pa); + + sf = sf_buf_alloc(); + sf->m = pp; + pmap_qenter(sf->kva, &pp, 1); + + /* + * set up COW + */ + vm_page_cowsetup(pp); + + /* + * wire the page for I/O + */ + vm_page_wire(pp); + + /* + * prevent the process from exiting on us. + */ + + vm_object_reference(pp->object); + + /* + * attach to mbuf + */ + + m0->m_data = m0->m_ext.ext_buf = (caddr_t)sf->kva; + m0->m_len = PAGE_SIZE; + m0->m_ext.ext_size = PAGE_SIZE; + m0->m_ext.ext_free = tpz_netsend_iodone; + m0->m_ext.ext_ref = sf_buf_ref; + m0->m_flags |= (M_EXT); + nscow_stats.success++; + + iov = uio->uio_iov; + iov->iov_base += PAGE_SIZE; + iov->iov_len -= PAGE_SIZE; + uio->uio_resid -= PAGE_SIZE; + uio->uio_offset += PAGE_SIZE; + + + splx(s); + return(1); + } + + #endif /* ZERO_COPY_SOCKETS */ + + #ifdef OLDCODE + #ifdef ZERO_COPY_SOCKETS + + /* + * XXX I really want to be in separate file + * + */ + + struct netsend_cow_stats{ + int attempted; + int fail_not_mapped; + int fail_wired; + int fail_not_anon; + int fail_pmap_cow; + int fail_pg_error; + int fail_kva; + int free_post_exit; + int success; + int iodone; + int freed; + }; + + struct netsend_cow_stats nscow_stats = {0,0,0,0,0,0,0,0,0,0,0}; + + #include + extern struct sf_buf *sf_bufs; + extern vm_offset_t sf_base; + #define dtosf(x) (&sf_bufs[((uintptr_t)(x) - (uintptr_t)sf_base) >> PAGE_SHIFT]) + void sf_buf_ref(caddr_t addr, u_int size); + void sf_buf_free(caddr_t addr, u_int size); + struct sf_buf * sf_buf_alloc(void); + + static void + tpz_netsend_iodone(caddr_t addr, u_int len) + { + int s; + struct sf_buf *sf; + + vm_offset_t paddr; + vm_page_t pp; + + sf = dtosf(addr); + if (sf->refcnt == 0) + panic("sf_buf_free: freeing free sf_buf"); + if(sf->refcnt > 1) + sf->refcnt--; + else { + paddr = vtophys((vm_offset_t)addr); + pp = PHYS_TO_VM_PAGE(paddr); + s = splvm(); + /* remove COW mapping */ + vm_page_protect(pp, VM_PROT_READ|VM_PROT_WRITE); + splx(s); + sf_buf_free(addr, len); + } + nscow_stats.iodone++; + } + + int + tpz_netsend_cow(struct mbuf *m0, struct uio *uio); + + int + tpz_netsend_cow(struct mbuf *m0, struct uio *uio) + { + struct sf_buf *sf; + vm_page_t pp; + vm_offset_t pa; + struct iovec *iov; + struct vmspace *vmspace = curproc->p_vmspace; + struct vm_map *map = &vmspace->vm_map; + vm_offset_t uva = (vm_offset_t) uio->uio_iov->iov_base; + /* + * verify page is mapped & not already wired for i/o + */ + nscow_stats.attempted++; + pa=pmap_extract(map->pmap, uva); + if(!pa) { + nscow_stats.fail_not_mapped++; + return(0); + } + pp = PHYS_TO_VM_PAGE(pa); + + /* + * if the page is already wired, chances are good that we're sending + * it already. Something like a netperf UDP stream causes this because + * its sending the same data over & over again w/o writing it & taking a + * COW fault + */ + + #ifdef TPZIP_DEBUG + if(pp->wire_count){ + nscow_stats.fail_wired++; + return 0; + } + #endif + sf = sf_buf_alloc(); + sf->m = pp; + pmap_qenter(sf->kva, &pp, 1); + + /* + * set up COW + */ + vm_page_protect(pp, VM_PROT_READ); + + /* + * wire the page for I/O + */ + vm_page_wire(pp); + + /* + * prevent the process from exiting on us. + */ + + /* curproc->p_refcnt++;*/ + /* + * attach to mbuf + */ + + m0->m_data = m0->m_ext.ext_buf = (caddr_t)sf->kva; + m0->m_len = PAGE_SIZE; + m0->m_ext.ext_size = PAGE_SIZE; + m0->m_ext.ext_free = tpz_netsend_iodone; + /* m0->m_ext.ext_arg = (caddr_t)proc;*/ + m0->m_ext.ext_ref = sf_buf_ref; + m0->m_flags |= (M_EXT); + nscow_stats.success++; + + iov = uio->uio_iov; + iov->iov_base += PAGE_SIZE; + iov->iov_len -= PAGE_SIZE; + uio->uio_resid -= PAGE_SIZE; + uio->uio_offset += PAGE_SIZE; + + return(1); + } + + #endif /* ZERO_COPY_SOCKETS */ + #endif /* OLDCODE */ *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/kern/uipc_jumbo.c Sat Jul 8 21:56:25 2000 *************** *** 0 **** --- 1,239 ---- + /*- + * Copyright (c) 1997, Duke University + * All rights reserved. + * + * Author: + * Andrew Gallatin + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgements: + * This product includes software developed by Duke University + * 4. The name of Duke University may not be used to endorse or promote + * products derived from this software without specific prior written + * permission. + * + * THIS SOFTWARE IS PROVIDED BY DUKE UNIVERSITY ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DUKE UNIVERSITY BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITSOR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER + * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD$ + */ + /* + * This is a set of routines for allocating large-sized mbuf payload + * areas, and is primarily intended for use in receive side mbuf + * allocation. + */ + + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + + /* + * XXX this may be too high or too low. + */ + #define JUMBO_MAX_PAGES 3072 + + struct jumbo_kmap { + vm_offset_t kva; + SLIST_ENTRY(jumbo_kmap) entries; /* Singly-linked List. */ + }; + + static SLIST_HEAD(jumbo_kmap_head, jumbo_kmap) jumbo_kmap_free, + jumbo_kmap_inuse; + + + static struct vm_object *jumbo_vm_object; + static unsigned long jumbo_vmuiomove_pgs_freed = 0; + static int jumbo_vm_wakeup_wanted = 0; + static vm_offset_t jumbo_basekva; + + __inline caddr_t + jumbo_phys_to_kva(vm_offset_t pa) + { + vm_page_t pg; + + pg = PHYS_TO_VM_PAGE(pa); + pg->flags &= ~PG_BUSY; + return (caddr_t)(ptoa(pg->pindex) + jumbo_basekva); + } + + + int + jumbo_vm_init(void) + { + int i; + struct jumbo_kmap *entry; + + if (jumbo_vm_object) + return(1); + + /* allocate our object */ + jumbo_vm_object = vm_object_allocate(OBJT_DEFAULT, JUMBO_MAX_PAGES); + + SLIST_INIT(&jumbo_kmap_free); + SLIST_INIT(&jumbo_kmap_inuse); + + /* grab some kernel virtual address space */ + jumbo_basekva = kmem_alloc_pageable(kernel_map, + PAGE_SIZE * JUMBO_MAX_PAGES); + if (jumbo_basekva == 0) { + vm_object_deallocate(jumbo_vm_object); + jumbo_vm_object = NULL; + return 0; + } + for (i = 0; i < JUMBO_MAX_PAGES; i++) { + entry = malloc(sizeof(struct jumbo_kmap), M_TEMP, M_WAITOK); + if (!entry && !i) + panic("ti unable to allocated kvas"); + else if (!entry) { + printf("warning: ti allocated only %d kva\n",i); + return 1; + } + entry->kva = jumbo_basekva + (vm_offset_t)i * PAGE_SIZE; + SLIST_INSERT_HEAD(&jumbo_kmap_free, entry, entries); + } + return 1; + } + + void + jumbo_freem(caddr_t addr, u_int len) + { + register int s; + vm_page_t frame; + + frame = PHYS_TO_VM_PAGE(pmap_kextract((vm_offset_t)addr)); + + s = splimp(); + if ((frame->object == jumbo_vm_object) && (frame->hold_count)) { + frame->hold_count--; + } else { + jumbo_pg_free((vm_offset_t)addr); + } + splx(s); + } + + void + jumbo_ref(caddr_t addr, u_int len) + { + vm_page_t frame; + + frame = PHYS_TO_VM_PAGE(pmap_kextract((vm_offset_t)addr)); + frame->hold_count++; + } + + + void + jumbo_pg_steal(vm_page_t pg) + { + vm_offset_t addr; + struct jumbo_kmap *entry; + int s; + + addr = ptoa(pg->pindex) + jumbo_basekva; + + if (pg->object != jumbo_vm_object) + panic("stealing a non jumbo_vm_object page"); + vm_page_remove(pg); + s = splvm(); + pmap_qremove(addr,1); + entry = jumbo_kmap_inuse.slh_first; + entry->kva = addr; + SLIST_REMOVE_HEAD(&jumbo_kmap_inuse, entries); + SLIST_INSERT_HEAD(&jumbo_kmap_free, entry, entries); + splx(s); + if (jumbo_vm_wakeup_wanted) + wakeup(jumbo_vm_object); + } + + + vm_page_t + jumbo_pg_alloc(void) + { + vm_page_t pg; + vm_pindex_t pindex; + struct jumbo_kmap *entry; + int s; + + pg = NULL; + s = splvm(); + + entry = jumbo_kmap_free.slh_first; + if (entry != NULL){ + pindex = atop(entry->kva - jumbo_basekva); + pg = vm_page_alloc(jumbo_vm_object, pindex, VM_ALLOC_INTERRUPT); + if (pg != NULL) { + SLIST_REMOVE_HEAD(&jumbo_kmap_free, entries); + SLIST_INSERT_HEAD(&jumbo_kmap_inuse, entry, entries); + pmap_qenter(entry->kva, &pg, 1); + } + } + splx(s); + return(pg); + } + + void + jumbo_pg_free(vm_offset_t addr) + { + int s; + struct jumbo_kmap *entry; + vm_offset_t paddr; + vm_page_t pg; + + paddr = pmap_kextract((vm_offset_t)addr); + pg = PHYS_TO_VM_PAGE(paddr); + + if (pg->object != jumbo_vm_object) { + jumbo_vmuiomove_pgs_freed++; + /* if(vm_page_lookup(jumbo_vm_object, atop(addr - jumbo_basekva))) + panic("vm_page_rename didn't"); + printf("freeing uiomoved pg:\t pindex = %d, padd = 0x%lx\n", + atop(addr - jumbo_basekva), paddr); + */ + } else { + vm_page_busy(pg); /* vm_page_free wants pages to be busy*/ + vm_page_free(pg); + } + s = splvm(); + pmap_qremove(addr,1); + entry = jumbo_kmap_inuse.slh_first; + entry->kva = addr; + SLIST_REMOVE_HEAD(&jumbo_kmap_inuse, entries); + SLIST_INSERT_HEAD(&jumbo_kmap_free, entry, entries); + splx(s); + if (jumbo_vm_wakeup_wanted) + wakeup(jumbo_vm_object); + } *** src/sys/kern/uipc_mbuf.c.orig --- src/sys/kern/uipc_mbuf.c *************** *** 48,53 **** --- 48,57 ---- #include #include + #if ZCOPY + #include + #endif + #ifdef INVARIANTS #include #endif *************** *** 585,590 **** --- 589,597 ---- register int off = off0; struct mbuf *top; int copyhdr = 0; + #if ZCOPY + int have_zcopy = 0; + #endif KASSERT(off >= 0, ("m_copym, negative off %d", off)); KASSERT(len >= 0, ("m_copym, negative len %d", len)); *************** *** 618,623 **** --- 625,641 ---- copyhdr = 0; } n->m_len = min(len, m->m_len - off); + #if ZCOPY + if (m->m_flags & M_ZCOPY) { + n->m_data = m->m_data + off; + (*(m->m_ext.ext_ref))(m->m_ext.ext_buf, + m->m_ext.ext_size); + n->m_ext = m->m_ext; + n->m_flags |= M_EXT | M_ZCOPY; + have_zcopy = 1; + } + else + #endif if (m->m_flags & M_EXT) { n->m_data = m->m_data + off; if(!m->m_ext.ext_ref) *************** *** 638,643 **** --- 656,665 ---- } if (top == 0) MCFail++; + #if ZCOPY + else if (have_zcopy) + top->m_flags |= M_ZCOMMIT; + #endif return (top); nospace: m_freem(top); *** src/sys/kern/uipc_socket.c.orig --- src/sys/kern/uipc_socket.c *************** *** 34,39 **** --- 34,42 ---- * $FreeBSD: src/sys/kern/uipc_socket.c,v 1.78 2000/06/22 22:27:15 alfred Exp $ */ + #include "opt_zero.h" + #include "opt_zcopy.h" + #include #include #include *************** *** 76,81 **** --- 79,96 ---- { 1, filt_sowattach, filt_sowdetach, filt_sowrite }, }; + #if ZCOPY + #include + #include + #include + #include + #include + #include + #include + #include + #endif /* ZCOPY */ + + struct vm_zone *socket_zone; so_gen_t so_gencnt; /* generation count for sockets */ *************** *** 448,453 **** --- 463,487 ---- * must check for short counts if EINTR/ERESTART are returned. * Data and control buffers are freed on return. */ + + #ifdef ZERO_COPY_SOCKETS + struct so_zerocopy_stats{ + int size_ok; + int align_ok; + int found_ifp; + }; + struct so_zerocopy_stats so_zerocp_stats = {0,0,0}; + extern struct ifnet * tpz_ifp; + int so_zerocp_enable = 1; + int tpz_netsend_cow(struct mbuf *, struct uio *); + #include + #include + #include + #include + #include + #include + #endif /*ZERO_COPY_SOCKETS*/ + int sosend(so, addr, uio, top, control, flags, p) register struct socket *so; *************** *** 463,473 **** register long space, len, resid; int clen = 0, error, s, dontroute, mlen; int atomic = sosendallatonce(so) || top; ! if (uio) resid = uio->uio_resid; ! else resid = top->m_pkthdr.len; /* * In theory resid should be unsigned. * However, space must be signed, as it might be less than 0 --- 497,520 ---- register long space, len, resid; int clen = 0, error, s, dontroute, mlen; int atomic = sosendallatonce(so) || top; + #ifdef ZERO_COPY_SOCKETS + int cow_send; + #endif + #ifdef ZCOPY + int zcopy; + #endif ! if (uio) { resid = uio->uio_resid; ! #if ZCOPY ! zcopy = DO_ZCOPY(uio, so); ! #endif ! } else { resid = top->m_pkthdr.len; + #if ZCOPY + zcopy = 0; + #endif + } /* * In theory resid should be unsigned. * However, space must be signed, as it might be less than 0 *************** *** 543,548 **** --- 590,598 ---- mp = ⊤ space -= clen; do { + #ifdef ZERO_COPY_SOCKETS + cow_send = 0; + #endif if (uio == NULL) { /* * Data is prepackaged in "top". *************** *** 568,580 **** --- 618,673 ---- } mlen = MLEN; } + #if ZCOPY + if (zcopy) { + vm_size_t clen; + + len = min(resid, space); + if (len < PAGE_SIZE) + goto reject; + clen = len; + error = zcopy_create(uio, &clen, m, so); + len = clen; + switch (error) { + case EOPNOTSUPP: + case ENOMEM: + goto reject; + case EFAULT: + goto release; + case 0: + goto cont; + } + mlen = MLEN; + } + reject: + #endif + if (resid >= MINCLSIZE) { + #ifdef ZERO_COPY_SOCKETS + if(so_zerocp_enable && + resid>=PAGE_SIZE && + space>=PAGE_SIZE && + uio->uio_iov->iov_len>=PAGE_SIZE){ + so_zerocp_stats.size_ok++; + if(!((vm_offset_t)uio->uio_iov->iov_base & PAGE_MASK)){ + so_zerocp_stats.align_ok++; + cow_send = tpz_netsend_cow(m, uio); + } + } + if(!cow_send){ + #endif MCLGET(m, M_WAIT); if ((m->m_flags & M_EXT) == 0) goto nopages; mlen = MCLBYTES; len = min(min(mlen, resid), space); } else { + #ifdef ZERO_COPY_SOCKETS + len = PAGE_SIZE; + } + + } else { + #endif nopages: len = min(min(mlen, resid), space); /* *************** *** 584,593 **** --- 677,700 ---- if (atomic && top == 0 && len < mlen) MH_ALIGN(m, len); } + #ifndef ZCOPY space -= len; + #endif /* !ZCOPY */ + #ifdef ZERO_COPY_SOCKETS + if(cow_send) + error = 0; + else + #endif /* ZERO_COPY_SOCKETS */ error = uiomove(mtod(m, caddr_t), (int)len, uio); + #ifndef ZCOPY resid = uio->uio_resid; + #endif /* !ZCOPY */ m->m_len = len; + #if ZCOPY + cont: + space -= len; + resid = uio->uio_resid; + #endif *mp = m; top->m_pkthdr.len += len; if (error) *************** *** 663,668 **** --- 770,776 ---- * an mbuf **mp0 for use in returning the chain. The uio is then used * only for the count in uio_resid. */ + extern int vfs_ioopt; int soreceive(so, psa, uio, mp0, controlp, flagsp) register struct socket *so; *************** *** 696,701 **** --- 804,819 ---- if (error) goto bad; do { + #if (defined(ZERO_COPY_SOCKETS) || defined(ZCOPY)) && defined(ENABLE_VFS_IOOPT) + if(vfs_ioopt){ + vm_page_t pg; + pg = PHYS_TO_VM_PAGE(vtophys(mtod(m, caddr_t))); + if(uio->uio_offset == -1) + uio->uio_offset = IDX_TO_OFF(pg->pindex); + error = uiomoveco(mtod(m, caddr_t), + min(uio->uio_resid, m->m_len), uio,pg->object); + } else + #endif /*ZERO_COPY_SOCKETS || ZCOPY && ENABLE_VFS_IOOPT*/ error = uiomove(mtod(m, caddr_t), (int) min(uio->uio_resid, m->m_len), uio); m = m_free(m); *************** *** 849,854 **** --- 967,981 ---- */ if (mp == 0) { splx(s); + #if (defined(ZERO_COPY_SOCKETS) || defined(ZCOPY)) && defined(ENABLE_VFS_IOOPT) + if(vfs_ioopt){ + vm_page_t pg; + pg = PHYS_TO_VM_PAGE(vtophys(mtod(m, caddr_t) + moff)); + if(uio->uio_offset == -1) + uio->uio_offset = IDX_TO_OFF(pg->pindex); + error = uiomoveco(mtod(m, caddr_t) + moff, (int)len, uio,pg->object); + } else + #endif /*ZERO_COPY_SOCKETS || ZCOPY && ENABLE_VFS_IOOPT*/ error = uiomove(mtod(m, caddr_t) + moff, (int)len, uio); s = splnet(); if (error) *** src/sys/kern/uipc_syscalls.c.orig --- src/sys/kern/uipc_syscalls.c *************** *** 71,79 **** static void sf_buf_init(void *arg); SYSINIT(sock_sf, SI_SUB_MBUF, SI_ORDER_ANY, sf_buf_init, NULL) ! static struct sf_buf *sf_buf_alloc(void); ! static void sf_buf_ref(caddr_t addr, u_int size); ! static void sf_buf_free(caddr_t addr, u_int size); static int sendit __P((struct proc *p, int s, struct msghdr *mp, int flags)); static int recvit __P((struct proc *p, int s, struct msghdr *mp, --- 71,79 ---- static void sf_buf_init(void *arg); SYSINIT(sock_sf, SI_SUB_MBUF, SI_ORDER_ANY, sf_buf_init, NULL) ! struct sf_buf *sf_buf_alloc(void); ! void sf_buf_ref(caddr_t addr, u_int size); ! void sf_buf_free(caddr_t addr, u_int size); static int sendit __P((struct proc *p, int s, struct msghdr *mp, int flags)); static int recvit __P((struct proc *p, int s, struct msghdr *mp, *************** *** 86,93 **** int compat)); static SLIST_HEAD(, sf_buf) sf_freelist; ! static vm_offset_t sf_base; ! static struct sf_buf *sf_bufs; static int sf_buf_alloc_want; /* --- 86,93 ---- int compat)); static SLIST_HEAD(, sf_buf) sf_freelist; ! vm_offset_t sf_base; ! struct sf_buf *sf_bufs; static int sf_buf_alloc_want; /* *************** *** 1341,1347 **** /* * Get an sf_buf from the freelist. Will block if none are available. */ ! static struct sf_buf * sf_buf_alloc() { struct sf_buf *sf; --- 1341,1347 ---- /* * Get an sf_buf from the freelist. Will block if none are available. */ ! struct sf_buf * sf_buf_alloc() { struct sf_buf *sf; *************** *** 1359,1365 **** } #define dtosf(x) (&sf_bufs[((uintptr_t)(x) - (uintptr_t)sf_base) >> PAGE_SHIFT]) ! static void sf_buf_ref(caddr_t addr, u_int size) { struct sf_buf *sf; --- 1359,1365 ---- } #define dtosf(x) (&sf_bufs[((uintptr_t)(x) - (uintptr_t)sf_base) >> PAGE_SHIFT]) ! void sf_buf_ref(caddr_t addr, u_int size) { struct sf_buf *sf; *************** *** 1376,1382 **** * * Must be called at splimp. */ ! static void sf_buf_free(caddr_t addr, u_int size) { struct sf_buf *sf; --- 1376,1382 ---- * * Must be called at splimp. */ ! void sf_buf_free(caddr_t addr, u_int size) { struct sf_buf *sf; *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/kern/uipc_zcopy.c Sat Jul 8 21:56:25 2000 *************** *** 0 **** --- 1,928 ---- + /* + * Copyright (c) 1999 + * Bob Picco . All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * + */ + #include "opt_compat.h" + #include "opt_ktrace.h" + + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #ifdef KTRACE + #include + #endif + #include + #include + #if 0 + /* XXX KDM this doesn't exist anymore */ + #include + #endif + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + + typedef struct zcopy_stats { + unsigned int zs_zlow; /* out of pzcopy_t */ + unsigned int zs_alloc; /* allocations */ + unsigned int zs_zcopy_failed; /* zcopy aborted */ + unsigned int zs_fail_not_mapped; + unsigned int zs_fail_wrong_params; + unsigned int zs_fail_hit_header; + unsigned int zs_ffree; /* fault free */ + unsigned int zs_faults; /* faults */ + unsigned int zs_copies; /* copies */ + unsigned int zs_creates; /* creates */ + } zcopy_stats_t, *pzcopy_stats_t; + + typedef struct zcopy_ostate { + struct zcopy_ostate *z_wnext; /* release work queue */ + union { + vm_object_t _z_object; /* object array */ + vm_page_t _z_page; /* held page */ + } _zu0; + vm_ooffset_t z_offset; /* offset into object */ + unsigned int z_hold; /* z page hold */ + } zcopy_ostate_t, *pzcopy_ostate_t; + + #define z_object _zu0._z_object + #define z_page _zu0._z_page + + typedef struct zcopy { + struct zcopy *z_next; /* work queue or free list */ + unsigned char z_refcount; /* reference count */ + unsigned short z_pagecount; /* pages involved */ + vm_offset_t z_kaddr; /* address */ + struct vmspace *z_space; /* addresss space */ + vm_offset_t z_addr; /* address in space */ + vm_size_t z_size; /* address space covered */ + struct inpcb *z_pcb; /* pcb */ + zcopy_ostate_t z_ostate[1]; /* per page object state */ + } zcopy_t, *pzcopy_t; + + zcopy_stats_t zcopy_stats; + + /* anything not in cache is freed on last reference */ + + unsigned int auto_zcopy = 1; /* zcopy by default */ + + SYSCTL_NODE(_net, OID_AUTO, zcopy, CTLFLAG_RW, 0, "Zero Copy"); + SYSCTL_INT(_net_zcopy, OID_AUTO, auto_zcopy, CTLFLAG_RW, + &auto_zcopy, 0, ""); + + unsigned int zcopy_enabled; /* proc running */ + + /* z_page has its low bit set except for when it is the zfod page */ + + #define ZCOPY_MBIT (0x1) + #define ZC_ISMBIT(M) (((vm_offset_t) (M)) & ZCOPY_MBIT) + #define ZC_STMBIT(M) ((vm_page_t)(((vm_offset_t) (M)) | ZCOPY_MBIT)) + #define ZC_CLMBIT(M) ((vm_page_t)(((vm_offset_t) (M)) & ~ZCOPY_MBIT)) + + vm_map_t zcopy_map; + vm_offset_t zcopy_zfod; + vm_object_t zcopy_zfod_object; + vm_page_t zcopy_zfod_page; + vm_offset_t zcopy_zfod_phys; + + #define ZCOPY_CACHE_SIZE 128 + + unsigned int zcopy_cache_size = ZCOPY_CACHE_SIZE; + vm_offset_t zcopy_start_va; /* starting VA of cache */ + + #define ZCOPY_SEGMENT_SIZE (64*1024) + + vm_size_t zcopy_segment_size = ZCOPY_SEGMENT_SIZE; + static unsigned int zshift; + + static zcopy_data_t *zcopy_queue, *zcopy_tqueue; + static pzcopy_t zcopy_ffree_queue; + static pzcopy_ostate_t zcopy_hold_queue; + static pzcopy_t zcopy_avail; + static vm_offset_t zcopy_head; + static vm_size_t zsize; + + #define KOTOKZ(KO) \ + (pzcopy_t) (zcopy_head + ((((vm_offset_t) (KO) - zcopy_head) / \ + zsize) * zsize)) + + #define KVATOZ(KVA) \ + (pzcopy_t) (zcopy_head + \ + ((((vm_offset_t) (KVA)) - zcopy_start_va) >> zshift) * zsize) + + static void zcopy_process __P((void)); + static struct proc *zcopyproc; + static struct kproc_desc zcopy_faultp = { + "zcopy-process", + zcopy_process, + &zcopyproc + }; + + SYSINIT(zcopyproc, SI_SUB_KTHTREAD_ZCOPY, SI_ORDER_THIRD, + kproc_start, &zcopy_faultp); + + + void zcopy_fault_ref(caddr_t addr, u_int size); + void zcopy_ref(caddr_t addr, u_int size); + void zcopy_fault_free(caddr_t addr, u_int size); + void zcopy_free(caddr_t addr, u_int size); + void zcopy_done(pzcopy_t pz); + void zcopy_unhold(pzcopy_ostate_t pzo); + static int zcopy_commit(struct mbuf *m); + static int zcopy_faultit(struct mbuf *); + + + MALLOC_DECLARE(M_ZERO_COPY); + MALLOC_DEFINE(M_ZERO_COPY, "ZCOPY storage", "zcopy stuctures"); + + void + zcopy_enqueue( + struct socket *so, + void (*proc)(caddr_t arg, struct mbuf *), + caddr_t arg, + struct mbuf *m + ) + { + struct inpcb *pcb; + pzcopy_data_t pzd; + + pcb = sotoinpcb(so); + + pcb->inp_arg = arg; + pcb->inp_routine = proc; + pzd = mtod(m, pzcopy_data_t); + pzd->zd_pcb = pcb; + + pzd->zd_next = 0; + if (zcopy_queue) { + zcopy_tqueue->zd_next = pzd; + zcopy_tqueue = pzd; + } + else { + zcopy_queue = zcopy_tqueue = pzd; + wakeup(&zcopy_queue); + } + + return; + } + + + void + zcopy_process(void) + { + unsigned int c, i; + pzcopy_t pz; + pzcopy_ostate_t pzo; + struct inpcb *pcb; + pzcopy_data_t pzd; + struct mbuf *m; + vm_size_t min, max, addr; + + if (getenv_int("net.inet.zcopy.segmentsize", &i)) { + i = (i + PAGE_MASK) & ~PAGE_MASK; + if (i) + zcopy_segment_size = i; + } + + if (getenv_int("net.inet.zcopy.cachesize", &i)) { + if (i) + zcopy_cache_size = i; + } + + zcopy_zfod = kmem_alloc(kernel_map, PAGE_SIZE); + if (zcopy_zfod == (vm_offset_t) 0) { + printf("zcopy_process: failed to allocate zfod page\n"); + tsleep(&zcopy_queue, PZERO, "zcopy_process", 0); + } + + pmap_zero_page(zcopy_zfod_phys = pmap_extract(kernel_pmap, zcopy_zfod)); + zcopy_zfod_object = (vm_object_t) zcopy_zfod; + zcopy_zfod_page = PHYS_TO_VM_PAGE(zcopy_zfod_phys); + + for (i = 1; (1 << i) != zcopy_segment_size; i++); + zshift = i; + + zcopy_map = kmem_suballoc(kernel_map, &min, &max, + zcopy_cache_size << zshift); + + if (zcopy_map == 0) { + printf("zcopy_process: failed to allocate cache.\n"); + tsleep(&zcopy_queue, PZERO, "zcopy_process", 0); + } + + addr = min; + vm_map_find(zcopy_map, 0, 0, &addr, zcopy_segment_size, TRUE, + VM_PROT_READ, VM_PROT_READ, MAP_ENTRY_COW|MAP_ENTRY_NEEDS_COPY); + zcopy_start_va = addr; + + zsize = sizeof (zcopy_t) + ((atop(zcopy_segment_size) - 1) * + sizeof (zcopy_ostate_t)); + zcopy_avail = (pzcopy_t) malloc(zcopy_cache_size * zsize, M_ZERO_COPY, + M_NOWAIT | M_USE_RESERVE); + zcopy_head = (vm_offset_t) zcopy_avail; + + if (zcopy_avail == 0) { + printf("zcopy_process: failed to allocate zcopy structs\n"); + tsleep(&zcopy_queue, PZERO, "zcopy_process", 0); + } + + for (pz = zcopy_avail, c = 0; c < zcopy_cache_size; c++) { + bzero(pz, zsize); + pz->z_kaddr = zcopy_start_va + (c << zshift); + if (c) + ((pzcopy_t) (((caddr_t) pz) - zsize))->z_next = pz; + pz = (pzcopy_t) (((caddr_t) pz) + zsize); + } + + zcopy_enabled = 1; + + (void) splimp(); + + while (1) { + while ((pzo = zcopy_hold_queue)) { + zcopy_hold_queue = pzo->z_wnext; + zcopy_unhold(pzo); + } + + while ((pz = zcopy_ffree_queue)) { + zcopy_ffree_queue = pz->z_next; + zcopy_done(pz); + } + + splnet(); + while ((pzd = zcopy_queue)) { + pcb = pzd->zd_pcb; + if (pzd == zcopy_tqueue) + zcopy_tqueue = 0; + zcopy_queue = pzd->zd_next; + + m = (struct mbuf *) (((caddr_t) pzd) - + (int) &((struct mbuf *) 0x0)->m_dat); + pcb->inp_routine(pcb->inp_arg, m); + } + spl0(); + splimp(); + if (!zcopy_hold_queue && !zcopy_ffree_queue && !zcopy_queue) + tsleep(&zcopy_queue, PZERO, "zcopy_process", 0); + } + } + + #define zcopy_free_list(PZ) do { \ + s = splimp(); \ + zcopy_stats.zs_zcopy_failed++; \ + (PZ)->z_next = zcopy_avail; \ + zcopy_avail = (PZ); \ + (void) splx(s); \ + } while (0) + + int + zcopy_create( + struct uio *uio, + vm_size_t *len, + struct mbuf *m, + struct socket *so + ) + { + caddr_t va; + vm_offset_t start, end; + vm_map_t map; + vm_map_entry_t entry, next, last; + struct iovec *iov; + vm_size_t span, clen; + pzcopy_t pz; + int s; + vm_object_t obj, lobj; + pzcopy_ostate_t zobj; + struct inpcb *pcb; + + if (!zcopy_avail) { + zcopy_stats.zs_zlow++; + return ENOMEM; + } + else + zcopy_stats.zs_alloc++; + + s = splimp(); + pz = zcopy_avail; + zcopy_avail = pz->z_next; + (void) splx(s); + + clen = *len; + iov = uio->uio_iov; + va = iov->iov_base; + start = trunc_page((vm_offset_t) va); + end = round_page((vm_offset_t) (va + clen)); + span = end - start; + if (span > zcopy_segment_size) { + span = zcopy_segment_size; + end = start + zcopy_segment_size; + clen = end - (vm_offset_t) va; + *len = clen; + } + + map = &curproc->p_vmspace->vm_map; + vm_map_lock_read(map); + + if (!vm_map_lookup_entry(map, start, &entry)) { + vm_map_unlock(map); + zcopy_free_list(pz); + zcopy_stats.zs_fail_not_mapped++; + return EFAULT; + } + next = entry; + while (1) { + if ((next->eflags & (/*MAP_ENTRY_IS_A_MAP|XXX*/MAP_ENTRY_IS_SUB_MAP|MAP_ENTRY_NOFAULT) || + (next->protection & VM_PROT_READ) == 0) || + next->wired_count || + (next->inheritance != VM_INHERIT_COPY) || + (next->object.vm_object && + !(next->object.vm_object->type == OBJT_DEFAULT || + next->object.vm_object->type == OBJT_SWAP))) { + vm_map_unlock(map); + zcopy_free_list(pz); + zcopy_stats.zs_fail_wrong_params++; + return EOPNOTSUPP; + } + last = next; + if (end <= next->end) + break; + next = next->next; + if (next == &map->header) { + vm_map_unlock(map); + zcopy_free_list(pz); + zcopy_stats.zs_fail_hit_header++; + return EFAULT; + } + } + + /* allocate zfault and set up for COW */ + + pcb = sotoinpcb(so); + s = splimp(); + pcb->inp_zref++; + (void) splx(s); + + pz->z_refcount = 1; + pz->z_space = curproc->p_vmspace; + pz->z_addr = (vm_offset_t) va; + pz->z_pagecount = atop(span); + pz->z_size = clen; + pz->z_pcb = pcb; + + m->m_flags |= M_EXT | M_ZCOPY; + m->m_len = clen; + m->m_data = (caddr_t) (pz->z_kaddr + (((vm_offset_t) va) & PAGE_MASK)); + m->m_ext.ext_free = zcopy_free; + m->m_ext.ext_ref = zcopy_ref; + m->m_ext.ext_size = clen; + m->m_ext.ext_buf = (caddr_t) m->m_data; + + vm_map_lock_upgrade(map); + + zobj = &pz->z_ostate[0]; + + for (lobj = 0, next = entry; start < end; next = next->next){ + if ((obj = entry->object.vm_object)) { + if (lobj != obj) { + vm_object_reference(obj); + vm_object_clear_flag(obj, OBJ_ONEMAPPING); + } + + if (next == entry) + vm_map_e_clip_start(map, next, start); + if (next == last) + vm_map_e_clip_end(map, next, end); + + if ((next->eflags & MAP_ENTRY_NEEDS_COPY) == 0) + pmap_protect(map->pmap, next->start, next->end, + next->protection & ~VM_PROT_WRITE); + + next->eflags |= (MAP_ENTRY_COW | MAP_ENTRY_NEEDS_COPY); + } + else + obj = zcopy_zfod_object; + + lobj = obj; + + for (; start < next->end && start < end; + start += PAGE_SIZE, zobj++) { + zobj->z_object = obj; + if (obj != zcopy_zfod_object) + zobj->z_offset = next->offset + + (start - next->start); + } + } + + vm_map_unlock(map); + uio->uio_resid -= clen; + iov->iov_len -= clen; + iov->iov_base += clen; + + zcopy_stats.zs_creates++; + return 0; + } + + /* + * called after an m_copym operations to commit the zcopy mbufs + * a zcopy operation can result in the thread fault and waiting + * for memory when under low memory conditions. m_copym creates + * the mbuf chain and zcopy_copy faults the zcopy mbuf's data. + */ + + int + zcopy_copy( + struct mbuf *m + ) + { + int error; + + for (;m ; m = m->m_next) + if (m->m_flags & M_ZCOPY) { + if ((error = zcopy_commit(m))) + return error; + } + + return 0; + } + + /* + * Commit the data to the zcopy + */ + + static int + zcopy_commit( + struct mbuf *m + ) + { + pzcopy_t pz; + vm_offset_t start, end, gather, addr, pa; + vm_ooffset_t offset; + unsigned int c, t, g, g1; + vm_object_t obj; + vm_page_t mem; + pzcopy_ostate_t pzo; + int error, s; + vm_map_entry_t entry; + static int zcopy_copy_reentry = 0; + + m->m_flags |= M_EXT | M_ZCOPY; + m->m_ext.ext_size = m->m_len; + m->m_ext.ext_buf = m->m_data; + + pz = KVATOZ(m->m_data); + + if (curproc->p_vmspace == pz->z_space) + return zcopy_faultit(m); + + /* out of context */ + + zcopy_stats.zs_copies++; + + + start = trunc_page((vm_offset_t) m->m_ext.ext_buf); + end = round_page((vm_offset_t) (m->m_ext.ext_buf + m->m_ext.ext_size)); + t = atop(end - start); + addr = (vm_offset_t) m->m_ext.ext_buf; + + error = 0; + + /* no need to lock map. unless we use more than one thread later */ + entry = zcopy_map->header.next; + zcopy_copy_reentry++; + if (zcopy_copy_reentry > 1) + panic("zcopy_copy: reentry violated\n"); + + for (c = atop(addr - pz->z_kaddr), t = t + c, pzo = &pz->z_ostate[c]; + c < t;) { + if ((mem = pzo->z_page) == zcopy_zfod_page || ZC_ISMBIT(mem)) { + s = splimp(); + pzo->z_hold++; + (void) splx(s); + pzo++; + c++; + start += PAGE_SIZE; + continue; + } + + for (g = c + 1, obj = pzo->z_object; g < t; g++) + if ((mem = (pzo + g)->z_page) == zcopy_zfod_page || + ZC_ISMBIT(mem) || (pzo + g)->z_object != obj) + break; + + g = g - c; + offset = pzo->z_offset; + + gather = start; + entry->start = start; + entry->end = start + ptoa(g); + entry->eflags = MAP_ENTRY_COW | MAP_ENTRY_NEEDS_COPY; + entry->object.vm_object = obj; + entry->offset = offset; + entry->avail_ssize = 0; + + for (g1 = 0; g1 < g; + g1++, g1++, start += PAGE_SIZE, c++, pzo++) { + error = vm_fault(zcopy_map, start, VM_PROT_READ, 0); + if (error) + break; + + vm_fault_quick((caddr_t) start, VM_PROT_READ); + if (ZC_ISMBIT(pzo->z_page)) { + s = splimp(); + pzo->z_hold++; + (void) splx(s); + continue; + } + + pa = trunc_page(pmap_kextract(start)); + if (pa == 0) + panic("zcopy_copy: pa == 0"); + mem = PHYS_TO_VM_PAGE(pa); + vm_page_hold(mem); + pzo->z_page = ZC_STMBIT(mem); + pzo->z_hold = 1; + s = splimp(); + pz->z_refcount++; + (void) splx(s); + } + + if (error) + break; + + } + + zcopy_copy_reentry--; + + if (error) { + int dowakeup; + + printf("zcopy_commit: fault error = %d\n", error); + dowakeup = 0; + s = splimp(); + + for (g = 0, pzo = &pz->z_ostate[atop(addr - pz->z_kaddr)]; + g < c; g++, pzo++) { + if (pzo->z_hold == 1) { + pzo->z_hold++; + dowakeup++; + pzo->z_wnext = zcopy_hold_queue; + zcopy_hold_queue = pzo; + } + else + pzo->z_hold--; + } + + if (dowakeup) + wakeup(&zcopy_queue); + + (void) splx(s); + return error; + } + + m->m_ext.ext_ref = zcopy_fault_ref; + m->m_ext.ext_free = zcopy_fault_free; + + return 0; + } + + /* + * faults don't take another reference to the zcopy structure. + * another reference requires a zcopy_copy operation. + * references are taken for hold counts which transition to zero + * but not for the operation. it is assumed when the operation is + * completed that the held zcopy is to be free. + */ + + int + zcopy_fault( + struct mbuf *m + ) + { + int error; + + for (;m ; m = m->m_next) + if (m->m_flags & M_ZCOPY) { + if ((error = zcopy_faultit(m))) + return error; + } + + return 0; + } + + static int + zcopy_faultit(struct mbuf *m) + { + pzcopy_t pz; + vm_offset_t uva, start, end, pa; + unsigned int c; + int s; + vm_page_t mem; + + pz = KVATOZ(m->m_data); + + if (pz->z_space != curproc->p_vmspace) + panic("zcopy_fault: bad context fault conditions"); + + zcopy_stats.zs_faults++; + + start = trunc_page((vm_offset_t) m->m_ext.ext_buf); + uva = trunc_page(pz->z_addr) + (start - pz->z_kaddr); + end = round_page((vm_offset_t) (m->m_ext.ext_buf + m->m_ext.ext_size)); + m->m_ext.ext_free = zcopy_fault_free; + m->m_ext.ext_ref = zcopy_fault_ref; + + for (c = atop(start - pz->z_kaddr); start < end; + start += PAGE_SIZE, uva += PAGE_SIZE, c++) { + if ((mem = pz->z_ostate[c].z_page) == zcopy_zfod_page || + ZC_ISMBIT(mem)) { + s = splimp(); + pz->z_ostate[c].z_hold++; + (void) splx(s); + continue; + } + + if (pz->z_ostate[c].z_object == zcopy_zfod_object) { + pz->z_ostate[c].z_page = zcopy_zfod_page; + pz->z_ostate[c].z_hold = 1; + s = splimp(); + pz->z_refcount++; + (void) splx(s); + pmap_enter(kernel_pmap, start, zcopy_zfod_phys, + VM_PROT_READ, FALSE); + continue; + } + + vm_fault_quick((caddr_t) uva, VM_PROT_READ); + mem = pz->z_ostate[c].z_page; + if (ZC_ISMBIT(mem)) { + s = splimp(); + pz->z_ostate[c].z_hold++; + (void) splx(s); + continue; + } + pa = trunc_page(pmap_kextract(uva)); + mem = PHYS_TO_VM_PAGE(pa); + vm_page_hold(mem); + pz->z_ostate[c].z_page = ZC_STMBIT(mem); + pz->z_ostate[c].z_hold = 1; + s = splimp(); + pz->z_refcount++; + (void) splx(s); + pmap_enter(kernel_pmap, start, pa, VM_PROT_READ, FALSE); + } + + return 0; + } + + void + zcopy_fault_ref(caddr_t addr, u_int size) + { + pzcopy_t pz; + vm_offset_t start, end; + pzcopy_ostate_t pzo; + unsigned int c; + int s; + + s = splimp(); + + pz = KVATOZ(addr); + + pz->z_refcount++; + + start = trunc_page((vm_offset_t) addr); + end = round_page((vm_offset_t) (addr + size)); + + for (c = atop(start - pz->z_kaddr), pzo = &pz->z_ostate[c]; start < end; + start += PAGE_SIZE, c++, pzo++) + pzo->z_hold++; + + (void) splx(s); + return; + } + + void + zcopy_ref(caddr_t addr, u_int size) + { + pzcopy_t pz; + register int s; + + s = splimp(); + + pz = KVATOZ(addr); + pz->z_refcount++; + + (void) splx(s); + + return; + } + + void + zcopy_fault_free(caddr_t addr, u_int size) + { + pzcopy_t pz; + int c; + vm_offset_t start, end; + pzcopy_ostate_t pzo; + int s, dowakeup; + + pz = KVATOZ(addr); + + s = splimp(); + + start = trunc_page((vm_offset_t) addr); + end = round_page((vm_offset_t) (addr + size)); + dowakeup = 0; + + for (c = atop(start - pz->z_kaddr); start < end; + start += PAGE_SIZE, c++) { + pzo = &pz->z_ostate[c]; + if (pzo->z_hold == 1) { + dowakeup++; + /* + * this prevents a requeue + * to zcopy_hold_queue while it's + * already queued. + */ + pzo->z_hold++; + pzo->z_wnext = zcopy_hold_queue; + zcopy_hold_queue = pzo; + } + else + pzo->z_hold--; + } + + if (dowakeup) + wakeup(&zcopy_queue); + + pz->z_refcount--; + + if (pz->z_refcount == 0) { + pz->z_next = zcopy_ffree_queue; + zcopy_ffree_queue = pz; + wakeup(&zcopy_queue); + (void) splx(s); + return; + } + + (void) splx(s); + + return; + } + + void + zcopy_done(pzcopy_t pz) + { + int c, l, s; + vm_object_t obj, lobj; + vm_pindex_t offidxstart, offidxend; + + + for (l = 0, obj = lobj = pz->z_ostate[0].z_object, c = 0; + c < pz->z_pagecount;) { + for (c++; c < pz->z_pagecount; c++) { + obj = pz->z_ostate[c].z_object; + pz->z_ostate[c].z_object = 0; + if (obj != lobj) + break; + }; + + if (lobj == zcopy_zfod_object) { + lobj = obj; + l = c; + continue; + } + + if (lobj->ref_count == 1) { + offidxstart = OFF_TO_IDX(pz->z_ostate[l].z_offset); + offidxend = offidxstart + c - l; + vm_object_page_remove(lobj, offidxstart, offidxend, + FALSE); + if (lobj->type == OBJT_SWAP) + swap_pager_freespace(lobj, offidxstart, c - l); + } + + vm_object_deallocate(lobj); + lobj = obj; + l = c; + } + + s = splimp(); + pz->z_pcb->inp_zref--; + pz->z_next = zcopy_avail; + zcopy_avail = pz; + (void) splx(s); + + zcopy_stats.zs_ffree++; + + return; + } + + void + zcopy_free(caddr_t addr, u_int size) + { + pzcopy_t pz; + int s; + + pz = KVATOZ(addr); + + s = splimp(); + + pz->z_refcount--; + + if (pz->z_refcount == 0) { + pz->z_next = zcopy_ffree_queue; + zcopy_ffree_queue = pz; + wakeup(&zcopy_queue); + } + + (void) splx(s); + return; + } + + void + zcopy_unhold(pzcopy_ostate_t pzo) + { + pzcopy_t pz; + vm_page_t m; + vm_offset_t start; + + pz = KOTOKZ(pzo); + pzo->z_hold--; + + if (pzo->z_hold == 1) { + start = pz->z_kaddr + ptoa(pzo - pz->z_ostate); + if ((m = pzo->z_page) == zcopy_zfod_page) { + pmap_remove(kernel_pmap, start, start + PAGE_SIZE); + pzo->z_object = zcopy_zfod_object; + } + else { + m = ZC_CLMBIT(m); + pzo->z_object = m->object; + vm_page_unhold(m); + pmap_remove(kernel_pmap, start, start + PAGE_SIZE); + } + + pz->z_refcount--; + if (pz->z_refcount == 0) { + pz->z_next = zcopy_ffree_queue; + zcopy_ffree_queue = pz; + } + } + pzo->z_hold--; + + return; + } *** src/sys/modules/ti/Makefile.orig --- src/sys/modules/ti/Makefile *************** *** 2,8 **** .PATH: ${.CURDIR}/../../pci KMOD = if_ti ! SRCS = if_ti.c opt_bdg.h vlan.h device_if.h bus_if.h pci_if.h CLEANFILES = vlan.h vlan.h: --- 2,9 ---- .PATH: ${.CURDIR}/../../pci KMOD = if_ti ! SRCS = if_ti.c opt_bdg.h opt_alteon.h opt_zero.h opt_tcpiphdcsum.h vlan.h \ ! device_if.h bus_if.h pci_if.h vnode_if.h CLEANFILES = vlan.h vlan.h: *** src/sys/netinet/in_pcb.h.orig --- src/sys/netinet/in_pcb.h *************** *** 143,148 **** --- 143,153 ---- LIST_ENTRY(inpcb) inp_portlist; struct inpcbport *inp_phd; /* head of this list */ inp_gen_t inp_gencnt; /* generation count of this instance */ + /* zcopy processing */ + void (*inp_routine)(caddr_t arg, struct mbuf *); + caddr_t inp_arg; /* zcopy argument */ + u_short inp_zref; /* zcopy references */ + #define in6p_faddr inp_dependfaddr.inp6_foreign #define in6p_laddr inp_dependladdr.inp6_local #define in6p_route inp_dependroute.inp6_route *** src/sys/netinet/ip_input.c.orig --- src/sys/netinet/ip_input.c *************** *** 301,306 **** --- 301,313 ---- return; } ip = mtod(m, struct ip *); + #if __alpha__ + if ((unsigned long) ip & (sizeof(int) - 1L)){ + printf("misaligned mbuf in ip_input\n"); + printf("flags: 0x%x\n", m->m_flags); + goto bad; + } + #endif if (IP_VHL_V(ip->ip_vhl) != IPVERSION) { ipstat.ips_badvers++; *** src/sys/netinet/ip_output.c.orig --- src/sys/netinet/ip_output.c *************** *** 825,832 **** m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; } { ! int mhlen, firstlen = len; struct mbuf **mnext = &m->m_nextpkt; int nfrags = 1; --- 825,866 ---- m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; } + if (len > PAGE_SIZE) { + /* + * Fragement large datagrams such that each segment + * contains a multiple of PAGE_SIZE amount of data, + * plus headers. This enables a receiver to perform + * page-flipping zero-copy optimizations. + */ + + int newlen; + struct mbuf *mtmp; + + for (mtmp = m, off = 0; + mtmp && ((off + mtmp->m_len) <= ifp->if_mtu); + mtmp = mtmp->m_next) { + off += mtmp->m_len; + } + newlen = (~PAGE_MASK) & ifp->if_mtu; + if ((newlen + sizeof (struct ip)) > ifp->if_mtu) { + /* we failed, go back the default */ + newlen = len; + off = hlen + len; + } + + /* printf("ipfrag: len = %d, hlen = %d, mhlen = %d, newlen = %d, off = %d\n", + len, hlen, sizeof (struct ip), newlen, off);*/ + + len = newlen; + + } else { + off = hlen + len; + } + + + { ! int mhlen, firstlen = off - hlen; struct mbuf **mnext = &m->m_nextpkt; int nfrags = 1; *************** *** 836,842 **** */ m0 = m; mhlen = sizeof (struct ip); ! for (off = hlen + len; off < (u_short)ip->ip_len; off += len) { MGETHDR(m, M_DONTWAIT, MT_HEADER); if (m == 0) { error = ENOBUFS; --- 870,876 ---- */ m0 = m; mhlen = sizeof (struct ip); ! for (; off < (u_short)ip->ip_len; off += len) { MGETHDR(m, M_DONTWAIT, MT_HEADER); if (m == 0) { error = ENOBUFS; *** src/sys/netinet/tcp_output.c.orig --- src/sys/netinet/tcp_output.c *************** *** 37,42 **** --- 37,43 ---- #include "opt_inet6.h" #include "opt_ipsec.h" #include "opt_tcpdebug.h" + #include "opt_zcopy.h" #include *************** *** 49,55 **** --- 50,61 ---- #include #include #include + #ifdef ZCOPY + #include + #include + #endif + #include #include #include *************** *** 98,103 **** --- 104,203 ---- int tcp_do_newreno = 0; SYSCTL_INT(_net_inet_tcp, OID_AUTO, newreno, CTLFLAG_RW, &tcp_do_newreno, 0, "Enable NewReno Algorithms"); + #if ZCOPY + void tcp_zcopy_send(caddr_t, struct mbuf *); + void + tcp_zcopy_send(arg, m) + caddr_t arg; + struct mbuf *m; + { + pzcopy_data_t pzd; + int error, len, optlen, hdrlen; + register struct tcpcb *tp; + register struct tcpiphdr *ti; + register struct socket *so; + struct mbuf *n, *m0; + + tp = (struct tcpcb *) arg; + so = tp->t_inpcb->inp_socket; + pzd = mtod(m, pzcopy_data_t); + len = pzd->zd_tcplen; + optlen = pzd->zd_tcpoptlen; + hdrlen = pzd->zd_tcphdrlen; + n = m->m_next; + m->m_next = 0; + MFREE(m, m0); + m = n; + error = zcopy_copy(m); + if (error) { + m_freem(m); + return; + } + + ti = mtod(m, struct tcpiphdr *); + ti->ti_len = htons((u_short)(sizeof (struct tcphdr) + len + optlen)); + + /* + * Fill in IP length and desired time to live and + * send to IP level. There should be a better way + * to handle ttl and tos; we could keep them in + * the template, but need a way to checksum without them. + */ + m->m_pkthdr.len = hdrlen + len; + { + #if 1 + struct rtentry *rt; + #endif + ((struct ip *)ti)->ip_len = m->m_pkthdr.len; + ((struct ip *)ti)->ip_ttl = tp->t_inpcb->inp_ip_ttl; /* XXX */ + ((struct ip *)ti)->ip_tos = tp->t_inpcb->inp_ip_tos; /* XXX */ + #if 1 + /* + * See if we should do MTU discovery. We do it only if the following + * are true: + * 1) we have a valid route to the destination + * 2) the MTU is not locked (if it is, then discovery has been + * disabled) + */ + if ((rt = tp->t_inpcb->inp_route.ro_rt) + && rt->rt_flags & RTF_UP + && !(rt->rt_rmx.rmx_locks & RTV_MTU)) { + ((struct ip *)ti)->ip_off |= IP_DF; + } + #endif + error = ip_output(m, tp->t_inpcb->inp_options, &tp->t_inpcb->inp_route, + so->so_options & SO_DONTROUTE, 0); + } + if (error) { + if (error == ENOBUFS) { + tcp_quench(tp->t_inpcb, 0); + return; + } + #if 1 + if (error == EMSGSIZE) { + /* + * ip_output() will have already fixed the route + * for us. tcp_mtudisc() will, as its last action, + * initiate retransmission, so it is important to + * not do so here. + */ + tcp_mtudisc(tp->t_inpcb, 0); + return; + } + #endif + if ((error == EHOSTUNREACH || error == ENETDOWN) + && TCPS_HAVERCVDSYN(tp->t_state)) + tp->t_softerror = error; + + return; + } + tcpstat.tcps_sndtotal++; + + return; + } + #endif + + /* * Tcp output routine: figure out what should be sent and send it. */ *************** *** 586,592 **** --- 686,696 ---- #endif m->m_data += max_linkhdr; m->m_len = hdrlen; + #ifdef ZCOPY + if (!M_HASZCOPY(so) && (len <= MHLEN - hdrlen - max_linkhdr)) { + #else /* ZCOPY */ if (len <= MHLEN - hdrlen - max_linkhdr) { + #endif /* ZCOPY */ m_copydata(so->so_snd.sb_mb, off, (int) len, mtod(m, caddr_t) + hdrlen); m->m_len += len; *************** *** 790,795 **** --- 894,921 ---- if (SEQ_GT(tp->snd_nxt + len, tp->snd_max)) tp->snd_max = tp->snd_nxt + len; + #if ZCOPY + if (m->m_next && (m->m_next->m_flags & M_ZCOMMIT)) { + pzcopy_data_t pzd; + struct mbuf *n; + + MGET(n, M_DONTWAIT, MT_HEADER); + if (n == NULL) { + m_freem(m); + error = ENOBUFS; + goto out; + } + + pzd = mtod(n, pzcopy_data_t); + pzd->zd_tcplen = len; + pzd->zd_tcpoptlen = optlen; + pzd->zd_tcphdrlen = hdrlen; + n->m_next = m; + zcopy_enqueue(so, tcp_zcopy_send, (caddr_t) tp, n); + goto next; + } + #endif + #ifdef TCPDEBUG /* * Trace. *************** *** 891,897 **** return (error); } tcpstat.tcps_sndtotal++; ! /* * Data sent (as far as we can tell). * If this advertises a larger window than any other segment, --- 1017,1025 ---- return (error); } tcpstat.tcps_sndtotal++; ! #if ZCOPY ! next: ! #endif /* * Data sent (as far as we can tell). * If this advertises a larger window than any other segment, *** src/sys/netinet/tcp_usrreq.c.orig --- src/sys/netinet/tcp_usrreq.c *************** *** 37,42 **** --- 37,43 ---- #include "opt_ipsec.h" #include "opt_inet6.h" #include "opt_tcpdebug.h" + #include "opt_zcopy.h" #include #include *************** *** 77,82 **** --- 78,87 ---- #include #endif + #if ZCOPY + #include + #endif + #ifdef IPSEC #include #endif /*IPSEC*/ *************** *** 135,140 **** --- 140,149 ---- if ((so->so_options & SO_LINGER) && so->so_linger == 0) so->so_linger = TCP_LINGERTIME; tp = sototcpcb(so); + #if ZCOPY + if (auto_zcopy) + so->so_snd.sb_flags |= SB_ZCOPY; + #endif out: TCPDEBUG2(PRU_ATTACH); splx(s); *** src/sys/netinet/udp_usrreq.c.orig --- src/sys/netinet/udp_usrreq.c *************** *** 36,41 **** --- 36,42 ---- #include "opt_ipsec.h" #include "opt_inet6.h" + #include "opt_zcopy.h" #include #include *************** *** 73,78 **** --- 74,83 ---- #include #include + #if ZCOPY + #include + #endif + #ifdef IPSEC #include #endif /*IPSEC*/ *************** *** 676,682 **** goto release; } } ! /* * Calculate data length and get a mbuf * for UDP and IP headers. */ --- 681,693 ---- goto release; } } ! #if ZCOPY ! if (m->m_flags & M_ZCOPY) { ! error = zcopy_fault(m); ! if (error) ! goto release; ! } ! #endif /* * Calculate data length and get a mbuf * for UDP and IP headers. */ *************** *** 796,801 **** --- 807,818 ---- return error; } #endif /*IPSEC*/ + + #if ZCOPY + if (auto_zcopy) + so->so_snd.sb_flags |= SB_ZCOPY; + #endif + return 0; } *** src/sys/nfs/nfs_bio.c.orig --- src/sys/nfs/nfs_bio.c *************** *** 687,693 **** }; if (n > 0) { ! error = uiomove(bp->b_data + on, (int)n, uio); } switch (vp->v_type) { case VREG: --- 687,711 ---- }; if (n > 0) { ! #ifdef ENABLE_VFS_IOOPT ! if (vfs_ioopt && vp->v_object && ! (bp->b_flags & B_VMIO) && ! ((on & PAGE_MASK) == 0) && ! ((n & PAGE_MASK) == 0)) ! /* ! * If VFS IO optimisation is turned on, ! * and it's an exact page multiple ! * And a normal VM based op, ! * then use uiomiveco() ! */ ! error = ! uiomoveco((char *)bp->b_data + on, ! (int)n, uio, vp->v_object); ! else ! ! #endif ! error = uiomove(bp->b_data + on, (int)n, uio); ! } switch (vp->v_type) { case VREG: *************** *** 1346,1351 **** --- 1364,1372 ---- * Do an I/O operation to/from a cache block. This may be called * synchronously or from an nfsiod. */ + + int nfs_zreadrpc __P((struct buf *, struct vnode *, struct uio *, struct ucred *)); + int nfs_doio(bp, cr, p) struct buf *bp; *************** *** 1414,1420 **** case VREG: uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE; nfsstats.read_bios++; ! error = nfs_readrpc(vp, uiop, cr); if (!error) { if (uiop->uio_resid) { /* --- 1435,1441 ---- case VREG: uiop->uio_offset = ((off_t)bp->b_blkno) * DEV_BSIZE; nfsstats.read_bios++; ! error = nfs_zreadrpc(bp, vp, uiop, cr); if (!error) { if (uiop->uio_resid) { /* *** src/sys/nfs/nfs_serv.c.orig --- src/sys/nfs/nfs_serv.c *************** *** 99,104 **** --- 99,111 ---- #include #include + #include + #include + #include + extern struct sf_buf *sf_buf_alloc(void); + extern void sf_buf_ref(caddr_t addr, u_int size); + extern void sf_buf_free(caddr_t addr, u_int size); + #ifdef NFSRV_DEBUG #define nfsdbprintf(info) printf info #else *************** *** 755,760 **** --- 762,769 ---- /* * nfs read service */ + int nfsreadhack = 0; /*ddb pokable*/ + int nfsreadhackyes = 0, nfsreadhackno = 0; int nfsrv_read(nfsd, slp, procp, mrq) struct nfsrv_descript *nfsd; *************** *** 919,924 **** --- 928,1109 ---- } len = left = nfsm_rndup(cnt); if (cnt > 0) { + + /* + * BEGIN SUSPECT REGION + * if offset is aligned and len is a multiple of page size, we should + * be able to use bread() to zero-copy read an appropriate struct buf. + * then wrap ext mbufs around it (final m_freem needs to unlock buf) + * and pass it along. hmm. + */ + if (nfsreadhack) { + + /* preconditions: + * len = number of bytes to read. + * vp = valid vnode. + * mb is the header mbuf. + * m2 is a free temp mbuf. + * + * postconditions: + * mb->m_next points at a chain of mbufs containing the + * read data + * left <- 0 + * uiop->uio_offset <- 0 + * off <- nh->nextr <- offset where read ends + * error <- 0 + */ + + struct vm_object *obj; + struct sf_buf *sf; + struct vm_page *pg; + vm_pindex_t pindex; + vm_offset_t pgoff = 0; /* for now */ + int xfsize = PAGE_SIZE; /* for now */ + + m2 = mb; + + left = len; + if ((len & PAGE_SIZE) || (off & PAGE_SIZE)) { + /* + * don't try to read non-aligned offsets and/or + * non-page-sized lengths. + */ + goto normalpath; + } + + vref(vp); + obj = vp->v_object; + if (vp->v_type != VREG || obj == NULL) { + vrele(vp); + goto normalpath; + } + + for (; left > 0 ; off += xfsize, left -= xfsize) { + pindex = OFF_TO_IDX(off); + + retry_lookup: + /* + * Attempt to look up the page. + * + * Allocate if not found + * + * Wait and loop if busy. + */ + pg = vm_page_lookup(obj, pindex); + + if (pg == NULL) { + pg = vm_page_alloc(obj, pindex, VM_ALLOC_NORMAL); + if (pg == NULL) { + VM_WAIT; + goto retry_lookup; + } + vm_page_wakeup(pg); + } else if (vm_page_sleep_busy(pg, TRUE, "sfpbsy")) { + goto retry_lookup; + } + + /* + * Wire the page so it does not get ripped out from under + * us. + */ + + vm_page_wire(pg); + + /* + * If page is not valid for what we need, initiate I/O + */ + + if (!pg->valid || !vm_page_is_valid(pg, pgoff, xfsize)) { + struct uio auio; + struct iovec aiov; + int bsize; + + /* + * Ensure that our page is still around when the I/O + * completes. + */ + vm_page_io_start(pg); + + /* + * Get the page from backing store. + */ + bsize = vp->v_mount->mnt_stat.f_iosize; + auio.uio_iov = &aiov; + auio.uio_iovcnt = 1; + aiov.iov_base = 0; + aiov.iov_len = MAXBSIZE; + auio.uio_resid = MAXBSIZE; + auio.uio_offset = trunc_page(off); + auio.uio_segflg = UIO_NOCOPY; + auio.uio_rw = UIO_READ; + auio.uio_procp = procp; + vn_lock(vp, LK_SHARED | LK_NOPAUSE | LK_RETRY, procp); + error = VOP_READ(vp, &auio, IO_VMIO | ((MAXBSIZE / bsize) << 16), + cred); + VOP_UNLOCK(vp, 0, procp); + vm_page_flag_clear(pg, PG_ZERO); + vm_page_io_finish(pg); + if (error) { + vm_page_unwire(pg, 0); + /* + * See if anyone else might know about this page. + * If not and it is not valid, then free it. + */ + if (pg->wire_count == 0 && pg->valid == 0 && + pg->busy == 0 && !(pg->flags & PG_BUSY) && + pg->hold_count == 0) + vm_page_free(pg); + + goto errorpath; + } + } + + /* + * Allocate a kernel virtual page and insert the physical page + * into it. + */ + + sf = sf_buf_alloc(); + sf->m = pg; + pmap_qenter(sf->kva, &pg, 1); + /* + * Get an mbuf header and set it up as having external storage. + */ + MGETHDR(m, M_WAIT, MT_DATA); + if (m == NULL) { + error = ENOBUFS; + goto errorpath; + } + m->m_ext.ext_free = sf_buf_free; + m->m_ext.ext_ref = sf_buf_ref; + m->m_ext.ext_buf = (void *)sf->kva; + m->m_ext.ext_size = PAGE_SIZE; + m->m_data = (char *) sf->kva + pgoff; + m->m_flags |= M_EXT; + m->m_pkthdr.len = m->m_len = xfsize; + + m2->m_next = m; + m2 = m; + } + + uiop->uio_resid = 0; + nh->nh_nextr = off; + error = 0; + + nfsreadhackyes++; + if (0) { + errorpath: + nfsreadhackno++; + if (mb->m_next != NULL) { + m_freem(mb->m_next); + mb->m_next = 0; + } + vrele(vp); + goto normalpath; + } + + } else { + normalpath: /* * Generate the mbuf list with the uio_iov ref. to it. */ *************** *** 967,972 **** --- 1152,1163 ---- off = uiop->uio_offset; nh->nh_nextr = off; FREE((caddr_t)iv2, M_TEMP); + + } + /* + * END SUSPECT REGION + */ + if (error || (getret = VOP_GETATTR(vp, vap, cred, procp))) { if (!error) error = getret; *** src/sys/nfs/nfs_socket.c.orig --- src/sys/nfs/nfs_socket.c *************** *** 103,108 **** --- 103,109 ---- extern struct nfsstats nfsstats; extern int nfsv3_procid[NFS_NPROCS]; extern int nfs_ticks; + extern int nfs_numasync; /* * Defines which timer to use for the procnum. *** src/sys/nfs/nfs_subs.c.orig --- src/sys/nfs/nfs_subs.c *************** *** 776,781 **** --- 776,968 ---- } /* + * copies mbuf chain to the uio scatter/gather list, moving pages if possible + */ + + int znfs = 0; /* ddb pokable */ + int nfsm_zmbuftouio __P((struct buf *bp, struct mbuf **, struct uio *, int, caddr_t *)); + + #define STAT_INC(W,X) (W.X)++ + struct znfs_stats { + int mapin; + int copyin; + int cantmap_paging, cantmap_busy, cantmap_locked, + cantmap_bogus, cantmap_chain, cantmap_toosmall, + cantmap_mbufcp, cantmap_len; + } znfs_stats; + + #include + #include + extern vm_page_t bogus_page; + + int + nfsm_zmbuftouio(bp, mrep, uiop, siz, dpos) + struct buf *bp; /* struct buf we are copying to */ + struct mbuf **mrep; /* start of mbuf chain */ + register struct uio *uiop; /* uio struct */ + int siz; /* how much data to copy */ + caddr_t *dpos; /* pointer into mbuf chain to copy */ + { + register char *mbufcp; + register int len, total; + register struct mbuf *mp; + long rem; + int error = 0, npages = 0; + int ok, s, i, busy = bp->b_pages[0]->busy; + vm_object_t object = bp->b_vp->v_object; + vm_page_t pages[16]; + + mp = *mrep; + mbufcp = *dpos; + len = mtod(mp, caddr_t)+mp->m_len-mbufcp; + rem = nfsm_rndup(siz)-siz; + + s = splvm(); + if (znfs == 0) + goto cantmap; + + if (siz < PAGE_SIZE) { + STAT_INC(znfs_stats, cantmap_toosmall); + goto cantmap; + } + + /* + * oddly enough, len will be 0 when we start the ball rolling + * because the rpc code will have plucked the nfs goop off the + * front of the mbuf chain. Make sure this is so + */ + + if (len != 0) { + STAT_INC(znfs_stats, cantmap_len); + } + /* + * walk the mbuf chain, gathering up M_EXT mbufs & deciding if + * we can do this easily. In the future, we should allow for + * the last mbuf in the chain to be < PAGE_SIZE + */ + total = 0; + ok = 1; + npages = 0; + + while (mp && (total < siz) && ok) { + len = 0; + while (len == 0) { + mp = mp->m_next; + if (mp == NULL) + return (EBADRPC); + mbufcp = mtod(mp, caddr_t); + len = mp->m_len; + } + total += len; + ok = mbufcp && ((len == PAGE_SIZE ) && + (((vm_offset_t)mbufcp & PAGE_MASK) == 0)); + + if (ok) + pages[npages++] = + PHYS_TO_VM_PAGE(pmap_extract(kernel_pmap, + (vm_offset_t)mbufcp)); + } + if (!ok) { + STAT_INC(znfs_stats, cantmap_chain); + if ((vm_offset_t)mbufcp & PAGE_MASK) + STAT_INC(znfs_stats, cantmap_mbufcp); + if (len != PAGE_SIZE) + STAT_INC(znfs_stats, cantmap_len); + goto cantmap; + } + /* now we know that we have an mbuf chain with page-sized, + page-aligned, ext mbufs. Go for it !! */ + + if (bp->b_flags & B_PAGING) { + /* + * could map, but need to do LOTS more. + * (user pmap needs tweaking!) XXX + */ + STAT_INC(znfs_stats, cantmap_paging); + goto cantmap; + } + for (i=0 ; ib_pages[i]; + if (m == bogus_page) { + STAT_INC(znfs_stats, cantmap_bogus); + goto cantmap; + } + #if !defined(MAX_PERF) + if (m->busy != busy) + panic("busy count mismatch"); + #endif + if ((m->flags & PG_WANTED) || (m->wire_count > 1) || + (m->busy > 1)) { + STAT_INC(znfs_stats, cantmap_busy); + goto cantmap; + } + } + + STAT_INC(znfs_stats, mapin); + + /* + * disassociate existing pages from buf (still splvm) + */ + pmap_qremove((vm_offset_t)bp->b_data, bp->b_npages); + for (i=0 ; ib_pages[i]; + + vm_page_busy(pages[i]); + vm_page_remove(pages[i]); /* remove page from the trapeze object */ + + pages[i]->pindex = m->pindex; /* remember pindex */ + + if (busy) + vm_page_io_finish(m); + vm_page_unwire(m, 0); + vm_page_busy(m); + /* + * XXX put this back + * when mmap (B_PAGING) is supported + */ + /* vm_page_protect(m, VM_PROT_NONE); */ + vm_page_free(m); + } + + /* + * map new pages into buf (still splvm); don't assumes pages were + * vm_page_remove()ed earlier. + */ + for (i=0 ; ipindex); + vm_page_flag_clear(m, PG_ZERO); + vm_page_wire(m); + if (busy) + vm_page_io_start(m); + + bp->b_pages[i] = m; + } + + pmap_qenter((vm_offset_t)bp->b_data, bp->b_pages, bp->b_npages); + splx(s); + + uiop->uio_resid = 0; + + /* + * XXX we should really fiddle with the uio & advance the + * pointers into the mbuf chain. The only thing we need to do + * is to clear the uiop->uio_resid; this needs to be done to prevent + * doio() from seeing what we did as a short read with no error + * and zero-filling the file. + */ + + return error; + + + /* NOTREACHED */ + cantmap: + splx(s); + return nfsm_mbuftouio(mrep, uiop, siz, dpos); + } + + /* * copies mbuf chain to the uio scatter/gather list */ int *** src/sys/nfs/nfs_vnops.c.orig --- src/sys/nfs/nfs_vnops.c *************** *** 1060,1065 **** --- 1060,1138 ---- * nfs read rpc call * Ditto above */ + int nfs_zreadrpc __P((struct buf *, struct vnode *, struct uio *, struct ucred *)); + int nfsm_zmbuftouio __P((struct buf *bp, struct mbuf **, struct uio *, int, caddr_t *)); + + int + nfs_zreadrpc(bp, vp, uiop, cred) + struct buf *bp; + register struct vnode *vp; + struct uio *uiop; + struct ucred *cred; + { + register u_int32_t *tl; + register caddr_t cp; + register int32_t t1, t2; + caddr_t bpos, dpos, cp2; + struct mbuf *mreq, *mrep, *md, *mb, *mb2; + struct nfsmount *nmp; + int error = 0, len, retlen, tsiz, eof, attrflag; + int v3 = NFS_ISV3(vp); + + #ifndef nolint + eof = 0; + #endif + nmp = VFSTONFS(vp->v_mount); + tsiz = uiop->uio_resid; + if (uiop->uio_offset + tsiz > nmp->nm_maxfilesize) + return (EFBIG); + while (tsiz > 0) { + nfsstats.rpccnt[NFSPROC_READ]++; + len = (tsiz > nmp->nm_rsize) ? nmp->nm_rsize : tsiz; + nfsm_reqhead(vp, NFSPROC_READ, NFSX_FH(v3) + NFSX_UNSIGNED * 3); + nfsm_fhtom(vp, v3); + nfsm_build(tl, u_int32_t *, NFSX_UNSIGNED * 3); + if (v3) { + txdr_hyper(uiop->uio_offset, tl); + *(tl + 2) = txdr_unsigned(len); + } else { + *tl++ = txdr_unsigned(uiop->uio_offset); + *tl++ = txdr_unsigned(len); + *tl = 0; + } + nfsm_request(vp, NFSPROC_READ, uiop->uio_procp, cred); + if (v3) { + nfsm_postop_attr(vp, attrflag); + if (error) { + m_freem(mrep); + goto nfsmout; + } + nfsm_dissect(tl, u_int32_t *, 2 * NFSX_UNSIGNED); + eof = fxdr_unsigned(int, *(tl + 1)); + } else + nfsm_loadattr(vp, (struct vattr *)0); + nfsm_strsiz(retlen, nmp->nm_rsize); + if ((retlen) > 0 && (t1 = + nfsm_zmbuftouio(bp, &md, uiop, retlen, &dpos)) != 0) { + error = t1; + m_freem(mrep); + goto nfsmout; + } + m_freem(mrep); + tsiz -= retlen; + if (v3) { + if (eof || retlen == 0) + tsiz = 0; + } else if (retlen < len) + tsiz = 0; + } + nfsmout: + return (error); + } + /* + * nfs read rpc call + * Ditto above + */ int nfs_readrpc(vp, uiop, cred) register struct vnode *vp; *** src/sys/nfs/nfsproto.h.orig --- src/sys/nfs/nfsproto.h *************** *** 56,62 **** #define NFS_VER2 2 #define NFS_VER3 3 #define NFS_V2MAXDATA 8192 ! #define NFS_MAXDGRAMDATA 16384 #define NFS_MAXDATA 32768 #define NFS_MAXPATHLEN 1024 #define NFS_MAXNAMLEN 255 --- 56,62 ---- #define NFS_VER2 2 #define NFS_VER3 3 #define NFS_V2MAXDATA 8192 ! #define NFS_MAXDGRAMDATA 32768 #define NFS_MAXDATA 32768 #define NFS_MAXPATHLEN 1024 #define NFS_MAXNAMLEN 255 *** src/sys/pci/if_ti.c.orig --- src/sys/pci/if_ti.c *************** *** 79,84 **** --- 79,86 ---- */ #include "vlan.h" + #include "opt_alteon.h" + #include "opt_zero.h" #include #include *************** *** 88,93 **** --- 90,97 ---- #include #include #include + #include /* XXX KDM */ + #include /* XXX KDM */ #include #include *************** *** 115,134 **** --- 119,175 ---- #include #include + /* #define PRIVATE_JUMBOS */ + + #if !defined(PRIVATE_JUMBOS) + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #endif /* !PRIVATE_JUMBOS */ + #include /* for vfindev, vgone */ + #include #include + #include #include #include #include #define TI_CSUM_FEATURES (CSUM_IP | CSUM_TCP | CSUM_UDP | CSUM_IP_FRAGS) + /* + * We can only turn on header splitting if we're using extended receive + * BDs. + */ + #if defined(TI_JUMBO_HDRSPLIT) && defined(PRIVATE_JUMBOS) + #error "options TI_JUMBO_HDRSPLIT and PRIVATE_JUMBOS are mutually exclusive" + #endif /* TI_JUMBO_HDRSPLIT && TI_JUMBO_HDRSPLIT */ #if !defined(lint) static const char rcsid[] = "$FreeBSD: src/sys/pci/if_ti.c,v 1.29 2000/07/08 00:14:12 gallatin Exp $"; #endif + struct ti_softc *tis[8]; + + typedef enum { + TI_SWAP_HTON, + TI_SWAP_NTOH + } ti_swap_type; + + /* * Various supported device vendors/types and their names. */ *************** *** 147,152 **** --- 188,216 ---- { 0, 0, NULL } }; + #define TI_CDEV_MAJOR 149 + + static d_open_t ti_open; + static d_close_t ti_close; + static d_ioctl_t ti_ioctl2; + + static struct cdevsw ti_cdevsw = { + /* open */ ti_open, + /* close */ ti_close, + /* read */ NULL, + /* write */ NULL, + /* ioctl */ ti_ioctl2, + /* poll */ seltrue, + /* mmap */ nommap, + /* strategy */ nostrategy, + /* name */ "ti", + /* maj */ TI_CDEV_MAJOR, + /* dump */ nodump, + /* psize */ nopsize, + /* flags */ 0, + /* bmaj */ -1 + }; + static int ti_probe __P((device_t)); static int ti_attach __P((device_t)); static int ti_detach __P((device_t)); *************** *** 179,193 **** --- 243,265 ---- static void ti_mem __P((struct ti_softc *, u_int32_t, u_int32_t, caddr_t)); + static int ti_copy_mem __P((struct ti_softc *, u_int32_t, + u_int32_t, caddr_t, int, int)); + static int ti_copy_scratch __P((struct ti_softc *, u_int32_t, + u_int32_t, caddr_t, int, int, int)); + static int ti_bcopy_swap __P((const void *, void *, size_t, + ti_swap_type)); static void ti_loadfw __P((struct ti_softc *)); static void ti_cmd __P((struct ti_softc *, struct ti_cmd_desc *)); static void ti_cmd_ext __P((struct ti_softc *, struct ti_cmd_desc *, caddr_t, int)); static void ti_handle_events __P((struct ti_softc *)); + #ifdef PRIVATE_JUMBOS static int ti_alloc_jumbo_mem __P((struct ti_softc *)); static void *ti_jalloc __P((struct ti_softc *)); static void ti_jfree __P((caddr_t, u_int)); static void ti_jref __P((caddr_t, u_int)); + #endif /* PRIVATE_JUMBOS */ static int ti_newbuf_std __P((struct ti_softc *, int, struct mbuf *)); static int ti_newbuf_mini __P((struct ti_softc *, int, struct mbuf *)); static int ti_newbuf_jumbo __P((struct ti_softc *, int, struct mbuf *)); *************** *** 223,228 **** --- 295,332 ---- DRIVER_MODULE(if_ti, pci, ti_driver, ti_devclass, 0, 0); + #if 0 + /* XXX KDM XXX */ + #define TI_MAX_PAGES 3072 + + SLIST_HEAD(ti_kmap_head, ti_kmap) ti_kmap_free, ti_kmap_inuse; + struct ti_kmap { + vm_offset_t kva; + SLIST_ENTRY(ti_kmap) entries; /* Singly-linked List. */ + }; + + + struct vm_object *ti_vm_object; + unsigned long ti_vmuiomove_pgs_freed=0; + int ti_vm_wakeup_wanted=0; + vm_offset_t ti_basekva; + /* XXX KDM XXX */ + #endif + + /* List of Tigon softcs */ + static STAILQ_HEAD(ti_softc_list, ti_softc) ti_sc_list; + + static struct ti_softc * + ti_lookup_softc(int unit) + { + struct ti_softc *sc; + for (sc = STAILQ_FIRST(&ti_sc_list); sc != NULL; + sc = STAILQ_NEXT(sc, ti_links)) + if (sc->ti_unit == unit) + return(sc); + return(NULL); + } + /* * Send an instruction or address to the EEPROM, check for ACK. */ *************** *** 403,408 **** --- 507,845 ---- return; } + static int + ti_copy_mem(sc, tigon_addr, len, buf, useraddr, readdata) + struct ti_softc *sc; + u_int32_t tigon_addr, len; + caddr_t buf; + int useraddr, readdata; + { + int segptr, segsize, cnt; + caddr_t ptr; + int s; + u_int32_t origwin; + u_int8_t tmparray[TI_WINLEN], tmparray2[TI_WINLEN]; + int resid, segresid; + int first_pass; + + /* + * At the moment, we don't handle non-aligned cases, we just bail. + * If this proves to be a problem, it will be fixed. + */ + if ((readdata == 0) + && (tigon_addr & 0x3)) { + printf("ti%d: ti_copy_mem: tigon address %#x isn't " + "word-aligned\n", sc->ti_unit, tigon_addr); + printf("ti%d: ti_copy_mem: unaligned writes aren't yet " + "supported\n", sc->ti_unit); + return(EINVAL); + } + + segptr = tigon_addr & ~0x3; + segresid = tigon_addr - segptr; + + /* + * This is the non-aligned amount left over that we'll need to + * copy. + */ + resid = len & 0x3; + + /* Add in the left over amount at the front of the buffer */ + resid += segresid; + + cnt = len & ~0x3; + /* + * If resid + segresid is >= 4, add multiples of 4 to the count and + * decrease the residual by that much. + */ + cnt += resid & ~0x3; + resid -= resid & ~0x3; + + ptr = buf; + + first_pass = 1; + + /* + * Make sure we aren't interrupted while we're changing the window + * pointer. + */ + s = splimp(); + + /* + * Save the old window base value. + */ + origwin = CSR_READ_4(sc, TI_WINBASE); + + while(cnt) { + bus_size_t ti_offset; + + if (cnt < TI_WINLEN) + segsize = cnt; + else + segsize = TI_WINLEN - (segptr % TI_WINLEN); + CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1))); + + ti_offset = TI_WINDOW + (segptr & (TI_WINLEN -1)); + + if (readdata) { + + bus_space_read_region_4(sc->ti_btag, + sc->ti_bhandle, ti_offset, + (u_int32_t *)tmparray, + segsize >> 2); + if (useraddr) { + /* + * Yeah, this is a little on the kludgy + * side, but at least this code is only + * used for debugging. + */ + ti_bcopy_swap(tmparray, tmparray2, segsize, + TI_SWAP_NTOH); + + if (first_pass) { + copyout(&tmparray2[segresid], ptr, + segsize - segresid); + first_pass = 0; + } else + copyout(tmparray2, ptr, segsize); + } else { + if (first_pass) { + + ti_bcopy_swap(tmparray, tmparray2, + segsize, TI_SWAP_NTOH); + bcopy(&tmparray2[segresid], ptr, + segsize - segresid); + first_pass = 0; + } else + ti_bcopy_swap(tmparray, ptr, segsize, + TI_SWAP_NTOH); + } + + } else { + if (useraddr) { + copyin(ptr, tmparray2, segsize); + ti_bcopy_swap(tmparray2, tmparray, segsize, + TI_SWAP_HTON); + } else + ti_bcopy_swap(ptr, tmparray, segsize, + TI_SWAP_HTON); + + bus_space_write_region_4(sc->ti_btag, + sc->ti_bhandle, ti_offset, + (u_int32_t *)tmparray, + segsize >> 2); + } + segptr += segsize; + ptr += segsize; + cnt -= segsize; + } + + /* + * Handle leftover, non-word-aligned bytes. + */ + if (resid != 0) { + u_int32_t tmpval, tmpval2; + bus_size_t ti_offset; + + /* + * Set the segment pointer. + */ + CSR_WRITE_4(sc, TI_WINBASE, (segptr & ~(TI_WINLEN - 1))); + + ti_offset = TI_WINDOW + (segptr & (TI_WINLEN - 1)); + + /* + * First, grab whatever is in our source/destination. + * We'll obviously need this for reads, but also for + * writes, since we'll be doing read/modify/write. + */ + bus_space_read_region_4(sc->ti_btag, sc->ti_bhandle, + ti_offset, &tmpval, 1); + + /* + * Next, translate this from little-endian to big-endian + * (at least on i386 boxes). + */ + tmpval2 = ntohl(tmpval); + + if (readdata) { + /* + * If we're reading, just copy the leftover number + * of bytes from the host byte order buffer to + * the user's buffer. + */ + if (useraddr) + copyout(&tmpval2, ptr, resid); + else + bcopy(&tmpval2, ptr, resid); + } else { + /* + * If we're writing, first copy the bytes to be + * written into the network byte order buffer, + * leaving the rest of the buffer with whatever was + * originally in there. Then, swap the bytes + * around into host order and write them out. + * + * XXX KDM the read side of this has been verified + * to work, but the write side of it has not been + * verified. So user beware. + */ + if (useraddr) + copyin(ptr, &tmpval2, resid); + else + bcopy(ptr, &tmpval2, resid); + + tmpval = htonl(tmpval2); + + bus_space_write_region_4(sc->ti_btag, sc->ti_bhandle, + ti_offset, &tmpval, 1); + } + } + + CSR_WRITE_4(sc, TI_WINBASE, origwin); + + splx(s); + + return(0); + } + + static int + ti_copy_scratch(sc, tigon_addr, len, buf, useraddr, readdata, cpu) + struct ti_softc *sc; + u_int32_t tigon_addr, len; + caddr_t buf; + int useraddr, readdata; + int cpu; + { + u_int32_t segptr; + int s, cnt; + u_int32_t tmpval, tmpval2; + caddr_t ptr; + + /* + * At the moment, we don't handle non-aligned cases, we just bail. + * If this proves to be a problem, it will be fixed. + */ + if (tigon_addr & 0x3) { + printf("ti%d: ti_copy_scratch: tigon address %#x isn't " + "word-aligned\n", sc->ti_unit, tigon_addr); + return(EINVAL); + } + + if (len & 0x3) { + printf("ti%d: ti_copy_scratch: transfer length %d isn't " + "word-aligned\n", sc->ti_unit, len); + return(EINVAL); + } + + segptr = tigon_addr; + cnt = len; + ptr = buf; + + s = splimp(); + + while (cnt) { + CSR_WRITE_4(sc, CPU_REG(TI_SRAM_ADDR, cpu), segptr); + + if (readdata) { + tmpval2 = CSR_READ_4(sc, CPU_REG(TI_SRAM_DATA, cpu)); + + tmpval = ntohl(tmpval2); + + /* + * Note: I've used this debugging interface + * extensively with Alteon's 12.3.15 firmware, + * compiled with GCC 2.7.2.1 and binutils 2.9.1. + * + * When you compile the firmware without + * optimization, which is necessary sometimes in + * order to properly step through it, you sometimes + * read out a bogus value of 0xc0017c instead of + * whatever was supposed to be in that scratchpad + * location. That value is on the stack somewhere, + * but I've never been able to figure out what was + * causing the problem. + * + * The address seems to pop up in random places, + * often not in the same place on two subsequent + * reads. + * + * In any case, the underlying data doesn't seem + * to be affected, just the value read out. + * + * KDM, 3/7/2000 + */ + + if (tmpval2 == 0xc0017c) + printf("ti%d: found 0xc0017c at %#x " + "(tmpval2)\n", sc->ti_unit, segptr); + + if (tmpval == 0xc0017c) + printf("ti%d: found 0xc0017c at %#x " + "(tmpval)\n", sc->ti_unit, segptr); + + if (useraddr) + copyout(&tmpval, ptr, 4); + else + bcopy(&tmpval, ptr, 4); + } else { + if (useraddr) + copyin(ptr, &tmpval2, 4); + else + bcopy(ptr, &tmpval2, 4); + + tmpval = htonl(tmpval2); + + CSR_WRITE_4(sc, CPU_REG(TI_SRAM_DATA, cpu), tmpval); + } + + cnt -= 4; + segptr += 4; + ptr += 4; + } + + splx(s); + + return(0); + } + + static int + ti_bcopy_swap(src, dst, len, swap_type) + const void *src; + void *dst; + size_t len; + ti_swap_type swap_type; + { + const u_int8_t *tmpsrc; + u_int8_t *tmpdst; + size_t tmplen; + + if (len & 0x3) { + printf("ti_bcopy_swap: length %d isn't 32-bit aligned\n", + len); + return(-1); + } + + tmpsrc = src; + tmpdst = dst; + tmplen = len; + + while (tmplen) { + if (swap_type == TI_SWAP_NTOH) + *(u_int32_t *)tmpdst = + ntohl(*(const u_int32_t *)tmpsrc); + else + *(u_int32_t *)tmpdst = + htonl(*(const u_int32_t *)tmpsrc); + + tmpsrc += 4; + tmpdst += 4; + tmplen -= 4; + } + + return(0); + } + /* * Load firmware image into the NIC. Check that the firmware revision * is acceptable and see if we want the firmware for the Tigon 1 or *************** *** 568,573 **** --- 1005,1012 ---- return; } + #ifdef PRIVATE_JUMBOS + /* * Memory management for the jumbo receive ring is a pain in the * butt. We need to allocate at least 9018 bytes of space per frame, *************** *** 752,757 **** --- 1191,1197 ---- return; } + #endif /* PRIVATE_JUMBOS */ /* * Intialize a standard receive ring descriptor. *************** *** 840,845 **** --- 1280,1287 ---- return(0); } + #ifdef PRIVATE_JUMBOS + /* * Initialize a jumbo receive ring descriptor. This allocates * a jumbo buffer from the pool managed internally by the driver. *************** *** 900,905 **** --- 1342,1478 ---- return(0); } + #else + #include + + #if (PAGE_SIZE == 4096) + #define NPAYLOAD 3 + #else + #define NPAYLOAD 2 + #endif + + #define TCP_HDR_LEN (52 + sizeof(struct ether_header)) + #define UDP_HDR_LEN (28 + sizeof(struct ether_header)) + #define NFS_HDR_LEN (UDP_HDR_LEN) + int HDR_LEN = TCP_HDR_LEN; + + + /* + * Initialize a jumbo receive ring descriptor. This allocates + * a jumbo buffer from the pool managed internally by the driver. + */ + static int + ti_newbuf_jumbo(sc, idx, m_old) + struct ti_softc *sc; + int idx; + struct mbuf *m_old; + { + struct mbuf *cur, *m_new = NULL, *m[3] = {NULL, NULL, NULL}; + struct ti_rx_desc_ext *r; + vm_page_t frame; + caddr_t buf[3] = {NULL, NULL, NULL}; + int i; + + if (m_old != NULL) { + m_new = m_old; + cur = m_old->m_next; + for(i = 0; i < NPAYLOAD; i++){ + m[i] = cur; + cur = cur->m_next; + } + + } else { + /* Allocate the mbufs. */ + MGETHDR(m_new, M_DONTWAIT, MT_DATA); + if (m_new == NULL) { + printf("ti%d: mbuf allocation failed " + "-- packet dropped!\n", sc->ti_unit); + goto nobufs; + } + for(i = 0; i < NPAYLOAD; i++){ + MGET(m[i], M_DONTWAIT, MT_DATA); + if (m[i] == NULL) { + printf("ti%d: mbuf allocation failed " + "-- packet dropped!\n", sc->ti_unit); + goto nobufs; + } + if(!(frame = jumbo_pg_alloc())){ + printf("ti%d: buffer allocation failed " + "-- packet dropped!\n", sc->ti_unit); + printf("ti%d: index %d page %d\n", + sc->ti_unit, idx, i); + goto nobufs; + } + buf[i] = jumbo_phys_to_kva(VM_PAGE_TO_PHYS(frame)); + } + for(i = 0; i < NPAYLOAD; i++){ + /* Attach the buffer to the mbuf. */ + m[i]->m_data = m[i]->m_ext.ext_buf = (void *)buf[i]; + m[i]->m_flags |= M_EXT; + m[i]->m_ext.ext_size = m[i]->m_len = PAGE_SIZE; + m[i]->m_ext.ext_free = jumbo_freem; + m[i]->m_ext.ext_ref = jumbo_ref; + } + /* link the buffers to the header */ + m_new->m_next = m[0]; + m[0]->m_next = m[1]; + if (NPAYLOAD == 3) + m[1]->m_next = m[2]; + m[NPAYLOAD-1]->m_next = NULL; + m_new->m_data += ETHER_ALIGN; + #ifdef TI_JUMBO_HDRSPLIT + m_new->m_len = MHLEN - ETHER_ALIGN; + #else /* TI_JUMBO_HDRSPLIT */ + m_new->m_len = HDR_LEN; + #endif /* TI_JUMBO_HDRSPLIT */ + m_new->m_pkthdr.len = NPAYLOAD * PAGE_SIZE + m_new->m_len; + } + + /* Set up the descriptor. */ + r = &sc->ti_rdata->ti_rx_jumbo_ring[idx]; + sc->ti_cdata.ti_rx_jumbo_chain[idx] = m_new; + TI_HOSTADDR(r->ti_addr0) = vtophys(mtod(m_new, caddr_t)); + r->ti_len0 = m_new->m_len; + + TI_HOSTADDR(r->ti_addr1) = vtophys(mtod(m[0], caddr_t)); + r->ti_len1 = PAGE_SIZE; + + TI_HOSTADDR(r->ti_addr2) = vtophys(mtod(m[1], caddr_t)); + r->ti_len2 = PAGE_SIZE; + + if (NPAYLOAD == 3) { + TI_HOSTADDR(r->ti_addr3) = vtophys(mtod(m[2], caddr_t)); + r->ti_len3 = PAGE_SIZE; + } else { + r->ti_len3 = 0; + } + r->ti_type = TI_BDTYPE_RECV_JUMBO_BD; + + r->ti_flags = TI_BDFLAG_JUMBO_RING|TI_RCB_FLAG_USE_EXT_RX_BD; + + if (sc->arpcom.ac_if.if_hwassist) + r->ti_flags |= TI_BDFLAG_TCP_UDP_CKSUM|TI_BDFLAG_IP_CKSUM; + + r->ti_idx = idx; + + return(0); + + nobufs: + if(m_new) + m_freem(m_new); + + for(i = 0; i < 3; i++){ + if(m[i]) + m_freem(m[i]); + if(buf[i]) + jumbo_pg_free((vm_offset_t)buf[i]); + } + return ENOBUFS; + } + #endif + + + /* * The standard receive ring has 512 entries in it. At 2K per mbuf cluster, * that's 1MB or memory, which is a lot. For now, we fill only the first *************** *** 946,952 **** register int i; struct ti_cmd_desc cmd; ! for (i = 0; i < (TI_JSLOTS - 20); i++) { if (ti_newbuf_jumbo(sc, i, NULL) == ENOBUFS) return(ENOBUFS); }; --- 1519,1540 ---- register int i; struct ti_cmd_desc cmd; ! /* ! * It seems that you need a sort of window between the number of ! * jumbo buffers allocated and the number stuck into the receive ! * ring. If the number of buffers allocated to the receive ring is ! * too high, the driver will end up running out of new buffers to ! * put in because the old buffers aren't getting freed fast enough. ! * Yes, I know this explanation doesn't make a whole lot of sense, ! * but I don't feel like taking the time to think it through ! * further. ! * KDM, 8/12/99 ! */ ! #ifdef PRIVATE_JUMBOS ! for (i = 0; i < (TI_JSLOTS - 40); i++) { ! #else ! for (i = 0; i < TI_JUMBO_RX_RING_CNT; i++) { ! #endif if (ti_newbuf_jumbo(sc, i, NULL) == ENOBUFS) return(ENOBUFS); }; *************** *** 1197,1202 **** --- 1785,1791 ---- { u_int32_t cacheline; u_int32_t pci_writemax = 0; + u_int32_t hdrsplit; /* Initialize link to down state. */ sc->ti_linkstat = TI_EV_CODE_LINK_DOWN; *************** *** 1297,1313 **** /* This sets the min dma param all the way up (0xff). */ TI_SETBIT(sc, TI_PCI_STATE, TI_PCISTATE_MINDMA); /* Configure DMA variables. */ #if BYTE_ORDER == BIG_ENDIAN CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_BD | TI_OPMODE_BYTESWAP_DATA | TI_OPMODE_WORDSWAP_BD | TI_OPMODE_WARN_ENB | TI_OPMODE_FATAL_ENB | ! TI_OPMODE_DONT_FRAG_JUMBO); ! #else CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_DATA| TI_OPMODE_WORDSWAP_BD|TI_OPMODE_DONT_FRAG_JUMBO| ! TI_OPMODE_WARN_ENB|TI_OPMODE_FATAL_ENB); ! #endif /* * Only allow 1 DMA channel to be active at a time. --- 1886,1907 ---- /* This sets the min dma param all the way up (0xff). */ TI_SETBIT(sc, TI_PCI_STATE, TI_PCISTATE_MINDMA); + #ifdef TI_JUMBO_HDRSPLIT + hdrsplit = TI_OPMODE_JUMBO_HDRSPLIT; + #else + hdrsplit = 0; + #endif /* Configure DMA variables. */ #if BYTE_ORDER == BIG_ENDIAN CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_BD | TI_OPMODE_BYTESWAP_DATA | TI_OPMODE_WORDSWAP_BD | TI_OPMODE_WARN_ENB | TI_OPMODE_FATAL_ENB | ! TI_OPMODE_DONT_FRAG_JUMBO | hdrsplit); ! #else /* BYTE_ORDER */ CSR_WRITE_4(sc, TI_GCR_OPMODE, TI_OPMODE_BYTESWAP_DATA| TI_OPMODE_WORDSWAP_BD|TI_OPMODE_DONT_FRAG_JUMBO| ! TI_OPMODE_WARN_ENB|TI_OPMODE_FATAL_ENB | hdrsplit); ! #endif /* BYTE_ORDER */ /* * Only allow 1 DMA channel to be active at a time. *************** *** 1406,1413 **** --- 2000,2013 ---- rcb = &sc->ti_rdata->ti_info.ti_jumbo_rx_rcb; TI_HOSTADDR(rcb->ti_hostaddr) = vtophys(&sc->ti_rdata->ti_rx_jumbo_ring); + + #ifdef PRIVATE_JUMBOS rcb->ti_max_len = TI_JUMBO_FRAMELEN; rcb->ti_flags = 0; + #else + rcb->ti_max_len = PAGE_SIZE; + rcb->ti_flags = TI_RCB_FLAG_USE_EXT_RX_BD; + #endif if (sc->arpcom.ac_if.if_hwassist) rcb->ti_flags |= TI_RCB_FLAG_TCP_UDP_CKSUM | TI_RCB_FLAG_IP_CKSUM | TI_RCB_FLAG_NO_PHDR_CKSUM; *************** *** 1483,1492 **** --- 2083,2094 ---- vtophys(&sc->ti_tx_considx); /* Set up tuneables */ + #if 0 if (ifp->if_mtu > (ETHERMTU + ETHER_HDR_LEN + ETHER_CRC_LEN)) CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS, (sc->ti_rx_coal_ticks / 10)); else + #endif CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS, sc->ti_rx_coal_ticks); CSR_WRITE_4(sc, TI_GCR_TX_COAL_TICKS, sc->ti_tx_coal_ticks); CSR_WRITE_4(sc, TI_GCR_STAT_TICKS, sc->ti_stat_ticks); *************** *** 1527,1532 **** --- 2129,2168 ---- return(ENXIO); } + #ifdef KLD_MODULE + static int + log2rndup(int len) + { + int log2size = 0, t = len; + while (t > 1) { + log2size++; + t >>= 1; + } + if (len != (1 << log2size)) + log2size++; + return log2size; + } + + static int + ti_mbuf_sanity(device_t dev) + { + if((mbstat.m_msize != MSIZE) + || mbstat.m_mclbytes != MCLBYTES){ + device_printf(dev, "\n"); + device_printf(dev, + "This module was compiled with -DMCLSHIFT=%d -DMSIZE=%d\n", + MCLSHIFT, MSIZE); + device_printf(dev, + "The kernel was compiled with MCLSHIFT=%d, MSIZE=%d\n", + log2rndup(mbstat.m_mclbytes), (int)mbstat.m_msize); + return EINVAL; + } + return 0; + + } + #endif + + static int ti_attach(dev) device_t dev; { *************** *** 1536,1543 **** --- 2172,2191 ---- struct ti_softc *sc; int unit, error = 0, rid; + + s = splimp(); + #ifdef KLD_MODULE + if(ti_mbuf_sanity(dev)){ + device_printf(dev, "Module mbuf constants do not match kernel constants!\n"); + device_printf(dev, "Rebuild the module or the kernel so they match\n"); + device_printf(dev, "\n"); + error = EINVAL; + goto fail; + } + #endif + sc = device_get_softc(dev); unit = device_get_unit(dev); bzero(sc, sizeof(struct ti_softc)); *************** *** 1676,1681 **** --- 2324,2330 ---- bzero(sc->ti_rdata, sizeof(struct ti_ring_data)); /* Try to allocate memory for jumbo buffers. */ + #ifdef PRIVATE_JUMBOS if (ti_alloc_jumbo_mem(sc)) { printf("ti%d: jumbo buffer allocation failed\n", sc->ti_unit); bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand); *************** *** 1687,1699 **** error = ENXIO; goto fail; } ! /* Set default tuneable values. */ sc->ti_stat_ticks = 2 * TI_TICKS_PER_SEC; sc->ti_rx_coal_ticks = TI_TICKS_PER_SEC / 5000; sc->ti_tx_coal_ticks = TI_TICKS_PER_SEC / 500; sc->ti_rx_max_coal_bds = 64; sc->ti_tx_max_coal_bds = 128; sc->ti_tx_buf_ratio = 21; /* Set up ifnet structure */ --- 2336,2365 ---- error = ENXIO; goto fail; } ! #else ! if (!jumbo_vm_init()) { ! printf("ti%d: VM initialization failed!\n", sc->ti_unit); ! bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand); ! bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq); ! bus_release_resource(dev, SYS_RES_MEMORY, ! TI_PCI_LOMEM, sc->ti_res); ! free(sc->ti_rdata, M_DEVBUF); ! error = ENOMEM; ! goto fail; ! } ! #endif /* Set default tuneable values. */ sc->ti_stat_ticks = 2 * TI_TICKS_PER_SEC; + #if 0 sc->ti_rx_coal_ticks = TI_TICKS_PER_SEC / 5000; + #endif + sc->ti_rx_coal_ticks = 60; sc->ti_tx_coal_ticks = TI_TICKS_PER_SEC / 500; sc->ti_rx_max_coal_bds = 64; + #if 0 sc->ti_tx_max_coal_bds = 128; + #endif + sc->ti_tx_max_coal_bds = 32; sc->ti_tx_buf_ratio = 21; /* Set up ifnet structure */ *************** *** 1702,1707 **** --- 2368,2374 ---- ifp->if_unit = sc->ti_unit; ifp->if_name = "ti"; ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST; + tis[unit] = sc; ifp->if_ioctl = ti_ioctl; ifp->if_output = ether_output; ifp->if_start = ti_start; *************** *** 1729,1740 **** --- 2396,2449 ---- bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header)); + /* + * If this is the first card to be initialized, initialize the + * softc queue. + */ + if (unit == 0) + STAILQ_INIT(&ti_sc_list); + + STAILQ_INSERT_TAIL(&ti_sc_list, sc, ti_links); + + /* Register the device */ + sc->dev = make_dev(&ti_cdevsw, sc->ti_unit, UID_ROOT, GID_OPERATOR, + 0600, "ti%d", sc->ti_unit); + fail: splx(s); return(error); } + /* + * Verify that our character special device is not currently + * open. Also track down any cached vnodes & kill them before + * the module is unloaded + */ + static int + ti_unref_special(device_t dev) + { + struct vnode *ti_vn; + int count; + struct ti_softc *sc = sc = device_get_softc(dev); + + if (!vfinddev(sc->dev, VCHR, &ti_vn)) { + return 0; + } + + if ((count = vcount(ti_vn))) { + device_printf(dev, + "%d refs to special device, denying unload\n", + count); + return count; + } + /* now we know that there's a vnode in the cache. We hunt it + down and kill it now, before unloading */ + vgone(ti_vn); + return(0); + } + + static int ti_detach(dev) device_t dev; { *************** *** 1742,1747 **** --- 2451,2459 ---- struct ifnet *ifp; int s; + if (ti_unref_special(dev)) + return EBUSY; + s = splimp(); sc = device_get_softc(dev); *************** *** 1754,1760 **** --- 2466,2479 ---- bus_release_resource(dev, SYS_RES_IRQ, 0, sc->ti_irq); bus_release_resource(dev, SYS_RES_MEMORY, TI_PCI_LOMEM, sc->ti_res); + #ifdef PRIVATE_JUMBOS contigfree(sc->ti_cdata.ti_jumbo_buf, TI_JMEM, M_DEVBUF); + #else + #if 0 + /* XXX KDM */ + ti_free_jumbos(dev); + #endif + #endif contigfree(sc->ti_rdata, sizeof(struct ti_ring_data), M_DEVBUF); ifmedia_removeall(&sc->ifmedia); *************** *** 1763,1768 **** --- 2482,2546 ---- return(0); } + #ifndef PRIVATE_JUMBOS + + /* + * If hdr_len is 0, that means that header splitting wasn't done on + * this packet for some reason. The two most likely reasons are that + * the protocol isn't a supported protocol for splitting, or this + * packet had a fragment offset that wasn't 0. + * + * The header length, if it is non-zero, will always be the length of + * the headers on the packet, but that length could be longer than the + * first mbuf. So we take the minimum of the two as the actual + * length. + */ + static __inline void + ti_hdr_split(struct mbuf *top, int hdr_len, int pkt_len, int idx) + { + int i = 0; + int lengths[4] = {0, 0, 0, 0}; + struct mbuf *m, *mp; + + if (hdr_len != 0) + top->m_len = min(hdr_len, top->m_len); + pkt_len -= top->m_len; + lengths[i++] = top->m_len; + + mp = top; + for (m = top->m_next; m && pkt_len; m = m->m_next) { + m->m_len = m->m_ext.ext_size = min(m->m_len, pkt_len); + pkt_len -= m->m_len; + lengths[i++] = m->m_len; + mp = m; + } + + #if 0 + if (hdr_len != 0) + printf("got split packet: "); + else + printf("got non-split packet: "); + + printf("%d,%d,%d,%d = %d\n", lengths[0], + lengths[1], lengths[2], lengths[3], + lengths[0] + lengths[1] + lengths[2] + + lengths[3]); + #endif + + if (pkt_len) + panic("header splitting didn't"); + + if (m) { + m_freem(m); + mp->m_next = NULL; + + } + if (mp->m_next != NULL) + panic("ti_hdr_split: last mbuf in chain should be null"); + } + + #endif + /* * Frame reception handling. This is called if there's a frame * on the receive return list. *************** *** 1805,1810 **** --- 2583,2589 ---- #endif if (cur_rx->ti_flags & TI_BDFLAG_JUMBO_RING) { + TI_INC(sc->ti_jumbo, TI_JUMBO_RX_RING_CNT); m = sc->ti_cdata.ti_rx_jumbo_chain[rxidx]; sc->ti_cdata.ti_rx_jumbo_chain[rxidx] = NULL; *************** *** 1818,1823 **** --- 2597,2612 ---- ti_newbuf_jumbo(sc, sc->ti_jumbo, m); continue; } + #ifdef PRIVATE_JUMBOS + m->m_len = cur_rx->ti_len; + #else /* PRIVATE_JUMBOS */ + #ifdef TI_JUMBO_HDRSPLIT + ti_hdr_split(m, TI_HOSTADDR(cur_rx->ti_addr), + cur_rx->ti_len, rxidx); + #else /* TI_JUMBO_HDRSPLIT */ + m_adj(m, cur_rx->ti_len - m->m_pkthdr.len); + #endif /* TI_JUMBO_HDRSPLIT */ + #endif /* PRIVATE_JUMBOS */ } else if (cur_rx->ti_flags & TI_BDFLAG_MINI_RING) { TI_INC(sc->ti_mini, TI_MINI_RX_RING_CNT); m = sc->ti_cdata.ti_rx_mini_chain[rxidx]; *************** *** 1832,1837 **** --- 2621,2627 ---- ti_newbuf_mini(sc, sc->ti_mini, m); continue; } + m->m_len = cur_rx->ti_len; } else { TI_INC(sc->ti_std, TI_STD_RX_RING_CNT); m = sc->ti_cdata.ti_rx_std_chain[rxidx]; *************** *** 1846,1854 **** ti_newbuf_std(sc, sc->ti_std, m); continue; } } ! m->m_pkthdr.len = m->m_len = cur_rx->ti_len; ifp->if_ipackets++; eh = mtod(m, struct ether_header *); m->m_pkthdr.rcvif = ifp; --- 2636,2645 ---- ti_newbuf_std(sc, sc->ti_std, m); continue; } + m->m_len = cur_rx->ti_len; } ! m->m_pkthdr.len = cur_rx->ti_len; ifp->if_ipackets++; eh = mtod(m, struct ether_header *); m->m_pkthdr.rcvif = ifp; *************** *** 1948,1959 **** sc = xsc; ifp = &sc->arpcom.ac_if; ! #ifdef notdef /* Avoid this for now -- checking this register is expensive. */ /* Make sure this is really our interrupt. */ if (!(CSR_READ_4(sc, TI_MISC_HOST_CTL) & TI_MHC_INTSTATE)) return; ! #endif /* Ack interrupt and stop others from occuring. */ CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1); --- 2739,2750 ---- sc = xsc; ifp = &sc->arpcom.ac_if; ! /*#ifdef notdef*/ /* Avoid this for now -- checking this register is expensive. */ /* Make sure this is really our interrupt. */ if (!(CSR_READ_4(sc, TI_MISC_HOST_CTL) & TI_MHC_INTSTATE)) return; ! /*#endif*/ /* Ack interrupt and stop others from occuring. */ CSR_WRITE_4(sc, TI_MB_HOSTINTR, 1); *************** *** 2085,2091 **** if (sc->ti_hwrev == TI_HWREV_TIGON) sc->ti_rdata->ti_tx_ring_nic[cur % 128].ti_flags |= ! TI_BDFLAG_END; else sc->ti_rdata->ti_tx_ring[cur].ti_flags |= TI_BDFLAG_END; sc->ti_cdata.ti_tx_chain[cur] = m_head; --- 2876,2882 ---- if (sc->ti_hwrev == TI_HWREV_TIGON) sc->ti_rdata->ti_tx_ring_nic[cur % 128].ti_flags |= ! TI_BDFLAG_END; else sc->ti_rdata->ti_tx_ring[cur].ti_flags |= TI_BDFLAG_END; sc->ti_cdata.ti_tx_chain[cur] = m_head; *************** *** 2184,2189 **** --- 2975,2984 ---- splx(s); + /* Register the device */ + sc->dev = make_dev(&ti_cdevsw, sc->ti_unit, UID_ROOT, GID_OPERATOR, + 0600, "ti%d", sc->ti_unit); + return; } *************** *** 2441,2453 **** --- 3236,3568 ---- return(error); } + static int + ti_open(dev_t dev, int flags, int fmt, struct proc *p) + { + int unit, s; + struct ti_softc *sc; + + unit = minor(dev) & 0xff; + + sc = ti_lookup_softc(unit); + + if (sc == NULL) + return(ENODEV); + + s = splimp(); + sc->ti_flags |= TI_FLAG_DEBUGING; + splx(s); + + return(0); + } + + static int + ti_close(dev_t dev, int flag, int fmt, struct proc *p) + { + int unit, s; + struct ti_softc *sc; + + unit = minor(dev) & 0xff; + + sc = ti_lookup_softc(unit); + + if (sc == NULL) + return(ENODEV); + + s = splimp(); + sc->ti_flags &= ~TI_FLAG_DEBUGING; + splx(s); + + return(0); + } + + /* + * This ioctl routine goes along with the Tigon character device. + */ + static int + ti_ioctl2(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p) + { + int unit, error; + struct ti_softc *sc; + + unit = minor(dev) & 0xff; + + sc = ti_lookup_softc(unit); + + if (sc == NULL) + return(ENODEV); + + error = 0; + + switch(cmd) { + case TIIOCGETSTATS: + { + struct ti_stats *outstats; + + outstats = (struct ti_stats *)addr; + + bcopy(&sc->ti_rdata->ti_info.ti_stats, outstats, + sizeof(struct ti_stats)); + break; + } + case TIIOCGETPARAMS: + { + struct ti_params *params; + + params = (struct ti_params *)addr; + + params->ti_stat_ticks = sc->ti_stat_ticks; + params->ti_rx_coal_ticks = sc->ti_rx_coal_ticks; + params->ti_tx_coal_ticks = sc->ti_tx_coal_ticks; + params->ti_rx_max_coal_bds = sc->ti_rx_max_coal_bds; + params->ti_tx_max_coal_bds = sc->ti_tx_max_coal_bds; + params->ti_tx_buf_ratio = sc->ti_tx_buf_ratio; + params->param_mask = TI_PARAM_ALL; + + error = 0; + + break; + } + case TIIOCSETPARAMS: + { + struct ti_params *params; + + params = (struct ti_params *)addr; + + if (params->param_mask & TI_PARAM_STAT_TICKS) { + sc->ti_stat_ticks = params->ti_stat_ticks; + CSR_WRITE_4(sc, TI_GCR_STAT_TICKS, sc->ti_stat_ticks); + } + + if (params->param_mask & TI_PARAM_RX_COAL_TICKS) { + sc->ti_rx_coal_ticks = params->ti_rx_coal_ticks; + CSR_WRITE_4(sc, TI_GCR_RX_COAL_TICKS, + sc->ti_rx_coal_ticks); + } + + if (params->param_mask & TI_PARAM_TX_COAL_TICKS) { + sc->ti_tx_coal_ticks = params->ti_tx_coal_ticks; + CSR_WRITE_4(sc, TI_GCR_TX_COAL_TICKS, + sc->ti_tx_coal_ticks); + } + + if (params->param_mask & TI_PARAM_RX_COAL_BDS) { + sc->ti_rx_max_coal_bds = params->ti_rx_max_coal_bds; + CSR_WRITE_4(sc, TI_GCR_RX_MAX_COAL_BD, + sc->ti_rx_max_coal_bds); + } + + if (params->param_mask & TI_PARAM_TX_COAL_BDS) { + sc->ti_tx_max_coal_bds = params->ti_tx_max_coal_bds; + CSR_WRITE_4(sc, TI_GCR_TX_MAX_COAL_BD, + sc->ti_tx_max_coal_bds); + } + + if (params->param_mask & TI_PARAM_TX_BUF_RATIO) { + sc->ti_tx_buf_ratio = params->ti_tx_buf_ratio; + CSR_WRITE_4(sc, TI_GCR_TX_BUFFER_RATIO, + sc->ti_tx_buf_ratio); + } + + error = 0; + + break; + } + case TIIOCSETTRACE: { + ti_trace_type trace_type; + + trace_type = *(ti_trace_type *)addr; + + /* + * Set tracing to whatever the user asked for. Setting + * this register to 0 should have the effect of disabling + * tracing. + */ + CSR_WRITE_4(sc, TI_GCR_NIC_TRACING, trace_type); + + error = 0; + + break; + } + case TIIOCGETTRACE: { + struct ti_trace_buf *trace_buf; + u_int32_t trace_start, cur_trace_ptr, trace_len; + + trace_buf = (struct ti_trace_buf *)addr; + + trace_start = CSR_READ_4(sc, TI_GCR_NICTRACE_START); + cur_trace_ptr = CSR_READ_4(sc, TI_GCR_NICTRACE_PTR); + trace_len = CSR_READ_4(sc, TI_GCR_NICTRACE_LEN); + + printf("ti%d: trace_start = %#x, cur_trace_ptr = %#x, " + "trace_len = %d\n", sc->ti_unit, trace_start, + cur_trace_ptr, trace_len); + printf("ti%d: trace_buf->buf_len = %d\n", sc->ti_unit, + trace_buf->buf_len); + /* XXX KDM pick up here */ + + error = ti_copy_mem(sc, trace_start, min(trace_len, + trace_buf->buf_len), + (caddr_t)trace_buf->buf, 1, 1); + + if (error == 0) { + trace_buf->fill_len = min(trace_len, + trace_buf->buf_len); + if (cur_trace_ptr < trace_start) + trace_buf->cur_trace_ptr = + trace_start - cur_trace_ptr; + else + trace_buf->cur_trace_ptr = + cur_trace_ptr - trace_start; + } else + trace_buf->fill_len = 0; + + + break; + } + + /* + * XXX KDM + * For debugging, five ioctls are needed: + * ALT_ATTACH + * ALT_READ_TG_REG + * ALT_WRITE_TG_REG + * ALT_READ_TG_MEM + * ALT_WRITE_TG_MEM + */ + case ALT_ATTACH: + /* + * From what I can tell, Alteon's Solaris Tigon driver + * only has one character device, so you have to attach + * to the Tigon board you're interested in. This seems + * like a not-so-good way to do things, since unless you + * subsequently specify the unit number of the device + * you're interested in in every ioctl, you'll only be + * able to debug one board at a time. + */ + error = 0; + break; + case ALT_READ_TG_MEM: + case ALT_WRITE_TG_MEM: + { + struct tg_mem *mem_param; + u_int32_t sram_end, scratch_end; + + mem_param = (struct tg_mem *)addr; + + if (sc->ti_hwrev == TI_HWREV_TIGON) { + sram_end = TI_END_SRAM_I; + scratch_end = TI_END_SCRATCH_I; + } else { + sram_end = TI_END_SRAM_II; + scratch_end = TI_END_SCRATCH_II; + } + + /* + * For now, we'll only handle accessing regular SRAM, + * nothing else. + */ + if ((mem_param->tgAddr >= TI_BEG_SRAM) + && ((mem_param->tgAddr + mem_param->len) <= sram_end)) { + /* + * In this instance, we always copy to/from user + * space, so the user space argument is set to 1. + */ + error = ti_copy_mem(sc, mem_param->tgAddr, + mem_param->len, + mem_param->userAddr, 1, + (cmd == ALT_READ_TG_MEM) ? 1 : 0); + } else if ((mem_param->tgAddr >= TI_BEG_SCRATCH) + && (mem_param->tgAddr <= scratch_end)) { + error = ti_copy_scratch(sc, mem_param->tgAddr, + mem_param->len, + mem_param->userAddr, 1, + (cmd == ALT_READ_TG_MEM) ? + 1 : 0, TI_PROCESSOR_A); + } else if ((mem_param->tgAddr >= TI_BEG_SCRATCH_B_DEBUG) + && (mem_param->tgAddr <= TI_BEG_SCRATCH_B_DEBUG)) { + if (sc->ti_hwrev == TI_HWREV_TIGON) { + printf("ti%d: invalid memory range for " + "Tigon I\n", sc->ti_unit); + error = EINVAL; + break; + } + error = ti_copy_scratch(sc, mem_param->tgAddr - + TI_SCRATCH_DEBUG_OFF, + mem_param->len, + mem_param->userAddr, 1, + (cmd == ALT_READ_TG_MEM) ? + 1 : 0, TI_PROCESSOR_B); + } else { + printf("ti%d: memory address %#x len %d is out of " + "supported range\n", sc->ti_unit, + mem_param->tgAddr, mem_param->len); + error = EINVAL; + } + + break; + } + case ALT_READ_TG_REG: + case ALT_WRITE_TG_REG: + { + struct tg_reg *regs; + u_int32_t tmpval; + + regs = (struct tg_reg *)addr; + + /* + * Make sure the address in question isn't out of range. + */ + if (regs->addr > TI_REG_MAX) { + error = EINVAL; + break; + } + if (cmd == ALT_READ_TG_REG) { + bus_space_read_region_4(sc->ti_btag, sc->ti_bhandle, + regs->addr, &tmpval, 1); + regs->data = ntohl(tmpval); + #if 0 + if ((regs->addr == TI_CPU_STATE) + || (regs->addr == TI_CPU_CTL_B)) { + printf("ti%d: register %#x = %#x\n", + sc->ti_unit, regs->addr, tmpval); + } + #endif + } else { + tmpval = htonl(regs->data); + bus_space_write_region_4(sc->ti_btag, sc->ti_bhandle, + regs->addr, &tmpval, 1); + } + + break; + } + default: + error = ENOTTY; + break; + } + return(error); + } + static void ti_watchdog(ifp) struct ifnet *ifp; { + int s; struct ti_softc *sc; sc = ifp->if_softc; + /* + * When we're debugging, the chip is often stopped for long periods + * of time, and that would normally cause the watchdog timer to fire. + * Since that impedes debugging, we don't want to do that. + */ + s = splimp(); + if (sc->ti_flags & TI_FLAG_DEBUGING) { + splx(s); + return; + } + splx(s); + printf("ti%d: watchdog timeout -- resetting\n", sc->ti_unit); ti_stop(sc); ti_init(sc); *** src/sys/pci/if_tireg.h.orig --- src/sys/pci/if_tireg.h *************** *** 134,141 **** * Firmware revision that we want. */ #define TI_FIRMWARE_MAJOR 0xc ! #define TI_FIRMWARE_MINOR 0x3 ! #define TI_FIRMWARE_FIX 0x15 /* * Miscelaneous Local Control register. --- 134,141 ---- * Firmware revision that we want. */ #define TI_FIRMWARE_MAJOR 0xc ! #define TI_FIRMWARE_MINOR 0x4 ! #define TI_FIRMWARE_FIX 0xb /* * Miscelaneous Local Control register. *************** *** 341,346 **** --- 341,347 ---- #define TI_OPMODE_NO_TX_INTRS 0x00002000 #define TI_OPMODE_NO_RX_INTRS 0x00004000 #define TI_OPMODE_FATAL_ENB 0x40000000 /* not yet implimented */ + #define TI_OPMODE_JUMBO_HDRSPLIT 0x00008000 /* * DMA configuration thresholds. *************** *** 416,421 **** --- 417,469 ---- #define TI_MEM_MAX 0x7FFFFF /* + * Maximum register address on the Tigon. + */ + #define TI_REG_MAX 0x3fff + + /* + * These values were taken from Alteon's tg.h. + */ + #define TI_BEG_SRAM 0x0 /* host thinks it's here */ + #define TI_BEG_SCRATCH 0xc00000 /* beg of scratch pad area */ + #define TI_END_SRAM_II 0x800000 /* end of SRAM, for 2 MB stuffed */ + #define TI_END_SCRATCH_II 0xc04000 /* end of scratch pad CPU A (16KB) */ + #define TI_END_SCRATCH_B 0xc02000 /* end of scratch pad CPU B (8KB) */ + #define TI_BEG_SCRATCH_B_DEBUG 0xd00000 /* beg of scratch pad for ioctl */ + #define TI_END_SCRATCH_B_DEBUG 0xd02000 /* end of scratch pad for ioctl */ + #define TI_SCRATCH_DEBUG_OFF 0x100000 /* offset for ioctl usage */ + #define TI_END_SRAM_I 0x200000 /* end of SRAM, for 2 MB stuffed */ + #define TI_END_SCRATCH_I 0xc00800 /* end of scratch pad area (2KB) */ + #define TI_BEG_PROM 0x40000000 /* beg of PROM, special access */ + #define TI_BEG_FLASH 0x80000000 /* beg of EEPROM, special access */ + #define TI_END_FLASH 0x80100000 /* end of EEPROM for 1 MB stuff */ + #define TI_BEG_SER_EEPROM 0xa0000000 /* beg of Serial EEPROM (fake out) */ + #define TI_END_SER_EEPROM 0xa0002000 /* end of Serial EEPROM (fake out) */ + #define TI_BEG_REGS 0xc0000000 /* beg of register area */ + #define TI_END_REGS 0xc0000400 /* end of register area */ + #define TI_END_WRITE_REGS 0xc0000180 /* can't write GPRs currently */ + #define TI_BEG_REGS2 0xc0000200 /* beg of second writeable reg area */ + /* the EEPROM is byte addressable in a pretty odd way */ + #define EEPROM_BYTE_LOC 0xff000000 + + /* + * From Alteon's tg.h. + */ + #define TI_PROCESSOR_A 0 + #define TI_PROCESSOR_B 1 + #define TI_CPU_A TG_PROCESSOR_A + #define TI_CPU_B TG_PROCESSOR_B + + /* + * Following macro can be used to access to any of the CPU registers + * It will adjust the address appropriately. + * Parameters: + * reg - The register to access, e.g TI_CPU_CONTROL + * cpu - cpu, i.e PROCESSOR_A or PROCESSOR_B (or TI_CPU_A or TI_CPU_B) + */ + #define CPU_REG(reg, cpu) ((reg) + (cpu) * 0x100) + + /* * Even on the alpha, pci addresses are 32-bit quantities */ *************** *** 480,671 **** }; /* - * Tigon statistics counters. - */ - struct ti_stats { - /* - * MAC stats, taken from RFC 1643, ethernet-like MIB - */ - volatile u_int32_t dot3StatsAlignmentErrors; /* 0 */ - volatile u_int32_t dot3StatsFCSErrors; /* 1 */ - volatile u_int32_t dot3StatsSingleCollisionFrames; /* 2 */ - volatile u_int32_t dot3StatsMultipleCollisionFrames; /* 3 */ - volatile u_int32_t dot3StatsSQETestErrors; /* 4 */ - volatile u_int32_t dot3StatsDeferredTransmissions; /* 5 */ - volatile u_int32_t dot3StatsLateCollisions; /* 6 */ - volatile u_int32_t dot3StatsExcessiveCollisions; /* 7 */ - volatile u_int32_t dot3StatsInternalMacTransmitErrors; /* 8 */ - volatile u_int32_t dot3StatsCarrierSenseErrors; /* 9 */ - volatile u_int32_t dot3StatsFrameTooLongs; /* 10 */ - volatile u_int32_t dot3StatsInternalMacReceiveErrors; /* 11 */ - /* - * interface stats, taken from RFC 1213, MIB-II, interfaces group - */ - volatile u_int32_t ifIndex; /* 12 */ - volatile u_int32_t ifType; /* 13 */ - volatile u_int32_t ifMtu; /* 14 */ - volatile u_int32_t ifSpeed; /* 15 */ - volatile u_int32_t ifAdminStatus; /* 16 */ - #define IF_ADMIN_STATUS_UP 1 - #define IF_ADMIN_STATUS_DOWN 2 - #define IF_ADMIN_STATUS_TESTING 3 - volatile u_int32_t ifOperStatus; /* 17 */ - #define IF_OPER_STATUS_UP 1 - #define IF_OPER_STATUS_DOWN 2 - #define IF_OPER_STATUS_TESTING 3 - #define IF_OPER_STATUS_UNKNOWN 4 - #define IF_OPER_STATUS_DORMANT 5 - volatile u_int32_t ifLastChange; /* 18 */ - volatile u_int32_t ifInDiscards; /* 19 */ - volatile u_int32_t ifInErrors; /* 20 */ - volatile u_int32_t ifInUnknownProtos; /* 21 */ - volatile u_int32_t ifOutDiscards; /* 22 */ - volatile u_int32_t ifOutErrors; /* 23 */ - volatile u_int32_t ifOutQLen; /* deprecated */ /* 24 */ - volatile u_int8_t ifPhysAddress[8]; /* 8 bytes */ /* 25 - 26 */ - volatile u_int8_t ifDescr[32]; /* 27 - 34 */ - u_int32_t alignIt; /* align to 64 bit for u_int64_ts following */ - /* - * more interface stats, taken from RFC 1573, MIB-IIupdate, - * interfaces group - */ - volatile u_int64_t ifHCInOctets; /* 36 - 37 */ - volatile u_int64_t ifHCInUcastPkts; /* 38 - 39 */ - volatile u_int64_t ifHCInMulticastPkts; /* 40 - 41 */ - volatile u_int64_t ifHCInBroadcastPkts; /* 42 - 43 */ - volatile u_int64_t ifHCOutOctets; /* 44 - 45 */ - volatile u_int64_t ifHCOutUcastPkts; /* 46 - 47 */ - volatile u_int64_t ifHCOutMulticastPkts; /* 48 - 49 */ - volatile u_int64_t ifHCOutBroadcastPkts; /* 50 - 51 */ - volatile u_int32_t ifLinkUpDownTrapEnable; /* 52 */ - volatile u_int32_t ifHighSpeed; /* 53 */ - volatile u_int32_t ifPromiscuousMode; /* 54 */ - volatile u_int32_t ifConnectorPresent; /* follow link state 55 */ - /* - * Host Commands - */ - volatile u_int32_t nicCmdsHostState; /* 56 */ - volatile u_int32_t nicCmdsFDRFiltering; /* 57 */ - volatile u_int32_t nicCmdsSetRecvProdIndex; /* 58 */ - volatile u_int32_t nicCmdsUpdateGencommStats; /* 59 */ - volatile u_int32_t nicCmdsResetJumboRing; /* 60 */ - volatile u_int32_t nicCmdsAddMCastAddr; /* 61 */ - volatile u_int32_t nicCmdsDelMCastAddr; /* 62 */ - volatile u_int32_t nicCmdsSetPromiscMode; /* 63 */ - volatile u_int32_t nicCmdsLinkNegotiate; /* 64 */ - volatile u_int32_t nicCmdsSetMACAddr; /* 65 */ - volatile u_int32_t nicCmdsClearProfile; /* 66 */ - volatile u_int32_t nicCmdsSetMulticastMode; /* 67 */ - volatile u_int32_t nicCmdsClearStats; /* 68 */ - volatile u_int32_t nicCmdsSetRecvJumboProdIndex; /* 69 */ - volatile u_int32_t nicCmdsSetRecvMiniProdIndex; /* 70 */ - volatile u_int32_t nicCmdsRefreshStats; /* 71 */ - volatile u_int32_t nicCmdsUnknown; /* 72 */ - /* - * NIC Events - */ - volatile u_int32_t nicEventsNICFirmwareOperational; /* 73 */ - volatile u_int32_t nicEventsStatsUpdated; /* 74 */ - volatile u_int32_t nicEventsLinkStateChanged; /* 75 */ - volatile u_int32_t nicEventsError; /* 76 */ - volatile u_int32_t nicEventsMCastListUpdated; /* 77 */ - volatile u_int32_t nicEventsResetJumboRing; /* 78 */ - /* - * Ring manipulation - */ - volatile u_int32_t nicRingSetSendProdIndex; /* 79 */ - volatile u_int32_t nicRingSetSendConsIndex; /* 80 */ - volatile u_int32_t nicRingSetRecvReturnProdIndex; /* 81 */ - /* - * Interrupts - */ - volatile u_int32_t nicInterrupts; /* 82 */ - volatile u_int32_t nicAvoidedInterrupts; /* 83 */ - /* - * BD Coalessing Thresholds - */ - volatile u_int32_t nicEventThresholdHit; /* 84 */ - volatile u_int32_t nicSendThresholdHit; /* 85 */ - volatile u_int32_t nicRecvThresholdHit; /* 86 */ - /* - * DMA Attentions - */ - volatile u_int32_t nicDmaRdOverrun; /* 87 */ - volatile u_int32_t nicDmaRdUnderrun; /* 88 */ - volatile u_int32_t nicDmaWrOverrun; /* 89 */ - volatile u_int32_t nicDmaWrUnderrun; /* 90 */ - volatile u_int32_t nicDmaWrMasterAborts; /* 91 */ - volatile u_int32_t nicDmaRdMasterAborts; /* 92 */ - /* - * NIC Resources - */ - volatile u_int32_t nicDmaWriteRingFull; /* 93 */ - volatile u_int32_t nicDmaReadRingFull; /* 94 */ - volatile u_int32_t nicEventRingFull; /* 95 */ - volatile u_int32_t nicEventProducerRingFull; /* 96 */ - volatile u_int32_t nicTxMacDescrRingFull; /* 97 */ - volatile u_int32_t nicOutOfTxBufSpaceFrameRetry; /* 98 */ - volatile u_int32_t nicNoMoreWrDMADescriptors; /* 99 */ - volatile u_int32_t nicNoMoreRxBDs; /* 100 */ - volatile u_int32_t nicNoSpaceInReturnRing; /* 101 */ - volatile u_int32_t nicSendBDs; /* current count 102 */ - volatile u_int32_t nicRecvBDs; /* current count 103 */ - volatile u_int32_t nicJumboRecvBDs; /* current count 104 */ - volatile u_int32_t nicMiniRecvBDs; /* current count 105 */ - volatile u_int32_t nicTotalRecvBDs; /* current count 106 */ - volatile u_int32_t nicTotalSendBDs; /* current count 107 */ - volatile u_int32_t nicJumboSpillOver; /* 108 */ - volatile u_int32_t nicSbusHangCleared; /* 109 */ - volatile u_int32_t nicEnqEventDelayed; /* 110 */ - /* - * Stats from MAC rx completion - */ - volatile u_int32_t nicMacRxLateColls; /* 111 */ - volatile u_int32_t nicMacRxLinkLostDuringPkt; /* 112 */ - volatile u_int32_t nicMacRxPhyDecodeErr; /* 113 */ - volatile u_int32_t nicMacRxMacAbort; /* 114 */ - volatile u_int32_t nicMacRxTruncNoResources; /* 115 */ - /* - * Stats from the mac_stats area - */ - volatile u_int32_t nicMacRxDropUla; /* 116 */ - volatile u_int32_t nicMacRxDropMcast; /* 117 */ - volatile u_int32_t nicMacRxFlowControl; /* 118 */ - volatile u_int32_t nicMacRxDropSpace; /* 119 */ - volatile u_int32_t nicMacRxColls; /* 120 */ - /* - * MAC RX Attentions - */ - volatile u_int32_t nicMacRxTotalAttns; /* 121 */ - volatile u_int32_t nicMacRxLinkAttns; /* 122 */ - volatile u_int32_t nicMacRxSyncAttns; /* 123 */ - volatile u_int32_t nicMacRxConfigAttns; /* 124 */ - volatile u_int32_t nicMacReset; /* 125 */ - volatile u_int32_t nicMacRxBufDescrAttns; /* 126 */ - volatile u_int32_t nicMacRxBufAttns; /* 127 */ - volatile u_int32_t nicMacRxZeroFrameCleanup; /* 128 */ - volatile u_int32_t nicMacRxOneFrameCleanup; /* 129 */ - volatile u_int32_t nicMacRxMultipleFrameCleanup; /* 130 */ - volatile u_int32_t nicMacRxTimerCleanup; /* 131 */ - volatile u_int32_t nicMacRxDmaCleanup; /* 132 */ - /* - * Stats from the mac_stats area - */ - volatile u_int32_t nicMacTxCollisionHistogram[15]; /* 133 */ - /* - * MAC TX Attentions - */ - volatile u_int32_t nicMacTxTotalAttns; /* 134 */ - /* - * NIC Profile - */ - volatile u_int32_t nicProfile[32]; /* 135 */ - /* - * Pat to 1024 bytes. - */ - u_int32_t pad[75]; - }; - /* * Tigon general information block. This resides in host memory * and contains the status counters, ring control blocks and * producer pointers. --- 528,533 ---- *************** *** 1055,1061 **** --- 917,927 ---- */ struct ti_ring_data { struct ti_rx_desc ti_rx_std_ring[TI_STD_RX_RING_CNT]; + #ifdef PRIVATE_JUMBOS struct ti_rx_desc ti_rx_jumbo_ring[TI_JUMBO_RX_RING_CNT]; + #else + struct ti_rx_desc_ext ti_rx_jumbo_ring[TI_JUMBO_RX_RING_CNT]; + #endif struct ti_rx_desc ti_rx_mini_ring[TI_MINI_RX_RING_CNT]; struct ti_rx_desc ti_rx_return_ring[TI_RETURN_RING_CNT]; struct ti_event_desc ti_event_ring[TI_EVENT_RING_CNT]; *************** *** 1111,1117 **** --- 977,990 ---- SLIST_ENTRY(ti_jpool_entry) jpool_entries; }; + typedef enum { + TI_FLAG_NONE = 0x00, + TI_FLAG_DEBUGING = 0x01, + TI_FLAG_WAIT_FOR_LINK = 0x02 + } ti_flag_vals; + struct ti_softc { + STAILQ_ENTRY(ti_softc) ti_links; struct arpcom arpcom; /* interface info */ bus_space_handle_t ti_bhandle; vm_offset_t ti_vhandle; *************** *** 1146,1151 **** --- 1019,1026 ---- u_int32_t ti_tx_buf_ratio; int ti_if_flags; int ti_txcnt; + ti_flag_vals ti_flags; + dev_t dev; }; /* *** src/sys/pci/ti_fw.h.orig --- src/sys/pci/ti_fw.h *************** *** 2,36 **** * Firmware for Alteon Tigon 1 chip. * Generated by genfw.c * ! * $FreeBSD: src/sys/pci/ti_fw.h,v 1.8 2000/04/24 17:44:44 wpaul Exp $ */ static int tigonFwReleaseMajor = 0xc; ! static int tigonFwReleaseMinor = 0x3; ! static int tigonFwReleaseFix = 0x15; static u_int32_t tigonFwStartAddr = 0x00004000; static u_int32_t tigonFwTextAddr = 0x00004000; ! static int tigonFwTextLen = 0x10ad0; ! static u_int32_t tigonFwRodataAddr = 0x00014ad0; ! static int tigonFwRodataLen = 0xaa0; ! static u_int32_t tigonFwDataAddr = 0x000155a0; ! static int tigonFwDataLen = 0x160; ! static u_int32_t tigonFwSbssAddr = 0x00015700; ! static int tigonFwSbssLen = 0x2c; ! static u_int32_t tigonFwBssAddr = 0x00015730; static int tigonFwBssLen = 0x2080; static u_int32_t tigonFwText[] = { 0x10000003, 0x0, 0xd, 0xd, 0x3c1d0001, ! 0x8fbd55d4, 0x3a0f021, 0x3c100000, 0x26104000, 0xc00100c, 0x0, 0xd, 0x27bdffd8, 0x3c1cc000, 0x3c1b0013, 0x377bd800, 0xd021, 0x3c170013, 0x36f75418, 0x2e02021, 0x340583e8, 0xafbf0024, 0xc002488, 0xafb00020, 0xc0023e8, ! 0x0, 0x3c040001, 0x24844b34, 0x24050001, ! 0x2e03021, 0x3821, 0x3c100001, 0x261077b0, 0xafb00010, 0xc002403, 0xafbb0014, 0x3c02000f, 0x3442ffff, 0x2021024, 0x362102b, 0x10400009, ! 0x24050003, 0x3c040001, 0x24844b40, 0x2003021, 0x3603821, 0x3c020010, 0xafa20010, 0xc002403, 0xafa00014, 0x2021, 0x3405c000, 0x3c010001, 0x370821, 0xa02083b0, 0x3c010001, 0x370821, --- 2,36 ---- * Firmware for Alteon Tigon 1 chip. * Generated by genfw.c * ! * $FreeBSD$ */ static int tigonFwReleaseMajor = 0xc; ! static int tigonFwReleaseMinor = 0x4; ! static int tigonFwReleaseFix = 0xb; static u_int32_t tigonFwStartAddr = 0x00004000; static u_int32_t tigonFwTextAddr = 0x00004000; ! static int tigonFwTextLen = 0x11140; ! static u_int32_t tigonFwRodataAddr = 0x00015140; ! static int tigonFwRodataLen = 0xac0; ! static u_int32_t tigonFwDataAddr = 0x00015c20; ! static int tigonFwDataLen = 0x170; ! static u_int32_t tigonFwSbssAddr = 0x00015d90; ! static int tigonFwSbssLen = 0x38; ! static u_int32_t tigonFwBssAddr = 0x00015dd0; static int tigonFwBssLen = 0x2080; static u_int32_t tigonFwText[] = { 0x10000003, 0x0, 0xd, 0xd, 0x3c1d0001, ! 0x8fbd5c54, 0x3a0f021, 0x3c100000, 0x26104000, 0xc00100c, 0x0, 0xd, 0x27bdffd8, 0x3c1cc000, 0x3c1b0013, 0x377bd800, 0xd021, 0x3c170013, 0x36f75418, 0x2e02021, 0x340583e8, 0xafbf0024, 0xc002488, 0xafb00020, 0xc0023e8, ! 0x0, 0x3c040001, 0x248451a4, 0x24050001, ! 0x2e03021, 0x3821, 0x3c100001, 0x26107e50, 0xafb00010, 0xc002403, 0xafbb0014, 0x3c02000f, 0x3442ffff, 0x2021024, 0x362102b, 0x10400009, ! 0x24050003, 0x3c040001, 0x248451b0, 0x2003021, 0x3603821, 0x3c020010, 0xafa20010, 0xc002403, 0xafa00014, 0x2021, 0x3405c000, 0x3c010001, 0x370821, 0xa02083b0, 0x3c010001, 0x370821, *************** *** 68,74 **** 0x0, 0x8ee20450, 0x8ee30454, 0xaee304fc, 0x8ee204fc, 0x2442e000, 0x2c422001, 0x1440000d, 0x26e40030, 0x8ee20450, 0x8ee30454, 0x3c040001, ! 0x24844b4c, 0x3c050001, 0xafa00010, 0xafa00014, 0x8ee704fc, 0x34a5f000, 0xc002403, 0x603021, 0x26e40030, 0xc002488, 0x24050400, 0x27440080, 0xc002488, 0x24050080, 0x26e4777c, 0xc002488, --- 68,74 ---- 0x0, 0x8ee20450, 0x8ee30454, 0xaee304fc, 0x8ee204fc, 0x2442e000, 0x2c422001, 0x1440000d, 0x26e40030, 0x8ee20450, 0x8ee30454, 0x3c040001, ! 0x248451bc, 0x3c050001, 0xafa00010, 0xafa00014, 0x8ee704fc, 0x34a5f000, 0xc002403, 0x603021, 0x26e40030, 0xc002488, 0x24050400, 0x27440080, 0xc002488, 0x24050080, 0x26e4777c, 0xc002488, *************** *** 78,84 **** 0x3442ca00, 0x2021, 0x24030002, 0xaee30074, 0xaee30070, 0xaee2006c, 0x240203e8, 0xaee20104, 0x24020001, 0xaee30100, 0xaee2010c, 0x3c030001, ! 0x641821, 0x906355a0, 0x2e41021, 0x24840001, 0xa043009c, 0x2c82000f, 0x1440fff8, 0x0, 0x8f820040, 0x2e41821, 0x24840001, 0x21702, 0x24420030, 0xa062009c, 0x2e41021, 0xa040009c, --- 78,84 ---- 0x3442ca00, 0x2021, 0x24030002, 0xaee30074, 0xaee30070, 0xaee2006c, 0x240203e8, 0xaee20104, 0x24020001, 0xaee30100, 0xaee2010c, 0x3c030001, ! 0x641821, 0x90635c20, 0x2e41021, 0x24840001, 0xa043009c, 0x2c82000f, 0x1440fff8, 0x0, 0x8f820040, 0x2e41821, 0x24840001, 0x21702, 0x24420030, 0xa062009c, 0x2e41021, 0xa040009c, *************** *** 124,130 **** 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x54c0000c, ! 0xaee90608, 0x3c040001, 0x24844b58, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x8001223, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, --- 124,130 ---- 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x54c0000c, ! 0xaee90608, 0x3c040001, 0x248451c8, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x8001223, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, *************** *** 150,170 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x14c0001b, 0x0, ! 0x3c040001, 0x24844b60, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, ! 0x8001223, 0x8ee201b0, 0x3c040001, 0x24844b6c, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20160, 0x3c040001, ! 0x24844b78, 0x3405f001, 0x24420001, 0xaee20160, 0x8ee20160, 0x3021, 0x3821, 0xafa00010, 0xc002403, 0xafa00014, 0x8001238, 0x0, 0x3c020001, 0x2442f5a8, 0x21100, 0x21182, 0x431025, 0x3c010001, 0xac221278, 0x96e2045a, 0x30420003, 0x10400025, 0x3c050fff, 0x8ee204c8, 0x34a5ffff, 0x34420a00, 0xaee204c8, 0x8ee304c8, ! 0x3c040001, 0x24844b84, 0x24020001, 0xa2e204ec, 0xa2e204ed, 0x3c020002, 0x621825, 0x3c020001, 0x2442a390, 0x451024, 0x21082, 0xaee304c8, 0x3c030800, 0x431025, 0x3c010001, 0xac221220, --- 150,170 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x14c0001b, 0x0, ! 0x3c040001, 0x248451d0, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, ! 0x8001223, 0x8ee201b0, 0x3c040001, 0x248451dc, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20160, 0x3c040001, ! 0x248451e8, 0x3405f001, 0x24420001, 0xaee20160, 0x8ee20160, 0x3021, 0x3821, 0xafa00010, 0xc002403, 0xafa00014, 0x8001238, 0x0, 0x3c020001, 0x2442f5a8, 0x21100, 0x21182, 0x431025, 0x3c010001, 0xac221278, 0x96e2045a, 0x30420003, 0x10400025, 0x3c050fff, 0x8ee204c8, 0x34a5ffff, 0x34420a00, 0xaee204c8, 0x8ee304c8, ! 0x3c040001, 0x248451f4, 0x24020001, 0xa2e204ec, 0xa2e204ed, 0x3c020002, 0x621825, 0x3c020001, 0x2442a390, 0x451024, 0x21082, 0xaee304c8, 0x3c030800, 0x431025, 0x3c010001, 0xac221220, *************** *** 207,213 **** 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x54c0000c, 0xaee90608, 0x3c040001, ! 0x24844b58, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x800136d, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, 0x50400001, 0x27663000, --- 207,213 ---- 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x54c0000c, 0xaee90608, 0x3c040001, ! 0x248451c8, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x800136d, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, 0x50400001, 0x27663000, *************** *** 232,248 **** 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, ! 0x14c0001b, 0x0, 0x3c040001, 0x24844b60, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x800136d, 0x8ee201b0, ! 0x3c040001, 0x24844b6c, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, ! 0x8ee20160, 0x3c040001, 0x24844b78, 0x3405f002, 0x24420001, 0xaee20160, 0x8ee20160, 0x3021, 0x3821, 0xafa00010, 0xc002403, 0xafa00014, ! 0x96e6047a, 0x96e7046a, 0x3c040001, 0x24844b90, 0x24050012, 0xafa00010, 0xc002403, 0xafa00014, 0xc004500, 0x0, 0xc002318, 0x0, 0x3c060001, 0x34c63800, 0xaee00608, 0xaf400228, --- 232,248 ---- 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, ! 0x14c0001b, 0x0, 0x3c040001, 0x248451d0, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x800136d, 0x8ee201b0, ! 0x3c040001, 0x248451dc, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, ! 0x8ee20160, 0x3c040001, 0x248451e8, 0x3405f002, 0x24420001, 0xaee20160, 0x8ee20160, 0x3021, 0x3821, 0xafa00010, 0xc002403, 0xafa00014, ! 0x96e6047a, 0x96e7046a, 0x3c040001, 0x24845200, 0x24050012, 0xafa00010, 0xc002403, 0xafa00014, 0xc004500, 0x0, 0xc002318, 0x0, 0x3c060001, 0x34c63800, 0xaee00608, 0xaf400228, *************** *** 285,291 **** 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x54c0000c, 0xaee90608, 0x3c040001, ! 0x24844b58, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x80014a5, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, 0x50400001, 0x27663000, --- 285,291 ---- 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x54c0000c, 0xaee90608, 0x3c040001, ! 0x248451c8, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x80014a5, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, 0x50400001, 0x27663000, *************** *** 310,320 **** 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, ! 0x14c0001b, 0x0, 0x3c040001, 0x24844b60, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x80014a5, 0x8ee201b0, ! 0x3c040001, 0x24844b6c, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20154, 0x24420001, 0xaee20154, 0xc0014dc, --- 310,320 ---- 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, ! 0x14c0001b, 0x0, 0x3c040001, 0x248451d0, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x80014a5, 0x8ee201b0, ! 0x3c040001, 0x248451dc, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20154, 0x24420001, 0xaee20154, 0xc0014dc, *************** *** 336,342 **** 0xaee07b8c, 0xaee07b84, 0x3c010001, 0x370821, 0xac2083bc, 0x3c010001, 0x370821, 0x3e00008, 0xa02083b9, 0x27bdffd8, 0xafbf0024, 0xafb00020, ! 0x8f820054, 0x3c030001, 0x8c635658, 0x24420067, 0x1060000d, 0xaf820058, 0x3c020001, 0x571021, 0x904283b8, 0x10400005, 0x3c030200, 0x3c010001, 0x370821, 0x8001503, 0xa02083b8, 0x8ee20000, --- 336,342 ---- 0xaee07b8c, 0xaee07b84, 0x3c010001, 0x370821, 0xac2083bc, 0x3c010001, 0x370821, 0x3e00008, 0xa02083b9, 0x27bdffd8, 0xafbf0024, 0xafb00020, ! 0x8f820054, 0x3c030001, 0x8c635cd8, 0x24420067, 0x1060000d, 0xaf820058, 0x3c020001, 0x571021, 0x904283b8, 0x10400005, 0x3c030200, 0x3c010001, 0x370821, 0x8001503, 0xa02083b8, 0x8ee20000, *************** *** 354,360 **** 0x0, 0x3c030001, 0x771821, 0x8c6383d4, 0x8f8200b4, 0x1462007c, 0x0, 0x3c070001, 0xf73821, 0x8ce783d0, 0x8f8200b0, 0x3c040001, ! 0x24844c00, 0xafa00014, 0xafa20010, 0x8f8600b0, 0x3c050005, 0xc002403, 0x34a50900, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f830104, 0x8f8200b0, 0x34420001, 0xaf8200b0, 0xaf830104, 0x8f830120, --- 354,360 ---- 0x0, 0x3c030001, 0x771821, 0x8c6383d4, 0x8f8200b4, 0x1462007c, 0x0, 0x3c070001, 0xf73821, 0x8ce783d0, 0x8f8200b0, 0x3c040001, ! 0x24845270, 0xafa00014, 0xafa20010, 0x8f8600b0, 0x3c050005, 0xc002403, 0x34a50900, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f830104, 0x8f8200b0, 0x34420001, 0xaf8200b0, 0xaf830104, 0x8f830120, *************** *** 382,391 **** 0xac820000, 0x24020001, 0xac820004, 0x8f82011c, 0x2403fffd, 0x431024, 0xaf82011c, 0x8ee201e4, 0x3c070001, 0xf73821, 0x8ce783d0, 0x24420001, ! 0xaee201e4, 0x8ee201e4, 0x3c040001, 0x24844c0c, 0x80015bd, 0xafa00010, 0x8f820104, 0x3c010001, 0x370821, 0xac2283d0, 0x8f8200b4, 0x3c070001, ! 0xf73821, 0x8ce783d0, 0x3c040001, 0x24844c14, 0x3c010001, 0x370821, 0xac2283d4, 0xafa00010, 0xafa00014, 0x8f8600b0, 0x3c050005, 0xc002403, 0x34a50900, 0x80015cc, 0x0, 0x8f820104, --- 382,391 ---- 0xac820000, 0x24020001, 0xac820004, 0x8f82011c, 0x2403fffd, 0x431024, 0xaf82011c, 0x8ee201e4, 0x3c070001, 0xf73821, 0x8ce783d0, 0x24420001, ! 0xaee201e4, 0x8ee201e4, 0x3c040001, 0x2484527c, 0x80015bd, 0xafa00010, 0x8f820104, 0x3c010001, 0x370821, 0xac2283d0, 0x8f8200b4, 0x3c070001, ! 0xf73821, 0x8ce783d0, 0x3c040001, 0x24845284, 0x3c010001, 0x370821, 0xac2283d4, 0xafa00010, 0xafa00014, 0x8f8600b0, 0x3c050005, 0xc002403, 0x34a50900, 0x80015cc, 0x0, 0x8f820104, *************** *** 418,424 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600000b, 0x24100001, ! 0x8ee204e4, 0x3c040001, 0x24844c1c, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f006, 0x16000003, 0x24020001, 0x8001650, 0xa2e204f4, 0x8ee20170, 0x24420001, --- 418,424 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600000b, 0x24100001, ! 0x8ee204e4, 0x3c040001, 0x2484528c, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f006, 0x16000003, 0x24020001, 0x8001650, 0xa2e204f4, 0x8ee20170, 0x24420001, *************** *** 448,454 **** 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600000b, 0x24100001, 0x8ee2724c, 0x3c040001, ! 0x24844c28, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0xc002403, 0x34a5f008, 0x56000001, 0xaee00e1c, 0x8ee20174, 0x24420001, 0xaee20174, 0x8ee20174, 0x8ee24e24, 0x10400019, --- 448,454 ---- 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600000b, 0x24100001, 0x8ee2724c, 0x3c040001, ! 0x24845298, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0xc002403, 0x34a5f008, 0x56000001, 0xaee00e1c, 0x8ee20174, 0x24420001, 0xaee20174, 0x8ee20174, 0x8ee24e24, 0x10400019, *************** *** 559,569 **** 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x14620003, 0x3c050009, 0x800197c, 0x24100001, 0x3c040001, ! 0x24844c34, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x800187b, 0x34a5f011, 0x3c040001, ! 0x24844c40, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x34a5f010, 0xc002403, 0x8021, ! 0x800197c, 0x0, 0x3c040001, 0x24844c4c, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0x8001975, 0x34a5f00f, 0x8ee20608, 0x8f430228, 0x24420001, 0x304900ff, 0x512300e2, 0xafa00010, --- 559,569 ---- 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x14620003, 0x3c050009, 0x800197c, 0x24100001, 0x3c040001, ! 0x248452a4, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x800187b, 0x34a5f011, 0x3c040001, ! 0x248452b0, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x34a5f010, 0xc002403, 0x8021, ! 0x800197c, 0x0, 0x3c040001, 0x248452bc, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0x8001975, 0x34a5f00f, 0x8ee20608, 0x8f430228, 0x24420001, 0x304900ff, 0x512300e2, 0xafa00010, *************** *** 594,600 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x5600000c, 0xaee90608, ! 0x3c040001, 0x24844c58, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x800197c, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, 0x50400001, --- 594,600 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x5600000c, 0xaee90608, ! 0x3c040001, 0x248452c8, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x800197c, 0x0, 0x8f830120, 0x27623800, 0x24660020, 0xc2102b, 0x50400001, *************** *** 620,629 **** 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600001d, 0x24100001, 0x3c040001, ! 0x24844c60, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x800197c, ! 0x8ee201b0, 0x3c040001, 0x24844c6c, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0x34a5f005, 0xc002403, 0x0, 0x8ee201ac, 0x8021, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x1200000c, --- 620,629 ---- 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600001d, 0x24100001, 0x3c040001, ! 0x248452d0, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x800197c, ! 0x8ee201b0, 0x3c040001, 0x248452dc, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0x34a5f005, 0xc002403, 0x0, 0x8ee201ac, 0x8021, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x1200000c, *************** *** 631,637 **** 0x8f420238, 0x8ee30158, 0x24630001, 0xaee30158, 0x8ee30158, 0x800198c, 0xaee27278, 0x24020001, 0x3c010001, 0x370821, 0xa02283b0, 0x3c020001, ! 0x8c425658, 0x10400187, 0x0, 0x8ee27b84, 0x24430001, 0x284200c9, 0x144001a4, 0xaee37b84, 0x8ee204d4, 0x30420002, 0x14400119, 0xaee07b84, 0x8ee204d4, 0x3c030600, 0x34631000, 0x34420002, --- 631,637 ---- 0x8f420238, 0x8ee30158, 0x24630001, 0xaee30158, 0x8ee30158, 0x800198c, 0xaee27278, 0x24020001, 0x3c010001, 0x370821, 0xa02283b0, 0x3c020001, ! 0x8c425cd8, 0x10400187, 0x0, 0x8ee27b84, 0x24430001, 0x284200c9, 0x144001a4, 0xaee37b84, 0x8ee204d4, 0x30420002, 0x14400119, 0xaee07b84, 0x8ee204d4, 0x3c030600, 0x34631000, 0x34420002, *************** *** 695,706 **** 0x56000006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x10620022, 0x0, 0x3c040001, ! 0x24844c34, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, ! 0x8001aad, 0x0, 0x3c040001, 0x24844c40, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x8001aad, 0x0, ! 0x3c040001, 0x24844c4c, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee2015c, 0x24420001, 0xaee2015c, 0x8ee2015c, --- 695,706 ---- 0x56000006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x10620022, 0x0, 0x3c040001, ! 0x248452a4, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, ! 0x8001aad, 0x0, 0x3c040001, 0x248452b0, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x8001aad, 0x0, ! 0x3c040001, 0x248452bc, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee2015c, 0x24420001, 0xaee2015c, 0x8ee2015c, *************** *** 737,743 **** 0xaf820044, 0x8f820044, 0x34420040, 0xaf820044, 0x8ee27b88, 0x24430001, 0x28421389, 0x14400005, 0xaee37b88, 0x8f820044, 0x38420020, 0xaf820044, ! 0xaee07b88, 0xc0045c2, 0x0, 0x8fbf0024, 0x8fb00020, 0x3e00008, 0x27bd0028, 0x27bdffb8, 0xafbf0044, 0xafb60040, 0xafb5003c, 0xafb40038, 0xafb30034, 0xafb20030, 0xafb1002c, 0xafb00028, --- 737,743 ---- 0xaf820044, 0x8f820044, 0x34420040, 0xaf820044, 0x8ee27b88, 0x24430001, 0x28421389, 0x14400005, 0xaee37b88, 0x8f820044, 0x38420020, 0xaf820044, ! 0xaee07b88, 0xc004603, 0x0, 0x8fbf0024, 0x8fb00020, 0x3e00008, 0x27bd0028, 0x27bdffb8, 0xafbf0044, 0xafb60040, 0xafb5003c, 0xafb40038, 0xafb30034, 0xafb20030, 0xafb1002c, 0xafb00028, *************** *** 747,764 **** 0xaee2016c, 0x80022f4, 0x8ee2016c, 0x32c20001, 0x10400004, 0x24020001, 0xaf820064, 0x80022f4, 0x0, 0x32c20002, 0x1440000c, 0x3c050003, ! 0x3c040001, 0x24844ce4, 0x34a50001, 0x2c03021, 0x3821, 0xafa00010, 0xc002403, 0xafa00014, 0x2402fff8, 0x80022f4, 0xaf820064, 0x8f43022c, 0x8f42010c, 0x5062000c, 0xafa00010, 0x8f42022c, 0x21080, 0x5a1021, 0x8c420300, 0xafa20020, 0x8f42022c, 0x24070001, 0x24420001, 0x3042003f, ! 0x8001b80, 0xaf42022c, 0x3c040001, 0x24844cf0, 0xafa00014, 0x8f46022c, 0x8f47010c, 0x3c050003, 0xc002403, 0x34a5f01f, 0x3821, 0x14e00003, 0x0, 0x80022ed, 0xaf960064, 0x93a20020, 0x2443ffff, 0x2c620011, 0x10400658, 0x31080, ! 0x3c010001, 0x220821, 0x8c224da8, 0x400008, 0x0, 0x8fa20020, 0x30420fff, 0xaee20e0c, 0x8f820060, 0x34420200, 0xaf820060, 0x8ee20118, 0x24420001, 0xaee20118, 0x80022e8, 0x8ee20118, --- 747,764 ---- 0xaee2016c, 0x80022f4, 0x8ee2016c, 0x32c20001, 0x10400004, 0x24020001, 0xaf820064, 0x80022f4, 0x0, 0x32c20002, 0x1440000c, 0x3c050003, ! 0x3c040001, 0x24845354, 0x34a50001, 0x2c03021, 0x3821, 0xafa00010, 0xc002403, 0xafa00014, 0x2402fff8, 0x80022f4, 0xaf820064, 0x8f43022c, 0x8f42010c, 0x5062000c, 0xafa00010, 0x8f42022c, 0x21080, 0x5a1021, 0x8c420300, 0xafa20020, 0x8f42022c, 0x24070001, 0x24420001, 0x3042003f, ! 0x8001b80, 0xaf42022c, 0x3c040001, 0x24845360, 0xafa00014, 0x8f46022c, 0x8f47010c, 0x3c050003, 0xc002403, 0x34a5f01f, 0x3821, 0x14e00003, 0x0, 0x80022ed, 0xaf960064, 0x93a20020, 0x2443ffff, 0x2c620011, 0x10400658, 0x31080, ! 0x3c010001, 0x220821, 0x8c225418, 0x400008, 0x0, 0x8fa20020, 0x30420fff, 0xaee20e0c, 0x8f820060, 0x34420200, 0xaf820060, 0x8ee20118, 0x24420001, 0xaee20118, 0x80022e8, 0x8ee20118, *************** *** 774,780 **** 0x8f840054, 0x41442, 0x41c82, 0x431021, 0x41cc2, 0x431023, 0x41d02, 0x431021, 0x41d42, 0x431023, 0x8001bd0, 0xaee20078, ! 0x3c040001, 0x24844cfc, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a50004, 0x8ee20110, 0x24420001, 0xaee20110, 0x80022e8, 0x8ee20110, 0x27440212, 0xc0022fe, 0x24050006, 0x3049001f, --- 774,780 ---- 0x8f840054, 0x41442, 0x41c82, 0x431021, 0x41cc2, 0x431023, 0x41d02, 0x431021, 0x41d42, 0x431023, 0x8001bd0, 0xaee20078, ! 0x3c040001, 0x2484536c, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a50004, 0x8ee20110, 0x24420001, 0xaee20110, 0x80022e8, 0x8ee20110, 0x27440212, 0xc0022fe, 0x24050006, 0x3049001f, *************** *** 790,796 **** 0x2c820080, 0x1440fff8, 0x410c0, 0x4c10010, 0x618c0, 0x610c0, 0x571821, 0x8c63737c, 0x571021, 0xafa30010, 0x8c427380, 0x3c040001, ! 0x24844d08, 0xafa20014, 0x8f470214, 0x3c050003, 0xc002403, 0x34a50013, 0x8001c90, 0x3c020800, 0x97440212, 0x771021, 0xa444737e, 0x8f440214, 0x771021, 0x2e31821, 0xac447380, 0x34028000, --- 790,796 ---- 0x2c820080, 0x1440fff8, 0x410c0, 0x4c10010, 0x618c0, 0x610c0, 0x571821, 0x8c63737c, 0x571021, 0xafa30010, 0x8c427380, 0x3c040001, ! 0x24845378, 0xafa20014, 0x8f470214, 0x3c050003, 0xc002403, 0x34a50013, 0x8001c90, 0x3c020800, 0x97440212, 0x771021, 0xa444737e, 0x8f440214, 0x771021, 0x2e31821, 0xac447380, 0x34028000, *************** *** 808,814 **** 0x24840001, 0x2c820080, 0x1440fff8, 0x410c0, 0x4c10023, 0x618c0, 0x910c0, 0x571821, 0x8c63727c, 0x571021, 0xafa30010, 0x8c427280, ! 0x3c040001, 0x24844d14, 0xafa20014, 0x8f470214, 0x3c050003, 0xc002403, 0x34a5f017, 0x8001c90, 0x3c020800, 0x8f430210, 0xb71021, 0xac43777c, 0x8f430214, 0xb71021, 0xac437780, 0x3c020001, --- 808,814 ---- 0x24840001, 0x2c820080, 0x1440fff8, 0x410c0, 0x4c10023, 0x618c0, 0x910c0, 0x571821, 0x8c63727c, 0x571021, 0xafa30010, 0x8c427280, ! 0x3c040001, 0x24845384, 0xafa20014, 0x8f470214, 0x3c050003, 0xc002403, 0x34a5f017, 0x8001c90, 0x3c020800, 0x8f430210, 0xb71021, 0xac43777c, 0x8f430214, 0xb71021, 0xac437780, 0x3c020001, *************** *** 883,895 **** 0x2e22021, 0xac8a0000, 0xac8c0004, 0x54e00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, ! 0x10620022, 0x0, 0x3c040001, 0x24844d20, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x8001da0, ! 0x0, 0x3c040001, 0x24844d2c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x8001da0, 0x0, 0x3c040001, ! 0x24844d38, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20124, 0x24420001, 0xaee20124, 0x8001f97, 0x8ee20124, --- 883,895 ---- 0x2e22021, 0xac8a0000, 0xac8c0004, 0x54e00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, ! 0x10620022, 0x0, 0x3c040001, 0x24845390, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x8001da0, ! 0x0, 0x3c040001, 0x2484539c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x8001da0, 0x0, 0x3c040001, ! 0x248453a8, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20124, 0x24420001, 0xaee20124, 0x8001f97, 0x8ee20124, *************** *** 904,910 **** 0x1221004, 0x21027, 0x621824, 0xaf830228, 0x910c0, 0x2e21821, 0x3402c000, 0x8001e4e, 0xa462727c, 0x8f420214, 0xafa20010, 0x910c0, ! 0x571021, 0x8c42727c, 0x3c040001, 0x24844d44, 0x3c050003, 0xafa20014, 0x8f470210, 0x34a5f01c, 0xc002403, 0x1203021, 0x8001e83, 0x3c020800, 0xb71021, 0x9443727e, 0x97420212, 0x14620019, --- 904,910 ---- 0x1221004, 0x21027, 0x621824, 0xaf830228, 0x910c0, 0x2e21821, 0x3402c000, 0x8001e4e, 0xa462727c, 0x8f420214, 0xafa20010, 0x910c0, ! 0x571021, 0x8c42727c, 0x3c040001, 0x248453b4, 0x3c050003, 0xafa20014, 0x8f470210, 0x34a5f01c, 0xc002403, 0x1203021, 0x8001e83, 0x3c020800, 0xb71021, 0x9443727e, 0x97420212, 0x14620019, *************** *** 932,938 **** 0x910c0, 0x2e41821, 0x3402c000, 0x15000015, 0xa462737c, 0x910c0, 0x2e21821, 0x34028000, 0x8001e4e, 0xa462727c, 0x571021, 0x8c42727c, ! 0x3c040001, 0x24844d50, 0x3c050003, 0xafa20010, 0x710c0, 0x571021, 0x8c42737c, 0x34a5001e, 0x1203021, 0xc002403, 0xafa20014, 0x8001e83, 0x3c020800, 0x2021, 0x428c0, 0xb71021, --- 932,938 ---- 0x910c0, 0x2e41821, 0x3402c000, 0x15000015, 0xa462737c, 0x910c0, 0x2e21821, 0x34028000, 0x8001e4e, 0xa462727c, 0x571021, 0x8c42727c, ! 0x3c040001, 0x248453c0, 0x3c050003, 0xafa20010, 0x710c0, 0x571021, 0x8c42737c, 0x34a5001e, 0x1203021, 0xc002403, 0xafa20014, 0x8001e83, 0x3c020800, 0x2021, 0x428c0, 0xb71021, *************** *** 1008,1019 **** 0xac8a0000, 0xac8c0004, 0x54e00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x10620022, ! 0x0, 0x3c040001, 0x24844d20, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x8001f93, 0x0, ! 0x3c040001, 0x24844d2c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, ! 0x8001f93, 0x0, 0x3c040001, 0x24844d38, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20128, 0x24420001, --- 1008,1019 ---- 0xac8a0000, 0xac8c0004, 0x54e00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x10620022, ! 0x0, 0x3c040001, 0x24845390, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x8001f93, 0x0, ! 0x3c040001, 0x2484539c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, ! 0x8001f93, 0x0, 0x3c040001, 0x248453a8, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20128, 0x24420001, *************** *** 1025,1031 **** 0x8f820228, 0xaee204dc, 0x2402ffff, 0xaf820228, 0x24020001, 0x8001fbe, 0xa2e204d8, 0x92e204d8, 0x5040000c, 0xa2e004d8, 0x8ee204dc, 0xaf820228, ! 0x8001fbe, 0xa2e004d8, 0x3c040001, 0x24844d58, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f009, 0x8ee2013c, 0x24420001, 0xaee2013c, 0x80022e8, 0x8ee2013c, 0x8fa20020, 0x21200, --- 1025,1031 ---- 0x8f820228, 0xaee204dc, 0x2402ffff, 0xaf820228, 0x24020001, 0x8001fbe, 0xa2e204d8, 0x92e204d8, 0x5040000c, 0xa2e004d8, 0x8ee204dc, 0xaf820228, ! 0x8001fbe, 0xa2e004d8, 0x3c040001, 0x248453c8, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f009, 0x8ee2013c, 0x24420001, 0xaee2013c, 0x80022e8, 0x8ee2013c, 0x8fa20020, 0x21200, *************** *** 1036,1042 **** 0x370821, 0xa02283b2, 0x8001fea, 0xaee40108, 0x8f820220, 0x3c0308ff, 0x3463fff7, 0x431024, 0xaf820220, 0x3c010001, 0x370821, 0xa02083b2, ! 0x8001fea, 0xaee40108, 0x3c040001, 0x24844d64, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f00a, 0x8ee2012c, 0x24420001, 0xaee2012c, 0x80022e8, 0x8ee2012c, 0x8fa20020, 0x21200, --- 1036,1042 ---- 0x370821, 0xa02283b2, 0x8001fea, 0xaee40108, 0x8f820220, 0x3c0308ff, 0x3463fff7, 0x431024, 0xaf820220, 0x3c010001, 0x370821, 0xa02083b2, ! 0x8001fea, 0xaee40108, 0x3c040001, 0x248453d4, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f00a, 0x8ee2012c, 0x24420001, 0xaee2012c, 0x80022e8, 0x8ee2012c, 0x8fa20020, 0x21200, *************** *** 1048,1060 **** 0x571021, 0x904283b2, 0x3c010001, 0x370821, 0x1440000e, 0xa02083b3, 0x8f820220, 0x3c0308ff, 0x3463fff7, 0x431024, 0x8002018, 0xaf820220, ! 0x3c040001, 0x24844d70, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f00b, 0x8ee20114, 0x24420001, 0xaee20114, 0x80022e8, 0x8ee20114, 0x27840208, 0x27450200, 0xc00249a, 0x24060008, 0x26e40094, 0x27450200, 0xc00249a, 0x24060008, 0x8ee20134, 0x24420001, 0xaee20134, 0x80022e8, ! 0x8ee20134, 0x8f460248, 0x2021, 0xc005010, 0x24050004, 0x8ee20130, 0x24420001, 0xaee20130, 0x80022e8, 0x8ee20130, 0x8ef301cc, 0x8ef401d0, 0x8ef501d8, 0x8ee20140, 0x26e40030, 0x24420001, --- 1048,1060 ---- 0x571021, 0x904283b2, 0x3c010001, 0x370821, 0x1440000e, 0xa02083b3, 0x8f820220, 0x3c0308ff, 0x3463fff7, 0x431024, 0x8002018, 0xaf820220, ! 0x3c040001, 0x248453e0, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f00b, 0x8ee20114, 0x24420001, 0xaee20114, 0x80022e8, 0x8ee20114, 0x27840208, 0x27450200, 0xc00249a, 0x24060008, 0x26e40094, 0x27450200, 0xc00249a, 0x24060008, 0x8ee20134, 0x24420001, 0xaee20134, 0x80022e8, ! 0x8ee20134, 0x8f460248, 0x2021, 0xc005108, 0x24050004, 0x8ee20130, 0x24420001, 0xaee20130, 0x80022e8, 0x8ee20130, 0x8ef301cc, 0x8ef401d0, 0x8ef501d8, 0x8ee20140, 0x26e40030, 0x24420001, *************** *** 1068,1074 **** 0xaee20104, 0xaee40100, 0xaee3010c, 0x8f820220, 0x30420008, 0x10400004, 0x0, 0xaee30108, 0x8002061, 0x2021, 0xaee40108, 0x2021, ! 0x3c030001, 0x641821, 0x906355b0, 0x2e41021, 0x24840001, 0xa043009c, 0x2c82000f, 0x1440fff8, 0x0, 0x8f820040, 0x2e41821, 0x24840001, 0x21702, 0x24420030, 0xa062009c, 0x2e41021, --- 1068,1074 ---- 0xaee20104, 0xaee40100, 0xaee3010c, 0x8f820220, 0x30420008, 0x10400004, 0x0, 0xaee30108, 0x8002061, 0x2021, 0xaee40108, 0x2021, ! 0x3c030001, 0x641821, 0x90635c30, 0x2e41021, 0x24840001, 0xa043009c, 0x2c82000f, 0x1440fff8, 0x0, 0x8f820040, 0x2e41821, 0x24840001, 0x21702, 0x24420030, 0xa062009c, 0x2e41021, *************** *** 1148,1160 **** 0x2e22021, 0xac8a0000, 0xac8c0004, 0x54e00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, ! 0x10620022, 0x0, 0x3c040001, 0x24844d20, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x80021c4, ! 0x0, 0x3c040001, 0x24844d2c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x80021c4, 0x0, 0x3c040001, ! 0x24844d38, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20120, 0x24420001, 0xaee20120, 0x8ee20120, 0x8ee20168, --- 1148,1160 ---- 0x2e22021, 0xac8a0000, 0xac8c0004, 0x54e00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, ! 0x10620022, 0x0, 0x3c040001, 0x24845390, 0xafa00010, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x80021c4, ! 0x0, 0x3c040001, 0x2484539c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x80021c4, 0x0, 0x3c040001, ! 0x248453a8, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20120, 0x24420001, 0xaee20120, 0x8ee20120, 0x8ee20168, *************** *** 1164,1170 **** 0x8f820220, 0x30420008, 0x14400002, 0x24020001, 0x24020002, 0xaee20108, 0x8ee2011c, 0x24420001, 0xaee2011c, 0x80022e8, 0x8ee2011c, 0x3c040001, ! 0x24844d7c, 0xafa00010, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f00f, 0x93a20020, 0x3c030700, 0x34631000, 0x431025, 0xafa20018, 0x8ee20608, 0x8f430228, 0x24420001, 0x304900ff, --- 1164,1170 ---- 0x8f820220, 0x30420008, 0x14400002, 0x24020001, 0x24020002, 0xaee20108, 0x8ee2011c, 0x24420001, 0xaee2011c, 0x80022e8, 0x8ee2011c, 0x3c040001, ! 0x248453ec, 0xafa00010, 0xafa00014, 0x8fa60020, 0x3c050003, 0xc002403, 0x34a5f00f, 0x93a20020, 0x3c030700, 0x34631000, 0x431025, 0xafa20018, 0x8ee20608, 0x8f430228, 0x24420001, 0x304900ff, *************** *** 1195,1201 **** 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, ! 0x54e0000c, 0xaee90608, 0x3c040001, 0x24844d84, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x80022e0, 0x0, 0x8f830120, 0x27623800, 0x24660020, --- 1195,1201 ---- 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, ! 0x54e0000c, 0xaee90608, 0x3c040001, 0x248453f4, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f000, 0x80022e0, 0x0, 0x8f830120, 0x27623800, 0x24660020, *************** *** 1221,1231 **** 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x14e0001b, ! 0x0, 0x3c040001, 0x24844d8c, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x80022e0, 0x8ee201b0, 0x3c040001, ! 0x24844d98, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20150, 0x24420001, 0xaee20150, 0x8ee20150, 0x8ee20160, --- 1221,1231 ---- 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x14e0001b, ! 0x0, 0x3c040001, 0x248453fc, 0xafa00010, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f001, 0x8ee201b0, 0x24420001, 0xaee201b0, 0x80022e0, 0x8ee201b0, 0x3c040001, ! 0x24845408, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f005, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee20150, 0x24420001, 0xaee20150, 0x8ee20150, 0x8ee20160, *************** *** 1252,1258 **** 0xaf82011c, 0x8fbf0010, 0x3e00008, 0x27bd0018, 0x27bdffe0, 0xafbf0018, 0x8f820104, 0xafa20010, 0x8f820100, 0x3c050002, 0xafa20014, 0x8f8600b0, ! 0x8f87011c, 0x3c040001, 0x24844e50, 0xc002403, 0x34a5f000, 0x8f8300b0, 0x3c027f00, 0x621824, 0x3c020400, 0x10620029, 0x43102b, 0x14400008, 0x3c022000, 0x3c020100, 0x10620024, 0x3c020200, --- 1252,1258 ---- 0xaf82011c, 0x8fbf0010, 0x3e00008, 0x27bd0018, 0x27bdffe0, 0xafbf0018, 0x8f820104, 0xafa20010, 0x8f820100, 0x3c050002, 0xafa20014, 0x8f8600b0, ! 0x8f87011c, 0x3c040001, 0x248454c0, 0xc002403, 0x34a5f000, 0x8f8300b0, 0x3c027f00, 0x621824, 0x3c020400, 0x10620029, 0x43102b, 0x14400008, 0x3c022000, 0x3c020100, 0x10620024, 0x3c020200, *************** *** 1269,1275 **** 0x27bd0020, 0x27bdffe0, 0xafbf001c, 0xafb00018, 0x8f820120, 0xafa20010, 0x8f820124, 0x3c050001, 0xafa20014, 0x8f8600a0, 0x8f87011c, 0x3c040001, ! 0x24844e5c, 0xc002403, 0x34a5f000, 0x8f8300a0, 0x3c027f00, 0x621824, 0x3c020400, 0x10620053, 0x8021, 0x43102b, 0x14400008, 0x3c042000, 0x3c020100, 0x1062004d, 0x3c020200, 0x1062003a, --- 1269,1275 ---- 0x27bd0020, 0x27bdffe0, 0xafbf001c, 0xafb00018, 0x8f820120, 0xafa20010, 0x8f820124, 0x3c050001, 0xafa20014, 0x8f8600a0, 0x8f87011c, 0x3c040001, ! 0x248454cc, 0xc002403, 0x34a5f000, 0x8f8300a0, 0x3c027f00, 0x621824, 0x3c020400, 0x10620053, 0x8021, 0x43102b, 0x14400008, 0x3c042000, 0x3c020100, 0x1062004d, 0x3c020200, 0x1062003a, *************** *** 1294,1336 **** 0xaee2019c, 0x80023e3, 0x8ee2019c, 0x8f8200a0, 0x34420001, 0xaf8200a0, 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, 0x0, 0x3c020001, ! 0x8c4255d8, 0x27bdffe8, 0xafbf0014, 0x14400012, ! 0xafb00010, 0x3c100001, 0x26105730, 0x2002021, 0xc002488, 0x24052000, 0x26021fe0, 0x3c010001, ! 0xac225704, 0x3c010001, 0xac225700, 0xaf420250, 0x24022000, 0xaf500254, 0xaf420258, 0x24020001, ! 0x3c010001, 0xac2255d8, 0x8fbf0014, 0x8fb00010, ! 0x3e00008, 0x27bd0018, 0x3c030001, 0x8c635704, 0x8c820000, 0x8fa80010, 0x8fa90014, 0xac620000, ! 0x3c020001, 0x8c425704, 0x8c830004, 0xac430004, 0xac450008, 0x8f840054, 0x2443ffe0, 0xac460010, 0xac470014, 0xac480018, 0xac49001c, 0x3c010001, ! 0xac235704, 0xac44000c, 0x3c020001, 0x24425730, 0x62182b, 0x10600005, 0x0, 0x3c020001, ! 0x8c425700, 0x3c010001, 0xac225704, 0x3c030001, ! 0x8c635704, 0x3c020001, 0x8c4255c0, 0xac620000, ! 0x3c030001, 0x8c635704, 0x3c020001, 0x8c4255c0, 0xac620004, 0x3e00008, 0xaf430250, 0x3c030001, ! 0x8c635704, 0x3c020001, 0x8c4255c0, 0x27bdffd0, 0xafb40020, 0x8fb40040, 0xafb00010, 0x808021, 0xafb50024, 0x8fb50044, 0x8fa40048, 0xafb10014, 0xa08821, 0xafbf0028, 0xafb3001c, 0xafb20018, ! 0xac620000, 0x3c050001, 0x8ca55704, 0x3c020001, ! 0x8c4255c0, 0xc09021, 0xe09821, 0x10800006, 0xaca20004, 0x24a50008, 0xc002490, 0x24060018, 0x800244e, 0x0, 0x24a40008, 0xc002488, ! 0x24050018, 0x3c020001, 0x8c425704, 0x3c050001, ! 0x24a55730, 0x2442ffe0, 0x3c010001, 0xac225704, 0x45102b, 0x10400005, 0x0, 0x3c020001, ! 0x8c425700, 0x3c010001, 0xac225704, 0x3c030001, ! 0x8c635704, 0x8e020000, 0xac620000, 0x3c030001, ! 0x8c635704, 0x8e020004, 0xac620004, 0xac710008, ! 0x8f840054, 0x2462ffe0, 0x3c010001, 0xac225704, 0x45102b, 0xac720010, 0xac730014, 0xac740018, 0xac75001c, 0x10400005, 0xac64000c, 0x3c020001, ! 0x8c425700, 0x3c010001, 0xac225704, 0x3c030001, ! 0x8c635704, 0x3c020001, 0x8c4255c0, 0xac620000, ! 0x3c030001, 0x8c635704, 0x3c020001, 0x8c4255c0, 0xac620004, 0xaf430250, 0x8fbf0028, 0x8fb50024, 0x8fb40020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, 0x27bd0030, 0x10a00005, --- 1294,1336 ---- 0xaee2019c, 0x80023e3, 0x8ee2019c, 0x8f8200a0, 0x34420001, 0xaf8200a0, 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, 0x0, 0x3c020001, ! 0x8c425c58, 0x27bdffe8, 0xafbf0014, 0x14400012, ! 0xafb00010, 0x3c100001, 0x26105dd0, 0x2002021, 0xc002488, 0x24052000, 0x26021fe0, 0x3c010001, ! 0xac225d94, 0x3c010001, 0xac225d90, 0xaf420250, 0x24022000, 0xaf500254, 0xaf420258, 0x24020001, ! 0x3c010001, 0xac225c58, 0x8fbf0014, 0x8fb00010, ! 0x3e00008, 0x27bd0018, 0x3c030001, 0x8c635d94, 0x8c820000, 0x8fa80010, 0x8fa90014, 0xac620000, ! 0x3c020001, 0x8c425d94, 0x8c830004, 0xac430004, 0xac450008, 0x8f840054, 0x2443ffe0, 0xac460010, 0xac470014, 0xac480018, 0xac49001c, 0x3c010001, ! 0xac235d94, 0xac44000c, 0x3c020001, 0x24425dd0, 0x62182b, 0x10600005, 0x0, 0x3c020001, ! 0x8c425d90, 0x3c010001, 0xac225d94, 0x3c030001, ! 0x8c635d94, 0x3c020001, 0x8c425c40, 0xac620000, ! 0x3c030001, 0x8c635d94, 0x3c020001, 0x8c425c40, 0xac620004, 0x3e00008, 0xaf430250, 0x3c030001, ! 0x8c635d94, 0x3c020001, 0x8c425c40, 0x27bdffd0, 0xafb40020, 0x8fb40040, 0xafb00010, 0x808021, 0xafb50024, 0x8fb50044, 0x8fa40048, 0xafb10014, 0xa08821, 0xafbf0028, 0xafb3001c, 0xafb20018, ! 0xac620000, 0x3c050001, 0x8ca55d94, 0x3c020001, ! 0x8c425c40, 0xc09021, 0xe09821, 0x10800006, 0xaca20004, 0x24a50008, 0xc002490, 0x24060018, 0x800244e, 0x0, 0x24a40008, 0xc002488, ! 0x24050018, 0x3c020001, 0x8c425d94, 0x3c050001, ! 0x24a55dd0, 0x2442ffe0, 0x3c010001, 0xac225d94, 0x45102b, 0x10400005, 0x0, 0x3c020001, ! 0x8c425d90, 0x3c010001, 0xac225d94, 0x3c030001, ! 0x8c635d94, 0x8e020000, 0xac620000, 0x3c030001, ! 0x8c635d94, 0x8e020004, 0xac620004, 0xac710008, ! 0x8f840054, 0x2462ffe0, 0x3c010001, 0xac225d94, 0x45102b, 0xac720010, 0xac730014, 0xac740018, 0xac75001c, 0x10400005, 0xac64000c, 0x3c020001, ! 0x8c425d90, 0x3c010001, 0xac225d94, 0x3c030001, ! 0x8c635d94, 0x3c020001, 0x8c425c40, 0xac620000, ! 0x3c030001, 0x8c635d94, 0x3c020001, 0x8c425c40, 0xac620004, 0xaf430250, 0x8fbf0028, 0x8fb50024, 0x8fb40020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, 0x27bd0030, 0x10a00005, *************** *** 1376,1382 **** 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x3c040001, 0xafab0010, 0x8ee27264, 0x3c040001, ! 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f114, 0x8ee27264, 0x34843800, 0x3641821, 0x24420010, 0x43102b, 0x14400073, 0x0, 0x8ee27264, 0x24480010, 0x3641021, --- 1376,1382 ---- 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x3c040001, 0xafab0010, 0x8ee27264, 0x3c040001, ! 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f114, 0x8ee27264, 0x34843800, 0x3641821, 0x24420010, 0x43102b, 0x14400073, 0x0, 0x8ee27264, 0x24480010, 0x3641021, *************** *** 1405,1411 **** 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x2508fffc, 0xafab0010, 0x8ee27264, 0x3c040001, ! 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f125, 0x34028100, 0xa5020000, 0x9582000e, 0x800261d, 0xa5020002, 0x8f850100, 0x27623000, 0x24a60020, 0xc2102b, 0x50400001, --- 1405,1411 ---- 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x2508fffc, 0xafab0010, 0x8ee27264, 0x3c040001, ! 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f125, 0x34028100, 0xa5020000, 0x9582000e, 0x800261d, 0xa5020002, 0x8f850100, 0x27623000, 0x24a60020, 0xc2102b, 0x50400001, *************** *** 1432,1438 **** 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x34028100, 0xafab0010, 0x8ee27264, ! 0x3c040001, 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f015, 0x8ee37264, 0xa462000c, 0x8ee37264, 0x9582000e, 0xa462000e, 0x8002681, 0x24e70004, 0x8f840100, 0x27623000, --- 1432,1438 ---- 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x34028100, 0xafab0010, 0x8ee27264, ! 0x3c040001, 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f015, 0x8ee37264, 0xa462000c, 0x8ee37264, 0x9582000e, 0xa462000e, 0x8002681, 0x24e70004, 0x8f840100, 0x27623000, *************** *** 1458,1464 **** 0x24420001, 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x15200009, 0x3c050004, ! 0xafab0010, 0x8ee27264, 0x3c040001, 0x248450c0, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f004, 0x8ee2725c, 0x30e7ffff, 0x471021, 0xaee2725c, 0x8ee204e4, 0x8ee304fc, 0x8ee47258, 0x21100, --- 1458,1464 ---- 0x24420001, 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x15200009, 0x3c050004, ! 0xafab0010, 0x8ee27264, 0x3c040001, 0x24845730, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f004, 0x8ee2725c, 0x30e7ffff, 0x471021, 0xaee2725c, 0x8ee204e4, 0x8ee304fc, 0x8ee47258, 0x21100, *************** *** 1478,1484 **** 0x8f8200f0, 0x24090001, 0x8fa30018, 0x8fa4001c, 0xac430000, 0xac440004, 0xaf8700f0, 0x15200012, 0xd1142, 0x8f8200f0, 0xafa20010, 0x8f8200f4, ! 0x3c040001, 0x248450cc, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050004, 0xc002403, 0x34a5f005, 0x8ee20088, 0x24420001, 0xaee20088, 0x8ee20088, 0x80028d3, 0xaee0725c, 0x30430003, 0x24020002, --- 1478,1484 ---- 0x8f8200f0, 0x24090001, 0x8fa30018, 0x8fa4001c, 0xac430000, 0xac440004, 0xaf8700f0, 0x15200012, 0xd1142, 0x8f8200f0, 0xafa20010, 0x8f8200f4, ! 0x3c040001, 0x2484573c, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050004, 0xc002403, 0x34a5f005, 0x8ee20088, 0x24420001, 0xaee20088, 0x8ee20088, 0x80028d3, 0xaee0725c, 0x30430003, 0x24020002, *************** *** 1520,1526 **** 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x3c040001, 0xafab0010, ! 0x8ee27264, 0x3c040001, 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f014, 0x8ee27264, 0x34843800, 0x3641821, 0x24420010, 0x43102b, 0x14400073, 0x0, 0x8ee27264, --- 1520,1526 ---- 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x3c040001, 0xafab0010, ! 0x8ee27264, 0x3c040001, 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f014, 0x8ee27264, 0x34843800, 0x3641821, 0x24420010, 0x43102b, 0x14400073, 0x0, 0x8ee27264, *************** *** 1549,1555 **** 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x2508fffc, 0xafab0010, ! 0x8ee27264, 0x3c040001, 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f015, 0x34028100, 0xa5020000, 0x9582000e, 0x800285f, 0xa5020002, 0x8f850100, 0x27623000, 0x24a60020, --- 1549,1555 ---- 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x2508fffc, 0xafab0010, ! 0x8ee27264, 0x3c040001, 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f015, 0x34028100, 0xa5020000, 0x9582000e, 0x800285f, 0xa5020002, 0x8f850100, 0x27623000, 0x24a60020, *************** *** 1576,1582 **** 0x24420001, 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x34028100, ! 0xafab0010, 0x8ee27264, 0x3c040001, 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f016, 0x8ee37264, 0xa462000c, 0x8ee37264, 0x9582000e, 0xa462000e, 0x80028c2, 0x24e70004, --- 1576,1582 ---- 0x24420001, 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000a, 0x34028100, ! 0xafab0010, 0x8ee27264, 0x3c040001, 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x80028be, 0x34a5f016, 0x8ee37264, 0xa462000c, 0x8ee37264, 0x9582000e, 0xa462000e, 0x80028c2, 0x24e70004, *************** *** 1602,1608 **** 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000b, 0x3c050004, 0x3c040001, ! 0x248450d8, 0xafab0010, 0xafa00014, 0x8ee604e4, 0x34a5f017, 0xc002403, 0x30e7ffff, 0x80028e1, 0x0, 0x8ee27264, 0x3c050001, 0x30e4ffff, 0x441021, 0xaee27264, 0x8ee2725c, 0x8ee37264, --- 1602,1608 ---- 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1520000b, 0x3c050004, 0x3c040001, ! 0x24845748, 0xafab0010, 0xafa00014, 0x8ee604e4, 0x34a5f017, 0xc002403, 0x30e7ffff, 0x80028e1, 0x0, 0x8ee27264, 0x3c050001, 0x30e4ffff, 0x441021, 0xaee27264, 0x8ee2725c, 0x8ee37264, *************** *** 1668,1674 **** 0x24420001, 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1540000a, 0x24020001, ! 0xafa90010, 0x8ee27264, 0x3c040001, 0x248450c0, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x8002a4f, 0x34a5f204, 0xa2e204ed, 0x8ee204e8, 0x8ee304fc, 0x8ee47258, 0x3c060001, 0x34c63800, 0x3c010001, --- 1668,1674 ---- 0x24420001, 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1540000a, 0x24020001, ! 0xafa90010, 0x8ee27264, 0x3c040001, 0x24845730, 0x3c050004, 0xafa20014, 0x8ee604e4, 0x8002a4f, 0x34a5f204, 0xa2e204ed, 0x8ee204e8, 0x8ee304fc, 0x8ee47258, 0x3c060001, 0x34c63800, 0x3c010001, *************** *** 1702,1708 **** 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1540000c, 0x30e5ffff, 0x3c040001, ! 0x248450d8, 0x3c050004, 0xafa90010, 0xafa00014, 0x8ee604e4, 0x34a5f237, 0xc002403, 0x30e7ffff, 0x8002a72, 0x0, 0x8ee27264, 0x451021, 0xaee27264, 0x8ee2726c, 0x8ee37264, 0x3c040001, --- 1702,1708 ---- 0xaee24e28, 0x8ee24e28, 0x210c0, 0x24424e38, 0x2e22021, 0x24020005, 0xac820000, 0x24020001, 0xac820004, 0x1540000c, 0x30e5ffff, 0x3c040001, ! 0x24845748, 0x3c050004, 0xafa90010, 0xafa00014, 0x8ee604e4, 0x34a5f237, 0xc002403, 0x30e7ffff, 0x8002a72, 0x0, 0x8ee27264, 0x451021, 0xaee27264, 0x8ee2726c, 0x8ee37264, 0x3c040001, *************** *** 1726,1732 **** 0x8f830108, 0x21140, 0x621821, 0xaf830108, 0xac800000, 0x8cc20018, 0x2443fffe, 0x2c620013, 0x104000c1, 0x31080, 0x3c010001, 0x220821, ! 0x8c225100, 0x400008, 0x0, 0x8ee204f0, 0x471021, 0xaee204f0, 0x8ee204f0, 0x8f43023c, 0x43102b, 0x144000be, 0x0, 0x8ee304e4, 0x8ee204f8, 0x506200ba, 0xa2e004f4, 0x8f830120, --- 1726,1732 ---- 0x8f830108, 0x21140, 0x621821, 0xaf830108, 0xac800000, 0x8cc20018, 0x2443fffe, 0x2c620013, 0x104000c1, 0x31080, 0x3c010001, 0x220821, ! 0x8c225770, 0x400008, 0x0, 0x8ee204f0, 0x471021, 0xaee204f0, 0x8ee204f0, 0x8f43023c, 0x43102b, 0x144000be, 0x0, 0x8ee304e4, 0x8ee204f8, 0x506200ba, 0xa2e004f4, 0x8f830120, *************** *** 1753,1759 **** 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600000b, 0x24100001, 0x8ee204e4, ! 0x3c040001, 0x248450e4, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f006, 0x16000003, 0x24020001, 0x8002b71, 0xa2e204f4, 0x8ee20170, 0x24420001, 0xaee20170, --- 1753,1759 ---- 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0xac820000, 0x24020001, 0xac820004, 0x5600000b, 0x24100001, 0x8ee204e4, ! 0x3c040001, 0x24845754, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f006, 0x16000003, 0x24020001, 0x8002b71, 0xa2e204f4, 0x8ee20170, 0x24420001, 0xaee20170, *************** *** 1774,1780 **** 0x8002b71, 0xaee20000, 0x8ee2014c, 0x3c010001, 0x370821, 0xa02083e0, 0x24420001, 0xaee2014c, 0x8002b71, 0x8ee2014c, 0x94c7000e, 0x8cc2001c, ! 0x3c040001, 0x248450f0, 0xafa60014, 0xafa20010, 0x8cc60018, 0x3c050008, 0xc002403, 0x34a50910, 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, 0x27bdff98, 0xafbf0060, 0xafbe005c, 0xafb60058, --- 1774,1780 ---- 0x8002b71, 0xaee20000, 0x8ee2014c, 0x3c010001, 0x370821, 0xa02083e0, 0x24420001, 0xaee2014c, 0x8002b71, 0x8ee2014c, 0x94c7000e, 0x8cc2001c, ! 0x3c040001, 0x24845760, 0xafa60014, 0xafa20010, 0x8cc60018, 0x3c050008, 0xc002403, 0x34a50910, 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, 0x27bdff98, 0xafbf0060, 0xafbe005c, 0xafb60058, *************** *** 1783,1789 **** 0xafa00024, 0x106203e7, 0xafa0002c, 0x3c1e0001, 0x37de3800, 0x3c0bffff, 0x8f930108, 0x8e620018, 0x8f830104, 0x2443fffe, 0x2c620014, 0x104003cf, ! 0x31080, 0x3c010001, 0x220821, 0x8c225150, 0x400008, 0x0, 0x9663000e, 0x8ee2725c, 0x8ee404f0, 0x431021, 0xaee2725c, 0x8e63001c, 0x96e20458, 0x24840001, 0xaee404f0, 0x24630001, --- 1783,1789 ---- 0xafa00024, 0x106203e7, 0xafa0002c, 0x3c1e0001, 0x37de3800, 0x3c0bffff, 0x8f930108, 0x8e620018, 0x8f830104, 0x2443fffe, 0x2c620014, 0x104003cf, ! 0x31080, 0x3c010001, 0x220821, 0x8c2257c0, 0x400008, 0x0, 0x9663000e, 0x8ee2725c, 0x8ee404f0, 0x431021, 0xaee2725c, 0x8e63001c, 0x96e20458, 0x24840001, 0xaee404f0, 0x24630001, *************** *** 1812,1818 **** 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0x240c0001, 0xac820000, 0xac8c0004, 0x5600000d, 0x24100001, 0x8ee204e4, ! 0x3c040001, 0x248450e4, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0x34a5f006, 0xc002403, 0xafab0038, 0x8fab0038, 0x1200030a, 0x240c0001, 0x8002f19, 0x0, 0x966c001c, --- 1812,1818 ---- 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0x240c0001, 0xac820000, 0xac8c0004, 0x5600000d, 0x24100001, 0x8ee204e4, ! 0x3c040001, 0x24845754, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0x34a5f006, 0xc002403, 0xafab0038, 0x8fab0038, 0x1200030a, 0x240c0001, 0x8002f19, 0x0, 0x966c001c, *************** *** 2006,2012 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0x240c0001, 0xac820000, 0xac8c0004, 0x5600000d, 0x24100001, ! 0x8ee204e4, 0x3c040001, 0x248450e4, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0x34a5f006, 0xc002403, 0xafab0038, 0x8fab0038, 0x16000003, 0x240c0001, 0x8002f5c, 0xa2ec04f4, --- 2006,2012 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020012, 0x240c0001, 0xac820000, 0xac8c0004, 0x5600000d, 0x24100001, ! 0x8ee204e4, 0x3c040001, 0x24845754, 0xafa00014, 0xafa20010, 0x8ee60608, 0x8f470228, 0x3c050009, 0x34a5f006, 0xc002403, 0xafab0038, 0x8fab0038, 0x16000003, 0x240c0001, 0x8002f5c, 0xa2ec04f4, *************** *** 2061,2067 **** 0x8821, 0x8f8200e4, 0x24110001, 0x8c430000, 0x8c440004, 0xafa30018, 0xafa4001c, 0x1620000e, 0x3c02ffff, 0x8f8200c4, 0xafa20010, 0x8f8200c8, ! 0x3c040001, 0x24845200, 0xafa20014, 0x8f8600e0, 0x8f8700e4, 0x3c050006, 0xc002403, 0x34a5f000, 0x80034cc, 0x0, 0x8fa3001c, 0x8fb20018, 0x3074ffff, 0x2694fffc, 0x621024, 0x10400058, --- 2061,2067 ---- 0x8821, 0x8f8200e4, 0x24110001, 0x8c430000, 0x8c440004, 0xafa30018, 0xafa4001c, 0x1620000e, 0x3c02ffff, 0x8f8200c4, 0xafa20010, 0x8f8200c8, ! 0x3c040001, 0x24845870, 0xafa20014, 0x8f8600e0, 0x8f8700e4, 0x3c050006, 0xc002403, 0x34a5f000, 0x80034cc, 0x0, 0x8fa3001c, 0x8fb20018, 0x3074ffff, 0x2694fffc, 0x621024, 0x10400058, *************** *** 2159,2169 **** 0x862021, 0xaee400c0, 0xaee500c4, 0x8ee20058, 0x24420001, 0xaee20058, 0x8ee20058, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x8f8200e0, ! 0xafa20010, 0x8f8200e4, 0x3c040001, 0x24845208, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050006, 0xc002403, 0x34a5f003, 0x80034cc, 0x0, 0x8ee25240, 0xafa20010, 0x8ee25244, 0x3c040001, ! 0x24845214, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0x3c050006, 0xc002403, 0x34a5f002, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x8ee20000, 0x8ee301c0, 0x2403ffbf, 0x431024, 0x8003470, 0xaee20000, --- 2159,2169 ---- 0x862021, 0xaee400c0, 0xaee500c4, 0x8ee20058, 0x24420001, 0xaee20058, 0x8ee20058, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x8f8200e0, ! 0xafa20010, 0x8f8200e4, 0x3c040001, 0x24845878, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050006, 0xc002403, 0x34a5f003, 0x80034cc, 0x0, 0x8ee25240, 0xafa20010, 0x8ee25244, 0x3c040001, ! 0x24845884, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0x3c050006, 0xc002403, 0x34a5f002, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x8ee20000, 0x8ee301c0, 0x2403ffbf, 0x431024, 0x8003470, 0xaee20000, *************** *** 2215,2221 **** 0x50550003, 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac960000, 0xac9e0004, 0x16200018, ! 0x3c050006, 0x8e020018, 0x3c040001, 0x24845220, 0xafa20010, 0x8e020000, 0x8e030004, 0x34a5f009, 0x2003021, 0xc002403, 0xafa30014, 0x93a20037, 0x10400216, 0x340f8100, 0x8e420004, 0x8e430008, --- 2215,2221 ---- 0x50550003, 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac960000, 0xac9e0004, 0x16200018, ! 0x3c050006, 0x8e020018, 0x3c040001, 0x24845890, 0xafa20010, 0x8e020000, 0x8e030004, 0x34a5f009, 0x2003021, 0xc002403, 0xafa30014, 0x93a20037, 0x10400216, 0x340f8100, 0x8e420004, 0x8e430008, *************** *** 2248,2254 **** 0x210c0, 0x24425038, 0x2e22021, 0xac960000, 0xac9e0004, 0x1620000d, 0x0, 0xa60c000a, 0xa60a000e, 0x8f820100, 0xafa20010, 0x8f820104, ! 0x3c040001, 0x2484522c, 0x3c050006, 0xafa20014, 0x8ee6724c, 0x800343b, 0x34a5f00b, 0x3c010001, 0x370821, 0xa02083c0, 0xadab0000, 0x8ee201d8, 0x8ee3724c, 0x2442ffff, 0xaee201d8, 0x8ee201d8, --- 2248,2254 ---- 0x210c0, 0x24425038, 0x2e22021, 0xac960000, 0xac9e0004, 0x1620000d, 0x0, 0xa60c000a, 0xa60a000e, 0x8f820100, 0xafa20010, 0x8f820104, ! 0x3c040001, 0x2484589c, 0x3c050006, 0xafa20014, 0x8ee6724c, 0x800343b, 0x34a5f00b, 0x3c010001, 0x370821, 0xa02083c0, 0xadab0000, 0x8ee201d8, 0x8ee3724c, 0x2442ffff, 0xaee201d8, 0x8ee201d8, *************** *** 2280,2286 **** 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac8e0000, 0xac9e0004, 0x5620000d, 0x24110001, ! 0x8ee2724c, 0x3c040001, 0x24845238, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0x34a5f008, 0xc002403, 0xafae0048, 0x8fae0048, 0x56200001, 0xaee00e1c, 0x8ee20188, 0x24420001, --- 2280,2286 ---- 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac8e0000, 0xac9e0004, 0x5620000d, 0x24110001, ! 0x8ee2724c, 0x3c040001, 0x248458a8, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0x34a5f008, 0xc002403, 0xafae0048, 0x8fae0048, 0x56200001, 0xaee00e1c, 0x8ee20188, 0x24420001, *************** *** 2307,2313 **** 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac8e0000, 0xac9e0004, 0x1620000d, 0x0, 0x8ee2724c, ! 0x3c040001, 0x24845238, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0x34a5f008, 0xc002403, 0xafae0048, 0x8fae0048, 0x8ee20174, 0x24420001, 0xaee20174, 0x8ee20174, 0x800346e, --- 2307,2313 ---- 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac8e0000, 0xac9e0004, 0x1620000d, 0x0, 0x8ee2724c, ! 0x3c040001, 0x248458a8, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0x34a5f008, 0xc002403, 0xafae0048, 0x8fae0048, 0x8ee20174, 0x24420001, 0xaee20174, 0x8ee20174, 0x800346e, *************** *** 2337,2343 **** 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac960000, 0xac9e0004, 0x1620001d, 0x0, 0xa60c000a, 0x8f820100, 0xafa20010, 0x8f820104, ! 0x3c040001, 0x2484522c, 0x3c050006, 0xafa20014, 0x8ee6724c, 0x34a5f00d, 0xc002403, 0x2003821, 0x93a20037, 0x10400031, 0x340f8100, 0x8e420004, 0x8e430008, 0x8e44000c, 0xa64f000c, 0xae420000, --- 2337,2343 ---- 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0xac960000, 0xac9e0004, 0x1620001d, 0x0, 0xa60c000a, 0x8f820100, 0xafa20010, 0x8f820104, ! 0x3c040001, 0x2484589c, 0x3c050006, 0xafa20014, 0x8ee6724c, 0x34a5f00d, 0xc002403, 0x2003821, 0x93a20037, 0x10400031, 0x340f8100, 0x8e420004, 0x8e430008, 0x8e44000c, 0xa64f000c, 0xae420000, *************** *** 2399,2405 **** 0x10430007, 0x4821, 0x8f8200e4, 0x24090001, 0x8c430000, 0x8c440004, 0xafa30018, 0xafa4001c, 0x1520000e, 0x3c02ffff, 0x8f8200c4, 0xafa20010, ! 0x8f8200c8, 0x3c040001, 0x24845200, 0xafa20014, 0x8f8600e0, 0x8f8700e4, 0x3c050006, 0xc002403, 0x34a5f000, 0x8003850, 0x0, 0x8fa3001c, 0x8fb20018, 0x3073ffff, 0x2673fffc, 0x621024, --- 2399,2405 ---- 0x10430007, 0x4821, 0x8f8200e4, 0x24090001, 0x8c430000, 0x8c440004, 0xafa30018, 0xafa4001c, 0x1520000e, 0x3c02ffff, 0x8f8200c4, 0xafa20010, ! 0x8f8200c8, 0x3c040001, 0x24845870, 0xafa20014, 0x8f8600e0, 0x8f8700e4, 0x3c050006, 0xc002403, 0x34a5f000, 0x8003850, 0x0, 0x8fa3001c, 0x8fb20018, 0x3073ffff, 0x2673fffc, 0x621024, *************** *** 2497,2511 **** 0x862021, 0xaee400c0, 0xaee500c4, 0x8ee20058, 0x24420001, 0xaee20058, 0x8ee20058, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x8f8200e0, ! 0xafa20010, 0x8f8200e4, 0x3c040001, 0x24845208, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050006, 0xc002403, 0x34a5f003, 0x8003850, 0x0, 0x8ee25240, 0xafa20010, 0x8ee25244, 0x3c040001, ! 0x24845214, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0xc002403, 0x34a5f002, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x8ee20000, 0x8ee301c0, 0x2403ffbf, 0x431024, 0x80037f8, 0xaee20000, 0x8ee25240, ! 0xafa20010, 0x8ee25244, 0x3c040001, 0x24845214, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0x3c050006, 0xc002403, 0x34a5f002, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x80037f8, 0x8ee201c0, 0x96e20468, --- 2497,2511 ---- 0x862021, 0xaee400c0, 0xaee500c4, 0x8ee20058, 0x24420001, 0xaee20058, 0x8ee20058, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x8f8200e0, ! 0xafa20010, 0x8f8200e4, 0x3c040001, 0x24845878, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050006, 0xc002403, 0x34a5f003, 0x8003850, 0x0, 0x8ee25240, 0xafa20010, 0x8ee25244, 0x3c040001, ! 0x24845884, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0xc002403, 0x34a5f002, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x8ee20000, 0x8ee301c0, 0x2403ffbf, 0x431024, 0x80037f8, 0xaee20000, 0x8ee25240, ! 0xafa20010, 0x8ee25244, 0x3c040001, 0x24845884, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0x3c050006, 0xc002403, 0x34a5f002, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x80037f8, 0x8ee201c0, 0x96e20468, *************** *** 2564,2570 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x15200018, 0x3c050006, ! 0x8e020018, 0x3c040001, 0x24845220, 0xafa20010, 0x8e020000, 0x8e030004, 0x34a5f009, 0x2003021, 0xc002403, 0xafa30014, 0x32c200ff, 0x1040002b, 0x34028100, 0x8e430004, 0x8e440008, 0x8e45000c, --- 2564,2570 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x15200018, 0x3c050006, ! 0x8e020018, 0x3c040001, 0x24845890, 0xafa20010, 0x8e020000, 0x8e030004, 0x34a5f009, 0x2003021, 0xc002403, 0xafa30014, 0x32c200ff, 0x1040002b, 0x34028100, 0x8e430004, 0x8e440008, 0x8e45000c, *************** *** 2624,2630 **** 0x10430007, 0x3821, 0x8f8200e4, 0x24070001, 0x8c430000, 0x8c440004, 0xafa30018, 0xafa4001c, 0x14e0000e, 0x3c02ffff, 0x8f8200c4, 0xafa20010, ! 0x8f8200c8, 0x3c040001, 0x24845244, 0xafa20014, 0x8f8600e0, 0x8f8700e4, 0x3c050006, 0xc002403, 0x34a5f200, 0x8003c5b, 0x0, 0x8fa3001c, 0x8fb20018, 0x3073ffff, 0x2673fffc, 0x621024, --- 2624,2630 ---- 0x10430007, 0x3821, 0x8f8200e4, 0x24070001, 0x8c430000, 0x8c440004, 0xafa30018, 0xafa4001c, 0x14e0000e, 0x3c02ffff, 0x8f8200c4, 0xafa20010, ! 0x8f8200c8, 0x3c040001, 0x248458b4, 0xafa20014, 0x8f8600e0, 0x8f8700e4, 0x3c050006, 0xc002403, 0x34a5f200, 0x8003c5b, 0x0, 0x8fa3001c, 0x8fb20018, 0x3073ffff, 0x2673fffc, 0x621024, *************** *** 2722,2732 **** 0x862021, 0xaee400c0, 0xaee500c4, 0x8ee20058, 0x24420001, 0xaee20058, 0x8ee20058, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x8f8200e0, ! 0xafa20010, 0x8f8200e4, 0x3c040001, 0x24845250, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050006, 0xc002403, 0x34a5f203, 0x8003c5b, 0x0, 0x8ee25240, 0xafa20010, 0x8ee25244, 0x3c040001, ! 0x2484525c, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0x3c050006, 0xc002403, 0x34a5f202, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x8003c02, 0x8ee201c0, 0x96e20468, 0x53102b, 0x54400001, 0x3c168000, --- 2722,2732 ---- 0x862021, 0xaee400c0, 0xaee500c4, 0x8ee20058, 0x24420001, 0xaee20058, 0x8ee20058, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x8f8200e0, ! 0xafa20010, 0x8f8200e4, 0x3c040001, 0x248458c0, 0xafa20014, 0x8fa60018, 0x8fa7001c, 0x3c050006, 0xc002403, 0x34a5f203, 0x8003c5b, 0x0, 0x8ee25240, 0xafa20010, 0x8ee25244, 0x3c040001, ! 0x248458cc, 0xafa20014, 0x8ee60e10, 0x8ee70e18, 0x3c050006, 0xc002403, 0x34a5f202, 0x8ee201c0, 0x24420001, 0xaee201c0, 0x8003c02, 0x8ee201c0, 0x96e20468, 0x53102b, 0x54400001, 0x3c168000, *************** *** 2822,2828 **** 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, ! 0x14e00019, 0x3c050006, 0x3c040001, 0x24845220, 0x8e220018, 0x34a5f209, 0xafa20010, 0x8e220000, 0x8e230004, 0x2203021, 0x1603821, 0xc002403, 0xafa30014, 0x93a2002f, 0x1040002a, 0x34028100, --- 2822,2828 ---- 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, ! 0x14e00019, 0x3c050006, 0x3c040001, 0x24845890, 0x8e220018, 0x34a5f209, 0xafa20010, 0x8e220000, 0x8e230004, 0x2203021, 0x1603821, 0xc002403, 0xafa30014, 0x93a2002f, 0x1040002a, 0x34028100, *************** *** 2886,2892 **** 0x24020001, 0xac620004, 0x1480000e, 0x24030040, 0x8ee20e14, 0xafa20010, 0x8ee20e18, 0x3c050007, 0xafa20014, 0x8ee60e0c, 0x8ee70e10, 0x3c040001, ! 0x24845264, 0xc002403, 0x34a5f001, 0x8003cdd, 0x0, 0x8ee20500, 0x24420001, 0x50430003, 0x1021, 0x8ee20500, 0x24420001, 0xaee20500, 0x8ee20500, 0x21080, 0x571021, 0xac490508, --- 2886,2892 ---- 0x24020001, 0xac620004, 0x1480000e, 0x24030040, 0x8ee20e14, 0xafa20010, 0x8ee20e18, 0x3c050007, 0xafa20014, 0x8ee60e0c, 0x8ee70e10, 0x3c040001, ! 0x248458d4, 0xc002403, 0x34a5f001, 0x8003cdd, 0x0, 0x8ee20500, 0x24420001, 0x50430003, 0x1021, 0x8ee20500, 0x24420001, 0xaee20500, 0x8ee20500, 0x21080, 0x571021, 0xac490508, *************** *** 2918,2924 **** 0x24020003, 0xac620000, 0x24020001, 0xac620004, 0x1480000e, 0x24030040, 0x8ee2523c, 0xafa20010, 0x8ee25244, 0x3c050007, 0xafa20014, 0x8ee65238, ! 0x8ee75240, 0x3c040001, 0x24845270, 0xc002403, 0x34a5f010, 0x8003d5f, 0x0, 0x8ee20500, 0x24420001, 0x50430003, 0x1021, 0x8ee20500, 0x24420001, 0xaee20500, 0x8ee20500, 0x21080, --- 2918,2924 ---- 0x24020003, 0xac620000, 0x24020001, 0xac620004, 0x1480000e, 0x24030040, 0x8ee2523c, 0xafa20010, 0x8ee25244, 0x3c050007, 0xafa20014, 0x8ee65238, ! 0x8ee75240, 0x3c040001, 0x248458e0, 0xc002403, 0x34a5f010, 0x8003d5f, 0x0, 0x8ee20500, 0x24420001, 0x50430003, 0x1021, 0x8ee20500, 0x24420001, 0xaee20500, 0x8ee20500, 0x21080, *************** *** 2938,2944 **** 0x8f830128, 0x21140, 0x621821, 0xaf830128, 0xaca00000, 0x8cc20018, 0x2443fffe, 0x2c620012, 0x10400008, 0x31080, 0x3c010001, 0x220821, ! 0x8c225280, 0x400008, 0x0, 0x24020001, 0xaee24e24, 0x3e00008, 0x0, 0x27bdffc8, 0xafbf0030, 0xafb5002c, 0xafb40028, 0xafb30024, 0xafb20020, 0xafb1001c, 0xafb00018, 0x8f830128, --- 2938,2944 ---- 0x8f830128, 0x21140, 0x621821, 0xaf830128, 0xaca00000, 0x8cc20018, 0x2443fffe, 0x2c620012, 0x10400008, 0x31080, 0x3c010001, 0x220821, ! 0x8c2258f0, 0x400008, 0x0, 0x24020001, 0xaee24e24, 0x3e00008, 0x0, 0x27bdffc8, 0xafbf0030, 0xafb5002c, 0xafb40028, 0xafb30024, 0xafb20020, 0xafb1001c, 0xafb00018, 0x8f830128, *************** *** 2947,2953 **** 0x24140040, 0x8f8c0128, 0x8f820128, 0x24420020, 0xaf820128, 0x9182001b, 0x8f830128, 0x2443fffe, 0x2c620012, 0x1040029c, 0x31080, 0x3c010001, ! 0x220821, 0x8c2252d8, 0x400008, 0x0, 0x8f420218, 0x30420100, 0x10400007, 0x0, 0x95830016, 0x95820018, 0x621823, 0x31402, 0x431021, 0xa5820016, 0x8d82001c, 0x3c038000, --- 2947,2953 ---- 0x24140040, 0x8f8c0128, 0x8f820128, 0x24420020, 0xaf820128, 0x9182001b, 0x8f830128, 0x2443fffe, 0x2c620012, 0x1040029c, 0x31080, 0x3c010001, ! 0x220821, 0x8c225948, 0x400008, 0x0, 0x8f420218, 0x30420100, 0x10400007, 0x0, 0x95830016, 0x95820018, 0x621823, 0x31402, 0x431021, 0xa5820016, 0x8d82001c, 0x3c038000, *************** *** 3048,3054 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x1600000d, 0x0, ! 0x8f820120, 0x3c040001, 0x248452c8, 0xafa00014, 0xafa20010, 0x8d86001c, 0x8f870124, 0x3c050008, 0xc002403, 0x34a50001, 0x8004057, 0x0, 0x8ee2724c, 0x24420001, 0x304207ff, 0x11a00006, --- 3048,3054 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020007, 0xac820000, 0x24020001, 0xac820004, 0x1600000d, 0x0, ! 0x8f820120, 0x3c040001, 0x24845938, 0xafa00014, 0xafa20010, 0x8d86001c, 0x8f870124, 0x3c050008, 0xc002403, 0x34a50001, 0x8004057, 0x0, 0x8ee2724c, 0x24420001, 0x304207ff, 0x11a00006, *************** *** 3083,3089 **** 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020001, 0xac950000, 0xac820004, 0x5600000b, 0x24100001, 0x8ee2724c, ! 0x3c040001, 0x24845238, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0xc002403, 0x34a5f008, 0x56000001, 0xaee00e1c, 0x8ee20188, 0x24420001, 0xaee20188, 0x8004050, 0x8ee20188, --- 3083,3089 ---- 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020001, 0xac950000, 0xac820004, 0x5600000b, 0x24100001, 0x8ee2724c, ! 0x3c040001, 0x248458a8, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0xc002403, 0x34a5f008, 0x56000001, 0xaee00e1c, 0x8ee20188, 0x24420001, 0xaee20188, 0x8004050, 0x8ee20188, *************** *** 3109,3115 **** 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020001, 0xac950000, 0xac820004, 0x1600000b, ! 0x0, 0x8ee2724c, 0x3c040001, 0x24845238, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0xc002403, 0x34a5f008, 0x8ee20174, 0x24420001, 0xaee20174, 0x8004057, 0x8ee20174, --- 3109,3115 ---- 0x1021, 0x8ee24e30, 0x24420001, 0xaee24e30, 0x8ee24e30, 0x210c0, 0x24425038, 0x2e22021, 0x24020001, 0xac950000, 0xac820004, 0x1600000b, ! 0x0, 0x8ee2724c, 0x3c040001, 0x248458a8, 0xafa00014, 0xafa20010, 0x8ee6724c, 0x8f470280, 0x3c050009, 0xc002403, 0x34a5f008, 0x8ee20174, 0x24420001, 0xaee20174, 0x8004057, 0x8ee20174, *************** *** 3121,3136 **** 0xc00249a, 0xafb00010, 0x2021, 0x24100001, 0x2402241f, 0xaf900210, 0xaf900200, 0xaf800204, 0xaf820214, 0x8f460248, 0x24030004, 0x3c020040, ! 0x3c010001, 0xac235644, 0x3c010001, 0xac235648, ! 0x3c010001, 0xac20570c, 0x3c010001, 0xac225640, ! 0x3c010001, 0xac235648, 0xc005010, 0x24050004, ! 0xc004791, 0x0, 0x8ee20000, 0x3c03feff, 0x3463fffd, 0x431024, 0xaee20000, 0x3c023c00, 0xaf82021c, 0x3c010001, 0x370821, 0xac3083ac, 0x8fbf0014, 0x8fb00010, 0x3e00008, 0x27bd0018, 0x27bdffe0, 0x3c050008, 0x34a50400, 0xafbf0018, 0xafa00010, 0xafa00014, 0x8f860200, 0x3c040001, ! 0x24845380, 0xc002403, 0x3821, 0x8ee20280, 0x24420001, 0xaee20280, 0x8ee20280, 0x8f830200, 0x3c023f00, 0x621824, 0x8fbf0018, 0x3c020400, 0x3e00008, 0x27bd0020, 0x27bdffd8, 0xafbf0020, --- 3121,3136 ---- 0xc00249a, 0xafb00010, 0x2021, 0x24100001, 0x2402241f, 0xaf900210, 0xaf900200, 0xaf800204, 0xaf820214, 0x8f460248, 0x24030004, 0x3c020040, ! 0x3c010001, 0xac235cc4, 0x3c010001, 0xac235cc8, ! 0x3c010001, 0xac205d9c, 0x3c010001, 0xac225cc0, ! 0x3c010001, 0xac235cc8, 0xc005108, 0x24050004, ! 0xc004822, 0x0, 0x8ee20000, 0x3c03feff, 0x3463fffd, 0x431024, 0xaee20000, 0x3c023c00, 0xaf82021c, 0x3c010001, 0x370821, 0xac3083ac, 0x8fbf0014, 0x8fb00010, 0x3e00008, 0x27bd0018, 0x27bdffe0, 0x3c050008, 0x34a50400, 0xafbf0018, 0xafa00010, 0xafa00014, 0x8f860200, 0x3c040001, ! 0x248459f0, 0xc002403, 0x3821, 0x8ee20280, 0x24420001, 0xaee20280, 0x8ee20280, 0x8f830200, 0x3c023f00, 0x621824, 0x8fbf0018, 0x3c020400, 0x3e00008, 0x27bd0020, 0x27bdffd8, 0xafbf0020, *************** *** 3142,3157 **** 0xaee20218, 0x8ee20218, 0x80040c6, 0x3c03fdff, 0x8ee2021c, 0x24420001, 0xaee2021c, 0x8ee2021c, 0x3c03fdff, 0x3463ffff, 0x3c0808ff, 0x3508ffff, ! 0x8ee20000, 0x3c040001, 0x2484538c, 0x3c050008, 0x2003021, 0x431024, 0xaee20000, 0x8f820220, 0x3821, 0x3c030300, 0x481024, 0x431025, 0xaf820220, 0xafa00010, 0xc002403, 0xafa00014, 0x8004296, 0x0, 0x2111024, 0x1040001f, 0x3c024000, 0x8f830224, 0x24021402, 0x1462000b, ! 0x3c03fdff, 0x3c040001, 0x24845398, 0x3c050008, 0xafa00010, 0xafa00014, 0x8f860224, 0x34a5ffff, 0xc002403, 0x3821, 0x3c03fdff, 0x8ee20000, ! 0x3463ffff, 0x2002021, 0x431024, 0xc004d5c, 0xaee20000, 0x8ee20220, 0x24420001, 0xaee20220, 0x8ee20220, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, 0x8004295, 0x511025, 0x2021024, --- 3142,3157 ---- 0xaee20218, 0x8ee20218, 0x80040c6, 0x3c03fdff, 0x8ee2021c, 0x24420001, 0xaee2021c, 0x8ee2021c, 0x3c03fdff, 0x3463ffff, 0x3c0808ff, 0x3508ffff, ! 0x8ee20000, 0x3c040001, 0x248459fc, 0x3c050008, 0x2003021, 0x431024, 0xaee20000, 0x8f820220, 0x3821, 0x3c030300, 0x481024, 0x431025, 0xaf820220, 0xafa00010, 0xc002403, 0xafa00014, 0x8004296, 0x0, 0x2111024, 0x1040001f, 0x3c024000, 0x8f830224, 0x24021402, 0x1462000b, ! 0x3c03fdff, 0x3c040001, 0x24845a08, 0x3c050008, 0xafa00010, 0xafa00014, 0x8f860224, 0x34a5ffff, 0xc002403, 0x3821, 0x3c03fdff, 0x8ee20000, ! 0x3463ffff, 0x2002021, 0x431024, 0xc004e54, 0xaee20000, 0x8ee20220, 0x24420001, 0xaee20220, 0x8ee20220, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, 0x8004295, 0x511025, 0x2021024, *************** *** 3222,3228 **** 0x431025, 0xaf820220, 0x8f8600e0, 0x8f8400e4, 0x10c4002a, 0x0, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x24c2fff8, 0xaf8200e0, ! 0x3c020001, 0x8c427790, 0x3c030008, 0x8f8600e0, 0x431024, 0x1040001d, 0x0, 0x10c4001b, 0x240dfff8, 0x3c0a000a, 0x354af000, 0x3c0c0080, 0x24850008, 0x27622800, 0x50a20001, 0x27651800, --- 3222,3228 ---- 0x431025, 0xaf820220, 0x8f8600e0, 0x8f8400e4, 0x10c4002a, 0x0, 0x8ee2007c, 0x24420001, 0xaee2007c, 0x8ee2007c, 0x24c2fff8, 0xaf8200e0, ! 0x3c020001, 0x8c427e30, 0x3c030008, 0x8f8600e0, 0x431024, 0x1040001d, 0x0, 0x10c4001b, 0x240dfff8, 0x3c0a000a, 0x354af000, 0x3c0c0080, 0x24850008, 0x27622800, 0x50a20001, 0x27651800, *************** *** 3258,3269 **** 0x621023, 0x2c420002, 0x1440fffc, 0x0, 0x8f820220, 0x3c0308ff, 0x3463fffb, 0x431024, 0xaf820220, 0x8fbf0020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0028, 0x3c020001, 0x8c425658, 0x27bdffd8, 0x10400012, 0xafbf0020, 0x3c040001, ! 0x248453a4, 0x3c050008, 0x24020001, 0x3c010001, 0x370821, 0xac2283ac, 0xafa00010, 0xafa00014, ! 0x8f860220, 0x34a50498, 0x3c010001, 0xac205658, ! 0x3c010001, 0xac22564c, 0xc002403, 0x3821, 0x8f420268, 0x3c037fff, 0x3463ffff, 0x431024, 0xaf420268, 0x8ee204d0, 0x8ee404d4, 0x2403fffe, 0x431024, 0x30840002, 0x1080011e, 0xaee204d0, --- 3258,3269 ---- 0x621023, 0x2c420002, 0x1440fffc, 0x0, 0x8f820220, 0x3c0308ff, 0x3463fffb, 0x431024, 0xaf820220, 0x8fbf0020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0028, 0x3c020001, 0x8c425cd8, 0x27bdffd8, 0x10400012, 0xafbf0020, 0x3c040001, ! 0x24845a14, 0x3c050008, 0x24020001, 0x3c010001, 0x370821, 0xac2283ac, 0xafa00010, 0xafa00014, ! 0x8f860220, 0x34a50498, 0x3c010001, 0xac205cd8, ! 0x3c010001, 0xac225ccc, 0xc002403, 0x3821, 0x8f420268, 0x3c037fff, 0x3463ffff, 0x431024, 0xaf420268, 0x8ee204d0, 0x8ee404d4, 0x2403fffe, 0x431024, 0x30840002, 0x1080011e, 0xaee204d0, *************** *** 3329,3352 **** 0x54a00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x54620003, 0xafa00010, 0x80043d6, ! 0x0, 0x3c040001, 0x248453b0, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x80043d6, 0x0, 0x3c040001, ! 0x248453bc, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x80043d6, ! 0x0, 0x3c040001, 0x248453c8, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee2015c, 0x24420001, 0xaee2015c, 0x8ee2015c, 0x8fbf0020, 0x3e00008, 0x27bd0028, ! 0x3c020001, 0x8c425658, 0x27bdffe0, 0x1440000d, ! 0xafbf0018, 0x3c040001, 0x248453d4, 0x3c050008, 0xafa00010, 0xafa00014, 0x8f860220, 0x34a50499, ! 0x24020001, 0x3c010001, 0xac225658, 0xc002403, 0x3821, 0x8ee204d0, 0x3c030001, 0x771821, 0x946383b2, 0x34420001, 0x10600007, 0xaee204d0, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, ! 0x34420008, 0xaf820220, 0x2021, 0xc00511d, 0x24050004, 0xaf420268, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, --- 3329,3352 ---- 0x54a00006, 0x240b0001, 0x8f820054, 0x1221023, 0x2c420033, 0x1440ffa6, 0x0, 0x316300ff, 0x24020001, 0x54620003, 0xafa00010, 0x80043d6, ! 0x0, 0x3c040001, 0x24845a20, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f011, 0x80043d6, 0x0, 0x3c040001, ! 0x24845a2c, 0xafa00014, 0x8f860120, 0x8f870124, 0x3c050009, 0xc002403, 0x34a5f010, 0x80043d6, ! 0x0, 0x3c040001, 0x24845a38, 0xafa00014, 0x8ee60608, 0x8f470228, 0x3c050009, 0xc002403, 0x34a5f00f, 0x8ee201ac, 0x24420001, 0xaee201ac, 0x8ee201ac, 0x8ee2015c, 0x24420001, 0xaee2015c, 0x8ee2015c, 0x8fbf0020, 0x3e00008, 0x27bd0028, ! 0x3c020001, 0x8c425cd8, 0x27bdffe0, 0x1440000d, ! 0xafbf0018, 0x3c040001, 0x24845a44, 0x3c050008, 0xafa00010, 0xafa00014, 0x8f860220, 0x34a50499, ! 0x24020001, 0x3c010001, 0xac225cd8, 0xc002403, 0x3821, 0x8ee204d0, 0x3c030001, 0x771821, 0x946383b2, 0x34420001, 0x10600007, 0xaee204d0, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, ! 0x34420008, 0xaf820220, 0x2021, 0xc0052a2, 0x24050004, 0xaf420268, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, *************** *** 3364,3370 **** 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c120001, ! 0x26521200, 0x3c140001, 0x8e9455d0, 0x3c100001, 0x26101120, 0x3c15c000, 0x36b50060, 0x8e8a0000, 0x8eb30000, 0x26a400b, 0x248000a, 0x200f821, 0x0, 0xd, 0x0, 0x0, --- 3364,3370 ---- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c120001, ! 0x26521200, 0x3c140001, 0x8e945c50, 0x3c100001, 0x26101120, 0x3c15c000, 0x36b50060, 0x8e8a0000, 0x8eb30000, 0x26a400b, 0x248000a, 0x200f821, 0x0, 0xd, 0x0, 0x0, *************** *** 3425,4294 **** 0x1062000c, 0x43102b, 0x14400006, 0x3c026000, 0x3c024000, 0x10620008, 0x24020800, 0x8004539, 0x0, 0x10620004, 0x24020800, 0x8004539, ! 0x0, 0x24020700, 0x3c010001, 0xac22565c, ! 0x3e00008, 0x0, 0x27bdffd0, 0xafbf0028, ! 0x3c010001, 0xc004d37, 0xac205644, 0x24040001, ! 0x2821, 0x27a60020, 0x34028000, 0xc0048fa, ! 0xa7a20020, 0x8f830054, 0x8f820054, 0x800454b, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x24040001, 0x24050001, 0xc0048b8, ! 0x27a60020, 0x8f830054, 0x8f820054, 0x8004557, ! 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x24040001, 0x24050001, 0xc0048b8, ! 0x27a60020, 0x8f830054, 0x8f820054, 0x8004563, ! 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x24040001, 0x24050002, 0xc0048b8, ! 0x27a60018, 0x8f830054, 0x8f820054, 0x800456f, ! 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x24040001, 0x24050003, 0xc0048b8, ! 0x27a6001a, 0x97a20020, 0x10400028, 0x24030001, ! 0x3c020001, 0x8c425644, 0x97a30018, 0x34420001, ! 0x3c010001, 0xac225644, 0x24020015, 0x1462000e, ! 0x0, 0x97a2001a, 0x3042fff0, 0x3843f420, ! 0x2c630001, 0x3842f430, 0x2c420001, 0x621825, ! 0x10600005, 0x24020003, 0x3c010001, 0xac225720, ! 0x80045a8, 0x3c08fff0, 0x97a30018, 0x24027810, ! 0x1462000a, 0x24020002, 0x97a2001a, 0x3042fff0, ! 0x14400006, 0x24020002, 0x24020004, 0x3c010001, ! 0xac225720, 0x80045a8, 0x3c08fff0, 0x3c010001, ! 0xac225720, 0x80045a8, 0x3c08fff0, 0x3c020001, ! 0x8c425644, 0x3c010001, 0xac235720, 0x34420004, ! 0x3c010001, 0xac225644, 0x3c08fff0, 0x3508bdc0, ! 0x8f830054, 0x97a60018, 0x3c070001, 0x8ce75720, ! 0x3c040001, 0x24845440, 0x24020001, 0x3c010001, ! 0xac22564c, 0xafa60010, 0x3c060001, 0x8cc65644, ! 0x97a2001a, 0x3c05000d, 0x34a50100, 0x3c010001, ! 0xac205648, 0x681821, 0x3c010001, 0xac235718, ! 0xc002403, 0xafa20014, 0x8fbf0028, 0x3e00008, ! 0x27bd0030, 0x27bdffe8, 0x3c040001, 0x8c845648, ! 0x24060004, 0x24020001, 0x1482000a, 0xafbf0010, ! 0x3c020001, 0x8c42779c, 0x3c050004, 0x30428000, ! 0x1040000c, 0x34a593e0, 0x3c05000f, 0x80045da, ! 0x34a54240, 0x3c020001, 0x8c42779c, 0x3c05000f, ! 0x30428000, 0x10400003, 0x34a54240, 0x3c05001e, ! 0x34a58480, 0x3c020001, 0x8c425718, 0x8f830054, ! 0x451021, 0x431023, 0x45102b, 0x14400037, ! 0x0, 0x3c020001, 0x8c425650, 0x14400033, ! 0x0, 0x3c010001, 0x10c00025, 0xac205660, ! 0x3c090001, 0x8d295644, 0x24070001, 0x3c054000, ! 0x3c080001, 0x2508779c, 0x250afffc, 0x42042, ! 0x14800002, 0x24c6ffff, 0x24040008, 0x891024, ! 0x10400010, 0x0, 0x14870008, 0x0, ! 0x8d020000, 0x451024, 0x1040000a, 0x0, ! 0x3c010001, 0x8004606, 0xac245660, 0x8d420000, ! 0x451024, 0x10400003, 0x0, 0x3c010001, ! 0xac275660, 0x3c020001, 0x8c425660, 0x6182b, ! 0x2c420001, 0x431024, 0x5440ffe5, 0x42042, ! 0x3c020001, 0x8c425660, 0x3c010001, 0x10400028, ! 0xac245648, 0x8f830054, 0x24020001, 0x3c010001, ! 0xac22564c, 0x3c010001, 0xac235718, 0x3c020001, ! 0x8c425660, 0x1040001e, 0x0, 0x3c020001, ! 0x8c42564c, 0x10400006, 0x24020001, 0x3c010001, ! 0xac20564c, 0x3c010001, 0x370821, 0xac2283ac, ! 0x3c030001, 0x771821, 0x8c6383ac, 0x24020008, ! 0x10620005, 0x24020001, 0xc00463c, 0x0, ! 0x8004639, 0x0, 0x3c030001, 0x8c635648, ! 0x10620007, 0x2402000e, 0x3c030001, 0x8c637730, ! 0x10620003, 0x0, 0xc004d5c, 0x8f840220, ! 0x8fbf0010, 0x3e00008, 0x27bd0018, 0x27bdffe0, ! 0x3c02fdff, 0xafbf0018, 0x8ee30000, 0x3c050001, ! 0x8ca55648, 0x3c040001, 0x8c84566c, 0x3442ffff, ! 0x621824, 0x14a40008, 0xaee30000, 0x3c030001, ! 0x771821, 0x8c6383ac, 0x3c020001, 0x8c425670, ! 0x10620008, 0x0, 0x3c020001, 0x571021, ! 0x8c4283ac, 0x3c010001, 0xac25566c, 0x3c010001, ! 0xac225670, 0x3c030001, 0x8c635648, 0x24020002, ! 0x10620131, 0x2c620003, 0x10400005, 0x24020001, ! 0x10620008, 0x0, 0x800478b, 0x0, ! 0x24020004, 0x10620079, 0x24020001, 0x800478c, ! 0x0, 0x3c020001, 0x571021, 0x8c4283ac, ! 0x2443ffff, 0x2c620008, 0x10400122, 0x31080, ! 0x3c010001, 0x220821, 0x8c225458, 0x400008, ! 0x0, 0xc004791, 0x0, 0x3c020001, ! 0x8c425654, 0x3c010001, 0xac2055e0, 0x104000bd, ! 0x24020002, 0x3c010001, 0x370821, 0xac2283ac, ! 0x3c010001, 0x800478e, 0xac205654, 0xc00493b, ! 0x0, 0x3c030001, 0x8c635680, 0x80046fd, ! 0x24020011, 0x3c050001, 0x8ca55648, 0x3c060001, ! 0x8cc6779c, 0xc005010, 0x2021, 0x24020005, ! 0x3c010001, 0xac205654, 0x3c010001, 0x370821, ! 0x800478e, 0xac2283ac, 0x3c040001, 0x2484544c, 0x3c05000f, 0x34a50100, 0x3021, 0x3821, ! 0xafa00010, 0xc002403, 0xafa00014, 0x800478e, 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0x8004726, 0xaf820220, 0x8f820220, 0x3c030004, ! 0x431024, 0x14400090, 0x24020007, 0x8f830054, ! 0x3c020001, 0x8c425710, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x144000df, 0x24020001, 0x800478c, ! 0x0, 0x3c050001, 0x8ca55648, 0xc00511d, ! 0x2021, 0xc0051e8, 0x2021, 0x3c030001, ! 0x8c637794, 0x46100d1, 0x24020001, 0x3c020008, 0x621024, 0x10400006, 0x0, 0x8f820214, ! 0x3c03ffff, 0x431024, 0x80046c9, 0x3442251f, 0x8f820214, 0x3c03ffff, 0x431024, 0x3442241f, 0xaf820214, 0x8ee20000, 0x3c030200, 0x431025, 0xaee20000, 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, 0x8f820220, 0x34420002, 0xaf820220, ! 0x24020008, 0x3c010001, 0x370821, 0xc0043dd, ! 0xac2283ac, 0x800478e, 0x0, 0x3c020001, ! 0x571021, 0x8c4283ac, 0x2443ffff, 0x2c620008, ! 0x104000ac, 0x31080, 0x3c010001, 0x220821, ! 0x8c225478, 0x400008, 0x0, 0xc00429b, ! 0x0, 0x3c010001, 0xac20564c, 0xaf800204, ! 0x3c010001, 0xc004791, 0xac207780, 0x24020001, ! 0x3c010001, 0xac225664, 0x24020002, 0x3c010001, ! 0x370821, 0x800478e, 0xac2283ac, 0xc00480e, ! 0x0, 0x3c030001, 0x8c635664, 0x24020009, ! 0x14620090, 0x24020003, 0x3c010001, 0x370821, ! 0x800478e, 0xac2283ac, 0x3c020001, 0x8c427798, ! 0x30424000, 0x10400005, 0x0, 0x8f820044, ! 0x3c03ffff, 0x800470e, 0x34637fff, 0x8f820044, ! 0x2403ff7f, 0x431024, 0xaf820044, 0x8f830054, ! 0x8004728, 0x24020004, 0x8f830054, 0x3c020001, ! 0x8c425710, 0x2463d8f0, 0x431023, 0x2c422710, ! 0x14400074, 0x24020005, 0x3c010001, 0x370821, ! 0x800478e, 0xac2283ac, 0x8f820220, 0x3c03f700, ! 0x431025, 0xaf820220, 0xaf800204, 0x3c010001, ! 0xac207780, 0x8f830054, 0x24020006, 0x3c010001, ! 0x370821, 0xac2283ac, 0x3c010001, 0x800478e, ! 0xac235710, 0x8f830054, 0x3c020001, 0x8c425710, ! 0x2463fff6, 0x431023, 0x2c42000a, 0x14400059, ! 0x0, 0x24020007, 0x3c010001, 0x370821, ! 0x800478e, 0xac2283ac, 0x8f820220, 0x3c04f700, ! 0x441025, 0xaf820220, 0x8f820220, 0x3c030300, ! 0x431024, 0x14400005, 0x1821, 0x8f820220, ! 0x24030001, 0x441025, 0xaf820220, 0x10600043, ! 0x24020001, 0x8f820214, 0x3c03ffff, 0x3c040001, ! 0x8c845708, 0x431024, 0x3442251f, 0xaf820214, ! 0x24020008, 0x3c010001, 0x370821, 0x1080000b, ! 0xac2283ac, 0x3c020001, 0x8c4256e4, 0x14400007, ! 0x24020001, 0x3c010001, 0xac227730, 0xc004d5c, ! 0x8f840220, 0x800477b, 0x0, 0x8f820220, ! 0x3c030008, 0x431024, 0x14400017, 0x2402000e, ! 0x3c010001, 0xac227730, 0x8ee20000, 0x2021, ! 0x3c030200, 0x431025, 0xc0051e8, 0xaee20000, ! 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, ! 0x8f820220, 0x34420002, 0xc0043dd, 0xaf820220, ! 0x3c050001, 0x8ca55648, 0xc00511d, 0x2021, ! 0x800478e, 0x0, 0x3c020001, 0x8c4256e4, ! 0x10400010, 0x0, 0x3c020001, 0x8c4256e0, ! 0x2442ffff, 0x3c010001, 0xac2256e0, 0x14400009, ! 0x24020002, 0x3c010001, 0xac2056e4, 0x3c010001, ! 0x800478e, 0xac2256e0, 0x24020001, 0x3c010001, ! 0xac22564c, 0x8fbf0018, 0x3e00008, 0x27bd0020, ! 0x8f820200, 0x8f820220, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820200, 0x3c060001, 0x8cc65648, ! 0x34420004, 0xaf820200, 0x24020002, 0x10c2003a, ! 0x2cc20003, 0x10400005, 0x24020001, 0x10c20008, ! 0x0, 0x80047d7, 0x0, 0x24020004, ! 0x10c20013, 0x24020001, 0x80047d7, 0x0, ! 0x3c030001, 0x8c635638, 0x3c020001, 0x8c425640, ! 0x3c040001, 0x8c84565c, 0x3c050001, 0x8ca5563c, ! 0xaf860200, 0xaf860220, 0x34630022, 0x441025, ! 0x451025, 0x34420002, 0x80047d6, 0xaf830200, ! 0x3c030001, 0x8c635708, 0xaf820200, 0x10600009, ! 0xaf820220, 0x3c020001, 0x8c4256e4, 0x14400005, ! 0x3c033f00, 0x3c020001, 0x8c425630, 0x80047ca, ! 0x346300e0, 0x3c020001, 0x8c425630, 0x3c033f00, ! 0x346300e2, 0x431025, 0xaf820200, 0x3c030001, ! 0x8c635634, 0x3c04f700, 0x3c020001, 0x8c425640, ! 0x3c050001, 0x8ca5565c, 0x641825, 0x431025, ! 0x451025, 0xaf820220, 0x3e00008, 0x0, ! 0x8f820220, 0x3c030001, 0x8c635648, 0x34420004, ! 0xaf820220, 0x24020001, 0x1062000f, 0x0, ! 0x8f830054, 0x8f820054, 0x24630002, 0x621023, ! 0x2c420003, 0x10400011, 0x0, 0x8f820054, ! 0x621023, 0x2c420003, 0x1040000c, 0x0, ! 0x80047e8, 0x0, 0x8f830054, 0x8f820054, ! 0x80047f4, 0x24630007, 0x8f820054, 0x621023, ! 0x2c420008, 0x1440fffc, 0x0, 0x8f8400e0, ! 0x30820007, 0x1040000d, 0x0, 0x8f820054, ! 0x8f8300e0, 0x14830009, 0x24450032, 0x8f820054, ! 0xa21023, 0x2c420033, 0x10400004, 0x0, ! 0x8f8200e0, 0x1082fff9, 0x0, 0x8f820220, ! 0x2403fffd, 0x431024, 0xaf820220, 0x3e00008, ! 0x0, 0x3c030001, 0x8c635664, 0x3c020001, ! 0x8c425668, 0x50620004, 0x2463ffff, 0x3c010001, ! 0xac235668, 0x2463ffff, 0x2c620009, 0x1040009d, ! 0x31080, 0x3c010001, 0x220821, 0x8c225498, ! 0x400008, 0x0, 0x8f820044, 0x34428080, ! 0xaf820044, 0x8f830054, 0x80048a7, 0x24020002, ! 0x8f830054, 0x3c020001, 0x8c425714, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x1440008a, 0x24020003, ! 0x80048b4, 0x0, 0x8f820044, 0x3c03ffff, ! 0x34637fff, 0x431024, 0xaf820044, 0x8f830054, ! 0x80048a7, 0x24020004, 0x8f830054, 0x3c020001, ! 0x8c425714, 0x2463fff6, 0x431023, 0x2c42000a, ! 0x14400078, 0x24020005, 0x80048b4, 0x0, 0x8f820220, 0x3c03f700, 0x431025, 0xaf820220, ! 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, ! 0x8f820220, 0x34420002, 0xaf820220, 0x3c023f00, ! 0x344200e0, 0xaf820200, 0x8f820200, 0x2403fffd, ! 0x431024, 0xaf820200, 0x24040001, 0x3405ffff, ! 0xaf840204, 0x8f830054, 0x8f820054, 0x800485b, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x8f820224, 0x42040, ! 0xa4102b, 0x1040fff2, 0x0, 0x8f820220, ! 0x3c03f700, 0x431025, 0xaf820220, 0x8f820214, ! 0x3c03ffff, 0x431024, 0x3442251f, 0xaf820214, ! 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, ! 0x8f820220, 0x3c04f700, 0x34840008, 0x34420002, ! 0xaf820220, 0x8f820220, 0x3c033f00, 0x346300e2, ! 0x441025, 0xaf820220, 0xaf830200, 0x8f8400f0, ! 0x276217f8, 0x14820002, 0x24850008, 0x27651000, ! 0x8f8200f4, 0x10a20007, 0x3c038000, 0x34630040, ! 0x3c020001, 0x244255f0, 0xac820000, 0xac830004, ! 0xaf8500f0, 0x8f830054, 0x80048a7, 0x24020006, ! 0x8f830054, 0x3c020001, 0x8c425714, 0x2463fff6, ! 0x431023, 0x2c42000a, 0x14400022, 0x24020007, ! 0x80048b4, 0x0, 0x8f8200e0, 0xaf8200e4, ! 0x8f8200e0, 0xaf8200e8, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820220, 0x2403fff7, 0x431024, ! 0xaf820220, 0x8f820044, 0x34428080, 0xaf820044, ! 0x8f830054, 0x24020008, 0x3c010001, 0xac225664, ! 0x3c010001, 0x80048b6, 0xac235714, 0x8f830054, ! 0x3c020001, 0x8c425714, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x14400003, 0x24020009, 0x3c010001, ! 0xac225664, 0x3e00008, 0x0, 0x27bdffd8, 0xafb20018, 0x809021, 0xafb3001c, 0xa09821, 0xafb10014, 0xc08821, 0xafb00010, 0x8021, ! 0xafbf0020, 0xa6200000, 0xc004d11, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x24040001, 0xc004d11, 0x2021, 0x24100010, 0x2501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, 0x2501024, 0x24100010, 0x2701024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x2701024, 0xc004d37, 0x34108000, ! 0xc004d37, 0x0, 0xc004cf1, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d37, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, 0x27bd0028, 0x27bdffd8, 0xafb10014, 0x808821, 0xafb20018, 0xa09021, 0xafb3001c, 0xc09821, ! 0xafb00010, 0x8021, 0xafbf0020, 0xc004d11, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc004d11, 0x2021, 0xc004d11, ! 0x24040001, 0xc004d11, 0x2021, 0xc004d11, 0x24040001, 0x24100010, 0x2301024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, 0x2301024, 0x24100010, 0x2501024, ! 0x10400002, 0x2021, 0x24040001, 0xc004d11, ! 0x108042, 0x1600fffa, 0x2501024, 0xc004d11, ! 0x24040001, 0xc004d11, 0x2021, 0x34108000, 0x96620000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fff8, ! 0x0, 0xc004d37, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, ! 0x3e00008, 0x27bd0028, 0x3c030001, 0x8c635680, ! 0x3c020001, 0x8c4256c4, 0x27bdffd8, 0xafbf0020, 0xafb1001c, 0x10620003, 0xafb00018, 0x3c010001, ! 0xac2356c4, 0x2463ffff, 0x2c620013, 0x104003a3, ! 0x31080, 0x3c010001, 0x220821, 0x8c2254c0, ! 0x400008, 0x0, 0xc004d37, 0x8021, ! 0x34028000, 0xa7a20010, 0x27b10010, 0xc004d11, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc004d11, 0x2021, 0xc004d11, ! 0x24040001, 0xc004d11, 0x2021, 0xc004d11, 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0xc004d11, 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0xc004d11, 0x24040001, 0xc004d11, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fff8, 0x0, 0xc004d37, 0x0, ! 0x8004cea, 0x24020002, 0x27b10010, 0xa7a00010, ! 0x8021, 0xc004d11, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc004d11, ! 0x2021, 0xc004d11, 0x24040001, 0xc004d11, ! 0x24040001, 0xc004d11, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0xc004d11, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0xc004d37, 0x34108000, ! 0xc004d37, 0x0, 0xc004cf1, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d37, 0x0, 0x97a20010, 0x30428000, ! 0x14400336, 0x24020003, 0x8004cea, 0x0, ! 0x3c020001, 0x8c425720, 0x30420004, 0x10400056, ! 0x24020001, 0x3c030001, 0x8c63779c, 0xa7a20010, ! 0x3c020008, 0x621024, 0x1040000c, 0x3c020002, ! 0x621024, 0x10400002, 0x24020101, 0xa7a20010, ! 0x3c020001, 0x621024, 0x10400005, 0x3c020010, ! 0x97a20010, 0x34420040, 0xa7a20010, 0x3c020010, ! 0x621024, 0x1040000e, 0x3c020002, 0x621024, ! 0x10400005, 0x3c020001, 0x97a20010, 0x34420080, ! 0xa7a20010, 0x3c020001, 0x621024, 0x10400005, ! 0x27b10010, 0x97a20010, 0x34420020, 0xa7a20010, ! 0x27b10010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020004, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020004, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fff8, 0x0, ! 0xc004d37, 0x0, 0x24021200, 0xa7a20010, ! 0x27b10010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0xc004d11, 0x2021, ! 0x108042, 0x1600fffc, 0x0, 0xc004d11, ! 0x24040001, 0xc004d11, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fff8, ! 0x0, 0xc004d37, 0x0, 0x8f830054, ! 0x8004cdc, 0x24020004, 0x8f830054, 0x3c020001, ! 0x8c42571c, 0x2463ff9c, 0x431023, 0x2c420064, ! 0x1440029e, 0x24020002, 0x3c030001, 0x8c635720, ! 0x10620297, 0x2c620003, 0x14400296, 0x24020011, ! 0x24020003, 0x10620005, 0x24020004, 0x10620291, ! 0x2402000f, 0x8004cea, 0x24020011, 0x8004cea, ! 0x24020005, 0x24020014, 0xa7a20010, 0x27b10010, ! 0x8021, 0xc004d11, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc004d11, ! 0x2021, 0xc004d11, 0x24040001, 0xc004d11, ! 0x2021, 0xc004d11, 0x24040001, 0x24100010, ! 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0x32020012, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020012, 0xc004d11, 0x24040001, 0xc004d11, ! 0x2021, 0x34108000, 0x96220000, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc004d11, ! 0x108042, 0x1600fff8, 0x0, 0xc004d37, ! 0x0, 0x8f830054, 0x8004cdc, 0x24020006, ! 0x8f830054, 0x3c020001, 0x8c42571c, 0x2463ff9c, ! 0x431023, 0x2c420064, 0x14400250, 0x24020007, ! 0x8004cea, 0x0, 0x24020006, 0xa7a20010, ! 0x27b10010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020013, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020013, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fff8, 0x0, ! 0xc004d37, 0x0, 0x8f830054, 0x8004cdc, ! 0x24020008, 0x8f830054, 0x3c020001, 0x8c42571c, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x1440020f, ! 0x24020009, 0x8004cea, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x24040001, 0xc004d11, 0x2021, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020018, 0xc004d37, 0x34108000, ! 0xc004d37, 0x0, 0xc004cf1, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d37, 0x8021, 0x97a20010, 0x27b10010, ! 0x34420001, 0xa7a20010, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020018, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fff8, 0x0, ! 0xc004d37, 0x0, 0x8f830054, 0x8004cdc, ! 0x2402000a, 0x8f830054, 0x3c020001, 0x8c42571c, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x1440019b, ! 0x2402000b, 0x8004cea, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x24040001, 0xc004d11, 0x2021, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020017, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020017, 0xc004d37, 0x34108000, ! 0xc004d37, 0x0, 0xc004cf1, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d37, 0x8021, 0x97a20010, 0x27b10010, ! 0x34420700, 0xa7a20010, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020017, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020017, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fff8, 0x0, ! 0xc004d37, 0x0, 0x8f830054, 0x8004cdc, ! 0x2402000c, 0x8f830054, 0x3c020001, 0x8c42571c, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x14400127, ! 0x24020012, 0x8004cea, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x24040001, 0xc004d11, 0x2021, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020014, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020014, 0xc004d37, 0x34108000, ! 0xc004d37, 0x0, 0xc004cf1, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d37, 0x8021, 0x97a20010, 0x27b10010, ! 0x34420010, 0xa7a20010, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020014, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020014, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fff8, 0x0, ! 0xc004d37, 0x0, 0x8f830054, 0x8004cdc, ! 0x24020013, 0x8f830054, 0x3c020001, 0x8c42571c, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x144000b3, ! 0x2402000d, 0x8004cea, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x24040001, 0xc004d11, 0x2021, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020018, 0xc004d37, 0x34108000, ! 0xc004d37, 0x0, 0xc004cf1, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d37, 0x8021, 0x97a20010, 0x27b10010, ! 0x3042fffe, 0xa7a20010, 0xc004d11, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0xc004d11, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc004d11, 0x108042, ! 0x1600fffa, 0x32020018, 0xc004d11, 0x24040001, ! 0xc004d11, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fff8, 0x0, ! 0xc004d37, 0x0, 0x8f830054, 0x8004cdc, ! 0x2402000e, 0x24020840, 0xa7a20010, 0x27b10010, ! 0x8021, 0xc004d11, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc004d11, ! 0x2021, 0xc004d11, 0x24040001, 0xc004d11, ! 0x2021, 0xc004d11, 0x24040001, 0x24100010, ! 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc004d11, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0x32020013, 0x10400002, 0x2021, ! 0x24040001, 0xc004d11, 0x108042, 0x1600fffa, ! 0x32020013, 0xc004d11, 0x24040001, 0xc004d11, ! 0x2021, 0x34108000, 0x96220000, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc004d11, ! 0x108042, 0x1600fff8, 0x0, 0xc004d37, ! 0x0, 0x8f830054, 0x24020010, 0x3c010001, ! 0xac225680, 0x3c010001, 0x8004cec, 0xac23571c, ! 0x8f830054, 0x3c020001, 0x8c42571c, 0x2463ff9c, ! 0x431023, 0x2c420064, 0x14400004, 0x0, ! 0x24020011, 0x3c010001, 0xac225680, 0x8fbf0020, ! 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, ! 0x8f850044, 0x8f820044, 0x3c030001, 0x431025, ! 0x3c030008, 0xaf820044, 0x8f840054, 0x8f820054, ! 0xa32824, 0x8004cfd, 0x24840001, 0x8f820054, ! 0x821023, 0x2c420002, 0x1440fffc, 0x0, ! 0x8f820044, 0x3c03fffe, 0x3463ffff, 0x431024, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d0b, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x3e00008, 0xa01021, ! 0x8f830044, 0x3c02fff0, 0x3442ffff, 0x42480, ! 0x621824, 0x3c020002, 0x822025, 0x641825, ! 0xaf830044, 0x8f820044, 0x3c030001, 0x431025, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d23, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, 0x0, 0x8f820044, 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820044, 0x8f830054, - 0x8f820054, 0x8004d31, 0x24630001, 0x8f820054, - 0x621023, 0x2c420002, 0x1440fffc, 0x0, - 0x3e00008, 0x0, 0x8f820044, 0x3c03fff0, - 0x3463ffff, 0x431024, 0xaf820044, 0x8f820044, - 0x3c030001, 0x431025, 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d45, 0x24630001, 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x8f820044, 0x3c03fffe, 0x3463ffff, 0x431024, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d53, 0x24630001, 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, 0x0, 0x3e00008, 0x0, 0x0, 0x0, 0x0, 0x27bdffe8, 0xafbf0010, 0x3c030001, 0x771821, 0x8c6383ac, 0x24020008, 0x1462022c, 0x803021, 0x3c020001, ! 0x8c425708, 0x14400033, 0x0, 0x8f850224, 0x38a30020, 0x2c630001, 0x38a20010, 0x2c420001, 0x621825, 0x1460000d, 0x38a30030, 0x2c630001, 0x38a20400, 0x2c420001, 0x621825, 0x14600007, 0x38a30402, 0x2c630001, 0x38a20404, 0x2c420001, 0x621825, 0x10600005, 0x0, 0xc00429b, ! 0x0, 0x8004d95, 0x2402000e, 0xc0043dd, ! 0x0, 0x3c050001, 0x8ca55648, 0xc00511d, ! 0x2021, 0x3c030001, 0x8c635648, 0x24020004, ! 0x14620005, 0x2403fffb, 0x3c020001, 0x8c425644, ! 0x8004d91, 0x2403fff7, 0x3c020001, 0x8c425644, ! 0x431024, 0x3c010001, 0xac225644, 0x2402000e, ! 0x3c010001, 0xc00429b, 0xac227730, 0x8004f8f, 0x0, 0x8f820220, 0x3c030400, 0x431024, 0x10400027, 0x2403ffbf, 0x8f850224, 0x3c020001, ! 0x8c42773c, 0xa32024, 0x431024, 0x1482000c, ! 0x0, 0x3c020001, 0x8c427740, 0x24420001, ! 0x3c010001, 0xac227740, 0x2c420002, 0x14400008, ! 0x24020001, 0x3c010001, 0x8004db5, 0xac227760, ! 0x3c010001, 0xac207740, 0x3c010001, 0xac207760, ! 0x3c020001, 0x8c427760, 0x10400006, 0x30a20040, ! 0x10400004, 0x24020001, 0x3c010001, 0x8004dc0, ! 0xac227764, 0x3c010001, 0xac207764, 0x3c010001, ! 0xac25773c, 0x3c010001, 0x8004dd0, 0xac207770, ! 0x24020001, 0x3c010001, 0xac227770, 0x3c010001, ! 0xac207760, 0x3c010001, 0xac207740, 0x3c010001, ! 0xac207764, 0x3c010001, 0xac20773c, 0x3c030001, ! 0x8c637730, 0x3c020001, 0x8c427734, 0x10620003, ! 0x3c020200, 0x3c010001, 0xac237734, 0xc21024, 0x10400007, 0x2463ffff, 0x8f820220, 0x24030001, ! 0x3c010001, 0xac23564c, 0x8004f8d, 0x3c03f700, 0x2c62000e, 0x104001a8, 0x31080, 0x3c010001, ! 0x220821, 0x8c225510, 0x400008, 0x0, ! 0x3c010001, 0xac207760, 0x3c010001, 0xac207740, ! 0x3c010001, 0xac20773c, 0x3c010001, 0xac207764, ! 0x3c010001, 0xac207758, 0x3c010001, 0xac207750, ! 0xc0047d9, 0xaf800224, 0x24020002, 0x3c010001, ! 0xac227730, 0x3c020001, 0x8c427770, 0x14400056, 0x3c03fdff, 0x8ee20000, 0x3463ffff, 0x431024, 0xc00429b, 0xaee20000, 0xaf800204, 0x8f820200, 0x2403fffd, 0x431024, 0xaf820200, 0x3c010001, ! 0xac207780, 0x8f830054, 0x3c020001, 0x8c427758, ! 0x24040001, 0x3c010001, 0xac24776c, 0x24420001, ! 0x3c010001, 0xac227758, 0x2c420004, 0x3c010001, ! 0xac237754, 0x14400006, 0x24020003, 0x3c010001, ! 0xac24564c, 0x3c010001, 0x8004f8b, 0xac207758, ! 0x3c010001, 0x8004f8b, 0xac227730, 0x8f830054, ! 0x3c020001, 0x8c427754, 0x2463d8f0, 0x431023, 0x2c422710, 0x14400003, 0x24020004, 0x3c010001, ! 0xac227730, 0x3c020001, 0x8c427770, 0x14400026, 0x3c03fdff, 0x8ee20000, 0x3463ffff, 0x431024, ! 0x8004f8b, 0xaee20000, 0x3c040001, 0x8c84570c, ! 0x3c010001, 0xc004f92, 0xac207748, 0x3c020001, ! 0x8c42777c, 0xaf820204, 0x3c020001, 0x8c427770, 0x14400015, 0x3c03fdff, 0x8ee20000, 0x3463ffff, 0x431024, 0xaee20000, 0x8f820204, 0x30420030, ! 0x1440013c, 0x24020002, 0x3c030001, 0x8c63777c, ! 0x24020005, 0x3c010001, 0xac227730, 0x3c010001, ! 0x8004f8b, 0xac237780, 0x3c020001, 0x8c427770, ! 0x10400010, 0x3c03fdff, 0x3c020001, 0x8c4256dc, ! 0x24420001, 0x3c010001, 0xac2256dc, 0x2c420002, ! 0x14400131, 0x24020001, 0x3c010001, 0xac2256e4, ! 0x3c010001, 0xac2056dc, 0x3c010001, 0x8004f8b, ! 0xac22564c, 0x8ee20000, 0x3463ffff, 0x431024, ! 0xaee20000, 0x3c020001, 0x8c427760, 0x10400122, ! 0x0, 0x3c020001, 0x8c42773c, 0x1040011e, ! 0x0, 0x3c010001, 0xac227768, 0x24020003, ! 0x3c010001, 0xac227740, 0x8004f2c, 0x24020006, ! 0x3c010001, 0xac207748, 0x8f820204, 0x34420040, ! 0xaf820204, 0x3c020001, 0x8c427780, 0x24030007, ! 0x3c010001, 0xac237730, 0x34420040, 0x3c010001, ! 0xac227780, 0x3c020001, 0x8c427760, 0x10400005, ! 0x0, 0x3c020001, 0x8c42773c, 0x104000f9, ! 0x24020002, 0x3c050001, 0x24a57740, 0x8ca20000, 0x2c424e21, 0x104000f3, 0x24020002, 0x3c020001, ! 0x8c427764, 0x104000f8, 0x2404ffbf, 0x3c020001, ! 0x8c42773c, 0x3c030001, 0x8c637768, 0x441024, 0x641824, 0x10430004, 0x24020001, 0x3c010001, ! 0x8004f8b, 0xac227730, 0x24020003, 0xaca20000, ! 0x24020008, 0x3c010001, 0xac227730, 0x3c020001, ! 0x8c42776c, 0x1040000c, 0x24020001, 0x3c040001, ! 0xc004f9f, 0x8c84773c, 0x3c020001, 0x8c427788, ! 0x14400005, 0x24020001, 0x3c020001, 0x8c427784, ! 0x10400006, 0x24020001, 0x3c010001, 0xac22564c, ! 0x3c010001, 0x8004f8b, 0xac207758, 0x3c020001, ! 0x8c427750, 0x3c030001, 0x8c63773c, 0x2c420001, ! 0x210c0, 0x30630008, 0x3c010001, 0xac227750, ! 0x3c010001, 0xac23774c, 0x8f830054, 0x24020009, ! 0x3c010001, 0xac227730, 0x3c010001, 0x8004f8b, ! 0xac237754, 0x8f830054, 0x3c020001, 0x8c427754, 0x2463d8f0, 0x431023, 0x2c422710, 0x144000a8, ! 0x0, 0x3c020001, 0x8c427760, 0x10400005, ! 0x0, 0x3c020001, 0x8c42773c, 0x104000a9, ! 0x24020002, 0x3c030001, 0x24637740, 0x8c620000, 0x2c424e21, 0x104000a3, 0x24020002, 0x3c020001, ! 0x8c42776c, 0x1040000e, 0x0, 0x3c020001, ! 0x8c42773c, 0x3c010001, 0xac20776c, 0x30420080, 0x1040002f, 0x2402000c, 0x8f820204, 0x30420080, ! 0x1440000c, 0x24020003, 0x8004f19, 0x2402000c, ! 0x3c020001, 0x8c42773c, 0x30420080, 0x14400005, 0x24020003, 0x8f820204, 0x30420080, 0x1040001f, 0x24020003, 0xac620000, 0x2402000a, 0x3c010001, ! 0xac227730, 0x3c040001, 0x24847778, 0x8c820000, ! 0x3c030001, 0x8c637750, 0x431025, 0xaf820204, ! 0x8c830000, 0x3c040001, 0x8c847750, 0x2402000b, ! 0x3c010001, 0xac227730, 0x641825, 0x3c010001, ! 0xac237780, 0x3c050001, 0x24a57740, 0x8ca20000, 0x2c424e21, 0x1040006f, 0x24020002, 0x3c020001, ! 0x8c427770, 0x10400005, 0x0, 0x2402000c, ! 0x3c010001, 0x8004f8b, 0xac227730, 0x3c020001, ! 0x8c427760, 0x1040006c, 0x0, 0x3c040001, ! 0x8c84773c, 0x1080005e, 0x30820008, 0x3c030001, ! 0x8c63774c, 0x10620064, 0x24020003, 0x3c010001, ! 0xac247768, 0xaca20000, 0x24020006, 0x3c010001, ! 0x8004f8b, 0xac227730, 0x8f820200, 0x34420002, 0xaf820200, 0x8f830054, 0x2402000d, 0x3c010001, ! 0xac227730, 0x3c010001, 0xac237754, 0x8f830054, ! 0x3c020001, 0x8c427754, 0x2463d8f0, 0x431023, 0x2c422710, 0x1440003a, 0x0, 0x3c020001, ! 0x8c427770, 0x10400029, 0x2402000e, 0x3c030001, ! 0x8c637784, 0x3c010001, 0x14600015, 0xac227730, ! 0xc0043dd, 0x0, 0x3c050001, 0x8ca55648, ! 0xc00511d, 0x2021, 0x3c030001, 0x8c635648, 0x24020004, 0x14620005, 0x2403fffb, 0x3c020001, ! 0x8c425644, 0x8004f5a, 0x2403fff7, 0x3c020001, ! 0x8c425644, 0x431024, 0x3c010001, 0xac225644, 0x8ee20000, 0x3c030200, 0x431025, 0xaee20000, ! 0x8f820224, 0x3c010001, 0xac22778c, 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, 0x8f820220, ! 0x34420002, 0x8004f8b, 0xaf820220, 0x3c020001, ! 0x8c427760, 0x10400005, 0x0, 0x3c020001, ! 0x8c42773c, 0x1040000f, 0x24020002, 0x3c020001, ! 0x8c427740, 0x2c424e21, 0x1040000a, 0x24020002, ! 0x3c020001, 0x8c427760, 0x1040000f, 0x0, ! 0x3c020001, 0x8c42773c, 0x1440000b, 0x0, ! 0x24020002, 0x3c010001, 0x8004f8b, 0xac227730, ! 0x3c020001, 0x8c427760, 0x10400003, 0x0, 0xc00429b, 0x0, 0x8f820220, 0x3c03f700, 0x431025, 0xaf820220, 0x8fbf0010, 0x3e00008, ! 0x27bd0018, 0x3c030001, 0x24637788, 0x8c620000, ! 0x10400005, 0x34422000, 0x3c010001, 0xac22777c, ! 0x8004f9d, 0xac600000, 0x3c010001, 0xac24777c, 0x3e00008, 0x0, 0x27bdffe0, 0x30820030, ! 0xafbf0018, 0x3c010001, 0xac227784, 0x14400067, 0x3c02ffff, 0x34421f0e, 0x821024, 0x14400061, 0x24020030, 0x30822000, 0x1040005d, 0x30838000, 0x31a02, 0x30820001, 0x21200, 0x3c040001, ! 0x8c84570c, 0x621825, 0x331c2, 0x3c030001, ! 0x246356e8, 0x30828000, 0x21202, 0x30840001, 0x42200, 0x441025, 0x239c2, 0x61080, 0x431021, 0x471021, 0x90430000, 0x24020001, 0x10620025, 0x0, 0x10600007, 0x24020002, 0x10620013, 0x24020003, 0x1062002c, 0x3c05000f, ! 0x8005001, 0x0, 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820220, 0x3c010001, ! 0xac2077a4, 0x3c010001, 0x800500c, 0xac2077ac, 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820220, ! 0x24020100, 0x3c010001, 0xac2277a4, 0x3c010001, ! 0x800500c, 0xac2077ac, 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, 0x3c030001, ! 0x431025, 0xaf820220, 0x3c010001, 0xac2077a4, ! 0x3c010001, 0x800500c, 0xac2377ac, 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, 0x3c030001, 0x431025, 0xaf820220, 0x24020100, 0x3c010001, ! 0xac2277a4, 0x3c010001, 0x800500c, 0xac2377ac, ! 0x34a5ffff, 0x3c040001, 0x24845548, 0xafa30010, ! 0xc002403, 0xafa00014, 0x800500c, 0x0, ! 0x24020030, 0x3c010001, 0xac227788, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x0, 0x27bdffc8, ! 0xafb10024, 0x808821, 0xafb3002c, 0xa09821, ! 0xafb00020, 0xc08021, 0x3c040001, 0x24845560, ! 0x3c050009, 0x3c020001, 0x8c425648, 0x34a59001, ! 0x2203021, 0x2603821, 0xafbf0030, 0xafb20028, 0xa7a0001a, 0xafb00014, 0xc002403, 0xafa20010, ! 0x24020002, 0x126200ef, 0x2e620003, 0x10400005, ! 0x24020001, 0x1262000a, 0x3c02fffb, 0x8005116, ! 0x0, 0x24020004, 0x1262006d, 0x24020008, ! 0x1262006c, 0x3c02ffec, 0x8005116, 0x0, ! 0x3442ffff, 0x2028024, 0x119140, 0x3c010001, ! 0x320821, 0xac30779c, 0x3c024000, 0x2021024, ! 0x10400046, 0x1023c2, 0x30840030, 0x101382, ! 0x3042000c, 0x3c030001, 0x24635684, 0x431021, ! 0x823821, 0x3c020020, 0x2021024, 0x10400006, ! 0x24020100, 0x3c010001, 0x320821, 0xac2277a0, ! 0x8005053, 0x3c020080, 0x3c010001, 0x320821, ! 0xac2077a0, 0x3c020080, 0x2021024, 0x10400006, ! 0x111940, 0x3c020001, 0x3c010001, 0x230821, ! 0x800505f, 0xac2277a8, 0x111140, 0x3c010001, ! 0x220821, 0xac2077a8, 0x94e30000, 0x32024000, ! 0x10400003, 0xa7a30018, 0x34624000, 0xa7a20018, ! 0x24040001, 0x94e20002, 0x24050004, 0x24e60002, ! 0x34420001, 0xc0048fa, 0xa4e20002, 0x24040001, ! 0x2821, 0xc0048fa, 0x27a60018, 0x3c020001, ! 0x8c425648, 0x24110001, 0x3c010001, 0xac315654, ! 0x14530004, 0x32028000, 0xc00429b, 0x0, ! 0x32028000, 0x1040009b, 0x0, 0xc00429b, ! 0x0, 0x24020002, 0x3c010001, 0xac31564c, ! 0x3c010001, 0x8005116, 0xac225648, 0x24040001, ! 0x24050004, 0x27b0001a, 0xc0048fa, 0x2003021, ! 0x24040001, 0x2821, 0xc0048fa, 0x2003021, ! 0x3c020001, 0x521021, 0x8c427794, 0x3c040001, ! 0x8c845648, 0x3c03bfff, 0x3463ffff, 0x3c010001, ! 0xac335654, 0x431024, 0x3c010001, 0x320821, ! 0x1093007a, 0xac227794, 0x8005116, 0x0, ! 0x3c02ffec, 0x3442ffff, 0x2028024, 0x3c020008, ! 0x2028025, 0x111140, 0x3c010001, 0x220821, ! 0xac307798, 0x3c022000, 0x2021024, 0x10400009, ! 0x0, 0x3c020001, 0x8c4256e4, 0x14400005, ! 0x24020001, 0x3c010001, 0xac225708, 0x80050b5, ! 0x3c024000, 0x3c010001, 0xac205708, 0x3c024000, ! 0x2021024, 0x1440001e, 0x0, 0x3c020001, ! 0x8c425708, 0x3c010001, 0xac205660, 0x10400007, ! 0x24022020, 0x3c010001, 0xac22570c, 0x24020001, ! 0x3c010001, 0x370821, 0xac2283ac, 0x3c04bfff, ! 0x111940, 0x3c020001, 0x431021, 0x8c427790, ! 0x3c050001, 0x8ca55648, 0x3484ffff, 0x441024, ! 0x3c010001, 0x230821, 0xac227790, 0x24020001, ! 0x10a20044, 0x0, 0x8005114, 0x0, ! 0x3c020001, 0x8c425708, 0x1040001c, 0x24022000, ! 0x3c010001, 0xac22570c, 0x3c0300a0, 0x2031024, ! 0x14430005, 0x111140, 0x3402a000, 0x3c010001, ! 0x800510f, 0xac22570c, 0x3c030001, 0x621821, ! 0x8c637798, 0x3c020020, 0x621024, 0x10400004, ! 0x24022001, 0x3c010001, 0x800510f, 0xac22570c, ! 0x3c020080, 0x621024, 0x1040001f, 0x3402a001, ! 0x3c010001, 0x800510f, 0xac22570c, 0x3c020020, ! 0x2021024, 0x10400007, 0x111940, 0x24020100, ! 0x3c010001, 0x230821, 0xac2277a4, 0x8005103, ! 0x3c020080, 0x111140, 0x3c010001, 0x220821, ! 0xac2077a4, 0x3c020080, 0x2021024, 0x10400006, ! 0x111940, 0x3c020001, 0x3c010001, 0x230821, ! 0x800510f, 0xac2277ac, 0x111140, 0x3c010001, ! 0x220821, 0xac2077ac, 0x3c030001, 0x8c635648, ! 0x24020001, 0x10620003, 0x0, 0xc00429b, ! 0x0, 0x8fbf0030, 0x8fb3002c, 0x8fb20028, ! 0x8fb10024, 0x8fb00020, 0x3e00008, 0x27bd0038, ! 0x27bdffd0, 0xafb40028, 0x80a021, 0xafb20020, ! 0x9021, 0xafb30024, 0x9821, 0xafb1001c, ! 0x8821, 0x24020002, 0xafbf002c, 0xafb00018, ! 0xa7a00012, 0x10a20068, 0xa7a00010, 0x2ca20003, ! 0x10400005, 0x24020001, 0x10a2000a, 0x148140, ! 0x80051e0, 0x2201021, 0x24020004, 0x10a2005e, ! 0x24020008, 0x10a2005d, 0x142940, 0x80051e0, ! 0x2201021, 0x3c030001, 0x701821, 0x8c63779c, ! 0x3c024000, 0x621024, 0x14400009, 0x24040001, ! 0x3c027fff, 0x3442ffff, 0x628824, 0x3c010001, ! 0x300821, 0xac317794, 0x80051e0, 0x2201021, ! 0x24050001, 0xc0048b8, 0x27a60010, 0x24040001, ! 0x24050001, 0xc0048b8, 0x27a60010, 0x97a20010, ! 0x30420004, 0x10400034, 0x3c114000, 0x3c030001, ! 0x8c635720, 0x24020003, 0x10620008, 0x2c620004, ! 0x14400029, 0x3c028000, 0x24020004, 0x10620014, ! 0x24040001, 0x8005183, 0x3c028000, 0x24040001, ! 0x24050011, 0x27b00012, 0xc0048b8, 0x2003021, ! 0x24040001, 0x24050011, 0xc0048b8, 0x2003021, ! 0x97a30012, 0x30624000, 0x10400002, 0x3c130010, ! 0x3c130008, 0x3c120001, 0x8005180, 0x30628000, ! 0x24050014, 0x27b00012, 0xc0048b8, 0x2003021, ! 0x24040001, 0x24050014, 0xc0048b8, 0x2003021, ! 0x97a30012, 0x30621000, 0x10400002, 0x3c130010, ! 0x3c130008, 0x3c120001, 0x30620800, 0x54400001, ! 0x3c120002, 0x3c028000, 0x2221025, 0x2531825, ! 0x800518d, 0x438825, 0x3c110001, 0x2308821, ! 0x8e31779c, 0x3c027fff, 0x3442ffff, 0x2228824, ! 0x141140, 0x3c010001, 0x220821, 0xac317794, ! 0x80051e0, 0x2201021, 0x142940, 0x3c030001, ! 0x651821, 0x8c637798, 0x3c024000, 0x621024, 0x14400008, 0x3c027fff, 0x3442ffff, 0x628824, ! 0x3c010001, 0x250821, 0xac317790, 0x80051e0, ! 0x2201021, 0x3c020001, 0x8c425658, 0x10400033, ! 0x3c11c00c, 0x3c020001, 0x8c4256e4, 0x3c04c00c, ! 0x34842000, 0x3c030001, 0x8c635708, 0x2102b, 0x21023, 0x441024, 0x10600003, 0x518825, 0x3c022000, 0x2228825, 0x3c020001, 0x451021, ! 0x8c4277a4, 0x10400003, 0x3c020020, 0x80051bd, 0x2228825, 0x3c02ffdf, 0x3442ffff, 0x2228824, ! 0x141140, 0x3c010001, 0x220821, 0x8c2277ac, ! 0x10400003, 0x3c020080, 0x80051c8, 0x2228825, 0x3c02ff7f, 0x3442ffff, 0x2228824, 0x3c020001, ! 0x8c4256d0, 0x10400002, 0x3c020800, 0x2228825, ! 0x3c020001, 0x8c4256d4, 0x10400002, 0x3c020400, ! 0x2228825, 0x3c020001, 0x8c4256d8, 0x10400006, ! 0x3c020100, 0x80051db, 0x2228825, 0x3c027fff, ! 0x3442ffff, 0x628824, 0x141140, 0x3c010001, ! 0x220821, 0xac317790, 0x2201021, 0x8fbf002c, ! 0x8fb40028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, ! 0x8fb00018, 0x3e00008, 0x27bd0030, 0x27bdffd8, ! 0xafb40020, 0x80a021, 0xafbf0024, 0xafb3001c, ! 0xafb20018, 0xafb10014, 0xafb00010, 0x8f900200, ! 0x3c030001, 0x8c635648, 0x8f930220, 0x24020002, ! 0x106200b4, 0x2c620003, 0x10400005, 0x24020001, ! 0x1062000a, 0x141940, 0x80052aa, 0x0, ! 0x24020004, 0x1062005a, 0x24020008, 0x10620059, ! 0x149140, 0x80052aa, 0x0, 0x3c040001, ! 0x832021, 0x8c84779c, 0x3c110001, 0x2238821, ! 0x8e317794, 0x3c024000, 0x821024, 0x1040003e, ! 0x3c020008, 0x2221024, 0x10400020, 0x36100002, ! 0x3c020001, 0x431021, 0x8c4277a0, 0x10400005, ! 0x36100020, 0x36100100, 0x3c020020, 0x800521f, ! 0x2228825, 0x2402feff, 0x2028024, 0x3c02ffdf, ! 0x3442ffff, 0x2228824, 0x141140, 0x3c010001, ! 0x220821, 0x8c2277a8, 0x10400005, 0x3c020001, ! 0x2629825, 0x3c020080, 0x800523e, 0x2228825, ! 0x3c02fffe, 0x3442ffff, 0x2629824, 0x3c02ff7f, ! 0x3442ffff, 0x800523e, 0x2228824, 0x2402fedf, ! 0x2028024, 0x3c02fffe, 0x3442ffff, 0x2629824, ! 0x3c02ff5f, 0x3442ffff, 0x2228824, 0x3c010001, ! 0x230821, 0xac2077a0, 0x3c010001, 0x230821, ! 0xac2077a8, 0xc0047d9, 0x0, 0xaf900200, ! 0xaf930220, 0x8f820220, 0x2403fffb, 0x431024, ! 0xaf820220, 0x8f820220, 0x34420002, 0xaf820220, ! 0x8005255, 0x141140, 0x8f820200, 0x2403fffd, ! 0x431024, 0xc0047d9, 0xaf820200, 0x3c02bfff, ! 0x3442ffff, 0xc00429b, 0x2228824, 0x141140, ! 0x3c010001, 0x220821, 0x80052aa, 0xac317794, ! 0x149140, 0x3c040001, 0x922021, 0x8c847798, ! 0x3c110001, 0x2328821, 0x8e317790, 0x3c024000, ! 0x821024, 0x14400011, 0x0, 0x3c020001, ! 0x8c425708, 0x14400006, 0x3c02bfff, 0x8f820200, ! 0x34420002, 0xc0047d9, 0xaf820200, 0x3c02bfff, ! 0x3442ffff, 0xc00429b, 0x2228824, 0x3c010001, ! 0x320821, 0x80052aa, 0xac317790, 0x3c020001, ! 0x8c425708, 0x10400005, 0x3c020020, 0x3c020001, ! 0x8c4256e4, 0x1040002b, 0x3c020020, 0x821024, ! 0x10400007, 0x36100020, 0x24020100, 0x3c010001, ! 0x320821, 0xac2277a4, 0x800528a, 0x36100100, ! 0x3c010001, 0x320821, 0xac2077a4, 0x2402feff, ! 0x2028024, 0x3c020080, 0x821024, 0x10400007, ! 0x141940, 0x3c020001, 0x3c010001, 0x230821, ! 0xac2277ac, 0x800529b, 0x2629825, 0x141140, ! 0x3c010001, 0x220821, 0xac2077ac, 0x3c02fffe, ! 0x3442ffff, 0x2629824, 0xc0047d9, 0x0, ! 0xaf900200, 0xaf930220, 0x8f820220, 0x2403fffb, ! 0x431024, 0xaf820220, 0x8f820220, 0x34420002, ! 0xaf820220, 0x141140, 0x3c010001, 0x220821, ! 0xac317790, 0x8fbf0024, 0x8fb40020, 0x8fb3001c, ! 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, ! 0x27bd0028, 0x0, 0x0, 0x0 }; static u_int32_t tigonFwRodata[] = { 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, --- 3425,4397 ---- 0x1062000c, 0x43102b, 0x14400006, 0x3c026000, 0x3c024000, 0x10620008, 0x24020800, 0x8004539, 0x0, 0x10620004, 0x24020800, 0x8004539, ! 0x0, 0x24020700, 0x3c010001, 0xac225cdc, ! 0x3e00008, 0x0, 0x27bdffd8, 0xafbf0024, ! 0xafb00020, 0x8f830054, 0x8f820054, 0x3c010001, ! 0xac205cc4, 0x8004545, 0x24630064, 0x8f820054, ! 0x621023, 0x2c420065, 0x1440fffc, 0x0, ! 0xc004d71, 0x0, 0x24040001, 0x2821, ! 0x27a60018, 0x34028000, 0xc00498e, 0xa7a20018, ! 0x8f830054, 0x8f820054, 0x8004556, 0x24630064, ! 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, ! 0x24040001, 0x24050001, 0xc00494c, 0x27a60018, ! 0x8f830054, 0x8f820054, 0x8004562, 0x24630064, ! 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, ! 0x24040001, 0x24050001, 0xc00494c, 0x27a60018, ! 0x8f830054, 0x8f820054, 0x800456e, 0x24630064, ! 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, ! 0x24040001, 0x3c060001, 0x24c65da0, 0xc00494c, ! 0x24050002, 0x8f830054, 0x8f820054, 0x800457b, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x24040001, 0x24050003, 0x3c100001, ! 0x26105da2, 0xc00494c, 0x2003021, 0x97a60018, ! 0x3c070001, 0x94e75da0, 0x3c040001, 0x24845ab0, ! 0xafa00014, 0x96020000, 0x3c05000d, 0x34a50100, ! 0xc002403, 0xafa20010, 0x97a20018, 0x1040004c, ! 0x24036040, 0x96020000, 0x3042fff0, 0x1443000a, ! 0x24020020, 0x3c030001, 0x94635da0, 0x54620009, ! 0x24027830, 0x24020003, 0x3c010001, 0xac225cc4, ! 0x80045ac, 0x24020005, 0x3c030001, 0x94635da0, ! 0x24027830, 0x1462000f, 0x24030010, 0x3c020001, ! 0x94425da2, 0x3042fff0, 0x1443000a, 0x24020003, ! 0x3c010001, 0xac225cc4, 0x24020006, 0x3c010001, ! 0xac225db0, 0x3c010001, 0xac225dbc, 0x80045e6, ! 0x3c09fff0, 0x3c020001, 0x8c425cc4, 0x3c030001, ! 0x94635da0, 0x34420001, 0x3c010001, 0xac225cc4, ! 0x24020015, 0x1462000f, 0x0, 0x3c020001, ! 0x94425da2, 0x3042fff0, 0x3843f420, 0x2c630001, ! 0x3842f430, 0x2c420001, 0x621825, 0x10600005, ! 0x24020003, 0x3c010001, 0xac225dbc, 0x80045e6, ! 0x3c09fff0, 0x3c030001, 0x94635da0, 0x24027810, ! 0x1462000b, 0x24020002, 0x3c020001, 0x94425da2, ! 0x3042fff0, 0x14400006, 0x24020002, 0x24020004, ! 0x3c010001, 0xac225dbc, 0x80045e6, 0x3c09fff0, ! 0x3c010001, 0xac225dbc, 0x80045e6, 0x3c09fff0, ! 0x3c020001, 0x8c425cc4, 0x24030001, 0x3c010001, ! 0xac235dbc, 0x34420004, 0x3c010001, 0xac225cc4, ! 0x3c09fff0, 0x3529bdc0, 0x3c060001, 0x8cc65cc4, ! 0x3c040001, 0x24845ab0, 0x24020001, 0x3c010001, ! 0xac225ccc, 0x8f820054, 0x3c070001, 0x8ce75dbc, ! 0x3c030001, 0x94635da0, 0x3c080001, 0x95085da2, ! 0x3c05000d, 0x34a50100, 0x3c010001, 0xac205cc8, ! 0x491021, 0x3c010001, 0xac225dac, 0xafa30010, ! 0xc002403, 0xafa80014, 0x8fbf0024, 0x8fb00020, ! 0x3e00008, 0x27bd0028, 0x27bdffe8, 0x3c050001, ! 0x8ca55cc8, 0x24060004, 0x24020001, 0x14a20014, ! 0xafbf0010, 0x3c020001, 0x8c427e3c, 0x30428000, ! 0x10400005, 0x3c04000f, 0x3c030001, 0x8c635dbc, ! 0x8004617, 0x34844240, 0x3c040004, 0x3c030001, ! 0x8c635dbc, 0x348493e0, 0x24020005, 0x14620016, ! 0x0, 0x3c04003d, 0x800462f, 0x34840900, ! 0x3c020001, 0x8c427e38, 0x30428000, 0x10400005, ! 0x3c04001e, 0x3c030001, 0x8c635dbc, 0x800462a, ! 0x34848480, 0x3c04000f, 0x3c030001, 0x8c635dbc, ! 0x34844240, 0x24020005, 0x14620003, 0x0, ! 0x3c04007a, 0x34841200, 0x3c020001, 0x8c425dac, ! 0x8f830054, 0x441021, 0x431023, 0x44102b, ! 0x14400037, 0x0, 0x3c020001, 0x8c425cd0, ! 0x14400033, 0x0, 0x3c010001, 0x10c00025, ! 0xac205ce0, 0x3c090001, 0x8d295cc4, 0x24070001, ! 0x3c044000, 0x3c080001, 0x25087e3c, 0x250afffc, ! 0x52842, 0x14a00002, 0x24c6ffff, 0x24050008, ! 0xa91024, 0x10400010, 0x0, 0x14a70008, ! 0x0, 0x8d020000, 0x441024, 0x1040000a, ! 0x0, 0x3c010001, 0x800465b, 0xac255ce0, ! 0x8d420000, 0x441024, 0x10400003, 0x0, ! 0x3c010001, 0xac275ce0, 0x3c020001, 0x8c425ce0, ! 0x6182b, 0x2c420001, 0x431024, 0x5440ffe5, ! 0x52842, 0x8f820054, 0x3c030001, 0x8c635ce0, ! 0x3c010001, 0xac225dac, 0x1060002a, 0x24020001, ! 0x3c010001, 0xac255cc8, 0x3c010001, 0xac225ccc, ! 0x3c020001, 0x8c425ce0, 0x10400022, 0x0, ! 0x3c020001, 0x8c425ccc, 0x1040000a, 0x24020001, ! 0x3c010001, 0xac205ccc, 0x3c010001, 0x370821, ! 0xac2283ac, 0x3c010001, 0xac205d4c, 0x3c010001, ! 0xac225d04, 0x3c030001, 0x771821, 0x8c6383ac, ! 0x24020008, 0x10620005, 0x24020001, 0xc004695, ! 0x0, 0x8004692, 0x0, 0x3c030001, ! 0x8c635cc8, 0x10620007, 0x2402000e, 0x3c030001, ! 0x8c637dd0, 0x10620003, 0x0, 0xc004e54, ! 0x8f840220, 0x8fbf0010, 0x3e00008, 0x27bd0018, ! 0x27bdffe0, 0x3c02fdff, 0xafbf0018, 0x8ee30000, ! 0x3c050001, 0x8ca55cc8, 0x3c040001, 0x8c845cf0, ! 0x3442ffff, 0x621824, 0x14a40008, 0xaee30000, ! 0x3c030001, 0x771821, 0x8c6383ac, 0x3c020001, ! 0x8c425cf4, 0x10620008, 0x0, 0x3c020001, ! 0x571021, 0x8c4283ac, 0x3c010001, 0xac255cf0, ! 0x3c010001, 0xac225cf4, 0x3c030001, 0x8c635cc8, ! 0x24020002, 0x10620169, 0x2c620003, 0x10400005, ! 0x24020001, 0x10620008, 0x0, 0x800481c, ! 0x0, 0x24020004, 0x106200b1, 0x24020001, ! 0x800481d, 0x0, 0x3c020001, 0x571021, ! 0x8c4283ac, 0x2443ffff, 0x2c620008, 0x1040015a, ! 0x31080, 0x3c010001, 0x220821, 0x8c225ac8, ! 0x400008, 0x0, 0x3c030001, 0x8c635dbc, ! 0x24020005, 0x14620014, 0x0, 0x3c020001, ! 0x8c425cd4, 0x1040000a, 0x24020003, 0xc004822, ! 0x0, 0x24020002, 0x3c010001, 0x370821, ! 0xac2283ac, 0x3c010001, 0x80046e0, 0xac205cd4, ! 0x3c010001, 0x370821, 0xac2283ac, 0x3c010001, ! 0x800481f, 0xac205c60, 0xc004822, 0x0, ! 0x3c020001, 0x8c425cd4, 0x3c010001, 0xac205c60, ! 0x104000dd, 0x24020002, 0x3c010001, 0x370821, ! 0xac2283ac, 0x3c010001, 0x800481f, 0xac205cd4, ! 0x3c030001, 0x8c635dbc, 0x24020005, 0x14620003, ! 0x24020001, 0x3c010001, 0xac225d00, 0xc0049cf, ! 0x0, 0x3c030001, 0x8c635d00, 0x800478e, ! 0x24020011, 0x3c050001, 0x8ca55cc8, 0x3c060001, ! 0x8cc67e3c, 0xc005108, 0x2021, 0x24020005, ! 0x3c010001, 0xac205cd4, 0x3c010001, 0x370821, ! 0x800481f, 0xac2283ac, 0x3c040001, 0x24845abc, 0x3c05000f, 0x34a50100, 0x3021, 0x3821, ! 0xafa00010, 0xc002403, 0xafa00014, 0x800481f, 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0x80047b7, 0xaf820220, 0x8f820220, 0x3c030004, ! 0x431024, 0x144000a9, 0x24020007, 0x8f830054, ! 0x3c020001, 0x8c425da4, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x144000f8, 0x24020001, 0x800481d, ! 0x0, 0x3c050001, 0x8ca55cc8, 0xc0052a2, ! 0x2021, 0xc005386, 0x2021, 0x3c030001, ! 0x8c637e34, 0x46100ea, 0x24020001, 0x3c020008, 0x621024, 0x10400006, 0x0, 0x8f820214, ! 0x3c03ffff, 0x431024, 0x8004741, 0x3442251f, 0x8f820214, 0x3c03ffff, 0x431024, 0x3442241f, 0xaf820214, 0x8ee20000, 0x3c030200, 0x431025, 0xaee20000, 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, 0x8f820220, 0x34420002, 0xaf820220, ! 0x24020008, 0x3c010001, 0x370821, 0xac2283ac, ! 0x8f820220, 0x3c030004, 0x431024, 0x14400005, ! 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0xaf820220, 0x3c030001, 0x8c635dbc, 0x24020005, ! 0x1462000a, 0x0, 0x3c020001, 0x94425da2, ! 0x24429fbc, 0x2c420004, 0x10400004, 0x24040018, ! 0x24050002, 0xc004d93, 0x24060020, 0xc0043dd, ! 0x0, 0x3c010001, 0x800481f, 0xac205d50, ! 0x3c020001, 0x571021, 0x8c4283ac, 0x2443ffff, ! 0x2c620008, 0x104000ac, 0x31080, 0x3c010001, ! 0x220821, 0x8c225ae8, 0x400008, 0x0, ! 0xc00429b, 0x0, 0x3c010001, 0xac205ccc, ! 0xaf800204, 0x3c010001, 0xc004822, 0xac207e20, ! 0x24020001, 0x3c010001, 0xac225ce4, 0x24020002, ! 0x3c010001, 0x370821, 0x800481f, 0xac2283ac, ! 0xc00489f, 0x0, 0x3c030001, 0x8c635ce4, ! 0x24020009, 0x14620090, 0x24020003, 0x3c010001, ! 0x370821, 0x800481f, 0xac2283ac, 0x3c020001, ! 0x8c427e38, 0x30424000, 0x10400005, 0x0, ! 0x8f820044, 0x3c03ffff, 0x800479f, 0x34637fff, ! 0x8f820044, 0x2403ff7f, 0x431024, 0xaf820044, ! 0x8f830054, 0x80047b9, 0x24020004, 0x8f830054, ! 0x3c020001, 0x8c425da4, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x14400074, 0x24020005, 0x3c010001, ! 0x370821, 0x800481f, 0xac2283ac, 0x8f820220, ! 0x3c03f700, 0x431025, 0xaf820220, 0xaf800204, ! 0x3c010001, 0xac207e20, 0x8f830054, 0x24020006, ! 0x3c010001, 0x370821, 0xac2283ac, 0x3c010001, ! 0x800481f, 0xac235da4, 0x8f830054, 0x3c020001, ! 0x8c425da4, 0x2463fff6, 0x431023, 0x2c42000a, ! 0x14400059, 0x0, 0x24020007, 0x3c010001, ! 0x370821, 0x800481f, 0xac2283ac, 0x8f820220, ! 0x3c04f700, 0x441025, 0xaf820220, 0x8f820220, ! 0x3c030300, 0x431024, 0x14400005, 0x1821, ! 0x8f820220, 0x24030001, 0x441025, 0xaf820220, ! 0x10600043, 0x24020001, 0x8f820214, 0x3c03ffff, ! 0x3c040001, 0x8c845d98, 0x431024, 0x3442251f, ! 0xaf820214, 0x24020008, 0x3c010001, 0x370821, ! 0x1080000b, 0xac2283ac, 0x3c020001, 0x8c425d74, ! 0x14400007, 0x24020001, 0x3c010001, 0xac227dd0, ! 0xc004e54, 0x8f840220, 0x800480c, 0x0, ! 0x8f820220, 0x3c030008, 0x431024, 0x14400017, ! 0x2402000e, 0x3c010001, 0xac227dd0, 0x8ee20000, ! 0x2021, 0x3c030200, 0x431025, 0xc005386, ! 0xaee20000, 0x8f820220, 0x2403fffb, 0x431024, ! 0xaf820220, 0x8f820220, 0x34420002, 0xc0043dd, ! 0xaf820220, 0x3c050001, 0x8ca55cc8, 0xc0052a2, ! 0x2021, 0x800481f, 0x0, 0x3c020001, ! 0x8c425d74, 0x10400010, 0x0, 0x3c020001, ! 0x8c425d70, 0x2442ffff, 0x3c010001, 0xac225d70, ! 0x14400009, 0x24020002, 0x3c010001, 0xac205d74, ! 0x3c010001, 0x800481f, 0xac225d70, 0x24020001, ! 0x3c010001, 0xac225ccc, 0x8fbf0018, 0x3e00008, ! 0x27bd0020, 0x8f820200, 0x8f820220, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820200, 0x3c060001, ! 0x8cc65cc8, 0x34420004, 0xaf820200, 0x24020002, ! 0x10c2003a, 0x2cc20003, 0x10400005, 0x24020001, ! 0x10c20008, 0x0, 0x8004868, 0x0, ! 0x24020004, 0x10c20013, 0x24020001, 0x8004868, ! 0x0, 0x3c030001, 0x8c635cb8, 0x3c020001, ! 0x8c425cc0, 0x3c040001, 0x8c845cdc, 0x3c050001, ! 0x8ca55cbc, 0xaf860200, 0xaf860220, 0x34630022, ! 0x441025, 0x451025, 0x34420002, 0x8004867, ! 0xaf830200, 0x3c030001, 0x8c635d98, 0xaf820200, ! 0x10600009, 0xaf820220, 0x3c020001, 0x8c425d74, ! 0x14400005, 0x3c033f00, 0x3c020001, 0x8c425cb0, ! 0x800485b, 0x346300e0, 0x3c020001, 0x8c425cb0, ! 0x3c033f00, 0x346300e2, 0x431025, 0xaf820200, ! 0x3c030001, 0x8c635cb4, 0x3c04f700, 0x3c020001, ! 0x8c425cc0, 0x3c050001, 0x8ca55cdc, 0x641825, ! 0x431025, 0x451025, 0xaf820220, 0x3e00008, ! 0x0, 0x8f820220, 0x3c030001, 0x8c635cc8, ! 0x34420004, 0xaf820220, 0x24020001, 0x1062000f, ! 0x0, 0x8f830054, 0x8f820054, 0x24630002, ! 0x621023, 0x2c420003, 0x10400011, 0x0, ! 0x8f820054, 0x621023, 0x2c420003, 0x1040000c, ! 0x0, 0x8004879, 0x0, 0x8f830054, ! 0x8f820054, 0x8004885, 0x24630007, 0x8f820054, ! 0x621023, 0x2c420008, 0x1440fffc, 0x0, ! 0x8f8400e0, 0x30820007, 0x1040000d, 0x0, ! 0x8f820054, 0x8f8300e0, 0x14830009, 0x24450032, ! 0x8f820054, 0xa21023, 0x2c420033, 0x10400004, ! 0x0, 0x8f8200e0, 0x1082fff9, 0x0, ! 0x8f820220, 0x2403fffd, 0x431024, 0xaf820220, ! 0x3e00008, 0x0, 0x3c030001, 0x8c635ce4, ! 0x3c020001, 0x8c425ce8, 0x50620004, 0x2463ffff, ! 0x3c010001, 0xac235ce8, 0x2463ffff, 0x2c620009, ! 0x1040009d, 0x31080, 0x3c010001, 0x220821, ! 0x8c225b08, 0x400008, 0x0, 0x8f820044, ! 0x34428080, 0xaf820044, 0x8f830054, 0x8004938, ! 0x24020002, 0x8f830054, 0x3c020001, 0x8c425da8, ! 0x2463d8f0, 0x431023, 0x2c422710, 0x1440008a, ! 0x24020003, 0x8004945, 0x0, 0x8f820044, ! 0x3c03ffff, 0x34637fff, 0x431024, 0xaf820044, ! 0x8f830054, 0x8004938, 0x24020004, 0x8f830054, ! 0x3c020001, 0x8c425da8, 0x2463fff6, 0x431023, ! 0x2c42000a, 0x14400078, 0x24020005, 0x8004945, ! 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0xaf820220, 0x8f820220, 0x2403fffb, 0x431024, ! 0xaf820220, 0x8f820220, 0x34420002, 0xaf820220, ! 0x3c023f00, 0x344200e0, 0xaf820200, 0x8f820200, ! 0x2403fffd, 0x431024, 0xaf820200, 0x24040001, ! 0x3405ffff, 0xaf840204, 0x8f830054, 0x8f820054, ! 0x80048ec, 0x24630001, 0x8f820054, 0x621023, ! 0x2c420002, 0x1440fffc, 0x0, 0x8f820224, ! 0x42040, 0xa4102b, 0x1040fff2, 0x0, 0x8f820220, 0x3c03f700, 0x431025, 0xaf820220, ! 0x8f820214, 0x3c03ffff, 0x431024, 0x3442251f, ! 0xaf820214, 0x8f820220, 0x2403fffb, 0x431024, ! 0xaf820220, 0x8f820220, 0x3c04f700, 0x34840008, ! 0x34420002, 0xaf820220, 0x8f820220, 0x3c033f00, ! 0x346300e2, 0x441025, 0xaf820220, 0xaf830200, ! 0x8f8400f0, 0x276217f8, 0x14820002, 0x24850008, ! 0x27651000, 0x8f8200f4, 0x10a20007, 0x3c038000, ! 0x34630040, 0x3c020001, 0x24425c70, 0xac820000, ! 0xac830004, 0xaf8500f0, 0x8f830054, 0x8004938, ! 0x24020006, 0x8f830054, 0x3c020001, 0x8c425da8, ! 0x2463fff6, 0x431023, 0x2c42000a, 0x14400022, ! 0x24020007, 0x8004945, 0x0, 0x8f8200e0, ! 0xaf8200e4, 0x8f8200e0, 0xaf8200e8, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820220, 0x2403fff7, ! 0x431024, 0xaf820220, 0x8f820044, 0x34428080, ! 0xaf820044, 0x8f830054, 0x24020008, 0x3c010001, ! 0xac225ce4, 0x3c010001, 0x8004947, 0xac235da8, ! 0x8f830054, 0x3c020001, 0x8c425da8, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x14400003, 0x24020009, ! 0x3c010001, 0xac225ce4, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x27bdffd8, 0xafb20018, 0x809021, 0xafb3001c, 0xa09821, 0xafb10014, 0xc08821, 0xafb00010, 0x8021, ! 0xafbf0020, 0xa6200000, 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc004d4b, 0x2021, 0xc004d4b, 0x24040001, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, 0x24100010, 0x2501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d4b, 0x108042, 0x1600fffa, 0x2501024, 0x24100010, 0x2701024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fffa, 0x2701024, 0xc004d71, 0x34108000, ! 0xc004d71, 0x0, 0xc004d2b, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d71, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, 0x27bd0028, 0x27bdffd8, 0xafb10014, 0x808821, 0xafb20018, 0xa09021, 0xafb3001c, 0xc09821, ! 0xafb00010, 0x8021, 0xafbf0020, 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc004d4b, 0x2021, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0xc004d4b, 0x24040001, 0x24100010, 0x2301024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, 0x1600fffa, 0x2301024, 0x24100010, 0x2501024, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x2501024, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0x34108000, 0x96620000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d4b, 0x108042, 0x1600fff8, ! 0x0, 0xc004d71, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, ! 0x3e00008, 0x27bd0028, 0x3c030001, 0x8c635d00, ! 0x3c020001, 0x8c425d48, 0x27bdffd8, 0xafbf0020, 0xafb1001c, 0x10620003, 0xafb00018, 0x3c010001, ! 0xac235d48, 0x2463ffff, 0x2c620013, 0x10400349, ! 0x31080, 0x3c010001, 0x220821, 0x8c225b30, ! 0x400008, 0x0, 0xc004d71, 0x8021, ! 0x34028000, 0xa7a20010, 0x27b10010, 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc004d4b, 0x2021, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0xc004d4b, 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fff8, 0x0, 0xc004d71, 0x0, ! 0x8004d24, 0x24020002, 0x27b10010, 0xa7a00010, ! 0x8021, 0xc004d4b, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc004d4b, ! 0x2021, 0xc004d4b, 0x24040001, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0xc004d4b, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0xc004d71, 0x34108000, ! 0xc004d71, 0x0, 0xc004d2b, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004d71, 0x0, 0x97a20010, 0x30428000, ! 0x144002dc, 0x24020003, 0x8004d24, 0x0, ! 0x24021200, 0xa7a20010, 0x27b10010, 0x8021, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0xc004d4b, 0x2021, 0x108042, 0x1600fffc, ! 0x0, 0xc004d4b, 0x24040001, 0xc004d4b, ! 0x2021, 0x34108000, 0x96220000, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fff8, 0x0, 0xc004d71, ! 0x0, 0x8f830054, 0x8004d16, 0x24020004, ! 0x8f830054, 0x3c020001, 0x8c425db8, 0x2463ff9c, ! 0x431023, 0x2c420064, 0x1440029e, 0x24020002, ! 0x3c030001, 0x8c635dbc, 0x10620297, 0x2c620003, ! 0x14400296, 0x24020011, 0x24020003, 0x10620005, ! 0x24020004, 0x10620291, 0x2402000f, 0x8004d24, ! 0x24020011, 0x8004d24, 0x24020005, 0x24020014, ! 0xa7a20010, 0x27b10010, 0x8021, 0xc004d4b, ! 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc004d4b, 0x2021, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0xc004d4b, ! 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0x32020012, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020012, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0x34108000, ! 0x96220000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d4b, 0x108042, 0x1600fff8, ! 0x0, 0xc004d71, 0x0, 0x8f830054, ! 0x8004d16, 0x24020006, 0x8f830054, 0x3c020001, ! 0x8c425db8, 0x2463ff9c, 0x431023, 0x2c420064, ! 0x14400250, 0x24020007, 0x8004d24, 0x0, ! 0x24020006, 0xa7a20010, 0x27b10010, 0x8021, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020013, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020013, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fff8, 0x0, 0xc004d71, 0x0, ! 0x8f830054, 0x8004d16, 0x24020008, 0x8f830054, ! 0x3c020001, 0x8c425db8, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x1440020f, 0x24020009, 0x8004d24, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x24040001, ! 0xc004d4b, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020018, ! 0xc004d71, 0x34108000, 0xc004d71, 0x0, ! 0xc004d2b, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc004d71, 0x8021, ! 0x97a20010, 0x27b10010, 0x34420001, 0xa7a20010, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020018, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fff8, 0x0, 0xc004d71, 0x0, ! 0x8f830054, 0x8004d16, 0x2402000a, 0x8f830054, ! 0x3c020001, 0x8c425db8, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x1440019b, 0x2402000b, 0x8004d24, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x24040001, ! 0xc004d4b, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020017, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020017, ! 0xc004d71, 0x34108000, 0xc004d71, 0x0, ! 0xc004d2b, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc004d71, 0x8021, ! 0x97a20010, 0x27b10010, 0x34420700, 0xa7a20010, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020017, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020017, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fff8, 0x0, 0xc004d71, 0x0, ! 0x8f830054, 0x8004d16, 0x2402000c, 0x8f830054, ! 0x3c020001, 0x8c425db8, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x14400127, 0x24020012, 0x8004d24, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x24040001, ! 0xc004d4b, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020014, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020014, ! 0xc004d71, 0x34108000, 0xc004d71, 0x0, ! 0xc004d2b, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc004d71, 0x8021, ! 0x97a20010, 0x27b10010, 0x34420010, 0xa7a20010, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020014, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020014, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fff8, 0x0, 0xc004d71, 0x0, ! 0x8f830054, 0x8004d16, 0x24020013, 0x8f830054, ! 0x3c020001, 0x8c425db8, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x144000b3, 0x2402000d, 0x8004d24, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x24040001, ! 0xc004d4b, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020018, ! 0xc004d71, 0x34108000, 0xc004d71, 0x0, ! 0xc004d2b, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc004d71, 0x8021, ! 0x97a20010, 0x27b10010, 0x3042fffe, 0xa7a20010, ! 0xc004d4b, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0xc004d4b, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc004d4b, 0x108042, 0x1600fffa, 0x32020018, ! 0xc004d4b, 0x24040001, 0xc004d4b, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fff8, 0x0, 0xc004d71, 0x0, ! 0x8f830054, 0x8004d16, 0x2402000e, 0x24020840, ! 0xa7a20010, 0x27b10010, 0x8021, 0xc004d4b, ! 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc004d4b, 0x2021, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0xc004d4b, ! 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc004d4b, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0x32020013, ! 0x10400002, 0x2021, 0x24040001, 0xc004d4b, ! 0x108042, 0x1600fffa, 0x32020013, 0xc004d4b, ! 0x24040001, 0xc004d4b, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc004d4b, 0x108042, 0x1600fff8, ! 0x0, 0xc004d71, 0x0, 0x8f830054, ! 0x24020010, 0x3c010001, 0xac225d00, 0x3c010001, ! 0x8004d26, 0xac235db8, 0x8f830054, 0x3c020001, ! 0x8c425db8, 0x2463ff9c, 0x431023, 0x2c420064, ! 0x14400004, 0x0, 0x24020011, 0x3c010001, ! 0xac225d00, 0x8fbf0020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0028, 0x8f850044, 0x8f820044, ! 0x3c030001, 0x431025, 0x3c030008, 0xaf820044, ! 0x8f840054, 0x8f820054, 0xa32824, 0x8004d37, ! 0x24840001, 0x8f820054, 0x821023, 0x2c420002, 0x1440fffc, 0x0, 0x8f820044, 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d45, 0x24630001, 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x3e00008, 0xa01021, 0x8f830044, 0x3c02fff0, ! 0x3442ffff, 0x42480, 0x621824, 0x3c020002, ! 0x822025, 0x641825, 0xaf830044, 0x8f820044, ! 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820044, ! 0x8f830054, 0x8f820054, 0x8004d5e, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820044, 0x3c030001, 0x431025, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d6b, 0x24630001, 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, 0x0, 0x3e00008, 0x0, + 0x8f820044, 0x3c03fff0, 0x3463ffff, 0x431024, + 0xaf820044, 0x8f820044, 0x3c030001, 0x431025, + 0xaf820044, 0x8f830054, 0x8f820054, 0x8004d7f, + 0x24630001, 0x8f820054, 0x621023, 0x2c420002, + 0x1440fffc, 0x0, 0x8f820044, 0x3c03fffe, + 0x3463ffff, 0x431024, 0xaf820044, 0x8f830054, + 0x8f820054, 0x8004d8d, 0x24630001, 0x8f820054, + 0x621023, 0x2c420002, 0x1440fffc, 0x0, + 0x3e00008, 0x0, 0x27bdffc8, 0xafb30024, + 0x809821, 0xafb5002c, 0xa0a821, 0xafb20020, + 0xc09021, 0x32a2ffff, 0xafbf0030, 0xafb40028, + 0xafb1001c, 0xafb00018, 0x14400034, 0xa7b20010, + 0x3271ffff, 0x27b20010, 0x8021, 0xc004d4b, + 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, + 0x0, 0xc004d4b, 0x2021, 0xc004d4b, + 0x24040001, 0xc004d4b, 0x2021, 0xc004d4b, + 0x24040001, 0x24100010, 0x32020001, 0x10400002, + 0x2021, 0x24040001, 0xc004d4b, 0x108042, + 0x1600fffa, 0x32020001, 0x24100010, 0x2301024, + 0x10400002, 0x2021, 0x24040001, 0xc004d4b, + 0x108042, 0x1600fffa, 0x2301024, 0xc004d4b, + 0x24040001, 0xc004d4b, 0x2021, 0x34108000, + 0x96420000, 0x501024, 0x10400002, 0x2021, + 0x24040001, 0xc004d4b, 0x108042, 0x12000075, + 0x0, 0x8004dc9, 0x0, 0x3274ffff, + 0x27b10010, 0xa7a00010, 0x8021, 0xc004d4b, + 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, + 0x0, 0xc004d4b, 0x2021, 0xc004d4b, + 0x24040001, 0xc004d4b, 0x24040001, 0xc004d4b, + 0x2021, 0x24100010, 0x32020001, 0x10400002, + 0x2021, 0x24040001, 0xc004d4b, 0x108042, + 0x1600fffa, 0x32020001, 0x24100010, 0x2901024, + 0x10400002, 0x2021, 0x24040001, 0xc004d4b, + 0x108042, 0x1600fffa, 0x2901024, 0xc004d71, + 0x34108000, 0xc004d71, 0x0, 0xc004d2b, + 0x0, 0x50400005, 0x108042, 0x96220000, + 0x501025, 0xa6220000, 0x108042, 0x1600fff7, + 0x0, 0xc004d71, 0x0, 0x32a5ffff, + 0x24020001, 0x54a20004, 0x24020002, 0x97a20010, + 0x8004e14, 0x521025, 0x14a20006, 0x3271ffff, + 0x97a20010, 0x121827, 0x431024, 0xa7a20010, + 0x3271ffff, 0x27b20010, 0x8021, 0xc004d4b, + 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, + 0x0, 0xc004d4b, 0x2021, 0xc004d4b, + 0x24040001, 0xc004d4b, 0x2021, 0xc004d4b, + 0x24040001, 0x24100010, 0x32020001, 0x10400002, + 0x2021, 0x24040001, 0xc004d4b, 0x108042, + 0x1600fffa, 0x32020001, 0x24100010, 0x2301024, + 0x10400002, 0x2021, 0x24040001, 0xc004d4b, + 0x108042, 0x1600fffa, 0x2301024, 0xc004d4b, + 0x24040001, 0xc004d4b, 0x2021, 0x34108000, + 0x96420000, 0x501024, 0x10400002, 0x2021, + 0x24040001, 0xc004d4b, 0x108042, 0x1600fff8, + 0x0, 0xc004d71, 0x0, 0x8fbf0030, + 0x8fb5002c, 0x8fb40028, 0x8fb30024, 0x8fb20020, + 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0038, 0x0, 0x0, 0x0, 0x27bdffe8, 0xafbf0010, 0x3c030001, 0x771821, 0x8c6383ac, 0x24020008, 0x1462022c, 0x803021, 0x3c020001, ! 0x8c425d98, 0x14400033, 0x0, 0x8f850224, 0x38a30020, 0x2c630001, 0x38a20010, 0x2c420001, 0x621825, 0x1460000d, 0x38a30030, 0x2c630001, 0x38a20400, 0x2c420001, 0x621825, 0x14600007, 0x38a30402, 0x2c630001, 0x38a20404, 0x2c420001, 0x621825, 0x10600005, 0x0, 0xc00429b, ! 0x0, 0x8004e8d, 0x2402000e, 0xc0043dd, ! 0x0, 0x3c050001, 0x8ca55cc8, 0xc0052a2, ! 0x2021, 0x3c030001, 0x8c635cc8, 0x24020004, ! 0x14620005, 0x2403fffb, 0x3c020001, 0x8c425cc4, ! 0x8004e89, 0x2403fff7, 0x3c020001, 0x8c425cc4, ! 0x431024, 0x3c010001, 0xac225cc4, 0x2402000e, ! 0x3c010001, 0xc00429b, 0xac227dd0, 0x8005087, 0x0, 0x8f820220, 0x3c030400, 0x431024, 0x10400027, 0x2403ffbf, 0x8f850224, 0x3c020001, ! 0x8c427ddc, 0xa32024, 0x431024, 0x1482000c, ! 0x0, 0x3c020001, 0x8c427de0, 0x24420001, ! 0x3c010001, 0xac227de0, 0x2c420002, 0x14400008, ! 0x24020001, 0x3c010001, 0x8004ead, 0xac227e00, ! 0x3c010001, 0xac207de0, 0x3c010001, 0xac207e00, ! 0x3c020001, 0x8c427e00, 0x10400006, 0x30a20040, ! 0x10400004, 0x24020001, 0x3c010001, 0x8004eb8, ! 0xac227e04, 0x3c010001, 0xac207e04, 0x3c010001, ! 0xac257ddc, 0x3c010001, 0x8004ec8, 0xac207e10, ! 0x24020001, 0x3c010001, 0xac227e10, 0x3c010001, ! 0xac207e00, 0x3c010001, 0xac207de0, 0x3c010001, ! 0xac207e04, 0x3c010001, 0xac207ddc, 0x3c030001, ! 0x8c637dd0, 0x3c020001, 0x8c427dd4, 0x10620003, ! 0x3c020200, 0x3c010001, 0xac237dd4, 0xc21024, 0x10400007, 0x2463ffff, 0x8f820220, 0x24030001, ! 0x3c010001, 0xac235ccc, 0x8005085, 0x3c03f700, 0x2c62000e, 0x104001a8, 0x31080, 0x3c010001, ! 0x220821, 0x8c225b80, 0x400008, 0x0, ! 0x3c010001, 0xac207e00, 0x3c010001, 0xac207de0, ! 0x3c010001, 0xac207ddc, 0x3c010001, 0xac207e04, ! 0x3c010001, 0xac207df8, 0x3c010001, 0xac207df0, ! 0xc00486a, 0xaf800224, 0x24020002, 0x3c010001, ! 0xac227dd0, 0x3c020001, 0x8c427e10, 0x14400056, 0x3c03fdff, 0x8ee20000, 0x3463ffff, 0x431024, 0xc00429b, 0xaee20000, 0xaf800204, 0x8f820200, 0x2403fffd, 0x431024, 0xaf820200, 0x3c010001, ! 0xac207e20, 0x8f830054, 0x3c020001, 0x8c427df8, ! 0x24040001, 0x3c010001, 0xac247e0c, 0x24420001, ! 0x3c010001, 0xac227df8, 0x2c420004, 0x3c010001, ! 0xac237df4, 0x14400006, 0x24020003, 0x3c010001, ! 0xac245ccc, 0x3c010001, 0x8005083, 0xac207df8, ! 0x3c010001, 0x8005083, 0xac227dd0, 0x8f830054, ! 0x3c020001, 0x8c427df4, 0x2463d8f0, 0x431023, 0x2c422710, 0x14400003, 0x24020004, 0x3c010001, ! 0xac227dd0, 0x3c020001, 0x8c427e10, 0x14400026, 0x3c03fdff, 0x8ee20000, 0x3463ffff, 0x431024, ! 0x8005083, 0xaee20000, 0x3c040001, 0x8c845d9c, ! 0x3c010001, 0xc00508a, 0xac207de8, 0x3c020001, ! 0x8c427e1c, 0xaf820204, 0x3c020001, 0x8c427e10, 0x14400015, 0x3c03fdff, 0x8ee20000, 0x3463ffff, 0x431024, 0xaee20000, 0x8f820204, 0x30420030, ! 0x1440013c, 0x24020002, 0x3c030001, 0x8c637e1c, ! 0x24020005, 0x3c010001, 0xac227dd0, 0x3c010001, ! 0x8005083, 0xac237e20, 0x3c020001, 0x8c427e10, ! 0x10400010, 0x3c03fdff, 0x3c020001, 0x8c425d6c, ! 0x24420001, 0x3c010001, 0xac225d6c, 0x2c420002, ! 0x14400131, 0x24020001, 0x3c010001, 0xac225d74, ! 0x3c010001, 0xac205d6c, 0x3c010001, 0x8005083, ! 0xac225ccc, 0x8ee20000, 0x3463ffff, 0x431024, ! 0xaee20000, 0x3c020001, 0x8c427e00, 0x10400122, ! 0x0, 0x3c020001, 0x8c427ddc, 0x1040011e, ! 0x0, 0x3c010001, 0xac227e08, 0x24020003, ! 0x3c010001, 0xac227de0, 0x8005024, 0x24020006, ! 0x3c010001, 0xac207de8, 0x8f820204, 0x34420040, ! 0xaf820204, 0x3c020001, 0x8c427e20, 0x24030007, ! 0x3c010001, 0xac237dd0, 0x34420040, 0x3c010001, ! 0xac227e20, 0x3c020001, 0x8c427e00, 0x10400005, ! 0x0, 0x3c020001, 0x8c427ddc, 0x104000f9, ! 0x24020002, 0x3c050001, 0x24a57de0, 0x8ca20000, 0x2c424e21, 0x104000f3, 0x24020002, 0x3c020001, ! 0x8c427e04, 0x104000f8, 0x2404ffbf, 0x3c020001, ! 0x8c427ddc, 0x3c030001, 0x8c637e08, 0x441024, 0x641824, 0x10430004, 0x24020001, 0x3c010001, ! 0x8005083, 0xac227dd0, 0x24020003, 0xaca20000, ! 0x24020008, 0x3c010001, 0xac227dd0, 0x3c020001, ! 0x8c427e0c, 0x1040000c, 0x24020001, 0x3c040001, ! 0xc005097, 0x8c847ddc, 0x3c020001, 0x8c427e28, ! 0x14400005, 0x24020001, 0x3c020001, 0x8c427e24, ! 0x10400006, 0x24020001, 0x3c010001, 0xac225ccc, ! 0x3c010001, 0x8005083, 0xac207df8, 0x3c020001, ! 0x8c427df0, 0x3c030001, 0x8c637ddc, 0x2c420001, ! 0x210c0, 0x30630008, 0x3c010001, 0xac227df0, ! 0x3c010001, 0xac237dec, 0x8f830054, 0x24020009, ! 0x3c010001, 0xac227dd0, 0x3c010001, 0x8005083, ! 0xac237df4, 0x8f830054, 0x3c020001, 0x8c427df4, 0x2463d8f0, 0x431023, 0x2c422710, 0x144000a8, ! 0x0, 0x3c020001, 0x8c427e00, 0x10400005, ! 0x0, 0x3c020001, 0x8c427ddc, 0x104000a9, ! 0x24020002, 0x3c030001, 0x24637de0, 0x8c620000, 0x2c424e21, 0x104000a3, 0x24020002, 0x3c020001, ! 0x8c427e0c, 0x1040000e, 0x0, 0x3c020001, ! 0x8c427ddc, 0x3c010001, 0xac207e0c, 0x30420080, 0x1040002f, 0x2402000c, 0x8f820204, 0x30420080, ! 0x1440000c, 0x24020003, 0x8005011, 0x2402000c, ! 0x3c020001, 0x8c427ddc, 0x30420080, 0x14400005, 0x24020003, 0x8f820204, 0x30420080, 0x1040001f, 0x24020003, 0xac620000, 0x2402000a, 0x3c010001, ! 0xac227dd0, 0x3c040001, 0x24847e18, 0x8c820000, ! 0x3c030001, 0x8c637df0, 0x431025, 0xaf820204, ! 0x8c830000, 0x3c040001, 0x8c847df0, 0x2402000b, ! 0x3c010001, 0xac227dd0, 0x641825, 0x3c010001, ! 0xac237e20, 0x3c050001, 0x24a57de0, 0x8ca20000, 0x2c424e21, 0x1040006f, 0x24020002, 0x3c020001, ! 0x8c427e10, 0x10400005, 0x0, 0x2402000c, ! 0x3c010001, 0x8005083, 0xac227dd0, 0x3c020001, ! 0x8c427e00, 0x1040006c, 0x0, 0x3c040001, ! 0x8c847ddc, 0x1080005e, 0x30820008, 0x3c030001, ! 0x8c637dec, 0x10620064, 0x24020003, 0x3c010001, ! 0xac247e08, 0xaca20000, 0x24020006, 0x3c010001, ! 0x8005083, 0xac227dd0, 0x8f820200, 0x34420002, 0xaf820200, 0x8f830054, 0x2402000d, 0x3c010001, ! 0xac227dd0, 0x3c010001, 0xac237df4, 0x8f830054, ! 0x3c020001, 0x8c427df4, 0x2463d8f0, 0x431023, 0x2c422710, 0x1440003a, 0x0, 0x3c020001, ! 0x8c427e10, 0x10400029, 0x2402000e, 0x3c030001, ! 0x8c637e24, 0x3c010001, 0x14600015, 0xac227dd0, ! 0xc0043dd, 0x0, 0x3c050001, 0x8ca55cc8, ! 0xc0052a2, 0x2021, 0x3c030001, 0x8c635cc8, 0x24020004, 0x14620005, 0x2403fffb, 0x3c020001, ! 0x8c425cc4, 0x8005052, 0x2403fff7, 0x3c020001, ! 0x8c425cc4, 0x431024, 0x3c010001, 0xac225cc4, 0x8ee20000, 0x3c030200, 0x431025, 0xaee20000, ! 0x8f820224, 0x3c010001, 0xac227e2c, 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, 0x8f820220, ! 0x34420002, 0x8005083, 0xaf820220, 0x3c020001, ! 0x8c427e00, 0x10400005, 0x0, 0x3c020001, ! 0x8c427ddc, 0x1040000f, 0x24020002, 0x3c020001, ! 0x8c427de0, 0x2c424e21, 0x1040000a, 0x24020002, ! 0x3c020001, 0x8c427e00, 0x1040000f, 0x0, ! 0x3c020001, 0x8c427ddc, 0x1440000b, 0x0, ! 0x24020002, 0x3c010001, 0x8005083, 0xac227dd0, ! 0x3c020001, 0x8c427e00, 0x10400003, 0x0, 0xc00429b, 0x0, 0x8f820220, 0x3c03f700, 0x431025, 0xaf820220, 0x8fbf0010, 0x3e00008, ! 0x27bd0018, 0x3c030001, 0x24637e28, 0x8c620000, ! 0x10400005, 0x34422000, 0x3c010001, 0xac227e1c, ! 0x8005095, 0xac600000, 0x3c010001, 0xac247e1c, 0x3e00008, 0x0, 0x27bdffe0, 0x30820030, ! 0xafbf0018, 0x3c010001, 0xac227e24, 0x14400067, 0x3c02ffff, 0x34421f0e, 0x821024, 0x14400061, 0x24020030, 0x30822000, 0x1040005d, 0x30838000, 0x31a02, 0x30820001, 0x21200, 0x3c040001, ! 0x8c845d9c, 0x621825, 0x331c2, 0x3c030001, ! 0x24635d78, 0x30828000, 0x21202, 0x30840001, 0x42200, 0x441025, 0x239c2, 0x61080, 0x431021, 0x471021, 0x90430000, 0x24020001, 0x10620025, 0x0, 0x10600007, 0x24020002, 0x10620013, 0x24020003, 0x1062002c, 0x3c05000f, ! 0x80050f9, 0x0, 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820220, 0x3c010001, ! 0xac207e44, 0x3c010001, 0x8005104, 0xac207e4c, 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820220, ! 0x24020100, 0x3c010001, 0xac227e44, 0x3c010001, ! 0x8005104, 0xac207e4c, 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, 0x3c030001, ! 0x431025, 0xaf820220, 0x3c010001, 0xac207e44, ! 0x3c010001, 0x8005104, 0xac237e4c, 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, 0x3c030001, 0x431025, 0xaf820220, 0x24020100, 0x3c010001, ! 0xac227e44, 0x3c010001, 0x8005104, 0xac237e4c, ! 0x34a5ffff, 0x3c040001, 0x24845bb8, 0xafa30010, ! 0xc002403, 0xafa00014, 0x8005104, 0x0, ! 0x24020030, 0x3c010001, 0xac227e28, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x0, 0x27bdffc8, ! 0xafb20028, 0x809021, 0xafb3002c, 0xa09821, ! 0xafb00020, 0xc08021, 0x3c040001, 0x24845bd0, ! 0x3c050009, 0x3c020001, 0x8c425cc8, 0x34a59001, ! 0x2403021, 0x2603821, 0xafbf0030, 0xafb10024, 0xa7a0001a, 0xafb00014, 0xc002403, 0xafa20010, ! 0x24020002, 0x12620083, 0x2e620003, 0x10400005, ! 0x24020001, 0x1262000a, 0x0, 0x800529b, ! 0x0, 0x24020004, 0x126200fa, 0x24020008, ! 0x126200f9, 0x3c02ffec, 0x800529b, 0x0, ! 0x3c020001, 0x8c425cc4, 0x30420002, 0x14400004, ! 0x128940, 0x3c02fffb, 0x3442ffff, 0x2028024, ! 0x3c010001, 0x310821, 0xac307e3c, 0x3c024000, ! 0x2021024, 0x1040004e, 0x1023c2, 0x30840030, ! 0x101382, 0x3042001c, 0x3c030001, 0x24635d08, ! 0x431021, 0x823821, 0x3c020020, 0x2021024, ! 0x10400006, 0x24020100, 0x3c010001, 0x310821, ! 0xac227e40, 0x8005150, 0x3c020080, 0x3c010001, ! 0x310821, 0xac207e40, 0x3c020080, 0x2021024, ! 0x10400006, 0x121940, 0x3c020001, 0x3c010001, ! 0x230821, 0x800515c, 0xac227e48, 0x121140, ! 0x3c010001, 0x220821, 0xac207e48, 0x94e40000, ! 0x3c030001, 0x8c635dbc, 0x24020005, 0x10620010, ! 0xa7a40018, 0x32024000, 0x10400002, 0x34824000, ! 0xa7a20018, 0x24040001, 0x94e20002, 0x24050004, ! 0x24e60002, 0x34420001, 0xc00498e, 0xa4e20002, ! 0x24040001, 0x2821, 0xc00498e, 0x27a60018, ! 0x3c020001, 0x8c425cc8, 0x24110001, 0x3c010001, ! 0xac315cd4, 0x14530004, 0x32028000, 0xc00429b, ! 0x0, 0x32028000, 0x1040011f, 0x0, ! 0xc00429b, 0x0, 0x3c030001, 0x8c635dbc, ! 0x24020005, 0x10620118, 0x24020002, 0x3c010001, ! 0xac315ccc, 0x3c010001, 0x800529b, 0xac225cc8, ! 0x24040001, 0x24050004, 0x27b0001a, 0xc00498e, ! 0x2003021, 0x24040001, 0x2821, 0xc00498e, ! 0x2003021, 0x3c020001, 0x511021, 0x8c427e34, ! 0x3c040001, 0x8c845cc8, 0x3c03bfff, 0x3463ffff, ! 0x3c010001, 0xac335cd4, 0x431024, 0x3c010001, ! 0x310821, 0x109300fa, 0xac227e34, 0x800529b, ! 0x0, 0x3c022000, 0x2021024, 0x10400005, ! 0x24020001, 0x3c010001, 0xac225d98, 0x80051ad, ! 0x128940, 0x3c010001, 0xac205d98, 0x128940, ! 0x3c010001, 0x310821, 0xac307e38, 0x3c024000, ! 0x2021024, 0x14400016, 0x0, 0x3c020001, ! 0x8c425d98, 0x10400008, 0x24040004, 0x24050001, ! 0xc004d93, 0x24062000, 0x24020001, 0x3c010001, ! 0x370821, 0xac2283ac, 0x3c020001, 0x511021, ! 0x8c427e30, 0x3c03bfff, 0x3463ffff, 0x431024, ! 0x3c010001, 0x310821, 0x8005299, 0xac227e30, ! 0x3c020001, 0x8c425d98, 0x10400028, 0x3c0300a0, ! 0x2031024, 0x5443000d, 0x3c020020, 0x3c020001, ! 0x8c425d9c, 0x24030100, 0x3c010001, 0x310821, ! 0xac237e44, 0x3c030001, 0x3c010001, 0x310821, ! 0xac237e4c, 0x80051f0, 0x34420400, 0x2021024, ! 0x10400008, 0x24030100, 0x3c020001, 0x8c425d9c, ! 0x3c010001, 0x310821, 0xac237e44, 0x80051f0, ! 0x34420800, 0x3c020080, 0x2021024, 0x1040002e, ! 0x3c030001, 0x3c020001, 0x8c425d9c, 0x3c010001, ! 0x310821, 0xac237e4c, 0x34420c00, 0x3c010001, ! 0xac225d9c, 0x8005218, 0x24040001, 0x3c020020, ! 0x2021024, 0x10400006, 0x24020100, 0x3c010001, ! 0x310821, 0xac227e44, 0x8005201, 0x3c020080, ! 0x3c010001, 0x310821, 0xac207e44, 0x3c020080, ! 0x2021024, 0x10400007, 0x121940, 0x3c020001, ! 0x3c010001, 0x230821, 0xac227e4c, 0x800520f, ! 0x24040001, 0x121140, 0x3c010001, 0x220821, ! 0xac207e4c, 0x24040001, 0x2821, 0x27b0001e, ! 0xc00494c, 0x2003021, 0x24040001, 0x2821, ! 0xc00494c, 0x2003021, 0x24040001, 0x24050001, ! 0x27b0001c, 0xc00494c, 0x2003021, 0x24040001, ! 0x24050001, 0xc00494c, 0x2003021, 0x8005299, ! 0x0, 0x3c02ffec, 0x3442ffff, 0x2028024, ! 0x3c020008, 0x2028025, 0x121140, 0x3c010001, ! 0x220821, 0xac307e38, 0x3c022000, 0x2021024, ! 0x10400009, 0x0, 0x3c020001, 0x8c425d74, ! 0x14400005, 0x24020001, 0x3c010001, 0xac225d98, ! 0x800523a, 0x3c024000, 0x3c010001, 0xac205d98, ! 0x3c024000, 0x2021024, 0x1440001e, 0x0, ! 0x3c020001, 0x8c425d98, 0x3c010001, 0xac205ce0, ! 0x10400007, 0x24022020, 0x3c010001, 0xac225d9c, ! 0x24020001, 0x3c010001, 0x370821, 0xac2283ac, ! 0x3c04bfff, 0x121940, 0x3c020001, 0x431021, ! 0x8c427e30, 0x3c050001, 0x8ca55cc8, 0x3484ffff, ! 0x441024, 0x3c010001, 0x230821, 0xac227e30, ! 0x24020001, 0x10a20044, 0x0, 0x8005299, ! 0x0, 0x3c020001, 0x8c425d98, 0x1040001c, ! 0x24022000, 0x3c010001, 0xac225d9c, 0x3c0300a0, ! 0x2031024, 0x14430005, 0x121140, 0x3402a000, ! 0x3c010001, 0x8005294, 0xac225d9c, 0x3c030001, ! 0x621821, 0x8c637e38, 0x3c020020, 0x621024, ! 0x10400004, 0x24022001, 0x3c010001, 0x8005294, ! 0xac225d9c, 0x3c020080, 0x621024, 0x1040001f, ! 0x3402a001, 0x3c010001, 0x8005294, 0xac225d9c, ! 0x3c020020, 0x2021024, 0x10400007, 0x121940, ! 0x24020100, 0x3c010001, 0x230821, 0xac227e44, ! 0x8005288, 0x3c020080, 0x121140, 0x3c010001, ! 0x220821, 0xac207e44, 0x3c020080, 0x2021024, ! 0x10400006, 0x121940, 0x3c020001, 0x3c010001, ! 0x230821, 0x8005294, 0xac227e4c, 0x121140, ! 0x3c010001, 0x220821, 0xac207e4c, 0x3c030001, ! 0x8c635cc8, 0x24020001, 0x10620003, 0x0, ! 0xc00429b, 0x0, 0x8fbf0030, 0x8fb3002c, ! 0x8fb20028, 0x8fb10024, 0x8fb00020, 0x3e00008, ! 0x27bd0038, 0x27bdffd8, 0xafb20020, 0x809021, ! 0xafb1001c, 0x8821, 0x24020002, 0xafbf0024, ! 0xafb00018, 0xa7a00012, 0x10a200d3, 0xa7a00010, ! 0x2ca20003, 0x10400005, 0x24020001, 0x10a2000a, ! 0x128140, 0x8005380, 0x2201021, 0x24020004, ! 0x10a2007d, 0x24020008, 0x10a2007c, 0x122940, ! 0x8005380, 0x2201021, 0x3c030001, 0x701821, ! 0x8c637e3c, 0x3c024000, 0x621024, 0x14400009, ! 0x24040001, 0x3c027fff, 0x3442ffff, 0x628824, ! 0x3c010001, 0x300821, 0xac317e34, 0x8005380, ! 0x2201021, 0x24050001, 0xc00494c, 0x27a60010, ! 0x24040001, 0x24050001, 0xc00494c, 0x27a60010, ! 0x97a20010, 0x30420004, 0x10400034, 0x3c114000, ! 0x3c020001, 0x8c425dbc, 0x2443ffff, 0x2c620006, ! 0x10400034, 0x31080, 0x3c010001, 0x220821, ! 0x8c225be0, 0x400008, 0x0, 0x24040001, ! 0x24050011, 0x27b00012, 0xc00494c, 0x2003021, ! 0x24040001, 0x24050011, 0xc00494c, 0x2003021, ! 0x97a50012, 0x30a24000, 0x10400002, 0x3c040010, ! 0x3c040008, 0x3c030001, 0x8005301, 0x30a28000, ! 0x24040001, 0x24050014, 0x27b00012, 0xc00494c, ! 0x2003021, 0x24040001, 0x24050014, 0xc00494c, ! 0x2003021, 0x97a50012, 0x30a21000, 0x10400002, ! 0x3c040010, 0x3c040008, 0x3c030001, 0x30a20800, ! 0x54400001, 0x3c030002, 0x3c028000, 0x2221025, ! 0x641825, 0x800530e, 0x438825, 0x3c110001, ! 0x2308821, 0x8e317e3c, 0x3c027fff, 0x3442ffff, ! 0x2228824, 0x3c020001, 0x8c425cd8, 0x1040001d, ! 0x121140, 0x3c020001, 0x8c425d98, 0x10400002, ! 0x3c022000, 0x2228825, 0x121140, 0x3c010001, ! 0x220821, 0x8c227e40, 0x10400003, 0x3c020020, ! 0x8005322, 0x2228825, 0x3c02ffdf, 0x3442ffff, ! 0x2228824, 0x121140, 0x3c010001, 0x220821, ! 0x8c227e48, 0x10400003, 0x3c020080, 0x800532d, ! 0x2228825, 0x3c02ff7f, 0x3442ffff, 0x2228824, ! 0x121140, 0x3c010001, 0x220821, 0xac317e34, ! 0x8005380, 0x2201021, 0x122940, 0x3c030001, ! 0x651821, 0x8c637e38, 0x3c024000, 0x621024, 0x14400008, 0x3c027fff, 0x3442ffff, 0x628824, ! 0x3c010001, 0x250821, 0xac317e30, 0x8005380, ! 0x2201021, 0x3c020001, 0x8c425cd8, 0x10400033, ! 0x3c11c00c, 0x3c020001, 0x8c425d74, 0x3c04c00c, ! 0x34842000, 0x3c030001, 0x8c635d98, 0x2102b, 0x21023, 0x441024, 0x10600003, 0x518825, 0x3c022000, 0x2228825, 0x3c020001, 0x451021, ! 0x8c427e44, 0x10400003, 0x3c020020, 0x800535d, 0x2228825, 0x3c02ffdf, 0x3442ffff, 0x2228824, ! 0x121140, 0x3c010001, 0x220821, 0x8c227e4c, ! 0x10400003, 0x3c020080, 0x8005368, 0x2228825, 0x3c02ff7f, 0x3442ffff, 0x2228824, 0x3c020001, ! 0x8c425d60, 0x10400002, 0x3c020800, 0x2228825, ! 0x3c020001, 0x8c425d64, 0x10400002, 0x3c020400, ! 0x2228825, 0x3c020001, 0x8c425d68, 0x10400006, ! 0x3c020100, 0x800537b, 0x2228825, 0x3c027fff, ! 0x3442ffff, 0x628824, 0x121140, 0x3c010001, ! 0x220821, 0xac317e30, 0x2201021, 0x8fbf0024, ! 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x3e00008, ! 0x27bd0028, 0x27bdffd8, 0xafb40020, 0x80a021, ! 0xafbf0024, 0xafb3001c, 0xafb20018, 0xafb10014, ! 0xafb00010, 0x8f900200, 0x3c030001, 0x8c635cc8, ! 0x8f930220, 0x24020002, 0x10620063, 0x2c620003, ! 0x10400005, 0x24020001, 0x1062000a, 0x141940, ! 0x8005448, 0x0, 0x24020004, 0x1062005a, ! 0x24020008, 0x10620059, 0x149140, 0x8005448, ! 0x0, 0x3c040001, 0x832021, 0x8c847e3c, ! 0x3c110001, 0x2238821, 0x8e317e34, 0x3c024000, ! 0x821024, 0x1040003e, 0x3c020008, 0x2221024, ! 0x10400020, 0x36100002, 0x3c020001, 0x431021, ! 0x8c427e40, 0x10400005, 0x36100020, 0x36100100, ! 0x3c020020, 0x80053bd, 0x2228825, 0x2402feff, ! 0x2028024, 0x3c02ffdf, 0x3442ffff, 0x2228824, ! 0x141140, 0x3c010001, 0x220821, 0x8c227e48, ! 0x10400005, 0x3c020001, 0x2629825, 0x3c020080, ! 0x80053dc, 0x2228825, 0x3c02fffe, 0x3442ffff, ! 0x2629824, 0x3c02ff7f, 0x3442ffff, 0x80053dc, ! 0x2228824, 0x2402fedf, 0x2028024, 0x3c02fffe, ! 0x3442ffff, 0x2629824, 0x3c02ff5f, 0x3442ffff, ! 0x2228824, 0x3c010001, 0x230821, 0xac207e40, ! 0x3c010001, 0x230821, 0xac207e48, 0xc00486a, ! 0x0, 0xaf900200, 0xaf930220, 0x8f820220, ! 0x2403fffb, 0x431024, 0xaf820220, 0x8f820220, ! 0x34420002, 0xaf820220, 0x80053f3, 0x141140, ! 0x8f820200, 0x2403fffd, 0x431024, 0xc00486a, ! 0xaf820200, 0x3c02bfff, 0x3442ffff, 0xc00429b, ! 0x2228824, 0x141140, 0x3c010001, 0x220821, ! 0x8005448, 0xac317e34, 0x149140, 0x3c040001, ! 0x922021, 0x8c847e38, 0x3c110001, 0x2328821, ! 0x8e317e30, 0x3c024000, 0x821024, 0x14400011, ! 0x0, 0x3c020001, 0x8c425d98, 0x14400006, ! 0x3c02bfff, 0x8f820200, 0x34420002, 0xc00486a, ! 0xaf820200, 0x3c02bfff, 0x3442ffff, 0xc00429b, ! 0x2228824, 0x3c010001, 0x320821, 0x8005448, ! 0xac317e30, 0x3c020001, 0x8c425d98, 0x10400005, ! 0x3c020020, 0x3c020001, 0x8c425d74, 0x1040002b, ! 0x3c020020, 0x821024, 0x10400007, 0x36100020, ! 0x24020100, 0x3c010001, 0x320821, 0xac227e44, ! 0x8005428, 0x36100100, 0x3c010001, 0x320821, ! 0xac207e44, 0x2402feff, 0x2028024, 0x3c020080, ! 0x821024, 0x10400007, 0x141940, 0x3c020001, ! 0x3c010001, 0x230821, 0xac227e4c, 0x8005439, ! 0x2629825, 0x141140, 0x3c010001, 0x220821, ! 0xac207e4c, 0x3c02fffe, 0x3442ffff, 0x2629824, ! 0xc00486a, 0x0, 0xaf900200, 0xaf930220, ! 0x8f820220, 0x2403fffb, 0x431024, 0xaf820220, ! 0x8f820220, 0x34420002, 0xaf820220, 0x141140, ! 0x3c010001, 0x220821, 0xac317e30, 0x8fbf0024, ! 0x8fb40020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, ! 0x8fb00010, 0x3e00008, 0x27bd0028, 0x0 }; static u_int32_t tigonFwRodata[] = { 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, *************** *** 4361,4370 **** 0x32203139, 0x39382f30, 0x342f3237, 0x2032323a, 0x31333a34, 0x30207368, 0x75616e67, 0x20457870, 0x20240000, 0x46575f56, 0x45525349, 0x4f4e3a20, ! 0x23312054, 0x7565204d, 0x61722032, 0x38203130, ! 0x3a33393a, 0x30392050, 0x53542032, 0x30303000, 0x46575f43, 0x4f4d5049, 0x4c455f54, 0x494d453a, ! 0x2031303a, 0x33393a30, 0x39000000, 0x46575f43, 0x4f4d5049, 0x4c455f42, 0x593a2064, 0x65767263, 0x73000000, 0x46575f43, 0x4f4d5049, 0x4c455f48, 0x4f53543a, 0x20636f6d, 0x70757465, 0x0, --- 4464,4473 ---- 0x32203139, 0x39382f30, 0x342f3237, 0x2032323a, 0x31333a34, 0x30207368, 0x75616e67, 0x20457870, 0x20240000, 0x46575f56, 0x45525349, 0x4f4e3a20, ! 0x23312046, 0x72692041, 0x70722037, 0x2031373a, ! 0x35353a34, 0x38205044, 0x54203230, 0x30300000, 0x46575f43, 0x4f4d5049, 0x4c455f54, 0x494d453a, ! 0x2031373a, 0x35353a34, 0x38000000, 0x46575f43, 0x4f4d5049, 0x4c455f42, 0x593a2064, 0x65767263, 0x73000000, 0x46575f43, 0x4f4d5049, 0x4c455f48, 0x4f53543a, 0x20636f6d, 0x70757465, 0x0, *************** *** 4442,4465 **** 0x2e322031, 0x3939382f, 0x30342f32, 0x37203232, 0x3a31333a, 0x33392073, 0x6875616e, 0x67204578, 0x70202400, 0x50726f62, 0x65506879, 0x0, ! 0x6c6e6b41, 0x53535254, 0x0, 0x119c8, ! 0x11a00, 0x11a18, 0x11a4c, 0x11a78, ! 0x11a8c, 0x11ac8, 0x11e38, 0x11ba0, ! 0x11be0, 0x11c0c, 0x11c4c, 0x11c7c, ! 0x11cb8, 0x11cec, 0x11e38, 0x1207c, ! 0x12094, 0x120bc, 0x120dc, 0x12104, ! 0x12234, 0x1225c, 0x122b0, 0x122d8, ! 0x0, 0x1253c, 0x1260c, 0x126e4, ! 0x1291c, 0x12978, 0x12a54, 0x12a7c, ! 0x12b58, 0x12b80, 0x12d28, 0x12d50, ! 0x12ef8, 0x130f0, 0x13384, 0x13298, ! 0x13384, 0x133b0, 0x12f20, 0x130c8, ! 0x0, 0x137a4, 0x137e8, 0x13880, ! 0x138cc, 0x1393c, 0x139d4, 0x13a08, ! 0x13a90, 0x13b28, 0x13bf8, 0x13c38, ! 0x13cbc, 0x13ce0, 0x13e14, 0x646f4261, 0x73655067, 0x0, 0x0, 0x0, 0x0, 0x73746d61, 0x634c4e4b, 0x0, 0x0, 0x0 }; static u_int32_t tigonFwData[] = { 0x416c7465, --- 4545,4570 ---- 0x2e322031, 0x3939382f, 0x30342f32, 0x37203232, 0x3a31333a, 0x33392073, 0x6875616e, 0x67204578, 0x70202400, 0x50726f62, 0x65506879, 0x0, ! 0x6c6e6b41, 0x53535254, 0x0, 0x11b2c, ! 0x11bc4, 0x11bf8, 0x11c2c, 0x11c58, ! 0x11c6c, 0x11ca8, 0x1207c, 0x11de4, ! 0x11e24, 0x11e50, 0x11e90, 0x11ec0, ! 0x11efc, 0x11f30, 0x1207c, 0x122c0, ! 0x122d8, 0x12300, 0x12320, 0x12348, ! 0x12478, 0x124a0, 0x124f4, 0x1251c, ! 0x0, 0x1278c, 0x1285c, 0x12934, ! 0x12a04, 0x12a60, 0x12b3c, 0x12b64, ! 0x12c40, 0x12c68, 0x12e10, 0x12e38, ! 0x12fe0, 0x131d8, 0x1346c, 0x13380, ! 0x1346c, 0x13498, 0x13008, 0x131b0, ! 0x0, 0x13b84, 0x13bc8, 0x13c60, ! 0x13cac, 0x13d1c, 0x13db4, 0x13de8, ! 0x13e70, 0x13f08, 0x13fd8, 0x14018, ! 0x1409c, 0x140c0, 0x141f4, 0x646f4261, 0x73655067, 0x0, 0x0, 0x0, 0x0, 0x73746d61, 0x634c4e4b, 0x0, + 0x0, 0x14c38, 0x14c38, 0x14b80, + 0x14bc4, 0x14c38, 0x14c38, 0x0, 0x0, 0x0 }; static u_int32_t tigonFwData[] = { 0x416c7465, *************** *** 4475,4487 **** 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x1, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x1, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x1000000, 0x21000000, 0x12000140, ! 0x0, 0x0, 0x20000000, 0x120000a0, ! 0x0, 0x12000060, 0x12000180, 0x120001e0, ! 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x30001, 0x1, 0x30201, 0x0, 0x0, 0x0 }; --- 4580,4593 ---- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x1, 0x0, 0x0, 0x0, + 0x1, 0x0, 0x1, 0x0, + 0x0, 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x1000000, 0x21000000, ! 0x12000140, 0x0, 0x0, 0x20000000, ! 0x120000a0, 0x0, 0x12000060, 0x12000180, ! 0x120001e0, 0x0, 0x0, 0x0, ! 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x30001, 0x1, 0x30201, 0x0, 0x0, 0x0 }; *** src/sys/pci/ti_fw2.h.orig --- src/sys/pci/ti_fw2.h *************** *** 1,31 **** /* ! * Generated by genfw.c ! * Built on Sat Apr 22 14:45:14 2000 by wpaul@xylophone ! * OS: FreeBSD 3.2-RELEASE ! * ! * $FreeBSD: src/sys/pci/ti_fw2.h,v 1.8 2000/04/24 17:44:45 wpaul Exp $ */ static int tigon2FwReleaseMajor = 0xc; ! static int tigon2FwReleaseMinor = 0x3; ! static int tigon2FwReleaseFix = 0x15; static u_int32_t tigon2FwStartAddr = 0x00004000; static u_int32_t tigon2FwTextAddr = 0x00004000; ! static int tigon2FwTextLen = 0xf380; ! static u_int32_t tigon2FwRodataAddr = 0x00013380; ! static int tigon2FwRodataLen = 0xfc0; ! static u_int32_t tigon2FwDataAddr = 0x00014360; ! static int tigon2FwDataLen = 0x180; ! static u_int32_t tigon2FwSbssAddr = 0x000144e0; ! static int tigon2FwSbssLen = 0xc0; ! static u_int32_t tigon2FwBssAddr = 0x000145a0; ! static int tigon2FwBssLen = 0x20c0; static u_int32_t tigon2FwText[] = { 0x0, 0x10000003, 0x0, 0xd, 0xd, ! 0x3c1d0001, 0x8fbd43b0, 0x3a0f021, 0x3c100000, ! 0x26104000, 0xc0010c0, 0x0, 0xd, ! 0x3c1d0001, 0x8fbd43b4, 0x3a0f021, 0x3c100000, ! 0x26104000, 0xc0017d6, 0x0, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, --- 1,29 ---- /* ! * Generated by Ken's special genfw.c ! * Built on Thu Jun 29 17:12:02 MDT 2000 by ken@roadwarrior.plutotech.com ! * OS: FreeBSD 5.0-CURRENT */ static int tigon2FwReleaseMajor = 0xc; ! static int tigon2FwReleaseMinor = 0x4; ! static int tigon2FwReleaseFix = 0xb; static u_int32_t tigon2FwStartAddr = 0x00004000; static u_int32_t tigon2FwTextAddr = 0x00004000; ! int tigon2FwTextLen = 0x13190; ! static u_int32_t tigon2FwRodataAddr = 0x00017190; ! int tigon2FwRodataLen = 0x10d2; ! static u_int32_t tigon2FwDataAddr = 0x00018460; ! int tigon2FwDataLen = 0x17c; ! static u_int32_t tigon2FwSbssAddr = 0x000185dc; ! int tigon2FwSbssLen = 0xcc; ! static u_int32_t tigon2FwBssAddr = 0x000186b0; ! int tigon2FwBssLen = 0x20c0; static u_int32_t tigon2FwText[] = { 0x0, 0x10000003, 0x0, 0xd, 0xd, ! 0x3c1d0002, 0x8fbd84a0, 0x3a0f021, 0x3c100000, ! 0x26104000, 0xc001082, 0x0, 0xd, ! 0x3c1d0002, 0x8fbd84a4, 0x3a0f021, 0x3c100000, ! 0x26104000, 0xc0018cc, 0x0, 0xd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, *************** *** 37,752 **** 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2000008, ! 0x0, 0x8001725, 0x3c0a0001, 0x8001725, ! 0x3c0a0002, 0x8001725, 0x0, 0x8002b7b, ! 0x0, 0x8002b1e, 0x0, 0x8001725, ! 0x3c0a0004, 0x800315a, 0x0, 0x8001a46, ! 0x0, 0x800381c, 0x0, 0x80037c3, ! 0x0, 0x8001725, 0x3c0a0006, 0x800388a, ! 0x3c0a0007, 0x8001725, 0x3c0a0008, 0x8001725, ! 0x3c0a0009, 0x80038e2, 0x0, 0x8002d75, ! 0x0, 0x8001725, 0x3c0a000b, 0x8001725, ! 0x3c0a000c, 0x8001725, 0x3c0a000d, 0x80027cb, ! 0x0, 0x8002760, 0x0, 0x8001725, ! 0x3c0a000e, 0x8001f60, 0x0, 0x8001958, ! 0x0, 0x80019f8, 0x0, 0x8003b64, ! 0x0, 0x8003b52, 0x0, 0x8001725, ! 0x0, 0x800190e, 0x0, 0x8001725, ! 0x0, 0x8001725, 0x3c0a0013, 0x8001725, ! 0x3c0a0014, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x27bdffe0, ! 0x3c1cc000, 0xafbf001c, 0xafb00018, 0x8f820140, ! 0x24030003, 0xaf8300ec, 0x34420004, 0xc0029f0, ! 0xaf820140, 0x3c0100c0, 0xc001759, 0xac203ffc, ! 0x401821, 0x3c020010, 0x3c010001, 0xac2344fc, ! 0x10620011, 0x43102b, 0x14400002, 0x3c020020, ! 0x3c020008, 0x1062000c, 0x24050100, 0x3c060001, ! 0x8cc644fc, 0x3c040001, 0x24843434, 0x3821, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x3c020020, ! 0x3c010001, 0xac2244fc, 0x24020008, 0x3c010001, ! 0xac224514, 0x2402001f, 0x3c010001, 0xac224524, ! 0x24020016, 0x3c010001, 0xac2244f8, 0x3c05fffe, ! 0x34a56f08, 0x3c020001, 0x8c4244fc, 0x3c030001, ! 0x24636660, 0x3c040001, 0x8c844364, 0x431023, 0x14800002, 0x458021, 0x2610fa38, 0x2402f000, ! 0x2028024, 0xc00177b, 0x2002021, 0x2022823, 0x3c040020, 0x821823, 0x651823, 0x247bb000, 0x3c03fffe, 0x3463bf08, 0x363b821, 0x3c0600bf, ! 0x34c6f000, 0x3c070001, 0x8ce74360, 0x3c0300bf, ! 0x3463e000, 0x852023, 0x3c010001, 0xac244508, ! 0x822023, 0x3c010001, 0xac2544f0, 0x52842, ! 0x3c010001, 0xac2244e4, 0x27620ffc, 0x3c010001, ! 0xac2243b0, 0x27621ffc, 0xdb3023, 0x7b1823, ! 0x3c010001, 0xac2444e8, 0x3c010001, 0xac25450c, ! 0x3c010001, 0xac2243b4, 0xaf860150, 0x10e00011, ! 0xaf830250, 0x3c1d0001, 0x8fbd436c, 0x3a0f021, ! 0xc00173f, 0x0, 0x3c020001, 0x8c424370, ! 0x3c030001, 0x8c634374, 0x2442fe00, 0x24630200, ! 0x3c010001, 0xac224370, 0x3c010001, 0x10000004, ! 0xac234374, 0x3c1d0001, 0x8fbd43b0, 0x3a0f021, ! 0x3c020001, 0x8c424364, 0x1040000d, 0x26fafa38, ! 0x3c020001, 0x8c424370, 0x3c030001, 0x8c634374, ! 0x3c1a0001, 0x8f5a4374, 0x2442fa38, 0x246305c8, ! 0x3c010001, 0xac224370, 0x3c010001, 0xac234374, ! 0x3c020001, 0x8c424368, 0x14400003, 0x0, ! 0x3c010001, 0xac204370, 0xc001151, 0x0, ! 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, ! 0x3c020001, 0x8c424370, 0x3c030001, 0x8c634374, ! 0x27bdff98, 0xafb00048, 0x3c100001, 0x8e103de8, ! 0xafb20050, 0x3c120000, 0x26524100, 0xafbf0060, ! 0xafbe005c, 0xafb50058, 0xafb30054, 0xafb1004c, ! 0xafa20034, 0xafa30030, 0xafa00010, 0xafa00014, ! 0x8f860040, 0x3c040001, 0x24843440, 0x24050200, ! 0x3c010001, 0xac3244e0, 0xc002a0b, 0x2003821, ! 0x8f830040, 0x3c02f000, 0x621824, 0x3c026000, ! 0x1062000b, 0xa3a0003f, 0x240e0001, 0x3c040001, ! 0x24843448, 0xa3ae003f, 0xafa00010, 0xafa00014, ! 0x8f860040, 0x24050300, 0xc002a0b, 0x2003821, ! 0x8f820240, 0x3c030001, 0x431025, 0xaf820240, ! 0xaf800048, 0x8f820048, 0x14400005, 0x0, ! 0xaf800048, 0x8f820048, 0x10400004, 0x0, ! 0xaf800048, 0x10000003, 0x2e02021, 0xaf80004c, ! 0x2e02021, 0x3c050001, 0xc002a78, 0x34a540f8, ! 0x3402021, 0xc002a78, 0x240505c8, 0x3c020001, ! 0x8c424508, 0x3c0d0001, 0x8dad44e8, 0x3c030001, ! 0x8c6344e4, 0x3c080001, 0x8d0844f0, 0x3c090001, ! 0x8d29450c, 0x3c0a0001, 0x8d4a4514, 0x3c0b0001, ! 0x8d6b4524, 0x3c0c0001, 0x8d8c44f8, 0x3c040001, ! 0x24843454, 0x24050400, 0xaf42013c, 0x8f42013c, ! 0x24060001, 0x24070001, 0xaf400000, 0xaf4d0138, ! 0xaf430144, 0xaf480148, 0xaf49014c, 0xaf4a0150, ! 0xaf4b0154, 0xaf4c0158, 0x2442ff80, 0xaf420140, ! 0x24020001, 0xafa20010, 0xc002a0b, 0xafa00014, ! 0x8f420138, 0xafa20010, 0x8f42013c, 0xafa20014, ! 0x8f460144, 0x8f470148, 0x3c040001, 0x24843460, ! 0xc002a0b, 0x24050500, 0xafb70010, 0xafba0014, ! 0x8f46014c, 0x8f470150, 0x3c040001, 0x2484346c, ! 0xc002a0b, 0x24050600, 0x3c020001, 0x8c4244fc, ! 0x3603821, 0x3c060001, 0x24c66660, 0x2448ffff, ! 0x1061824, 0xe81024, 0x43102b, 0x10400006, ! 0x24050900, 0x3c040001, 0x24843478, 0xafa80010, ! 0xc002a0b, 0xafa00014, 0x8f82000c, 0xafa20010, ! 0x8f82003c, 0xafa20014, 0x8f860000, 0x8f870004, ! 0x3c040001, 0x24843484, 0xc002a0b, 0x24051000, ! 0x8c020220, 0x8c030224, 0x8c060218, 0x8c07021c, ! 0x3c040001, 0x2484348c, 0x24051100, 0xafa20010, ! 0xc002a0b, 0xafa30014, 0xaf800054, 0xaf80011c, ! 0x8c020218, 0x30420002, 0x10400009, 0x0, ! 0x8c020220, 0x3c030002, 0x34630004, 0x431025, ! 0xaf42000c, 0x8c02021c, 0x10000008, 0x34420004, ! 0x8c020220, 0x3c030002, 0x34630006, 0x431025, ! 0xaf42000c, 0x8c02021c, 0x34420006, 0xaf420014, ! 0x8c020218, 0x30420010, 0x1040000a, 0x0, ! 0x8c02021c, 0x34420004, 0xaf420010, 0x8c020220, ! 0x3c03000a, 0x34630004, 0x431025, 0x10000009, ! 0xaf420008, 0x8c020220, 0x3c03000a, 0x34630006, ! 0x431025, 0xaf420008, 0x8c02021c, 0x34420006, ! 0xaf420010, 0x24020001, 0xaf8200a0, 0xaf8200b0, ! 0x8f830054, 0x8f820054, 0xaf8000d0, 0xaf8000c0, ! 0x10000002, 0x24630064, 0x8f820054, 0x621023, ! 0x2c420065, 0x1440fffc, 0x0, 0x8c040208, ! 0x8c05020c, 0x26e20028, 0xaee20020, 0x24020490, ! 0xaee20010, 0xaee40008, 0xaee5000c, 0x26e40008, ! 0x8c820000, 0x8c830004, 0xaf820090, 0xaf830094, ! 0x8c820018, 0xaf8200b4, 0x9482000a, 0xaf82009c, ! 0x8f420014, 0xaf8200b0, 0x8f8200b0, 0x30420004, ! 0x1440fffd, 0x0, 0x8f8200b0, 0x3c03ef00, ! 0x431024, 0x10400021, 0x0, 0x8f8200b4, ! 0xafa20010, 0x8f820090, 0x8f830094, 0x3c040001, ! 0x24843494, 0xafa30014, 0x8f8600b0, 0x8f87009c, ! 0x3c050001, 0xc002a0b, 0x34a5200d, 0x3c040001, ! 0x248434a0, 0x240203ba, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e734a8, 0xc002a0b, 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x96e20472, ! 0x96e60452, 0x96e70462, 0xafa20010, 0x96e20482, ! 0x3c040001, 0x248434b4, 0x24051200, 0xc002a0b, ! 0xafa20014, 0x96f00452, 0x32020001, 0x10400002, ! 0xb021, 0x24160001, 0x32020002, 0x54400001, ! 0x36d60002, 0x32020008, 0x54400001, 0x36d60004, ! 0x32020010, 0x54400001, 0x36d60008, 0x32020020, ! 0x54400001, 0x36d60010, 0x32020040, 0x54400001, ! 0x36d60020, 0x32020080, 0x54400001, 0x36d60040, ! 0x96e60482, 0x30c20200, 0x54400001, 0x36d64000, ! 0x96e30472, 0x30620200, 0x10400003, 0x30620100, ! 0x10000003, 0x36d62000, 0x54400001, 0x36d61000, ! 0x96f00462, 0x32c24000, 0x14400004, 0x3207009b, ! 0x30c2009b, 0x14e20007, 0x240e0001, 0x32c22000, ! 0x1440000d, 0x32020001, 0x3062009b, 0x10e20009, ! 0x240e0001, 0x3c040001, 0x248434c0, 0x24051300, ! 0x2003821, 0xa3ae003f, 0xafa30010, 0xc002a0b, ! 0xafa00014, 0x32020001, 0x54400001, 0x36d60080, 0x32020002, 0x54400001, 0x36d60100, 0x32020008, 0x54400001, 0x36d60200, 0x32020010, 0x54400001, 0x36d60400, 0x32020080, 0x54400001, 0x36d60800, 0x8c020218, 0x30420200, 0x10400002, 0x3c020008, ! 0x2c2b025, 0x8c020218, 0x30420800, 0x10400002, ! 0x3c020080, 0x2c2b025, 0x8c020218, 0x30420400, ! 0x10400002, 0x3c020100, 0x2c2b025, 0x8c020218, ! 0x30420100, 0x10400002, 0x3c020200, 0x2c2b025, ! 0x8c020218, 0x30420080, 0x10400002, 0x3c020400, ! 0x2c2b025, 0x8c020218, 0x30422000, 0x10400002, ! 0x3c020010, 0x2c2b025, 0x8c020218, 0x30424000, ! 0x10400002, 0x3c020020, 0x2c2b025, 0x8c020218, ! 0x30421000, 0x10400002, 0x3c020040, 0x2c2b025, ! 0x8ee20498, 0x8ee3049c, 0xaf420160, 0xaf430164, ! 0x8ee204a0, 0x8ee304a4, 0xaf420168, 0xaf43016c, ! 0x8ee204a8, 0x8ee304ac, 0xaf420170, 0xaf430174, ! 0x8ee20428, 0x8ee3042c, 0xaf420178, 0xaf43017c, ! 0x8ee20448, 0x8ee3044c, 0xaf420180, 0xaf430184, ! 0x8ee20458, 0x8ee3045c, 0xaf420188, 0xaf43018c, ! 0x8ee20468, 0x8ee3046c, 0xaf420190, 0xaf430194, ! 0x8ee20478, 0x8ee3047c, 0xaf420198, 0xaf43019c, ! 0x8ee20488, 0x8ee3048c, 0xaf4201a0, 0xaf4301a4, ! 0x8ee204b0, 0x8ee304b4, 0x24040080, 0xaf4201a8, ! 0xaf4301ac, 0xc002a78, 0x24050080, 0x8c02025c, ! 0x27440224, 0xaf4201f0, 0x8c020260, 0x24050200, ! 0x24060008, 0xc002a8f, 0xaf4201f8, 0x3c043b9a, ! 0x3484ca00, 0x3821, 0x24020006, 0x24030002, ! 0xaf4201f4, 0x240203e8, 0xaf430204, 0xaf430200, ! 0xaf4401fc, 0xaf420294, 0x24020001, 0xaf430290, ! 0xaf42029c, 0x3c030001, 0x671821, 0x90634378, ! 0x3471021, 0x24e70001, 0xa043022c, 0x2ce2000f, ! 0x1440fff8, 0x3471821, 0x24e70001, 0x3c080001, ! 0x350840f8, 0x8f820040, 0x3c040001, 0x248434cc, ! 0x24051400, 0x21702, 0x24420030, 0xa062022c, ! 0x3471021, 0xa040022c, 0x8c070218, 0x2c03021, ! 0x240205c8, 0xafa20010, 0xc002a0b, 0xafa80014, ! 0x3c040001, 0x248434d8, 0x3c050000, 0x24a55c58, ! 0x24060010, 0x27b10030, 0x2203821, 0x27b30034, ! 0xc001799, 0xafb30010, 0x3c030001, 0x8c634368, ! 0x1060000a, 0x408021, 0x8fa30030, 0x2405ff00, ! 0x8fa20034, 0x246400ff, 0x852024, 0x831823, ! 0x431023, 0xafa20034, 0xafa40030, 0x3c040001, ! 0x248434e4, 0x3c050000, 0x24a54100, 0x24060108, ! 0x2203821, 0xc001799, 0xafb30010, 0x409021, ! 0x32c20003, 0x3c010001, 0xac3244e0, 0x10400045, ! 0x2203821, 0x8f820050, 0x3c030010, 0x431024, ! 0x10400016, 0x0, 0x8c020218, 0x30420040, ! 0x1040000f, 0x24020001, 0x8f820050, 0x8c030218, ! 0x240e0001, 0x3c040001, 0x248434f0, 0xa3ae003f, 0xafa20010, 0xafa30014, 0x8f870040, 0x24051500, ! 0xc002a0b, 0x2c03021, 0x10000004, 0x0, ! 0x3c010001, 0x370821, 0xa02240f4, 0x3c040001, ! 0x248434fc, 0x3c050001, 0x24a53300, 0x3c060001, ! 0x24c6336c, 0xc53023, 0x8f420010, 0x27b30030, ! 0x2603821, 0x27b10034, 0x34420a00, 0xaf420010, ! 0xc001799, 0xafb10010, 0x3c040001, 0x24843510, ! 0x3c050001, 0x24a5b250, 0x3c060001, 0x24c6b5cc, ! 0xc53023, 0x2603821, 0xaf420108, 0xc001799, ! 0xafb10010, 0x3c040001, 0x2484352c, 0x3c050001, ! 0x24a5b994, 0x3c060001, 0x24c6c43c, 0xc53023, ! 0x2603821, 0x3c010001, 0xac224554, 0xc001799, ! 0xafb10010, 0x3c040001, 0x24843544, 0x10000024, ! 0x24051600, 0x3c040001, 0x2484354c, 0x3c050001, ! 0x24a59c4c, 0x3c060001, 0x24c69d78, 0xc53023, ! 0xc001799, 0xafb30010, 0x3c040001, 0x2484355c, ! 0x3c050001, 0x24a5adec, 0x3c060001, 0x24c6b248, ! 0xc53023, 0x2203821, 0xaf420108, 0xc001799, ! 0xafb30010, 0x3c040001, 0x24843570, 0x3c050001, ! 0x24a5b5d4, 0x3c060001, 0x24c6b98c, 0xc53023, ! 0x2203821, 0x3c010001, 0xac224554, 0xc001799, ! 0xafb30010, 0x3c040001, 0x24843584, 0x24051650, ! 0x2c03021, 0x3821, 0x3c010001, 0xac224558, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x32c20020, ! 0x10400021, 0x27a70030, 0x3c040001, 0x24843590, ! 0x3c050001, 0x24a5ac78, 0x3c060001, 0x24c6ade4, ! 0xc53023, 0x24022000, 0xaf42001c, 0x27a20034, ! 0xc001799, 0xafa20010, 0x21900, 0x31982, ! 0x3c040800, 0x641825, 0xae430028, 0x24030010, ! 0xaf43003c, 0x96e30450, 0xaf430040, 0x8f430040, ! 0x3c040001, 0x248435a4, 0xafa00014, 0xafa30010, ! 0x8f47001c, 0x24051660, 0x3c010001, 0xac224550, ! 0x10000025, 0x32c60020, 0x8ee20448, 0x8ee3044c, ! 0xaf43001c, 0x8f42001c, 0x2442e000, 0x2c422001, ! 0x1440000a, 0x240e0001, 0x3c040001, 0x248435b0, ! 0xa3ae003f, 0xafa00010, 0xafa00014, 0x8f46001c, ! 0x24051700, 0xc002a0b, 0x3821, 0x3c020000, ! 0x24425c94, 0x21100, 0x21182, 0x3c030800, ! 0x431025, 0xae420028, 0x24020008, 0xaf42003c, ! 0x96e20450, 0xaf420040, 0x8f420040, 0x3c040001, ! 0x248435bc, 0xafa00014, 0xafa20010, 0x8f47001c, ! 0x24051800, 0x32c60020, 0xc002a0b, 0x0, ! 0x3c050fff, 0x3c030001, 0x8c634554, 0x34a5ffff, ! 0x2403021, 0x3c020001, 0x8c424558, 0x3c040800, ! 0x651824, 0x31882, 0x641825, 0x451024, ! 0x21082, 0x441025, 0xacc20080, 0x32c20180, ! 0x10400056, 0xacc30020, 0x8f82005c, 0x3c030080, ! 0x431024, 0x1040000d, 0x0, 0x8f820050, ! 0xafa20010, 0x8f82005c, 0x240e0001, 0x3c040001, ! 0x248435c8, 0xa3ae003f, 0xafa20014, 0x8f870040, ! 0x24051900, 0xc002a0b, 0x2c03021, 0x8f820050, ! 0x3c030010, 0x431024, 0x10400016, 0x0, ! 0x8c020218, 0x30420040, 0x1040000f, 0x24020001, ! 0x8f820050, 0x8c030218, 0x240e0001, 0x3c040001, ! 0x248434f0, 0xa3ae003f, 0xafa20010, 0xafa30014, ! 0x8f870040, 0x24052000, 0xc002a0b, 0x2c03021, 0x10000004, 0x0, 0x3c010001, 0x370821, ! 0xa02240f4, 0x3c040001, 0x248435d4, 0x3c050001, ! 0x24a53280, 0x3c060001, 0x24c632f8, 0xc53023, ! 0x8f420008, 0x27b30030, 0x2603821, 0x27b10034, ! 0x34420e00, 0xaf420008, 0xc001799, 0xafb10010, ! 0x3c040001, 0x248435ec, 0x3c050001, 0x24a5d3f0, ! 0x3c060001, 0x24c6df04, 0xc53023, 0x2603821, ! 0xaf42010c, 0xc001799, 0xafb10010, 0x3c040001, ! 0x24843604, 0x3c050001, 0x24a5e4e8, 0x3c060001, ! 0x24c6ec2c, 0xc53023, 0x2603821, 0x3c010001, ! 0xac224564, 0xc001799, 0xafb10010, 0x3c040001, ! 0x2484361c, 0x10000027, 0x24052100, 0x3c040001, ! 0x24843624, 0x3c050001, 0x24a59b08, 0x3c060001, ! 0x24c69c44, 0xc53023, 0x27b10030, 0x2203821, ! 0x27b30034, 0xc001799, 0xafb30010, 0x3c040001, ! 0x24843634, 0x3c050001, 0x24a5c610, 0x3c060001, ! 0x24c6d3e8, 0xc53023, 0x2203821, 0xaf42010c, ! 0xc001799, 0xafb30010, 0x3c040001, 0x24843644, ! 0x3c050001, 0x24a5e388, 0x3c060001, 0x24c6e4e0, ! 0xc53023, 0x2203821, 0x3c010001, 0xac224564, ! 0xc001799, 0xafb30010, 0x3c040001, 0x24843658, ! 0x24052150, 0x2c03021, 0x3821, 0x3c010001, ! 0xac224570, 0xafa00010, 0xc002a0b, 0xafa00014, ! 0x3c110fff, 0x3c030001, 0x8c634564, 0x3631ffff, ! 0x2409821, 0x3c020001, 0x8c424570, 0x3c0e0800, ! 0x711824, 0x31882, 0x6e1825, 0x511024, ! 0x21082, 0x4e1025, 0xae630038, 0xae620078, ! 0x8c020218, 0x30420040, 0x14400004, 0x24020001, 0x3c010001, 0x370821, 0xa02240f4, 0x3c040001, ! 0x24843664, 0x3c050001, 0x24a5df0c, 0x3c060001, ! 0x24c6e068, 0xc53023, 0x27be0030, 0x3c03821, ! 0x27b50034, 0xc001799, 0xafb50010, 0x3c010001, ! 0xac22455c, 0x511024, 0x21082, 0x3c0e0800, ! 0x4e1025, 0xae620050, 0x32c22000, 0x10400006, ! 0x3c03821, 0x3c020000, 0x24425c94, 0x2221024, ! 0x1000000f, 0x21082, 0x3c040001, 0x24843678, ! 0x3c050001, 0x24a5e070, 0x3c060001, 0x24c6e220, ! 0xc53023, 0xc001799, 0xafb50010, 0x3c010001, ! 0xac224574, 0x511024, 0x21082, 0x3c0e0800, ! 0x4e1025, 0xae620048, 0x32c24000, 0x10400005, ! 0x27a70030, 0x3c020000, 0x24425c94, 0x1000000e, ! 0x21100, 0x3c040001, 0x24843690, 0x3c050001, ! 0x24a5e228, 0x3c060001, 0x24c6e380, 0xc53023, ! 0x27a20034, 0xc001799, 0xafa20010, 0x3c010001, ! 0xac224568, 0x21100, 0x21182, 0x3c030800, ! 0x431025, 0xae420060, 0x3c040001, 0x248436a8, ! 0x3c050000, 0x24a57d80, 0x3c060001, 0x24c681a0, ! 0xc53023, 0x27b10030, 0x2203821, 0x27b30034, ! 0xc001799, 0xafb30010, 0x3c0e0fff, 0x35ceffff, ! 0x3c040001, 0x248436b4, 0x3c050000, 0x24a56438, ! 0x3c060000, 0x24c66558, 0xc53023, 0x2203821, ! 0x240f021, 0x3c010001, 0xac22453c, 0x4e1024, ! 0x21082, 0x3c150800, 0x551025, 0xafae0044, ! 0xafc200b8, 0xc001799, 0xafb30010, 0x3c040001, ! 0x248436c0, 0x3c050000, 0x24a56560, 0x3c060000, ! 0x24c667d8, 0x8fae0044, 0xc53023, 0x2203821, ! 0x3c010001, 0xac224530, 0x4e1024, 0x21082, ! 0x551025, 0xafc200e8, 0xc001799, 0xafb30010, ! 0x3c040001, 0x248436d8, 0x3c050000, 0x24a567e0, ! 0x3c060000, 0x24c66910, 0x8fae0044, 0xc53023, ! 0x2203821, 0x3c010001, 0xac224528, 0x4e1024, ! 0x21082, 0x551025, 0xafc200c0, 0xc001799, ! 0xafb30010, 0x3c040001, 0x248436f0, 0x3c050001, ! 0x24a5f5c0, 0x3c060001, 0x24c6f698, 0x8fae0044, ! 0xc53023, 0x2203821, 0x3c010001, 0xac224534, ! 0x4e1024, 0x21082, 0x551025, 0xafc200c8, ! 0xc001799, 0xafb30010, 0x3c040001, 0x248436fc, ! 0x3c050001, 0x24a5c47c, 0x3c060001, 0x24c6c560, ! 0xc53023, 0x2203821, 0xaf420110, 0xc001799, ! 0xafb30010, 0x3c040001, 0x2484370c, 0x3c050001, ! 0x24a5c450, 0x3c060001, 0x24c6c474, 0xc53023, ! 0x2203821, 0xaf420124, 0xc001799, 0xafb30010, ! 0x3c040001, 0x2484371c, 0x3c050001, 0x24a53240, ! 0x3c060001, 0x24c6326c, 0xc53023, 0x2203821, ! 0xaf420120, 0xaf420114, 0xc001799, 0xafb30010, ! 0x3c040001, 0x24843728, 0x3c050001, 0x24a5ed90, ! 0x3c060001, 0x24c6f1ac, 0xc53023, 0x2203821, ! 0xaf420118, 0xc001799, 0xafb30010, 0x8fae0044, ! 0x3c010001, 0xac224578, 0x4e1024, 0x21082, ! 0x551025, 0xc003e7f, 0xafc200d0, 0xc003b10, ! 0x0, 0xc002678, 0x0, 0xac000228, ! 0xac00022c, 0x96e20450, 0x2442ffff, 0xaf420038, ! 0x96e20460, 0xaf420080, 0x32c24000, 0x14400003, ! 0x0, 0x96e20480, 0xaf420084, 0x96e70490, ! 0x50e00001, 0x24070800, 0x24e2ffff, 0xaf420088, ! 0xaf42007c, 0x24020800, 0x10e2000f, 0x32c24000, ! 0x10400003, 0x24020400, 0x10e2000b, 0x0, ! 0x240e0001, 0x3c040001, 0x24843738, 0xa3ae003f, 0x96e60490, 0x24052170, 0x2c03821, 0xafa00010, ! 0xc002a0b, 0xafa00014, 0x8f430138, 0x8f440138, ! 0x24020001, 0xa34205c2, 0xaf430094, 0xaf440098, ! 0xafa00010, 0xafa00014, 0x8f460080, 0x8f470084, ! 0x3c040001, 0x24843744, 0xc002a0b, 0x24052200, ! 0xc002378, 0x3c110800, 0x3c1433d8, 0x3694cb58, ! 0x3c020800, 0x34420080, 0x3c040001, 0x24843750, ! 0x3c050000, 0x24a55cd8, 0x3c060000, 0x24c65cf4, ! 0xc53023, 0x27a70030, 0xaf820060, 0x2402ffff, ! 0xaf820064, 0x27a20034, 0xc001799, 0xafa20010, ! 0x3c010001, 0xac224518, 0x21100, 0x21182, ! 0x511025, 0xc0018f0, 0xae420000, 0x8f820240, ! 0x3c030001, 0x431025, 0xaf820240, 0x3c020000, ! 0x24424034, 0xaf820244, 0xaf800240, 0x8f820060, ! 0x511024, 0x14400005, 0x3c030800, 0x8f820060, ! 0x431024, 0x1040fffd, 0x0, 0xc003b1d, ! 0x8821, 0x3c020100, 0xafa20020, 0x8f530018, ! 0x240200ff, 0x56620001, 0x26710001, 0x8c020228, 0x1622000e, 0x1330c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x248433e4, 0x3c050009, 0xafa00014, 0xafa20010, ! 0x8fa60020, 0x1000003f, 0x34a50100, 0xd71021, ! 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, 0x8f45017c, 0x1021, 0x24070004, 0xafa70010, 0xafb10014, 0x8f48000c, 0x24c604c0, 0x2e63021, 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, 0x822021, 0x100f809, 0x892021, 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248433ec, 0x3c050009, 0xafa20014, 0x8fa60020, 0x1000001c, 0x34a50200, 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf510018, 0x8f860120, 0x24020010, 0xafa20010, 0xafb10014, 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400010, 0x0, 0x8f420340, 0x24420001, 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248433f4, 0x3c050009, 0xafa20014, 0x8fa60020, ! 0x34a50300, 0xc002a0b, 0x2603821, 0x8f4202e4, ! 0x24420001, 0xaf4202e4, 0x8f4202e4, 0x93a2003f, ! 0x10400069, 0x3c020700, 0x34423000, 0xafa20028, ! 0x8f530018, 0x240200ff, 0x12620002, 0x8821, ! 0x26710001, 0x8c020228, 0x1622000e, 0x1330c0, ! 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x3c040001, 0x248433e4, 0x3c050009, ! 0xafa00014, 0xafa20010, 0x8fa60028, 0x1000003f, ! 0x34a50100, 0xd71021, 0x8fa30028, 0x8fa4002c, ! 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, ! 0x8f45017c, 0x1021, 0x24070004, 0xafa70010, ! 0xafb10014, 0x8f48000c, 0x24c604c0, 0x2e63021, ! 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, ! 0xa3482b, 0x822021, 0x100f809, 0x892021, ! 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248433ec, 0x3c050009, ! 0xafa20014, 0x8fa60028, 0x1000001c, 0x34a50200, ! 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf510018, ! 0x8f860120, 0x24020010, 0xafa20010, 0xafb10014, ! 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, ! 0x14400010, 0x0, 0x8f420340, 0x24420001, ! 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248433f4, 0x3c050009, ! 0xafa20014, 0x8fa60028, 0x34a50300, 0xc002a0b, ! 0x2603821, 0x8f4202f0, 0x24420001, 0xaf4202f0, ! 0x8f4202f0, 0x3c040001, 0x24843760, 0xafa00010, ! 0xafa00014, 0x8fa60028, 0x24052300, 0xc002a0b, ! 0x3821, 0x10000004, 0x0, 0x8c020264, ! 0x10400005, 0x0, 0x8f8200a0, 0x30420004, ! 0x1440fffa, 0x0, 0x8f820044, 0x34420004, ! 0xaf820044, 0x8f420308, 0x24420001, 0xaf420308, ! 0x8f420308, 0x8f8200d8, 0x8f8300d4, 0x431023, ! 0x2442ff80, 0xaf420090, 0x8f420090, 0x2842ff81, ! 0x10400006, 0x24020001, 0x8f420090, 0x8f430144, ! 0x431021, 0xaf420090, 0x24020001, 0xaf42008c, ! 0x32c20008, 0x10400006, 0x0, 0x8f820214, ! 0x3c038100, 0x3042ffff, 0x431025, 0xaf820214, ! 0x3c020001, 0x8c424424, 0x30420001, 0x10400009, ! 0x0, 0x3c040001, 0x2484376c, 0x3c050000, ! 0x24a56d20, 0x3c060000, 0x24c671c8, 0x10000008, ! 0xc53023, 0x3c040001, 0x2484377c, 0x3c050000, ! 0x24a56918, 0x3c060000, 0x24c66d18, 0xc53023, ! 0x27a70030, 0x27a20034, 0xc001799, 0xafa20010, ! 0x3c010001, 0xac22452c, 0x3c020001, 0x8c42452c, 0x3c030800, 0x21100, 0x21182, 0x431025, 0xae420040, 0x8f8200a0, 0xafa20010, 0x8f8200b0, 0xafa20014, 0x8f86005c, 0x8f87011c, 0x3c040001, ! 0x2484378c, 0x3c010001, 0xac364504, 0x3c010001, ! 0xac2044f4, 0x3c010001, 0xac3c44ec, 0x3c010001, ! 0xac3b451c, 0x3c010001, 0xac374520, 0x3c010001, ! 0xac3a4500, 0xc002a0b, 0x24052400, 0x8f820200, 0xafa20010, 0x8f820220, 0xafa20014, 0x8f860044, ! 0x8f870050, 0x3c040001, 0x24843798, 0xc002a0b, 0x24052500, 0x8f830060, 0x74100b, 0x242000a, 0x200f821, 0x0, 0xd, 0x8fbf0060, 0x8fbe005c, 0x8fb50058, 0x8fb30054, 0x8fb20050, 0x8fb1004c, 0x8fb00048, 0x3e00008, 0x27bd0068, ! 0x27bdffe0, 0x3c040001, 0x248437a4, 0x24052600, 0x3021, 0x3821, 0xafbf0018, 0xafa00010, ! 0xc002a0b, 0xafa00014, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x3e00008, 0x0, 0x3e00008, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e00008, 0x0, ! 0x3e00008, 0x0, 0x27bdfde0, 0x27a50018, ! 0x3c04dead, 0x3484beef, 0xafbf0218, 0x8f820150, ! 0x3c03001f, 0x3463ffff, 0xafa40018, 0xa22823, ! 0xa32824, 0x8ca20000, 0x1044000a, 0x0, ! 0xafa50010, 0x8ca20000, 0xafa20014, 0x8f860150, ! 0x8f870250, 0x3c040001, 0x248437ac, 0xc002a0b, ! 0x24052700, 0x8fbf0218, 0x3e00008, 0x27bd0220, ! 0x27bdffe0, 0x3c06abba, 0x34c6babe, 0xafb00018, ! 0x3c100004, 0x3c07007f, 0x34e7ffff, 0xafbf001c, ! 0x102840, 0x8e040000, 0x8ca30000, 0xaca00000, ! 0xae060000, 0x8ca20000, 0xaca30000, 0x10460005, ! 0xae040000, 0xa08021, 0xf0102b, 0x1040fff5, ! 0x102840, 0x3c040001, 0x248437b8, 0x24052800, ! 0x2003021, 0x3821, 0xafa00010, 0xc002a0b, ! 0xafa00014, 0x2001021, 0x8fbf001c, 0x8fb00018, ! 0x3e00008, 0x27bd0020, 0x8c020224, 0x3047003f, ! 0x10e00010, 0x803021, 0x2821, 0x24030020, ! 0xe31024, 0x10400002, 0x63042, 0xa62821, ! 0x31842, 0x1460fffb, 0xe31024, 0x2402f000, ! 0xa22824, 0x3402ffff, 0x45102b, 0x14400003, ! 0x3c020001, 0x10000008, 0x3c020001, 0x3442ffff, ! 0x851823, 0x43102b, 0x14400003, 0xa01021, ! 0x3c02fffe, 0x821021, 0x3e00008, 0x0, ! 0x27bdffd0, 0xafb50028, 0x8fb50040, 0xafb20020, ! 0xa09021, 0xafb1001c, 0x24c60003, 0xafbf002c, ! 0xafb30024, 0xafb00018, 0x8ea20000, 0x2403fffc, ! 0xc38024, 0x50102b, 0x1440001b, 0xe08821, ! 0x8e330000, 0xafb00010, 0x8ea20000, 0xafa20014, ! 0x8e270000, 0x24053000, 0xc002a0b, 0x2403021, ! 0x8e230000, 0x702021, 0x64102b, 0x10400007, ! 0x2402821, 0x8ca20000, 0xac620000, 0x24630004, ! 0x64102b, 0x1440fffb, 0x24a50004, 0x8ea20000, ! 0x501023, 0xaea20000, 0x8e220000, 0x501021, ! 0x1000000b, 0xae220000, 0x2402002d, 0xa0820000, ! 0xafb00010, 0x8ea20000, 0x2409821, 0xafa20014, ! 0x8e270000, 0x24053100, 0xc002a0b, 0x2603021, ! 0x2601021, 0x8fbf002c, 0x8fb50028, 0x8fb30024, ! 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x3e00008, ! 0x27bd0030, 0x27bdffe8, 0x3c1cc000, 0x3c05fffe, ! 0x3c030001, 0x8c6344e4, 0x3c040001, 0x8c8444f0, ! 0x34a5bf08, 0x24021ffc, 0x3c010001, 0xac224370, ! 0x3c0200c0, 0x3c010001, 0xac224374, 0x3c020020, ! 0xafbf0010, 0x3c0100c0, 0xac201ffc, 0x431023, ! 0x441023, 0x245bb000, 0x365b821, 0x3c1d0001, ! 0x8fbd436c, 0x3a0f021, 0x3c0400c0, 0x34840200, ! 0x3c1a00c0, 0x3c0300c0, 0x346307c8, 0x24021dfc, ! 0x3c010001, 0xac224370, 0x24021834, 0x3c010001, ! 0xac244374, 0x3c010001, 0xac224370, 0x3c010001, ! 0xac234374, 0xc001803, 0x375a0200, 0x8fbf0010, ! 0x3e00008, 0x27bd0018, 0x27bdffc8, 0x3c040001, ! 0x248437c4, 0x24053200, 0x3c020001, 0x8c424370, ! 0x3c030001, 0x8c634374, 0x3021, 0x3603821, ! 0xafbf0030, 0xafb3002c, 0xafb20028, 0xafb10024, ! 0xafb00020, 0xafa2001c, 0xafa30018, 0xafb70010, ! 0xc002a0b, 0xafba0014, 0xc00190a, 0x0, ! 0x8f820240, 0x34420004, 0xaf820240, 0x24020001, ! 0xaf420000, 0x3c020001, 0x571021, 0x904240f4, ! 0x10400092, 0x2403fffc, 0x3c100001, 0x2610a7b3, ! 0x3c120001, 0x2652a38c, 0x2121023, 0x438024, ! 0x8fa3001c, 0x3c040001, 0x248437d0, 0x70102b, 0x1440001a, 0x27b30018, 0x8fb10018, 0x24053000, ! 0x2403021, 0xafb00010, 0xafa30014, 0xc002a0b, 0x2203821, 0x8fa30018, 0x702021, 0x64102b, 0x10400007, 0x2403021, 0x8cc20000, 0xac620000, 0x24630004, 0x64102b, 0x1440fffb, 0x24c60004, 0x8fa2001c, 0x501023, 0xafa2001c, 0x8e620000, 0x501021, 0x1000000a, 0xae620000, 0x2408821, 0x24053100, 0xafb00010, 0xafa30014, 0x8fa70018, ! 0x2203021, 0x2402002d, 0xc002a0b, 0xa0820000, ! 0x24070020, 0x8fa3001c, 0x3c040001, 0x248437ec, ! 0x24120020, 0x3c010001, 0xac314510, 0x2c620020, ! 0x1440001d, 0x27b10018, 0x8fb00018, 0x24053000, ! 0x3c060001, 0x24c645a0, 0xafa70010, 0xafa30014, ! 0xc002a0b, 0x2003821, 0x8fa30018, 0x3c040001, ! 0x248445a0, 0x24650020, 0x65102b, 0x10400007, ! 0x0, 0x8c820000, 0xac620000, 0x24630004, ! 0x65102b, 0x1440fffb, 0x24840004, 0x8fa2001c, ! 0x521023, 0xafa2001c, 0x8e220000, 0x521021, ! 0x1000000b, 0xae220000, 0x3c100001, 0x261045a0, ! 0x24053100, 0xafa70010, 0xafa30014, 0x8fa70018, ! 0x2003021, 0x2402002d, 0xc002a0b, 0xa0820000, ! 0x24070020, 0x3c040001, 0x24843800, 0x8fa3001c, ! 0x24120020, 0x3c010001, 0xac304544, 0x2c620020, ! 0x1440001d, 0x27b10018, 0x8fb00018, 0x24053000, ! 0x3c060001, 0x24c645c0, 0xafa70010, 0xafa30014, ! 0xc002a0b, 0x2003821, 0x8fa30018, 0x3c040001, ! 0x248445c0, 0x24650020, 0x65102b, 0x10400007, ! 0x0, 0x8c820000, 0xac620000, 0x24630004, ! 0x65102b, 0x1440fffb, 0x24840004, 0x8fa2001c, ! 0x521023, 0xafa2001c, 0x8e220000, 0x521021, ! 0x1000000b, 0xae220000, 0x3c100001, 0x261045c0, ! 0x24053100, 0xafa70010, 0xafa30014, 0x8fa70018, ! 0x2003021, 0x2402002d, 0xc002a0b, 0xa0820000, ! 0x3c010001, 0x10000031, 0xac304540, 0x3c100000, ! 0x26107d6f, 0x3c120000, 0x26527bec, 0x2121023, ! 0x438024, 0x8fa3001c, 0x3c040001, 0x24843814, ! 0x70102b, 0x1440001a, 0x27b30018, 0x8fb10018, ! 0x24053000, 0x2403021, 0xafb00010, 0xafa30014, ! 0xc002a0b, 0x2203821, 0x8fa30018, 0x702021, ! 0x64102b, 0x10400007, 0x2403021, 0x8cc20000, ! 0xac620000, 0x24630004, 0x64102b, 0x1440fffb, ! 0x24c60004, 0x8fa2001c, 0x501023, 0xafa2001c, ! 0x8e620000, 0x501021, 0x1000000a, 0xae620000, ! 0x2408821, 0x24053100, 0xafb00010, 0xafa30014, ! 0x8fa70018, 0x2203021, 0x2402002d, 0xc002a0b, ! 0xa0820000, 0x3c010001, 0xac314510, 0x3c030001, ! 0x8c634510, 0x24020400, 0x60f809, 0xaf820070, 0x8fbf0030, 0x8fb3002c, 0x8fb20028, 0x8fb10024, ! 0x8fb00020, 0x3e00008, 0x27bd0038, 0x8f820040, ! 0x3c03f000, 0x431024, 0x3c036000, 0x14430006, ! 0x0, 0x8f820050, 0x2403ff80, 0x431024, ! 0x34420055, 0xaf820050, 0x8f820054, 0x244203e8, ! 0xaf820058, 0x240201f4, 0xaf4200e0, 0x24020004, ! 0xaf4200e8, 0x24020002, 0xaf4001b0, 0xaf4000e4, ! 0xaf4200dc, 0xaf4000d8, 0xaf4000d4, 0x3e00008, ! 0xaf4000d0, 0x8f820054, 0x24420005, 0x3e00008, ! 0xaf820078, 0x27bdffe8, 0xafbf0010, 0x8f820054, ! 0x244203e8, 0xaf820058, 0x3c020800, 0x2c21024, ! 0x10400004, 0x3c02f7ff, 0x3442ffff, 0x2c2b024, ! 0x36940040, 0x3c020001, 0x8c424438, 0x10400017, ! 0x3c020200, 0x3c030001, 0x8c63457c, 0x10600016, ! 0x282a025, 0x3c020001, 0x8c4244c4, 0x14400012, ! 0x3c020200, 0x3c020001, 0x8c424424, 0x30420001, ! 0x1440000d, 0x3c020200, 0x8f830224, 0x3c020001, ! 0x8c42663c, 0x10620008, 0x3c020200, 0xc003c6d, ! 0x0, 0x10000004, 0x3c020200, 0xc004008, ! 0x0, 0x3c020200, 0x2c21024, 0x10400003, ! 0x0, 0xc001e1f, 0x0, 0x8f4200d8, ! 0x8f4300dc, 0x24420001, 0xaf4200d8, 0x43102b, ! 0x14400003, 0x0, 0xaf4000d8, 0x36940080, ! 0x8c030238, 0x1060000c, 0x0, 0x8f4201b0, ! 0x244203e8, 0xaf4201b0, 0x43102b, 0x14400006, ! 0x0, 0x934205c5, 0x14400003, 0x0, ! 0xc001c74, 0x0, 0x8fbf0010, 0x3e00008, ! 0x27bd0018, 0x3e00008, 0x0, 0x27bdffd8, ! 0xafbf0020, 0x8f43002c, 0x8f420038, 0x10620059, ! 0x0, 0x3c020001, 0x571021, 0x904240f0, ! 0x10400026, 0x24070008, 0x8f440170, 0x8f450174, ! 0x8f48000c, 0x8f860120, 0x24020020, 0xafa20010, ! 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, ! 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, ! 0x370821, 0xa02240f0, 0x8f820124, 0xafa20010, ! 0x8f820128, 0x3c040001, 0x248438b8, 0xafa20014, ! 0x8f46002c, 0x8f870120, 0x3c050009, 0xc002a0b, ! 0x34a50900, 0x1000005c, 0x0, 0x8f420300, ! 0x24420001, 0xaf420300, 0x8f420300, 0x8f42002c, ! 0xa34005c1, 0x10000027, 0xaf420038, 0x8f440170, ! 0x8f450174, 0x8f43002c, 0x8f48000c, 0x8f860120, ! 0x24020080, 0xafa20010, 0xafa30014, 0xafa80018, ! 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, ! 0x24020001, 0x3c010001, 0x370821, 0xa02240f1, ! 0x8f820124, 0xafa20010, 0x8f820128, 0x3c040001, ! 0x248438c4, 0xafa20014, 0x8f46002c, 0x8f870120, ! 0x3c050009, 0xc002a0b, 0x34a51100, 0x10000036, ! 0x0, 0x8f420300, 0x8f43002c, 0x24420001, ! 0xaf420300, 0x8f420300, 0x24020001, 0xa34205c1, ! 0xaf430038, 0x3c010001, 0x370821, 0xa02040f1, ! 0x3c010001, 0x370821, 0xa02040f0, 0x10000026, ! 0xaf400034, 0x934205c1, 0x1040001d, 0x0, ! 0xa34005c1, 0x8f820040, 0x30420001, 0x14400008, ! 0x2021, 0x8c030104, 0x24020001, 0x50620005, ! 0x24040001, 0x8c020264, 0x10400003, 0x801021, ! 0x24040001, 0x801021, 0x10400006, 0x0, ! 0x8f42030c, 0x24420001, 0xaf42030c, 0x10000008, ! 0x8f42030c, 0x8f820044, 0x34420004, 0xaf820044, ! 0x8f420308, 0x24420001, 0xaf420308, 0x8f420308, ! 0x3c010001, 0x370821, 0xa02040f0, 0x3c010001, ! 0x370821, 0xa02040f1, 0x8f420000, 0x10400007, ! 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, ! 0x0, 0x10000005, 0x0, 0xaf800048, ! 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, ! 0x3c03ff7f, 0x3463ffff, 0x431024, 0xaf820060, ! 0x8f420000, 0x10400003, 0x0, 0x10000002, ! 0xaf80004c, 0xaf800048, 0x8fbf0020, 0x3e00008, ! 0x27bd0028, 0x3e00008, 0x0, 0x27bdffd8, ! 0xafbf0020, 0x8f430044, 0x8f42007c, 0x10620029, ! 0x24070008, 0x8f440168, 0x8f45016c, 0x8f48000c, ! 0x8f860120, 0x24020040, 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, 0x370821, ! 0xa02240f2, 0x8f820124, 0xafa20010, 0x8f820128, ! 0x3c040001, 0x248438cc, 0xafa20014, 0x8f460044, ! 0x8f870120, 0x3c050009, 0xc002a0b, 0x34a51300, ! 0x1000000f, 0x0, 0x8f420304, 0x24420001, ! 0xaf420304, 0x8f420304, 0x8f420044, 0xaf42007c, ! 0x3c010001, 0x370821, 0xa02040f2, 0x10000004, ! 0xaf400078, 0x3c010001, 0x370821, 0xa02040f2, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x3c03feff, 0x3463ffff, ! 0x431024, 0xaf820060, 0x8f420000, 0x10400003, ! 0x0, 0x10000002, 0xaf80004c, 0xaf800048, 0x8fbf0020, 0x3e00008, 0x27bd0028, 0x3e00008, ! 0x0, 0x3c020001, 0x8c424438, 0x27bdffa8, 0xafbf0050, 0xafbe004c, 0xafb50048, 0xafb30044, ! 0xafb20040, 0xafb1003c, 0xafb00038, 0x104000d5, ! 0x8f900044, 0x8f4200d0, 0x24430001, 0x2842000b, ! 0x144000e4, 0xaf4300d0, 0x8f420004, 0x30420002, ! 0x1440009c, 0xaf4000d0, 0x8f420004, 0x3c030001, ! 0x8c634428, 0x34420002, 0xaf420004, 0x24020001, ! 0x14620003, 0x3c020600, 0x10000002, 0x34423000, ! 0x34421000, 0xafa20020, 0x8f4a0018, 0xafaa0034, ! 0x27aa0020, 0xafaa002c, 0x8faa0034, 0x240200ff, ! 0x11420002, 0x1821, 0x25430001, 0x8c020228, ! 0x609821, 0x1662000e, 0x3c050009, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, ! 0x8fa70034, 0x3c040001, 0x2484389c, 0xafa00014, ! 0xafa20010, 0x8fa60020, 0x10000070, 0x34a50500, ! 0x8faa0034, 0xa38c0, 0xf71021, 0x8fa30020, ! 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, ! 0x8f820054, 0x247103e8, 0x2221023, 0x2c4203e9, ! 0x1040001b, 0xa821, 0xe09021, 0x265e04c0, ! 0x8f440178, 0x8f45017c, 0x2401821, 0x240a0004, ! 0xafaa0010, 0xafb30014, 0x8f48000c, 0x1021, ! 0x2fe3021, 0xafa80018, 0x8f48010c, 0x24070008, ! 0xa32821, 0xa3482b, 0x822021, 0x100f809, ! 0x892021, 0x54400006, 0x24150001, 0x8f820054, ! 0x2221023, 0x2c4203e9, 0x1440ffe9, 0x0, ! 0x32a200ff, 0x54400018, 0xaf530018, 0x8f420378, ! 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, ! 0x8faa002c, 0x8fa70034, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x248438a8, 0xafa20014, 0x8d460000, ! 0x3c050009, 0x10000035, 0x34a50600, 0x8f420308, ! 0x24150001, 0x24420001, 0xaf420308, 0x8f420308, ! 0x1000001e, 0x32a200ff, 0x8f830054, 0x8f820054, ! 0x247103e8, 0x2221023, 0x2c4203e9, 0x10400016, ! 0xa821, 0x3c1e0020, 0x24120010, 0x8f42000c, ! 0x8f440160, 0x8f450164, 0x8f860120, 0xafb20010, ! 0xafb30014, 0x5e1025, 0xafa20018, 0x8f42010c, ! 0x24070008, 0x40f809, 0x24c6001c, 0x1440ffe3, ! 0x0, 0x8f820054, 0x2221023, 0x2c4203e9, ! 0x1440ffee, 0x0, 0x32a200ff, 0x14400011, ! 0x3c050009, 0x8f420378, 0x24420001, 0xaf420378, ! 0x8f420378, 0x8f820120, 0x8faa002c, 0x8fa70034, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x248438b0, ! 0xafa20014, 0x8d460000, 0x34a50700, 0xc002a0b, ! 0x0, 0x8f4202ec, 0x24420001, 0xaf4202ec, ! 0x8f4202ec, 0x8f420004, 0x30420001, 0x50400029, ! 0x36100040, 0x3c020400, 0x2c21024, 0x10400013, ! 0x2404ffdf, 0x8f420250, 0x8f430254, 0x8f4401b4, ! 0x14640006, 0x36100040, 0x8f420270, 0x8f430274, ! 0x8f4401b8, 0x10640007, 0x2402ffdf, 0x8f420250, ! 0x8f430254, 0x8f440270, 0x8f450274, 0x10000012, ! 0x3a100020, 0x1000002b, 0x2028024, 0x8f420250, ! 0x8f430254, 0x8f4501b4, 0x14650006, 0x2048024, ! 0x8f420270, 0x8f430274, 0x8f4401b8, 0x50640021, ! 0x36100040, 0x8f420250, 0x8f430254, 0x8f440270, ! 0x8f450274, 0x3a100040, 0xaf4301b4, 0x10000019, ! 0xaf4501b8, 0x8f4200d4, 0x24430001, 0x10000011, ! 0x28420033, 0x8f420004, 0x30420001, 0x10400009, ! 0x3c020400, 0x2c21024, 0x10400004, 0x2402ffdf, ! 0x2028024, 0x1000000b, 0x36100040, 0x10000009, ! 0x36100060, 0x8f4200d4, 0x36100040, 0x24430001, ! 0x284201f5, 0x14400003, 0xaf4300d4, 0xaf4000d4, ! 0x3a100020, 0xaf900044, 0x2402ff7f, 0x282a024, ! 0x8fbf0050, 0x8fbe004c, 0x8fb50048, 0x8fb30044, ! 0x8fb20040, 0x8fb1003c, 0x8fb00038, 0x3e00008, ! 0x27bd0058, 0x3e00008, 0x0, 0x3c020001, ! 0x8c424438, 0x27bdffb0, 0xafbf0048, 0xafbe0044, 0xafb50040, 0xafb3003c, 0xafb20038, 0xafb10034, ! 0x104000de, 0xafb00030, 0x8f4200d0, 0x3c040001, ! 0x8c844428, 0x24430001, 0x2842000b, 0xaf4400e8, 0x144000fe, 0xaf4300d0, 0x8f420004, 0x30420002, 0x14400095, 0xaf4000d0, 0x8f420004, 0x34420002, 0xaf420004, 0x24020001, 0x14820003, 0x3c020600, --- 35,892 ---- 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2000008, ! 0x0, 0x80017d9, 0x3c0a0001, 0x80017d9, ! 0x3c0a0002, 0x80017d9, 0x0, 0x8002ec4, ! 0x0, 0x8002e4e, 0x0, 0x80017d9, ! 0x3c0a0004, 0x80035a3, 0x0, 0x8001b5a, ! 0x0, 0x8003dd1, 0x0, 0x8003d5f, ! 0x0, 0x80017d9, 0x3c0a0006, 0x8003e58, ! 0x3c0a0007, 0x80017d9, 0x3c0a0008, 0x80017d9, ! 0x3c0a0009, 0x8003ec9, 0x0, 0x80030d9, ! 0x0, 0x80017d9, 0x3c0a000b, 0x80017d9, ! 0x3c0a000c, 0x80017d9, 0x3c0a000d, 0x8002af6, ! 0x0, 0x8002a8a, 0x0, 0x80017d9, ! 0x3c0a000e, 0x800219b, 0x0, 0x8001a69, ! 0x0, 0x8001b0b, 0x0, 0x80041a9, ! 0x0, 0x8004197, 0x0, 0x80017d9, ! 0x0, 0x8001a1f, 0x0, 0x80017d9, ! 0x0, 0x80017d9, 0x3c0a0013, 0x80017d9, ! 0x3c0a0014, 0x27bdffe0, 0x3c1cc000, 0xafbf001c, ! 0xafb00018, 0x8f820140, 0x24030003, 0xaf8300ec, ! 0x34420004, 0xaf820140, 0xc002d20, 0x0, ! 0x3c0100c0, 0xac203ffc, 0xc00184f, 0x0, ! 0x401821, 0x3c020010, 0x3c010002, 0xac2385f8, ! 0x10620025, 0x43102b, 0x14400002, 0x3c020020, ! 0x3c020008, 0x10620020, 0x24050100, 0x3c040001, ! 0x24847244, 0x3c060002, 0x8cc685f8, 0x3821, ! 0xafa00010, 0xc002d3b, 0xafa00014, 0x3c040001, ! 0x24847250, 0x24020256, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77258, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f830140, ! 0x3c020020, 0x3c010002, 0xac2285f8, 0x3c020001, ! 0x621825, 0xaf830140, 0x24020008, 0x3c010002, ! 0xac228610, 0x2402001f, 0x3c010002, 0xac228620, ! 0x24020016, 0x3c010002, 0xac2285f4, 0x3c05fffe, ! 0x34a56f08, 0x3c020002, 0x8c4285f8, 0x3c030002, ! 0x2463a770, 0x3c040002, 0x8c848464, 0x431023, 0x14800002, 0x458021, 0x2610fa38, 0x2402f000, ! 0x2028024, 0xc001871, 0x2002021, 0x2022823, 0x3c040020, 0x821823, 0x651823, 0x247bb000, 0x3c03fffe, 0x3463bf08, 0x363b821, 0x3c0600bf, ! 0x34c6f000, 0x3c070002, 0x8ce78460, 0x3c0300bf, ! 0x3463e000, 0x852023, 0x3c010002, 0xac248604, ! 0x822023, 0x3c010002, 0xac2585ec, 0x52842, ! 0x3c010002, 0xac2285e0, 0x27620ffc, 0x3c010002, ! 0xac2284a0, 0x27621ffc, 0xdb3023, 0x7b1823, ! 0x3c010002, 0xac2485e4, 0x3c010002, 0xac258608, ! 0x3c010002, 0xac2284a4, 0xaf860150, 0xaf830250, ! 0x10e00027, 0x33620fff, 0x10400014, 0x2402028b, ! 0x3c040001, 0x24847250, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77258, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x3c1d0002, ! 0x8fbd846c, 0x3a0f021, 0xc001807, 0x0, ! 0x3c020002, 0x8c428470, 0x3c030002, 0x8c638474, ! 0x2442fe00, 0x24630200, 0x3c010002, 0xac228470, ! 0x3c010002, 0xac238474, 0x10000004, 0x0, ! 0x3c1d0002, 0x8fbd84a0, 0x3a0f021, 0x3c020002, ! 0x8c428464, 0x1040000d, 0x26fafa38, 0x3c020002, ! 0x8c428470, 0x3c030002, 0x8c638474, 0x3c1a0002, ! 0x8f5a8474, 0x2442fa38, 0x246305c8, 0x3c010002, ! 0xac228470, 0x3c010002, 0xac238474, 0x3c020002, ! 0x8c428468, 0x14400003, 0x0, 0x3c010002, ! 0xac208470, 0xc001140, 0x0, 0x8fbf001c, ! 0x8fb00018, 0x3e00008, 0x27bd0020, 0x3c020002, ! 0x8c428470, 0x3c030002, 0x8c638474, 0x27bdff98, ! 0xafb00048, 0x3c100001, 0x8e107bf4, 0xafb20050, ! 0x3c120000, 0x26524100, 0xafbf0060, 0xafbe005c, ! 0xafb50058, 0xafb30054, 0xafb1004c, 0xafa20034, ! 0xafa30030, 0xafa00010, 0xafa00014, 0x8f860040, ! 0x3c040001, 0x24847264, 0x24050200, 0x3c010002, ! 0xac3285dc, 0xc002d3b, 0x2003821, 0x8f830040, ! 0x3c02f000, 0x621824, 0x3c026000, 0x1062001f, ! 0xa3a0003f, 0x3c040001, 0x2484726c, 0xafa00010, ! 0xafa00014, 0x8f860040, 0x24050300, 0xc002d3b, ! 0x2003821, 0x3c040001, 0x24847250, 0x240202e1, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77258, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x240e0001, 0x3c030001, ! 0xa3ae003f, 0x431025, 0xaf820140, 0x8f820240, ! 0x3c030001, 0x431025, 0xaf820240, 0xaf800048, ! 0x8f820048, 0x14400005, 0x0, 0xaf800048, ! 0x8f820048, 0x10400004, 0x0, 0xaf800048, ! 0x10000003, 0x2e02021, 0xaf80004c, 0x2e02021, ! 0x3c050001, 0xc002da8, 0x34a540f8, 0x3402021, ! 0xc002da8, 0x240505c8, 0x3c020002, 0x8c428604, ! 0x3c0d0002, 0x8dad85e4, 0x3c030002, 0x8c6385e0, ! 0x3c080002, 0x8d0885ec, 0x3c090002, 0x8d298608, ! 0x3c0a0002, 0x8d4a8610, 0x3c0b0002, 0x8d6b8620, ! 0x3c0c0002, 0x8d8c85f4, 0x3c040001, 0x24847278, ! 0x24050400, 0xaf42013c, 0x8f42013c, 0x24060001, ! 0x24070001, 0xaf400000, 0xaf4d0138, 0xaf430144, ! 0xaf480148, 0xaf49014c, 0xaf4a0150, 0xaf4b0154, ! 0xaf4c0158, 0x2442ff80, 0xaf420140, 0x24020001, ! 0xafa20010, 0xc002d3b, 0xafa00014, 0x8f420138, ! 0xafa20010, 0x8f42013c, 0xafa20014, 0x8f460144, ! 0x8f470148, 0x3c040001, 0x24847284, 0xc002d3b, ! 0x24050500, 0xafb70010, 0xafba0014, 0x8f46014c, ! 0x8f470150, 0x3c040001, 0x24847290, 0xc002d3b, ! 0x24050600, 0x3c020002, 0x8c4285f8, 0x3603821, ! 0x3c060002, 0x24c6a770, 0x2448ffff, 0x1061824, ! 0xe81024, 0x43102b, 0x1040001a, 0x24050900, ! 0x3c040001, 0x2484729c, 0xafa80010, 0xc002d3b, ! 0xafa00014, 0x3c040001, 0x24847250, 0x2402033a, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77258, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8f82000c, 0xafa20010, 0x8f82003c, ! 0xafa20014, 0x8f860000, 0x8f870004, 0x3c040001, ! 0x248472a8, 0xc002d3b, 0x24051000, 0x8c020220, ! 0x8c030224, 0x8c060218, 0x8c07021c, 0x3c040001, ! 0x248472b0, 0x24051100, 0xafa20010, 0xc002d3b, ! 0xafa30014, 0xaf800054, 0xaf80011c, 0x8c020218, ! 0x30420002, 0x10400009, 0x0, 0x8c020220, ! 0x3c030002, 0x34630004, 0x431025, 0xaf42000c, ! 0x8c02021c, 0x10000008, 0x34420004, 0x8c020220, ! 0x3c030002, 0x34630006, 0x431025, 0xaf42000c, ! 0x8c02021c, 0x34420006, 0xaf420014, 0x8c020218, ! 0x30420010, 0x1040000a, 0x0, 0x8c02021c, ! 0x34420004, 0xaf420010, 0x8c020220, 0x3c03000a, ! 0x34630004, 0x431025, 0x10000009, 0xaf420008, ! 0x8c020220, 0x3c03000a, 0x34630006, 0x431025, ! 0xaf420008, 0x8c02021c, 0x34420006, 0xaf420010, ! 0x24020001, 0xaf8200a0, 0xaf8200b0, 0x8f830054, ! 0x8f820054, 0xaf8000d0, 0xaf8000c0, 0x10000002, ! 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x0, 0x8c040208, 0x8c05020c, ! 0x26e20028, 0xaee20020, 0x24020490, 0xaee20010, ! 0xaee40008, 0xaee5000c, 0x26e40008, 0x8c820000, ! 0x8c830004, 0xaf820090, 0xaf830094, 0x8c820018, ! 0xaf8200b4, 0x9482000a, 0xaf82009c, 0x8f420014, ! 0xaf8200b0, 0x8f8200b0, 0x30420004, 0x1440fffd, ! 0x0, 0x8f8200b0, 0x3c03ef00, 0x431024, ! 0x10400021, 0x0, 0x8f8200b4, 0xafa20010, ! 0x8f820090, 0x8f830094, 0x3c040001, 0x248472b8, ! 0xafa30014, 0x8f8600b0, 0x8f87009c, 0x3c050001, ! 0xc002d3b, 0x34a5200d, 0x3c040001, 0x24847250, ! 0x240203c4, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x96e20472, 0x96e60452, ! 0x96e70462, 0xafa20010, 0x96e20482, 0x3c040001, ! 0x248472c4, 0x24051200, 0xc002d3b, 0xafa20014, ! 0x96f00452, 0x32020001, 0x10400002, 0xb021, ! 0x24160001, 0x32020002, 0x54400001, 0x36d60002, ! 0x32020008, 0x54400001, 0x36d60004, 0x32020010, ! 0x54400001, 0x36d60008, 0x32020020, 0x54400001, ! 0x36d60010, 0x32020040, 0x54400001, 0x36d60020, ! 0x32020080, 0x54400001, 0x36d60040, 0x96e60482, ! 0x30c20200, 0x54400001, 0x36d64000, 0x96e30472, ! 0x30620200, 0x10400003, 0x30620100, 0x10000003, ! 0x36d62000, 0x54400001, 0x36d61000, 0x96f00462, ! 0x32c24000, 0x14400004, 0x3207009b, 0x30c2009b, ! 0x14e20007, 0x0, 0x32c22000, 0x14400022, ! 0x32020001, 0x3062009b, 0x10e2001f, 0x32020001, ! 0x3c040001, 0x248472d0, 0x24051300, 0x2003821, ! 0xafa30010, 0xc002d3b, 0xafa00014, 0x3c040001, ! 0x24847250, 0x24020400, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x240e0001, 0x3c030001, 0xa3ae003f, 0x431025, ! 0xaf820140, 0x32020001, 0x54400001, 0x36d60080, 0x32020002, 0x54400001, 0x36d60100, 0x32020008, 0x54400001, 0x36d60200, 0x32020010, 0x54400001, 0x36d60400, 0x32020080, 0x54400001, 0x36d60800, 0x8c020218, 0x30420200, 0x10400002, 0x3c020008, ! 0x2c2b025, 0x8c020218, 0x30428000, 0x10400002, ! 0x3c021000, 0x2c2b025, 0x8c020218, 0x30420800, ! 0x10400002, 0x3c020080, 0x2c2b025, 0x8c020218, ! 0x30420400, 0x10400002, 0x3c020100, 0x2c2b025, ! 0x8c020218, 0x30420100, 0x10400002, 0x3c020200, ! 0x2c2b025, 0x8c020218, 0x30420080, 0x10400002, ! 0x3c020400, 0x2c2b025, 0x8c020218, 0x30422000, ! 0x10400002, 0x3c020010, 0x2c2b025, 0x8c020218, ! 0x30424000, 0x10400002, 0x3c020020, 0x2c2b025, ! 0x8c020218, 0x30421000, 0x10400002, 0x3c020040, ! 0x2c2b025, 0x8ee20498, 0x8ee3049c, 0xaf420160, ! 0xaf430164, 0x8ee204a0, 0x8ee304a4, 0xaf420168, ! 0xaf43016c, 0x8ee204a8, 0x8ee304ac, 0xaf420170, ! 0xaf430174, 0x8ee20428, 0x8ee3042c, 0xaf420178, ! 0xaf43017c, 0x8ee20448, 0x8ee3044c, 0xaf420180, ! 0xaf430184, 0x8ee20458, 0x8ee3045c, 0xaf420188, ! 0xaf43018c, 0x8ee20468, 0x8ee3046c, 0xaf420190, ! 0xaf430194, 0x8ee20478, 0x8ee3047c, 0xaf420198, ! 0xaf43019c, 0x8ee20488, 0x8ee3048c, 0xaf4201a0, ! 0xaf4301a4, 0x8ee204b0, 0x8ee304b4, 0x24040080, ! 0xaf4201a8, 0xaf4301ac, 0xc002da8, 0x24050080, ! 0x8c02025c, 0x27440224, 0xaf4201f0, 0x8c020260, ! 0x24050200, 0x24060008, 0xaf4201f8, 0xc002dbf, ! 0x0, 0x3c043b9a, 0x3484ca00, 0x3821, ! 0x24020006, 0x24030002, 0xaf4201f4, 0x240203e8, ! 0xaf430204, 0xaf430200, 0xaf4401fc, 0xaf420294, ! 0x24020001, 0xaf430290, 0xaf42029c, 0x3c030002, ! 0x671821, 0x90638478, 0x3471021, 0x24e70001, ! 0xa043022c, 0x2ce2000f, 0x1440fff8, 0x3471821, ! 0x24e70001, 0x3c080001, 0x350840f8, 0x8f820040, ! 0x3c040001, 0x248472dc, 0x24051400, 0x21702, ! 0x24420030, 0xa062022c, 0x3471021, 0xa040022c, ! 0x8c070218, 0x2c03021, 0x240205c8, 0xafa20010, ! 0xc002d3b, 0xafa80014, 0x3c040001, 0x248472e8, ! 0x3c050000, 0x24a55f28, 0x24060010, 0x27b10030, ! 0x2203821, 0x27b30034, 0xc00188f, 0xafb30010, ! 0x3c030002, 0x8c638468, 0x1060000a, 0x408021, ! 0x8fa30030, 0x2405ff00, 0x8fa20034, 0x246400ff, ! 0x852024, 0x831823, 0x431023, 0xafa20034, ! 0xafa40030, 0x3c040001, 0x248472f4, 0x3c050000, ! 0x24a54100, 0x24060108, 0x2203821, 0xc00188f, ! 0xafb30010, 0x409021, 0x32c20003, 0x3c010002, ! 0xac3285dc, 0x10400059, 0x2203821, 0x8f820050, ! 0x3c030010, 0x431024, 0x1040002a, 0x0, ! 0x8c020218, 0x30420040, 0x10400023, 0x24020001, ! 0x8f820050, 0x8c030218, 0x3c040001, 0x24847300, 0xafa20010, 0xafa30014, 0x8f870040, 0x24051500, ! 0xc002d3b, 0x2c03021, 0x3c040001, 0x24847250, ! 0x24020474, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x240e0001, ! 0x3c030001, 0xa3ae003f, 0x431025, 0xaf820140, 0x10000004, 0x0, 0x3c010001, 0x370821, ! 0xa02240f4, 0x3c040001, 0x2484730c, 0x3c050001, ! 0x24a5a8fc, 0x3c060001, 0x24c6aa20, 0xc53023, ! 0x8f420010, 0x27b30030, 0x2603821, 0x27b10034, ! 0x34420a00, 0xaf420010, 0xc00188f, 0xafb10010, ! 0x3c040001, 0x24847320, 0x3c050001, 0x24a5bfd4, ! 0x3c060001, 0x24c6c35c, 0xc53023, 0x2603821, ! 0xaf420108, 0xc00188f, 0xafb10010, 0x3c040001, ! 0x2484733c, 0x3c050001, 0x24a5c7fc, 0x3c060001, ! 0x24c6d53c, 0xc53023, 0x2603821, 0x3c010002, ! 0xac228650, 0xc00188f, 0xafb10010, 0x3c040001, ! 0x24847354, 0x10000024, 0x24051600, 0x3c040001, ! 0x2484735c, 0x3c050001, 0x24a5a744, 0x3c060001, ! 0x24c6a8f4, 0xc53023, 0xc00188f, 0xafb30010, ! 0x3c040001, 0x2484736c, 0x3c050001, 0x24a5bb10, ! 0x3c060001, 0x24c6bfcc, 0xc53023, 0x2203821, ! 0xaf420108, 0xc00188f, 0xafb30010, 0x3c040001, ! 0x24847380, 0x3c050001, 0x24a5c364, 0x3c060001, ! 0x24c6c7f4, 0xc53023, 0x2203821, 0x3c010002, ! 0xac228650, 0xc00188f, 0xafb30010, 0x3c040001, ! 0x24847394, 0x24051650, 0x2c03021, 0x3821, ! 0x3c010002, 0xac228654, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x32c20020, 0x10400021, 0x27a70030, ! 0x3c040001, 0x248473a0, 0x3c050001, 0x24a5b938, ! 0x3c060001, 0x24c6bb08, 0xc53023, 0x24022000, ! 0xaf42001c, 0x27a20034, 0xc00188f, 0xafa20010, ! 0x21900, 0x31982, 0x3c040800, 0x641825, ! 0xae430028, 0x24030010, 0xaf43003c, 0x96e30450, ! 0xaf430040, 0x8f430040, 0x3c040001, 0x248473b4, ! 0xafa00014, 0xafa30010, 0x8f47001c, 0x24051660, ! 0x3c010002, 0xac22864c, 0x10000039, 0x32c60020, ! 0x8ee20448, 0x8ee3044c, 0xaf43001c, 0x8f42001c, ! 0x2442e000, 0x2c422001, 0x1440001e, 0x24051700, ! 0x3c040001, 0x248473c0, 0xafa00010, 0xafa00014, ! 0x8f46001c, 0xc002d3b, 0x3821, 0x3c040001, ! 0x24847250, 0x240204dd, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77258, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x240e0001, 0x3c030001, 0xa3ae003f, 0x431025, ! 0xaf820140, 0x3c020000, 0x24425f64, 0x21100, ! 0x21182, 0x3c030800, 0x431025, 0xae420028, ! 0x24020008, 0xaf42003c, 0x96e20450, 0xaf420040, ! 0x8f420040, 0x3c040001, 0x248473cc, 0xafa00014, ! 0xafa20010, 0x8f47001c, 0x24051800, 0x32c60020, ! 0xc002d3b, 0x0, 0x3c050fff, 0x3c030002, ! 0x8c638650, 0x34a5ffff, 0x2403021, 0x3c020002, ! 0x8c428654, 0x3c040800, 0x651824, 0x31882, ! 0x641825, 0x451024, 0x21082, 0x441025, ! 0xacc20080, 0x32c20180, 0x1040007e, 0xacc30020, ! 0x8f82005c, 0x3c030080, 0x431024, 0x10400021, ! 0x0, 0x8f820050, 0xafa20010, 0x8f82005c, ! 0x3c040001, 0x248473d8, 0xafa20014, 0x8f870040, ! 0x24051900, 0xc002d3b, 0x2c03021, 0x3c040001, ! 0x24847250, 0x240204fe, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77258, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x240e0001, 0x3c030001, 0xa3ae003f, 0x431025, ! 0xaf820140, 0x8f820050, 0x3c030010, 0x431024, ! 0x1040002a, 0x0, 0x8c020218, 0x30420040, ! 0x10400023, 0x24020001, 0x8f820050, 0x8c030218, ! 0x3c040001, 0x24847300, 0xafa20010, 0xafa30014, ! 0x8f870040, 0x24052000, 0xc002d3b, 0x2c03021, ! 0x3c040001, 0x24847250, 0x2402050c, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77258, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x240e0001, 0x3c030001, 0xa3ae003f, ! 0x431025, 0xaf820140, 0x10000004, 0x0, 0x3c010001, 0x370821, 0xa02240f4, 0x3c040001, ! 0x248473e4, 0x3c050001, 0x24a5a60c, 0x3c060001, ! 0x24c6a73c, 0xc53023, 0x8f420008, 0x27b30030, ! 0x2603821, 0x27b10034, 0x34420e00, 0xaf420008, ! 0xc00188f, 0xafb10010, 0x3c040001, 0x248473fc, ! 0x3c050001, 0x24a5e800, 0x3c060001, 0x24c6f574, ! 0xc53023, 0x2603821, 0xaf42010c, 0xc00188f, ! 0xafb10010, 0x3c040001, 0x24847414, 0x3c050001, ! 0x24a5fd60, 0x3c060001, 0x24c60500, 0xc53023, ! 0x2603821, 0x3c010002, 0xac228660, 0xc00188f, ! 0xafb10010, 0x3c040001, 0x2484742c, 0x10000027, ! 0x24052100, 0x3c040001, 0x24847434, 0x3c050001, ! 0x24a5a444, 0x3c060001, 0x24c6a604, 0xc53023, ! 0x27b10030, 0x2203821, 0x27b30034, 0xc00188f, ! 0xafb30010, 0x3c040001, 0x24847444, 0x3c050001, ! 0x24a5d738, 0x3c060001, 0x24c6e7f8, 0xc53023, ! 0x2203821, 0xaf42010c, 0xc00188f, 0xafb30010, ! 0x3c040001, 0x24847454, 0x3c050001, 0x24a5fb24, ! 0x3c060001, 0x24c6fd58, 0xc53023, 0x2203821, ! 0x3c010002, 0xac228660, 0xc00188f, 0xafb30010, ! 0x3c040001, 0x24847468, 0x24052150, 0x2c03021, ! 0x3821, 0x3c010002, 0xac22866c, 0xafa00010, ! 0xc002d3b, 0xafa00014, 0x3c110fff, 0x3c030002, ! 0x8c638660, 0x3631ffff, 0x2409821, 0x3c020002, ! 0x8c42866c, 0x3c0e0800, 0x711824, 0x31882, ! 0x6e1825, 0x511024, 0x21082, 0x4e1025, ! 0xae630038, 0xae620078, 0x8c020218, 0x30420040, ! 0x14400004, 0x24020001, 0x3c010001, 0x370821, ! 0xa02240f4, 0x3c040001, 0x24847474, 0x3c050001, ! 0x24a5f57c, 0x3c060001, 0x24c6f73c, 0xc53023, ! 0x27be0030, 0x3c03821, 0x27b50034, 0xc00188f, ! 0xafb50010, 0x3c010002, 0xac228658, 0x511024, ! 0x21082, 0x3c0e0800, 0x4e1025, 0xae620050, ! 0x32c22000, 0x10400006, 0x3c03821, 0x3c020000, ! 0x24425f64, 0x2221024, 0x1000000f, 0x21082, ! 0x3c040001, 0x24847488, 0x3c050001, 0x24a5f744, ! 0x3c060001, 0x24c6f958, 0xc53023, 0xc00188f, ! 0xafb50010, 0x3c010002, 0xac228670, 0x511024, ! 0x21082, 0x3c0e0800, 0x4e1025, 0xae620048, ! 0x32c24000, 0x10400005, 0x27a70030, 0x3c020000, ! 0x24425f64, 0x1000000e, 0x21100, 0x3c040001, ! 0x248474a0, 0x3c050001, 0x24a5f960, 0x3c060001, ! 0x24c6fb1c, 0xc53023, 0x27a20034, 0xc00188f, ! 0xafa20010, 0x3c010002, 0xac228664, 0x21100, ! 0x21182, 0x3c030800, 0x431025, 0xae420060, ! 0x3c040001, 0x248474b8, 0x3c050001, 0x24a5866c, ! 0x3c060001, 0x24c68aac, 0xc53023, 0x27b10030, ! 0x2203821, 0x27b30034, 0xc00188f, 0xafb30010, ! 0x3c0e0fff, 0x35ceffff, 0x3c040001, 0x248474c4, ! 0x3c050000, 0x24a5687c, 0x3c060000, 0x24c6699c, ! 0xc53023, 0x2203821, 0x240f021, 0x3c010002, ! 0xac228638, 0x4e1024, 0x21082, 0x3c150800, ! 0x551025, 0xafae0044, 0xafc200b8, 0xc00188f, ! 0xafb30010, 0x3c040001, 0x248474d0, 0x3c050000, ! 0x24a569a4, 0x3c060000, 0x24c66c24, 0x8fae0044, ! 0xc53023, 0x2203821, 0x3c010002, 0xac22862c, ! 0x4e1024, 0x21082, 0x551025, 0xafc200e8, ! 0xc00188f, 0xafb30010, 0x3c040001, 0x248474e8, ! 0x3c050000, 0x24a56c2c, 0x3c060000, 0x24c66d60, ! 0x8fae0044, 0xc53023, 0x2203821, 0x3c010002, ! 0xac228624, 0x4e1024, 0x21082, 0x551025, ! 0xafc200c0, 0xc00188f, 0xafb30010, 0x3c040001, ! 0x24847500, 0x3c050001, 0x24a50fac, 0x3c060001, ! 0x24c61084, 0x8fae0044, 0xc53023, 0x2203821, ! 0x3c010002, 0xac228630, 0x4e1024, 0x21082, ! 0x551025, 0xafc200c8, 0xc00188f, 0xafb30010, ! 0x3c040001, 0x2484750c, 0x3c050001, 0x24a5d570, ! 0x3c060001, 0x24c6d654, 0xc53023, 0x2203821, ! 0xaf420110, 0xc00188f, 0xafb30010, 0x3c040001, ! 0x2484751c, 0x3c050001, 0x24a5d544, 0x3c060001, ! 0x24c6d568, 0xc53023, 0x2203821, 0xaf420124, ! 0xc00188f, 0xafb30010, 0x3c040001, 0x2484752c, ! 0x3c050001, 0x24a5d65c, 0x3c060001, 0x24c6d684, ! 0xc53023, 0x2203821, 0xaf420120, 0xaf420114, ! 0xc00188f, 0xafb30010, 0x3c040001, 0x24847538, ! 0x3c050001, 0x24a506a4, 0x3c060001, 0x24c60b9c, ! 0xc53023, 0x2203821, 0xaf420118, 0xc00188f, ! 0xafb30010, 0x8fae0044, 0x3c010002, 0xac228674, ! 0x4e1024, 0x21082, 0x551025, 0xc0044f9, ! 0xafc200d0, 0xc004142, 0x0, 0xc0028c7, ! 0x0, 0xac000228, 0xac00022c, 0x96e20450, ! 0x2442ffff, 0xaf420038, 0x96e20460, 0xaf420080, ! 0x32c24000, 0x14400003, 0x0, 0x96e20480, ! 0xaf420084, 0x96e70490, 0x50e00001, 0x24070800, ! 0x24e2ffff, 0xaf420088, 0xaf42007c, 0x24020800, ! 0x10e20023, 0x32c24000, 0x10400003, 0x24020400, ! 0x10e2001f, 0x0, 0x3c040001, 0x24847548, 0x96e60490, 0x24052170, 0x2c03821, 0xafa00010, ! 0xc002d3b, 0xafa00014, 0x3c040001, 0x24847250, ! 0x240205f1, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x240e0001, ! 0x3c030001, 0xa3ae003f, 0x431025, 0xaf820140, ! 0x8f430138, 0x8f440138, 0x24020001, 0xa34205c2, ! 0xaf430094, 0xaf440098, 0xafa00010, 0xafa00014, ! 0x8f460080, 0x8f470084, 0x3c040001, 0x24847554, ! 0xc002d3b, 0x24052200, 0xc0025c6, 0x3c110800, ! 0x3c1433d8, 0x3694cb58, 0x3c020800, 0x34420080, ! 0x3c040001, 0x24847560, 0x3c050000, 0x24a55ff8, ! 0x3c060000, 0x24c66014, 0xc53023, 0x27a70030, ! 0xaf820060, 0x2402ffff, 0xaf820064, 0x27a20034, ! 0xc00188f, 0xafa20010, 0x3c010002, 0xac228614, ! 0x21100, 0x21182, 0x511025, 0xc0019e8, ! 0xae420000, 0x8f820240, 0x3c030001, 0x431025, ! 0xaf820240, 0x3c020000, 0x24424034, 0xaf820244, ! 0xaf800240, 0x8f820060, 0x511024, 0x14400005, ! 0x3c030800, 0x8f820060, 0x431024, 0x1040fffd, ! 0x0, 0xc00414f, 0x8821, 0x3c020100, ! 0xafa20020, 0x8f530018, 0x240200ff, 0x56620001, ! 0x26710001, 0x8c020228, 0x1622000e, 0x1330c0, ! 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x3c040001, 0x248471f4, 0x3c050009, ! 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000003f, ! 0x34a50100, 0xd71021, 0x8fa30020, 0x8fa40024, ! 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, ! 0x8f45017c, 0x1021, 0x24070004, 0xafa70010, ! 0xafb10014, 0x8f48000c, 0x24c604c0, 0x2e63021, ! 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, ! 0xa3482b, 0x822021, 0x100f809, 0x892021, ! 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248471fc, 0x3c050009, ! 0xafa20014, 0x8fa60020, 0x1000001c, 0x34a50200, ! 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf510018, ! 0x8f860120, 0x24020010, 0xafa20010, 0xafb10014, ! 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, ! 0x14400010, 0x0, 0x8f420340, 0x24420001, ! 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x24847204, 0x3c050009, ! 0xafa20014, 0x8fa60020, 0x34a50300, 0xc002d3b, ! 0x2603821, 0x8f4202e4, 0x24420001, 0xaf4202e4, ! 0x8f4202e4, 0x93a2003f, 0x1040007d, 0x3c020700, ! 0x34423000, 0xafa20028, 0x8f530018, 0x240200ff, ! 0x12620002, 0x8821, 0x26710001, 0x8c020228, 0x1622000e, 0x1330c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x248471f4, 0x3c050009, 0xafa00014, 0xafa20010, ! 0x8fa60028, 0x1000003f, 0x34a50100, 0xd71021, ! 0x8fa30028, 0x8fa4002c, 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, 0x8f45017c, 0x1021, 0x24070004, 0xafa70010, 0xafb10014, 0x8f48000c, 0x24c604c0, 0x2e63021, 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, 0x822021, 0x100f809, 0x892021, 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248471fc, 0x3c050009, 0xafa20014, 0x8fa60028, 0x1000001c, 0x34a50200, 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf510018, 0x8f860120, 0x24020010, 0xafa20010, 0xafb10014, 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400010, 0x0, 0x8f420340, 0x24420001, 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x24847204, 0x3c050009, 0xafa20014, 0x8fa60028, ! 0x34a50300, 0xc002d3b, 0x2603821, 0x8f4202f0, ! 0x24420001, 0xaf4202f0, 0x8f4202f0, 0x3c040001, ! 0x24847570, 0xafa00010, 0xafa00014, 0x8fa60028, ! 0x24052300, 0xc002d3b, 0x3821, 0x3c040001, ! 0x24847250, 0x24020656, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77258, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x10000004, ! 0x0, 0x8c020264, 0x10400005, 0x0, ! 0x8f8200a0, 0x30420004, 0x1440fffa, 0x0, ! 0x8f820044, 0x34420004, 0xaf820044, 0x8f420308, ! 0x24420001, 0xaf420308, 0x8f420308, 0x8f8200d8, ! 0x8f8300d4, 0x431023, 0x2442ff80, 0xaf420090, ! 0x8f420090, 0x2842ff81, 0x10400006, 0x24020001, ! 0x8f420090, 0x8f430144, 0x431021, 0xaf420090, ! 0x24020001, 0xaf42008c, 0x32c20008, 0x10400006, ! 0x0, 0x8f820214, 0x3c038100, 0x3042ffff, ! 0x431025, 0xaf820214, 0x3c030002, 0x8c638508, ! 0x30620002, 0x10400009, 0x30620001, 0x3c040001, ! 0x2484757c, 0x3c050000, 0x24a57174, 0x3c060000, ! 0x24c675f8, 0x10000012, 0xc53023, 0x10400009, ! 0x0, 0x3c040001, 0x2484758c, 0x3c050000, ! 0x24a57600, 0x3c060000, 0x24c67aa8, 0x10000008, ! 0xc53023, 0x3c040001, 0x2484759c, 0x3c050000, ! 0x24a56d68, 0x3c060000, 0x24c6716c, 0xc53023, ! 0x27a70030, 0x27a20034, 0xc00188f, 0xafa20010, ! 0x3c010002, 0xac228628, 0x3c020002, 0x8c428628, 0x3c030800, 0x21100, 0x21182, 0x431025, 0xae420040, 0x8f8200a0, 0xafa20010, 0x8f8200b0, 0xafa20014, 0x8f86005c, 0x8f87011c, 0x3c040001, ! 0x248475ac, 0x3c010002, 0xac368600, 0x3c010002, ! 0xac2085f0, 0x3c010002, 0xac3c85e8, 0x3c010002, ! 0xac3b8618, 0x3c010002, 0xac37861c, 0x3c010002, ! 0xac3a85fc, 0xc002d3b, 0x24052400, 0x8f820200, 0xafa20010, 0x8f820220, 0xafa20014, 0x8f860044, ! 0x8f870050, 0x3c040001, 0x248475b8, 0xc002d3b, 0x24052500, 0x8f830060, 0x74100b, 0x242000a, 0x200f821, 0x0, 0xd, 0x8fbf0060, 0x8fbe005c, 0x8fb50058, 0x8fb30054, 0x8fb20050, 0x8fb1004c, 0x8fb00048, 0x3e00008, 0x27bd0068, ! 0x27bdffe0, 0x3c040001, 0x248475c4, 0x24052600, 0x3021, 0x3821, 0xafbf0018, 0xafa00010, ! 0xc002d3b, 0xafa00014, 0x3c040001, 0x24847250, ! 0x240206bb, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x3e00008, 0x0, 0x3e00008, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3e00008, 0x0, ! 0x3e00008, 0x0, 0x27bdfde0, 0xafb00218, ! 0x27b00018, 0x3c0200bf, 0x3442ffff, 0x50102b, ! 0x10400015, 0xafbf021c, 0x3c040001, 0x24847250, ! 0x240206df, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x3c04dead, 0x3484beef, ! 0x8f820150, 0x3c03001f, 0x3463ffff, 0xafa40018, ! 0x2028023, 0x2038024, 0x8e020000, 0x1044001e, ! 0x0, 0xafb00010, 0x8e020000, 0xafa20014, ! 0x8f860150, 0x8f870250, 0x3c040001, 0x248475cc, ! 0xc002d3b, 0x24052700, 0x3c040001, 0x24847250, ! 0x240206ed, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77258, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x8fbf021c, 0x8fb00218, ! 0x3e00008, 0x27bd0220, 0x27bdffe0, 0x3c06abba, ! 0x34c6babe, 0xafb00018, 0x3c100004, 0x3c07007f, ! 0x34e7ffff, 0xafbf001c, 0x102840, 0x8e040000, ! 0x8ca30000, 0xaca00000, 0xae060000, 0x8ca20000, ! 0xaca30000, 0x10460005, 0xae040000, 0xa08021, ! 0xf0102b, 0x1040fff5, 0x102840, 0x3c040001, ! 0x248475d8, 0x24052800, 0x2003021, 0x3821, ! 0xafa00010, 0xc002d3b, 0xafa00014, 0x2001021, ! 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, ! 0x8c020224, 0x3047003f, 0x10e00010, 0x803021, ! 0x2821, 0x24030020, 0xe31024, 0x10400002, ! 0x63042, 0xa62821, 0x31842, 0x1460fffb, ! 0xe31024, 0x2402f000, 0xa22824, 0x3402ffff, ! 0x45102b, 0x14400003, 0x3c020001, 0x10000008, ! 0x3c020001, 0x3442ffff, 0x851823, 0x43102b, ! 0x14400003, 0xa01021, 0x3c02fffe, 0x821021, ! 0x3e00008, 0x0, 0x27bdffd0, 0xafb50028, ! 0x8fb50040, 0xafb20020, 0xa09021, 0xafb1001c, ! 0x24c60003, 0xafbf002c, 0xafb30024, 0xafb00018, ! 0x8ea20000, 0x2403fffc, 0xc38024, 0x50102b, ! 0x1440001b, 0xe08821, 0x8e330000, 0xafb00010, ! 0x8ea20000, 0xafa20014, 0x8e270000, 0x24053000, ! 0xc002d3b, 0x2403021, 0x8e230000, 0x702021, ! 0x64102b, 0x10400007, 0x2402821, 0x8ca20000, ! 0xac620000, 0x24630004, 0x64102b, 0x1440fffb, ! 0x24a50004, 0x8ea20000, 0x501023, 0xaea20000, ! 0x8e220000, 0x501021, 0x1000000b, 0xae220000, ! 0x2402002d, 0xa0820000, 0xafb00010, 0x8ea20000, ! 0x2409821, 0xafa20014, 0x8e270000, 0x24053100, ! 0xc002d3b, 0x2603021, 0x2601021, 0x8fbf002c, ! 0x8fb50028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, ! 0x8fb00018, 0x3e00008, 0x27bd0030, 0x27bdffe8, ! 0x3c1cc000, 0x3c05fffe, 0x3c030002, 0x8c6385e0, ! 0x3c040002, 0x8c8485ec, 0x34a5bf08, 0x24021ffc, ! 0x3c010002, 0xac228470, 0x3c0200c0, 0x3c010002, ! 0xac228474, 0x3c020020, 0xafbf0010, 0x3c0100c0, ! 0xac201ffc, 0x431023, 0x441023, 0x245bb000, ! 0x365b821, 0x3c1d0002, 0x8fbd846c, 0x3a0f021, ! 0x3c0400c0, 0x34840200, 0x3c1a00c0, 0x3c0300c0, ! 0x346307c8, 0x24021dfc, 0x3c010002, 0xac228470, ! 0x24021834, 0x3c010002, 0xac248474, 0x3c010002, ! 0xac228470, 0x3c010002, 0xac238474, 0xc0018f9, ! 0x375a0200, 0x8fbf0010, 0x3e00008, 0x27bd0018, ! 0x27bdffc8, 0x3c040001, 0x248475e4, 0x24053200, ! 0x3c020002, 0x8c428470, 0x3c030002, 0x8c638474, ! 0x3021, 0x3603821, 0xafbf0030, 0xafb3002c, ! 0xafb20028, 0xafb10024, 0xafb00020, 0xafa2001c, ! 0xafa30018, 0xafb70010, 0xc002d3b, 0xafba0014, ! 0xc001a1b, 0x0, 0x8f820240, 0x34420004, ! 0xaf820240, 0x24020001, 0xaf420000, 0x3c020001, ! 0x571021, 0x904240f4, 0x10400093, 0x2403fffc, ! 0x3c100001, 0x2610b47b, 0x3c120001, 0x2652b044, ! 0x2121023, 0x438024, 0x8fa3001c, 0x3c040001, ! 0x248475f0, 0x70102b, 0x1440001a, 0x27b30018, ! 0x8fb10018, 0x24053000, 0x2403021, 0xafb00010, ! 0xafa30014, 0xc002d3b, 0x2203821, 0x8fa30018, ! 0x702021, 0x64102b, 0x10400007, 0x2403021, ! 0x8cc20000, 0xac620000, 0x24630004, 0x64102b, ! 0x1440fffb, 0x24c60004, 0x8fa2001c, 0x501023, ! 0xafa2001c, 0x8e620000, 0x501021, 0x1000000a, ! 0xae620000, 0x2408821, 0x24053100, 0xafb00010, ! 0xafa30014, 0x8fa70018, 0x2203021, 0x2402002d, ! 0xc002d3b, 0xa0820000, 0x24070020, 0x8fa3001c, ! 0x3c040001, 0x2484760c, 0x24120020, 0x3c010002, ! 0xac31860c, 0x2c620020, 0x1440001d, 0x27b10018, ! 0x8fb00018, 0x24053000, 0x3c060002, 0x24c686b0, ! 0xafa70010, 0xafa30014, 0xc002d3b, 0x2003821, ! 0x8fa30018, 0x3c040002, 0x248486b0, 0x24650020, ! 0x65102b, 0x10400007, 0x0, 0x8c820000, ! 0xac620000, 0x24630004, 0x65102b, 0x1440fffb, ! 0x24840004, 0x8fa2001c, 0x521023, 0xafa2001c, ! 0x8e220000, 0x521021, 0x1000000b, 0xae220000, ! 0x3c100002, 0x261086b0, 0x24053100, 0xafa70010, ! 0xafa30014, 0x8fa70018, 0x2003021, 0x2402002d, ! 0xc002d3b, 0xa0820000, 0x24070020, 0x3c040001, ! 0x24847620, 0x8fa3001c, 0x24120020, 0x3c010002, ! 0xac308640, 0x2c620020, 0x1440001d, 0x27b10018, ! 0x8fb00018, 0x24053000, 0x3c060002, 0x24c686d0, ! 0xafa70010, 0xafa30014, 0xc002d3b, 0x2003821, ! 0x8fa30018, 0x3c040002, 0x248486d0, 0x24650020, ! 0x65102b, 0x10400007, 0x0, 0x8c820000, ! 0xac620000, 0x24630004, 0x65102b, 0x1440fffb, ! 0x24840004, 0x8fa2001c, 0x521023, 0xafa2001c, ! 0x8e220000, 0x521021, 0x1000000b, 0xae220000, ! 0x3c100002, 0x261086d0, 0x24053100, 0xafa70010, ! 0xafa30014, 0x8fa70018, 0x2003021, 0x2402002d, ! 0xc002d3b, 0xa0820000, 0x3c010002, 0xac30863c, ! 0x10000031, 0x0, 0x3c100001, 0x26108667, ! 0x3c120001, 0x265284d8, 0x2121023, 0x438024, ! 0x8fa3001c, 0x3c040001, 0x24847634, 0x70102b, 0x1440001a, 0x27b30018, 0x8fb10018, 0x24053000, ! 0x2403021, 0xafb00010, 0xafa30014, 0xc002d3b, 0x2203821, 0x8fa30018, 0x702021, 0x64102b, 0x10400007, 0x2403021, 0x8cc20000, 0xac620000, 0x24630004, 0x64102b, 0x1440fffb, 0x24c60004, 0x8fa2001c, 0x501023, 0xafa2001c, 0x8e620000, 0x501021, 0x1000000a, 0xae620000, 0x2408821, 0x24053100, 0xafb00010, 0xafa30014, 0x8fa70018, ! 0x2203021, 0x2402002d, 0xc002d3b, 0xa0820000, ! 0x3c010002, 0xac31860c, 0x3c030002, 0x8c63860c, ! 0x24020400, 0xaf820070, 0x60f809, 0x0, 0x8fbf0030, 0x8fb3002c, 0x8fb20028, 0x8fb10024, ! 0x8fb00020, 0x3e00008, 0x27bd0038, 0x27bdffe0, ! 0xafbf0018, 0x8f820040, 0x3c03f000, 0x431024, ! 0x3c036000, 0x14430008, 0x240201f9, 0x8f820050, ! 0x2403ff80, 0x431024, 0x34420055, 0xaf820050, ! 0x10000014, 0x0, 0x3c040001, 0x248476f4, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77704, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8f820054, 0x244203e8, 0xaf820058, ! 0x240201f4, 0xaf4200e0, 0x24020004, 0xaf4200e8, ! 0x24020002, 0xaf4001b0, 0xaf4000e4, 0xaf4200dc, ! 0xaf4000d8, 0xaf4000d4, 0x8fbf0018, 0xaf4000d0, ! 0x3e00008, 0x27bd0020, 0x8f820054, 0x24420005, ! 0x3e00008, 0xaf820078, 0x27bdffe8, 0xafbf0010, ! 0x8f820054, 0x244203e8, 0xaf820058, 0x3c020800, ! 0x2c21024, 0x10400004, 0x3c02f7ff, 0x3442ffff, ! 0x2c2b024, 0x36940040, 0x3c020002, 0x8c42851c, ! 0x10400017, 0x3c020200, 0x3c030002, 0x8c638678, ! 0x10600016, 0x282a025, 0x3c020002, 0x8c4285a8, ! 0x14400012, 0x3c020200, 0x3c020002, 0x8c428508, ! 0x30420003, 0x1440000d, 0x3c020200, 0x8f830224, ! 0x3c020002, 0x8c42a74c, 0x10620008, 0x3c020200, ! 0xc0042e9, 0x0, 0x10000004, 0x3c020200, ! 0xc0046ec, 0x0, 0x3c020200, 0x2c21024, ! 0x10400003, 0x0, 0xc002058, 0x0, ! 0x8f4200d8, 0x8f4300dc, 0x24420001, 0xaf4200d8, ! 0x43102b, 0x14400003, 0x0, 0xaf4000d8, ! 0x36940080, 0x8c030238, 0x1060000c, 0x0, ! 0x8f4201b0, 0x244203e8, 0xaf4201b0, 0x43102b, ! 0x14400006, 0x0, 0x934205c5, 0x14400003, ! 0x0, 0xc001eac, 0x0, 0x8fbf0010, ! 0x3e00008, 0x27bd0018, 0x3e00008, 0x0, ! 0x27bdffd8, 0xafbf0020, 0x8f43002c, 0x8f420038, ! 0x10620059, 0x0, 0x3c020001, 0x571021, ! 0x904240f0, 0x10400026, 0x24070008, 0x8f440170, ! 0x8f450174, 0x8f48000c, 0x8f860120, 0x24020020, ! 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, ! 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, ! 0x3c010001, 0x370821, 0xa02240f0, 0x8f820124, ! 0xafa20010, 0x8f820128, 0x3c040001, 0x248476d8, ! 0xafa20014, 0x8f46002c, 0x8f870120, 0x3c050009, ! 0xc002d3b, 0x34a50900, 0x1000005d, 0x0, ! 0x8f420300, 0x24420001, 0xaf420300, 0x8f420300, ! 0x8f42002c, 0xa34005c1, 0x10000027, 0xaf420038, ! 0x8f440170, 0x8f450174, 0x8f43002c, 0x8f48000c, ! 0x8f860120, 0x24020080, 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, 0x370821, ! 0xa02240f1, 0x8f820124, 0xafa20010, 0x8f820128, ! 0x3c040001, 0x248476e4, 0xafa20014, 0x8f46002c, ! 0x8f870120, 0x3c050009, 0xc002d3b, 0x34a51100, ! 0x10000037, 0x0, 0x8f420300, 0x8f43002c, ! 0x24420001, 0xaf420300, 0x8f420300, 0x24020001, ! 0xa34205c1, 0xaf430038, 0x3c010001, 0x370821, ! 0xa02040f1, 0x3c010001, 0x370821, 0xa02040f0, ! 0x10000027, 0xaf400034, 0x934205c1, 0x1040001e, ! 0x0, 0xa34005c1, 0x8f820040, 0x30420001, ! 0x14400008, 0x2021, 0x8c030104, 0x24020001, ! 0x50620005, 0x24040001, 0x8c020264, 0x10400003, ! 0x801021, 0x24040001, 0x801021, 0x10400007, ! 0x0, 0x8f42030c, 0x24420001, 0xaf42030c, ! 0x8f42030c, 0x10000008, 0x0, 0x8f820044, ! 0x34420004, 0xaf820044, 0x8f420308, 0x24420001, ! 0xaf420308, 0x8f420308, 0x3c010001, 0x370821, ! 0xa02040f0, 0x3c010001, 0x370821, 0xa02040f1, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x3c03ff7f, 0x3463ffff, ! 0x431024, 0xaf820060, 0x8f420000, 0x10400004, ! 0x0, 0xaf80004c, 0x10000002, 0x0, ! 0xaf800048, 0x8fbf0020, 0x3e00008, 0x27bd0028, ! 0x3e00008, 0x0, 0x27bdffd8, 0xafbf0020, ! 0x8f430044, 0x8f42007c, 0x10620029, 0x24070008, ! 0x8f440168, 0x8f45016c, 0x8f48000c, 0x8f860120, ! 0x24020040, 0xafa20010, 0xafa30014, 0xafa80018, ! 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, ! 0x24020001, 0x3c010001, 0x370821, 0xa02240f2, ! 0x8f820124, 0xafa20010, 0x8f820128, 0x3c040001, ! 0x248476ec, 0xafa20014, 0x8f460044, 0x8f870120, ! 0x3c050009, 0xc002d3b, 0x34a51300, 0x1000000f, ! 0x0, 0x8f420304, 0x24420001, 0xaf420304, ! 0x8f420304, 0x8f420044, 0xaf42007c, 0x3c010001, ! 0x370821, 0xa02040f2, 0x10000004, 0xaf400078, ! 0x3c010001, 0x370821, 0xa02040f2, 0x8f420000, ! 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, ! 0x1040fffd, 0x0, 0x10000005, 0x0, ! 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, ! 0x8f820060, 0x3c03feff, 0x3463ffff, 0x431024, ! 0xaf820060, 0x8f420000, 0x10400004, 0x0, ! 0xaf80004c, 0x10000002, 0x0, 0xaf800048, 0x8fbf0020, 0x3e00008, 0x27bd0028, 0x3e00008, ! 0x0, 0x3c020002, 0x8c42851c, 0x27bdffa8, 0xafbf0050, 0xafbe004c, 0xafb50048, 0xafb30044, ! 0xafb20040, 0xafb1003c, 0xafb00038, 0x8f900044, ! 0x104000d5, 0x0, 0x8f4200d0, 0x24430001, ! 0x2842000b, 0x144000e4, 0xaf4300d0, 0x8f420004, ! 0x30420002, 0x1440009c, 0xaf4000d0, 0x8f420004, ! 0x3c030002, 0x8c63850c, 0x34420002, 0xaf420004, ! 0x24020001, 0x14620003, 0x3c020600, 0x10000002, ! 0x34423000, 0x34421000, 0xafa20020, 0x8f4a0018, ! 0xafaa0034, 0x27aa0020, 0xafaa002c, 0x8faa0034, ! 0x240200ff, 0x11420002, 0x1821, 0x25430001, ! 0x8c020228, 0x609821, 0x1662000e, 0x3c050009, ! 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x8fa70034, 0x3c040001, 0x248476bc, ! 0xafa00014, 0xafa20010, 0x8fa60020, 0x10000070, ! 0x34a50500, 0x8faa0034, 0xa38c0, 0xf71021, ! 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, ! 0x8f830054, 0x8f820054, 0x247103e8, 0x2221023, ! 0x2c4203e9, 0x1040001b, 0xa821, 0xe09021, ! 0x265e04c0, 0x8f440178, 0x8f45017c, 0x2401821, ! 0x240a0004, 0xafaa0010, 0xafb30014, 0x8f48000c, ! 0x1021, 0x2fe3021, 0xafa80018, 0x8f48010c, ! 0x24070008, 0xa32821, 0xa3482b, 0x822021, ! 0x100f809, 0x892021, 0x54400006, 0x24150001, ! 0x8f820054, 0x2221023, 0x2c4203e9, 0x1440ffe9, ! 0x0, 0x32a200ff, 0x54400018, 0xaf530018, ! 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, ! 0x8f820120, 0x8faa002c, 0x8fa70034, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248476c8, 0xafa20014, ! 0x8d460000, 0x3c050009, 0x10000035, 0x34a50600, ! 0x8f420308, 0x24150001, 0x24420001, 0xaf420308, ! 0x8f420308, 0x1000001e, 0x32a200ff, 0x8f830054, ! 0x8f820054, 0x247103e8, 0x2221023, 0x2c4203e9, ! 0x10400016, 0xa821, 0x3c1e0020, 0x24120010, ! 0x8f42000c, 0x8f440160, 0x8f450164, 0x8f860120, ! 0xafb20010, 0xafb30014, 0x5e1025, 0xafa20018, ! 0x8f42010c, 0x24070008, 0x40f809, 0x24c6001c, ! 0x1440ffe3, 0x0, 0x8f820054, 0x2221023, ! 0x2c4203e9, 0x1440ffee, 0x0, 0x32a200ff, ! 0x14400011, 0x3c050009, 0x8f420378, 0x24420001, ! 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, ! 0x8fa70034, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248476d0, 0xafa20014, 0x8d460000, 0x34a50700, ! 0xc002d3b, 0x0, 0x8f4202ec, 0x24420001, ! 0xaf4202ec, 0x8f4202ec, 0x8f420004, 0x30420001, ! 0x50400029, 0x36100040, 0x3c020400, 0x2c21024, ! 0x10400013, 0x2404ffdf, 0x8f420250, 0x8f430254, ! 0x8f4401b4, 0x14640006, 0x36100040, 0x8f420270, ! 0x8f430274, 0x8f4401b8, 0x10640007, 0x2402ffdf, ! 0x8f420250, 0x8f430254, 0x8f440270, 0x8f450274, ! 0x10000012, 0x3a100020, 0x1000002b, 0x2028024, ! 0x8f420250, 0x8f430254, 0x8f4501b4, 0x14650006, ! 0x2048024, 0x8f420270, 0x8f430274, 0x8f4401b8, ! 0x50640021, 0x36100040, 0x8f420250, 0x8f430254, ! 0x8f440270, 0x8f450274, 0x3a100040, 0xaf4301b4, ! 0x10000019, 0xaf4501b8, 0x8f4200d4, 0x24430001, ! 0x10000011, 0x28420033, 0x8f420004, 0x30420001, ! 0x10400009, 0x3c020400, 0x2c21024, 0x10400004, ! 0x2402ffdf, 0x2028024, 0x1000000b, 0x36100040, ! 0x10000009, 0x36100060, 0x8f4200d4, 0x36100040, ! 0x24430001, 0x284201f5, 0x14400003, 0xaf4300d4, ! 0xaf4000d4, 0x3a100020, 0xaf900044, 0x2402ff7f, ! 0x282a024, 0x8fbf0050, 0x8fbe004c, 0x8fb50048, ! 0x8fb30044, 0x8fb20040, 0x8fb1003c, 0x8fb00038, ! 0x3e00008, 0x27bd0058, 0x3e00008, 0x0, ! 0x3c020002, 0x8c42851c, 0x27bdffb0, 0xafbf0048, ! 0xafbe0044, 0xafb50040, 0xafb3003c, 0xafb20038, ! 0xafb10034, 0x104000c9, 0xafb00030, 0x8f4200d0, ! 0x24430001, 0x2842000b, 0x144000dd, 0xaf4300d0, ! 0x8f420004, 0x30420002, 0x14400097, 0xaf4000d0, ! 0x8f420004, 0x3c030002, 0x8c63850c, 0x34420002, ! 0xaf420004, 0x24020001, 0x14620003, 0x3c020600, ! 0x10000002, 0x34423000, 0x34421000, 0xafa20020, ! 0x1821, 0x8f5e0018, 0x27aa0020, 0x240200ff, ! 0x13c20002, 0xafaa002c, 0x27c30001, 0x8c020228, ! 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, ! 0x3c040001, 0x248476bc, 0x3c050009, 0xafa00014, ! 0xafa20010, 0x8fa60020, 0x1000006d, 0x34a50500, ! 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, ! 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, ! 0x2021023, 0x2c4203e9, 0x1040001b, 0x9821, ! 0xe08821, 0x263504c0, 0x8f440178, 0x8f45017c, ! 0x2201821, 0x240a0004, 0xafaa0010, 0xafb20014, ! 0x8f48000c, 0x1021, 0x2f53021, 0xafa80018, ! 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, ! 0x822021, 0x100f809, 0x892021, 0x54400006, ! 0x24130001, 0x8f820054, 0x2021023, 0x2c4203e9, ! 0x1440ffe9, 0x0, 0x326200ff, 0x54400017, ! 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, ! 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248476c8, 0x3c050009, ! 0xafa20014, 0x8d460000, 0x10000035, 0x34a50600, ! 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, ! 0x8f420308, 0x1000001e, 0x326200ff, 0x8f830054, ! 0x8f820054, 0x247003e8, 0x2021023, 0x2c4203e9, ! 0x10400016, 0x9821, 0x3c150020, 0x24110010, ! 0x8f42000c, 0x8f440160, 0x8f450164, 0x8f860120, ! 0xafb10010, 0xafb20014, 0x551025, 0xafa20018, ! 0x8f42010c, 0x24070008, 0x40f809, 0x24c6001c, ! 0x1440ffe3, 0x0, 0x8f820054, 0x2021023, ! 0x2c4203e9, 0x1440ffee, 0x0, 0x326200ff, ! 0x14400011, 0x0, 0x8f420378, 0x24420001, ! 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x248476d0, ! 0x3c050009, 0xafa20014, 0x8d460000, 0x34a50700, ! 0xc002d3b, 0x3c03821, 0x8f4202ec, 0x24420001, ! 0xaf4202ec, 0x8f4202ec, 0x8f420004, 0x30420001, ! 0x1040001a, 0x24040001, 0x8f420250, 0x8f430254, ! 0x8f4501b4, 0x3c010002, 0xa0248489, 0x14650006, ! 0x0, 0x8f420270, 0x8f430274, 0x8f4401b8, ! 0x10640022, 0x0, 0x8f420250, 0x8f430254, ! 0x3c040002, 0x90848488, 0x8f460270, 0x8f470274, ! 0x38840001, 0xaf4301b4, 0xaf4701b8, 0x3c010002, ! 0xa0248488, 0x10000026, 0x0, 0x8f4200d4, ! 0x3c010002, 0xa0208488, 0x24430001, 0x28420033, ! 0x1440001f, 0xaf4300d4, 0x3c020002, 0x90428489, ! 0xaf4000d4, 0x10000018, 0x38420001, 0x8f420004, ! 0x30420001, 0x10400009, 0x0, 0xc005c45, ! 0x2021, 0x3c010002, 0xa0208489, 0x3c010002, ! 0xa0208488, 0x1000000e, 0x0, 0x8f4200d4, ! 0x3c010002, 0xa0208488, 0x24430001, 0x284201f5, ! 0x14400007, 0xaf4300d4, 0x3c020002, 0x90428489, ! 0xaf4000d4, 0x421026, 0x3c010002, 0xa0228489, ! 0x3c030002, 0x8c63850c, 0x24020002, 0x1462000c, ! 0x3c030002, 0x3c030002, 0x90638489, 0x24020001, ! 0x5462001f, 0x2021, 0x3c020002, 0x90428488, ! 0x1443001b, 0x24040005, 0x10000019, 0x24040006, ! 0x3c020002, 0x8c42a754, 0x431024, 0x1040000b, ! 0x24020001, 0x3c030002, 0x90638489, 0x54620010, ! 0x2021, 0x3c020002, 0x90428488, 0x1443000c, ! 0x24040003, 0x1000000a, 0x24040004, 0x3c030002, ! 0x90638489, 0x14620006, 0x2021, 0x3c020002, ! 0x90428488, 0x24040001, 0x50440001, 0x24040002, ! 0xc005c45, 0x0, 0x2402ff7f, 0x282a024, ! 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, ! 0x8fb20038, 0x8fb10034, 0x8fb00030, 0x3e00008, ! 0x27bd0050, 0x3e00008, 0x0, 0x3c020002, ! 0x8c42851c, 0x27bdffb0, 0xafbf0048, 0xafbe0044, 0xafb50040, 0xafb3003c, 0xafb20038, 0xafb10034, ! 0x104000de, 0xafb00030, 0x8f4200d0, 0x3c040002, ! 0x8c84850c, 0x24430001, 0x2842000b, 0xaf4400e8, 0x144000fe, 0xaf4300d0, 0x8f420004, 0x30420002, 0x14400095, 0xaf4000d0, 0x8f420004, 0x34420002, 0xaf420004, 0x24020001, 0x14820003, 0x3c020600, *************** *** 755,761 **** 0x13c20002, 0xafaa002c, 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, ! 0x3c040001, 0x2484389c, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006d, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, --- 895,901 ---- 0x13c20002, 0xafaa002c, 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, ! 0x3c040001, 0x248476bc, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006d, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, *************** *** 769,775 **** 0x1440ffe9, 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248438a8, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000035, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001e, 0x326200ff, 0x8f830054, --- 909,915 ---- 0x1440ffe9, 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248476c8, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000035, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001e, 0x326200ff, 0x8f830054, *************** *** 782,790 **** 0x2c4203e9, 0x1440ffee, 0x0, 0x326200ff, 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x248438b0, 0x3c050009, 0xafa20014, 0x8d460000, 0x34a50700, ! 0xc002a0b, 0x3c03821, 0x8f4202ec, 0x24420001, 0xaf4202ec, 0x8f4202ec, 0x8f420004, 0x30420001, 0x10400033, 0x3c020400, 0x2c21024, 0x10400017, 0x0, 0x934205c0, 0x8f440250, 0x8f450254, --- 922,930 ---- 0x2c4203e9, 0x1440ffee, 0x0, 0x326200ff, 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x248476d0, 0x3c050009, 0xafa20014, 0x8d460000, 0x34a50700, ! 0xc002d3b, 0x3c03821, 0x8f4202ec, 0x24420001, 0xaf4202ec, 0x8f4202ec, 0x8f420004, 0x30420001, 0x10400033, 0x3c020400, 0x2c21024, 0x10400017, 0x0, 0x934205c0, 0x8f440250, 0x8f450254, *************** *** 814,820 **** 0x8f4300e8, 0x3042007f, 0xa34205c0, 0x24020001, 0x14620005, 0x0, 0x934405c0, 0x42102, 0x10000003, 0x348400f0, 0x934405c0, 0x3484000f, ! 0xc004c50, 0x0, 0x2402ff7f, 0x282a024, 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, 0x8fb20038, 0x8fb10034, 0x8fb00030, 0x3e00008, 0x27bd0050, 0x3e00008, 0x0, 0x27bdffb0, --- 954,960 ---- 0x8f4300e8, 0x3042007f, 0xa34205c0, 0x24020001, 0x14620005, 0x0, 0x934405c0, 0x42102, 0x10000003, 0x348400f0, 0x934405c0, 0x3484000f, ! 0xc005c2b, 0x0, 0x2402ff7f, 0x282a024, 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, 0x8fb20038, 0x8fb10034, 0x8fb00030, 0x3e00008, 0x27bd0050, 0x3e00008, 0x0, 0x27bdffb0, *************** *** 861,873 **** 0xa32825, 0x24020008, 0xaee400c8, 0xaee500cc, 0xafa20010, 0xafa00014, 0x8f42000c, 0x8c040208, 0x8c05020c, 0xafa20018, 0x8f42010c, 0x26e60028, ! 0x40f809, 0x24070400, 0x104000f0, 0x3c020400, 0xafa20020, 0x934205c6, 0x10400089, 0x1821, 0x8f5e0018, 0x27aa0020, 0x240200ff, 0x13c20002, 0xafaa002c, 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x2484389c, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006b, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, --- 1001,1013 ---- 0xa32825, 0x24020008, 0xaee400c8, 0xaee500cc, 0xafa20010, 0xafa00014, 0x8f42000c, 0x8c040208, 0x8c05020c, 0xafa20018, 0x8f42010c, 0x26e60028, ! 0x40f809, 0x24070400, 0x104000f1, 0x3c020400, 0xafa20020, 0x934205c6, 0x10400089, 0x1821, 0x8f5e0018, 0x27aa0020, 0x240200ff, 0x13c20002, 0xafaa002c, 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x248476bc, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006b, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, *************** *** 881,887 **** 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x248438a8, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000033, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001c, 0x326200ff, 0x8f830054, 0x8f820054, --- 1021,1027 ---- 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x248476c8, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000033, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001c, 0x326200ff, 0x8f830054, 0x8f820054, *************** *** 894,906 **** 0x326200ff, 0x54400012, 0x24020001, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248438b0, 0x3c050009, 0xafa20014, 0x8d460000, ! 0x34a50700, 0xc002a0b, 0x3c03821, 0x1021, ! 0x1440005b, 0x24020001, 0x10000065, 0x0, 0x8f510018, 0x240200ff, 0x12220002, 0x8021, 0x26300001, 0x8c020228, 0x1602000e, 0x1130c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x3c040001, 0x24843884, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000003f, 0x34a50100, 0xd71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, --- 1034,1046 ---- 0x326200ff, 0x54400012, 0x24020001, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248476d0, 0x3c050009, 0xafa20014, 0x8d460000, ! 0x34a50700, 0xc002d3b, 0x3c03821, 0x1021, ! 0x1440005b, 0x24020001, 0x10000066, 0x0, 0x8f510018, 0x240200ff, 0x12220002, 0x8021, 0x26300001, 0x8c020228, 0x1602000e, 0x1130c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x3c040001, 0x248476a4, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000003f, 0x34a50100, 0xd71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, *************** *** 909,994 **** 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, 0x822021, 0x100f809, 0x892021, 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x2484388c, 0x3c050009, 0xafa20014, 0x8fa60020, 0x1000001c, 0x34a50200, 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf500018, 0x8f860120, 0x24020010, 0xafa20010, 0xafb00014, 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x54400011, 0x24020001, 0x8f420340, 0x24420001, 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x24843894, 0x3c050009, ! 0xafa20014, 0x8fa60020, 0x34a50300, 0xc002a0b, ! 0x2203821, 0x1021, 0x1040000d, 0x24020001, 0x8f4202e8, 0xa34005c6, 0xaf4001b0, 0x24420001, 0xaf4202e8, 0x8f4202e8, 0x8ee20150, 0x24420001, ! 0xaee20150, 0x10000003, 0x8ee20150, 0x24020001, ! 0xa34205c6, 0x8fbf0048, 0x8fbe0044, 0x8fb50040, ! 0x8fb3003c, 0x8fb20038, 0x8fb10034, 0x8fb00030, ! 0x3e00008, 0x27bd0050, 0x27bdffd8, 0xafbf0020, ! 0x8f8200b0, 0x30420004, 0x10400068, 0x0, 0x8f430128, 0x8f820104, 0x14620005, 0x0, ! 0x8f430130, 0x8f8200b4, 0x10620006, 0x0, ! 0x8f820104, 0xaf420128, 0x8f8200b4, 0x1000005b, ! 0xaf420130, 0x8f8200b0, 0x3c030080, 0x431024, ! 0x1040000d, 0x0, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f8200b0, 0x2403fffb, 0x431024, ! 0xaf8200b0, 0x8f82011c, 0x2403fffd, 0x431024, ! 0x1000004a, 0xaf82011c, 0x8f430128, 0x8f820104, ! 0x14620005, 0x0, 0x8f430130, 0x8f8200b4, ! 0x10620010, 0x0, 0x8f820104, 0xaf420128, ! 0x8f8200b4, 0x8f430128, 0xaf420130, 0xafa30010, ! 0x8f420130, 0x3c040001, 0x248438d4, 0xafa20014, ! 0x8f86011c, 0x8f8700b0, 0x3c050005, 0x10000031, ! 0x34a50900, 0x8f420128, 0xafa20010, 0x8f420130, ! 0x3c040001, 0x248438e0, 0xafa20014, 0x8f86011c, ! 0x8f8700b0, 0x3c050005, 0xc002a0b, 0x34a51000, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f830104, ! 0x8f8200b0, 0x34420001, 0xaf8200b0, 0x24020008, ! 0xaf830104, 0xafa20010, 0xafa00014, 0x8f42000c, ! 0x8c040208, 0x8c05020c, 0xafa20018, 0x8f42010c, ! 0x26e60028, 0x40f809, 0x24070400, 0x8f82011c, ! 0x2403fffd, 0x431024, 0xaf82011c, 0x8ee201dc, ! 0x24420001, 0xaee201dc, 0x8ee201dc, 0x8f420128, ! 0xafa20010, 0x8f420130, 0x3c040001, 0x248438ec, 0xafa20014, 0x8f86011c, 0x8f8700b0, 0x3c050005, ! 0x34a51100, 0xc002a0b, 0x0, 0x8f8200a0, ! 0x30420004, 0x10400069, 0x0, 0x8f43012c, ! 0x8f820124, 0x14620005, 0x0, 0x8f430134, ! 0x8f8200a4, 0x10620006, 0x0, 0x8f820124, ! 0xaf42012c, 0x8f8200a4, 0x1000005c, 0xaf420134, ! 0x8f8200a0, 0x3c030080, 0x431024, 0x1040000d, ! 0x0, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f8200a0, 0x2403fffb, 0x431024, 0xaf8200a0, ! 0x8f82011c, 0x2403fffd, 0x431024, 0x1000004b, ! 0xaf82011c, 0x8f43012c, 0x8f820124, 0x14620005, ! 0x0, 0x8f430134, 0x8f8200a4, 0x10620010, 0x0, 0x8f820124, 0xaf42012c, 0x8f8200a4, ! 0x8f43012c, 0xaf420134, 0xafa30010, 0x8f420134, ! 0x3c040001, 0x248438f8, 0xafa20014, 0x8f86011c, ! 0x8f8700a0, 0x3c050005, 0x10000032, 0x34a51200, ! 0x8f42012c, 0xafa20010, 0x8f420134, 0x3c040001, ! 0x24843904, 0xafa20014, 0x8f86011c, 0x8f8700a0, ! 0x3c050005, 0xc002a0b, 0x34a51300, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f830124, 0x8f8200a0, ! 0x34420001, 0xaf8200a0, 0x24020080, 0xaf830124, ! 0xafa20010, 0xafa00014, 0x8f420014, 0x8c040208, ! 0x8c05020c, 0xafa20018, 0x8f420108, 0x3c060001, ! 0x24c64538, 0x40f809, 0x24070004, 0x8f82011c, ! 0x2403fffd, 0x431024, 0xaf82011c, 0x8ee201dc, ! 0x24420001, 0xaee201dc, 0x8ee201dc, 0x8f42012c, ! 0xafa20010, 0x8f420134, 0x3c040001, 0x24843910, 0xafa20014, 0x8f86011c, 0x8f8700a0, 0x3c050005, ! 0x34a51400, 0xc002a0b, 0x0, 0x8fbf0020, ! 0x3e00008, 0x27bd0028, 0x3c081000, 0x24070001, ! 0x3c060080, 0x3c050100, 0x8f820070, 0x481024, ! 0x1040fffd, 0x0, 0x8f820054, 0x24420005, ! 0xaf820078, 0x8c040234, 0x10800016, 0x1821, ! 0x3c020001, 0x571021, 0x8c4240e8, 0x24420005, ! 0x3c010001, 0x370821, 0xac2240e8, 0x3c020001, ! 0x571021, 0x8c4240e8, 0x44102b, 0x14400009, ! 0x0, 0x3c030080, 0x3c010001, 0x370821, ! 0xac2040e8, 0x3c010001, 0x370821, 0x1000000b, ! 0xa02740f0, 0x3c020001, 0x571021, 0x904240f0, 0x54400006, 0x661825, 0x3c020001, 0x571021, 0x904240f1, 0x54400001, 0x661825, 0x8c040230, 0x10800013, 0x0, 0x3c020001, 0x571021, --- 1049,1135 ---- 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, 0x822021, 0x100f809, 0x892021, 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248476ac, 0x3c050009, 0xafa20014, 0x8fa60020, 0x1000001c, 0x34a50200, 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf500018, 0x8f860120, 0x24020010, 0xafa20010, 0xafb00014, 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x54400011, 0x24020001, 0x8f420340, 0x24420001, 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248476b4, 0x3c050009, ! 0xafa20014, 0x8fa60020, 0x34a50300, 0xc002d3b, ! 0x2203821, 0x1021, 0x1040000e, 0x24020001, 0x8f4202e8, 0xa34005c6, 0xaf4001b0, 0x24420001, 0xaf4202e8, 0x8f4202e8, 0x8ee20150, 0x24420001, ! 0xaee20150, 0x8ee20150, 0x10000003, 0x0, ! 0x24020001, 0xa34205c6, 0x8fbf0048, 0x8fbe0044, ! 0x8fb50040, 0x8fb3003c, 0x8fb20038, 0x8fb10034, ! 0x8fb00030, 0x3e00008, 0x27bd0050, 0x27bdffd8, ! 0xafbf0020, 0x8f8200b0, 0x30420004, 0x10400069, ! 0x0, 0x8f430128, 0x8f820104, 0x14620005, ! 0x0, 0x8f430130, 0x8f8200b4, 0x10620006, ! 0x0, 0x8f820104, 0xaf420128, 0x8f8200b4, ! 0x1000005c, 0xaf420130, 0x8f8200b0, 0x3c030080, ! 0x431024, 0x1040000e, 0x0, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f8200b0, 0x2403fffb, ! 0x431024, 0xaf8200b0, 0x8f82011c, 0x2403fffd, ! 0x431024, 0xaf82011c, 0x1000004a, 0x0, 0x8f430128, 0x8f820104, 0x14620005, 0x0, ! 0x8f430130, 0x8f8200b4, 0x10620010, 0x0, ! 0x8f820104, 0xaf420128, 0x8f8200b4, 0x8f430128, ! 0xaf420130, 0xafa30010, 0x8f420130, 0x3c040001, ! 0x2484770c, 0xafa20014, 0x8f86011c, 0x8f8700b0, ! 0x3c050005, 0x10000031, 0x34a50900, 0x8f420128, ! 0xafa20010, 0x8f420130, 0x3c040001, 0x24847718, 0xafa20014, 0x8f86011c, 0x8f8700b0, 0x3c050005, ! 0xc002d3b, 0x34a51000, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f830104, 0x8f8200b0, 0x34420001, ! 0xaf8200b0, 0x24020008, 0xaf830104, 0xafa20010, ! 0xafa00014, 0x8f42000c, 0x8c040208, 0x8c05020c, ! 0xafa20018, 0x8f42010c, 0x26e60028, 0x40f809, ! 0x24070400, 0x8f82011c, 0x2403fffd, 0x431024, ! 0xaf82011c, 0x8ee201dc, 0x24420001, 0xaee201dc, ! 0x8ee201dc, 0x8f420128, 0xafa20010, 0x8f420130, ! 0x3c040001, 0x24847724, 0xafa20014, 0x8f86011c, ! 0x8f8700b0, 0x3c050005, 0x34a51100, 0xc002d3b, ! 0x0, 0x8f8200a0, 0x30420004, 0x1040006a, ! 0x0, 0x8f43012c, 0x8f820124, 0x14620005, ! 0x0, 0x8f430134, 0x8f8200a4, 0x10620006, 0x0, 0x8f820124, 0xaf42012c, 0x8f8200a4, ! 0x1000005d, 0xaf420134, 0x8f8200a0, 0x3c030080, ! 0x431024, 0x1040000e, 0x0, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f8200a0, 0x2403fffb, ! 0x431024, 0xaf8200a0, 0x8f82011c, 0x2403fffd, ! 0x431024, 0xaf82011c, 0x1000004b, 0x0, ! 0x8f43012c, 0x8f820124, 0x14620005, 0x0, ! 0x8f430134, 0x8f8200a4, 0x10620010, 0x0, ! 0x8f820124, 0xaf42012c, 0x8f8200a4, 0x8f43012c, ! 0xaf420134, 0xafa30010, 0x8f420134, 0x3c040001, ! 0x24847730, 0xafa20014, 0x8f86011c, 0x8f8700a0, ! 0x3c050005, 0x10000032, 0x34a51200, 0x8f42012c, ! 0xafa20010, 0x8f420134, 0x3c040001, 0x2484773c, 0xafa20014, 0x8f86011c, 0x8f8700a0, 0x3c050005, ! 0xc002d3b, 0x34a51300, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f830124, 0x8f8200a0, 0x34420001, ! 0xaf8200a0, 0x24020080, 0xaf830124, 0xafa20010, ! 0xafa00014, 0x8f420014, 0x8c040208, 0x8c05020c, ! 0xafa20018, 0x8f420108, 0x3c060002, 0x24c68634, ! 0x40f809, 0x24070004, 0x8f82011c, 0x2403fffd, ! 0x431024, 0xaf82011c, 0x8ee201dc, 0x24420001, ! 0xaee201dc, 0x8ee201dc, 0x8f42012c, 0xafa20010, ! 0x8f420134, 0x3c040001, 0x24847748, 0xafa20014, ! 0x8f86011c, 0x8f8700a0, 0x3c050005, 0x34a51400, ! 0xc002d3b, 0x0, 0x8fbf0020, 0x3e00008, ! 0x27bd0028, 0x3c081000, 0x24070001, 0x3c060080, ! 0x3c050100, 0x8f820070, 0x481024, 0x1040fffd, ! 0x0, 0x8f820054, 0x24420005, 0xaf820078, ! 0x8c040234, 0x10800017, 0x1821, 0x3c020001, ! 0x571021, 0x8c4240e8, 0x24420005, 0x3c010001, ! 0x370821, 0xac2240e8, 0x3c020001, 0x571021, ! 0x8c4240e8, 0x44102b, 0x1440000a, 0x0, ! 0x3c030080, 0x3c010001, 0x370821, 0xac2040e8, ! 0x3c010001, 0x370821, 0xa02740f0, 0x1000000b, ! 0x0, 0x3c020001, 0x571021, 0x904240f0, 0x54400006, 0x661825, 0x3c020001, 0x571021, 0x904240f1, 0x54400001, 0x661825, 0x8c040230, 0x10800013, 0x0, 0x3c020001, 0x571021, *************** *** 997,1020 **** 0x44102b, 0x14400006, 0x0, 0x3c010001, 0x370821, 0xac2040ec, 0x10000006, 0x651825, 0x3c020001, 0x571021, 0x904240f2, 0x54400001, ! 0x651825, 0x1060ffbc, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x431025, 0xaf820060, 0x8f420000, ! 0x10400003, 0x0, 0x1000ffa7, 0xaf80004c, ! 0x1000ffa5, 0xaf800048, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x27bdffe0, ! 0xafbf0018, 0x8f860064, 0x30c20004, 0x10400025, ! 0x24040004, 0x8c020114, 0xaf420020, 0xaf840064, ! 0x8f4202fc, 0x24420001, 0xaf4202fc, 0x8f4202fc, ! 0x8f820064, 0x30420004, 0x14400005, 0x0, ! 0x8c030114, 0x8f420020, 0x1462fff2, 0x0, ! 0x8f420000, 0x10400007, 0x8f43003c, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x431025, 0xaf820060, ! 0x8f420000, 0x10400073, 0x0, 0x1000006f, 0x0, 0x30c20008, 0x10400020, 0x24040008, 0x8c02011c, 0xaf420048, 0xaf840064, 0x8f4202a8, 0x24420001, 0xaf4202a8, 0x8f4202a8, 0x8f820064, --- 1138,1161 ---- 0x44102b, 0x14400006, 0x0, 0x3c010001, 0x370821, 0xac2040ec, 0x10000006, 0x651825, 0x3c020001, 0x571021, 0x904240f2, 0x54400001, ! 0x651825, 0x1060ffbb, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x431025, 0xaf820060, 0x8f420000, ! 0x10400004, 0x0, 0xaf80004c, 0x1000ffa5, ! 0x0, 0xaf800048, 0x1000ffa2, 0x0, ! 0x3e00008, 0x0, 0x27bdffe0, 0xafbf0018, ! 0x8f860064, 0x30c20004, 0x10400026, 0x24040004, ! 0x8c020114, 0xaf420020, 0xaf840064, 0x8f4202fc, ! 0x24420001, 0xaf4202fc, 0x8f4202fc, 0x8f820064, ! 0x30420004, 0x14400005, 0x0, 0x8c030114, ! 0x8f420020, 0x1462fff2, 0x0, 0x8f420000, ! 0x8f43003c, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x431025, 0xaf820060, ! 0x8f420000, 0x10400074, 0x0, 0x1000006f, 0x0, 0x30c20008, 0x10400020, 0x24040008, 0x8c02011c, 0xaf420048, 0xaf840064, 0x8f4202a8, 0x24420001, 0xaf4202a8, 0x8f4202a8, 0x8f820064, *************** *** 1033,1039 **** 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x1000ffb4, 0x34420800, ! 0x30c20010, 0x10400029, 0x24040010, 0x8c020124, 0xaf420058, 0xaf840064, 0x8f4202d4, 0x24420001, 0xaf4202d4, 0x8f4202d4, 0x8f820064, 0x30420010, 0x14400005, 0x32c22000, 0x8c030124, 0x8f420058, --- 1174,1180 ---- 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x1000ffb4, 0x34420800, ! 0x30c20010, 0x1040002b, 0x24040010, 0x8c020124, 0xaf420058, 0xaf840064, 0x8f4202d4, 0x24420001, 0xaf4202d4, 0x8f4202d4, 0x8f820064, 0x30420010, 0x14400005, 0x32c22000, 0x8c030124, 0x8f420058, *************** *** 1042,1167 **** 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x34420100, 0xaf820060, ! 0x8f420000, 0x10400003, 0x0, 0x1000006c, ! 0xaf80004c, 0x1000006a, 0xaf800048, 0x30c20001, ! 0x10400004, 0x24020001, 0xaf820064, 0x10000064, ! 0x0, 0x30c20002, 0x1440000b, 0x3c050003, ! 0x3c040001, 0x248439d4, 0x34a50500, 0x3821, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x2402ffc0, ! 0x10000057, 0xaf820064, 0x8c05022c, 0x8c02010c, ! 0x10a20048, 0x51080, 0x8c460300, 0x24a20001, ! 0x3045003f, 0x24020003, 0xac05022c, 0x61e02, ! 0x10620005, 0x24020010, 0x1062001d, 0x30c20fff, ! 0x10000039, 0x0, 0x8f4302a8, 0x8f440000, ! 0x30c20fff, 0xaf420048, 0x24630001, 0xaf4302a8, ! 0x10800007, 0x8f4202a8, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x34420200, 0xaf820060, 0x8f420000, ! 0x1040001f, 0x0, 0x1000001b, 0x0, 0xaf420058, 0x32c22000, 0x50400001, 0x36d68000, 0x8f4202d4, 0x8f430000, 0x24420001, 0xaf4202d4, ! 0x10600007, 0x8f4202d4, 0xaf80004c, 0x8f82004c, ! 0x1040fffd, 0x0, 0x10000005, 0x0, ! 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, ! 0x8f820060, 0x34420100, 0xaf820060, 0x8f420000, ! 0x10400003, 0x0, 0x10000006, 0xaf80004c, ! 0x10000004, 0xaf800048, 0xc00206a, 0xc02021, ! 0x402821, 0x8c02010c, 0x14a20002, 0x24020002, ! 0xaf820064, 0x8f820064, 0x30420002, 0x14400004, ! 0x0, 0x8c02010c, 0x14a2ffac, 0x0, ! 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x3e00008, ! 0x0, 0x27bdffa0, 0xafb00040, 0x808021, ! 0x101602, 0x2442ffff, 0x304300ff, 0x2c620013, ! 0xafbf0058, 0xafbe0054, 0xafb50050, 0xafb3004c, ! 0xafb20048, 0xafb10044, 0x104001f3, 0xafa50034, ! 0x31080, 0x3c010001, 0x220821, 0x8c223a18, ! 0x400008, 0x0, 0x101302, 0x30440fff, ! 0x24020001, 0x10820005, 0x24020002, 0x1082000c, ! 0x2402fffe, 0x10000024, 0x3c050003, 0x8f430004, ! 0x3c020001, 0x8c424564, 0xaf440200, 0xaf440204, ! 0x3c040001, 0x8c8444e0, 0x10000009, 0x34630001, ! 0x8f430004, 0xaf440200, 0xaf440204, 0x3c040001, ! 0x8c8444e0, 0x621824, 0x3c020001, 0x2442c568, ! 0x21100, 0x21182, 0xaf430004, 0x3c030800, ! 0x431025, 0xac820038, 0x8f840054, 0x41442, ! 0x41c82, 0x431021, 0x41cc2, 0x431023, ! 0x41d02, 0x431021, 0x41d42, 0x431023, ! 0x10000009, 0xaf420208, 0x3c040001, 0x248439e0, 0x34a51000, 0x2003021, 0x3821, 0xafa00010, ! 0xc002a0b, 0xafa00014, 0x8f4202a0, 0x24420001, ! 0xaf4202a0, 0x1000021f, 0x8f4202a0, 0x27b00028, ! 0x2002021, 0x24050210, 0xc002a8f, 0x24060008, ! 0xc0023eb, 0x2002021, 0x10000216, 0x0, ! 0x8faa0034, 0x27a40028, 0xa1880, 0x25420001, ! 0x3042003f, 0xafa20034, 0x8c650300, 0x8faa0034, ! 0x21080, 0x8c430300, 0x25420001, 0x3042003f, ! 0xafa20034, 0xac02022c, 0xafa50028, 0xc0023eb, ! 0xafa3002c, 0x10000203, 0x0, 0x27b00028, ! 0x2002021, 0x24050210, 0xc002a8f, 0x24060008, ! 0xc00252a, 0x2002021, 0x100001fa, 0x0, ! 0x8faa0034, 0x27a40028, 0xa1880, 0x25420001, ! 0x3042003f, 0xafa20034, 0x8c650300, 0x8faa0034, ! 0x21080, 0x8c430300, 0x25420001, 0x3042003f, ! 0xafa20034, 0xac02022c, 0xafa50028, 0xc00252a, ! 0xafa3002c, 0x100001e7, 0x0, 0x101302, ! 0x30430fff, 0x24020001, 0x10620005, 0x24020002, ! 0x1062001e, 0x3c020002, 0x10000033, 0x3c050003, ! 0x3c030002, 0x2c31024, 0x54400037, 0x2c3b025, ! 0x8f820228, 0x3c010001, 0x370821, 0xac2238d8, ! 0x8f82022c, 0x3c010001, 0x370821, 0xac2238dc, ! 0x8f820230, 0x3c010001, 0x370821, 0xac2238e0, ! 0x8f820234, 0x3c010001, 0x370821, 0xac2238e4, ! 0x2402ffff, 0xaf820228, 0xaf82022c, 0xaf820230, ! 0xaf820234, 0x10000020, 0x2c3b025, 0x2c21024, ! 0x10400012, 0x3c02fffd, 0x3c020001, 0x571021, ! 0x8c4238d8, 0xaf820228, 0x3c020001, 0x571021, ! 0x8c4238dc, 0xaf82022c, 0x3c020001, 0x571021, ! 0x8c4238e0, 0xaf820230, 0x3c020001, 0x571021, ! 0x8c4238e4, 0xaf820234, 0x3c02fffd, 0x3442ffff, ! 0x10000009, 0x2c2b024, 0x3c040001, 0x248439ec, ! 0x34a51100, 0x2003021, 0x3821, 0xafa00010, ! 0xc002a0b, 0xafa00014, 0x8f4202cc, 0x24420001, ! 0xaf4202cc, 0x1000019f, 0x8f4202cc, 0x101302, ! 0x30450fff, 0x24020001, 0x10a20005, 0x24020002, ! 0x10a2000d, 0x3c0408ff, 0x10000014, 0x3c050003, ! 0x3c0208ff, 0x3442ffff, 0x8f830220, 0x3c040004, ! 0x2c4b025, 0x621824, 0x34630008, 0xaf830220, ! 0x10000012, 0xaf450298, 0x3484fff7, 0x3c03fffb, ! 0x8f820220, 0x3463ffff, 0x2c3b024, 0x441024, ! 0xaf820220, 0x10000009, 0xaf450298, 0x3c040001, ! 0x248439f8, 0x34a51200, 0x2003021, 0x3821, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x8f4202bc, ! 0x24420001, 0xaf4202bc, 0x10000176, 0x8f4202bc, ! 0x27840208, 0x24050200, 0xc002a8f, 0x24060008, ! 0x27440224, 0x24050200, 0xc002a8f, 0x24060008, ! 0x8f4202c4, 0x24420001, 0xaf4202c4, 0x10000169, ! 0x8f4202c4, 0x101302, 0x30430fff, 0x24020001, ! 0x10620011, 0x28620002, 0x50400005, 0x24020002, ! 0x10600007, 0x0, 0x10000017, 0x0, ! 0x1062000f, 0x0, 0x10000013, 0x0, ! 0x8c060248, 0x2021, 0xc0049c0, 0x24050004, ! 0x10000007, 0x0, 0x8c060248, 0x2021, ! 0xc0049c0, 0x24050004, 0x10000010, 0x0, ! 0x8c06024c, 0x2021, 0xc0049c0, 0x24050001, ! 0x1000000a, 0x0, 0x3c040001, 0x24843a04, ! 0x3c050003, 0x34a51300, 0x2003021, 0x3821, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x8f4202c0, ! 0x24420001, 0xaf4202c0, 0x1000013a, 0x8f4202c0, ! 0xc0022fa, 0x0, 0x10000136, 0x0, ! 0x24020001, 0xa34205c5, 0x24100100, 0x8f4401a8, ! 0x8f4501ac, 0xafb00010, 0xafa00014, 0x8f420014, ! 0xafa20018, 0x8f420108, 0x26e60028, 0x40f809, ! 0x24070400, 0x1040fff5, 0x0, 0x10000125, ! 0x0, 0x3c03ffff, 0x34637fff, 0x8f420368, ! 0x8f440360, 0x2c3b024, 0x1821, 0xaf400058, ! 0xaf40005c, 0xaf400060, 0xaf400064, 0x441023, ! 0xaf420368, 0x3c020900, 0xaf400360, 0xafa20020, 0x8f5e0018, 0x27aa0020, 0x240200ff, 0x13c20002, ! 0xafaa003c, 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x2484399c, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006b, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, --- 1183,1494 ---- 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x34420100, 0xaf820060, ! 0x8f420000, 0x10400004, 0x0, 0xaf80004c, ! 0x10000072, 0x0, 0xaf800048, 0x1000006f, ! 0x0, 0x30c20001, 0x10400004, 0x24020001, ! 0xaf820064, 0x10000069, 0x0, 0x30c20002, ! 0x1440000c, 0x3c050003, 0x3c040001, 0x2484780c, ! 0x34a50500, 0x3821, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x2402ffc0, 0xaf820064, 0x1000005b, ! 0x0, 0x8c05022c, 0x8c02010c, 0x10a2004c, ! 0x51080, 0x8c460300, 0x24a20001, 0x3045003f, ! 0x24020003, 0xac05022c, 0x61e02, 0x10620005, ! 0x24020010, 0x1062001e, 0x30c20fff, 0x1000003d, ! 0x0, 0x8f4302a8, 0x8f440000, 0x30c20fff, ! 0xaf420048, 0x24630001, 0xaf4302a8, 0x8f4202a8, ! 0x10800007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x34420200, 0xaf820060, 0x8f420000, ! 0x10400021, 0x0, 0x1000001c, 0x0, 0xaf420058, 0x32c22000, 0x50400001, 0x36d68000, 0x8f4202d4, 0x8f430000, 0x24420001, 0xaf4202d4, ! 0x8f4202d4, 0x10600007, 0x0, 0xaf80004c, ! 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, ! 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x34420100, 0xaf820060, ! 0x8f420000, 0x10400004, 0x0, 0xaf80004c, ! 0x10000007, 0x0, 0xaf800048, 0x10000004, ! 0x0, 0xc0022ad, 0xc02021, 0x402821, ! 0x8c02010c, 0x14a20002, 0x24020002, 0xaf820064, ! 0x8f820064, 0x30420002, 0x14400004, 0x0, ! 0x8c02010c, 0x14a2ffa8, 0x0, 0x8fbf0018, ! 0x3e00008, 0x27bd0020, 0x3e00008, 0x0, ! 0x27bdffa0, 0xafb00040, 0x808021, 0x101602, ! 0x2442ffff, 0x304300ff, 0x2c620013, 0xafbf0058, ! 0xafbe0054, 0xafb50050, 0xafb3004c, 0xafb20048, ! 0xafb10044, 0x104001fe, 0xafa50034, 0x31080, ! 0x3c010001, 0x220821, 0x8c227850, 0x400008, ! 0x0, 0x101302, 0x30440fff, 0x24020001, ! 0x10820005, 0x24020002, 0x1082000c, 0x2402fffe, ! 0x10000025, 0x3c050003, 0x8f430004, 0x3c020002, ! 0x8c428660, 0xaf440200, 0xaf440204, 0x3c040002, ! 0x8c8485dc, 0x10000009, 0x34630001, 0x8f430004, ! 0xaf440200, 0xaf440204, 0x3c040002, 0x8c8485dc, ! 0x621824, 0x3c020001, 0x2442d68c, 0x21100, ! 0x21182, 0xaf430004, 0x3c030800, 0x431025, ! 0xac820038, 0x8f840054, 0x41442, 0x41c82, ! 0x431021, 0x41cc2, 0x431023, 0x41d02, ! 0x431021, 0x41d42, 0x431023, 0xaf420208, ! 0x10000009, 0x0, 0x3c040001, 0x24847818, 0x34a51000, 0x2003021, 0x3821, 0xafa00010, ! 0xc002d3b, 0xafa00014, 0x8f4202a0, 0x24420001, ! 0xaf4202a0, 0x8f4202a0, 0x10000228, 0x0, ! 0x27b00028, 0x2002021, 0x24050210, 0xc002dbf, ! 0x24060008, 0xc00263a, 0x2002021, 0x1000021f, ! 0x0, 0x8faa0034, 0x27a40028, 0xa1880, ! 0x25420001, 0x3042003f, 0xafa20034, 0x8c650300, ! 0x8faa0034, 0x21080, 0x8c430300, 0x25420001, ! 0x3042003f, 0xafa20034, 0xac02022c, 0xafa50028, ! 0xc00263a, 0xafa3002c, 0x1000020c, 0x0, ! 0x27b00028, 0x2002021, 0x24050210, 0xc002dbf, ! 0x24060008, 0xc002779, 0x2002021, 0x10000203, ! 0x0, 0x8faa0034, 0x27a40028, 0xa1880, ! 0x25420001, 0x3042003f, 0xafa20034, 0x8c650300, ! 0x8faa0034, 0x21080, 0x8c430300, 0x25420001, ! 0x3042003f, 0xafa20034, 0xac02022c, 0xafa50028, ! 0xc002779, 0xafa3002c, 0x100001f0, 0x0, ! 0x101302, 0x30430fff, 0x24020001, 0x10620005, ! 0x24020002, 0x1062001e, 0x3c020002, 0x10000033, ! 0x3c050003, 0x3c030002, 0x2c31024, 0x54400037, ! 0x2c3b025, 0x8f820228, 0x3c010001, 0x370821, ! 0xac2238d8, 0x8f82022c, 0x3c010001, 0x370821, ! 0xac2238dc, 0x8f820230, 0x3c010001, 0x370821, ! 0xac2238e0, 0x8f820234, 0x3c010001, 0x370821, ! 0xac2238e4, 0x2402ffff, 0xaf820228, 0xaf82022c, ! 0xaf820230, 0xaf820234, 0x10000020, 0x2c3b025, ! 0x2c21024, 0x10400012, 0x3c02fffd, 0x3c020001, ! 0x571021, 0x8c4238d8, 0xaf820228, 0x3c020001, ! 0x571021, 0x8c4238dc, 0xaf82022c, 0x3c020001, ! 0x571021, 0x8c4238e0, 0xaf820230, 0x3c020001, ! 0x571021, 0x8c4238e4, 0xaf820234, 0x3c02fffd, ! 0x3442ffff, 0x10000009, 0x2c2b024, 0x3c040001, ! 0x24847824, 0x34a51100, 0x2003021, 0x3821, ! 0xafa00010, 0xc002d3b, 0xafa00014, 0x8f4202cc, ! 0x24420001, 0xaf4202cc, 0x8f4202cc, 0x100001a7, ! 0x0, 0x101302, 0x30450fff, 0x24020001, ! 0x10a20005, 0x24020002, 0x10a2000e, 0x3c0408ff, ! 0x10000016, 0x3c050003, 0x3c0208ff, 0x3442ffff, ! 0x8f830220, 0x3c040004, 0x2c4b025, 0x621824, ! 0x34630008, 0xaf830220, 0xaf450298, 0x10000013, ! 0x0, 0x3484fff7, 0x3c03fffb, 0x8f820220, ! 0x3463ffff, 0x2c3b024, 0x441024, 0xaf820220, ! 0xaf450298, 0x10000009, 0x0, 0x3c040001, ! 0x24847830, 0x34a51200, 0x2003021, 0x3821, ! 0xafa00010, 0xc002d3b, 0xafa00014, 0x8f4202bc, ! 0x24420001, 0xaf4202bc, 0x8f4202bc, 0x1000017b, ! 0x0, 0x27840208, 0x24050200, 0xc002dbf, ! 0x24060008, 0x27440224, 0x24050200, 0xc002dbf, ! 0x24060008, 0x8f4202c4, 0x24420001, 0xaf4202c4, ! 0x8f4202c4, 0x1000016d, 0x0, 0x101302, ! 0x30430fff, 0x24020001, 0x10620011, 0x28620002, ! 0x50400005, 0x24020002, 0x10600007, 0x0, ! 0x10000017, 0x0, 0x1062000f, 0x0, ! 0x10000013, 0x0, 0x8c060248, 0x2021, ! 0xc0056de, 0x24050004, 0x10000007, 0x0, ! 0x8c060248, 0x2021, 0xc0056de, 0x24050004, ! 0x10000010, 0x0, 0x8c06024c, 0x2021, ! 0xc0056de, 0x24050001, 0x1000000a, 0x0, ! 0x3c040001, 0x2484783c, 0x3c050003, 0x34a51300, ! 0x2003021, 0x3821, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x8f4202c0, 0x24420001, 0xaf4202c0, ! 0x8f4202c0, 0x1000013d, 0x0, 0xc002548, ! 0x0, 0x10000139, 0x0, 0x24020001, ! 0xa34205c5, 0x24100100, 0x8f4401a8, 0x8f4501ac, ! 0xafb00010, 0xafa00014, 0x8f420014, 0xafa20018, ! 0x8f420108, 0x26e60028, 0x40f809, 0x24070400, ! 0x1040fff5, 0x0, 0x10000128, 0x0, ! 0x3c03ffff, 0x34637fff, 0x8f420368, 0x8f440360, ! 0x2c3b024, 0x1821, 0xaf400058, 0xaf40005c, ! 0xaf400060, 0xaf400064, 0x441023, 0xaf420368, ! 0x3c020900, 0xaf400360, 0xafa20020, 0x8f5e0018, ! 0x27aa0020, 0x240200ff, 0x13c20002, 0xafaa003c, ! 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, ! 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, ! 0x8f42033c, 0x8c020228, 0x3c040001, 0x248477d4, ! 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, ! 0x1000006b, 0x34a50500, 0xf71021, 0x8fa30020, ! 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, ! 0x8f820054, 0x247003e8, 0x2021023, 0x2c4203e9, ! 0x1040001b, 0x9821, 0xe08821, 0x263504c0, ! 0x8f440178, 0x8f45017c, 0x2201821, 0x240a0004, ! 0xafaa0010, 0xafb20014, 0x8f48000c, 0x1021, ! 0x2f53021, 0xafa80018, 0x8f48010c, 0x24070008, ! 0xa32821, 0xa3482b, 0x822021, 0x100f809, ! 0x892021, 0x54400006, 0x24130001, 0x8f820054, ! 0x2021023, 0x2c4203e9, 0x1440ffe9, 0x0, ! 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, ! 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, ! 0x8faa003c, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248477e0, 0x3c050009, 0xafa20014, 0x8d460000, ! 0x10000033, 0x34a50600, 0x8f420308, 0x24130001, ! 0x24420001, 0xaf420308, 0x8f420308, 0x1000001c, ! 0x326200ff, 0x8f830054, 0x8f820054, 0x247003e8, ! 0x2021023, 0x2c4203e9, 0x10400014, 0x9821, ! 0x24110010, 0x8f42000c, 0x8f440160, 0x8f450164, ! 0x8f860120, 0xafb10010, 0xafb20014, 0xafa20018, ! 0x8f42010c, 0x24070008, 0x40f809, 0x24c6001c, ! 0x1440ffe5, 0x0, 0x8f820054, 0x2021023, ! 0x2c4203e9, 0x1440ffef, 0x0, 0x326200ff, ! 0x14400011, 0x0, 0x8f420378, 0x24420001, ! 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa003c, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x248477e8, ! 0x3c050009, 0xafa20014, 0x8d460000, 0x34a50700, ! 0xc002d3b, 0x3c03821, 0x8f4202b0, 0x24420001, ! 0xaf4202b0, 0x8f4202b0, 0x8f4202f8, 0x24420001, ! 0xaf4202f8, 0x8f4202f8, 0x1000008c, 0x0, ! 0x8c02025c, 0x27440224, 0xaf4201f0, 0x8c020260, ! 0x24050200, 0x24060008, 0xaf4201f8, 0xc002dbf, ! 0x0, 0x8f820220, 0x30420008, 0x14400002, ! 0x24020001, 0x24020002, 0xaf420298, 0x8f4202ac, ! 0x24420001, 0xaf4202ac, 0x8f4202ac, 0x10000077, ! 0x0, 0x3c0200ff, 0x3442ffff, 0x2021824, ! 0x32c20180, 0x14400006, 0x3402fffb, 0x43102b, ! 0x14400003, 0x0, 0x1000006c, 0xaf4300bc, ! 0x3c040001, 0x24847848, 0x3c050003, 0x34a51500, ! 0x2003021, 0x3821, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x3c020700, 0x34421000, 0x101e02, ! 0x621825, 0xafa30020, 0x8f510018, 0x240200ff, ! 0x12220002, 0x8021, 0x26300001, 0x8c020228, ! 0x1602000e, 0x1130c0, 0x8f42033c, 0x24420001, ! 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x248477bc, 0x3c050009, 0xafa00014, 0xafa20010, ! 0x8fa60020, 0x1000003f, 0x34a50100, 0xd71021, ! 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, ! 0xc01821, 0x8f440178, 0x8f45017c, 0x1021, ! 0x24070004, 0xafa70010, 0xafb00014, 0x8f48000c, ! 0x24c604c0, 0x2e63021, 0xafa80018, 0x8f48010c, ! 0x24070008, 0xa32821, 0xa3482b, 0x822021, ! 0x100f809, 0x892021, 0x1440000b, 0x24070008, ! 0x8f820120, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248477c4, 0x3c050009, 0xafa20014, 0x8fa60020, ! 0x1000001c, 0x34a50200, 0x8f440160, 0x8f450164, ! 0x8f43000c, 0xaf500018, 0x8f860120, 0x24020010, ! 0xafa20010, 0xafb00014, 0xafa30018, 0x8f42010c, ! 0x40f809, 0x24c6001c, 0x14400010, 0x0, ! 0x8f420340, 0x24420001, 0xaf420340, 0x8f420340, ! 0x8f820120, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248477cc, 0x3c050009, 0xafa20014, 0x8fa60020, ! 0x34a50300, 0xc002d3b, 0x2203821, 0x8f4202e0, ! 0x24420001, 0xaf4202e0, 0x8f4202e0, 0x8f4202f0, ! 0x24420001, 0xaf4202f0, 0x8f4202f0, 0x8fa20034, ! 0x8fbf0058, 0x8fbe0054, 0x8fb50050, 0x8fb3004c, ! 0x8fb20048, 0x8fb10044, 0x8fb00040, 0x3e00008, ! 0x27bd0060, 0x27bdfff8, 0x2408ffff, 0x10a00014, ! 0x4821, 0x3c0aedb8, 0x354a8320, 0x90870000, ! 0x24840001, 0x3021, 0x1071026, 0x30420001, ! 0x10400002, 0x81842, 0x6a1826, 0x604021, ! 0x24c60001, 0x2cc20008, 0x1440fff7, 0x73842, ! 0x25290001, 0x125102b, 0x1440fff0, 0x0, ! 0x1001021, 0x3e00008, 0x27bd0008, 0x27bdffb0, ! 0xafbf0048, 0xafbe0044, 0xafb50040, 0xafb3003c, ! 0xafb20038, 0xafb10034, 0xafb00030, 0x8f870220, ! 0xafa70024, 0x8f870200, 0xafa7002c, 0x8f820220, ! 0x3c0308ff, 0x3463ffff, 0x431024, 0x34420004, ! 0xaf820220, 0x8f820200, 0x3c03c0ff, 0x3463ffff, ! 0x431024, 0x34420004, 0xaf820200, 0x8f530358, ! 0x8f55035c, 0x8f5e0360, 0x8f470364, 0xafa70014, ! 0x8f470368, 0xafa7001c, 0x8f4202d0, 0x274401c0, ! 0x24420001, 0xaf4202d0, 0x8f5002d0, 0x8f510204, ! 0x8f520200, 0xc002da8, 0x24050400, 0xaf530358, ! 0xaf55035c, 0xaf5e0360, 0x8fa70014, 0xaf470364, ! 0x8fa7001c, 0xaf470368, 0xaf5002d0, 0xaf510204, ! 0xaf520200, 0x8c02025c, 0x27440224, 0xaf4201f0, ! 0x8c020260, 0x24050200, 0x24060008, 0xaf4201f8, ! 0x24020006, 0xaf4201f4, 0xc002dbf, 0x0, ! 0x3c023b9a, 0x3442ca00, 0xaf4201fc, 0x240203e8, ! 0x24040002, 0x24030001, 0xaf420294, 0xaf440290, ! 0xaf43029c, 0x8f820220, 0x30420008, 0x10400004, ! 0x0, 0xaf430298, 0x10000003, 0x3021, ! 0xaf440298, 0x3021, 0x3c030002, 0x661821, ! 0x9063848c, 0x3461021, 0x24c60001, 0xa043022c, ! 0x2cc2000f, 0x1440fff8, 0x3461821, 0x24c60001, ! 0x8f820040, 0x24040080, 0x24050080, 0x21702, ! 0x24420030, 0xa062022c, 0x3461021, 0xa040022c, ! 0xc002da8, 0x0, 0x8fa70024, 0x30e20004, ! 0x14400006, 0x0, 0x8f820220, 0x3c0308ff, ! 0x3463fffb, 0x431024, 0xaf820220, 0x8fa7002c, ! 0x30e20004, 0x14400006, 0x0, 0x8f820200, ! 0x3c03c0ff, 0x3463fffb, 0x431024, 0xaf820200, ! 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, ! 0x8fb20038, 0x8fb10034, 0x8fb00030, 0x3e00008, ! 0x27bd0050, 0xaf400104, 0x24040001, 0x410c0, ! 0x2e21821, 0x24820001, 0x3c010001, 0x230821, ! 0xa42234d0, 0x402021, 0x2c820080, 0x1440fff8, ! 0x410c0, 0x24020001, 0x3c010001, 0x370821, ! 0xa42038d0, 0xaf420100, 0xaf800228, 0xaf80022c, ! 0xaf800230, 0xaf800234, 0x3e00008, 0x0, ! 0x27bdffe8, 0xafbf0014, 0xafb00010, 0x8f420104, ! 0x28420005, 0x10400026, 0x808021, 0x3c020001, ! 0x8f430104, 0x344230d0, 0x2e23021, 0x318c0, ! 0x621821, 0x2e33821, 0xc7102b, 0x10400015, ! 0x1021, 0x96080000, 0x24c40006, 0x9482fffc, ! 0x14480009, 0x2821, 0x9483fffe, 0x96020002, ! 0x14620006, 0xa01021, 0x94820000, 0x96030004, ! 0x431026, 0x2c450001, 0xa01021, 0x1440000a, ! 0x24c60008, 0xc7102b, 0x1440fff0, 0x24840008, ! 0x1021, 0x304200ff, 0x14400030, 0x24020001, ! 0x1000002e, 0x1021, 0x1000fffa, 0x24020001, ! 0x2002021, 0xc00252e, 0x24050006, 0x3042007f, ! 0x218c0, 0x2e31021, 0x3c010001, 0x220821, ! 0x942230d0, 0x1040fff2, 0x2e31021, 0x3c060001, ! 0xc23021, 0x94c630d0, 0x10c0ffed, 0x3c080001, ! 0x350834d2, 0x96070000, 0x610c0, 0x572021, ! 0x882021, 0x94820000, 0x14470009, 0x2821, ! 0x94830002, 0x96020002, 0x14620006, 0xa01021, ! 0x94820004, 0x96030004, 0x431026, 0x2c450001, ! 0xa01021, 0x14400007, 0x610c0, 0x2e21021, ! 0x3c060001, 0xc23021, 0x94c634d0, 0x14c0ffeb, ! 0x610c0, 0x10c0ffd2, 0x24020001, 0x8fbf0014, ! 0x8fb00010, 0x3e00008, 0x27bd0018, 0x3e00008, ! 0x0, 0x27bdffb0, 0x801021, 0xafb00030, ! 0x24500002, 0x2002021, 0x24050006, 0xafb10034, ! 0x408821, 0xafbf0048, 0xafbe0044, 0xafb50040, ! 0xafb3003c, 0xc00252e, 0xafb20038, 0x3047007f, ! 0x710c0, 0x2e21021, 0x3c050001, 0xa22821, ! 0x94a530d0, 0x50a0001c, 0xa03021, 0x3c090001, ! 0x352934d2, 0x96280002, 0x510c0, 0x572021, ! 0x892021, 0x94820000, 0x14480009, 0x3021, ! 0x94830002, 0x96020002, 0x14620006, 0xc01021, ! 0x94820004, 0x96030004, 0x431026, 0x2c460001, ! 0xc01021, 0x14400007, 0x510c0, 0x2e21021, ! 0x3c050001, 0xa22821, 0x94a534d0, 0x14a0ffeb, ! 0x510c0, 0xa03021, 0x10c00014, 0x610c0, ! 0x571821, 0x3c010001, 0x230821, 0x8c2334d0, ! 0x571021, 0xafa30010, 0x3c010001, 0x220821, ! 0x8c2234d4, 0x3c040001, 0x24847950, 0xafa20014, ! 0x8e260000, 0x8e270004, 0x3c050004, 0xc002d3b, ! 0x34a50400, 0x10000063, 0x3c020800, 0x8f450100, ! 0x10a00006, 0x510c0, 0x2e21021, 0x3c010001, ! 0x220821, 0x942234d0, 0xaf420100, 0xa03021, ! 0x14c00011, 0x628c0, 0x710c0, 0x2e21021, ! 0xafa70010, 0x3c010001, 0x220821, 0x942230d0, ! 0x3c040001, 0x2484795c, 0xafa20014, 0x8e260000, ! 0x8e270004, 0x3c050004, 0xc002d3b, 0x34a50500, ! 0x10000048, 0x3c020800, 0xb71821, 0x3c020001, ! 0x96040000, 0x344234d2, 0x621821, 0xa4640000, ! 0x8e020002, 0x720c0, 0xac620002, 0x2e41021, ! 0x3c030001, 0x621821, 0x946330d0, 0x2e51021, ! 0x3c010001, 0x220821, 0xa42334d0, 0x2e41021, ! 0x3c010001, 0x220821, 0xa42630d0, 0x8f420104, ! 0x24420001, 0x28420080, 0x1040000f, 0x3c020002, ! 0x8f420104, 0x3c040001, 0x348430d2, 0x96030000, ! 0x210c0, 0x571021, 0x441021, 0xa4430000, ! 0x8e030002, 0xac430002, 0x8f420104, 0x24420001, ! 0xaf420104, 0x3c020002, 0x2c21024, 0x10400011, ! 0x72142, 0x3c030001, 0x346338d8, 0x24020003, ! 0x441023, 0x21080, 0x572021, 0x832021, ! 0x571021, 0x431021, 0x30e5001f, 0x8c430000, ! 0x24020001, 0xa21004, 0x621825, 0x1000000c, ! 0xac830000, 0x24020003, 0x441023, 0x21080, ! 0x5c2821, 0x5c1021, 0x30e4001f, 0x8c430228, ! 0x24020001, 0x821004, 0x621825, 0xaca30228, ! 0x3c020800, 0x34421000, 0x1821, 0xafa20020, 0x8f5e0018, 0x27aa0020, 0x240200ff, 0x13c20002, ! 0xafaa002c, 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x24847918, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006b, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, *************** *** 1174,1181 **** 0x8f820054, 0x2021023, 0x2c4203e9, 0x1440ffe9, 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, ! 0x8f820120, 0x8faa003c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x248439a8, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000033, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001c, 0x326200ff, 0x8f830054, 0x8f820054, --- 1501,1508 ---- 0x8f820054, 0x2021023, 0x2c4203e9, 0x1440ffe9, 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, ! 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x24847924, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000033, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001c, 0x326200ff, 0x8f830054, 0x8f820054, *************** *** 1187,1670 **** 0x2021023, 0x2c4203e9, 0x1440ffef, 0x0, 0x326200ff, 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, ! 0x8faa003c, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x248439b0, 0x3c050009, 0xafa20014, 0x8d460000, ! 0x34a50700, 0xc002a0b, 0x3c03821, 0x8f4202b0, ! 0x24420001, 0xaf4202b0, 0x8f4202b0, 0x8f4202f8, ! 0x24420001, 0xaf4202f8, 0x1000008a, 0x8f4202f8, ! 0x8c02025c, 0x27440224, 0xaf4201f0, 0x8c020260, ! 0x24050200, 0x24060008, 0xc002a8f, 0xaf4201f8, ! 0x8f820220, 0x30420008, 0x14400002, 0x24020001, ! 0x24020002, 0xaf420298, 0x8f4202ac, 0x24420001, ! 0xaf4202ac, 0x10000077, 0x8f4202ac, 0x3c0200ff, ! 0x3442ffff, 0x2021824, 0x32c20180, 0x14400006, ! 0x3402fffb, 0x43102b, 0x14400003, 0x0, ! 0x1000006c, 0xaf4300bc, 0x3c040001, 0x24843a10, ! 0x3c050003, 0x34a51500, 0x2003021, 0x3821, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x3c020700, ! 0x34421000, 0x101e02, 0x621825, 0xafa30020, ! 0x8f510018, 0x240200ff, 0x12220002, 0x8021, ! 0x26300001, 0x8c020228, 0x1602000e, 0x1130c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x3c040001, 0x24843984, 0x3c050009, ! 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000003f, ! 0x34a50100, 0xd71021, 0x8fa30020, 0x8fa40024, ! 0xac4304c0, 0xac4404c4, 0xc01821, 0x8f440178, ! 0x8f45017c, 0x1021, 0x24070004, 0xafa70010, ! 0xafb00014, 0x8f48000c, 0x24c604c0, 0x2e63021, 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, 0x822021, 0x100f809, 0x892021, ! 0x1440000b, 0x24070008, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x2484398c, 0x3c050009, ! 0xafa20014, 0x8fa60020, 0x1000001c, 0x34a50200, ! 0x8f440160, 0x8f450164, 0x8f43000c, 0xaf500018, ! 0x8f860120, 0x24020010, 0xafa20010, 0xafb00014, ! 0xafa30018, 0x8f42010c, 0x40f809, 0x24c6001c, ! 0x14400010, 0x0, 0x8f420340, 0x24420001, ! 0xaf420340, 0x8f420340, 0x8f820120, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x24843994, 0x3c050009, ! 0xafa20014, 0x8fa60020, 0x34a50300, 0xc002a0b, ! 0x2203821, 0x8f4202e0, 0x24420001, 0xaf4202e0, ! 0x8f4202e0, 0x8f4202f0, 0x24420001, 0xaf4202f0, ! 0x8f4202f0, 0x8fa20034, 0x8fbf0058, 0x8fbe0054, ! 0x8fb50050, 0x8fb3004c, 0x8fb20048, 0x8fb10044, ! 0x8fb00040, 0x3e00008, 0x27bd0060, 0x27bdfff8, ! 0x2408ffff, 0x10a00014, 0x4821, 0x3c0aedb8, ! 0x354a8320, 0x90870000, 0x24840001, 0x3021, ! 0x1071026, 0x30420001, 0x10400002, 0x81842, ! 0x6a1826, 0x604021, 0x24c60001, 0x2cc20008, ! 0x1440fff7, 0x73842, 0x25290001, 0x125102b, ! 0x1440fff0, 0x0, 0x1001021, 0x3e00008, ! 0x27bd0008, 0x27bdffb0, 0xafbf0048, 0xafbe0044, ! 0xafb50040, 0xafb3003c, 0xafb20038, 0xafb10034, ! 0xafb00030, 0x8f870220, 0xafa70024, 0x8f870200, ! 0xafa7002c, 0x8f820220, 0x3c0308ff, 0x3463ffff, ! 0x431024, 0x34420004, 0xaf820220, 0x8f820200, ! 0x3c03c0ff, 0x3463ffff, 0x431024, 0x34420004, ! 0xaf820200, 0x8f530358, 0x8f55035c, 0x8f5e0360, ! 0x8f470364, 0xafa70014, 0x8f470368, 0xafa7001c, ! 0x8f4202d0, 0x274401c0, 0x24420001, 0xaf4202d0, ! 0x8f5002d0, 0x8f510204, 0x8f520200, 0xc002a78, ! 0x24050400, 0xaf530358, 0xaf55035c, 0xaf5e0360, ! 0x8fa70014, 0xaf470364, 0x8fa7001c, 0xaf470368, ! 0xaf5002d0, 0xaf510204, 0xaf520200, 0x8c02025c, ! 0x27440224, 0xaf4201f0, 0x8c020260, 0x24050200, ! 0x24060008, 0xaf4201f8, 0x24020006, 0xc002a8f, ! 0xaf4201f4, 0x3c023b9a, 0x3442ca00, 0xaf4201fc, ! 0x240203e8, 0x24040002, 0x24030001, 0xaf420294, ! 0xaf440290, 0xaf43029c, 0x8f820220, 0x30420008, ! 0x10400004, 0x0, 0xaf430298, 0x10000003, ! 0x3021, 0xaf440298, 0x3021, 0x3c030001, ! 0x661821, 0x90634390, 0x3461021, 0x24c60001, ! 0xa043022c, 0x2cc2000f, 0x1440fff8, 0x3461821, ! 0x24c60001, 0x8f820040, 0x24040080, 0x24050080, ! 0x21702, 0x24420030, 0xa062022c, 0x3461021, ! 0xc002a78, 0xa040022c, 0x8fa70024, 0x30e20004, ! 0x14400006, 0x0, 0x8f820220, 0x3c0308ff, ! 0x3463fffb, 0x431024, 0xaf820220, 0x8fa7002c, ! 0x30e20004, 0x14400006, 0x0, 0x8f820200, ! 0x3c03c0ff, 0x3463fffb, 0x431024, 0xaf820200, ! 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, ! 0x8fb20038, 0x8fb10034, 0x8fb00030, 0x3e00008, ! 0x27bd0050, 0x0, 0x0, 0xaf400104, ! 0x24040001, 0x410c0, 0x2e21821, 0x24820001, ! 0x3c010001, 0x230821, 0xa42234d0, 0x402021, ! 0x2c820080, 0x1440fff8, 0x410c0, 0x24020001, ! 0x3c010001, 0x370821, 0xa42038d0, 0xaf420100, ! 0xaf800228, 0xaf80022c, 0xaf800230, 0x3e00008, ! 0xaf800234, 0x27bdffe8, 0xafbf0014, 0xafb00010, ! 0x8f420104, 0x28420005, 0x10400026, 0x808021, ! 0x3c020001, 0x8f430104, 0x344230d0, 0x2e23021, ! 0x318c0, 0x621821, 0x2e33821, 0xc7102b, ! 0x10400015, 0x1021, 0x96080000, 0x24c40006, ! 0x9482fffc, 0x14480009, 0x2821, 0x9483fffe, ! 0x96020002, 0x14620006, 0xa01021, 0x94820000, ! 0x96030004, 0x431026, 0x2c450001, 0xa01021, ! 0x1440000a, 0x24c60008, 0xc7102b, 0x1440fff0, ! 0x24840008, 0x1021, 0x304200ff, 0x14400030, ! 0x24020001, 0x1000002e, 0x1021, 0x1000fffa, ! 0x24020001, 0x2002021, 0xc0022e0, 0x24050006, ! 0x3042007f, 0x218c0, 0x2e31021, 0x3c010001, ! 0x220821, 0x942230d0, 0x1040fff2, 0x2e31021, ! 0x3c060001, 0xc23021, 0x94c630d0, 0x10c0ffed, ! 0x3c080001, 0x350834d2, 0x96070000, 0x610c0, ! 0x572021, 0x882021, 0x94820000, 0x14470009, ! 0x2821, 0x94830002, 0x96020002, 0x14620006, ! 0xa01021, 0x94820004, 0x96030004, 0x431026, ! 0x2c450001, 0xa01021, 0x14400007, 0x610c0, ! 0x2e21021, 0x3c060001, 0xc23021, 0x94c634d0, ! 0x14c0ffeb, 0x610c0, 0x10c0ffd2, 0x24020001, ! 0x8fbf0014, 0x8fb00010, 0x3e00008, 0x27bd0018, ! 0x3e00008, 0x0, 0x27bdffb0, 0x801021, ! 0xafb00030, 0x24500002, 0x2002021, 0x24050006, ! 0xafb10034, 0x408821, 0xafbf0048, 0xafbe0044, ! 0xafb50040, 0xafb3003c, 0xc0022e0, 0xafb20038, ! 0x3047007f, 0x710c0, 0x2e21021, 0x3c050001, ! 0xa22821, 0x94a530d0, 0x50a0001c, 0xa03021, ! 0x3c090001, 0x352934d2, 0x96280002, 0x510c0, ! 0x572021, 0x892021, 0x94820000, 0x14480009, ! 0x3021, 0x94830002, 0x96020002, 0x14620006, ! 0xc01021, 0x94820004, 0x96030004, 0x431026, ! 0x2c460001, 0xc01021, 0x14400007, 0x510c0, ! 0x2e21021, 0x3c050001, 0xa22821, 0x94a534d0, ! 0x14a0ffeb, 0x510c0, 0xa03021, 0x10c00014, ! 0x610c0, 0x571821, 0x3c010001, 0x230821, ! 0x8c2334d0, 0x571021, 0xafa30010, 0x3c010001, ! 0x220821, 0x8c2234d4, 0x3c040001, 0x24843b24, ! 0xafa20014, 0x8e260000, 0x8e270004, 0x3c050004, ! 0xc002a0b, 0x34a50400, 0x10000063, 0x3c020800, ! 0x8f450100, 0x10a00006, 0x510c0, 0x2e21021, ! 0x3c010001, 0x220821, 0x942234d0, 0xaf420100, ! 0xa03021, 0x14c00011, 0x628c0, 0x710c0, ! 0x2e21021, 0xafa70010, 0x3c010001, 0x220821, ! 0x942230d0, 0x3c040001, 0x24843b30, 0xafa20014, ! 0x8e260000, 0x8e270004, 0x3c050004, 0xc002a0b, ! 0x34a50500, 0x10000048, 0x3c020800, 0xb71821, ! 0x3c020001, 0x96040000, 0x344234d2, 0x621821, ! 0xa4640000, 0x8e020002, 0x720c0, 0xac620002, ! 0x2e41021, 0x3c030001, 0x621821, 0x946330d0, ! 0x2e51021, 0x3c010001, 0x220821, 0xa42334d0, ! 0x2e41021, 0x3c010001, 0x220821, 0xa42630d0, ! 0x8f420104, 0x24420001, 0x28420080, 0x1040000f, ! 0x3c020002, 0x8f420104, 0x3c040001, 0x348430d2, ! 0x96030000, 0x210c0, 0x571021, 0x441021, ! 0xa4430000, 0x8e030002, 0xac430002, 0x8f420104, ! 0x24420001, 0xaf420104, 0x3c020002, 0x2c21024, ! 0x10400011, 0x72142, 0x3c030001, 0x346338d8, ! 0x24020003, 0x441023, 0x21080, 0x572021, ! 0x832021, 0x571021, 0x431021, 0x30e5001f, ! 0x8c430000, 0x24020001, 0xa21004, 0x621825, ! 0x1000000c, 0xac830000, 0x24020003, 0x441023, ! 0x21080, 0x5c2821, 0x5c1021, 0x30e4001f, ! 0x8c430228, 0x24020001, 0x821004, 0x621825, ! 0xaca30228, 0x3c020800, 0x34421000, 0x1821, ! 0xafa20020, 0x8f5e0018, 0x27aa0020, 0x240200ff, ! 0x13c20002, 0xafaa002c, 0x27c30001, 0x8c020228, ! 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, ! 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, ! 0x3c040001, 0x24843aec, 0x3c050009, 0xafa00014, ! 0xafa20010, 0x8fa60020, 0x1000006b, 0x34a50500, ! 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, ! 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, ! 0x2021023, 0x2c4203e9, 0x1040001b, 0x9821, ! 0xe08821, 0x263504c0, 0x8f440178, 0x8f45017c, ! 0x2201821, 0x240a0004, 0xafaa0010, 0xafb20014, ! 0x8f48000c, 0x1021, 0x2f53021, 0xafa80018, ! 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, ! 0x822021, 0x100f809, 0x892021, 0x54400006, ! 0x24130001, 0x8f820054, 0x2021023, 0x2c4203e9, ! 0x1440ffe9, 0x0, 0x326200ff, 0x54400017, ! 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, ! 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x24843af8, 0x3c050009, ! 0xafa20014, 0x8d460000, 0x10000033, 0x34a50600, ! 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, ! 0x8f420308, 0x1000001c, 0x326200ff, 0x8f830054, ! 0x8f820054, 0x247003e8, 0x2021023, 0x2c4203e9, ! 0x10400014, 0x9821, 0x24110010, 0x8f42000c, ! 0x8f440160, 0x8f450164, 0x8f860120, 0xafb10010, ! 0xafb20014, 0xafa20018, 0x8f42010c, 0x24070008, ! 0x40f809, 0x24c6001c, 0x1440ffe5, 0x0, ! 0x8f820054, 0x2021023, 0x2c4203e9, 0x1440ffef, ! 0x0, 0x326200ff, 0x14400011, 0x0, ! 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, ! 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x24843b00, 0x3c050009, 0xafa20014, ! 0x8d460000, 0x34a50700, 0xc002a0b, 0x3c03821, ! 0x8f4202b4, 0x24420001, 0xaf4202b4, 0x8f4202b4, ! 0x8f4202f4, 0x24420001, 0xaf4202f4, 0x8f4202f4, ! 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, ! 0x8fb20038, 0x8fb10034, 0x8fb00030, 0x3e00008, ! 0x27bd0050, 0x27bdffa0, 0x801021, 0xafb00040, ! 0x24500002, 0x2002021, 0x24050006, 0xafb10044, ! 0x408821, 0xafbf0058, 0xafbe0054, 0xafb50050, ! 0xafb3004c, 0xc0022e0, 0xafb20048, 0x3048007f, ! 0x810c0, 0x2e21021, 0x3c060001, 0xc23021, ! 0x94c630d0, 0x10c0001c, 0x3821, 0x3c0a0001, ! 0x354a34d2, 0x96290002, 0x610c0, 0x572021, ! 0x8a2021, 0x94820000, 0x14490009, 0x2821, ! 0x94830002, 0x96020002, 0x14620006, 0xa01021, ! 0x94820004, 0x96030004, 0x431026, 0x2c450001, ! 0xa01021, 0x14400008, 0x610c0, 0xc03821, ! 0x2e21021, 0x3c060001, 0xc23021, 0x94c634d0, ! 0x14c0ffea, 0x610c0, 0x14c00011, 0xafa70028, ! 0x810c0, 0x2e21021, 0xafa80010, 0x3c010001, ! 0x220821, 0x942230d0, 0x3c040001, 0x24843b3c, ! 0xafa20014, 0x8e260000, 0x8e270004, 0x3c050004, ! 0xc002a0b, 0x34a50900, 0x10000075, 0x3c020800, ! 0x10e0000c, 0x610c0, 0x2e21021, 0x3c030001, ! 0x621821, 0x946334d0, 0x710c0, 0x2e21021, ! 0x3c010001, 0x220821, 0xa42334d0, 0x1000000b, ! 0x3c040001, 0x2e21021, 0x3c030001, 0x621821, ! 0x946334d0, 0x810c0, 0x2e21021, 0x3c010001, ! 0x220821, 0xa42330d0, 0x3c040001, 0x348430d0, ! 0x8f430100, 0x610c0, 0x2e21021, 0x3c010001, ! 0x220821, 0xa42334d0, 0x8f420104, 0x2e43821, ! 0x2821, 0x18400029, 0xaf460100, 0x24e60006, ! 0x94c3fffc, 0x96020000, 0x14620009, 0x2021, ! 0x94c3fffe, 0x96020002, 0x14620006, 0x801021, ! 0x94c20000, 0x96030004, 0x431026, 0x2c440001, ! 0x801021, 0x50400014, 0x24a50001, 0x8f420104, ! 0x2442ffff, 0xa2102a, 0x1040000b, 0x24e40004, ! 0x94820006, 0x8c830008, 0xa482fffe, 0xac830000, ! 0x8f420104, 0x24a50001, 0x2442ffff, 0xa2102a, ! 0x1440fff7, 0x24840008, 0x8f420104, 0x2442ffff, ! 0x10000006, 0xaf420104, 0x8f420104, 0x24c60008, ! 0xa2102a, 0x1440ffda, 0x24e70008, 0x810c0, ! 0x2e21021, 0x3c010001, 0x220821, 0x942230d0, ! 0x14400023, 0x3c020800, 0x3c020002, 0x2c21024, ! 0x10400012, 0x82142, 0x3c030001, 0x346338d8, ! 0x24020003, 0x441023, 0x21080, 0x572021, ! 0x832021, 0x571021, 0x431021, 0x3105001f, ! 0x24030001, 0x8c420000, 0xa31804, 0x31827, ! 0x431024, 0x1000000d, 0xac820000, 0x24020003, ! 0x441023, 0x21080, 0x5c2821, 0x5c1021, ! 0x3104001f, 0x24030001, 0x8c420228, 0x831804, ! 0x31827, 0x431024, 0xaca20228, 0x3c020800, ! 0x34422000, 0x1821, 0xafa20020, 0x8f5e0018, ! 0x27ab0020, 0x240200ff, 0x13c20002, 0xafab0034, ! 0x27c30001, 0x8c020228, 0x609021, 0x1642000e, ! 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, ! 0x8f42033c, 0x8c020228, 0x3c040001, 0x24843aec, ! 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, ! 0x1000006b, 0x34a50500, 0xf71021, 0x8fa30020, ! 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, ! 0x8f820054, 0x247003e8, 0x2021023, 0x2c4203e9, ! 0x1040001b, 0x9821, 0xe08821, 0x263504c0, ! 0x8f440178, 0x8f45017c, 0x2201821, 0x240b0004, ! 0xafab0010, 0xafb20014, 0x8f48000c, 0x1021, ! 0x2f53021, 0xafa80018, 0x8f48010c, 0x24070008, ! 0xa32821, 0xa3482b, 0x822021, 0x100f809, ! 0x892021, 0x54400006, 0x24130001, 0x8f820054, ! 0x2021023, 0x2c4203e9, 0x1440ffe9, 0x0, ! 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, ! 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, ! 0x8fab0034, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x24843af8, 0x3c050009, 0xafa20014, 0x8d660000, ! 0x10000033, 0x34a50600, 0x8f420308, 0x24130001, ! 0x24420001, 0xaf420308, 0x8f420308, 0x1000001c, ! 0x326200ff, 0x8f830054, 0x8f820054, 0x247003e8, ! 0x2021023, 0x2c4203e9, 0x10400014, 0x9821, ! 0x24110010, 0x8f42000c, 0x8f440160, 0x8f450164, ! 0x8f860120, 0xafb10010, 0xafb20014, 0xafa20018, ! 0x8f42010c, 0x24070008, 0x40f809, 0x24c6001c, ! 0x1440ffe5, 0x0, 0x8f820054, 0x2021023, ! 0x2c4203e9, 0x1440ffef, 0x0, 0x326200ff, ! 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8fab0034, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x24843b00, ! 0x3c050009, 0xafa20014, 0x8d660000, 0x34a50700, ! 0xc002a0b, 0x3c03821, 0x8f4202b8, 0x24420001, ! 0xaf4202b8, 0x8f4202b8, 0x8f4202f4, 0x24420001, ! 0xaf4202f4, 0x8f4202f4, 0x8fbf0058, 0x8fbe0054, ! 0x8fb50050, 0x8fb3004c, 0x8fb20048, 0x8fb10044, ! 0x8fb00040, 0x3e00008, 0x27bd0060, 0x27bdffe0, ! 0x27644000, 0xafbf0018, 0xc002a78, 0x24051000, ! 0x3c030001, 0x34632cc0, 0x3c040001, 0x34842ec8, ! 0x24020020, 0xaf82011c, 0x2e31021, 0xaf800100, ! 0xaf800104, 0xaf800108, 0xaf800110, 0xaf800114, ! 0xaf800118, 0xaf800120, 0xaf800124, 0xaf800128, ! 0xaf800130, 0xaf800134, 0xaf800138, 0xaf4200ec, ! 0x2e31021, 0xaf4200f0, 0x2e41021, 0xaf4200f4, ! 0x2e41021, 0xaf4200f8, 0x3c020001, 0x571021, ! 0x904240f4, 0x1440001c, 0x3c050001, 0x8f82011c, ! 0x3c040001, 0x24843c00, 0x3c050001, 0x34420001, ! 0xaf82011c, 0xafa00010, 0xafa00014, 0x8f86011c, ! 0x34a50100, 0xc002a0b, 0x3821, 0x8c020218, ! 0x30420040, 0x10400014, 0x0, 0x8f82011c, ! 0x3c040001, 0x24843c0c, 0x3c050001, 0x34420004, ! 0xaf82011c, 0xafa00010, 0xafa00014, 0x8f86011c, ! 0x10000007, 0x34a50200, 0x3c040001, 0x24843c14, ! 0xafa00010, 0xafa00014, 0x8f86011c, 0x34a50300, ! 0xc002a0b, 0x3821, 0x8fbf0018, 0x3e00008, ! 0x27bd0020, 0x8fa90010, 0x8f83012c, 0x8faa0014, ! 0x8fab0018, 0x1060000a, 0x27624fe0, 0x14620002, ! 0x24680020, 0x27684800, 0x8f820128, 0x11020004, ! 0x0, 0x8f820124, 0x15020007, 0x0, ! 0x8f430334, 0x1021, 0x24630001, 0xaf430334, ! 0x10000039, 0x8f430334, 0xac640000, 0xac650004, ! 0xac660008, 0xa467000e, 0xac690018, 0xac6a001c, ! 0xac6b0010, 0xac620014, 0xaf880120, 0x8f4200fc, ! 0x8f4400f4, 0x2442ffff, 0xaf4200fc, 0x8c820000, ! 0x10490005, 0x3042ff8f, 0x10400019, 0x3122ff8f, ! 0x10400018, 0x3c020001, 0x8c830004, 0x2c620010, ! 0x10400013, 0x3c020001, 0x24630001, 0xac830004, 0x8f4300f8, 0x344230c8, 0x2e21021, 0x54620004, 0x24620008, 0x3c020001, 0x34422ec8, 0x2e21021, ! 0x14440015, 0x24020001, 0x8f820128, 0x24420020, ! 0xaf820128, 0x8f820128, 0x1000000f, 0x24020001, ! 0x3c020001, 0x344230c8, 0x2e21021, 0x54820004, ! 0x24820008, 0x3c020001, 0x34422ec8, 0x2e21021, ! 0x402021, 0x24020001, 0xaf4400f4, 0xac890000, ! 0xac820004, 0x24020001, 0x3e00008, 0x0, ! 0x3e00008, 0x0, 0x8fa90010, 0x8f83010c, ! 0x8faa0014, 0x8fab0018, 0x1060000a, 0x276247e0, ! 0x14620002, 0x24680020, 0x27684000, 0x8f820108, ! 0x11020004, 0x0, 0x8f820104, 0x15020007, ! 0x0, 0x8f430338, 0x1021, 0x24630001, ! 0xaf430338, 0x10000035, 0x8f430338, 0xac640000, ! 0xac650004, 0xac660008, 0xa467000e, 0xac690018, ! 0xac6a001c, 0xac6b0010, 0xac620014, 0xaf880100, ! 0x8f4400ec, 0x8c820000, 0x30420006, 0x10400019, ! 0x31220006, 0x10400018, 0x3c020001, 0x8c830004, ! 0x2c620010, 0x10400013, 0x3c020001, 0x24630001, ! 0xac830004, 0x8f4300f0, 0x34422ec0, 0x2e21021, ! 0x54620004, 0x24620008, 0x3c020001, 0x34422cc0, ! 0x2e21021, 0x14440015, 0x24020001, 0x8f820108, ! 0x24420020, 0xaf820108, 0x8f820108, 0x1000000f, ! 0x24020001, 0x3c020001, 0x34422ec0, 0x2e21021, ! 0x54820004, 0x24820008, 0x3c020001, 0x34422cc0, ! 0x2e21021, 0x402021, 0x24020001, 0xaf4400ec, ! 0xac890000, 0xac820004, 0x24020001, 0x3e00008, ! 0x0, 0x3e00008, 0x0, 0x27bdffd8, ! 0x3c040001, 0x24843c1c, 0x3c050001, 0xafbf0024, ! 0xafb20020, 0xafb1001c, 0xafb00018, 0x8f900104, ! 0x8f9100b0, 0x8f92011c, 0x34a52500, 0x8f820100, ! 0x2403021, 0x2203821, 0xafa20010, 0xc002a0b, ! 0xafb00014, 0x8e020008, 0xafa20010, 0x8e02000c, ! 0x3c040001, 0x24843c28, 0xafa20014, 0x8e060000, ! 0x8e070004, 0x3c050001, 0xc002a0b, 0x34a52510, ! 0x8e020018, 0xafa20010, 0x8e02001c, 0x3c040001, ! 0x24843c34, 0xafa20014, 0x8e060010, 0x8e070014, ! 0x3c050001, 0xc002a0b, 0x34a52520, 0x3c027f00, ! 0x2221024, 0x3c030800, 0x54430016, 0x3c030200, ! 0x8f82009c, 0x3042ffff, 0x14400012, 0x3c030200, ! 0x3c040001, 0x24843c40, 0x3c050002, 0x34a5f030, ! 0x3021, 0x3821, 0x36420002, 0xaf82011c, ! 0x36220001, 0xaf8200b0, 0xaf900104, 0xaf92011c, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x10000024, ! 0x0, 0x2c31024, 0x1040000d, 0x2231024, ! 0x1040000b, 0x36420002, 0xaf82011c, 0x36220001, ! 0xaf8200b0, 0xaf900104, 0xaf92011c, 0x8f420330, ! 0x24420001, 0xaf420330, 0x10000015, 0x8f420330, ! 0x3c040001, 0x24843c48, 0x240202a9, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e73c50, ! 0xc002a0b, 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8fbf0024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0028, 0x27bdffd8, 0x3c040001, ! 0x24843c58, 0x3c050001, 0xafbf0024, 0xafb20020, ! 0xafb1001c, 0xafb00018, 0x8f900124, 0x8f9100a0, ! 0x8f92011c, 0x34a52600, 0x8f820120, 0x2403021, ! 0x2203821, 0xafa20010, 0xc002a0b, 0xafb00014, ! 0x8e020008, 0xafa20010, 0x8e02000c, 0x3c040001, ! 0x24843c64, 0xafa20014, 0x8e060000, 0x8e070004, ! 0x3c050001, 0xc002a0b, 0x34a52610, 0x8e020018, ! 0xafa20010, 0x8e02001c, 0x3c040001, 0x24843c70, ! 0xafa20014, 0x8e060010, 0x8e070014, 0x3c050001, ! 0xc002a0b, 0x34a52620, 0x3c027f00, 0x2221024, ! 0x3c030800, 0x54430016, 0x3c030200, 0x8f8200ac, ! 0x3042ffff, 0x14400012, 0x3c030200, 0x3c040001, ! 0x24843c7c, 0x3c050001, 0x34a5f030, 0x3021, ! 0x3821, 0x36420002, 0xaf82011c, 0x36220001, ! 0xaf8200a0, 0xaf900124, 0xaf92011c, 0xafa00010, ! 0xc002a0b, 0xafa00014, 0x10000024, 0x0, ! 0x2c31024, 0x1040000d, 0x2231024, 0x1040000b, 0x36420002, 0xaf82011c, 0x36220001, 0xaf8200a0, ! 0xaf900124, 0xaf92011c, 0x8f42032c, 0x24420001, ! 0xaf42032c, 0x10000015, 0x8f42032c, 0x3c040001, ! 0x24843c48, 0x240202e2, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e73c50, 0xc002a0b, 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, 0x8fbf0024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, 0x6021, 0x5021, 0x3021, 0x2821, 0x6821, 0x4821, 0x7821, ! 0x7021, 0x8f880124, 0x8f870104, 0x1580002e, ! 0x8f8b011c, 0x11a00014, 0x31620800, 0x8f820120, ! 0x10460029, 0x0, 0x3c040001, 0x8c844544, ! 0x8cc20000, 0x8cc30004, 0xac820000, 0xac830004, ! 0x8cc20008, 0xac820008, 0x94c2000e, 0xa482000e, ! 0x8cc20010, 0x240c0001, 0xac820010, 0x8cc20014, ! 0x10000012, 0x24c60020, 0x10400017, 0x0, ! 0x3c040001, 0x8c844544, 0x8d020000, 0x8d030004, ! 0xac820000, 0xac830004, 0x8d020008, 0xac820008, ! 0x9502000e, 0xa482000e, 0x8d020010, 0x25060020, ! 0xac820010, 0x8d020014, 0x240c0001, 0xc01821, ! 0xac820014, 0x27624fe0, 0x43102b, 0x54400001, ! 0x27634800, 0x603021, 0x1540002f, 0x31620100, ! 0x11200014, 0x31628000, 0x8f820100, 0x1045002a, ! 0x31620100, 0x3c040001, 0x8c844540, 0x8ca20000, ! 0x8ca30004, 0xac820000, 0xac830004, 0x8ca20008, ! 0xac820008, 0x94a2000e, 0xa482000e, 0x8ca20010, ! 0x240a0001, 0xac820010, 0x8ca20014, 0x10000012, ! 0x24a50020, 0x10400018, 0x31620100, 0x3c040001, ! 0x8c844540, 0x8ce20000, 0x8ce30004, 0xac820000, ! 0xac830004, 0x8ce20008, 0xac820008, 0x94e2000e, ! 0xa482000e, 0x8ce20010, 0x24e50020, 0xac820010, ! 0x8ce20014, 0x240a0001, 0xa01821, 0xac820014, ! 0x276247e0, 0x43102b, 0x54400001, 0x27634000, ! 0x602821, 0x31620100, 0x5440001d, 0x31621000, ! 0x11a00009, 0x31a20800, 0x10400004, 0x25020020, ! 0x8f8200a8, 0xa5e20000, 0x25020020, 0xaf820124, ! 0x8f880124, 0x6821, 0x11800011, 0x31621000, ! 0x3c040001, 0x8c844544, 0x8c820000, 0x8c830004, ! 0xaf820080, 0xaf830084, 0x8c820008, 0xaf8200a4, ! 0x9482000e, 0xaf8200ac, 0x8c820010, 0x6021, ! 0xaf8200a0, 0x8c8d0010, 0x8c8f0014, 0x31621000, ! 0x1440ff82, 0x0, 0x1120000f, 0x31220800, ! 0x10400004, 0x3c020002, 0x8f8200b8, 0xa5c20000, ! 0x3c020002, 0x1221024, 0x10400004, 0x24e20020, ! 0x8f8200b4, 0xaf8200d4, 0x24e20020, 0xaf820104, ! 0x8f870104, 0x4821, 0x1140ff70, 0x0, ! 0x3c040001, 0x8c844540, 0x8c820000, 0x8c830004, ! 0xaf820090, 0xaf830094, 0x8c820008, 0xaf8200b4, ! 0x9482000e, 0xaf82009c, 0x8c820010, 0x5021, ! 0xaf8200b0, 0x8c890010, 0x1000ff60, 0x8c8e0014, ! 0x3e00008, 0x0, 0x6021, 0x5821, ! 0x3021, 0x2821, 0x6821, 0x5021, ! 0x7821, 0x7021, 0x8f880124, 0x8f870104, ! 0x3c180100, 0x1580002e, 0x8f89011c, 0x11a00014, ! 0x31220800, 0x8f820120, 0x10460029, 0x0, ! 0x3c040001, 0x8c844544, 0x8cc20000, 0x8cc30004, ! 0xac820000, 0xac830004, 0x8cc20008, 0xac820008, ! 0x94c2000e, 0xa482000e, 0x8cc20010, 0x240c0001, ! 0xac820010, 0x8cc20014, 0x10000012, 0x24c60020, ! 0x10400017, 0x0, 0x3c040001, 0x8c844544, ! 0x8d020000, 0x8d030004, 0xac820000, 0xac830004, ! 0x8d020008, 0xac820008, 0x9502000e, 0xa482000e, ! 0x8d020010, 0x25060020, 0xac820010, 0x8d020014, ! 0x240c0001, 0xc01821, 0xac820014, 0x27624fe0, ! 0x43102b, 0x54400001, 0x27634800, 0x603021, ! 0x1560002f, 0x31220100, 0x11400014, 0x31228000, ! 0x8f820100, 0x1045002a, 0x31220100, 0x3c040001, ! 0x8c844540, 0x8ca20000, 0x8ca30004, 0xac820000, ! 0xac830004, 0x8ca20008, 0xac820008, 0x94a2000e, ! 0xa482000e, 0x8ca20010, 0x240b0001, 0xac820010, ! 0x8ca20014, 0x10000012, 0x24a50020, 0x10400018, ! 0x31220100, 0x3c040001, 0x8c844540, 0x8ce20000, ! 0x8ce30004, 0xac820000, 0xac830004, 0x8ce20008, ! 0xac820008, 0x94e2000e, 0xa482000e, 0x8ce20010, ! 0x24e50020, 0xac820010, 0x8ce20014, 0x240b0001, ! 0xa01821, 0xac820014, 0x276247e0, 0x43102b, ! 0x54400001, 0x27634000, 0x602821, 0x31220100, ! 0x5440001d, 0x31221000, 0x11a00009, 0x31a20800, ! 0x10400004, 0x25020020, 0x8f8200a8, 0xa5e20000, ! 0x25020020, 0xaf820124, 0x8f880124, 0x6821, ! 0x11800011, 0x31221000, 0x3c040001, 0x8c844544, ! 0x8c820000, 0x8c830004, 0xaf820080, 0xaf830084, ! 0x8c820008, 0xaf8200a4, 0x9482000e, 0xaf8200ac, ! 0x8c820010, 0x6021, 0xaf8200a0, 0x8c8d0010, ! 0x8c8f0014, 0x31221000, 0x14400022, 0x0, ! 0x1140000f, 0x31420800, 0x10400004, 0x3c020002, ! 0x8f8200b8, 0xa5c20000, 0x3c020002, 0x1421024, ! 0x10400004, 0x24e20020, 0x8f8200b4, 0xaf8200d4, ! 0x24e20020, 0xaf820104, 0x8f870104, 0x5021, ! 0x11600010, 0x0, 0x3c040001, 0x8c844540, ! 0x8c820000, 0x8c830004, 0xaf820090, 0xaf830094, ! 0x8c820008, 0xaf8200b4, 0x9482000e, 0xaf82009c, ! 0x8c820010, 0x5821, 0xaf8200b0, 0x8c8a0010, ! 0x8c8e0014, 0x8f820070, 0x3c031000, 0x431024, ! 0x1040ff5c, 0x0, 0x8f820054, 0x24420005, ! 0xaf820078, 0x8c040234, 0x10800016, 0x1821, ! 0x3c020001, 0x571021, 0x8c4240e8, 0x24420005, ! 0x3c010001, 0x370821, 0xac2240e8, 0x3c020001, ! 0x571021, 0x8c4240e8, 0x44102b, 0x14400009, ! 0x24020001, 0x3c030080, 0x3c010001, 0x370821, ! 0xac2040e8, 0x3c010001, 0x370821, 0x1000000c, ! 0xa02240f0, 0x3c020001, 0x571021, 0x904240f0, 0x14400006, 0x3c020080, 0x3c020001, 0x571021, 0x904240f1, 0x10400002, 0x3c020080, 0x621825, 0x8c040230, 0x10800013, 0x0, 0x3c020001, --- 1514,1872 ---- 0x2021023, 0x2c4203e9, 0x1440ffef, 0x0, 0x326200ff, 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, ! 0x8faa002c, 0xafa20010, 0x8f820124, 0x3c040001, ! 0x2484792c, 0x3c050009, 0xafa20014, 0x8d460000, ! 0x34a50700, 0xc002d3b, 0x3c03821, 0x8f4202b4, ! 0x24420001, 0xaf4202b4, 0x8f4202b4, 0x8f4202f4, ! 0x24420001, 0xaf4202f4, 0x8f4202f4, 0x8fbf0048, ! 0x8fbe0044, 0x8fb50040, 0x8fb3003c, 0x8fb20038, ! 0x8fb10034, 0x8fb00030, 0x3e00008, 0x27bd0050, ! 0x27bdffa0, 0x801021, 0xafb00040, 0x24500002, ! 0x2002021, 0x24050006, 0xafb10044, 0x408821, ! 0xafbf0058, 0xafbe0054, 0xafb50050, 0xafb3004c, ! 0xc00252e, 0xafb20048, 0x3048007f, 0x810c0, ! 0x2e21021, 0x3c060001, 0xc23021, 0x94c630d0, ! 0x10c0001c, 0x3821, 0x3c0a0001, 0x354a34d2, ! 0x96290002, 0x610c0, 0x572021, 0x8a2021, ! 0x94820000, 0x14490009, 0x2821, 0x94830002, ! 0x96020002, 0x14620006, 0xa01021, 0x94820004, ! 0x96030004, 0x431026, 0x2c450001, 0xa01021, ! 0x14400008, 0x610c0, 0xc03821, 0x2e21021, ! 0x3c060001, 0xc23021, 0x94c634d0, 0x14c0ffea, ! 0x610c0, 0x14c00011, 0xafa70028, 0x810c0, ! 0x2e21021, 0xafa80010, 0x3c010001, 0x220821, ! 0x942230d0, 0x3c040001, 0x24847968, 0xafa20014, ! 0x8e260000, 0x8e270004, 0x3c050004, 0xc002d3b, ! 0x34a50900, 0x10000075, 0x3c020800, 0x10e0000c, ! 0x610c0, 0x2e21021, 0x3c030001, 0x621821, ! 0x946334d0, 0x710c0, 0x2e21021, 0x3c010001, ! 0x220821, 0xa42334d0, 0x1000000b, 0x3c040001, ! 0x2e21021, 0x3c030001, 0x621821, 0x946334d0, ! 0x810c0, 0x2e21021, 0x3c010001, 0x220821, ! 0xa42330d0, 0x3c040001, 0x348430d0, 0x8f430100, ! 0x610c0, 0x2e21021, 0x3c010001, 0x220821, ! 0xa42334d0, 0x8f420104, 0x2e43821, 0x2821, ! 0x18400029, 0xaf460100, 0x24e60006, 0x94c3fffc, ! 0x96020000, 0x14620009, 0x2021, 0x94c3fffe, ! 0x96020002, 0x14620006, 0x801021, 0x94c20000, ! 0x96030004, 0x431026, 0x2c440001, 0x801021, ! 0x50400014, 0x24a50001, 0x8f420104, 0x2442ffff, ! 0xa2102a, 0x1040000b, 0x24e40004, 0x94820006, ! 0x8c830008, 0xa482fffe, 0xac830000, 0x8f420104, ! 0x24a50001, 0x2442ffff, 0xa2102a, 0x1440fff7, ! 0x24840008, 0x8f420104, 0x2442ffff, 0x10000006, ! 0xaf420104, 0x8f420104, 0x24c60008, 0xa2102a, ! 0x1440ffda, 0x24e70008, 0x810c0, 0x2e21021, ! 0x3c010001, 0x220821, 0x942230d0, 0x14400023, ! 0x3c020800, 0x3c020002, 0x2c21024, 0x10400012, ! 0x82142, 0x3c030001, 0x346338d8, 0x24020003, ! 0x441023, 0x21080, 0x572021, 0x832021, ! 0x571021, 0x431021, 0x3105001f, 0x24030001, ! 0x8c420000, 0xa31804, 0x31827, 0x431024, ! 0x1000000d, 0xac820000, 0x24020003, 0x441023, ! 0x21080, 0x5c2821, 0x5c1021, 0x3104001f, ! 0x24030001, 0x8c420228, 0x831804, 0x31827, ! 0x431024, 0xaca20228, 0x3c020800, 0x34422000, ! 0x1821, 0xafa20020, 0x8f5e0018, 0x27ab0020, ! 0x240200ff, 0x13c20002, 0xafab0034, 0x27c30001, ! 0x8c020228, 0x609021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, ! 0x8c020228, 0x3c040001, 0x24847918, 0x3c050009, ! 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006b, ! 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, ! 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, ! 0x247003e8, 0x2021023, 0x2c4203e9, 0x1040001b, ! 0x9821, 0xe08821, 0x263504c0, 0x8f440178, ! 0x8f45017c, 0x2201821, 0x240b0004, 0xafab0010, ! 0xafb20014, 0x8f48000c, 0x1021, 0x2f53021, 0xafa80018, 0x8f48010c, 0x24070008, 0xa32821, 0xa3482b, 0x822021, 0x100f809, 0x892021, ! 0x54400006, 0x24130001, 0x8f820054, 0x2021023, ! 0x2c4203e9, 0x1440ffe9, 0x0, 0x326200ff, ! 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8fab0034, ! 0xafa20010, 0x8f820124, 0x3c040001, 0x24847924, ! 0x3c050009, 0xafa20014, 0x8d660000, 0x10000033, ! 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, ! 0xaf420308, 0x8f420308, 0x1000001c, 0x326200ff, ! 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, ! 0x2c4203e9, 0x10400014, 0x9821, 0x24110010, ! 0x8f42000c, 0x8f440160, 0x8f450164, 0x8f860120, ! 0xafb10010, 0xafb20014, 0xafa20018, 0x8f42010c, ! 0x24070008, 0x40f809, 0x24c6001c, 0x1440ffe5, ! 0x0, 0x8f820054, 0x2021023, 0x2c4203e9, ! 0x1440ffef, 0x0, 0x326200ff, 0x14400011, ! 0x0, 0x8f420378, 0x24420001, 0xaf420378, ! 0x8f420378, 0x8f820120, 0x8fab0034, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x2484792c, 0x3c050009, ! 0xafa20014, 0x8d660000, 0x34a50700, 0xc002d3b, ! 0x3c03821, 0x8f4202b8, 0x24420001, 0xaf4202b8, ! 0x8f4202b8, 0x8f4202f4, 0x24420001, 0xaf4202f4, ! 0x8f4202f4, 0x8fbf0058, 0x8fbe0054, 0x8fb50050, ! 0x8fb3004c, 0x8fb20048, 0x8fb10044, 0x8fb00040, ! 0x3e00008, 0x27bd0060, 0x27bdffe0, 0x27644000, ! 0xafbf0018, 0xc002da8, 0x24051000, 0x3c030001, ! 0x34632cc0, 0x3c040001, 0x34842ec8, 0x24020020, ! 0xaf82011c, 0x2e31021, 0xaf800100, 0xaf800104, ! 0xaf800108, 0xaf800110, 0xaf800114, 0xaf800118, ! 0xaf800120, 0xaf800124, 0xaf800128, 0xaf800130, ! 0xaf800134, 0xaf800138, 0xaf4200ec, 0x2e31021, ! 0xaf4200f0, 0x2e41021, 0xaf4200f4, 0x2e41021, ! 0xaf4200f8, 0x3c020001, 0x571021, 0x904240f4, ! 0x1440001c, 0x3c050001, 0x8f82011c, 0x3c040001, ! 0x24847a24, 0x3c050001, 0x34420001, 0xaf82011c, ! 0xafa00010, 0xafa00014, 0x8f86011c, 0x34a50100, ! 0xc002d3b, 0x3821, 0x8c020218, 0x30420040, ! 0x10400014, 0x0, 0x8f82011c, 0x3c040001, ! 0x24847a30, 0x3c050001, 0x34420004, 0xaf82011c, ! 0xafa00010, 0xafa00014, 0x8f86011c, 0x10000007, ! 0x34a50200, 0x3c040001, 0x24847a38, 0xafa00010, ! 0xafa00014, 0x8f86011c, 0x34a50300, 0xc002d3b, ! 0x3821, 0x8fbf0018, 0x3e00008, 0x27bd0020, ! 0x27bdffd8, 0xafb1001c, 0x8fb10038, 0xafbf0020, ! 0xafb00018, 0x8f83012c, 0x8fa9003c, 0x8faa0040, ! 0x1060000a, 0x27624fe0, 0x14620002, 0x24680020, ! 0x27684800, 0x8f820128, 0x11020004, 0x0, ! 0x8f820124, 0x15020008, 0x0, 0x8f430334, ! 0x1021, 0x24630001, 0xaf430334, 0x8f430334, ! 0x10000052, 0x0, 0xac640000, 0xac650004, ! 0xac660008, 0xa467000e, 0xac710018, 0xac69001c, ! 0xac6a0010, 0xac620014, 0xaf880120, 0x8f4200fc, ! 0x8f5000f4, 0x2442ffff, 0xaf4200fc, 0x8e020000, ! 0x10510005, 0x3042ff8f, 0x10400019, 0x3222ff8f, ! 0x10400018, 0x3c020001, 0x8e030004, 0x2c620010, ! 0x10400013, 0x3c020001, 0x24630001, 0xae030004, 0x8f4300f8, 0x344230c8, 0x2e21021, 0x54620004, 0x24620008, 0x3c020001, 0x34422ec8, 0x2e21021, ! 0x1450002e, 0x24020001, 0x8f820128, 0x24420020, ! 0xaf820128, 0x8f820128, 0x10000028, 0x24020001, ! 0x3c020001, 0x344230c8, 0x2e21021, 0x16020004, ! 0x26030008, 0x3c020001, 0x34422ec8, 0x2e21821, ! 0x8f4200f8, 0x608021, 0x12020004, 0xaf5000f4, ! 0x8e020000, 0x10400016, 0x24020001, 0x24020170, ! 0x3c040001, 0x24847a40, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77a48, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x24020001, ! 0xae110000, 0xae020004, 0x24020001, 0x8fbf0020, ! 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, ! 0x3e00008, 0x0, 0x27bdffc8, 0xafb30024, ! 0xafb20020, 0x809021, 0xa09821, 0xafb50028, ! 0xc0a821, 0xafbf0030, 0xafbe002c, 0xafb1001c, ! 0xafb00018, 0x8f900120, 0x27624fe0, 0x16020003, ! 0xe0f021, 0x10000002, 0x27714800, 0x26110020, ! 0x8f820128, 0x16220008, 0x0, 0x8f430334, ! 0x1021, 0x24630001, 0xaf430334, 0x8f430334, ! 0x10000028, 0x0, 0x8f820124, 0x16220014, ! 0x240201ab, 0x3c040001, 0x24847a40, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77a48, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0xae120000, 0xae130004, 0xae150008, 0xa61e000e, ! 0x8fa80048, 0xae080018, 0x8fa8004c, 0x26020016, ! 0xae08001c, 0xae020014, 0x8fa80050, 0xae080010, ! 0xaf910120, 0x8f4300fc, 0x24020001, 0x2463ffff, ! 0xaf4300fc, 0x8fbf0030, 0x8fbe002c, 0x8fb50028, ! 0x8fb30024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0038, 0x3e00008, 0x0, ! 0x27bdffd8, 0xafb1001c, 0x8fb10038, 0xafbf0020, ! 0xafb00018, 0x8f83010c, 0x8fa9003c, 0x8faa0040, ! 0x1060000a, 0x276247e0, 0x14620002, 0x24680020, ! 0x27684000, 0x8f820108, 0x11020004, 0x0, ! 0x8f820104, 0x15020008, 0x0, 0x8f430338, ! 0x1021, 0x24630001, 0xaf430338, 0x8f430338, ! 0x1000004e, 0x0, 0xac640000, 0xac650004, ! 0xac660008, 0xa467000e, 0xac710018, 0xac69001c, ! 0xac6a0010, 0xac620014, 0xaf880100, 0x8f5000ec, ! 0x8e020000, 0x30420006, 0x10400019, 0x32220006, ! 0x10400018, 0x3c020001, 0x8e030004, 0x2c620010, ! 0x10400013, 0x3c020001, 0x24630001, 0xae030004, ! 0x8f4300f0, 0x34422ec0, 0x2e21021, 0x54620004, ! 0x24620008, 0x3c020001, 0x34422cc0, 0x2e21021, ! 0x1450002e, 0x24020001, 0x8f820108, 0x24420020, ! 0xaf820108, 0x8f820108, 0x10000028, 0x24020001, ! 0x3c020001, 0x34422ec0, 0x2e21021, 0x16020004, ! 0x26030008, 0x3c020001, 0x34422cc0, 0x2e21821, ! 0x8f4200f0, 0x608021, 0x12020004, 0xaf5000ec, ! 0x8e020000, 0x10400016, 0x24020001, 0x24020212, ! 0x3c040001, 0x24847a40, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77a48, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x24020001, ! 0xae110000, 0xae020004, 0x24020001, 0x8fbf0020, ! 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, ! 0x3e00008, 0x0, 0x27bdffc8, 0xafb30024, ! 0xafb20020, 0x809021, 0xa09821, 0xafb50028, ! 0xc0a821, 0xafbf0030, 0xafbe002c, 0xafb1001c, ! 0xafb00018, 0x8f900100, 0x276247e0, 0x16020003, ! 0xe0f021, 0x10000002, 0x27714000, 0x26110020, ! 0x8f820108, 0x16220008, 0x0, 0x8f430338, ! 0x1021, 0x24630001, 0xaf430338, 0x8f430338, ! 0x10000025, 0x0, 0x8f820104, 0x16220014, ! 0x2402024d, 0x3c040001, 0x24847a40, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77a48, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0xae120000, 0xae130004, 0xae150008, 0xa61e000e, ! 0x8fa80048, 0xae080018, 0x8fa8004c, 0x26030016, ! 0xae08001c, 0xae030014, 0x8fa80050, 0x24020001, ! 0xae080010, 0xaf910100, 0x8fbf0030, 0x8fbe002c, ! 0x8fb50028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, ! 0x8fb00018, 0x3e00008, 0x27bd0038, 0x3e00008, ! 0x0, 0x27bdffd8, 0x3c040001, 0x24847a50, ! 0x3c050001, 0xafbf0024, 0xafb20020, 0xafb1001c, ! 0xafb00018, 0x8f900104, 0x8f9100b0, 0x8f92011c, ! 0x34a52500, 0x8f820100, 0x2403021, 0x2203821, ! 0xafa20010, 0xc002d3b, 0xafb00014, 0x8e020008, ! 0xafa20010, 0x8e02000c, 0x3c040001, 0x24847a5c, ! 0xafa20014, 0x8e060000, 0x8e070004, 0x3c050001, ! 0xc002d3b, 0x34a52510, 0x8e020018, 0xafa20010, ! 0x8e02001c, 0x3c040001, 0x24847a68, 0xafa20014, ! 0x8e060010, 0x8e070014, 0x3c050001, 0xc002d3b, ! 0x34a52520, 0x3c027f00, 0x2221024, 0x3c030800, ! 0x54430016, 0x3c030200, 0x8f82009c, 0x3042ffff, ! 0x14400012, 0x3c030200, 0x3c040001, 0x24847a74, ! 0x3c050002, 0x34a5f030, 0x3021, 0x3821, ! 0x36420002, 0xaf82011c, 0x36220001, 0xaf8200b0, ! 0xaf900104, 0xaf92011c, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x10000025, 0x0, 0x2c31024, ! 0x1040000e, 0x2231024, 0x1040000c, 0x36420002, ! 0xaf82011c, 0x36220001, 0xaf8200b0, 0xaf900104, ! 0xaf92011c, 0x8f420330, 0x24420001, 0xaf420330, ! 0x8f420330, 0x10000015, 0x0, 0x3c040001, ! 0x24847a40, 0x240202a9, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77a48, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x8fbf0024, ! 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x3e00008, ! 0x27bd0028, 0x27bdffd8, 0x3c040001, 0x24847a7c, ! 0x3c050001, 0xafbf0024, 0xafb20020, 0xafb1001c, ! 0xafb00018, 0x8f900124, 0x8f9100a0, 0x8f92011c, ! 0x34a52600, 0x8f820120, 0x2403021, 0x2203821, ! 0xafa20010, 0xc002d3b, 0xafb00014, 0x8e020008, ! 0xafa20010, 0x8e02000c, 0x3c040001, 0x24847a88, ! 0xafa20014, 0x8e060000, 0x8e070004, 0x3c050001, ! 0xc002d3b, 0x34a52610, 0x8e020018, 0xafa20010, ! 0x8e02001c, 0x3c040001, 0x24847a94, 0xafa20014, ! 0x8e060010, 0x8e070014, 0x3c050001, 0xc002d3b, ! 0x34a52620, 0x3c027f00, 0x2221024, 0x3c030800, ! 0x54430016, 0x3c030200, 0x8f8200ac, 0x3042ffff, ! 0x14400012, 0x3c030200, 0x3c040001, 0x24847aa0, ! 0x3c050001, 0x34a5f030, 0x3021, 0x3821, 0x36420002, 0xaf82011c, 0x36220001, 0xaf8200a0, ! 0xaf900124, 0xaf92011c, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x10000025, 0x0, 0x2c31024, ! 0x1040000e, 0x2231024, 0x1040000c, 0x36420002, ! 0xaf82011c, 0x36220001, 0xaf8200a0, 0xaf900124, ! 0xaf92011c, 0x8f42032c, 0x24420001, 0xaf42032c, ! 0x8f42032c, 0x10000015, 0x0, 0x3c040001, ! 0x24847a40, 0x240202e2, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77a48, 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, 0x8fbf0024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, 0x6021, 0x5021, 0x3021, 0x2821, 0x6821, 0x4821, 0x7821, ! 0x7021, 0x8f880124, 0x8f870104, 0x8f8b011c, ! 0x1580002e, 0x0, 0x11a00014, 0x31620800, ! 0x8f820120, 0x10460029, 0x0, 0x3c040002, ! 0x8c848640, 0x8cc20000, 0x8cc30004, 0xac820000, ! 0xac830004, 0x8cc20008, 0xac820008, 0x94c2000e, ! 0xa482000e, 0x8cc20010, 0x240c0001, 0xac820010, ! 0x8cc20014, 0x10000012, 0x24c60020, 0x10400017, ! 0x0, 0x3c040002, 0x8c848640, 0x8d020000, ! 0x8d030004, 0xac820000, 0xac830004, 0x8d020008, ! 0xac820008, 0x9502000e, 0xa482000e, 0x8d020010, ! 0x25060020, 0xac820010, 0x8d020014, 0x240c0001, ! 0xc01821, 0xac820014, 0x27624fe0, 0x43102b, ! 0x54400001, 0x27634800, 0x603021, 0x1540002f, ! 0x31620100, 0x11200014, 0x31628000, 0x8f820100, ! 0x1045002a, 0x31620100, 0x3c040002, 0x8c84863c, ! 0x8ca20000, 0x8ca30004, 0xac820000, 0xac830004, ! 0x8ca20008, 0xac820008, 0x94a2000e, 0xa482000e, ! 0x8ca20010, 0x240a0001, 0xac820010, 0x8ca20014, ! 0x10000012, 0x24a50020, 0x10400018, 0x31620100, ! 0x3c040002, 0x8c84863c, 0x8ce20000, 0x8ce30004, ! 0xac820000, 0xac830004, 0x8ce20008, 0xac820008, ! 0x94e2000e, 0xa482000e, 0x8ce20010, 0x24e50020, ! 0xac820010, 0x8ce20014, 0x240a0001, 0xa01821, ! 0xac820014, 0x276247e0, 0x43102b, 0x54400001, ! 0x27634000, 0x602821, 0x31620100, 0x5440001d, ! 0x31621000, 0x11a00009, 0x31a20800, 0x10400004, ! 0x25020020, 0x8f8200a8, 0xa5e20000, 0x25020020, ! 0xaf820124, 0x8f880124, 0x6821, 0x11800011, ! 0x31621000, 0x3c040002, 0x8c848640, 0x8c820000, ! 0x8c830004, 0xaf820080, 0xaf830084, 0x8c820008, ! 0xaf8200a4, 0x9482000e, 0xaf8200ac, 0x8c820010, ! 0x6021, 0xaf8200a0, 0x8c8d0010, 0x8c8f0014, ! 0x31621000, 0x1440ff81, 0x0, 0x1120000f, ! 0x31220800, 0x10400004, 0x3c020002, 0x8f8200b8, ! 0xa5c20000, 0x3c020002, 0x1221024, 0x10400004, ! 0x24e20020, 0x8f8200b4, 0xaf8200d4, 0x24e20020, ! 0xaf820104, 0x8f870104, 0x4821, 0x1140ff6f, ! 0x0, 0x3c040002, 0x8c84863c, 0x8c820000, ! 0x8c830004, 0xaf820090, 0xaf830094, 0x8c820008, ! 0xaf8200b4, 0x9482000e, 0xaf82009c, 0x8c820010, ! 0x5021, 0xaf8200b0, 0x8c890010, 0x8c8e0014, ! 0x1000ff5e, 0x0, 0x3e00008, 0x0, ! 0x6021, 0x5821, 0x3021, 0x2821, ! 0x6821, 0x5021, 0x7821, 0x7021, ! 0x8f880124, 0x8f870104, 0x3c180100, 0x8f89011c, ! 0x1580002e, 0x0, 0x11a00014, 0x31220800, ! 0x8f820120, 0x10460029, 0x0, 0x3c040002, ! 0x8c848640, 0x8cc20000, 0x8cc30004, 0xac820000, ! 0xac830004, 0x8cc20008, 0xac820008, 0x94c2000e, ! 0xa482000e, 0x8cc20010, 0x240c0001, 0xac820010, ! 0x8cc20014, 0x10000012, 0x24c60020, 0x10400017, ! 0x0, 0x3c040002, 0x8c848640, 0x8d020000, ! 0x8d030004, 0xac820000, 0xac830004, 0x8d020008, ! 0xac820008, 0x9502000e, 0xa482000e, 0x8d020010, ! 0x25060020, 0xac820010, 0x8d020014, 0x240c0001, ! 0xc01821, 0xac820014, 0x27624fe0, 0x43102b, ! 0x54400001, 0x27634800, 0x603021, 0x1560002f, ! 0x31220100, 0x11400014, 0x31228000, 0x8f820100, ! 0x1045002a, 0x31220100, 0x3c040002, 0x8c84863c, ! 0x8ca20000, 0x8ca30004, 0xac820000, 0xac830004, ! 0x8ca20008, 0xac820008, 0x94a2000e, 0xa482000e, ! 0x8ca20010, 0x240b0001, 0xac820010, 0x8ca20014, ! 0x10000012, 0x24a50020, 0x10400018, 0x31220100, ! 0x3c040002, 0x8c84863c, 0x8ce20000, 0x8ce30004, ! 0xac820000, 0xac830004, 0x8ce20008, 0xac820008, ! 0x94e2000e, 0xa482000e, 0x8ce20010, 0x24e50020, ! 0xac820010, 0x8ce20014, 0x240b0001, 0xa01821, ! 0xac820014, 0x276247e0, 0x43102b, 0x54400001, ! 0x27634000, 0x602821, 0x31220100, 0x5440001d, ! 0x31221000, 0x11a00009, 0x31a20800, 0x10400004, ! 0x25020020, 0x8f8200a8, 0xa5e20000, 0x25020020, ! 0xaf820124, 0x8f880124, 0x6821, 0x11800011, ! 0x31221000, 0x3c040002, 0x8c848640, 0x8c820000, ! 0x8c830004, 0xaf820080, 0xaf830084, 0x8c820008, ! 0xaf8200a4, 0x9482000e, 0xaf8200ac, 0x8c820010, ! 0x6021, 0xaf8200a0, 0x8c8d0010, 0x8c8f0014, ! 0x31221000, 0x14400022, 0x0, 0x1140000f, ! 0x31420800, 0x10400004, 0x3c020002, 0x8f8200b8, ! 0xa5c20000, 0x3c020002, 0x1421024, 0x10400004, ! 0x24e20020, 0x8f8200b4, 0xaf8200d4, 0x24e20020, ! 0xaf820104, 0x8f870104, 0x5021, 0x11600010, ! 0x0, 0x3c040002, 0x8c84863c, 0x8c820000, ! 0x8c830004, 0xaf820090, 0xaf830094, 0x8c820008, ! 0xaf8200b4, 0x9482000e, 0xaf82009c, 0x8c820010, ! 0x5821, 0xaf8200b0, 0x8c8a0010, 0x8c8e0014, ! 0x8f820070, 0x3c031000, 0x431024, 0x1040ff5b, ! 0x0, 0x8f820054, 0x24420005, 0xaf820078, ! 0x8c040234, 0x10800017, 0x1821, 0x3c020001, ! 0x571021, 0x8c4240e8, 0x24420005, 0x3c010001, ! 0x370821, 0xac2240e8, 0x3c020001, 0x571021, ! 0x8c4240e8, 0x44102b, 0x1440000a, 0x24020001, ! 0x3c030080, 0x3c010001, 0x370821, 0xac2040e8, ! 0x3c010001, 0x370821, 0xa02240f0, 0x1000000c, ! 0x0, 0x3c020001, 0x571021, 0x904240f0, 0x14400006, 0x3c020080, 0x3c020001, 0x571021, 0x904240f1, 0x10400002, 0x3c020080, 0x621825, 0x8c040230, 0x10800013, 0x0, 0x3c020001, *************** *** 1673,1720 **** 0x8c4240ec, 0x44102b, 0x14400006, 0x0, 0x3c010001, 0x370821, 0xac2040ec, 0x10000006, 0x781825, 0x3c020001, 0x571021, 0x904240f2, ! 0x54400001, 0x781825, 0x1060ff1a, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x431025, 0xaf820060, ! 0x8f420000, 0x10400003, 0x0, 0x1000ff05, ! 0xaf80004c, 0x1000ff03, 0xaf800048, 0x3e00008, ! 0x0, 0x0, 0x0, 0x3c020001, ! 0x8c4243b8, 0x27bdffe8, 0xafbf0014, 0x14400012, ! 0xafb00010, 0x3c100001, 0x261045e0, 0x2002021, ! 0xc002a78, 0x24052000, 0x26021fe0, 0x3c010001, ! 0xac22454c, 0x3c010001, 0xac224548, 0xac020250, 0x24022000, 0xac100254, 0xac020258, 0x24020001, ! 0x3c010001, 0xac2243b8, 0x8fbf0014, 0x8fb00010, ! 0x3e00008, 0x27bd0018, 0x3c090001, 0x8d29454c, 0x8c820000, 0x8fa30010, 0x8fa80014, 0xad220000, 0x8c820004, 0xad250008, 0xad220004, 0x8f820054, 0xad260010, 0xad270014, 0xad230018, 0xad28001c, ! 0xad22000c, 0x2529ffe0, 0x3c020001, 0x244245e0, ! 0x122102b, 0x10400003, 0x0, 0x3c090001, ! 0x8d294548, 0x3c020001, 0x8c4243a0, 0xad220000, ! 0x3c020001, 0x8c4243a0, 0x3c010001, 0xac29454c, ! 0xad220004, 0x3e00008, 0xac090250, 0x27bdffd0, ! 0xafb00010, 0x3c100001, 0x8e10454c, 0x3c020001, ! 0x8c4243a0, 0xafb10014, 0x808821, 0xafbe0024, ! 0x8fbe0040, 0x8fa40048, 0xafb20018, 0xa09021, ! 0xafbf0028, 0xafb50020, 0xafb3001c, 0xae020000, ! 0x3c020001, 0x8c4243a0, 0xc09821, 0xe0a821, ! 0x10800006, 0xae020004, 0x26050008, 0xc002a83, ! 0x24060018, 0x10000005, 0x2610ffe0, 0x26040008, ! 0xc002a78, 0x24050018, 0x2610ffe0, 0x3c030001, ! 0x246345e0, 0x203102b, 0x10400003, 0x0, ! 0x3c100001, 0x8e104548, 0x8e220000, 0xae020000, ! 0x8e220004, 0xae120008, 0xae020004, 0x8f820054, ! 0xae130010, 0xae150014, 0xae1e0018, 0x8fa80044, ! 0xae08001c, 0xae02000c, 0x2610ffe0, 0x203102b, ! 0x10400003, 0x0, 0x3c100001, 0x8e104548, ! 0x3c020001, 0x8c4243a0, 0xae020000, 0x3c020001, ! 0x8c4243a0, 0x3c010001, 0xac30454c, 0xae020004, ! 0xac100250, 0x8fbf0028, 0x8fbe0024, 0x8fb50020, ! 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, ! 0x3e00008, 0x27bd0030, 0x0, 0x851821, 0x83102b, 0x10400006, 0x0, 0xac800000, 0x24840004, 0x83102b, 0x5440fffd, 0xac800000, 0x3e00008, 0x0, 0xa61821, 0xa3102b, --- 1875,1922 ---- 0x8c4240ec, 0x44102b, 0x14400006, 0x0, 0x3c010001, 0x370821, 0xac2040ec, 0x10000006, 0x781825, 0x3c020001, 0x571021, 0x904240f2, ! 0x54400001, 0x781825, 0x1060ff18, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x431025, 0xaf820060, ! 0x8f420000, 0x10400004, 0x0, 0xaf80004c, ! 0x1000ff02, 0x0, 0xaf800048, 0x1000feff, ! 0x0, 0x3e00008, 0x0, 0x3c020002, ! 0x8c4284a8, 0x27bdffe8, 0xafbf0014, 0x14400012, ! 0xafb00010, 0x3c100002, 0x261086f0, 0x2002021, ! 0xc002da8, 0x24052000, 0x26021fe0, 0x3c010002, ! 0xac228648, 0x3c010002, 0xac228644, 0xac020250, 0x24022000, 0xac100254, 0xac020258, 0x24020001, ! 0x3c010002, 0xac2284a8, 0x8fbf0014, 0x8fb00010, ! 0x3e00008, 0x27bd0018, 0x3c090002, 0x8d298648, 0x8c820000, 0x8fa30010, 0x8fa80014, 0xad220000, 0x8c820004, 0xad250008, 0xad220004, 0x8f820054, 0xad260010, 0xad270014, 0xad230018, 0xad28001c, ! 0xad22000c, 0x2529ffe0, 0x3c020002, 0x244286f0, ! 0x122102b, 0x10400003, 0x0, 0x3c090002, ! 0x8d298644, 0x3c020002, 0x8c42849c, 0xad220000, ! 0x3c020002, 0x8c42849c, 0x3c010002, 0xac298648, ! 0xad220004, 0xac090250, 0x3e00008, 0x0, ! 0x27bdffd0, 0xafb00010, 0x3c100002, 0x8e108648, ! 0x3c020002, 0x8c42849c, 0xafb10014, 0x808821, ! 0xafbe0024, 0x8fbe0040, 0x8fa40048, 0xafb20018, ! 0xa09021, 0xafbf0028, 0xafb50020, 0xafb3001c, ! 0xae020000, 0x3c020002, 0x8c42849c, 0xc09821, ! 0xe0a821, 0x10800006, 0xae020004, 0x26050008, ! 0xc002db3, 0x24060018, 0x10000005, 0x2610ffe0, ! 0x26040008, 0xc002da8, 0x24050018, 0x2610ffe0, ! 0x3c030002, 0x246386f0, 0x203102b, 0x10400003, ! 0x0, 0x3c100002, 0x8e108644, 0x8e220000, ! 0xae020000, 0x8e220004, 0xae120008, 0xae020004, ! 0x8f820054, 0xae130010, 0xae150014, 0xae1e0018, ! 0x8fa80044, 0xae08001c, 0xae02000c, 0x2610ffe0, ! 0x203102b, 0x10400003, 0x0, 0x3c100002, ! 0x8e108644, 0x3c020002, 0x8c42849c, 0xae020000, ! 0x3c020002, 0x8c42849c, 0x3c010002, 0xac308648, ! 0xae020004, 0xac100250, 0x8fbf0028, 0x8fbe0024, ! 0x8fb50020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, ! 0x8fb00010, 0x3e00008, 0x27bd0030, 0x851821, 0x83102b, 0x10400006, 0x0, 0xac800000, 0x24840004, 0x83102b, 0x5440fffd, 0xac800000, 0x3e00008, 0x0, 0xa61821, 0xa3102b, *************** *** 1726,1814 **** 0x3e00008, 0x0, 0x63080, 0x861821, 0x83102b, 0x10400006, 0x0, 0xac850000, 0x24840004, 0x83102b, 0x5440fffd, 0xac850000, ! 0x3e00008, 0x0, 0x0, 0x26e50028, ! 0xa03021, 0x274301c0, 0x8f4d0358, 0x8f47035c, ! 0x8f480360, 0x8f490364, 0x8f4a0368, 0x8f4b0204, ! 0x8f4c0200, 0x24640400, 0x64102b, 0x10400008, ! 0x3c0208ff, 0x8cc20000, 0xac620000, 0x24630004, ! 0x64102b, 0x1440fffb, 0x24c60004, 0x3c0208ff, ! 0x3442ffff, 0x3c03c0ff, 0xaf4d0358, 0xaf47035c, ! 0xaf480360, 0xaf490364, 0xaf4a0368, 0xaf4b0204, ! 0xaf4c0200, 0x8f840220, 0x3463ffff, 0x8f860200, ! 0x821024, 0x34420004, 0xc31824, 0x34630004, ! 0xaf820220, 0xaf830200, 0x8ca20214, 0xac020084, ! 0x8ca20218, 0xac020088, 0x8ca2021c, 0xac02008c, ! 0x8ca20220, 0xac020090, 0x8ca20224, 0xac020094, ! 0x8ca20228, 0xac020098, 0x8ca2022c, 0xac02009c, ! 0x8ca20230, 0xac0200a0, 0x8ca20234, 0xac0200a4, ! 0x8ca20238, 0xac0200a8, 0x8ca2023c, 0xac0200ac, ! 0x8ca20240, 0xac0200b0, 0x8ca20244, 0xac0200b4, ! 0x8ca20248, 0xac0200b8, 0x8ca2024c, 0xac0200bc, ! 0x8ca2001c, 0xac020080, 0x8ca20018, 0xac0200c0, ! 0x8ca20020, 0xac0200cc, 0x8ca20024, 0xac0200d0, ! 0x8ca201d0, 0xac0200e0, 0x8ca201d4, 0xac0200e4, ! 0x8ca201d8, 0xac0200e8, 0x8ca201dc, 0xac0200ec, ! 0x8ca201e0, 0xac0200f0, 0x8ca20098, 0x8ca3009c, ! 0xac0300fc, 0x8ca200a8, 0x8ca300ac, 0xac0300f4, ! 0x8ca200a0, 0x8ca300a4, 0x30840004, 0xac0300f8, ! 0x14800007, 0x30c20004, 0x8f820220, 0x3c0308ff, ! 0x3463fffb, 0x431024, 0xaf820220, 0x30c20004, ! 0x14400006, 0x0, 0x8f820200, 0x3c03c0ff, ! 0x3463fffb, 0x431024, 0xaf820200, 0x8f4202dc, ! 0xa34005c5, 0x24420001, 0xaf4202dc, 0x3e00008, ! 0x8f4202dc, 0x27bdffd8, 0xafbf0024, 0xafb00020, ! 0x8f430024, 0x8f420020, 0x10620038, 0x0, ! 0x8f430020, 0x8f420024, 0x622023, 0x4810003, ! 0x0, 0x8f420040, 0x822021, 0x8f430030, ! 0x8f420024, 0x43102b, 0x14400005, 0x0, ! 0x8f430040, 0x8f420024, 0x10000005, 0x621023, ! 0x8f420030, 0x8f430024, 0x431023, 0x2442ffff, ! 0x406021, 0x8c102a, 0x54400001, 0x806021, ! 0x8f4a0024, 0x8f490040, 0x8f480024, 0x8f440180, ! 0x8f450184, 0x8f460024, 0x8f4b001c, 0x24070001, ! 0xafa70010, 0x84100, 0x1001821, 0x14c5021, ! 0x2529ffff, 0x1498024, 0xafb00014, 0x8f470014, ! 0x1021, 0x63100, 0xafa70018, 0xa32821, ! 0xa3382b, 0x822021, 0x872021, 0x8f420108, ! 0x1663021, 0x40f809, 0xc3900, 0x54400001, ! 0xaf500024, 0x8f430024, 0x8f420020, 0x14620018, ! 0x0, 0x8f420000, 0x10400007, 0x0, ! 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, ! 0x10000005, 0x0, 0xaf800048, 0x8f820048, ! 0x1040fffd, 0x0, 0x8f820060, 0x2403ffef, ! 0x431024, 0xaf820060, 0x8f420000, 0x10400003, ! 0x0, 0x10000002, 0xaf80004c, 0xaf800048, ! 0x8fbf0024, 0x8fb00020, 0x3e00008, 0x27bd0028, ! 0x3e00008, 0x0, 0x27bdffc0, 0x32c20020, ! 0xafbf0038, 0xafb30034, 0xafb20030, 0xafb1002c, ! 0x10400004, 0xafb00028, 0x8f530028, 0x10000002, ! 0x0, 0x8f530020, 0x8f420030, 0x105300eb, ! 0x21100, 0x8f43001c, 0x628021, 0x8e040000, ! 0x8e050004, 0x96120008, 0x8f420090, 0x9611000a, ! 0x3246ffff, 0x46102a, 0x10400017, 0x0, ! 0x8f8200d8, 0x8f430098, 0x431023, 0x2442dcbe, ! 0xaf420090, 0x8f420090, 0x2842dcbf, 0x10400005, ! 0x0, 0x8f420090, 0x8f430144, 0x431021, ! 0xaf420090, 0x8f420090, 0x46102a, 0x10400006, ! 0x0, 0x8f420348, 0x24420001, 0xaf420348, ! 0x100000e1, 0x8f420348, 0x8f8200fc, 0x14400006, ! 0x0, 0x8f420344, 0x24420001, 0xaf420344, ! 0x100000d9, 0x8f420344, 0x934205c2, 0x1040000b, ! 0x32c20008, 0x10400008, 0x32220200, 0x10400006, ! 0x3c034000, 0x9602000e, 0xaf4300ac, 0x21400, ! 0x10000002, 0xaf4200b0, 0xaf4000ac, 0x32220004, ! 0x1040007f, 0x32220800, 0x10400003, 0x3247ffff, ! 0x10000002, 0x24020020, 0x24020004, 0xafa20010, ! 0x8f420030, 0xafa20014, 0x8f420010, 0x3c030002, ! 0x431025, 0xafa20018, 0x8f460098, 0x8f420108, ! 0x40f809, 0x0, 0x104000b7, 0x0, ! 0x8f42009c, 0x8f430094, 0x2421021, 0xaf42009c, ! 0xae03000c, 0x8f4200ac, 0x10400008, 0x3c034000, ! 0x8f420094, 0x431025, 0xafa20020, 0x8f42009c, ! 0x8f4300b0, 0x10000004, 0x431025, 0x8f420094, ! 0xafa20020, 0x8f42009c, 0xafa20024, 0x8f8200fc, ! 0x8fa30020, 0x8fa40024, 0xac430000, 0xac440004, ! 0x24420008, 0xaf8200f0, 0x8f42009c, 0x8f440270, 0x8f450274, 0x401821, 0x1021, 0xa32821, 0xa3302b, 0x822021, 0x862021, 0x32230060, 0x24020040, 0xaf440270, 0xaf450274, 0x10620017, --- 1928,2028 ---- 0x3e00008, 0x0, 0x63080, 0x861821, 0x83102b, 0x10400006, 0x0, 0xac850000, 0x24840004, 0x83102b, 0x5440fffd, 0xac850000, ! 0x3e00008, 0x0, 0x26e50028, 0xa03021, ! 0x274301c0, 0x8f4d0358, 0x8f47035c, 0x8f480360, ! 0x8f490364, 0x8f4a0368, 0x8f4b0204, 0x8f4c0200, ! 0x24640400, 0x64102b, 0x10400008, 0x3c0208ff, ! 0x8cc20000, 0xac620000, 0x24630004, 0x64102b, ! 0x1440fffb, 0x24c60004, 0x3c0208ff, 0x3442ffff, ! 0x3c03c0ff, 0xaf4d0358, 0xaf47035c, 0xaf480360, ! 0xaf490364, 0xaf4a0368, 0xaf4b0204, 0xaf4c0200, ! 0x8f840220, 0x3463ffff, 0x8f860200, 0x821024, ! 0x34420004, 0xc31824, 0x34630004, 0xaf820220, ! 0xaf830200, 0x8ca20214, 0xac020084, 0x8ca20218, ! 0xac020088, 0x8ca2021c, 0xac02008c, 0x8ca20220, ! 0xac020090, 0x8ca20224, 0xac020094, 0x8ca20228, ! 0xac020098, 0x8ca2022c, 0xac02009c, 0x8ca20230, ! 0xac0200a0, 0x8ca20234, 0xac0200a4, 0x8ca20238, ! 0xac0200a8, 0x8ca2023c, 0xac0200ac, 0x8ca20240, ! 0xac0200b0, 0x8ca20244, 0xac0200b4, 0x8ca20248, ! 0xac0200b8, 0x8ca2024c, 0xac0200bc, 0x8ca2001c, ! 0xac020080, 0x8ca20018, 0xac0200c0, 0x8ca20020, ! 0xac0200cc, 0x8ca20024, 0xac0200d0, 0x8ca201d0, ! 0xac0200e0, 0x8ca201d4, 0xac0200e4, 0x8ca201d8, ! 0xac0200e8, 0x8ca201dc, 0xac0200ec, 0x8ca201e0, ! 0xac0200f0, 0x8ca20098, 0x8ca3009c, 0xac0300fc, ! 0x8ca200a8, 0x8ca300ac, 0xac0300f4, 0x8ca200a0, ! 0x8ca300a4, 0x30840004, 0xac0300f8, 0x14800007, ! 0x30c20004, 0x8f820220, 0x3c0308ff, 0x3463fffb, ! 0x431024, 0xaf820220, 0x30c20004, 0x14400006, ! 0x0, 0x8f820200, 0x3c03c0ff, 0x3463fffb, ! 0x431024, 0xaf820200, 0x8f4202dc, 0xa34005c5, ! 0x24420001, 0xaf4202dc, 0x8f4202dc, 0x3e00008, ! 0x0, 0x27bdffd0, 0xafbf0028, 0xafb10024, ! 0xafb00020, 0x8f430024, 0x8f420020, 0x1062004e, ! 0x0, 0x8f430020, 0x8f420024, 0x628823, ! 0x6210003, 0x0, 0x8f420040, 0x2228821, ! 0x8f430030, 0x8f420024, 0x43102b, 0x14400005, ! 0x0, 0x8f430040, 0x8f420024, 0x10000005, ! 0x628023, 0x8f420030, 0x8f430024, 0x431023, ! 0x2450ffff, 0x16000016, 0x2006821, 0x3c040001, ! 0x24847d0c, 0x240202aa, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77d1c, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x2006821, ! 0x22d102a, 0x54400001, 0x2206821, 0x8f4b0024, ! 0x8f4a0040, 0x8f490024, 0x8f440180, 0x8f450184, ! 0x8f460024, 0x8f4c001c, 0xd3900, 0x24080001, ! 0xafa80010, 0x94900, 0x1201821, 0x16d5821, ! 0x254affff, 0x16a8024, 0xafb00014, 0x8f480014, ! 0x1021, 0xa32821, 0xa3482b, 0x822021, ! 0x892021, 0xafa80018, 0x8f420108, 0x63100, ! 0x40f809, 0x1863021, 0x54400001, 0xaf500024, ! 0x8f430024, 0x8f420020, 0x14620019, 0x0, ! 0x8f420000, 0x10400007, 0x0, 0xaf80004c, ! 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, ! 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x2403ffef, 0x431024, ! 0xaf820060, 0x8f420000, 0x10400004, 0x0, ! 0xaf80004c, 0x10000002, 0x0, 0xaf800048, ! 0x8fbf0028, 0x8fb10024, 0x8fb00020, 0x3e00008, ! 0x27bd0030, 0x3e00008, 0x0, 0x27bdffc0, ! 0x32c20020, 0xafbf0038, 0xafb30034, 0xafb20030, ! 0xafb1002c, 0x10400004, 0xafb00028, 0x8f530028, ! 0x10000002, 0x0, 0x8f530020, 0x8f420030, ! 0x10530102, 0x21100, 0x8f43001c, 0x628021, ! 0x8e040000, 0x8e050004, 0x96120008, 0x8f420090, ! 0x9611000a, 0x3246ffff, 0x46102a, 0x10400018, ! 0x0, 0x8f8200d8, 0x8f430098, 0x431023, ! 0x2442dcbe, 0xaf420090, 0x8f420090, 0x2842dcbf, ! 0x10400005, 0x0, 0x8f420090, 0x8f430144, ! 0x431021, 0xaf420090, 0x8f420090, 0x46102a, ! 0x10400007, 0x0, 0x8f420348, 0x24420001, ! 0xaf420348, 0x8f420348, 0x100000f8, 0x0, ! 0x8f8200fc, 0x14400007, 0x0, 0x8f420344, ! 0x24420001, 0xaf420344, 0x8f420344, 0x100000ef, ! 0x0, 0x934205c2, 0x1040000b, 0x32c20008, ! 0x10400008, 0x32220200, 0x10400006, 0x3c034000, ! 0x9602000e, 0xaf4300ac, 0x21400, 0x10000002, ! 0xaf4200b0, 0xaf4000ac, 0x32220004, 0x10400094, ! 0x32220800, 0x10400003, 0x3247ffff, 0x10000002, ! 0x24020020, 0x24020004, 0xafa20010, 0x8f420030, ! 0xafa20014, 0x8f420010, 0x3c030002, 0x431025, ! 0xafa20018, 0x8f460098, 0x8f420108, 0x40f809, ! 0x0, 0x104000cd, 0x0, 0x8f42009c, ! 0x8f430094, 0x2421021, 0xaf42009c, 0xae03000c, ! 0x8f4200ac, 0x10400008, 0x3c034000, 0x8f420094, ! 0x431025, 0xafa20020, 0x8f42009c, 0x8f4300b0, ! 0x10000004, 0x431025, 0x8f420094, 0xafa20020, ! 0x8f42009c, 0xafa20024, 0x8f9000fc, 0x16000014, ! 0x240200e1, 0x3c040001, 0x24847d0c, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77d14, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8fa20020, 0x8fa30024, 0xae020000, 0xae030004, ! 0x26020008, 0xaf8200f0, 0x8f42009c, 0x8f440270, 0x8f450274, 0x401821, 0x1021, 0xa32821, 0xa3302b, 0x822021, 0x862021, 0x32230060, 0x24020040, 0xaf440270, 0xaf450274, 0x10620017, *************** *** 1832,1838 **** 0x3247ffff, 0x50e00022, 0x32c20020, 0x14400002, 0x24020010, 0x24020002, 0xafa20010, 0x8f420030, 0xafa20014, 0x8f420010, 0xafa20018, 0x8f460098, ! 0x8f420108, 0x40f809, 0x0, 0x1040003a, 0x3245ffff, 0x8f420098, 0x8f430090, 0x8f46013c, 0x451021, 0xaf420098, 0x8f42009c, 0x8f440098, 0xa34005c2, 0x651823, 0xaf430090, 0x451021, --- 2046,2052 ---- 0x3247ffff, 0x50e00022, 0x32c20020, 0x14400002, 0x24020010, 0x24020002, 0xafa20010, 0x8f420030, 0xafa20014, 0x8f420010, 0xafa20018, 0x8f460098, ! 0x8f420108, 0x40f809, 0x0, 0x1040003b, 0x3245ffff, 0x8f420098, 0x8f430090, 0x8f46013c, 0x451021, 0xaf420098, 0x8f42009c, 0x8f440098, 0xa34005c2, 0x651823, 0xaf430090, 0x451021, *************** *** 1841,1933 **** 0x10400005, 0x0, 0x8f420358, 0x2442ffff, 0xaf420358, 0x8f420358, 0x8f420030, 0x8f430040, 0x24420001, 0x2463ffff, 0x431024, 0xaf420030, ! 0x8f420030, 0x14530018, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x2403fff7, 0x431024, 0xaf820060, ! 0x8f420000, 0x10400003, 0x0, 0x10000002, ! 0xaf80004c, 0xaf800048, 0x8fbf0038, 0x8fb30034, ! 0x8fb20030, 0x8fb1002c, 0x8fb00028, 0x3e00008, ! 0x27bd0040, 0x3e00008, 0x0, 0x27bdffd0, ! 0x32c20020, 0xafbf002c, 0xafb20028, 0xafb10024, ! 0x10400004, 0xafb00020, 0x8f520028, 0x10000002, ! 0x0, 0x8f520020, 0x8f420030, 0x105200b5, ! 0x21100, 0x8f43001c, 0x628021, 0x8e040000, ! 0x8e050004, 0x96110008, 0x8f420090, 0x9607000a, ! 0x3226ffff, 0x46102a, 0x10400017, 0x0, ! 0x8f8200d8, 0x8f430098, 0x431023, 0x2442dc46, ! 0xaf420090, 0x8f420090, 0x2842dc47, 0x10400005, ! 0x0, 0x8f420090, 0x8f430144, 0x431021, ! 0xaf420090, 0x8f420090, 0x46102a, 0x10400006, ! 0x0, 0x8f420348, 0x24420001, 0xaf420348, ! 0x100000ab, 0x8f420348, 0x8f8600fc, 0x10c0000c, ! 0x0, 0x8f8200f4, 0x2403fff8, 0x431024, ! 0x461023, 0x218c3, 0x58600001, 0x24630100, ! 0x8f42008c, 0x43102b, 0x14400006, 0x712c2, ! 0x8f420344, 0x24420001, 0xaf420344, 0x10000098, ! 0x8f420344, 0x934305c2, 0x1060000f, 0x30460001, ! 0x8f420010, 0x34480400, 0x32c20008, 0x10400008, ! 0x30e20200, 0x10400006, 0x3c034000, 0x9602000e, ! 0xaf4300ac, 0x21400, 0x10000004, 0xaf4200b0, ! 0x10000002, 0xaf4000ac, 0x8f480010, 0x30e20004, ! 0x10400045, 0x3227ffff, 0x8f4900ac, 0x11200005, ! 0x30c200ff, 0x14400006, 0x24020040, 0x10000004, ! 0x24020008, 0x14400002, 0x24020020, 0x24020004, ! 0xafa20010, 0x8f430030, 0x11200004, 0xafa30014, ! 0x8f4200b0, 0x621025, 0xafa20014, 0x3c020002, ! 0x1021025, 0xafa20018, 0x8f460098, 0x8f420108, ! 0x40f809, 0x0, 0x10400069, 0x3224ffff, ! 0x8f42008c, 0x8f430094, 0x24420001, 0xaf42008c, ! 0x24020001, 0xae03000c, 0xa34205c2, 0x8f420098, ! 0x2406fff8, 0x8f45013c, 0x441021, 0x24420007, ! 0x461024, 0x24840007, 0xaf420094, 0x8f420090, ! 0x8f430094, 0x862024, 0x441023, 0x65182b, ! 0x14600005, 0xaf420090, 0x8f420094, 0x8f430144, ! 0x431023, 0xaf420094, 0x8f430094, 0x8f420140, ! 0x43102b, 0x10400009, 0x0, 0x8f43013c, ! 0x8f440094, 0x8f420090, 0x8f450138, 0x641823, ! 0x431023, 0xaf420090, 0xaf450094, 0x8f420094, ! 0x1000001f, 0xaf420098, 0x10e0001d, 0x30c200ff, ! 0x14400002, 0x24020010, 0x24020002, 0xafa20010, ! 0x8f420030, 0xafa80018, 0xafa20014, 0x8f460098, ! 0x8f420108, 0x40f809, 0x0, 0x10400030, ! 0x3225ffff, 0x8f420098, 0x8f44013c, 0x451021, ! 0xaf420098, 0x8f420090, 0x8f430098, 0xa34005c2, ! 0x451023, 0x64182b, 0x14600005, 0xaf420090, ! 0x8f420098, 0x8f430144, 0x431023, 0xaf420098, ! 0x8f420030, 0x8f430040, 0x24420001, 0x2463ffff, ! 0x431024, 0xaf420030, 0x8f420030, 0x14520018, ! 0x0, 0x8f420000, 0x10400007, 0x0, ! 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, ! 0x10000005, 0x0, 0xaf800048, 0x8f820048, ! 0x1040fffd, 0x0, 0x8f820060, 0x2403fff7, ! 0x431024, 0xaf820060, 0x8f420000, 0x10400003, ! 0x0, 0x10000002, 0xaf80004c, 0xaf800048, 0x8fbf002c, 0x8fb20028, 0x8fb10024, 0x8fb00020, 0x3e00008, 0x27bd0030, 0x3e00008, 0x0, ! 0x27bdffd8, 0x3c020001, 0x34422ec0, 0xafbf0020, ! 0x8f4300f0, 0x8f840108, 0x2e21021, 0x54620004, 0x24620008, 0x3c020001, 0x34422cc0, 0x2e21021, ! 0x401821, 0xaf4300f0, 0xac600000, 0x8f4200ec, ! 0x8c660004, 0x14620004, 0x3c020001, 0x24820020, ! 0x1000000f, 0xaf820108, 0x8f4300f0, 0x34422ec0, ! 0x2e21021, 0x54620004, 0x24620008, 0x3c020001, ! 0x34422cc0, 0x2e21021, 0x401821, 0x8c620004, ! 0x21140, 0x821021, 0xaf820108, 0xac600000, ! 0x8c850018, 0x30a20036, 0x1040006c, 0x30a20001, ! 0x8c82001c, 0x8f430040, 0x8f440034, 0x24420001, ! 0x2463ffff, 0x431024, 0x862021, 0xaf42002c, ! 0x30a20030, 0x14400006, 0xaf440034, 0x8f420034, ! 0x8c03023c, 0x43102b, 0x144000b4, 0x0, 0x32c20010, 0x10400028, 0x24070008, 0x8f440170, 0x8f450174, 0x8f43002c, 0x8f48000c, 0x8f860120, 0x24020080, 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, 0x370821, 0xa02240f1, 0x8f820124, 0xafa20010, 0x8f820128, 0x3c040001, ! 0x24843ef4, 0xafa20014, 0x8f46002c, 0x8f870120, ! 0x3c050009, 0xc002a0b, 0x34a51100, 0x10000036, 0x0, 0x8f420300, 0x8f43002c, 0x24420001, 0xaf420300, 0x8f420300, 0x24020001, 0xa34205c1, 0x10000026, 0xaf430038, 0x8f440170, 0x8f450174, --- 2055,2363 ---- 0x10400005, 0x0, 0x8f420358, 0x2442ffff, 0xaf420358, 0x8f420358, 0x8f420030, 0x8f430040, 0x24420001, 0x2463ffff, 0x431024, 0xaf420030, ! 0x8f420030, 0x14530019, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x2403fff7, 0x431024, 0xaf820060, ! 0x8f420000, 0x10400004, 0x0, 0xaf80004c, ! 0x10000002, 0x0, 0xaf800048, 0x8fbf0038, ! 0x8fb30034, 0x8fb20030, 0x8fb1002c, 0x8fb00028, ! 0x3e00008, 0x27bd0040, 0x3e00008, 0x0, ! 0x27bdffd0, 0x32c20020, 0xafbf002c, 0xafb20028, ! 0xafb10024, 0x10400004, 0xafb00020, 0x8f520028, ! 0x10000002, 0x0, 0x8f520020, 0x8f420030, ! 0x105200b7, 0x21100, 0x8f43001c, 0x628021, ! 0x8e040000, 0x8e050004, 0x96110008, 0x8f420090, ! 0x9607000a, 0x3226ffff, 0x46102a, 0x10400018, ! 0x0, 0x8f8200d8, 0x8f430098, 0x431023, ! 0x2442dc46, 0xaf420090, 0x8f420090, 0x2842dc47, ! 0x10400005, 0x0, 0x8f420090, 0x8f430144, ! 0x431021, 0xaf420090, 0x8f420090, 0x46102a, ! 0x10400007, 0x0, 0x8f420348, 0x24420001, ! 0xaf420348, 0x8f420348, 0x100000ad, 0x0, ! 0x8f8600fc, 0x10c0000c, 0x0, 0x8f8200f4, ! 0x2403fff8, 0x431024, 0x461023, 0x218c3, ! 0x58600001, 0x24630100, 0x8f42008c, 0x43102b, ! 0x14400007, 0x712c2, 0x8f420344, 0x24420001, ! 0xaf420344, 0x8f420344, 0x10000099, 0x0, ! 0x934305c2, 0x1060000f, 0x30460001, 0x8f420010, ! 0x34480400, 0x32c20008, 0x10400008, 0x30e20200, ! 0x10400006, 0x3c034000, 0x9602000e, 0xaf4300ac, ! 0x21400, 0x10000004, 0xaf4200b0, 0x10000002, ! 0xaf4000ac, 0x8f480010, 0x30e20004, 0x10400045, ! 0x3227ffff, 0x8f4900ac, 0x11200005, 0x30c200ff, ! 0x14400006, 0x24020040, 0x10000004, 0x24020008, ! 0x14400002, 0x24020020, 0x24020004, 0xafa20010, ! 0x8f430030, 0x11200004, 0xafa30014, 0x8f4200b0, ! 0x621025, 0xafa20014, 0x3c020002, 0x1021025, ! 0xafa20018, 0x8f460098, 0x8f420108, 0x40f809, ! 0x0, 0x1040006a, 0x3224ffff, 0x8f42008c, ! 0x8f430094, 0x24420001, 0xaf42008c, 0x24020001, ! 0xae03000c, 0xa34205c2, 0x8f420098, 0x2406fff8, ! 0x8f45013c, 0x441021, 0x24420007, 0x461024, ! 0x24840007, 0xaf420094, 0x8f420090, 0x8f430094, ! 0x862024, 0x441023, 0x65182b, 0x14600005, ! 0xaf420090, 0x8f420094, 0x8f430144, 0x431023, ! 0xaf420094, 0x8f430094, 0x8f420140, 0x43102b, ! 0x10400009, 0x0, 0x8f43013c, 0x8f440094, ! 0x8f420090, 0x8f450138, 0x641823, 0x431023, ! 0xaf420090, 0xaf450094, 0x8f420094, 0x1000001f, ! 0xaf420098, 0x10e0001d, 0x30c200ff, 0x14400002, ! 0x24020010, 0x24020002, 0xafa20010, 0x8f420030, ! 0xafa80018, 0xafa20014, 0x8f460098, 0x8f420108, ! 0x40f809, 0x0, 0x10400031, 0x3225ffff, ! 0x8f420098, 0x8f44013c, 0x451021, 0xaf420098, ! 0x8f420090, 0x8f430098, 0xa34005c2, 0x451023, ! 0x64182b, 0x14600005, 0xaf420090, 0x8f420098, ! 0x8f430144, 0x431023, 0xaf420098, 0x8f420030, ! 0x8f430040, 0x24420001, 0x2463ffff, 0x431024, ! 0xaf420030, 0x8f420030, 0x14520019, 0x0, ! 0x8f420000, 0x10400007, 0x0, 0xaf80004c, ! 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, ! 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x2403fff7, 0x431024, ! 0xaf820060, 0x8f420000, 0x10400004, 0x0, ! 0xaf80004c, 0x10000002, 0x0, 0xaf800048, 0x8fbf002c, 0x8fb20028, 0x8fb10024, 0x8fb00020, 0x3e00008, 0x27bd0030, 0x3e00008, 0x0, ! 0x27bdffd8, 0xafbf0024, 0xafb00020, 0x8f4300f0, ! 0x8f4200ec, 0x8f900108, 0x14620017, 0x3c020001, ! 0x3c040001, 0x24847d0c, 0x240204ea, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77d1c, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x3c020001, 0x8f4300f0, 0x34422ec0, 0x2e21021, ! 0x54620004, 0x24620008, 0x3c020001, 0x34422cc0, ! 0x2e21021, 0x401821, 0xaf4300f0, 0xac600000, ! 0x8f4200ec, 0x8c660004, 0x14620005, 0x3c020001, ! 0x26020020, 0xaf820108, 0x1000000f, 0x0, ! 0x8f4300f0, 0x34422ec0, 0x2e21021, 0x54620004, 0x24620008, 0x3c020001, 0x34422cc0, 0x2e21021, ! 0x401821, 0x8c620004, 0x21140, 0x2021021, ! 0xaf820108, 0xac600000, 0x8e050018, 0x30a20036, ! 0x1040006d, 0x30a20001, 0x8e02001c, 0x8f430040, ! 0x8f440034, 0x24420001, 0x2463ffff, 0x431024, ! 0x862021, 0xaf42002c, 0x30a20030, 0x14400006, ! 0xaf440034, 0x8f420034, 0x8c03023c, 0x43102b, ! 0x144000cf, 0x0, 0x32c20010, 0x10400028, ! 0x24070008, 0x8f440170, 0x8f450174, 0x8f43002c, ! 0x8f48000c, 0x8f860120, 0x24020080, 0xafa20010, ! 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, ! 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, ! 0x370821, 0xa02240f1, 0x8f820124, 0xafa20010, ! 0x8f820128, 0x3c040001, 0x24847cfc, 0xafa20014, ! 0x8f46002c, 0x8f870120, 0x3c050009, 0xc002d3b, ! 0x34a51100, 0x10000036, 0x0, 0x8f420300, ! 0x8f43002c, 0x24420001, 0xaf420300, 0x8f420300, ! 0x24020001, 0xa34205c1, 0x10000026, 0xaf430038, ! 0x8f440170, 0x8f450174, 0x8f43002c, 0x8f48000c, ! 0x8f860120, 0x24020020, 0xafa20010, 0xafa30014, ! 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, ! 0x14400011, 0x24020001, 0x3c010001, 0x370821, ! 0xa02240f0, 0x8f820124, 0xafa20010, 0x8f820128, ! 0x3c040001, 0x24847cf0, 0xafa20014, 0x8f46002c, ! 0x8f870120, 0x3c050009, 0xc002d3b, 0x34a50900, ! 0x1000000f, 0x0, 0x8f420300, 0x24420001, ! 0xaf420300, 0x8f420300, 0x8f42002c, 0xa34005c1, ! 0xaf420038, 0x3c010001, 0x370821, 0xa02040f1, ! 0x3c010001, 0x370821, 0xa02040f0, 0xaf400034, ! 0x8f420314, 0x24420001, 0xaf420314, 0x8f420314, ! 0x10000073, 0x0, 0x10400025, 0x30a27000, ! 0x8e05001c, 0x8f420028, 0xa22023, 0x4810003, ! 0x0, 0x8f420040, 0x822021, 0x8f420358, ! 0x8f430000, 0xaf450028, 0x441021, 0xaf420358, ! 0x10600007, 0x0, 0xaf80004c, 0x8f82004c, ! 0x1040fffd, 0x0, 0x10000005, 0x0, ! 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, ! 0x8f820060, 0x34420008, 0xaf820060, 0x8f420000, ! 0x10400004, 0x0, 0xaf80004c, 0x10000050, ! 0x0, 0xaf800048, 0x1000004d, 0x0, ! 0x1040002f, 0x30a21000, 0x1040000c, 0x30a24000, ! 0x8e03001c, 0x8f420050, 0x622023, 0x4820001, ! 0x24840200, 0x8f42035c, 0x441021, 0xaf42035c, ! 0x8f420368, 0x1000001a, 0xaf430050, 0x1040000c, ! 0x32c28000, 0x8e03001c, 0x8f420070, 0x622023, ! 0x4820001, 0x24840400, 0x8f420364, 0x441021, ! 0xaf420364, 0x8f420368, 0x1000000d, 0xaf430070, ! 0x1040000e, 0x3c020800, 0x8e03001c, 0x8f420060, ! 0x622023, 0x4820001, 0x24840100, 0x8f420360, ! 0x441021, 0xaf420360, 0x8f420368, 0xaf430060, ! 0x441021, 0xaf420368, 0x3c020800, 0x2c21024, ! 0x5040001f, 0x36940040, 0x1000001d, 0x0, ! 0x30a20100, 0x10400005, 0x30a20080, 0xc002dd7, ! 0x0, 0x10000016, 0x0, 0x14400014, ! 0x240205dd, 0x3c040001, 0x24847d0c, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77d1c, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8fbf0024, 0x8fb00020, 0x3e00008, 0x27bd0028, ! 0x3e00008, 0x0, 0x27bdff98, 0xafbf0060, ! 0xafbe005c, 0xafb50058, 0xafb30054, 0xafb20050, ! 0xafb1004c, 0xafb00048, 0x8f920108, 0x8f820104, ! 0x16420016, 0x26420020, 0x3c040001, 0x24847d0c, ! 0x240205f8, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77d1c, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x26420020, 0xaf820108, ! 0x8e530018, 0xa3a0003f, 0x32620024, 0x1040022c, ! 0xafa00034, 0x8e50001c, 0x8f42001c, 0x101900, ! 0x431021, 0x8c51000c, 0x8f430140, 0x965e0016, ! 0x9455000a, 0x71182b, 0x10600014, 0x24020634, ! 0x3c040001, 0x24847d0c, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77d1c, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x9624000c, ! 0x2c8305dd, 0x38828870, 0x2c420001, 0x621825, ! 0x10600015, 0x2821, 0x32c20040, 0x10400015, ! 0x24020800, 0x96230014, 0x14620012, 0x3402aaaa, ! 0x9623000e, 0x14620007, 0x2021, 0x96230010, ! 0x24020300, 0x14620004, 0x801021, 0x96220012, ! 0x2c440001, 0x801021, 0x54400006, 0x24050016, ! 0x10000004, 0x0, 0x24020800, 0x50820001, ! 0x2405000e, 0x934205c3, 0x14400008, 0x5021, ! 0x240a0001, 0x32a20180, 0xaf4500a8, 0xaf5100a0, ! 0x10400002, 0xaf5000a4, 0xa34a05c3, 0x10a00086, ! 0x2253821, 0x90e20000, 0x3021, 0x3042000f, ! 0x24880, 0x32c20002, 0x10400012, 0xe91821, ! 0x32a20002, 0x10400010, 0x32c20001, 0xe02021, ! 0x94820000, 0x24840002, 0xc23021, 0x83102b, ! 0x1440fffb, 0x30c2ffff, 0x61c02, 0x623021, ! 0x61c02, 0x30c2ffff, 0x623021, 0x61027, ! 0xa4e2000a, 0x32c20001, 0x1040006b, 0x32a20001, ! 0x10400069, 0x0, 0x8f4200a8, 0x10400066, ! 0x0, 0x8f4200a0, 0x8f4300a8, 0x431021, ! 0x904b0009, 0x316800ff, 0x39030006, 0x3182b, ! 0x39020011, 0x2102b, 0x621824, 0x1060000d, ! 0x3c050006, 0x3c040001, 0x24847d24, 0x8f4200a4, ! 0x34a54600, 0xafa20010, 0x8f4200a0, 0x2003021, ! 0x1003821, 0xc002d3b, 0xafa20014, 0x1000004e, ! 0x0, 0x32c20004, 0x14400013, 0x2821, ! 0x314200ff, 0x14400004, 0x0, 0x94e20002, ! 0x1000000d, 0x492823, 0x94e5000c, 0x94e2000e, ! 0x94e30010, 0xa22821, 0xa32821, 0x94e30012, ! 0x90e40009, 0x94e20002, 0xa32821, 0xa42821, ! 0x491023, 0xa22821, 0x2202021, 0x94820000, ! 0x24840002, 0xc23021, 0x87102b, 0x1440fffb, ! 0x61c02, 0x30c2ffff, 0x623021, 0x61c02, ! 0x30c2ffff, 0x623021, 0x3c52821, 0x51c02, ! 0x30a2ffff, 0x622821, 0x51c02, 0x30a2ffff, ! 0x622821, 0xa62823, 0x51402, 0xa22821, ! 0x30a5ffff, 0x50a00001, 0x3405ffff, 0x314200ff, ! 0x14400008, 0x316300ff, 0x8f4300a0, 0x8f4200a8, ! 0x623821, 0x90e20000, 0x3042000f, 0x24880, ! 0x316300ff, 0x24020006, 0x14620003, 0xe91021, ! 0x10000002, 0x24440010, 0x24440006, 0x314200ff, ! 0x14400006, 0x0, 0x94820000, 0xa22821, ! 0x51c02, 0x30a2ffff, 0x622821, 0x934205c3, ! 0x10400003, 0x32a20100, 0x50400003, 0xa4850000, ! 0x52827, 0xa4850000, 0x9642000e, 0x8f43009c, ! 0x621821, 0xaf43009c, 0x93a2003f, 0x10400007, ! 0x3c024000, 0x2221025, 0xafa20020, 0x8f42009c, ! 0x8fac0034, 0x10000003, 0x4c1025, 0xafb10020, ! 0x8f42009c, 0xafa20024, 0x32a20080, 0x10400027, ! 0x32a20100, 0x8f4200b4, 0x2c420100, 0x14400014, ! 0x2402076a, 0x3c040001, 0x24847d0c, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77d1c, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8f4200b4, 0x24430001, 0x210c0, 0x571021, ! 0xaf4300b4, 0x8fa30020, 0x8fa40024, 0x3c010001, ! 0x220821, 0xac2338e8, 0x3c010001, 0x220821, ! 0xac2438ec, 0x100000e7, 0x32c20020, 0x10400091, ! 0x0, 0x8f4200b4, 0x2c420100, 0x14400014, ! 0x24020778, 0x3c040001, 0x24847d0c, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77d1c, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8f4200b4, 0x24430001, 0x210c0, 0x571021, ! 0xaf4300b4, 0x8fa30020, 0x8fa40024, 0x3c010001, ! 0x220821, 0xac2338e8, 0x3c010001, 0x220821, ! 0xac2438ec, 0x8f4200b4, 0x10400067, 0x8821, ! 0x1110c0, 0x571021, 0x3c030001, 0x621821, ! 0x8c6338e8, 0x3c040001, 0x822021, 0x8c8438ec, ! 0xafa30028, 0xafa4002c, 0x8f9000fc, 0x16000014, ! 0x240200f4, 0x3c040001, 0x24847d0c, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070001, 0x24e77d14, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8fa20028, 0x8fa3002c, 0xae020000, 0xae030004, ! 0x26020008, 0xaf8200f0, 0x8f42008c, 0x2442ffff, ! 0xaf42008c, 0x97a2002e, 0x8f440270, 0x8f450274, ! 0x401821, 0x1021, 0xa32821, 0xa3302b, ! 0x822021, 0x862021, 0xaf440270, 0xaf450274, ! 0x8fa30028, 0x3c02001f, 0x3442ffff, 0x622024, ! 0x90820000, 0x30420001, 0x1440000c, 0x2402ffff, ! 0x8f420278, 0x8f43027c, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420278, 0xaf43027c, 0x8f420278, ! 0x8f43027c, 0x1000001b, 0x0, 0x8c830000, ! 0x1462000f, 0x3402ffff, 0x94830004, 0x1462000c, ! 0x0, 0x8f420288, 0x8f43028c, 0x24630001, ! 0x2c640001, 0x441021, 0xaf420288, 0xaf43028c, ! 0x8f420288, 0x8f43028c, 0x1000000a, 0x0, ! 0x8f420280, 0x8f430284, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420280, 0xaf430284, 0x8f420280, ! 0x8f430284, 0x8f4200b4, 0x26310001, 0x222102b, ! 0x1440ff9c, 0x1110c0, 0xa34005c3, 0x10000054, ! 0xaf4000b4, 0x8f9000fc, 0x16000014, 0x240200f4, ! 0x3c040001, 0x24847d0c, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77d14, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x8fa20020, ! 0x8fa30024, 0xae020000, 0xae030004, 0x26020008, ! 0xaf8200f0, 0x8f42009c, 0x8f46008c, 0x8f440270, ! 0x8f450274, 0x401821, 0x1021, 0x24c6ffff, ! 0xaf46008c, 0xa32821, 0xa3302b, 0x822021, ! 0x862021, 0xaf440270, 0xaf450274, 0x92220000, ! 0x30420001, 0x1440000c, 0x2402ffff, 0x8f420278, ! 0x8f43027c, 0x24630001, 0x2c640001, 0x441021, ! 0xaf420278, 0xaf43027c, 0x8f420278, 0x8f43027c, ! 0x1000001c, 0x32c20020, 0x8e230000, 0x1462000f, ! 0x3402ffff, 0x96230004, 0x1462000c, 0x0, ! 0x8f420288, 0x8f43028c, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420288, 0xaf43028c, 0x8f420288, ! 0x8f43028c, 0x1000000b, 0x32c20020, 0x8f420280, ! 0x8f430284, 0x24630001, 0x2c640001, 0x441021, ! 0xaf420280, 0xaf430284, 0x8f420280, 0x8f430284, ! 0x32c20020, 0x10400005, 0xaf40009c, 0x8f420358, ! 0x2442ffff, 0xaf420358, 0x8f420358, 0x8e42001c, ! 0x8f430040, 0x24420001, 0x2463ffff, 0x431024, ! 0xaf42002c, 0x32620060, 0x14400008, 0x32c20010, ! 0x8f420034, 0x24420001, 0xaf420034, 0x8c03023c, ! 0x43102b, 0x1440011f, 0x32c20010, 0x10400018, ! 0x24070008, 0x8f440170, 0x8f450174, 0x8f43002c, ! 0x8f48000c, 0x8f860120, 0x24020080, 0xafa20010, ! 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, ! 0x24c6001c, 0x10400047, 0x24020001, 0x8f420300, ! 0x8f43002c, 0x24420001, 0xaf420300, 0x8f420300, ! 0x24020001, 0xa34205c1, 0x1000007c, 0xaf430038, ! 0x8f440170, 0x8f450174, 0x8f43002c, 0x8f48000c, ! 0x8f860120, 0x24020020, 0xafa20010, 0xafa30014, ! 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, ! 0x10400057, 0x24020001, 0x10000065, 0x0, ! 0x32620012, 0x10400076, 0x32620001, 0x9642000e, ! 0x8f43009c, 0x621821, 0x32c20020, 0x10400005, ! 0xaf43009c, 0x8f420358, 0x2442ffff, 0xaf420358, ! 0x8f420358, 0x8e42001c, 0x8f430040, 0x24420001, ! 0x2463ffff, 0x431024, 0xaf42002c, 0x32620010, ! 0x14400008, 0x32c20010, 0x8f420034, 0x24420001, ! 0xaf420034, 0x8c03023c, 0x43102b, 0x144000d9, 0x32c20010, 0x10400028, 0x24070008, 0x8f440170, 0x8f450174, 0x8f43002c, 0x8f48000c, 0x8f860120, 0x24020080, 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, 0x370821, 0xa02240f1, 0x8f820124, 0xafa20010, 0x8f820128, 0x3c040001, ! 0x24847cfc, 0xafa20014, 0x8f46002c, 0x8f870120, ! 0x3c050009, 0xc002d3b, 0x34a51100, 0x10000036, 0x0, 0x8f420300, 0x8f43002c, 0x24420001, 0xaf420300, 0x8f420300, 0x24020001, 0xa34205c1, 0x10000026, 0xaf430038, 0x8f440170, 0x8f450174, *************** *** 1935,2187 **** 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, 0x370821, 0xa02240f0, 0x8f820124, ! 0xafa20010, 0x8f820128, 0x3c040001, 0x24843ee8, 0xafa20014, 0x8f46002c, 0x8f870120, 0x3c050009, ! 0xc002a0b, 0x34a50900, 0x1000000f, 0x0, 0x8f420300, 0x24420001, 0xaf420300, 0x8f420300, 0x8f42002c, 0xa34005c1, 0xaf420038, 0x3c010001, 0x370821, 0xa02040f1, 0x3c010001, 0x370821, 0xa02040f0, 0xaf400034, 0x8f420314, 0x24420001, ! 0xaf420314, 0x10000059, 0x8f420314, 0x10400022, ! 0x30a27000, 0x8c85001c, 0x8f420028, 0xa22023, ! 0x4810003, 0x0, 0x8f420040, 0x822021, ! 0x8f420358, 0x8f430000, 0xaf450028, 0x441021, ! 0x10600007, 0xaf420358, 0xaf80004c, 0x8f82004c, ! 0x1040fffd, 0x0, 0x10000005, 0x0, ! 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, ! 0x8f820060, 0x34420008, 0xaf820060, 0x8f420000, ! 0x10400003, 0x0, 0x10000038, 0xaf80004c, ! 0x10000036, 0xaf800048, 0x1040002f, 0x30a21000, ! 0x1040000c, 0x30a24000, 0x8c83001c, 0x8f420050, 0x622023, 0x4820001, 0x24840200, 0x8f42035c, 0x441021, 0xaf42035c, 0x8f420368, 0x1000001a, ! 0xaf430050, 0x1040000c, 0x32c28000, 0x8c83001c, 0x8f420070, 0x622023, 0x4820001, 0x24840400, 0x8f420364, 0x441021, 0xaf420364, 0x8f420368, 0x1000000d, 0xaf430070, 0x1040000e, 0x3c020800, ! 0x8c83001c, 0x8f420060, 0x622023, 0x4820001, 0x24840100, 0x8f420360, 0x441021, 0xaf420360, 0x8f420368, 0xaf430060, 0x441021, 0xaf420368, ! 0x3c020800, 0x2c21024, 0x50400008, 0x36940040, ! 0x10000006, 0x0, 0x30a20100, 0x10400003, ! 0x0, 0xc002aa8, 0x0, 0x8fbf0020, ! 0x3e00008, 0x27bd0028, 0x3e00008, 0x0, ! 0x27bdffa8, 0xafbf0050, 0xafbe004c, 0xafb50048, ! 0xafb30044, 0xafb20040, 0xafb1003c, 0xafb00038, ! 0x8f910108, 0x26220020, 0xaf820108, 0x8e320018, ! 0xa821, 0x32420024, 0x104001ba, 0xf021, ! 0x8e26001c, 0x8f43001c, 0x61100, 0x621821, ! 0x8c70000c, 0x9604000c, 0x962d0016, 0x9473000a, ! 0x2c8305dd, 0x38828870, 0x2c420001, 0x621825, ! 0x10600015, 0x2821, 0x32c20040, 0x10400015, ! 0x24020800, 0x96030014, 0x14620012, 0x3402aaaa, ! 0x9603000e, 0x14620007, 0x2021, 0x96030010, ! 0x24020300, 0x14620004, 0x801021, 0x96020012, ! 0x2c440001, 0x801021, 0x54400006, 0x24050016, ! 0x10000004, 0x0, 0x24020800, 0x50820001, ! 0x2405000e, 0x934205c3, 0x14400008, 0x5821, ! 0x240b0001, 0x32620180, 0xaf4500a8, 0xaf5000a0, ! 0x10400002, 0xaf4600a4, 0xa34b05c3, 0x10a00085, ! 0x2054021, 0x91020000, 0x3821, 0x3042000f, ! 0x25080, 0x32c20002, 0x10400012, 0x10a1821, ! 0x32620002, 0x10400010, 0x32c20001, 0x1002021, ! 0x94820000, 0x24840002, 0xe23821, 0x83102b, ! 0x1440fffb, 0x30e2ffff, 0x71c02, 0x623821, ! 0x71c02, 0x30e2ffff, 0x623821, 0x71027, ! 0xa502000a, 0x32c20001, 0x1040006a, 0x32620001, ! 0x10400068, 0x0, 0x8f4200a8, 0x10400065, ! 0x0, 0x8f4200a0, 0x8f4300a8, 0x431021, ! 0x904c0009, 0x318900ff, 0x39230006, 0x3182b, ! 0x39220011, 0x2102b, 0x621824, 0x1060000c, ! 0x3c050006, 0x8f4200a4, 0x3c040001, 0x24843f04, ! 0xafa20010, 0x8f4200a0, 0x34a54600, 0x1203821, ! 0xc002a0b, 0xafa20014, 0x1000004e, 0x0, ! 0x32c20004, 0x14400013, 0x2821, 0x316200ff, ! 0x14400004, 0x0, 0x95020002, 0x1000000d, ! 0x4a2823, 0x9505000c, 0x9502000e, 0x95030010, ! 0xa22821, 0xa32821, 0x95030012, 0x91040009, ! 0x95020002, 0xa32821, 0xa42821, 0x4a1023, ! 0xa22821, 0x2002021, 0x94820000, 0x24840002, ! 0xe23821, 0x88102b, 0x1440fffb, 0x71c02, ! 0x30e2ffff, 0x623821, 0x71c02, 0x30e2ffff, ! 0x623821, 0x1a52821, 0x51c02, 0x30a2ffff, ! 0x622821, 0x51c02, 0x30a2ffff, 0x622821, ! 0xa72823, 0x51402, 0xa22821, 0x30a5ffff, ! 0x50a00001, 0x3405ffff, 0x316200ff, 0x14400008, ! 0x318300ff, 0x8f4300a0, 0x8f4200a8, 0x624021, ! 0x91020000, 0x3042000f, 0x25080, 0x318300ff, ! 0x24020006, 0x14620003, 0x10a1021, 0x10000002, ! 0x24440010, 0x24440006, 0x316200ff, 0x14400006, ! 0x0, 0x94820000, 0xa22821, 0x51c02, ! 0x30a2ffff, 0x622821, 0x934205c3, 0x10400003, ! 0x32620100, 0x50400003, 0xa4850000, 0x52827, ! 0xa4850000, 0x9622000e, 0x8f43009c, 0x621821, ! 0x32a200ff, 0x10400007, 0xaf43009c, 0x3c024000, ! 0x2021025, 0xafa20020, 0x8f42009c, 0x10000003, ! 0x5e1025, 0xafb00020, 0x8f42009c, 0xafa20024, ! 0x32620080, 0x10400010, 0x32620100, 0x8f4200b4, ! 0x24430001, 0x210c0, 0x571021, 0xaf4300b4, ! 0x8fa30020, 0x8fa40024, 0x3c010001, 0x220821, ! 0xac2338e8, 0x3c010001, 0x220821, 0xac2438ec, ! 0x100000a5, 0x32c20020, 0x10400064, 0x0, ! 0x8f4200b4, 0x24430001, 0x210c0, 0x571021, ! 0xaf4300b4, 0x8fa30020, 0x8fa40024, 0x3c010001, ! 0x220821, 0xac2338e8, 0x3c010001, 0x220821, ! 0xac2438ec, 0x8f4200b4, 0x10400051, 0x3821, ! 0x3c090001, 0x352938e8, 0x3c08001f, 0x3508ffff, ! 0x240bffff, 0x340affff, 0x710c0, 0x571021, ! 0x491021, 0x8c430000, 0x8c440004, 0xafa30028, ! 0xafa4002c, 0x8f8200fc, 0x8fa30028, 0x8fa4002c, ! 0xac430000, 0xac440004, 0x24420008, 0xaf8200f0, ! 0x8f42008c, 0x2442ffff, 0xaf42008c, 0x97a2002e, ! 0x8f440270, 0x8f450274, 0x401821, 0x1021, 0xa32821, 0xa3302b, 0x822021, 0x862021, ! 0xaf440270, 0xaf450274, 0x8fa20028, 0x481024, ! 0x90430000, 0x30630001, 0x1460000b, 0x402021, ! 0x8f420278, 0x8f43027c, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420278, 0xaf43027c, 0x8f420278, ! 0x1000001a, 0x8f43027c, 0x8c820000, 0x144b000e, ! 0x0, 0x94820004, 0x144a000b, 0x0, ! 0x8f420288, 0x8f43028c, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420288, 0xaf43028c, 0x8f420288, ! 0x1000000a, 0x8f43028c, 0x8f420280, 0x8f430284, ! 0x24630001, 0x2c640001, 0x441021, 0xaf420280, ! 0xaf430284, 0x8f420280, 0x8f430284, 0x8f4200b4, ! 0x24e70001, 0xe2102b, 0x1440ffb8, 0x710c0, ! 0xa34005c3, 0x1000003f, 0xaf4000b4, 0x8f8200fc, ! 0x8fa30020, 0x8fa40024, 0xac430000, 0xac440004, ! 0x24420008, 0xaf8200f0, 0x8f42009c, 0x8f46008c, ! 0x8f440270, 0x8f450274, 0x401821, 0x1021, ! 0x24c6ffff, 0xaf46008c, 0xa32821, 0xa3302b, ! 0x822021, 0x862021, 0xaf440270, 0xaf450274, ! 0x92020000, 0x30420001, 0x1440000c, 0x2402ffff, ! 0x8f420278, 0x8f43027c, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420278, 0xaf43027c, 0x8f420278, ! 0x8f43027c, 0x1000001c, 0x32c20020, 0x8e030000, ! 0x1462000f, 0x3402ffff, 0x96030004, 0x1462000c, ! 0x0, 0x8f420288, 0x8f43028c, 0x24630001, ! 0x2c640001, 0x441021, 0xaf420288, 0xaf43028c, ! 0x8f420288, 0x8f43028c, 0x1000000b, 0x32c20020, ! 0x8f420280, 0x8f430284, 0x24630001, 0x2c640001, ! 0x441021, 0xaf420280, 0xaf430284, 0x8f420280, ! 0x8f430284, 0x32c20020, 0x10400005, 0xaf40009c, ! 0x8f420358, 0x2442ffff, 0xaf420358, 0x8f420358, ! 0x8e22001c, 0x8f430040, 0x24420001, 0x2463ffff, ! 0x431024, 0xaf42002c, 0x32420060, 0x14400008, ! 0x32c20010, 0x8f420034, 0x24420001, 0xaf420034, ! 0x8c03023c, 0x43102b, 0x14400102, 0x32c20010, ! 0x10400018, 0x24070008, 0x8f440170, 0x8f450174, ! 0x8f43002c, 0x8f48000c, 0x8f860120, 0x24020080, ! 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, ! 0x40f809, 0x24c6001c, 0x10400047, 0x24020001, ! 0x8f420300, 0x8f43002c, 0x24420001, 0xaf420300, ! 0x8f420300, 0x24020001, 0xa34205c1, 0x1000007c, ! 0xaf430038, 0x8f440170, 0x8f450174, 0x8f43002c, ! 0x8f48000c, 0x8f860120, 0x24020020, 0xafa20010, ! 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, ! 0x24c6001c, 0x10400057, 0x24020001, 0x10000065, ! 0x0, 0x32420012, 0x10400075, 0x32420001, ! 0x9622000e, 0x8f43009c, 0x621821, 0x32c20020, ! 0x10400005, 0xaf43009c, 0x8f420358, 0x2442ffff, ! 0xaf420358, 0x8f420358, 0x8e22001c, 0x8f430040, ! 0x24420001, 0x2463ffff, 0x431024, 0xaf42002c, ! 0x32420010, 0x14400008, 0x32c20010, 0x8f420034, ! 0x24420001, 0xaf420034, 0x8c03023c, 0x43102b, ! 0x144000bc, 0x32c20010, 0x10400028, 0x24070008, ! 0x8f440170, 0x8f450174, 0x8f43002c, 0x8f48000c, ! 0x8f860120, 0x24020080, 0xafa20010, 0xafa30014, ! 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, ! 0x14400011, 0x24020001, 0x3c010001, 0x370821, ! 0xa02240f1, 0x8f820124, 0xafa20010, 0x8f820128, ! 0x3c040001, 0x24843ef4, 0xafa20014, 0x8f46002c, ! 0x8f870120, 0x3c050009, 0xc002a0b, 0x34a51100, ! 0x10000036, 0x0, 0x8f420300, 0x8f43002c, ! 0x24420001, 0xaf420300, 0x8f420300, 0x24020001, ! 0xa34205c1, 0x10000026, 0xaf430038, 0x8f440170, ! 0x8f450174, 0x8f43002c, 0x8f48000c, 0x8f860120, ! 0x24020020, 0xafa20010, 0xafa30014, 0xafa80018, ! 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, ! 0x24020001, 0x3c010001, 0x370821, 0xa02240f0, ! 0x8f820124, 0xafa20010, 0x8f820128, 0x3c040001, ! 0x24843ee8, 0xafa20014, 0x8f46002c, 0x8f870120, ! 0x3c050009, 0xc002a0b, 0x34a50900, 0x1000000f, ! 0x0, 0x8f420300, 0x24420001, 0xaf420300, ! 0x8f420300, 0x8f42002c, 0xa34005c1, 0xaf420038, ! 0x3c010001, 0x370821, 0xa02040f1, 0x3c010001, ! 0x370821, 0xa02040f0, 0xaf400034, 0x8f420314, ! 0x24420001, 0xaf420314, 0x10000062, 0x8f420314, ! 0x10400022, 0x32427000, 0x8e25001c, 0x8f420028, ! 0xa22023, 0x4810003, 0x0, 0x8f420040, ! 0x822021, 0x8f420358, 0x8f430000, 0xaf450028, ! 0x441021, 0x10600007, 0xaf420358, 0xaf80004c, ! 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, ! 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x34420008, 0xaf820060, ! 0x8f420000, 0x10400003, 0x0, 0x10000041, ! 0xaf80004c, 0x1000003f, 0xaf800048, 0x1040002f, ! 0x32421000, 0x1040000c, 0x32424000, 0x8e23001c, ! 0x8f420050, 0x622023, 0x4820001, 0x24840200, ! 0x8f42035c, 0x441021, 0xaf42035c, 0x8f420368, ! 0x1000001a, 0xaf430050, 0x1040000c, 0x32c28000, ! 0x8e23001c, 0x8f420070, 0x622023, 0x4820001, ! 0x24840400, 0x8f420364, 0x441021, 0xaf420364, ! 0x8f420368, 0x1000000d, 0xaf430070, 0x1040000e, ! 0x3c020800, 0x8e23001c, 0x8f420060, 0x622023, ! 0x4820001, 0x24840100, 0x8f420360, 0x441021, ! 0xaf420360, 0x8f420368, 0xaf430060, 0x441021, ! 0xaf420368, 0x3c020800, 0x2c21024, 0x50400011, ! 0x36940040, 0x1000000f, 0x0, 0x32420048, ! 0x10400007, 0x24150001, 0x8e22001c, 0x3c03ffff, ! 0x43f024, 0x3042ffff, 0x1000fd75, 0xae22001c, ! 0x32420100, 0x10400003, 0x0, 0xc002aa8, ! 0x0, 0x8fbf0050, 0x8fbe004c, 0x8fb50048, ! 0x8fb30044, 0x8fb20040, 0x8fb1003c, 0x8fb00038, ! 0x3e00008, 0x27bd0058, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x8f8300e4, ! 0x8f8200e0, 0x2404fff8, 0x441024, 0x621026, ! 0x2102b, 0x21023, 0x3e00008, 0x621024, ! 0x3e00008, 0x0, 0x27bdffe0, 0xafbf001c, ! 0xafb00018, 0x8f8600c4, 0x8f8400e0, 0x8f8500e4, ! 0x2402fff8, 0x821824, 0x10a30009, 0x27623ff8, ! 0x14a20002, 0x24a20008, 0x27623000, 0x408021, ! 0x16030005, 0x30820004, 0x10400004, 0xc02021, ! 0x10000022, 0x1021, 0x8e040000, 0x8f42011c, ! 0x14a20003, 0x0, 0x8f420120, 0xaf420114, ! 0x8ca30000, 0x8f420148, 0x831823, 0x43102b, ! 0x10400003, 0x0, 0x8f420148, 0x621821, ! 0x94a20006, 0x24420050, 0x62102b, 0x1440000f, ! 0xa01021, 0xafa40010, 0xafa30014, 0x8ca60000, ! 0x8ca70004, 0x3c040001, 0xc002a0b, 0x24843fc4, ! 0x8f42020c, 0x24420001, 0xaf42020c, 0x8f42020c, ! 0x1021, 0xaf9000e8, 0xaf9000e4, 0x8fbf001c, ! 0x8fb00018, 0x3e00008, 0x27bd0020, 0x3e00008, ! 0x0, 0x8f8400e0, 0x8f8800c4, 0x8f8300e8, ! 0x2402fff8, 0x823824, 0xe32023, 0x2c821000, ! 0x50400001, 0x24841000, 0x420c2, 0x801821, ! 0x8f440258, 0x8f45025c, 0x1021, 0xa32821, ! 0xa3302b, 0x822021, 0x862021, 0xaf440258, ! 0xaf45025c, 0x8f8300c8, 0x8f420148, 0x1032023, ! 0x82102b, 0x14400004, 0x801821, 0x8f420148, ! 0x822021, 0x801821, 0x8f440250, 0x8f450254, ! 0x1021, 0xa32821, 0xa3302b, 0x822021, ! 0x862021, 0xaf440250, 0xaf450254, 0xaf8800c8, ! 0xaf8700e4, 0x3e00008, 0xaf8700e8, 0x27bdff30, ! 0x240a0001, 0xafbf00c8, 0xafbe00c4, 0xafb500c0, ! 0xafb300bc, 0xafb200b8, 0xafb100b4, 0xafb000b0, ! 0xa3a00097, 0xafa00044, 0xafaa005c, 0x934205c4, ! 0xa7a0008e, 0x1040000a, 0xa7a00086, 0x8f4b00c4, ! 0xafab0064, 0x8f4a00c0, 0xafaa006c, 0x8f4b00cc, ! 0xafab0074, 0x8f4a00c8, 0x10000129, 0xafaa007c, 0x8f420114, 0x40f809, 0x0, 0x403021, ! 0x10c0034f, 0x0, 0x8cc20000, 0x8cc30004, 0xafa20020, 0xafa30024, 0x8fab0024, 0x8faa0020, ! 0x3162ffff, 0x2442fffc, 0xafa2006c, 0x3c020006, ! 0x2c21024, 0xafab007c, 0x14400015, 0xafaa0064, 0x91420000, 0x30420001, 0x10400011, 0x2402ffff, 0x8d430000, 0x14620004, 0x3402ffff, 0x95430004, ! 0x1062000b, 0x0, 0xc00238e, 0x8fa40064, 0x304200ff, 0x14400006, 0x0, 0x8f420118, ! 0x40f809, 0x0, 0x1000032d, 0x0, 0x8fa20024, 0x3c03ffbf, 0x3463ffff, 0x431024, 0x3c03ffff, 0x431824, 0x14600003, 0xafa20024, 0x10000040, 0x1821, 0x3c020080, 0x621024, --- 2365,2460 ---- 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, 0x370821, 0xa02240f0, 0x8f820124, ! 0xafa20010, 0x8f820128, 0x3c040001, 0x24847cf0, 0xafa20014, 0x8f46002c, 0x8f870120, 0x3c050009, ! 0xc002d3b, 0x34a50900, 0x1000000f, 0x0, 0x8f420300, 0x24420001, 0xaf420300, 0x8f420300, 0x8f42002c, 0xa34005c1, 0xaf420038, 0x3c010001, 0x370821, 0xa02040f1, 0x3c010001, 0x370821, 0xa02040f0, 0xaf400034, 0x8f420314, 0x24420001, ! 0xaf420314, 0x8f420314, 0x1000007e, 0x0, ! 0x10400025, 0x32627000, 0x8e45001c, 0x8f420028, ! 0xa22023, 0x4810003, 0x0, 0x8f420040, ! 0x822021, 0x8f420358, 0x8f430000, 0xaf450028, ! 0x441021, 0xaf420358, 0x10600007, 0x0, ! 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, ! 0x10000005, 0x0, 0xaf800048, 0x8f820048, ! 0x1040fffd, 0x0, 0x8f820060, 0x34420008, ! 0xaf820060, 0x8f420000, 0x10400004, 0x0, ! 0xaf80004c, 0x1000005b, 0x0, 0xaf800048, ! 0x10000058, 0x0, 0x1040002f, 0x32621000, ! 0x1040000c, 0x32624000, 0x8e43001c, 0x8f420050, 0x622023, 0x4820001, 0x24840200, 0x8f42035c, 0x441021, 0xaf42035c, 0x8f420368, 0x1000001a, ! 0xaf430050, 0x1040000c, 0x32c28000, 0x8e43001c, 0x8f420070, 0x622023, 0x4820001, 0x24840400, 0x8f420364, 0x441021, 0xaf420364, 0x8f420368, 0x1000000d, 0xaf430070, 0x1040000e, 0x3c020800, ! 0x8e43001c, 0x8f420060, 0x622023, 0x4820001, 0x24840100, 0x8f420360, 0x441021, 0xaf420360, 0x8f420368, 0xaf430060, 0x441021, 0xaf420368, ! 0x3c020800, 0x2c21024, 0x5040002a, 0x36940040, ! 0x10000028, 0x0, 0x32620048, 0x10400009, ! 0x240c0001, 0x8e42001c, 0x3c03ffff, 0xa3ac003f, ! 0x431824, 0x3042ffff, 0xafa30034, 0x1000fcfd, ! 0xae42001c, 0x32620100, 0x10400005, 0x32620080, ! 0xc002dd7, 0x0, 0x10000016, 0x0, ! 0x14400014, 0x24020896, 0x3c040001, 0x24847d0c, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77d1c, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8fbf0060, 0x8fbe005c, 0x8fb50058, ! 0x8fb30054, 0x8fb20050, 0x8fb1004c, 0x8fb00048, ! 0x3e00008, 0x27bd0068, 0x3e00008, 0x0, ! 0x8f8300e4, 0x8f8200e0, 0x2404fff8, 0x441024, ! 0x621026, 0x2102b, 0x21023, 0x3e00008, ! 0x621024, 0x3e00008, 0x0, 0x27bdffe0, ! 0xafbf001c, 0xafb00018, 0x8f8600c4, 0x8f8400e0, ! 0x8f8500e4, 0x2402fff8, 0x821824, 0x10a30009, ! 0x27623ff8, 0x14a20002, 0x24a20008, 0x27623000, ! 0x408021, 0x16030005, 0x30820004, 0x10400004, ! 0xc02021, 0x10000022, 0x1021, 0x8e040000, ! 0x8f42011c, 0x14a20003, 0x0, 0x8f420120, ! 0xaf420114, 0x8ca30000, 0x8f420148, 0x831823, ! 0x43102b, 0x10400003, 0x0, 0x8f420148, ! 0x621821, 0x94a20006, 0x24420050, 0x62102b, ! 0x1440000f, 0xa01021, 0xafa40010, 0xafa30014, ! 0x8ca60000, 0x8ca70004, 0x3c040001, 0xc002d3b, ! 0x24847df4, 0x8f42020c, 0x24420001, 0xaf42020c, ! 0x8f42020c, 0x1021, 0xaf9000e8, 0xaf9000e4, ! 0x8fbf001c, 0x8fb00018, 0x3e00008, 0x27bd0020, ! 0x3e00008, 0x0, 0x8f8300e4, 0x27623ff8, ! 0x14620002, 0x24620008, 0x27623000, 0x401821, ! 0xaf8300e8, 0xaf8300e4, 0x3e00008, 0x0, ! 0x3e00008, 0x0, 0x8f8400e0, 0x8f8800c4, ! 0x8f8300e8, 0x2402fff8, 0x823824, 0xe32023, ! 0x2c821000, 0x50400001, 0x24841000, 0x420c2, ! 0x801821, 0x8f440258, 0x8f45025c, 0x1021, 0xa32821, 0xa3302b, 0x822021, 0x862021, ! 0xaf440258, 0xaf45025c, 0x8f8300c8, 0x8f420148, ! 0x1032023, 0x82102b, 0x14400004, 0x801821, ! 0x8f420148, 0x822021, 0x801821, 0x8f440250, ! 0x8f450254, 0x1021, 0xa32821, 0xa3302b, ! 0x822021, 0x862021, 0xaf440250, 0xaf450254, ! 0xaf8800c8, 0xaf8700e4, 0xaf8700e8, 0x3e00008, ! 0x0, 0x27bdff28, 0x240a0001, 0xafbf00d0, ! 0xafbe00cc, 0xafb500c8, 0xafb300c4, 0xafb200c0, ! 0xafb100bc, 0xafb000b8, 0xa3a0009f, 0xafa0004c, ! 0xafaa0064, 0xa7a00096, 0xafa00040, 0x934205c4, ! 0x8821, 0x1040000a, 0xa7a0008e, 0x8f4b00c4, ! 0xafab006c, 0x8f4a00c0, 0xafaa0074, 0x8f4b00cc, ! 0xafab007c, 0x8f4a00c8, 0x1000018e, 0xafaa0084, 0x8f420114, 0x40f809, 0x0, 0x403021, ! 0x10c00407, 0x0, 0x8cc20000, 0x8cc30004, 0xafa20020, 0xafa30024, 0x8fab0024, 0x8faa0020, ! 0x3162ffff, 0x2442fffc, 0xafa20074, 0x3c020006, ! 0x2c21024, 0xafab0084, 0x14400015, 0xafaa006c, 0x91420000, 0x30420001, 0x10400011, 0x2402ffff, 0x8d430000, 0x14620004, 0x3402ffff, 0x95430004, ! 0x1062000b, 0x0, 0xc0025dd, 0x8fa4006c, 0x304200ff, 0x14400006, 0x0, 0x8f420118, ! 0x40f809, 0x0, 0x100003e5, 0x0, 0x8fa20024, 0x3c03ffbf, 0x3463ffff, 0x431024, 0x3c03ffff, 0x431824, 0x14600003, 0xafa20024, 0x10000040, 0x1821, 0x3c020080, 0x621024, *************** *** 2200,2314 **** 0x8f4201c0, 0x24420001, 0xaf4201c0, 0x8f4201c0, 0x3c020020, 0x621024, 0x10400006, 0x24030001, 0x8f420388, 0x24420001, 0xaf420388, 0x8f420388, ! 0x24030001, 0x8c020260, 0x8fab006c, 0x4b102b, 0x10400014, 0x307000ff, 0x8f4201e8, 0x24420001, ! 0xaf4201e8, 0x8f4201e8, 0x8faa007c, 0x8f8200e0, ! 0x354a0100, 0xafaa007c, 0xafa20010, 0x8f8200e4, ! 0x24100001, 0x3c040001, 0x24843fd0, 0xafa20014, ! 0x8fa60020, 0x8fa70024, 0x3c050007, 0xc002a0b, ! 0x34a50800, 0x12000010, 0x3c020080, 0x2c21024, ! 0x1440000e, 0x32c20400, 0x8fab007c, 0x3c020080, 0x34420100, 0x1621024, 0x10400005, 0x0, 0x8f42020c, 0x24420001, 0xaf42020c, 0x8f42020c, ! 0x100002b0, 0x8fa3006c, 0x32c20400, 0x10400015, ! 0x34028100, 0x8faa0064, 0x9543000c, 0x14620012, ! 0x3c020100, 0x240b0200, 0xa7ab008e, 0x9542000e, ! 0x8d430008, 0x8d440004, 0x8d450000, 0x8faa006c, ! 0x8fab0064, 0x254afffc, 0xafaa006c, 0xa7a20086, ! 0xad63000c, 0xad640008, 0xad650004, 0x256b0004, ! 0xafab0064, 0x3c020100, 0x2c21024, 0x10400004, ! 0x0, 0x8faa006c, 0x254a0004, 0xafaa006c, ! 0x8f4200bc, 0x5040000a, 0xafa00074, 0x8fab006c, ! 0x4b102b, 0x50400006, 0xafa00074, 0x8f4200bc, ! 0x1621023, 0xafa20074, 0x8f4a00bc, 0xafaa006c, ! 0x8f420080, 0x8fab006c, 0x4b102b, 0x10400056, ! 0x32c28000, 0x1040005e, 0x240a0003, 0x32c21000, ! 0x1040005b, 0xafaa005c, 0x10000058, 0x240b0004, 0x8f420350, 0x2403ffbf, 0x283a024, 0x24420001, ! 0xaf420350, 0x1000024f, 0x8f420350, 0x2c2b025, ! 0x2402ffbf, 0x282a024, 0x8f830128, 0x3c040001, ! 0x24844000, 0x26620001, 0xafa20014, 0xafa30010, ! 0x8f860120, 0x8f870124, 0x3c050007, 0xc002a0b, ! 0x34a52250, 0x1000023f, 0x0, 0x2c2b025, ! 0x2402ffbf, 0x282a024, 0x8f830128, 0x3c040001, ! 0x24844000, 0x24020002, 0xafa20014, 0xafa30010, ! 0x8f860120, 0x8f870124, 0x3c050007, 0xc002a0b, ! 0x34a52450, 0x1000022f, 0x0, 0x8ea20000, ! 0x8ea30004, 0x3c040001, 0x24844018, 0xafb00010, ! 0xafbe0014, 0x8ea70018, 0x34a52800, 0xc002a0b, ! 0x603021, 0x10000223, 0x0, 0xa6b1000a, ! 0x8f820124, 0x3c040001, 0x24844020, 0xafbe0014, ! 0xafa20010, 0x8f460044, 0x8f870120, 0x3c050007, ! 0xc002a0b, 0x34a53000, 0x10000216, 0x0, ! 0xa6b1000a, 0xa6b2000e, 0x8f820124, 0x3c040001, ! 0x2484402c, 0xafbe0014, 0xafa20010, 0x8f460044, ! 0x8f870120, 0x3c050007, 0xc002a0b, 0x34a53200, ! 0x10000208, 0x0, 0x8f420084, 0x8faa006c, ! 0x4a102b, 0x14400007, 0x3c020001, 0x2c21024, ! 0x10400004, 0x0, 0x240b0002, 0xafab005c, ! 0x8faa006c, 0x1140021b, 0x27ab0020, 0xafab00a4, ! 0x3c0a001f, 0x354affff, 0xafaa009c, 0x8fab005c, ! 0x240a0001, 0x556a0021, 0x240a0002, 0x8f430054, ! 0x8f420050, 0x1062000b, 0x274b0054, 0x8f5e0054, ! 0x3403ecc0, 0xafab004c, 0x27c20001, 0x304201ff, ! 0xafa20054, 0x1e1140, 0x431021, 0x1000006b, ! 0x2e2a821, 0x8f420044, 0x8faa006c, 0x3c040001, ! 0x24843fdc, 0xafaa0014, 0xafa20010, 0x8f460054, ! 0x8f470050, 0x3c050007, 0xc002a0b, 0x34a51300, ! 0x8f430350, 0x2402ffbf, 0x282a024, 0x24630001, ! 0xaf430350, 0x100001d3, 0x8f420350, 0x156a001d, ! 0x0, 0x8f430074, 0x8f420070, 0x1062000a, ! 0x274b0074, 0x8f5e0074, 0xafab004c, 0x27c20001, ! 0x304203ff, 0xafa20054, 0x1e1140, 0x24426cc0, ! 0x1000004a, 0x2e2a821, 0x8f420044, 0x8faa006c, ! 0x3c040001, 0x24843fe8, 0x3c050007, 0xafaa0014, ! 0xafa20010, 0x8f460074, 0x8f470070, 0x34a51500, ! 0x240b0001, 0xc002a0b, 0xafab005c, 0x1000ffc3, ! 0x0, 0x8f430064, 0x8f420060, 0x1062001a, ! 0x274a0064, 0x8f5e0064, 0x8fab005c, 0xafaa004c, ! 0x27c20001, 0x304200ff, 0xafa20054, 0x24020004, ! 0x1562000e, 0x1e1140, 0x1e1180, 0x24420cc0, ! 0x2e21021, 0xafa20044, 0x9442002a, 0x8faa0044, ! 0x8fab006c, 0x4b102b, 0x10400024, 0x25550020, ! 0x240a0001, 0x10000021, 0xa3aa0097, 0x24424cc0, ! 0x1000001e, 0x2e2a821, 0x8f420044, 0x8fab006c, ! 0x3c040001, 0x24843ff4, 0xafab0014, 0xafa20010, ! 0x8f460064, 0x8f470060, 0x3c050007, 0xc002a0b, ! 0x34a51800, 0x3c020008, 0x2c21024, 0x1440ff34, ! 0x0, 0x8f420370, 0x240a0001, 0xafaa005c, ! 0x24420001, 0xaf420370, 0x1000ff90, 0x8f420370, ! 0x27a30036, 0x131040, 0x621821, 0x94620000, ! 0x441021, 0x10000020, 0xa4620000, 0x8fab0064, ! 0xaeab0018, 0x93a20097, 0x10400072, 0x9821, ! 0x8faa0044, 0x8fa4006c, 0x8fa300a4, 0x25420020, ! 0xafa20028, 0x25420008, 0xafa20030, 0x25420010, ! 0xafaa002c, 0xafa20034, 0x9542002a, 0xa7a20038, ! 0x95420018, 0xa7a2003a, 0x9542001a, 0xa7a2003c, ! 0x9542001c, 0xa7a2003e, 0x94620018, 0x24630002, ! 0x822023, 0x1880ffde, 0x26730001, 0x2e620004, ! 0x1440fff9, 0x0, 0x8f4200fc, 0x26650001, ! 0xa2102a, 0x1440002b, 0x24030001, 0x8f83012c, ! 0x10600023, 0x0, 0x8f820124, 0x431023, 0x22143, 0x58800001, 0x24840040, 0x8f820128, 0x431023, 0x21943, 0x58600001, 0x24630040, 0x64102a, 0x54400001, 0x602021, 0xaf4400fc, ! 0x8f4200fc, 0xa2102a, 0x10400011, 0x24030001, ! 0x10000015, 0x306200ff, 0x8fab0064, 0x96070018, ! 0xafab0010, 0x8e220008, 0x3c040001, 0x2484400c, 0x8c430004, 0x8c420000, 0x34a52400, 0x2403021, ! 0xc002a0b, 0xafa30014, 0x1000002b, 0x0, 0x8f420334, 0x1821, 0x24420001, 0xaf420334, ! 0x8f420334, 0x306200ff, 0x5040fedc, 0x3c020800, ! 0x12600021, 0x9021, 0x8fb100a4, 0x2208021, ! 0x8e220008, 0x96070018, 0x8fa60064, 0x8c440000, ! 0x8c450004, 0x240a0001, 0xafaa0010, 0xafbe0014, 0x8f420008, 0xafa20018, 0x8f42010c, 0x40f809, ! 0x0, 0x1040ffd8, 0x3c050007, 0x96020018, ! 0x8fab0064, 0x8faa009c, 0x1625821, 0x14b102b, ! 0x10400004, 0xafab0064, 0x8f420148, 0x1625823, ! 0xafab0064, 0x26100002, 0x26520001, 0x253102b, ! 0x1440ffe3, 0x26310004, 0x8fb0006c, 0x10000036, ! 0x97b10038, 0x8f4200fc, 0x24050002, 0xa2102a, 0x1440001b, 0x24030001, 0x8f83012c, 0x10600013, 0x0, 0x8f820124, 0x431023, 0x22143, 0x58800001, 0x24840040, 0x8f820128, 0x431023, --- 2473,2630 ---- 0x8f4201c0, 0x24420001, 0xaf4201c0, 0x8f4201c0, 0x3c020020, 0x621024, 0x10400006, 0x24030001, 0x8f420388, 0x24420001, 0xaf420388, 0x8f420388, ! 0x24030001, 0x8c020260, 0x8fab0074, 0x4b102b, 0x10400014, 0x307000ff, 0x8f4201e8, 0x24420001, ! 0xaf4201e8, 0x8f4201e8, 0x8faa0084, 0x8f8200e0, ! 0x354a0100, 0xafaa0084, 0xafa20010, 0x8f8200e4, ! 0x24100001, 0x3c040001, 0x24847e00, 0xafa20014, ! 0x8fa60020, 0x8fa70024, 0x3c050007, 0xc002d3b, ! 0x34a50800, 0x12000011, 0x3c020080, 0x2c21024, ! 0x1440000f, 0x32c20400, 0x8fab0084, 0x3c020080, 0x34420100, 0x1621024, 0x10400005, 0x0, 0x8f42020c, 0x24420001, 0xaf42020c, 0x8f42020c, ! 0x8fa30074, 0x10000366, 0x0, 0x32c20400, ! 0x10400015, 0x34028100, 0x8faa006c, 0x9543000c, ! 0x14620012, 0x3c020100, 0x240b0200, 0xa7ab0096, ! 0x9542000e, 0x8d430008, 0x8d440004, 0x8d450000, ! 0x8faa0074, 0x8fab006c, 0x254afffc, 0xafaa0074, ! 0xa7a2008e, 0xad63000c, 0xad640008, 0xad650004, ! 0x256b0004, 0xafab006c, 0x3c020100, 0x2c21024, ! 0x10400004, 0x0, 0x8faa0074, 0x254a0004, ! 0xafaa0074, 0x16000005, 0x24020800, 0x8fab006c, ! 0x9563000c, 0x50620001, 0x2411000e, 0x8f4200bc, ! 0x5040000a, 0xafa0007c, 0x8faa0074, 0x4a102b, ! 0x50400006, 0xafa0007c, 0x8f4200bc, 0x1421023, ! 0xafa2007c, 0x8f4b00bc, 0xafab0074, 0x8f420080, ! 0x8faa0074, 0x4a102b, 0x104000b4, 0x32c28000, ! 0x104000bc, 0x32c21000, 0x10400047, 0x240b0004, ! 0x3c021000, 0x2c21024, 0x104000b6, 0xafab0064, ! 0x122000b4, 0x0, 0x8faa006c, 0x8fab0074, ! 0x1711023, 0x2c420014, 0x144000af, 0x1512021, ! 0x24830006, 0x90820000, 0x3c05001f, 0x34a5ffff, ! 0x3042000f, 0x23080, 0xa3102b, 0x10400003, ! 0x0, 0x8f420148, 0x621823, 0x94620000, ! 0x30421fff, 0x10400003, 0x2261021, 0x1000009d, ! 0xafa20040, 0x24830009, 0xa3102b, 0x10400003, ! 0x0, 0x8f420148, 0x621823, 0x90630000, ! 0x24020006, 0x14620017, 0x24020011, 0x94820002, ! 0x2c420028, 0x1440008f, 0x861821, 0xa3102b, ! 0x50400004, 0x2463000c, 0x8f420148, 0x621823, ! 0x2463000c, 0xa3102b, 0x10400003, 0x0, ! 0x8f420148, 0x621823, 0x90630000, 0x306200f0, ! 0x21882, 0x2261021, 0x431021, 0x1000007d, ! 0xafa20040, 0x1462007b, 0x0, 0x94820002, ! 0x2c42001c, 0x14400077, 0x2261021, 0x24420008, ! 0x10000074, 0xafa20040, 0x10000071, 0x240a0003, 0x8f420350, 0x2403ffbf, 0x283a024, 0x24420001, ! 0xaf420350, 0x8f420350, 0x100002b8, 0x0, ! 0x2c2b025, 0x2402ffbf, 0x282a024, 0x8f830128, ! 0x3c040001, 0x24847e38, 0x26620001, 0xafa20014, ! 0xafa30010, 0x8f860120, 0x8f870124, 0x3c050007, ! 0xc002d3b, 0x34a52250, 0x100002a8, 0x0, ! 0x2c2b025, 0x2402ffbf, 0x282a024, 0x8f830128, ! 0x3c040001, 0x24847e38, 0x24020002, 0xafa20014, ! 0xafa30010, 0x8f860120, 0x8f870124, 0x3c050007, ! 0xc002d3b, 0x34a52450, 0x10000298, 0x0, ! 0x8ea20000, 0x8ea30004, 0x3c040001, 0x24847e50, ! 0xafb00010, 0xafbe0014, 0x8ea70018, 0x34a52800, ! 0xc002d3b, 0x603021, 0x3c040001, 0x24847de4, ! 0x1000001f, 0x2402057c, 0xa6b1000a, 0x8f820124, ! 0x3c040001, 0x24847e58, 0xafbe0014, 0xafa20010, ! 0x8f460044, 0x8f870120, 0x3c050007, 0xc002d3b, ! 0x34a53000, 0x3c040001, 0x24847de4, 0x10000010, ! 0x240205b8, 0xa6b1000a, 0xa6b2000e, 0x8f820124, ! 0x3c040001, 0x24847e64, 0xafbe0014, 0xafa20010, ! 0x8f460044, 0x8f870120, 0x3c050007, 0xc002d3b, ! 0x34a53200, 0x3c040001, 0x24847de4, 0x240205ed, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77e30, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x10000259, 0x0, 0x8f420084, ! 0x8fab0074, 0x4b102b, 0x14400007, 0x3c020001, ! 0x2c21024, 0x10400004, 0x0, 0x240a0002, ! 0xafaa0064, 0x8fab0074, 0x1160026d, 0x27aa0020, ! 0xafaa00ac, 0x3c0b001f, 0x356bffff, 0xafab00a4, ! 0x8faa0064, 0x240b0001, 0x154b0022, 0x24020002, ! 0x8f430054, 0x8f420050, 0x1062000b, 0x274a0054, ! 0x8f5e0054, 0x3403ecc0, 0xafaa0054, 0x27c20001, ! 0x304201ff, 0xafa2005c, 0x1e1140, 0x431021, ! 0x10000077, 0x2e2a821, 0x8f420044, 0x8fab0074, ! 0x3c040001, 0x24847e0c, 0xafab0014, 0xafa20010, ! 0x8f460054, 0x8f470050, 0x3c050007, 0xc002d3b, ! 0x34a51300, 0x8f430350, 0x2402ffbf, 0x282a024, ! 0x24630001, 0xaf430350, 0x8f420350, 0x10000223, ! 0x0, 0x1542001d, 0x0, 0x8f430074, ! 0x8f420070, 0x1062000a, 0x274b0074, 0x8f5e0074, ! 0xafab0054, 0x27c20001, 0x304203ff, 0xafa2005c, ! 0x1e1140, 0x24426cc0, 0x10000055, 0x2e2a821, ! 0x8f420044, 0x8faa0074, 0x3c040001, 0x24847e18, ! 0x3c050007, 0xafaa0014, 0xafa20010, 0x8f460074, ! 0x8f470070, 0x34a51500, 0x240b0001, 0xc002d3b, ! 0xafab0064, 0x1000ffc2, 0x0, 0x8f430064, ! 0x8f420060, 0x1062002b, 0x274a0064, 0x8f5e0064, ! 0x8fab0064, 0xafaa0054, 0x27c20001, 0x304200ff, ! 0xafa2005c, 0x24020004, 0x1562001f, 0x1e1140, ! 0x1e1180, 0x24420cc0, 0x2e21021, 0xafa2004c, ! 0x24550020, 0x3c021000, 0x2c21024, 0x1040000e, ! 0x0, 0x8faa004c, 0x8fab0074, 0x9542002a, ! 0x4b102b, 0x54400006, 0x240a0001, 0x8fa20040, ! 0x10400027, 0x0, 0x104b0025, 0x240a0001, ! 0x10000023, 0xa3aa009f, 0x8fab004c, 0x8faa0074, ! 0x9562002a, 0x4a102b, 0x1040001d, 0x240b0001, ! 0x1000001b, 0xa3ab009f, 0x24424cc0, 0x10000018, ! 0x2e2a821, 0x8f420044, 0x8faa0074, 0x3c040001, ! 0x24847e24, 0xafaa0014, 0xafa20010, 0x8f460064, ! 0x8f470060, 0x3c050007, 0xc002d3b, 0x34a51800, ! 0x3c020008, 0x2c21024, 0x1440ff09, 0x0, ! 0x8f420370, 0x240b0001, 0xafab0064, 0x24420001, ! 0xaf420370, 0x8f420370, 0x1000ff7d, 0x0, ! 0x8faa006c, 0xaeaa0018, 0x93a2009f, 0x104000ae, ! 0x24050002, 0x8fab004c, 0x8fa40040, 0x25620020, ! 0xafa20028, 0x25620008, 0xafa20030, 0x25620010, ! 0xafab002c, 0x1080000e, 0xafa20034, 0x9563002a, ! 0x83102b, 0x54400001, 0x801821, 0x1000000b, ! 0xa7a30038, 0x27a30036, 0x131040, 0x621821, ! 0x94620000, 0x441021, 0x10000016, 0xa4620000, ! 0x8faa004c, 0x9542002a, 0xa7a20038, 0x8fab004c, ! 0x8fa40074, 0x8fa300ac, 0x95620018, 0xa7a2003a, ! 0x9562001a, 0xa7a2003c, 0x9562001c, 0x9821, ! 0xa7a2003e, 0x94620018, 0x24630002, 0x822023, ! 0x1880ffe8, 0x26730001, 0x2e620004, 0x1440fff9, ! 0x0, 0x18800014, 0x2402051a, 0x3c040001, ! 0x24847de4, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77e30, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x8f4200fc, 0x26650001, ! 0xa2102a, 0x1440003f, 0x24030001, 0x8f83012c, ! 0x10600037, 0x0, 0x8f820124, 0x431023, 0x22143, 0x58800001, 0x24840040, 0x8f820128, 0x431023, 0x21943, 0x58600001, 0x24630040, 0x64102a, 0x54400001, 0x602021, 0xaf4400fc, ! 0x8f4200fc, 0xa2102a, 0x10400025, 0x24030001, ! 0x10000029, 0x306200ff, 0x8faa006c, 0x96070018, ! 0xafaa0010, 0x8e220008, 0x3c040001, 0x24847e44, 0x8c430004, 0x8c420000, 0x34a52400, 0x2403021, ! 0xc002d3b, 0xafa30014, 0x3c040001, 0x24847de4, ! 0x2402053e, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77e30, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x1000002b, 0x0, 0x8f420334, 0x1821, 0x24420001, 0xaf420334, ! 0x8f420334, 0x306200ff, 0x5040fe7d, 0x3c020800, ! 0x12600021, 0x9021, 0x8fb100ac, 0x2208021, ! 0x8e220008, 0x96070018, 0x8fa6006c, 0x8c440000, ! 0x8c450004, 0x240b0001, 0xafab0010, 0xafbe0014, 0x8f420008, 0xafa20018, 0x8f42010c, 0x40f809, ! 0x0, 0x1040ffc4, 0x3c050007, 0x96020018, ! 0x8faa006c, 0x8fab00a4, 0x1425021, 0x16a102b, ! 0x10400004, 0xafaa006c, 0x8f420148, 0x1425023, ! 0xafaa006c, 0x26100002, 0x26520001, 0x253102b, ! 0x1440ffe3, 0x26310004, 0x8fb00074, 0x97b10038, ! 0x10000035, 0x0, 0x8f4200fc, 0xa2102a, 0x1440001b, 0x24030001, 0x8f83012c, 0x10600013, 0x0, 0x8f820124, 0x431023, 0x22143, 0x58800001, 0x24840040, 0x8f820128, 0x431023, *************** *** 2316,2600 **** 0x54400001, 0x602021, 0xaf4400fc, 0x8f4200fc, 0xa2102a, 0x14400006, 0x24030001, 0x8f420334, 0x1821, 0x24420001, 0xaf420334, 0x8f420334, ! 0x306200ff, 0x1040fea5, 0x3c020800, 0x96b1000a, ! 0x8fb0006c, 0x3223ffff, 0x70102b, 0x54400001, ! 0x608021, 0x8ea40000, 0x8ea50004, 0x240b0001, ! 0xafab0010, 0xafbe0014, 0x8f420008, 0x8fa60064, 0xafa20018, 0x8f42010c, 0x40f809, 0x2003821, ! 0x1040fea2, 0x3c050007, 0x96a3000e, 0x97aa008e, ! 0x11400007, 0x609021, 0x934205c4, 0x14400004, ! 0x0, 0x97ab0086, 0x6a1825, 0xa6ab0016, ! 0x8faa007c, 0x3c02ffff, 0x1421024, 0x10400003, ! 0xa1402, 0x34630400, 0xa6a20014, 0x8fab006c, ! 0x560b0072, 0xa6a3000e, 0x34620004, 0xa6a2000e, ! 0x8faa0074, 0x16a1021, 0xa6a2000a, 0x8f430044, ! 0x8f4401a0, 0x8f4501a4, 0x34028000, 0xafa20010, ! 0x8f420044, 0x2a03021, 0x24070020, 0xafa20014, ! 0x8f42000c, 0x31940, 0x604821, 0xafa20018, ! 0x8f42010c, 0x4021, 0xa92821, 0xa9182b, ! 0x882021, 0x40f809, 0x832021, 0x5040fe7f, ! 0xa6b2000e, 0x8f420368, 0xafa0006c, 0xa34005c4, ! 0x2442ffff, 0xaf420368, 0x8fab005c, 0x240a0001, ! 0x8f420368, 0x156a0006, 0x240a0002, 0x8f42035c, ! 0x2442ffff, 0xaf42035c, 0x1000000c, 0x8f42035c, ! 0x156a0006, 0x0, 0x8f420364, 0x2442ffff, ! 0xaf420364, 0x10000005, 0x8f420364, 0x8f420360, ! 0x2442ffff, 0xaf420360, 0x8f420360, 0x8faa0054, ! 0x8fab004c, 0xad6a0000, 0x8f420044, 0x8f440088, ! 0x8f430078, 0x24420001, 0x441024, 0x24630001, ! 0xaf420044, 0xaf430078, 0x8c020240, 0x62182b, ! 0x14600075, 0x24070008, 0x8f440168, 0x8f45016c, ! 0x8f430044, 0x8f48000c, 0x8f860120, 0x24020040, ! 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, ! 0x40f809, 0x24c6001c, 0x14400011, 0x240b0001, ! 0x3c010001, 0x370821, 0xa02b40f2, 0x8f820124, ! 0xafa20010, 0x8f820128, 0x3c040001, 0x24843fbc, ! 0xafa20014, 0x8f460044, 0x8f870120, 0x3c050009, ! 0xc002a0b, 0x34a51300, 0x1000000b, 0x0, ! 0x8f420304, 0x24420001, 0xaf420304, 0x8f420304, ! 0x8f420044, 0xaf42007c, 0x3c010001, 0x370821, ! 0xa02040f2, 0xaf400078, 0x8f420318, 0x24420001, ! 0xaf420318, 0x10000048, 0x8f420318, 0xa6b0000a, 0x8f430044, 0x8f4401a0, 0x8f4501a4, 0x34028000, 0xafa20010, 0x8f420044, 0x2a03021, 0x24070020, 0xafa20014, 0x8f42000c, 0x31940, 0x604821, 0xafa20018, 0x8f42010c, 0x4021, 0xa92821, 0xa9182b, 0x882021, 0x40f809, 0x832021, ! 0x1040fe1f, 0x240a0001, 0xa34a05c4, 0x8fab006c, ! 0x8faa0064, 0x1705823, 0xafab006c, 0x8fab009c, ! 0x1505021, 0x16a102b, 0x10400004, 0xafaa0064, ! 0x8f420148, 0x1425023, 0xafaa0064, 0x8f420368, ! 0x2442ffff, 0xaf420368, 0x8faa005c, 0x240b0001, ! 0x8f420368, 0x154b0006, 0x240b0002, 0x8f42035c, ! 0x2442ffff, 0xaf42035c, 0x1000000c, 0x8f42035c, ! 0x114b0006, 0x0, 0x8f420360, 0x2442ffff, ! 0xaf420360, 0x10000005, 0x8f420360, 0x8f420364, ! 0x2442ffff, 0xaf420364, 0x8f420364, 0x8fab0054, ! 0x8faa004c, 0xad4b0000, 0x8f420044, 0x8f440088, ! 0x8f430078, 0x24420001, 0x441024, 0x24630001, ! 0xaf420044, 0xaf430078, 0x8faa006c, 0x1540fe0b, ! 0x0, 0x8fab006c, 0x1160001e, 0x0, ! 0x934205c4, 0x10400009, 0x0, 0x8faa0064, ! 0xaf4a00c4, 0xaf4b00c0, 0x8fab007c, 0xaf4b00c8, ! 0x8faa0074, 0x1000000e, 0xaf4a00cc, 0x97ab008e, ! 0x1160000b, 0x34038100, 0x8fa20020, 0x8c46000c, ! 0xa443000c, 0x97aa0086, 0x8c440004, 0x8c450008, ! 0xa44a000e, 0xac440000, 0xac450004, 0xac460008, ! 0x8f42034c, 0x24420001, 0xaf42034c, 0x10000010, ! 0x8f42034c, 0x8fab007c, 0x3164ffff, 0x2484fffc, ! 0x801821, 0x8f440250, 0x8f450254, 0x8f460118, ! 0x1021, 0xa32821, 0xa3382b, 0x822021, ! 0x872021, 0xaf440250, 0xc0f809, 0xaf450254, ! 0x8fbf00c8, 0x8fbe00c4, 0x8fb500c0, 0x8fb300bc, ! 0x8fb200b8, 0x8fb100b4, 0x8fb000b0, 0x3e00008, ! 0x27bd00d0, 0x3e00008, 0x0, 0x27bdff38, ! 0x240b0001, 0xafbf00c0, 0xafbe00bc, 0xafb500b8, ! 0xafb300b4, 0xafb200b0, 0xafb100ac, 0xafb000a8, ! 0xa3a00087, 0xafa00044, 0xafab005c, 0x934205c4, ! 0xa7a00076, 0x10400007, 0xa7a0007e, 0x8f4c00c0, ! 0xafac0064, 0x8f4b00c8, 0x8f5e00c4, 0x10000130, ! 0xafab006c, 0x8f420114, 0x40f809, 0x0, ! 0x403021, 0x10c002a1, 0x0, 0x8cc20000, ! 0x8cc30004, 0xafa20020, 0xafa30024, 0x8fac0024, ! 0x8fbe0020, 0x3182ffff, 0x2442fffc, 0xafa20064, ! 0x3c020006, 0x2c21024, 0x14400015, 0xafac006c, ! 0x93c20000, 0x30420001, 0x10400011, 0x2402ffff, ! 0x8fc30000, 0x14620004, 0x3402ffff, 0x97c30004, ! 0x1062000b, 0x0, 0xc00238e, 0x3c02021, ! 0x304200ff, 0x14400006, 0x0, 0x8f420118, ! 0x40f809, 0x0, 0x10000280, 0x0, ! 0x8fa20024, 0x3c03ffbf, 0x3463ffff, 0x431024, ! 0x3c03ffff, 0x431824, 0x14600003, 0xafa20024, ! 0x10000040, 0x8021, 0x3c020080, 0x621024, ! 0x10400007, 0x0, 0x8f42038c, 0x24420001, ! 0xaf42038c, 0x8f42038c, 0x10000036, 0x24100001, ! 0x8f420210, 0x24420001, 0xaf420210, 0x8f420210, ! 0x3c020001, 0x621024, 0x10400006, 0x3c020002, ! 0x8f4201c4, 0x24420001, 0xaf4201c4, 0x8f4201c4, ! 0x3c020002, 0x621024, 0x10400006, 0x3c020004, ! 0x8f42037c, 0x24420001, 0xaf42037c, 0x8f42037c, ! 0x3c020004, 0x621024, 0x10400006, 0x3c020008, ! 0x8f420380, 0x24420001, 0xaf420380, 0x8f420380, ! 0x3c020008, 0x621024, 0x10400006, 0x3c020010, ! 0x8f420384, 0x24420001, 0xaf420384, 0x8f420384, ! 0x3c020010, 0x621024, 0x10400006, 0x3c020020, ! 0x8f4201c0, 0x24420001, 0xaf4201c0, 0x8f4201c0, ! 0x3c020020, 0x621024, 0x10400006, 0x24100001, ! 0x8f420388, 0x24420001, 0xaf420388, 0x8f420388, ! 0x24100001, 0x8c020260, 0x8fab0064, 0x4b102b, ! 0x10400015, 0x320200ff, 0x8f4201e8, 0x24420001, ! 0xaf4201e8, 0x8f4201e8, 0x8fac006c, 0x8f8200e0, ! 0x358c0100, 0xafac006c, 0xafa20010, 0x8f8200e4, ! 0x24100001, 0x3c040001, 0x24843fd0, 0xafa20014, ! 0x8fa60020, 0x8fa70024, 0x3c050007, 0xc002a0b, ! 0x34a53600, 0x320200ff, 0x10400010, 0x3c020080, ! 0x2c21024, 0x1440000e, 0x32c20400, 0x8fab006c, ! 0x3c020080, 0x34420100, 0x1621024, 0x10400005, ! 0x0, 0x8f42020c, 0x24420001, 0xaf42020c, ! 0x8f42020c, 0x10000202, 0x8fa30064, 0x32c20400, ! 0x10400012, 0x34028100, 0x97c3000c, 0x1462000f, ! 0x0, 0x240c0200, 0xa7ac0076, 0x97c2000e, ! 0x8fc30008, 0x8fc40004, 0x8fab0064, 0x8fc50000, ! 0x256bfffc, 0xafab0064, 0xa7a2007e, 0xafc3000c, ! 0xafc40008, 0xafc50004, 0x27de0004, 0x8fa70064, ! 0x320200ff, 0x14400034, 0x3c020100, 0x97c4000c, ! 0x2c8305dd, 0x38828870, 0x2c420001, 0x621825, ! 0x10600015, 0x2821, 0x32c20800, 0x10400015, ! 0x24020800, 0x97c30014, 0x14620012, 0x3402aaaa, ! 0x97c3000e, 0x14620007, 0x2021, 0x97c30010, ! 0x24020300, 0x14620004, 0x801021, 0x97c20012, ! 0x2c440001, 0x801021, 0x54400006, 0x24050016, ! 0x10000004, 0x0, 0x24020800, 0x50820001, ! 0x2405000e, 0x10a00013, 0x3c52021, 0x24830009, ! 0x3c02001f, 0x3442ffff, 0x43102b, 0x10400003, ! 0x0, 0x8f420148, 0x621823, 0x90620000, ! 0x38430006, 0x2c630001, 0x38420011, 0x2c420001, ! 0x621825, 0x10600004, 0x3c020100, 0x94820002, ! 0x453821, 0x3c020100, 0x2c21024, 0x5040000e, ! 0xafa70064, 0x8fac0064, 0x10ec0008, 0x3c050007, ! 0x3c040001, 0x24844038, 0x8fa60064, 0x34a54000, ! 0xafa00010, 0xc002a0b, 0xafa00014, 0x8fab0064, ! 0x256b0004, 0xafab0064, 0x8f420080, 0x8fac0064, ! 0x4c102b, 0x1040002c, 0x32c28000, 0x10400034, ! 0x240b0003, 0x32c21000, 0x10400031, 0xafab005c, ! 0x1000002e, 0x240c0004, 0x8f420350, 0x2403ffbf, ! 0x283a024, 0x24420001, 0xaf420350, 0x10000173, ! 0x8f420350, 0x3c020800, 0x2c2b025, 0x2402ffbf, ! 0x282a024, 0x8f830128, 0x3c040001, 0x24844000, ! 0x26620001, 0xafa20014, 0xafa30010, 0x8f860120, ! 0x8f870124, 0x3c050007, 0xc002a0b, 0x34a55300, ! 0x10000162, 0x0, 0x8ea20000, 0x8ea30004, ! 0x3c040001, 0x24844018, 0xafb00010, 0xafb10014, ! 0x8ea70018, 0x34a55900, 0xc002a0b, 0x603021, ! 0x10000156, 0x0, 0x8f420084, 0x8fab0064, ! 0x4b102b, 0x14400007, 0x3c020001, 0x2c21024, ! 0x10400004, 0x0, 0x240c0002, 0xafac005c, ! 0x8fab0064, 0x11600166, 0x27ac0020, 0xafac008c, ! 0x8fab005c, 0x240c0001, 0x556c0021, 0x240c0002, ! 0x8f430054, 0x8f420050, 0x1062000b, 0x274b0054, ! 0x8f510054, 0x3403ecc0, 0xafab004c, 0x26220001, ! 0x304201ff, 0xafa20054, 0x111140, 0x431021, ! 0x1000006b, 0x2e2a821, 0x8f420044, 0x8fac0064, ! 0x3c040001, 0x24843fdc, 0xafac0014, 0xafa20010, ! 0x8f460054, 0x8f470050, 0x3c050007, 0xc002a0b, ! 0x34a54300, 0x8f430350, 0x2402ffbf, 0x282a024, ! 0x24630001, 0xaf430350, 0x10000124, 0x8f420350, ! 0x156c001d, 0x0, 0x8f430074, 0x8f420070, ! 0x1062000a, 0x274b0074, 0x8f510074, 0xafab004c, ! 0x26220001, 0x304203ff, 0xafa20054, 0x111140, ! 0x24426cc0, 0x1000004a, 0x2e2a821, 0x8f420044, ! 0x8fac0064, 0x3c040001, 0x24843fe8, 0x3c050007, ! 0xafac0014, 0xafa20010, 0x8f460074, 0x8f470070, ! 0x34a54500, 0x240b0001, 0xc002a0b, 0xafab005c, ! 0x1000ffc3, 0x0, 0x8f430064, 0x8f420060, ! 0x1062001a, 0x274c0064, 0x8f510064, 0x8fab005c, ! 0xafac004c, 0x26220001, 0x304200ff, 0xafa20054, ! 0x24020004, 0x1562000e, 0x111140, 0x111180, ! 0x24420cc0, 0x2e21021, 0xafa20044, 0x9442002a, ! 0x8fac0044, 0x8fab0064, 0x4b102b, 0x10400024, ! 0x25950020, 0x240c0001, 0x10000021, 0xa3ac0087, ! 0x24424cc0, 0x1000001e, 0x2e2a821, 0x8f420044, ! 0x8fab0064, 0x3c040001, 0x24843ff4, 0xafab0014, ! 0xafa20010, 0x8f460064, 0x8f470060, 0x3c050007, ! 0xc002a0b, 0x34a54800, 0x3c020008, 0x2c21024, ! 0x1440ff61, 0x0, 0x8f420370, 0x240c0001, ! 0xafac005c, 0x24420001, 0xaf420370, 0x1000ff90, ! 0x8f420370, 0x27a30036, 0x131040, 0x621821, ! 0x94620000, 0x441021, 0x1000001f, 0xa4620000, ! 0xaebe0018, 0x93a20087, 0x10400084, 0x9821, ! 0x8fab0044, 0x8fa40064, 0x8fa3008c, 0x25620020, ! 0xafa20028, 0x25620008, 0xafa20030, 0x25620010, ! 0xafab002c, 0xafa20034, 0x9562002a, 0xa7a20038, ! 0x95620018, 0xa7a2003a, 0x9562001a, 0xa7a2003c, ! 0x9562001c, 0xa7a2003e, 0x94620018, 0x24630002, ! 0x822023, 0x1880ffdf, 0x26730001, 0x2e620004, ! 0x1440fff9, 0x0, 0x8f4200fc, 0x262102a, ! 0x14400030, 0x24030001, 0x8f83012c, 0x10600028, 0x0, 0x8f820124, 0x431023, 0x22143, 0x58800001, 0x24840040, 0x8f820128, 0x431023, 0x21943, 0x58600001, 0x24630040, 0x64102a, 0x54400001, 0x602021, 0xaf4400fc, 0x8f4200fc, ! 0x262102a, 0x10400016, 0x24030001, 0x1000001a, ! 0x306200ff, 0x8fac008c, 0x101040, 0x4c1021, ! 0x94470018, 0x101080, 0x4c1021, 0xafbe0010, ! 0x8c420008, 0x3c040001, 0x2484400c, 0x3c050007, 0x8c430004, 0x8c420000, 0x34a55500, 0x2003021, ! 0xc002a0b, 0xafa30014, 0x10000039, 0x0, 0x8f420334, 0x1821, 0x24420001, 0xaf420334, ! 0x8f420334, 0x306200ff, 0x1040ff06, 0x8021, 0x8f430008, 0x2402fbff, 0x1260002d, 0x625024, ! 0x3c0b4000, 0x22b4025, 0x8fb1008c, 0x2669ffff, 0x2209021, 0x8e420008, 0x96270018, 0x8c440000, ! 0x8c450004, 0x56090004, 0x240b0001, 0x240c0002, ! 0x10000002, 0xafac0010, 0xafab0010, 0x16000004, 0xafa80014, 0x8f420008, 0x10000002, 0xafa20018, ! 0xafaa0018, 0x8f42010c, 0x3c03021, 0xafa80098, ! 0xafa9009c, 0x40f809, 0xafaa00a0, 0x8fa80098, ! 0x8fa9009c, 0x8faa00a0, 0x1040ffc2, 0x3c02001f, 0x96230018, 0x3442ffff, 0x3c3f021, 0x5e102b, 0x10400003, 0x26310002, 0x8f420148, 0x3c2f023, 0x26100001, 0x213102b, 0x1440ffda, 0x26520004, ! 0x8fb00064, 0x1000001a, 0x0, 0x96a3000a, ! 0x8fb00064, 0x70102b, 0x54400001, 0x608021, ! 0x8ea40000, 0x8ea50004, 0x8fab005c, 0x240c0002, ! 0xafac0010, 0x934305c4, 0xb1700, 0x10600003, 0x2223025, 0x3c020800, 0xc23025, 0xafa60014, 0x8f420008, 0xafa20018, 0x8f42010c, 0x3c03021, ! 0x40f809, 0x2003821, 0x1040fecb, 0x3c050007, ! 0x97ac0076, 0x11800007, 0x96a3000e, 0x934205c4, ! 0x14400004, 0x0, 0x97ab007e, 0x6c1825, ! 0xa6ab0016, 0x8fac006c, 0x3c02ffff, 0x1821024, ! 0x10400003, 0xc1402, 0x34630400, 0xa6a20014, ! 0xa6b0000a, 0x8fab0064, 0x560b0006, 0x3d0f021, ! 0x34620004, 0xafa00064, 0xa6a2000e, 0x1000000d, ! 0xa34005c4, 0x8fac0064, 0x3c02001f, 0x3442ffff, ! 0x5e102b, 0x1906023, 0xafac0064, 0xa6a3000e, ! 0x240b0001, 0x10400003, 0xa34b05c4, 0x8f420148, ! 0x3c2f023, 0x8fab0054, 0x8fac004c, 0xad8b0000, ! 0x8fac0064, 0x1580feba, 0x0, 0x8fab0064, ! 0x1160001b, 0x0, 0x934205c4, 0x10400006, ! 0x0, 0xaf5e00c4, 0xaf4b00c0, 0x8fac006c, ! 0x1000000e, 0xaf4c00c8, 0x97ab0076, 0x1160000b, ! 0x34038100, 0x8fa20020, 0x8c46000c, 0xa443000c, ! 0x97ac007e, 0x8c440004, 0x8c450008, 0xa44c000e, ! 0xac440000, 0xac450004, 0xac460008, 0x8f42034c, ! 0x24420001, 0xaf42034c, 0x10000010, 0x8f42034c, ! 0x8fab006c, 0x3164ffff, 0x2484fffc, 0x801821, ! 0x8f440250, 0x8f450254, 0x8f460118, 0x1021, ! 0xa32821, 0xa3382b, 0x822021, 0x872021, ! 0xaf440250, 0xc0f809, 0xaf450254, 0x8fbf00c0, ! 0x8fbe00bc, 0x8fb500b8, 0x8fb300b4, 0x8fb200b0, ! 0x8fb100ac, 0x8fb000a8, 0x3e00008, 0x27bd00c8, ! 0x3e00008, 0x0, 0x27bdffd8, 0xafbf0024, ! 0xafb00020, 0x8f43004c, 0x8f420048, 0x10620034, ! 0x0, 0x8f430048, 0x8f42004c, 0x622023, ! 0x4820001, 0x24840200, 0x8f430054, 0x8f42004c, ! 0x43102b, 0x14400004, 0x24020200, 0x8f43004c, ! 0x10000005, 0x431023, 0x8f420054, 0x8f43004c, ! 0x431023, 0x2442ffff, 0x405021, 0x8a102a, ! 0x54400001, 0x805021, 0x8f49004c, 0x8f48004c, ! 0x8f440188, 0x8f45018c, 0x8f46004c, 0x24071000, ! 0xafa70010, 0x84140, 0x1001821, 0x12a4821, ! 0x313001ff, 0xafb00014, 0x8f470014, 0x1021, ! 0x63140, 0xafa70018, 0xa32821, 0xa3382b, ! 0x822021, 0x872021, 0x3402ecc0, 0xc23021, ! 0x8f420108, 0x2e63021, 0x40f809, 0xa3940, ! 0x54400001, 0xaf50004c, 0x8f43004c, 0x8f420048, ! 0x14620018, 0x0, 0x8f420000, 0x10400007, ! 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, ! 0x0, 0x10000005, 0x0, 0xaf800048, ! 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, ! 0x2403fdff, 0x431024, 0xaf820060, 0x8f420000, ! 0x10400003, 0x0, 0x10000002, 0xaf80004c, ! 0xaf800048, 0x8fbf0024, 0x8fb00020, 0x3e00008, ! 0x27bd0028, 0x3e00008, 0x0, 0x27bdffd8, ! 0xafbf0024, 0xafb00020, 0x8f43005c, 0x8f420058, ! 0x10620049, 0x0, 0x8f430058, 0x8f42005c, ! 0x622023, 0x4820001, 0x24840100, 0x8f430064, ! 0x8f42005c, 0x43102b, 0x14400004, 0x24020100, ! 0x8f43005c, 0x10000005, 0x431023, 0x8f420064, ! 0x8f43005c, 0x431023, 0x2442ffff, 0x403821, ! 0x87102a, 0x54400001, 0x803821, 0x8f42005c, 0x471021, 0x305000ff, 0x32c21000, 0x10400015, 0x24082000, 0x8f49005c, 0x8f440190, 0x8f450194, 0x8f46005c, 0x73980, 0xafa80010, 0xafb00014, --- 2632,2969 ---- 0x54400001, 0x602021, 0xaf4400fc, 0x8f4200fc, 0xa2102a, 0x14400006, 0x24030001, 0x8f420334, 0x1821, 0x24420001, 0xaf420334, 0x8f420334, ! 0x306200ff, 0x1040fe46, 0x3c020800, 0x96b1000a, ! 0x8fb00074, 0x3223ffff, 0x70102b, 0x54400001, ! 0x608021, 0x8ea40000, 0x8ea50004, 0x240a0001, ! 0xafaa0010, 0xafbe0014, 0x8f420008, 0x8fa6006c, 0xafa20018, 0x8f42010c, 0x40f809, 0x2003821, ! 0x1040fe43, 0x3c050007, 0x96a4000e, 0x97ab0096, ! 0x11600007, 0x809021, 0x934205c4, 0x14400004, ! 0x0, 0x97aa008e, 0x8b2025, 0xa6aa0016, ! 0x8fab0084, 0x3c02ffff, 0x1621024, 0x10400003, ! 0xb1402, 0x34840400, 0xa6a20014, 0x3c021000, ! 0x2c21024, 0x10400006, 0x0, 0x8fa20040, ! 0x401821, 0x1021, 0xaea20000, 0xaea30004, ! 0x8faa0074, 0x560a0073, 0xa6a4000e, 0x34820004, ! 0xa6a2000e, 0x8fab007c, 0x14b1021, 0xa6a2000a, 0x8f430044, 0x8f4401a0, 0x8f4501a4, 0x34028000, 0xafa20010, 0x8f420044, 0x2a03021, 0x24070020, 0xafa20014, 0x8f42000c, 0x31940, 0x604821, 0xafa20018, 0x8f42010c, 0x4021, 0xa92821, 0xa9182b, 0x882021, 0x40f809, 0x832021, ! 0x5040fe19, 0xa6b2000e, 0x8f420368, 0xafa00074, ! 0xa34005c4, 0x2442ffff, 0xaf420368, 0x8faa0064, ! 0x240b0001, 0x8f420368, 0x154b0006, 0x24020002, ! 0x8f42035c, 0x2442ffff, 0xaf42035c, 0x1000000c, ! 0x8f42035c, 0x15420006, 0x0, 0x8f420364, ! 0x2442ffff, 0xaf420364, 0x10000005, 0x8f420364, ! 0x8f420360, 0x2442ffff, 0xaf420360, 0x8f420360, ! 0x8faa005c, 0x8fab0054, 0xad6a0000, 0x8f420044, ! 0x8f440088, 0x8f430078, 0x24420001, 0x441024, ! 0x24630001, 0xaf420044, 0xaf430078, 0x8c020240, ! 0x62182b, 0x14600076, 0x24070008, 0x8f440168, ! 0x8f45016c, 0x8f430044, 0x8f48000c, 0x8f860120, ! 0x24020040, 0xafa20010, 0xafa30014, 0xafa80018, ! 0x8f42010c, 0x40f809, 0x24c6001c, 0x14400011, ! 0x240b0001, 0x3c010001, 0x370821, 0xa02b40f2, ! 0x8f820124, 0xafa20010, 0x8f820128, 0x3c040001, ! 0x24847ddc, 0xafa20014, 0x8f460044, 0x8f870120, ! 0x3c050009, 0xc002d3b, 0x34a51300, 0x1000000b, ! 0x0, 0x8f420304, 0x24420001, 0xaf420304, ! 0x8f420304, 0x8f420044, 0xaf42007c, 0x3c010001, ! 0x370821, 0xa02040f2, 0xaf400078, 0x8f420318, ! 0x24420001, 0xaf420318, 0x8f420318, 0x10000048, ! 0x0, 0xa6b0000a, 0x8f430044, 0x8f4401a0, ! 0x8f4501a4, 0x34028000, 0xafa20010, 0x8f420044, ! 0x2a03021, 0x24070020, 0xafa20014, 0x8f42000c, ! 0x31940, 0x604821, 0xafa20018, 0x8f42010c, ! 0x4021, 0xa92821, 0xa9182b, 0x882021, ! 0x40f809, 0x832021, 0x1040fdba, 0x240a0001, ! 0xa34a05c4, 0x8fab0074, 0x8faa006c, 0x1705823, ! 0xafab0074, 0x8fab00a4, 0x1505021, 0x16a102b, ! 0x10400004, 0xafaa006c, 0x8f420148, 0x1425023, ! 0xafaa006c, 0x8f420368, 0x2442ffff, 0xaf420368, ! 0x8faa0064, 0x240b0001, 0x8f420368, 0x154b0006, ! 0x24020002, 0x8f42035c, 0x2442ffff, 0xaf42035c, ! 0x1000000c, 0x8f42035c, 0x11420006, 0x0, ! 0x8f420360, 0x2442ffff, 0xaf420360, 0x10000005, ! 0x8f420360, 0x8f420364, 0x2442ffff, 0xaf420364, ! 0x8f420364, 0x8faa005c, 0x8fab0054, 0xad6a0000, ! 0x8f420044, 0x8f440088, 0x8f430078, 0x24420001, ! 0x441024, 0x24630001, 0xaf420044, 0xaf430078, ! 0x8fab0074, 0x1560fdba, 0x0, 0x8faa0074, ! 0x1140001f, 0x0, 0x934205c4, 0x10400009, ! 0x0, 0x8fab006c, 0xaf4b00c4, 0xaf4a00c0, ! 0x8faa0084, 0xaf4a00c8, 0x8fab007c, 0x1000000e, ! 0xaf4b00cc, 0x97aa0096, 0x1140000b, 0x34038100, ! 0x8fa20020, 0x8c46000c, 0xa443000c, 0x97ab008e, ! 0x8c440004, 0x8c450008, 0xa44b000e, 0xac440000, ! 0xac450004, 0xac460008, 0x8f42034c, 0x24420001, ! 0xaf42034c, 0x8f42034c, 0x10000011, 0x0, ! 0x8faa0084, 0x3144ffff, 0x2484fffc, 0x801821, ! 0x8f440250, 0x8f450254, 0x8f460118, 0x1021, ! 0xa32821, 0xa3382b, 0x822021, 0x872021, ! 0xaf440250, 0xaf450254, 0xc0f809, 0x0, ! 0x8fbf00d0, 0x8fbe00cc, 0x8fb500c8, 0x8fb300c4, ! 0x8fb200c0, 0x8fb100bc, 0x8fb000b8, 0x3e00008, ! 0x27bd00d8, 0x3e00008, 0x0, 0x27bdff30, ! 0x240b0001, 0xafbf00c8, 0xafbe00c4, 0xafb500c0, ! 0xafb300bc, 0xafb200b8, 0xafb100b4, 0xafb000b0, ! 0xa3a0008f, 0xafa0004c, 0xafab0064, 0xa7a0007e, ! 0xafa00040, 0x934205c4, 0x8821, 0x10400007, ! 0xa7a00086, 0x8f4c00c0, 0xafac006c, 0x8f4b00c8, ! 0x8f5e00c4, 0x10000173, 0xafab0074, 0x8f420114, ! 0x40f809, 0x0, 0x403021, 0x10c00337, ! 0x0, 0x8cc20000, 0x8cc30004, 0xafa20020, ! 0xafa30024, 0x8fac0024, 0x8fbe0020, 0x3182ffff, ! 0x2442fffc, 0xafa2006c, 0x3c020006, 0x2c21024, ! 0x14400015, 0xafac0074, 0x93c20000, 0x30420001, ! 0x10400011, 0x2402ffff, 0x8fc30000, 0x14620004, ! 0x3402ffff, 0x97c30004, 0x1062000b, 0x0, ! 0xc0025dd, 0x3c02021, 0x304200ff, 0x14400006, ! 0x0, 0x8f420118, 0x40f809, 0x0, ! 0x10000316, 0x0, 0x8fa20024, 0x3c03ffbf, ! 0x3463ffff, 0x431024, 0x3c03ffff, 0x431824, ! 0x14600003, 0xafa20024, 0x10000040, 0x8021, ! 0x3c020080, 0x621024, 0x10400007, 0x0, ! 0x8f42038c, 0x24420001, 0xaf42038c, 0x8f42038c, ! 0x10000036, 0x24100001, 0x8f420210, 0x24420001, ! 0xaf420210, 0x8f420210, 0x3c020001, 0x621024, ! 0x10400006, 0x3c020002, 0x8f4201c4, 0x24420001, ! 0xaf4201c4, 0x8f4201c4, 0x3c020002, 0x621024, ! 0x10400006, 0x3c020004, 0x8f42037c, 0x24420001, ! 0xaf42037c, 0x8f42037c, 0x3c020004, 0x621024, ! 0x10400006, 0x3c020008, 0x8f420380, 0x24420001, ! 0xaf420380, 0x8f420380, 0x3c020008, 0x621024, ! 0x10400006, 0x3c020010, 0x8f420384, 0x24420001, ! 0xaf420384, 0x8f420384, 0x3c020010, 0x621024, ! 0x10400006, 0x3c020020, 0x8f4201c0, 0x24420001, ! 0xaf4201c0, 0x8f4201c0, 0x3c020020, 0x621024, ! 0x10400006, 0x24100001, 0x8f420388, 0x24420001, ! 0xaf420388, 0x8f420388, 0x24100001, 0x8c020260, ! 0x8fab006c, 0x4b102b, 0x10400015, 0x320200ff, ! 0x8f4201e8, 0x24420001, 0xaf4201e8, 0x8f4201e8, ! 0x8fac0074, 0x8f8200e0, 0x358c0100, 0xafac0074, ! 0xafa20010, 0x8f8200e4, 0x24100001, 0x3c040001, ! 0x24847e00, 0xafa20014, 0x8fa60020, 0x8fa70024, ! 0x3c050007, 0xc002d3b, 0x34a53600, 0x320200ff, ! 0x10400011, 0x3c020080, 0x2c21024, 0x1440000f, ! 0x32c20400, 0x8fab0074, 0x3c020080, 0x34420100, ! 0x1621024, 0x10400005, 0x0, 0x8f42020c, ! 0x24420001, 0xaf42020c, 0x8f42020c, 0x8fa3006c, ! 0x10000296, 0x0, 0x32c20400, 0x10400012, ! 0x34028100, 0x97c3000c, 0x1462000f, 0x0, ! 0x240c0200, 0xa7ac007e, 0x97c2000e, 0x8fc30008, ! 0x8fc40004, 0x8fab006c, 0x8fc50000, 0x256bfffc, ! 0xafab006c, 0xa7a20086, 0xafc3000c, 0xafc40008, ! 0xafc50004, 0x27de0004, 0x8fa7006c, 0x320200ff, ! 0x14400033, 0x3c020100, 0x97c4000c, 0x2c8305dd, ! 0x38828870, 0x2c420001, 0x621825, 0x10600014, ! 0x32c20800, 0x10400015, 0x24020800, 0x97c30014, ! 0x14620012, 0x3402aaaa, 0x97c3000e, 0x14620007, ! 0x2021, 0x97c30010, 0x24020300, 0x14620004, ! 0x801021, 0x97c20012, 0x2c440001, 0x801021, ! 0x54400006, 0x24110016, 0x10000004, 0x0, ! 0x24020800, 0x50820001, 0x2411000e, 0x12200013, ! 0x3d12021, 0x24830009, 0x3c02001f, 0x3442ffff, ! 0x43102b, 0x10400003, 0x0, 0x8f420148, ! 0x621823, 0x90620000, 0x38430006, 0x2c630001, ! 0x38420011, 0x2c420001, 0x621825, 0x10600004, ! 0x3c020100, 0x94820002, 0x513821, 0x3c020100, ! 0x2c21024, 0x5040000e, 0xafa7006c, 0x8fac006c, ! 0x10ec0008, 0x3c050007, 0x3c040001, 0x24847e70, ! 0x8fa6006c, 0x34a54000, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x8fab006c, 0x256b0004, 0xafab006c, ! 0x8f420080, 0x8fac006c, 0x4c102b, 0x1040006f, ! 0x32c28000, 0x10400077, 0x32c21000, 0x10400044, ! 0x240b0004, 0x3c021000, 0x2c21024, 0x10400071, ! 0xafab0064, 0x1220006f, 0x1911023, 0x2c420014, ! 0x1440006c, 0x3d12021, 0x24830006, 0x90820000, ! 0x3c05001f, 0x34a5ffff, 0x3042000f, 0x23080, ! 0xa3102b, 0x10400003, 0x0, 0x8f420148, ! 0x621823, 0x94620000, 0x30421fff, 0x10400003, ! 0x2261021, 0x1000005b, 0xafa20040, 0x24830009, ! 0xa3102b, 0x10400003, 0x0, 0x8f420148, ! 0x621823, 0x90630000, 0x24020006, 0x14620017, ! 0x24020011, 0x94820002, 0x2c420028, 0x1440004d, ! 0x861821, 0xa3102b, 0x50400004, 0x2463000c, ! 0x8f420148, 0x621823, 0x2463000c, 0xa3102b, ! 0x10400003, 0x0, 0x8f420148, 0x621823, ! 0x90630000, 0x306200f0, 0x21882, 0x2261021, ! 0x431021, 0x1000003b, 0xafa20040, 0x14620039, ! 0x0, 0x94820002, 0x2c42001c, 0x14400035, ! 0x2261021, 0x24420008, 0x10000032, 0xafa20040, ! 0x1000002f, 0x240c0003, 0x8f420350, 0x2403ffbf, ! 0x283a024, 0x24420001, 0xaf420350, 0x8f420350, ! 0x100001c4, 0x0, 0x3c020800, 0x2c2b025, ! 0x2402ffbf, 0x282a024, 0x8f830128, 0x3c040001, ! 0x24847e38, 0x26620001, 0xafa20014, 0xafa30010, ! 0x8f860120, 0x8f870124, 0x3c050007, 0xc002d3b, ! 0x34a55300, 0x100001b3, 0x0, 0x8ea20000, ! 0x8ea30004, 0x3c040001, 0x24847e50, 0xafb00010, ! 0xafb10014, 0x8ea70018, 0x34a55900, 0xc002d3b, ! 0x603021, 0x100001a7, 0x0, 0x8f420084, ! 0x8fab006c, 0x4b102b, 0x14400007, 0x3c020001, ! 0x2c21024, 0x10400004, 0x0, 0x240c0002, ! 0xafac0064, 0x8fab006c, 0x116001b8, 0x27ac0020, ! 0xafac0094, 0x8fab0064, 0x240c0001, 0x556c0022, ! 0x240c0002, 0x8f430054, 0x8f420050, 0x1062000b, ! 0x274b0054, 0x8f510054, 0x3403ecc0, 0xafab0054, ! 0x26220001, 0x304201ff, 0xafa2005c, 0x111140, ! 0x431021, 0x10000077, 0x2e2a821, 0x8f420044, ! 0x8fac006c, 0x3c040001, 0x24847e0c, 0xafac0014, ! 0xafa20010, 0x8f460054, 0x8f470050, 0x3c050007, ! 0xc002d3b, 0x34a54300, 0x8f430350, 0x2402ffbf, ! 0x282a024, 0x24630001, 0xaf430350, 0x8f420350, ! 0x10000174, 0x0, 0x156c001d, 0x0, ! 0x8f430074, 0x8f420070, 0x1062000a, 0x274b0074, ! 0x8f510074, 0xafab0054, 0x26220001, 0x304203ff, ! 0xafa2005c, 0x111140, 0x24426cc0, 0x10000055, ! 0x2e2a821, 0x8f420044, 0x8fac006c, 0x3c040001, ! 0x24847e18, 0x3c050007, 0xafac0014, 0xafa20010, ! 0x8f460074, 0x8f470070, 0x34a54500, 0x240b0001, ! 0xc002d3b, 0xafab0064, 0x1000ffc2, 0x0, ! 0x8f430064, 0x8f420060, 0x1062002b, 0x274c0064, ! 0x8f510064, 0x8fab0064, 0xafac0054, 0x26220001, ! 0x304200ff, 0xafa2005c, 0x24020004, 0x1562001f, ! 0x111140, 0x111180, 0x24420cc0, 0x2e21021, ! 0xafa2004c, 0x24550020, 0x3c021000, 0x2c21024, ! 0x1040000e, 0x0, 0x8fac004c, 0x8fab006c, ! 0x9582002a, 0x4b102b, 0x54400006, 0x240c0001, ! 0x8fa20040, 0x50400028, 0xaebe0018, 0x104b0025, ! 0x240c0001, 0x10000023, 0xa3ac008f, 0x8fab004c, ! 0x8fac006c, 0x9562002a, 0x4c102b, 0x1040001d, ! 0x240b0001, 0x1000001b, 0xa3ab008f, 0x24424cc0, ! 0x10000018, 0x2e2a821, 0x8f420044, 0x8fac006c, ! 0x3c040001, 0x24847e24, 0xafac0014, 0xafa20010, ! 0x8f460064, 0x8f470060, 0x3c050007, 0xc002d3b, ! 0x34a54800, 0x3c020008, 0x2c21024, 0x1440ff4e, ! 0x0, 0x8f420370, 0x240b0001, 0xafab0064, ! 0x24420001, 0xaf420370, 0x8f420370, 0x1000ff7d, ! 0x0, 0xaebe0018, 0x93a2008f, 0x104000bf, ! 0x0, 0x8fac004c, 0x8fa40040, 0x25820020, ! 0xafa20028, 0x25820008, 0xafa20030, 0x25820010, ! 0xafac002c, 0x1080000e, 0xafa20034, 0x9583002a, ! 0x83102b, 0x54400001, 0x801821, 0x1000000b, ! 0xa7a30038, 0x27a30036, 0x131040, 0x621821, ! 0x94620000, 0x441021, 0x10000016, 0xa4620000, ! 0x8fab004c, 0x9562002a, 0xa7a20038, 0x8fac004c, ! 0x8fa4006c, 0x8fa30094, 0x95820018, 0xa7a2003a, ! 0x9582001a, 0xa7a2003c, 0x9582001c, 0x9821, ! 0xa7a2003e, 0x94620018, 0x24630002, 0x822023, ! 0x1880ffe8, 0x26730001, 0x2e620004, 0x1440fff9, ! 0x0, 0x18800014, 0x240207b1, 0x3c040001, ! 0x24847de4, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77e30, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x8f4200fc, 0x262102a, ! 0x14400044, 0x24030001, 0x8f83012c, 0x1060003c, 0x0, 0x8f820124, 0x431023, 0x22143, 0x58800001, 0x24840040, 0x8f820128, 0x431023, 0x21943, 0x58600001, 0x24630040, 0x64102a, 0x54400001, 0x602021, 0xaf4400fc, 0x8f4200fc, ! 0x262102a, 0x1040002a, 0x24030001, 0x1000002e, ! 0x306200ff, 0x8fab0094, 0x101040, 0x4b1021, ! 0x94470018, 0x101080, 0x4b1021, 0xafbe0010, ! 0x8c420008, 0x3c040001, 0x24847e44, 0x3c050007, 0x8c430004, 0x8c420000, 0x34a55500, 0x2003021, ! 0xc002d3b, 0xafa30014, 0x3c040001, 0x24847de4, ! 0x240207e3, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77e30, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x10000039, 0x0, 0x8f420334, 0x1821, 0x24420001, 0xaf420334, ! 0x8f420334, 0x306200ff, 0x1040febf, 0x8021, 0x8f430008, 0x2402fbff, 0x1260002d, 0x625024, ! 0x3c0c4000, 0x22c4025, 0x8fb10094, 0x2669ffff, 0x2209021, 0x8e420008, 0x96270018, 0x8c440000, ! 0x8c450004, 0x56090004, 0x240c0001, 0x240b0002, ! 0x10000002, 0xafab0010, 0xafac0010, 0x16000004, 0xafa80014, 0x8f420008, 0x10000002, 0xafa20018, ! 0xafaa0018, 0x8f42010c, 0x3c03021, 0xafa800a0, ! 0xafa900a4, 0x40f809, 0xafaa00a8, 0x8fa800a0, ! 0x8fa900a4, 0x8faa00a8, 0x1040ffae, 0x3c02001f, 0x96230018, 0x3442ffff, 0x3c3f021, 0x5e102b, 0x10400003, 0x26310002, 0x8f420148, 0x3c2f023, 0x26100001, 0x213102b, 0x1440ffda, 0x26520004, ! 0x8fb0006c, 0x1000001a, 0x0, 0x96a3000a, ! 0x8fb0006c, 0x70102b, 0x54400001, 0x608021, ! 0x8ea40000, 0x8ea50004, 0x8fac0064, 0x240b0002, ! 0xafab0010, 0x934305c4, 0xc1700, 0x10600003, 0x2223025, 0x3c020800, 0xc23025, 0xafa60014, 0x8f420008, 0xafa20018, 0x8f42010c, 0x3c03021, ! 0x40f809, 0x2003821, 0x1040fe84, 0x3c050007, ! 0x97ab007e, 0x96a3000e, 0x11600007, 0x0, ! 0x934205c4, 0x14400004, 0x0, 0x97ac0086, ! 0x6b1825, 0xa6ac0016, 0x8fab0074, 0x3c02ffff, ! 0x1621024, 0x10400003, 0xb1402, 0x34630400, ! 0xa6a20014, 0xa6b0000a, 0x8fac006c, 0x560c0006, ! 0x3d0f021, 0x34620004, 0xafa0006c, 0xa6a2000e, ! 0x1000000d, 0xa34005c4, 0x8fab006c, 0x3c02001f, ! 0x3442ffff, 0x5e102b, 0x1705823, 0xafab006c, ! 0xa6a3000e, 0x240c0001, 0x10400003, 0xa34c05c4, ! 0x8f420148, 0x3c2f023, 0x3c021000, 0x2c21024, ! 0x10400006, 0x0, 0x8fa20040, 0x401821, ! 0x1021, 0xaea20000, 0xaea30004, 0x8fac005c, ! 0x8fab0054, 0xad6c0000, 0x8fab006c, 0x1560fe69, ! 0x0, 0x8fac006c, 0x1180001c, 0x0, ! 0x934205c4, 0x10400006, 0x0, 0xaf5e00c4, ! 0xaf4c00c0, 0x8fab0074, 0x1000000e, 0xaf4b00c8, ! 0x97ac007e, 0x1180000b, 0x34038100, 0x8fa20020, ! 0x8c46000c, 0xa443000c, 0x97ab0086, 0x8c440004, ! 0x8c450008, 0xa44b000e, 0xac440000, 0xac450004, ! 0xac460008, 0x8f42034c, 0x24420001, 0xaf42034c, ! 0x8f42034c, 0x10000011, 0x0, 0x8fac0074, ! 0x3184ffff, 0x2484fffc, 0x801821, 0x8f440250, ! 0x8f450254, 0x8f460118, 0x1021, 0xa32821, ! 0xa3382b, 0x822021, 0x872021, 0xaf440250, ! 0xaf450254, 0xc0f809, 0x0, 0x8fbf00c8, ! 0x8fbe00c4, 0x8fb500c0, 0x8fb300bc, 0x8fb200b8, ! 0x8fb100b4, 0x8fb000b0, 0x3e00008, 0x27bd00d0, ! 0x3e00008, 0x0, 0x27bdffd0, 0xafbf0028, ! 0xafb10024, 0xafb00020, 0x8f43004c, 0x8f420048, ! 0x1062004a, 0x0, 0x8f430048, 0x8f42004c, ! 0x628823, 0x6220001, 0x26310200, 0x8f430054, ! 0x8f42004c, 0x43102b, 0x14400004, 0x24020200, ! 0x8f43004c, 0x10000005, 0x438023, 0x8f420054, ! 0x8f43004c, 0x431023, 0x2450ffff, 0x16000016, ! 0x2005821, 0x3c040001, 0x24847de4, 0x24020877, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77e30, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x2005821, 0x22b102a, 0x54400001, ! 0x2205821, 0x8f4a004c, 0x8f49004c, 0x8f440188, ! 0x8f45018c, 0x8f46004c, 0xb3940, 0x24081000, ! 0xafa80010, 0x94940, 0x1201821, 0x1021, ! 0x14b5021, 0x315001ff, 0xafb00014, 0x8f480014, ! 0xa32821, 0xa3482b, 0x822021, 0x892021, ! 0x63140, 0x3402ecc0, 0xafa80018, 0x8f430108, ! 0xc23021, 0x60f809, 0x2e63021, 0x54400001, ! 0xaf50004c, 0x8f43004c, 0x8f420048, 0x14620019, ! 0x0, 0x8f420000, 0x10400007, 0x0, ! 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, ! 0x10000005, 0x0, 0xaf800048, 0x8f820048, ! 0x1040fffd, 0x0, 0x8f820060, 0x2403fdff, ! 0x431024, 0xaf820060, 0x8f420000, 0x10400004, ! 0x0, 0xaf80004c, 0x10000002, 0x0, ! 0xaf800048, 0x8fbf0028, 0x8fb10024, 0x8fb00020, ! 0x3e00008, 0x27bd0030, 0x3e00008, 0x0, ! 0x27bdffd0, 0xafbf0028, 0xafb10024, 0xafb00020, ! 0x8f43005c, 0x8f420058, 0x1062005f, 0x0, ! 0x8f430058, 0x8f42005c, 0x628823, 0x6220001, ! 0x26310100, 0x8f430064, 0x8f42005c, 0x43102b, ! 0x14400004, 0x24020100, 0x8f43005c, 0x10000005, ! 0x438023, 0x8f420064, 0x8f43005c, 0x431023, ! 0x2450ffff, 0x16000016, 0x2003821, 0x3c040001, ! 0x24847de4, 0x240208d1, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77e30, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x2003821, ! 0x227102a, 0x54400001, 0x2203821, 0x8f42005c, 0x471021, 0x305000ff, 0x32c21000, 0x10400015, 0x24082000, 0x8f49005c, 0x8f440190, 0x8f450194, 0x8f46005c, 0x73980, 0xafa80010, 0xafb00014, *************** *** 2607,2681 **** 0xa32821, 0xa3482b, 0x822021, 0x892021, 0x63140, 0xafa80018, 0x8f420108, 0x24c64cc0, 0x40f809, 0x2e63021, 0x54400001, 0xaf50005c, ! 0x8f43005c, 0x8f420058, 0x14620018, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x2403feff, 0x431024, ! 0xaf820060, 0x8f420000, 0x10400003, 0x0, ! 0x10000002, 0xaf80004c, 0xaf800048, 0x8fbf0024, ! 0x8fb00020, 0x3e00008, 0x27bd0028, 0x3e00008, ! 0x0, 0x27bdffd8, 0xafbf0024, 0xafb00020, ! 0x8f43006c, 0x8f420068, 0x10620033, 0x0, ! 0x8f430068, 0x8f42006c, 0x622023, 0x4820001, ! 0x24840400, 0x8f430074, 0x8f42006c, 0x43102b, ! 0x14400004, 0x24020400, 0x8f43006c, 0x10000005, ! 0x431023, 0x8f420074, 0x8f43006c, 0x431023, ! 0x2442ffff, 0x405021, 0x8a102a, 0x54400001, ! 0x805021, 0x8f49006c, 0x8f48006c, 0x8f440198, ! 0x8f45019c, 0x8f46006c, 0x24074000, 0xafa70010, ! 0x84140, 0x1001821, 0x12a4821, 0x313003ff, ! 0xafb00014, 0x8f470014, 0x1021, 0x63140, ! 0x24c66cc0, 0xafa70018, 0xa32821, 0xa3382b, ! 0x822021, 0x872021, 0x8f420108, 0x2e63021, ! 0x40f809, 0xa3940, 0x54400001, 0xaf50006c, ! 0x8f43006c, 0x8f420068, 0x14620018, 0x0, ! 0x8f420000, 0x10400007, 0x0, 0xaf80004c, ! 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, ! 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, ! 0x0, 0x8f820060, 0x2403f7ff, 0x431024, ! 0xaf820060, 0x8f420000, 0x10400003, 0x0, ! 0x10000002, 0xaf80004c, 0xaf800048, 0x8fbf0024, ! 0x8fb00020, 0x3e00008, 0x27bd0028, 0x3e00008, ! 0x0, 0x8f4200fc, 0x3c030001, 0x8f4400f8, ! 0x346330c8, 0x24420001, 0xaf4200fc, 0x8f850128, ! 0x2e31021, 0x54820004, 0x24820008, 0x3c020001, ! 0x34422ec8, 0x2e21021, 0x401821, 0xaf4300f8, ! 0xac600000, 0x8f4200f4, 0x14620004, 0x3c020001, ! 0x24a20020, 0x1000000f, 0xaf820128, 0x8f4300f8, ! 0x344230c8, 0x2e21021, 0x54620004, 0x24620008, ! 0x3c020001, 0x34422ec8, 0x2e21021, 0x401821, ! 0x8c620004, 0x21140, 0xa21021, 0xaf820128, ! 0xac600000, 0x8ca30018, 0x30620070, 0x1040002d, 0x30620020, 0x10400004, 0x3c020010, 0x2c21024, 0x1040000d, 0x0, 0x30620040, 0x10400004, 0x3c020020, 0x2c21024, 0x10400007, 0x0, ! 0x30620010, 0x1040001f, 0x3c020040, 0x2c21024, ! 0x1440001c, 0x0, 0x8f820040, 0x30420001, 0x14400008, 0x2021, 0x8c030104, 0x24020001, 0x50620005, 0x24040001, 0x8c020264, 0x10400003, ! 0x801021, 0x24040001, 0x801021, 0x10400006, 0x0, 0x8f42030c, 0x24420001, 0xaf42030c, ! 0x10000008, 0x8f42030c, 0x8f820044, 0x34420004, ! 0xaf820044, 0x8f420308, 0x24420001, 0xaf420308, ! 0x8f420308, 0x3e00008, 0x0, 0x3e00008, ! 0x0, 0x27bdff98, 0xafbf0060, 0xafbe005c, ! 0xafb50058, 0xafb30054, 0xafb20050, 0xafb1004c, ! 0xafb00048, 0x8f4200fc, 0x24420001, 0xaf4200fc, ! 0x8f880128, 0x25020020, 0xaf820128, 0x8d030018, ! 0x30620070, 0x1040002e, 0x30620020, 0x10400004, ! 0x3c020010, 0x2c21024, 0x1040000d, 0x0, ! 0x30620040, 0x10400004, 0x3c020020, 0x2c21024, ! 0x10400007, 0x0, 0x30620010, 0x104001a9, ! 0x3c020040, 0x2c21024, 0x144001a6, 0x0, ! 0x8f820040, 0x30420001, 0x14400008, 0x2021, ! 0x8c030104, 0x24020001, 0x50620005, 0x24040001, ! 0x8c020264, 0x10400003, 0x801021, 0x24040001, ! 0x801021, 0x10400006, 0x0, 0x8f42030c, ! 0x24420001, 0xaf42030c, 0x10000192, 0x8f42030c, ! 0x8f820044, 0x34420004, 0xaf820044, 0x8f420308, ! 0x24420001, 0xaf420308, 0x1000018a, 0x8f420308, ! 0x30620002, 0x1040014b, 0x3c020800, 0x8d1e001c, 0x1e5702, 0xafaa0034, 0x950a0016, 0x3c22024, 0xafaa0024, 0x8faa0034, 0x24020001, 0x15420006, 0x33deffff, 0x1e1140, 0x3403ecc0, 0x431021, --- 2976,3071 ---- 0xa32821, 0xa3482b, 0x822021, 0x892021, 0x63140, 0xafa80018, 0x8f420108, 0x24c64cc0, 0x40f809, 0x2e63021, 0x54400001, 0xaf50005c, ! 0x8f43005c, 0x8f420058, 0x14620019, 0x0, 0x8f420000, 0x10400007, 0x0, 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, 0x10000005, 0x0, 0xaf800048, 0x8f820048, 0x1040fffd, 0x0, 0x8f820060, 0x2403feff, 0x431024, ! 0xaf820060, 0x8f420000, 0x10400004, 0x0, ! 0xaf80004c, 0x10000002, 0x0, 0xaf800048, ! 0x8fbf0028, 0x8fb10024, 0x8fb00020, 0x3e00008, ! 0x27bd0030, 0x3e00008, 0x0, 0x27bdffd0, ! 0xafbf0028, 0xafb10024, 0xafb00020, 0x8f43006c, ! 0x8f420068, 0x10620049, 0x0, 0x8f430068, ! 0x8f42006c, 0x628823, 0x6220001, 0x26310400, ! 0x8f430074, 0x8f42006c, 0x43102b, 0x14400004, ! 0x24020400, 0x8f43006c, 0x10000005, 0x438023, ! 0x8f420074, 0x8f43006c, 0x431023, 0x2450ffff, ! 0x16000016, 0x2005821, 0x3c040001, 0x24847de4, ! 0x2402093a, 0xafa20010, 0xafa00014, 0x8f860144, ! 0x3c070001, 0x24e77e30, 0xc002d3b, 0x3405dead, ! 0x8f82011c, 0x34420002, 0xaf82011c, 0x8f820220, ! 0x34420004, 0xaf820220, 0x8f820140, 0x3c030001, ! 0x431025, 0xaf820140, 0x2005821, 0x22b102a, ! 0x54400001, 0x2205821, 0x8f4a006c, 0x8f49006c, ! 0x8f440198, 0x8f45019c, 0x8f46006c, 0xb3940, ! 0x24084000, 0xafa80010, 0x94940, 0x1201821, ! 0x1021, 0x14b5021, 0x315003ff, 0xafb00014, ! 0x8f480014, 0xa32821, 0xa3482b, 0x822021, ! 0x892021, 0x63140, 0xafa80018, 0x8f420108, ! 0x24c66cc0, 0x40f809, 0x2e63021, 0x54400001, ! 0xaf50006c, 0x8f43006c, 0x8f420068, 0x14620019, ! 0x0, 0x8f420000, 0x10400007, 0x0, ! 0xaf80004c, 0x8f82004c, 0x1040fffd, 0x0, ! 0x10000005, 0x0, 0xaf800048, 0x8f820048, ! 0x1040fffd, 0x0, 0x8f820060, 0x2403f7ff, ! 0x431024, 0xaf820060, 0x8f420000, 0x10400004, ! 0x0, 0xaf80004c, 0x10000002, 0x0, ! 0xaf800048, 0x8fbf0028, 0x8fb10024, 0x8fb00020, ! 0x3e00008, 0x27bd0030, 0x3e00008, 0x0, ! 0x27bdffe0, 0xafbf001c, 0xafb00018, 0x8f4200fc, ! 0x8f4400f8, 0x8f4300f4, 0x24420001, 0xaf4200fc, ! 0x8f900128, 0x14830016, 0x3c020001, 0x3c040001, ! 0x24847de4, 0x240209a2, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77e30, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x3c020001, ! 0x8f4300f8, 0x344230c8, 0x2e21021, 0x54620004, ! 0x24620008, 0x3c020001, 0x34422ec8, 0x2e21021, ! 0x401821, 0xaf4300f8, 0xac600000, 0x8f4200f4, ! 0x14620005, 0x3c020001, 0x26020020, 0xaf820128, ! 0x1000000f, 0x0, 0x8f4300f8, 0x344230c8, ! 0x2e21021, 0x54620004, 0x24620008, 0x3c020001, ! 0x34422ec8, 0x2e21021, 0x401821, 0x8c620004, ! 0x21140, 0x2021021, 0xaf820128, 0xac600000, ! 0x8e030018, 0x30620070, 0x10400030, 0x30620020, ! 0x10400004, 0x3c020010, 0x2c21024, 0x1040000d, ! 0x0, 0x30620040, 0x10400004, 0x3c020020, ! 0x2c21024, 0x10400007, 0x0, 0x30620010, ! 0x10400038, 0x3c020040, 0x2c21024, 0x14400035, ! 0x0, 0x8f820040, 0x30420001, 0x14400008, ! 0x2021, 0x8c030104, 0x24020001, 0x50620005, ! 0x24040001, 0x8c020264, 0x10400003, 0x801021, ! 0x24040001, 0x801021, 0x10400007, 0x0, ! 0x8f42030c, 0x24420001, 0xaf42030c, 0x8f42030c, ! 0x10000020, 0x0, 0x8f820044, 0x34420004, ! 0xaf820044, 0x8f420308, 0x24420001, 0xaf420308, ! 0x8f420308, 0x10000017, 0x0, 0x3062b08f, ! 0x14400014, 0x240209d3, 0x3c040001, 0x24847de4, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77e30, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8fbf001c, 0x8fb00018, 0x3e00008, ! 0x27bd0020, 0x3e00008, 0x0, 0x27bdff98, ! 0xafbf0060, 0xafbe005c, 0xafb50058, 0xafb30054, ! 0xafb20050, 0xafb1004c, 0xafb00048, 0x8f4200fc, ! 0x24420001, 0xaf4200fc, 0x8f880128, 0x25020020, ! 0xaf820128, 0x8d030018, 0x30620070, 0x10400030, 0x30620020, 0x10400004, 0x3c020010, 0x2c21024, 0x1040000d, 0x0, 0x30620040, 0x10400004, 0x3c020020, 0x2c21024, 0x10400007, 0x0, ! 0x30620010, 0x104001c0, 0x3c020040, 0x2c21024, ! 0x144001bd, 0x0, 0x8f820040, 0x30420001, 0x14400008, 0x2021, 0x8c030104, 0x24020001, 0x50620005, 0x24040001, 0x8c020264, 0x10400003, ! 0x801021, 0x24040001, 0x801021, 0x10400007, 0x0, 0x8f42030c, 0x24420001, 0xaf42030c, ! 0x8f42030c, 0x100001a8, 0x0, 0x8f820044, ! 0x34420004, 0xaf820044, 0x8f420308, 0x24420001, ! 0xaf420308, 0x8f420308, 0x1000019f, 0x0, ! 0x30620002, 0x10400160, 0x3c020800, 0x8d1e001c, 0x1e5702, 0xafaa0034, 0x950a0016, 0x3c22024, 0xafaa0024, 0x8faa0034, 0x24020001, 0x15420006, 0x33deffff, 0x1e1140, 0x3403ecc0, 0x431021, *************** *** 2736,2742 **** 0x94820000, 0x2028021, 0x3c020100, 0x2c21024, 0x1040000e, 0x0, 0x8faa002c, 0x31420004, 0x1040000a, 0x0, 0x9504000e, 0x2642021, ! 0xc003da8, 0x2484fffc, 0x3042ffff, 0x2228821, 0x111c02, 0x3222ffff, 0x628821, 0x8faa0024, 0x1518823, 0x111402, 0x2228821, 0x2308821, 0x111402, 0x2228821, 0x3231ffff, 0x52200001, --- 3126,3132 ---- 0x94820000, 0x2028021, 0x3c020100, 0x2c21024, 0x1040000e, 0x0, 0x8faa002c, 0x31420004, 0x1040000a, 0x0, 0x9504000e, 0x2642021, ! 0xc004423, 0x2484fffc, 0x3042ffff, 0x2228821, 0x111c02, 0x3222ffff, 0x628821, 0x8faa0024, 0x1518823, 0x111402, 0x2228821, 0x2308821, 0x111402, 0x2228821, 0x3231ffff, 0x52200001, *************** *** 2747,2875 **** 0x8f490044, 0x84140, 0x1001821, 0xafa90014, 0x8f48000c, 0x2a03021, 0x24070020, 0xafa80018, 0x8f48010c, 0x1021, 0xa32821, 0xa3482b, ! 0x822021, 0x100f809, 0x892021, 0x1440000b, ! 0x0, 0x8f820128, 0x3c040001, 0x24844044, 0xafbe0014, 0xafa20010, 0x8f860124, 0x8f870120, ! 0x3c050007, 0xc002a0b, 0x34a59920, 0x8f420368, 0x2442ffff, 0xaf420368, 0x8f420044, 0x8f430088, 0x24420001, 0x431024, 0xaf420044, 0x8faa0034, 0x8f440368, 0x24020001, 0x15420006, 0x24020002, ! 0x8f42035c, 0x2442ffff, 0xaf42035c, 0x10000049, 0x8f42035c, 0x15420006, 0x0, 0x8f420364, ! 0x2442ffff, 0xaf420364, 0x10000042, 0x8f420364, ! 0x8f420360, 0x2442ffff, 0xaf420360, 0x1000003d, ! 0x8f420360, 0x30621000, 0x10400005, 0x30628000, ! 0x8f420078, 0x24420001, 0x10000036, 0xaf420078, ! 0x10400034, 0x0, 0x8f420078, 0x24420001, ! 0xaf420078, 0x8c030240, 0x43102b, 0x1440002d, ! 0x24070008, 0x8f440168, 0x8f45016c, 0x8f430044, ! 0x8f48000c, 0x8f860120, 0x24020040, 0xafa20010, ! 0xafa30014, 0xafa80018, 0x8f42010c, 0x40f809, ! 0x24c6001c, 0x14400011, 0x24020001, 0x3c010001, ! 0x370821, 0xa02240f2, 0x8f820124, 0xafa20010, ! 0x8f820128, 0x3c040001, 0x24843fbc, 0xafa20014, ! 0x8f460044, 0x8f870120, 0x3c050009, 0xc002a0b, ! 0x34a51300, 0x1000000b, 0x0, 0x8f420304, ! 0x24420001, 0xaf420304, 0x8f420304, 0x8f420044, ! 0xaf42007c, 0x3c010001, 0x370821, 0xa02040f2, ! 0xaf400078, 0x8f420318, 0x24420001, 0xaf420318, ! 0x8f420318, 0x8fbf0060, 0x8fbe005c, 0x8fb50058, ! 0x8fb30054, 0x8fb20050, 0x8fb1004c, 0x8fb00048, ! 0x3e00008, 0x27bd0068, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x8f42013c, ! 0xaf8200c0, 0x8f42013c, 0xaf8200c4, 0x8f42013c, ! 0xaf8200c8, 0x8f420138, 0xaf8200d0, 0x8f420138, ! 0xaf8200d4, 0x8f420138, 0x3e00008, 0xaf8200d8, ! 0x27bdffe0, 0x27840208, 0x24050200, 0xafbf0018, ! 0xc002a8f, 0x24060008, 0x8c020204, 0xc003ece, ! 0xaf820210, 0x2021, 0x8c060248, 0x24020004, ! 0x3c010001, 0xac224428, 0xc0049c0, 0x24050004, ! 0x3c020001, 0x8c424424, 0x30420001, 0x10400007, ! 0x24020001, 0x3c010001, 0xac224428, 0x2021, ! 0x24050001, 0xc0049c0, 0x3c06601b, 0x3c040001, ! 0x24844100, 0x8f420150, 0x8f430154, 0x3c050008, ! 0x8f460158, 0x21640, 0x31940, 0x34630403, ! 0x431025, 0x633c0, 0x461025, 0xaf82021c, ! 0xafa00010, 0xafa00014, 0x8f86021c, 0x34a50200, ! 0xc002a0b, 0x3821, 0x3c010001, 0xac204420, ! 0x3c010001, 0xac204438, 0x8fbf0018, 0x3e00008, ! 0x27bd0020, 0x27bdffe0, 0x3c050008, 0x34a50300, ! 0xafbf0018, 0xafa00010, 0xafa00014, 0x8f860200, ! 0x3c040001, 0x2484410c, 0xc002a0b, 0x3821, ! 0x8f420410, 0x24420001, 0xaf420410, 0x8f420410, ! 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x27bdffd8, ! 0xafbf0020, 0xafb1001c, 0xafb00018, 0x8f4203a4, ! 0x24420001, 0xaf4203a4, 0x8f4203a4, 0x8f900220, ! 0x8f8200e0, 0xafa20010, 0x8f8200e4, 0xafa20014, ! 0x8f8600c4, 0x8f8700c8, 0x3c040001, 0x24844118, ! 0xc002a0b, 0x2002821, 0x3c044000, 0x2041024, ! 0x504000b4, 0x3c040100, 0x8f4203bc, 0x24420001, ! 0xaf4203bc, 0x8f4203bc, 0x8f8700c4, 0x8f8300c8, ! 0x8f420148, 0x671823, 0x43102b, 0x10400003, ! 0x0, 0x8f420148, 0x621821, 0x10600005, ! 0x0, 0x8f42014c, 0x43102b, 0x1040000b, ! 0x0, 0x8f8200e0, 0x8f430124, 0xaf42011c, ! 0xaf430114, 0x8f820220, 0x3c0308ff, 0x3463fffb, ! 0x431024, 0x100000ce, 0x441025, 0x8f820220, ! 0x3c0308ff, 0x3463ffff, 0x431024, 0x34420004, ! 0xaf820220, 0x8f8200e0, 0x8f430124, 0xaf42011c, ! 0xaf430114, 0x8f8600c8, 0x8f840120, 0x8f830124, ! 0x10000005, 0x2821, 0x14620002, 0x24620020, ! 0x27624800, 0x401821, 0x1064000c, 0x30a200ff, ! 0x8c620018, 0x30420003, 0x1040fff7, 0x27624fe0, ! 0x8f4203d0, 0x24050001, 0x24420001, 0xaf4203d0, ! 0x8f4203d0, 0x8c660008, 0x30a200ff, 0x14400058, ! 0x0, 0x934205c4, 0x14400055, 0x0, ! 0x8f8700c4, 0x8f8800e0, 0x8f8400e4, 0x2402fff8, ! 0x1024024, 0x1041023, 0x218c3, 0x4620001, ! 0x24630200, 0x10600005, 0x24020001, 0x10620009, ! 0x0, 0x1000001f, 0x0, 0x8f4203c0, ! 0xe03021, 0x24420001, 0xaf4203c0, 0x10000040, ! 0x8f4203c0, 0x8f4203c4, 0x24420001, 0xaf4203c4, 0x8c860000, 0x8f420148, 0x8f4303c4, 0xe61823, 0x43102b, 0x10400004, 0x2c62233f, 0x8f420148, ! 0x621821, 0x2c62233f, 0x14400031, 0x0, 0x8f42020c, 0x24420001, 0xaf42020c, 0x8f42020c, ! 0xe03021, 0x24820008, 0xaf8200e4, 0x10000028, ! 0xaf8200e8, 0x8f4203c8, 0x24420001, 0xaf4203c8, ! 0x8f4203c8, 0x8c850000, 0x8f420148, 0xa71823, ! 0x43102b, 0x10400003, 0x0, 0x8f420148, ! 0x621821, 0x8f42014c, 0x43102b, 0x5440000a, ! 0xa03021, 0x8f42020c, 0x24420001, 0xaf42020c, ! 0x8f42020c, 0x24820008, 0xaf8200e4, 0x8f8400e4, ! 0x1488ffec, 0xaf8400e8, 0x1488000d, 0x27623000, ! 0x14820002, 0x2482fff8, 0x27623ff8, 0x94430006, ! 0x3c02001f, 0x3442ffff, 0xc33021, 0x46102b, ! 0x10400003, 0x0, 0x8f420148, 0xc23023, ! 0xaf8600c8, 0x8f8300c4, 0x8f420148, 0xc31823, ! 0x43102b, 0x10400003, 0x0, 0x8f420148, ! 0x621821, 0x10600005, 0x0, 0x8f42014c, ! 0x43102b, 0x50400008, 0x3c02fdff, 0x8f820220, ! 0x3c0308ff, 0x3463fffb, 0x431024, 0x3c034000, ! 0x1000003f, 0x431025, 0x8f4303cc, 0x3442ffff, ! 0x282a024, 0x24630001, 0xaf4303cc, 0x10000039, ! 0x8f4203cc, 0x2041024, 0x1040000e, 0x3c110200, ! 0x8f4203a8, 0x24420001, 0xaf4203a8, 0x8f4203a8, ! 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, ! 0x441025, 0xc003c6d, 0xaf820220, 0x10000029, ! 0x0, 0x2111024, 0x50400008, 0x3c110400, ! 0x8f4203ac, 0x24420001, 0xaf4203ac, 0xc003c6d, ! 0x8f4203ac, 0x10000019, 0x0, 0x2111024, ! 0x1040001c, 0x0, 0x8f830224, 0x24021402, ! 0x14620009, 0x3c050008, 0x3c040001, 0x24844124, ! 0xafa00010, 0xafa00014, 0x8f860224, 0x34a50500, ! 0xc002a0b, 0x3821, 0x8f4203b0, 0x24420001, ! 0xaf4203b0, 0x8f4203b0, 0x8f820220, 0x2002021, ! 0x34420002, 0xc004758, 0xaf820220, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, 0x511025, ! 0xaf820220, 0x8fbf0020, 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, 0x3e00008, 0x0, ! 0x3c020001, 0x8c424438, 0x27bdffb0, 0xafbf0048, 0xafbe0044, 0xafb50040, 0xafb3003c, 0xafb20038, 0xafb10034, 0x1040000f, 0xafb00030, 0x3c040001, ! 0x24844130, 0x3c050008, 0xafa00010, 0xafa00014, ! 0x8f860220, 0x34a50600, 0x24020001, 0x3c010001, ! 0xac204438, 0x3c010001, 0xac22442c, 0xc002a0b, 0x3821, 0x3c037fff, 0x8c020268, 0x3463ffff, 0x3c04fdff, 0x431024, 0xac020268, 0x8f420004, 0x3484ffff, 0x30420002, 0x10400092, 0x284a024, --- 3137,3288 ---- 0x8f490044, 0x84140, 0x1001821, 0xafa90014, 0x8f48000c, 0x2a03021, 0x24070020, 0xafa80018, 0x8f48010c, 0x1021, 0xa32821, 0xa3482b, ! 0x822021, 0x100f809, 0x892021, 0x1440001f, ! 0x0, 0x8f820128, 0x3c040001, 0x24847e7c, 0xafbe0014, 0xafa20010, 0x8f860124, 0x8f870120, ! 0x3c050007, 0xc002d3b, 0x34a59920, 0x3c040001, ! 0x24847de4, 0x24020be9, 0xafa20010, 0xafa00014, ! 0x8f860144, 0x3c070001, 0x24e77e30, 0xc002d3b, ! 0x3405dead, 0x8f82011c, 0x34420002, 0xaf82011c, ! 0x8f820220, 0x34420004, 0xaf820220, 0x8f820140, ! 0x3c030001, 0x431025, 0xaf820140, 0x8f420368, 0x2442ffff, 0xaf420368, 0x8f420044, 0x8f430088, 0x24420001, 0x431024, 0xaf420044, 0x8faa0034, 0x8f440368, 0x24020001, 0x15420006, 0x24020002, ! 0x8f42035c, 0x2442ffff, 0xaf42035c, 0x1000004a, 0x8f42035c, 0x15420006, 0x0, 0x8f420364, ! 0x2442ffff, 0xaf420364, 0x10000043, 0x8f420364, ! 0x8f420360, 0x2442ffff, 0xaf420360, 0x8f420360, ! 0x1000003d, 0x0, 0x30621000, 0x10400005, ! 0x30628000, 0x8f420078, 0x24420001, 0x10000036, ! 0xaf420078, 0x10400034, 0x0, 0x8f420078, ! 0x24420001, 0xaf420078, 0x8c030240, 0x43102b, ! 0x1440002d, 0x24070008, 0x8f440168, 0x8f45016c, ! 0x8f430044, 0x8f48000c, 0x8f860120, 0x24020040, ! 0xafa20010, 0xafa30014, 0xafa80018, 0x8f42010c, ! 0x40f809, 0x24c6001c, 0x14400011, 0x24020001, ! 0x3c010001, 0x370821, 0xa02240f2, 0x8f820124, ! 0xafa20010, 0x8f820128, 0x3c040001, 0x24847ddc, ! 0xafa20014, 0x8f460044, 0x8f870120, 0x3c050009, ! 0xc002d3b, 0x34a51300, 0x1000000b, 0x0, ! 0x8f420304, 0x24420001, 0xaf420304, 0x8f420304, ! 0x8f420044, 0xaf42007c, 0x3c010001, 0x370821, ! 0xa02040f2, 0xaf400078, 0x8f420318, 0x24420001, ! 0xaf420318, 0x8f420318, 0x8fbf0060, 0x8fbe005c, ! 0x8fb50058, 0x8fb30054, 0x8fb20050, 0x8fb1004c, ! 0x8fb00048, 0x3e00008, 0x27bd0068, 0x3e00008, ! 0x0, 0x8f42013c, 0xaf8200c0, 0x8f42013c, ! 0xaf8200c4, 0x8f42013c, 0xaf8200c8, 0x8f420138, ! 0xaf8200d0, 0x8f420138, 0xaf8200d4, 0x8f420138, ! 0x3e00008, 0xaf8200d8, 0x27bdffe0, 0x27840208, ! 0x24050200, 0xafbf0018, 0xc002dbf, 0x24060008, ! 0x8c020204, 0xaf820210, 0xc004564, 0x0, ! 0x3c020002, 0x8c428508, 0x30420002, 0x1040000e, ! 0x2021, 0x8c060248, 0x24020002, 0x3c010002, ! 0xac22850c, 0xc0056de, 0x24050002, 0x2021, ! 0x8c060248, 0x24020001, 0x3c010002, 0xac22850c, ! 0x10000011, 0x24050001, 0x8c060248, 0x24020004, ! 0x3c010002, 0xac22850c, 0xc0056de, 0x24050004, ! 0x3c020002, 0x8c428508, 0x30420001, 0x10400008, ! 0x24020001, 0x3c010002, 0xac22850c, 0x2021, ! 0x24050001, 0x3c06601b, 0xc0056de, 0x0, ! 0x3c040001, 0x24847f48, 0x8f420150, 0x8f430154, ! 0x3c050008, 0x8f460158, 0x21640, 0x31940, ! 0x34630403, 0x431025, 0x633c0, 0x461025, ! 0xaf82021c, 0xafa00010, 0xafa00014, 0x8f86021c, ! 0x34a50200, 0xc002d3b, 0x3821, 0x3c010002, ! 0xac208504, 0x3c010002, 0xac20851c, 0x8fbf0018, ! 0x3e00008, 0x27bd0020, 0x27bdffe0, 0x3c050008, ! 0x34a50300, 0xafbf0018, 0xafa00010, 0xafa00014, ! 0x8f860200, 0x3c040001, 0x24847f54, 0xc002d3b, ! 0x3821, 0x8f420410, 0x24420001, 0xaf420410, ! 0x8f420410, 0x8fbf0018, 0x3e00008, 0x27bd0020, ! 0x27bdffd8, 0xafbf0020, 0xafb1001c, 0xafb00018, ! 0x8f4203a4, 0x24420001, 0xaf4203a4, 0x8f4203a4, ! 0x8f900220, 0x8f8200e0, 0xafa20010, 0x8f8200e4, ! 0xafa20014, 0x8f8600c4, 0x8f8700c8, 0x3c040001, ! 0x24847f60, 0xc002d3b, 0x2002821, 0x3c044000, ! 0x2041024, 0x504000bc, 0x3c040100, 0x8f4203bc, ! 0x24420001, 0xaf4203bc, 0x8f4203bc, 0x8f8700c4, ! 0x8f8300c8, 0x8f420148, 0x671823, 0x43102b, ! 0x10400003, 0x0, 0x8f420148, 0x621821, ! 0x10600005, 0x0, 0x8f42014c, 0x43102b, ! 0x1040000d, 0x0, 0x8f8200e0, 0x8f430124, ! 0xaf42011c, 0xaf430114, 0x8f820220, 0x3c0308ff, ! 0x3463fffb, 0x431024, 0x441025, 0xaf820220, ! 0x10000104, 0x0, 0x8f820220, 0x3c0308ff, ! 0x3463ffff, 0x431024, 0x34420004, 0xaf820220, ! 0x8f8200e0, 0x8f430124, 0xaf42011c, 0xaf430114, ! 0x8f8600c8, 0x8f840120, 0x8f830124, 0x10000005, ! 0x2821, 0x14620002, 0x24620020, 0x27624800, ! 0x401821, 0x1064000c, 0x30a200ff, 0x8c620018, ! 0x30420003, 0x1040fff7, 0x27624fe0, 0x8f4203d0, ! 0x24050001, 0x24420001, 0xaf4203d0, 0x8f4203d0, ! 0x8c660008, 0x30a200ff, 0x1440005b, 0x0, ! 0x934205c4, 0x14400058, 0x0, 0x8f8700c4, ! 0x8f8800e0, 0x8f8400e4, 0x2402fff8, 0x1024024, ! 0x1041023, 0x218c3, 0x4620001, 0x24630200, ! 0x10600005, 0x24020001, 0x1062000a, 0x0, ! 0x10000021, 0x0, 0x8f4203c0, 0xe03021, ! 0x24420001, 0xaf4203c0, 0x8f4203c0, 0x10000042, ! 0x0, 0x8f4203c4, 0x24420001, 0xaf4203c4, 0x8c860000, 0x8f420148, 0x8f4303c4, 0xe61823, 0x43102b, 0x10400004, 0x2c62233f, 0x8f420148, ! 0x621821, 0x2c62233f, 0x14400033, 0x0, 0x8f42020c, 0x24420001, 0xaf42020c, 0x8f42020c, ! 0xe03021, 0x24820008, 0xaf8200e4, 0xaf8200e8, ! 0x10000029, 0x0, 0x8f4203c8, 0x24420001, ! 0xaf4203c8, 0x8f4203c8, 0x8c850000, 0x8f420148, ! 0xa71823, 0x43102b, 0x10400003, 0x0, ! 0x8f420148, 0x621821, 0x8f42014c, 0x43102b, ! 0x5440000b, 0xa03021, 0x8f42020c, 0x24420001, ! 0xaf42020c, 0x8f42020c, 0x24820008, 0xaf8200e4, ! 0x8f8400e4, 0xaf8400e8, 0x1488ffeb, 0x0, ! 0x1488000d, 0x27623000, 0x14820002, 0x2482fff8, ! 0x27623ff8, 0x94430006, 0x3c02001f, 0x3442ffff, ! 0xc33021, 0x46102b, 0x10400003, 0x0, ! 0x8f420148, 0xc23023, 0xaf8600c8, 0x8f8300c4, ! 0x8f420148, 0xc31823, 0x43102b, 0x10400003, ! 0x0, 0x8f420148, 0x621821, 0x10600005, ! 0x0, 0x8f42014c, 0x43102b, 0x1040000a, ! 0x3c02fdff, 0x8f820220, 0x3c0308ff, 0x3463fffb, ! 0x431024, 0x3c034000, 0x431025, 0xaf820220, ! 0x10000070, 0x0, 0x8f4303cc, 0x3442ffff, ! 0x282a024, 0x24630001, 0xaf4303cc, 0x8f4203cc, ! 0x10000068, 0x0, 0x2041024, 0x1040000f, ! 0x3c110200, 0x8f4203a8, 0x24420001, 0xaf4203a8, ! 0x8f4203a8, 0x8f820220, 0x3c0308ff, 0x3463ffff, ! 0x431024, 0x441025, 0xaf820220, 0xc0042e9, ! 0x0, 0x10000057, 0x0, 0x2111024, ! 0x50400009, 0x3c110400, 0x8f4203ac, 0x24420001, ! 0xaf4203ac, 0x8f4203ac, 0xc0042e9, 0x0, ! 0x1000002e, 0x0, 0x2111024, 0x10400033, ! 0x3c02b800, 0x8f830224, 0x24021402, 0x1462001d, ! 0x3c050008, 0x3c040001, 0x24847f6c, 0xafa00010, ! 0xafa00014, 0x8f860224, 0x34a50500, 0xc002d3b, ! 0x3821, 0x3c040001, 0x24847f38, 0x240203b3, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77f78, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8f4203b0, 0x24420001, 0xaf4203b0, ! 0x8f4203b0, 0x8f820220, 0x2002021, 0x34420002, ! 0xaf820220, 0xc005464, 0x0, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, 0x511025, ! 0xaf820220, 0x10000017, 0x0, 0x2021024, ! 0x10400014, 0x240203c7, 0x3c040001, 0x24847f38, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070001, ! 0x24e77f78, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8fbf0020, 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, 0x3e00008, 0x0, ! 0x3c020002, 0x8c42851c, 0x27bdffb0, 0xafbf0048, 0xafbe0044, 0xafb50040, 0xafb3003c, 0xafb20038, 0xafb10034, 0x1040000f, 0xafb00030, 0x3c040001, ! 0x24847f80, 0x3c050008, 0xafa00010, 0xafa00014, ! 0x8f860220, 0x34a50600, 0x24020001, 0x3c010002, ! 0xac20851c, 0x3c010002, 0xac228510, 0xc002d3b, 0x3821, 0x3c037fff, 0x8c020268, 0x3463ffff, 0x3c04fdff, 0x431024, 0xac020268, 0x8f420004, 0x3484ffff, 0x30420002, 0x10400092, 0x284a024, *************** *** 2879,2885 **** 0xafaa002c, 0x27c50001, 0x8c020228, 0xa09021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x248440c8, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006d, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, --- 3292,3298 ---- 0xafaa002c, 0x27c50001, 0x8c020228, 0xa09021, 0x1642000e, 0x1e38c0, 0x8f42033c, 0x24420001, 0xaf42033c, 0x8f42033c, 0x8c020228, 0x3c040001, ! 0x24847f00, 0x3c050009, 0xafa00014, 0xafa20010, 0x8fa60020, 0x1000006d, 0x34a50500, 0xf71021, 0x8fa30020, 0x8fa40024, 0xac4304c0, 0xac4404c4, 0x8f830054, 0x8f820054, 0x247003e8, 0x2021023, *************** *** 2893,2899 **** 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x248440d4, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000035, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001e, 0x326200ff, 0x8f830054, 0x8f820054, --- 3306,3312 ---- 0x0, 0x326200ff, 0x54400017, 0xaf520018, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, 0x8f820124, ! 0x3c040001, 0x24847f0c, 0x3c050009, 0xafa20014, 0x8d460000, 0x10000035, 0x34a50600, 0x8f420308, 0x24130001, 0x24420001, 0xaf420308, 0x8f420308, 0x1000001e, 0x326200ff, 0x8f830054, 0x8f820054, *************** *** 2906,3003 **** 0x1440ffee, 0x0, 0x326200ff, 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x248440dc, 0x3c050009, ! 0xafa20014, 0x8d460000, 0x34a50700, 0xc002a0b, 0x3c03821, 0x8f4202ec, 0x24420001, 0xaf4202ec, 0x8f4202ec, 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, 0x8fb20038, 0x8fb10034, 0x8fb00030, ! 0x3e00008, 0x27bd0050, 0x3c020001, 0x8c424438, 0x27bdffe0, 0x1440000d, 0xafbf0018, 0x3c040001, ! 0x2484413c, 0x3c050008, 0xafa00010, 0xafa00014, ! 0x8f860220, 0x34a50700, 0x24020001, 0x3c010001, ! 0xac224438, 0xc002a0b, 0x3821, 0x3c020004, 0x2c21024, 0x10400007, 0x0, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, 0x34420008, ! 0xaf820220, 0x3c050001, 0x8ca54428, 0x24020001, ! 0x14a20007, 0x2021, 0xc004acc, 0x24050001, 0xac02026c, 0x8c03026c, 0x10000006, 0x3c020007, ! 0xc004acc, 0x2021, 0xac020268, 0x8c030268, 0x3c020007, 0x621824, 0x3c020002, 0x5062000d, 0x3c0205f5, 0x43102b, 0x14400006, 0x3c020004, 0x3c020001, 0x10620009, 0x3c020098, 0x1000000b, 0x0, 0x14620009, 0x3c023b9a, 0x10000004, 0x3442ca00, 0x10000002, 0x3442e100, 0x34429680, 0xaf4201fc, 0x8f4201fc, 0xaee20064, 0x8fbf0018, ! 0x3e00008, 0x27bd0020, 0x0, 0x86102b, ! 0x50400001, 0x872023, 0xc41023, 0x24843, ! 0x125102b, 0x1040001b, 0x91040, 0x824021, ! 0x88102b, 0x10400007, 0x1821, 0x94820000, ! 0x24840002, 0x621821, 0x88102b, 0x1440fffb, ! 0x0, 0x602021, 0xc73023, 0xa91023, ! 0x21040, 0xc22821, 0xc5102b, 0x10400007, ! 0x1821, 0x94c20000, 0x24c60002, 0x621821, ! 0xc5102b, 0x1440fffb, 0x0, 0x1000000d, ! 0x832021, 0x51040, 0x822821, 0x85102b, 0x10400007, 0x1821, 0x94820000, 0x24840002, ! 0x621821, 0x85102b, 0x1440fffb, 0x0, ! 0x602021, 0x41c02, 0x3082ffff, 0x622021, ! 0x41c02, 0x3082ffff, 0x622021, 0x3e00008, ! 0x3082ffff, 0x3e00008, 0x0, 0x802821, ! 0x30a20001, 0x1040002b, 0x3c03001f, 0x3463ffff, ! 0x24a20004, 0x62102b, 0x54400007, 0x65102b, ! 0x90a20001, 0x90a40003, 0x90a30000, 0x90a50002, ! 0x1000002a, 0x441021, 0x10400003, 0x0, ! 0x8f420148, 0xa22823, 0x90a40000, 0x24a50001, 0x65102b, 0x10400003, 0x0, 0x8f420148, ! 0xa22823, 0x90a20000, 0x24a50001, 0x21200, 0x822021, 0x65102b, 0x10400003, 0x0, 0x8f420148, 0xa22823, 0x90a20000, 0x24a50001, ! 0x822021, 0x65102b, 0x10400003, 0x0, ! 0x8f420148, 0xa22823, 0x90a20000, 0x1000002d, ! 0x21200, 0x3463ffff, 0x24a20004, 0x62102b, ! 0x5440000a, 0x65102b, 0x90a20000, 0x90a40002, ! 0x90a30001, 0x90a50003, 0x441021, 0x21200, ! 0x651821, 0x10000020, 0x432021, 0x10400003, 0x0, 0x8f420148, 0xa22823, 0x90a20000, ! 0x24a50001, 0x22200, 0x65102b, 0x10400003, ! 0x0, 0x8f420148, 0xa22823, 0x90a20000, ! 0x24a50001, 0x822021, 0x65102b, 0x10400003, ! 0x0, 0x8f420148, 0xa22823, 0x90a20000, ! 0x24a50001, 0x21200, 0x822021, 0x65102b, ! 0x10400003, 0x0, 0x8f420148, 0xa22823, ! 0x90a20000, 0x822021, 0x41c02, 0x3082ffff, ! 0x622021, 0x41c02, 0x3082ffff, 0x622021, ! 0x3e00008, 0x3082ffff, 0x0, 0x8f820220, ! 0x34420002, 0xaf820220, 0x3c020001, 0x8c426648, ! 0x30424000, 0x10400054, 0x24040001, 0x8f820200, ! 0x24067fff, 0x8f830200, 0x30450002, 0x2402fffd, ! 0x621824, 0xaf830200, 0xaf840204, 0x8f830054, ! 0x8f820054, 0x10000002, 0x24630001, 0x8f820054, ! 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x8f820224, 0x1444004d, 0x42040, 0xc4102b, ! 0x1040fff1, 0x0, 0x8f820200, 0x451025, ! 0xaf820200, 0x8f820220, 0x34428000, 0xaf820220, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820220, 0x3c030004, 0x431024, ! 0x1440000f, 0x0, 0x8f820220, 0x3c03ffff, ! 0x34637fff, 0x431024, 0xaf820220, 0x8f830054, ! 0x8f820054, 0x10000002, 0x24630001, 0x8f820054, ! 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x8f820220, 0x3c030004, 0x431024, 0x1440000d, ! 0x0, 0x8f820220, 0x34428000, 0xaf820220, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820220, 0x3c030004, 0x431024, ! 0x1040001b, 0x1021, 0x8f830220, 0x24020001, ! 0x10000015, 0x3c04f700, 0x8f820220, 0x3c04f700, ! 0x441025, 0xaf820220, 0x8f820220, 0x2403fffd, ! 0x431024, 0xaf820220, 0x8f820220, 0x3c030300, ! 0x431024, 0x14400003, 0x0, 0x10000008, ! 0x1021, 0x8f820220, 0x34420002, 0xaf820220, ! 0x8f830220, 0x24020001, 0x641825, 0xaf830220, ! 0x3e00008, 0x0, 0x2021, 0x3c050100, ! 0x24020001, 0xaf80021c, 0xaf820200, 0xaf820220, 0x27625000, 0xaf8200c0, 0x27625000, 0xaf8200c4, 0x27625000, 0xaf8200c8, 0x27625000, 0xaf8200d0, 0x27625000, 0xaf8200d4, 0x27625000, 0xaf8200d8, --- 3319,3416 ---- 0x1440ffee, 0x0, 0x326200ff, 0x14400011, 0x0, 0x8f420378, 0x24420001, 0xaf420378, 0x8f420378, 0x8f820120, 0x8faa002c, 0xafa20010, ! 0x8f820124, 0x3c040001, 0x24847f14, 0x3c050009, ! 0xafa20014, 0x8d460000, 0x34a50700, 0xc002d3b, 0x3c03821, 0x8f4202ec, 0x24420001, 0xaf4202ec, 0x8f4202ec, 0x8fbf0048, 0x8fbe0044, 0x8fb50040, 0x8fb3003c, 0x8fb20038, 0x8fb10034, 0x8fb00030, ! 0x3e00008, 0x27bd0050, 0x3c020002, 0x8c42851c, 0x27bdffe0, 0x1440000d, 0xafbf0018, 0x3c040001, ! 0x24847f8c, 0x3c050008, 0xafa00010, 0xafa00014, ! 0x8f860220, 0x34a50700, 0x24020001, 0x3c010002, ! 0xac22851c, 0xc002d3b, 0x3821, 0x3c020004, 0x2c21024, 0x10400007, 0x0, 0x8f820220, 0x3c0308ff, 0x3463ffff, 0x431024, 0x34420008, ! 0xaf820220, 0x3c050002, 0x8ca5850c, 0x24020001, ! 0x14a20007, 0x2021, 0xc00587d, 0x24050001, 0xac02026c, 0x8c03026c, 0x10000006, 0x3c020007, ! 0xc00587d, 0x2021, 0xac020268, 0x8c030268, 0x3c020007, 0x621824, 0x3c020002, 0x5062000d, 0x3c0205f5, 0x43102b, 0x14400006, 0x3c020004, 0x3c020001, 0x10620009, 0x3c020098, 0x1000000b, 0x0, 0x14620009, 0x3c023b9a, 0x10000004, 0x3442ca00, 0x10000002, 0x3442e100, 0x34429680, 0xaf4201fc, 0x8f4201fc, 0xaee20064, 0x8fbf0018, ! 0x3e00008, 0x27bd0020, 0x86102b, 0x50400001, ! 0x872023, 0xc41023, 0x24843, 0x125102b, ! 0x1040001b, 0x91040, 0x824021, 0x88102b, 0x10400007, 0x1821, 0x94820000, 0x24840002, ! 0x621821, 0x88102b, 0x1440fffb, 0x0, ! 0x602021, 0xc73023, 0xa91023, 0x21040, ! 0xc22821, 0xc5102b, 0x10400007, 0x1821, ! 0x94c20000, 0x24c60002, 0x621821, 0xc5102b, ! 0x1440fffb, 0x0, 0x1000000d, 0x832021, ! 0x51040, 0x822821, 0x85102b, 0x10400007, ! 0x1821, 0x94820000, 0x24840002, 0x621821, ! 0x85102b, 0x1440fffb, 0x0, 0x602021, ! 0x41c02, 0x3082ffff, 0x622021, 0x41c02, ! 0x3082ffff, 0x622021, 0x3e00008, 0x3082ffff, ! 0x3e00008, 0x0, 0x802821, 0x30a20001, ! 0x1040002b, 0x3c03001f, 0x3463ffff, 0x24a20004, ! 0x62102b, 0x54400007, 0x65102b, 0x90a20001, ! 0x90a40003, 0x90a30000, 0x90a50002, 0x1000002a, ! 0x441021, 0x10400003, 0x0, 0x8f420148, ! 0xa22823, 0x90a40000, 0x24a50001, 0x65102b, ! 0x10400003, 0x0, 0x8f420148, 0xa22823, ! 0x90a20000, 0x24a50001, 0x21200, 0x822021, ! 0x65102b, 0x10400003, 0x0, 0x8f420148, ! 0xa22823, 0x90a20000, 0x24a50001, 0x822021, 0x65102b, 0x10400003, 0x0, 0x8f420148, ! 0xa22823, 0x90a20000, 0x1000002d, 0x21200, ! 0x3463ffff, 0x24a20004, 0x62102b, 0x5440000a, ! 0x65102b, 0x90a20000, 0x90a40002, 0x90a30001, ! 0x90a50003, 0x441021, 0x21200, 0x651821, ! 0x10000020, 0x432021, 0x10400003, 0x0, ! 0x8f420148, 0xa22823, 0x90a20000, 0x24a50001, ! 0x22200, 0x65102b, 0x10400003, 0x0, ! 0x8f420148, 0xa22823, 0x90a20000, 0x24a50001, 0x822021, 0x65102b, 0x10400003, 0x0, 0x8f420148, 0xa22823, 0x90a20000, 0x24a50001, ! 0x21200, 0x822021, 0x65102b, 0x10400003, 0x0, 0x8f420148, 0xa22823, 0x90a20000, ! 0x822021, 0x41c02, 0x3082ffff, 0x622021, ! 0x41c02, 0x3082ffff, 0x622021, 0x3e00008, ! 0x3082ffff, 0x8f820220, 0x34420002, 0xaf820220, ! 0x3c020002, 0x8c42a758, 0x30424000, 0x10400054, ! 0x24040001, 0x8f820200, 0x24067fff, 0x8f830200, ! 0x30450002, 0x2402fffd, 0x621824, 0xaf830200, ! 0xaf840204, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x8f820224, 0x1444004d, ! 0x42040, 0xc4102b, 0x1040fff1, 0x0, ! 0x8f820200, 0x451025, 0xaf820200, 0x8f820220, ! 0x34428000, 0xaf820220, 0x8f830054, 0x8f820054, ! 0x10000002, 0x24630001, 0x8f820054, 0x621023, ! 0x2c420002, 0x1440fffc, 0x0, 0x8f820220, ! 0x3c030004, 0x431024, 0x1440000f, 0x0, ! 0x8f820220, 0x3c03ffff, 0x34637fff, 0x431024, ! 0xaf820220, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x8f820220, 0x3c030004, ! 0x431024, 0x1440000d, 0x0, 0x8f820220, ! 0x34428000, 0xaf820220, 0x8f830054, 0x8f820054, ! 0x10000002, 0x24630001, 0x8f820054, 0x621023, ! 0x2c420002, 0x1440fffc, 0x0, 0x8f820220, ! 0x3c030004, 0x431024, 0x1040001b, 0x1021, ! 0x8f830220, 0x24020001, 0x10000015, 0x3c04f700, ! 0x8f820220, 0x3c04f700, 0x441025, 0xaf820220, ! 0x8f820220, 0x2403fffd, 0x431024, 0xaf820220, ! 0x8f820220, 0x3c030300, 0x431024, 0x14400003, ! 0x0, 0x10000008, 0x1021, 0x8f820220, ! 0x34420002, 0xaf820220, 0x8f830220, 0x24020001, ! 0x641825, 0xaf830220, 0x3e00008, 0x0, ! 0x27bdffe0, 0x2021, 0x3c050100, 0x24020001, ! 0xafbf0018, 0xaf80021c, 0xaf820200, 0xaf820220, 0x27625000, 0xaf8200c0, 0x27625000, 0xaf8200c4, 0x27625000, 0xaf8200c8, 0x27625000, 0xaf8200d0, 0x27625000, 0xaf8200d4, 0x27625000, 0xaf8200d8, *************** *** 3013,3922 **** 0x64102b, 0x5440fffd, 0xac600000, 0x8f830040, 0x3c02f000, 0x621824, 0x3c025000, 0x1062000c, 0x43102b, 0x14400006, 0x3c026000, 0x3c024000, ! 0x10620008, 0x24020800, 0x10000008, 0x0, ! 0x10620004, 0x24020800, 0x10000004, 0x0, ! 0x24020700, 0x3c010001, 0xac22443c, 0x3e00008, ! 0x0, 0x27bdffc8, 0xafbf0034, 0xafb20030, ! 0xafb1002c, 0xafb00028, 0x3c010001, 0xc004733, ! 0xac204424, 0x24040001, 0x2821, 0x27a60020, ! 0x34028000, 0xc0042f6, 0xa7a20020, 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x24050001, 0xc0042b4, 0x27a60020, 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x24050001, 0xc0042b4, 0x27a60020, 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x24050002, 0xc0042b4, 0x27a60018, 0x8f830054, ! 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, ! 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x24050003, 0xc0042b4, 0x27a6001a, 0x97a20020, ! 0x1040002a, 0x24020001, 0x3c020001, 0x8c424424, ! 0x97a30018, 0x34420001, 0x3c010001, 0xac224424, ! 0x24020015, 0x1462000a, 0x0, 0x97a2001a, ! 0x3042fff0, 0x3843f420, 0x2c630001, 0x3842f430, ! 0x2c420001, 0x621825, 0x14600018, 0x24020003, ! 0x97a30018, 0x24027810, 0x14620014, 0x24020002, ! 0x97a2001a, 0x3042fff0, 0x14400010, 0x24020002, ! 0x1000000e, 0x24020004, 0x3c020001, 0x8c424424, ! 0x34420008, 0x3c010001, 0xac224424, 0x10000058, ! 0x24020004, 0x3c020001, 0x8c424424, 0x34420004, ! 0x3c010001, 0x100000a9, 0xac224424, 0x3c010001, ! 0xac224594, 0x24020e00, 0xaf820238, 0x8f840054, ! 0x8f820054, 0x24030008, 0x3c010001, 0xac234428, ! 0x10000002, 0x248401f4, 0x8f820054, 0x821023, ! 0x2c4201f5, 0x1440fffc, 0x3c0200c8, 0x344201fb, ! 0xaf820238, 0x8f830054, 0x8f820054, 0x10000002, ! 0x246301f4, 0x8f820054, 0x621023, 0x2c4201f5, ! 0x1440fffc, 0x8021, 0x24120001, 0x24110009, ! 0xc0041d5, 0x0, 0x3c010001, 0xac324444, ! 0xc004282, 0x0, 0x3c020001, 0x8c424444, ! 0x1451fffb, 0x3c0200c8, 0x344201f6, 0xaf820238, 0x8f830054, 0x8f820054, 0x10000002, 0x2463000a, 0x8f820054, 0x621023, 0x2c42000b, 0x1440fffc, - 0x0, 0x8f820220, 0x24040001, 0x34420002, - 0xaf820220, 0x8f830200, 0x24057fff, 0x2402fffd, - 0x621824, 0xaf830200, 0xaf840204, 0x8f830054, - 0x8f820054, 0x10000002, 0x24630001, 0x8f820054, - 0x621023, 0x2c420002, 0x1440fffc, 0x0, - 0x8f820224, 0x14440005, 0x34028000, 0x42040, - 0xa4102b, 0x1040fff0, 0x34028000, 0x1082ffa6, - 0x26100001, 0x2e020014, 0x1440ffcd, 0x24020004, - 0x3c010001, 0xac224428, 0x8021, 0x24120009, - 0x3c11ffff, 0x36313f7f, 0xc0041d5, 0x0, - 0x24020001, 0x3c010001, 0xac224444, 0xc004282, - 0x0, 0x3c020001, 0x8c424444, 0x1452fffb, - 0x0, 0x8f820044, 0x511024, 0x34425080, - 0xaf820044, 0x8f830054, 0x8f820054, 0x10000002, - 0x2463000a, 0x8f820054, 0x621023, 0x2c42000b, - 0x1440fffc, 0x0, 0x8f820044, 0x511024, - 0x3442f080, 0xaf820044, 0x8f830054, 0x8f820054, - 0x10000002, 0x2463000a, 0x8f820054, 0x621023, - 0x2c42000b, 0x1440fffc, 0x0, 0x8f820220, - 0x3c03f700, 0x431025, 0xaf820220, 0x8f830054, - 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, - 0x621023, 0x2c420065, 0x1440fffc, 0x0, - 0x8f820220, 0x24040001, 0x34420002, 0xaf820220, - 0x8f830200, 0x24057fff, 0x2402fffd, 0x621824, - 0xaf830200, 0xaf840204, 0x8f830054, 0x8f820054, - 0x10000002, 0x24630001, 0x8f820054, 0x621023, - 0x2c420002, 0x1440fffc, 0x0, 0x8f820224, - 0x14440005, 0x34028000, 0x42040, 0xa4102b, - 0x1040fff0, 0x34028000, 0x1082ff56, 0x26100001, - 0x2e020064, 0x1440ffb0, 0x0, 0x3c020001, - 0x8c424424, 0x30420004, 0x14400007, 0x3c08fff0, - 0x8f820044, 0x3c03ffff, 0x34633f7f, 0x431024, - 0xaf820044, 0x3c08fff0, 0x3508bdc0, 0x8f830054, - 0x97a60018, 0x3c070001, 0x8ce74594, 0x3c040001, - 0x24844210, 0x24020001, 0x3c010001, 0xac22442c, - 0xafa60010, 0x3c060001, 0x8cc64424, 0x97a2001a, - 0x3c05000d, 0x34a50100, 0x3c010001, 0xac204428, - 0x681821, 0x3c010001, 0xac23458c, 0xc002a0b, - 0xafa20014, 0x8fbf0034, 0x8fb20030, 0x8fb1002c, - 0x8fb00028, 0x3e00008, 0x27bd0038, 0x27bdffe8, - 0x3c040001, 0x8c844428, 0x24060004, 0x24020001, - 0x1482000a, 0xafbf0010, 0x3c020001, 0x8c42664c, - 0x3c050004, 0x30428000, 0x1040000c, 0x34a593e0, - 0x3c05000f, 0x10000009, 0x34a54240, 0x3c020001, - 0x8c42664c, 0x3c05000f, 0x30428000, 0x10400003, - 0x34a54240, 0x3c05001e, 0x34a58480, 0x3c020001, - 0x8c42458c, 0x8f830054, 0x451021, 0x431023, - 0x45102b, 0x14400037, 0x0, 0x3c020001, - 0x8c424430, 0x14400033, 0x0, 0x3c010001, - 0x10c00025, 0xac204440, 0x3c090001, 0x8d294424, - 0x24070001, 0x3c054000, 0x3c080001, 0x2508664c, - 0x250afffc, 0x42042, 0x14800002, 0x24c6ffff, - 0x24040008, 0x891024, 0x10400010, 0x0, - 0x14870008, 0x0, 0x8d020000, 0x451024, - 0x1040000a, 0x0, 0x3c010001, 0x10000007, - 0xac244440, 0x8d420000, 0x451024, 0x10400003, - 0x0, 0x3c010001, 0xac274440, 0x3c020001, - 0x8c424440, 0x6182b, 0x2c420001, 0x431024, - 0x5440ffe5, 0x42042, 0x3c020001, 0x8c424440, - 0x3c010001, 0x10400024, 0xac244428, 0x8f830054, - 0x24020001, 0x3c010001, 0xac22442c, 0x3c010001, - 0xac23458c, 0x3c020001, 0x8c424440, 0x1040001a, - 0x0, 0x3c020001, 0x8c42442c, 0x10400004, - 0x24020001, 0x3c010001, 0xac20442c, 0xaee204b8, - 0x8ee304b8, 0x24020008, 0x10620005, 0x24020001, - 0xc00407e, 0x0, 0x1000000b, 0x0, - 0x3c030001, 0x8c634428, 0x10620007, 0x2402000e, - 0x3c030001, 0x8c6365e0, 0x10620003, 0x0, - 0xc004758, 0x8f840220, 0x8fbf0010, 0x3e00008, - 0x27bd0018, 0x27bdffe0, 0x3c03fdff, 0x3c040001, - 0x8c844428, 0x3c020001, 0x8c42444c, 0x3463ffff, - 0x283a024, 0x14820006, 0xafbf0018, 0x8ee304b8, - 0x3c020001, 0x8c424450, 0x10620006, 0x0, - 0x8ee204b8, 0x3c010001, 0xac24444c, 0x3c010001, - 0xac224450, 0x3c030001, 0x8c634428, 0x24020002, - 0x1062013c, 0x2c620003, 0x10400005, 0x24020001, - 0x1062000a, 0x0, 0x10000134, 0x0, - 0x24020004, 0x1062006d, 0x24020008, 0x1062009f, - 0x24020001, 0x1000012d, 0x0, 0x8ee204b8, - 0x2443ffff, 0x2c620008, 0x1040012a, 0x31080, - 0x3c010001, 0x220821, 0x8c224228, 0x400008, - 0x0, 0xc0041d5, 0x0, 0x3c020001, - 0x8c424434, 0x3c010001, 0xac2043c0, 0x104000d7, - 0x24020002, 0xaee204b8, 0x3c010001, 0x10000119, - 0xac204434, 0xc004337, 0x0, 0x3c030001, - 0x8c634460, 0x1000009e, 0x24020011, 0x3c050001, - 0x8ca54428, 0x3c060001, 0x8cc6664c, 0xc0049c0, - 0x2021, 0x24020005, 0x3c010001, 0xac204434, - 0x10000108, 0xaee204b8, 0x3c040001, 0x2484421c, - 0x3c05000f, 0x34a50100, 0x3021, 0x3821, - 0xafa00010, 0xc002a0b, 0xafa00014, 0x100000fd, 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0x100000a4, 0xaf820220, 0x8f820220, 0x3c030004, ! 0x431024, 0x144000ae, 0x24020007, 0x8f830054, ! 0x3c020001, 0x8c424584, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x144000eb, 0x24020001, 0x100000e7, ! 0x0, 0x3c050001, 0x8ca54428, 0xc004acc, ! 0x2021, 0xc004b97, 0x2021, 0x3c030001, ! 0x8c636644, 0x46100dd, 0x24020001, 0x3c020008, 0x621024, 0x10400006, 0x0, 0x8f820214, 0x3c03ffff, 0x431024, 0x10000005, 0x3442251f, 0x8f820214, 0x3c03ffff, 0x431024, 0x3442241f, ! 0xaf820214, 0x8f820220, 0x3c030200, 0x283a025, ! 0x34420002, 0xaf820220, 0x24020008, 0xc003d2b, ! 0xaee204b8, 0x100000c7, 0x0, 0x8ee204b8, ! 0x2443ffff, 0x2c620008, 0x104000c2, 0x31080, ! 0x3c010001, 0x220821, 0x8c224248, 0x400008, ! 0x0, 0x3c020001, 0x8c426648, 0x30424000, ! 0x10400004, 0x0, 0x8f820044, 0x10000006, ! 0x3442f080, 0x8f820044, 0x3c03ffff, 0x34633f7f, ! 0x431024, 0x3442a080, 0xaf820044, 0x8f830054, ! 0x1000005a, 0x24020004, 0xc003e0c, 0x0, ! 0x104000a6, 0x24020001, 0x8f820214, 0x3c03ffff, ! 0x3c040001, 0x8c84457c, 0x431024, 0x3442251f, ! 0xaf820214, 0x24020008, 0x10800005, 0xaee204b8, ! 0x3c020001, 0x8c4244c4, 0x1040006d, 0x24020001, ! 0x8f820220, 0x3c030008, 0x431024, 0x10400073, ! 0x3c020200, 0x10000081, 0x0, 0x8ee204b8, ! 0x2443ffff, 0x2c620007, 0x1040008e, 0x31080, ! 0x3c010001, 0x220821, 0x8c224268, 0x400008, ! 0x0, 0xc003c6d, 0x0, 0x3c010001, ! 0xac20442c, 0xaf800204, 0x3c010001, 0xc0041d5, ! 0xac206630, 0x24020001, 0x3c010001, 0xac224444, ! 0x24020002, 0x1000007b, 0xaee204b8, 0xc004282, ! 0x0, 0x3c030001, 0x8c634444, 0x24020009, ! 0x14620074, 0x24020003, 0x10000072, 0xaee204b8, ! 0x3c020001, 0x8c426648, 0x30424000, 0x10400003, 0x3c0200c8, 0x10000002, 0x344201f6, 0x344201fe, ! 0xaf820238, 0x8f830054, 0x10000014, 0x24020004, ! 0x8f830054, 0x3c020001, 0x8c424584, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x1440005e, 0x24020005, ! 0x1000005c, 0xaee204b8, 0x8f820220, 0x3c03f700, ! 0x431025, 0xaf820220, 0xaf800204, 0x3c010001, ! 0xac206630, 0x8f830054, 0x24020006, 0xaee204b8, ! 0x3c010001, 0x1000004f, 0xac234584, 0x8f830054, ! 0x3c020001, 0x8c424584, 0x2463fff6, 0x431023, ! 0x2c42000a, 0x14400047, 0x0, 0x24020007, ! 0x10000044, 0xaee204b8, 0xc003e0c, 0x0, ! 0x1040003e, 0x24020001, 0x8f820214, 0x3c03ffff, ! 0x3c040001, 0x8c84457c, 0x431024, 0x3442251f, ! 0xaf820214, 0x24020008, 0x1080000f, 0xaee204b8, ! 0x3c020001, 0x8c4244c4, 0x1440000b, 0x0, ! 0x8f820220, 0x34420002, 0xaf820220, 0x24020001, ! 0x3c010001, 0xac2265e0, 0xc004758, 0x8f840220, ! 0x10000016, 0x0, 0x8f820220, 0x3c030008, ! 0x431024, 0x14400011, 0x3c020200, 0x282a025, ! 0x2402000e, 0x3c010001, 0xac2265e0, 0xc004b97, ! 0x2021, 0x8f820220, 0x34420002, 0xc003d2b, ! 0xaf820220, 0x3c050001, 0x8ca54428, 0xc004acc, ! 0x2021, 0x10000013, 0x0, 0x3c020001, ! 0x8c4244c4, 0x1040000f, 0x0, 0x3c020001, ! 0x8c4244c0, 0x2442ffff, 0x3c010001, 0xac2244c0, ! 0x14400008, 0x24020002, 0x3c010001, 0xac2044c4, ! 0x3c010001, 0x10000003, 0xac2244c0, 0x3c010001, ! 0xac22442c, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x8f820200, 0x8f820220, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820200, 0x3c060001, 0x8cc64428, ! 0x34420004, 0xaf820200, 0x24020002, 0x10c2003b, ! 0x2cc20003, 0x10400005, 0x24020001, 0x10c2000a, ! 0x3c03f0ff, 0x10000099, 0x0, 0x24020004, ! 0x10c2005a, 0x24020008, 0x10c2006d, 0x3c02f0ff, ! 0x10000092, 0x0, 0x8f820050, 0x3463ffff, ! 0x3c05ffff, 0x3c040001, 0x8c844594, 0x431024, ! 0x3c030700, 0x431025, 0xaf820050, 0x24020e00, ! 0xaf860200, 0xaf860220, 0xaf820238, 0x8f820044, ! 0x3c030001, 0x8c634418, 0x34a53f7f, 0x451024, ! 0x34630022, 0xaf820044, 0x24020004, 0xaf860238, ! 0x1082000c, 0xaf830200, 0x3c020001, 0x8c42443c, ! 0x3c030001, 0x8c634420, 0x3c040001, 0x8c84441c, ! 0x34428000, 0x621825, 0x641825, 0x1000006e, ! 0x34620002, 0x3c020001, 0x8c424420, 0x3c030001, ! 0x8c63443c, 0x3c040001, 0x8c84441c, 0x431025, ! 0x441025, 0x10000064, 0x34420002, 0x8f830050, ! 0x3c02f0ff, 0x3442ffff, 0x3c040001, 0x8c84457c, 0x621824, 0x3c020d00, 0x621825, 0x24020001, ! 0xaf830050, 0xaf820200, 0xaf820220, 0x24020e00, ! 0x10800009, 0xaf820238, 0x3c020001, 0x8c4244c4, ! 0x14400005, 0x3c033f00, 0x3c020001, 0x8c424410, ! 0x10000005, 0x34630070, 0x3c020001, 0x8c424410, ! 0x3c033f00, 0x34630072, 0x431025, 0xaf820200, ! 0x3c030001, 0x8c634414, 0x3c04f700, 0x3c020001, ! 0x8c424420, 0x3c050001, 0x8ca5443c, 0x641825, ! 0x431025, 0x1000003c, 0x451025, 0x8f830050, ! 0x3c02f0ff, 0x3442ffff, 0x3c040001, 0x8c84457c, ! 0x621824, 0x3c020a00, 0x621825, 0x24020001, ! 0xaf830050, 0xaf820200, 0x1080001e, 0xaf820220, ! 0x3c020001, 0x8c4244c4, 0x1440001a, 0x3c033f00, ! 0x3c020001, 0x8c424410, 0x1000001a, 0x346300e0, ! 0x8f830050, 0x3c040001, 0x8c84457c, 0x3442ffff, ! 0x621824, 0x1080000f, 0xaf830050, 0x3c020001, ! 0x8c4244c4, 0x1440000b, 0x3c043f00, 0x3c030001, ! 0x8c634410, 0x348400e0, 0x24020001, 0xaf820200, ! 0xaf820220, 0x641825, 0xaf830200, 0x10000008, ! 0x3c05f700, 0x3c020001, 0x8c424410, 0x3c033f00, ! 0x346300e2, 0x431025, 0xaf820200, 0x3c05f700, ! 0x34a58000, 0x3c030001, 0x8c634414, 0x3c020001, ! 0x8c424420, 0x3c040001, 0x8c84443c, 0x651825, ! 0x431025, 0x441025, 0xaf820220, 0x3e00008, ! 0x0, 0x3c030001, 0x8c634444, 0x3c020001, ! 0x8c424448, 0x10620003, 0x24020002, 0x3c010001, ! 0xac234448, 0x1062001d, 0x2c620003, 0x10400025, ! 0x24020001, 0x14620023, 0x24020004, 0x3c030001, ! 0x8c634428, 0x10620006, 0x24020008, 0x1462000c, ! 0x3c0200c8, 0x344201fb, 0x10000009, 0xaf820238, 0x24020e01, 0xaf820238, 0x8f820044, 0x3c03ffff, 0x34633f7f, 0x431024, 0x34420080, 0xaf820044, ! 0x8f830054, 0x24020002, 0x3c010001, 0xac224444, ! 0x3c010001, 0x1000000b, 0xac234588, 0x8f830054, ! 0x3c020001, 0x8c424588, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x14400003, 0x24020009, 0x3c010001, ! 0xac224444, 0x3e00008, 0x0, 0x27bdffd8, 0xafb20018, 0x809021, 0xafb3001c, 0xa09821, 0xafb10014, 0xc08821, 0xafb00010, 0x8021, ! 0xafbf0020, 0xa6200000, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x24040001, 0xc00470d, 0x2021, 0x24100010, 0x2501024, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, 0x2501024, 0x24100010, 0x2701024, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x2701024, 0xc004733, 0x34108000, ! 0xc004733, 0x0, 0xc0046ed, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004733, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, 0x27bd0028, 0x27bdffd8, 0xafb10014, 0x808821, 0xafb20018, 0xa09021, 0xafb3001c, 0xc09821, ! 0xafb00010, 0x8021, 0xafbf0020, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc00470d, 0x2021, 0xc00470d, ! 0x24040001, 0xc00470d, 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x2301024, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, 0x2301024, 0x24100010, 0x2501024, ! 0x10400002, 0x2021, 0x24040001, 0xc00470d, ! 0x108042, 0x1600fffa, 0x2501024, 0xc00470d, ! 0x24040001, 0xc00470d, 0x2021, 0x34108000, 0x96620000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fff8, ! 0x0, 0xc004733, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, ! 0x3e00008, 0x27bd0028, 0x3c030001, 0x8c634460, ! 0x3c020001, 0x8c4244a4, 0x27bdffd8, 0xafbf0020, ! 0xafb1001c, 0x10620003, 0xafb00018, 0x3c010001, ! 0xac2344a4, 0x2463ffff, 0x2c620013, 0x104003a3, ! 0x31080, 0x3c010001, 0x220821, 0x8c224290, ! 0x400008, 0x0, 0xc004733, 0x8021, ! 0x34028000, 0xa7a20010, 0x27b10010, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc00470d, 0x2021, 0xc00470d, ! 0x24040001, 0xc00470d, 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0xc00470d, 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0xc00470d, 0x24040001, 0xc00470d, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fff8, 0x0, 0xc004733, 0x0, ! 0x10000368, 0x24020002, 0x27b10010, 0xa7a00010, ! 0x8021, 0xc00470d, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc00470d, ! 0x2021, 0xc00470d, 0x24040001, 0xc00470d, ! 0x24040001, 0xc00470d, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0xc00470d, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0xc004733, 0x34108000, ! 0xc004733, 0x0, 0xc0046ed, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004733, 0x0, 0x97a20010, 0x30428000, ! 0x14400336, 0x24020003, 0x10000332, 0x0, ! 0x3c020001, 0x8c424594, 0x30420004, 0x10400056, ! 0x24020001, 0x3c030001, 0x8c63664c, 0xa7a20010, ! 0x3c020008, 0x621024, 0x1040000c, 0x3c020002, ! 0x621024, 0x10400002, 0x24020101, 0xa7a20010, ! 0x3c020001, 0x621024, 0x10400005, 0x3c020010, ! 0x97a20010, 0x34420040, 0xa7a20010, 0x3c020010, ! 0x621024, 0x1040000e, 0x3c020002, 0x621024, ! 0x10400005, 0x3c020001, 0x97a20010, 0x34420080, ! 0xa7a20010, 0x3c020001, 0x621024, 0x10400005, ! 0x27b10010, 0x97a20010, 0x34420020, 0xa7a20010, ! 0x27b10010, 0x8021, 0xc00470d, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020004, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020004, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fff8, 0x0, ! 0xc004733, 0x0, 0x24021200, 0xa7a20010, ! 0x27b10010, 0x8021, 0xc00470d, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0xc00470d, 0x2021, ! 0x108042, 0x1600fffc, 0x0, 0xc00470d, ! 0x24040001, 0xc00470d, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fff8, ! 0x0, 0xc004733, 0x0, 0x8f830054, ! 0x10000296, 0x24020004, 0x8f830054, 0x3c020001, ! 0x8c424590, 0x2463ff9c, 0x431023, 0x2c420064, ! 0x1440029e, 0x24020002, 0x3c030001, 0x8c634594, ! 0x10620297, 0x2c620003, 0x14400296, 0x24020011, ! 0x24020003, 0x10620005, 0x24020004, 0x10620291, ! 0x2402000f, 0x1000028f, 0x24020011, 0x1000028d, ! 0x24020005, 0x24020014, 0xa7a20010, 0x27b10010, ! 0x8021, 0xc00470d, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc00470d, ! 0x2021, 0xc00470d, 0x24040001, 0xc00470d, ! 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0x32020012, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020012, 0xc00470d, 0x24040001, 0xc00470d, ! 0x2021, 0x34108000, 0x96220000, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc00470d, ! 0x108042, 0x1600fff8, 0x0, 0xc004733, ! 0x0, 0x8f830054, 0x10000248, 0x24020006, ! 0x8f830054, 0x3c020001, 0x8c424590, 0x2463ff9c, ! 0x431023, 0x2c420064, 0x14400250, 0x24020007, ! 0x1000024c, 0x0, 0x24020006, 0xa7a20010, ! 0x27b10010, 0x8021, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020013, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020013, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fff8, 0x0, ! 0xc004733, 0x0, 0x8f830054, 0x10000207, ! 0x24020008, 0x8f830054, 0x3c020001, 0x8c424590, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x1440020f, ! 0x24020009, 0x1000020b, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc00470d, 0x24040001, ! 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x24040001, 0xc00470d, 0x2021, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020018, 0xc004733, 0x34108000, ! 0xc004733, 0x0, 0xc0046ed, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004733, 0x8021, 0x97a20010, 0x27b10010, ! 0x34420001, 0xa7a20010, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020018, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fff8, 0x0, ! 0xc004733, 0x0, 0x8f830054, 0x10000193, ! 0x2402000a, 0x8f830054, 0x3c020001, 0x8c424590, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x1440019b, ! 0x2402000b, 0x10000197, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x24040001, 0xc00470d, 0x2021, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020017, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020017, 0xc004733, 0x34108000, ! 0xc004733, 0x0, 0xc0046ed, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004733, 0x8021, 0x97a20010, 0x27b10010, ! 0x34420700, 0xa7a20010, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020017, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020017, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0x34108000, 0x96220000, ! 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fff8, 0x0, ! 0xc004733, 0x0, 0x8f830054, 0x1000011f, ! 0x2402000c, 0x8f830054, 0x3c020001, 0x8c424590, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x14400127, ! 0x24020012, 0x10000123, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x24040001, 0xc00470d, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020014, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020014, 0xc004733, 0x34108000, ! 0xc004733, 0x0, 0xc0046ed, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004733, 0x8021, 0x97a20010, 0x27b10010, ! 0x34420010, 0xa7a20010, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020014, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020014, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fff8, 0x0, ! 0xc004733, 0x0, 0x8f830054, 0x100000ab, ! 0x24020013, 0x8f830054, 0x3c020001, 0x8c424590, ! 0x2463ff9c, 0x431023, 0x2c420064, 0x144000b3, ! 0x2402000d, 0x100000af, 0x0, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x24040001, 0xc00470d, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020018, 0xc004733, 0x34108000, ! 0xc004733, 0x0, 0xc0046ed, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc004733, 0x8021, 0x97a20010, 0x27b10010, ! 0x3042fffe, 0xa7a20010, 0xc00470d, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0xc00470d, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc00470d, 0x108042, ! 0x1600fffa, 0x32020018, 0xc00470d, 0x24040001, ! 0xc00470d, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fff8, 0x0, ! 0xc004733, 0x0, 0x8f830054, 0x10000037, ! 0x2402000e, 0x24020840, 0xa7a20010, 0x27b10010, ! 0x8021, 0xc00470d, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc00470d, ! 0x2021, 0xc00470d, 0x24040001, 0xc00470d, ! 0x2021, 0xc00470d, 0x24040001, 0x24100010, ! 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc00470d, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0x32020013, 0x10400002, 0x2021, ! 0x24040001, 0xc00470d, 0x108042, 0x1600fffa, ! 0x32020013, 0xc00470d, 0x24040001, 0xc00470d, ! 0x2021, 0x34108000, 0x96220000, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc00470d, ! 0x108042, 0x1600fff8, 0x0, 0xc004733, ! 0x0, 0x8f830054, 0x24020010, 0x3c010001, ! 0xac224460, 0x3c010001, 0x1000000c, 0xac234590, ! 0x8f830054, 0x3c020001, 0x8c424590, 0x2463ff9c, ! 0x431023, 0x2c420064, 0x14400004, 0x0, ! 0x24020011, 0x3c010001, 0xac224460, 0x8fbf0020, ! 0x8fb1001c, 0x8fb00018, 0x3e00008, 0x27bd0028, ! 0x8f850044, 0x8f820044, 0x3c030001, 0x431025, ! 0x3c030008, 0xaf820044, 0x8f840054, 0x8f820054, ! 0xa32824, 0x10000002, 0x24840001, 0x8f820054, ! 0x821023, 0x2c420002, 0x1440fffc, 0x0, ! 0x8f820044, 0x3c03fffe, 0x3463ffff, 0x431024, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x3e00008, 0xa01021, ! 0x8f830044, 0x3c02fff0, 0x3442ffff, 0x42480, ! 0x621824, 0x3c020002, 0x822025, 0x641825, ! 0xaf830044, 0x8f820044, 0x3c030001, 0x431025, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x8f820044, 0x3c03fffe, ! 0x3463ffff, 0x431024, 0xaf820044, 0x8f830054, ! 0x8f820054, 0x10000002, 0x24630001, 0x8f820054, ! 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x3e00008, 0x0, 0x8f820044, 0x3c03fff0, ! 0x3463ffff, 0x431024, 0xaf820044, 0x8f820044, ! 0x3c030001, 0x431025, 0xaf820044, 0x8f830054, ! 0x8f820054, 0x10000002, 0x24630001, 0x8f820054, ! 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x8f820044, 0x3c03fffe, 0x3463ffff, 0x431024, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x27bdffe8, ! 0xafbf0010, 0x8ee304b8, 0x24020008, 0x146201e0, ! 0x0, 0x3c020001, 0x8c42457c, 0x14400005, ! 0x0, 0xc003c6d, 0x8f840224, 0x100001d8, ! 0x0, 0x8f820220, 0x3c030008, 0x431024, ! 0x10400026, 0x24020001, 0x8f840224, 0x8f820220, ! 0x3c030400, 0x431024, 0x10400006, 0x0, ! 0x3c010001, 0xac2065f0, 0x3c010001, 0x1000000b, ! 0xac206610, 0x3c030001, 0x246365f0, 0x8c620000, ! 0x24420001, 0xac620000, 0x2c420002, 0x14400003, ! 0x24020001, 0x3c010001, 0xac226610, 0x3c020001, ! 0x8c426610, 0x10400006, 0x30820040, 0x10400004, ! 0x24020001, 0x3c010001, 0x10000003, 0xac226614, ! 0x3c010001, 0xac206614, 0x3c010001, 0xac2465ec, ! 0x3c010001, 0x1000000b, 0xac206620, 0x3c010001, ! 0xac226620, 0x3c010001, 0xac206610, 0x3c010001, ! 0xac2065f0, 0x3c010001, 0xac206614, 0x3c010001, ! 0xac2065ec, 0x3c030001, 0x8c6365e0, 0x3c020001, ! 0x8c4265e4, 0x50620004, 0x2463ffff, 0x3c010001, ! 0xac2365e4, 0x2463ffff, 0x2c62000e, 0x10400194, ! 0x31080, 0x3c010001, 0x220821, 0x8c2242e0, ! 0x400008, 0x0, 0x24020002, 0x3c010001, ! 0xac206610, 0x3c010001, 0xac2065f0, 0x3c010001, ! 0xac2065ec, 0x3c010001, 0xac206614, 0x3c010001, ! 0xac206608, 0x3c010001, 0xac206600, 0xaf800224, ! 0x3c010001, 0xac2265e0, 0x3c020001, 0x8c426620, ! 0x1440004f, 0x3c02fdff, 0x3442ffff, 0xc003c6d, 0x282a024, 0xaf800204, 0x8f820200, 0x2403fffd, ! 0x431024, 0xaf820200, 0x3c010001, 0xac206630, ! 0x8f830054, 0x3c020001, 0x8c426608, 0x24040001, ! 0x3c010001, 0xac24661c, 0x24420001, 0x3c010001, ! 0xac226608, 0x2c420004, 0x3c010001, 0xac236604, ! 0x14400006, 0x24020003, 0x3c010001, 0xac24442c, ! 0x3c010001, 0x1000015e, 0xac206608, 0x3c010001, ! 0x1000015b, 0xac2265e0, 0x8f830054, 0x3c020001, ! 0x8c426604, 0x2463d8f0, 0x431023, 0x2c422710, ! 0x14400003, 0x24020004, 0x3c010001, 0xac2265e0, ! 0x3c020001, 0x8c426620, 0x14400021, 0x3c02fdff, ! 0x3442ffff, 0x1000014a, 0x282a024, 0x3c040001, ! 0x8c844580, 0x3c010001, 0xc004940, 0xac2065f8, ! 0x3c020001, 0x8c42662c, 0xaf820204, 0x3c020001, ! 0x8c426620, 0x14400012, 0x3c03fdff, 0x8f820204, ! 0x3463ffff, 0x30420030, 0x1440012f, 0x283a024, ! 0x3c030001, 0x8c63662c, 0x24020005, 0x3c010001, ! 0xac2265e0, 0x3c010001, 0x10000131, 0xac236630, ! 0x3c020001, 0x8c426620, 0x10400010, 0x3c02fdff, ! 0x3c020001, 0x8c4244bc, 0x24420001, 0x3c010001, ! 0xac2244bc, 0x2c420002, 0x14400125, 0x24020001, ! 0x3c010001, 0xac2244c4, 0x3c010001, 0xac2044bc, ! 0x3c010001, 0x1000011e, 0xac22442c, 0x3c030001, ! 0x8c636610, 0x3442ffff, 0x10600119, 0x282a024, ! 0x3c020001, 0x8c4265ec, 0x10400115, 0x0, ! 0x3c010001, 0xac226618, 0x24020003, 0x3c010001, ! 0xac2265f0, 0x100000b8, 0x24020006, 0x3c010001, ! 0xac2065f8, 0x8f820204, 0x34420040, 0xaf820204, ! 0x3c020001, 0x8c426630, 0x24030007, 0x3c010001, ! 0xac2365e0, 0x34420040, 0x3c010001, 0xac226630, ! 0x3c020001, 0x8c426610, 0x10400005, 0x0, ! 0x3c020001, 0x8c4265ec, 0x104000f0, 0x24020002, ! 0x3c050001, 0x24a565f0, 0x8ca20000, 0x2c424e21, ! 0x104000ea, 0x24020002, 0x3c020001, 0x8c426614, ! 0x104000ef, 0x2404ffbf, 0x3c020001, 0x8c4265ec, ! 0x3c030001, 0x8c636618, 0x441024, 0x641824, ! 0x10430004, 0x24020001, 0x3c010001, 0x100000e4, ! 0xac2265e0, 0x24020003, 0xaca20000, 0x24020008, ! 0x3c010001, 0xac2265e0, 0x3c020001, 0x8c42661c, ! 0x1040000c, 0x24020001, 0x3c040001, 0xc00494d, ! 0x8c8465ec, 0x3c020001, 0x8c426638, 0x14400005, ! 0x24020001, 0x3c020001, 0x8c426634, 0x10400006, ! 0x24020001, 0x3c010001, 0xac22442c, 0x3c010001, ! 0x100000cb, 0xac206608, 0x3c020001, 0x8c426600, ! 0x3c030001, 0x8c6365ec, 0x2c420001, 0x210c0, ! 0x30630008, 0x3c010001, 0xac226600, 0x3c010001, ! 0xac2365fc, 0x8f830054, 0x24020009, 0x3c010001, ! 0xac2265e0, 0x3c010001, 0x100000b9, 0xac236604, ! 0x8f830054, 0x3c020001, 0x8c426604, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x1440009f, 0x0, ! 0x3c020001, 0x8c426610, 0x10400005, 0x0, ! 0x3c020001, 0x8c4265ec, 0x104000a0, 0x24020002, ! 0x3c030001, 0x246365f0, 0x8c620000, 0x2c424e21, ! 0x1040009a, 0x24020002, 0x3c020001, 0x8c42661c, ! 0x1040000e, 0x0, 0x3c020001, 0x8c4265ec, ! 0x3c010001, 0xac20661c, 0x30420080, 0x1040002f, ! 0x2402000c, 0x8f820204, 0x30420080, 0x1440000c, ! 0x24020003, 0x10000029, 0x2402000c, 0x3c020001, ! 0x8c4265ec, 0x30420080, 0x14400005, 0x24020003, ! 0x8f820204, 0x30420080, 0x1040001f, 0x24020003, ! 0xac620000, 0x2402000a, 0x3c010001, 0xac2265e0, ! 0x3c040001, 0x24846628, 0x8c820000, 0x3c030001, ! 0x8c636600, 0x431025, 0xaf820204, 0x8c830000, ! 0x3c040001, 0x8c846600, 0x2402000b, 0x3c010001, ! 0xac2265e0, 0x641825, 0x3c010001, 0xac236630, ! 0x3c050001, 0x24a565f0, 0x8ca20000, 0x2c424e21, ! 0x10400066, 0x24020002, 0x3c020001, 0x8c426620, ! 0x10400005, 0x0, 0x2402000c, 0x3c010001, ! 0x10000067, 0xac2265e0, 0x3c020001, 0x8c426610, ! 0x10400063, 0x0, 0x3c040001, 0x8c8465ec, ! 0x10800055, 0x30820008, 0x3c030001, 0x8c6365fc, ! 0x1062005b, 0x24020003, 0x3c010001, 0xac246618, ! 0xaca20000, 0x24020006, 0x3c010001, 0x10000054, ! 0xac2265e0, 0x8f820200, 0x34420002, 0xaf820200, ! 0x8f830054, 0x2402000d, 0x3c010001, 0xac2265e0, ! 0x3c010001, 0xac236604, 0x8f830054, 0x3c020001, ! 0x8c426604, 0x2463d8f0, 0x431023, 0x2c422710, ! 0x14400031, 0x0, 0x3c020001, 0x8c426620, ! 0x10400020, 0x2402000e, 0x3c030001, 0x8c636634, ! 0x3c010001, 0x14600015, 0xac2265e0, 0xc003d2b, ! 0x0, 0x3c050001, 0x8ca54428, 0xc004acc, ! 0x2021, 0x3c030001, 0x8c634428, 0x24020004, ! 0x14620005, 0x2403fffb, 0x3c020001, 0x8c424424, ! 0x10000003, 0x2403fff7, 0x3c020001, 0x8c424424, ! 0x431024, 0x3c010001, 0xac224424, 0x8f830224, ! 0x3c020200, 0x3c010001, 0xac23663c, 0x10000020, ! 0x282a025, 0x3c020001, 0x8c426610, 0x10400005, ! 0x0, 0x3c020001, 0x8c4265ec, 0x1040000f, ! 0x24020002, 0x3c020001, 0x8c4265f0, 0x2c424e21, ! 0x1040000a, 0x24020002, 0x3c020001, 0x8c426610, ! 0x1040000f, 0x0, 0x3c020001, 0x8c4265ec, ! 0x1440000b, 0x0, 0x24020002, 0x3c010001, ! 0x10000007, 0xac2265e0, 0x3c020001, 0x8c426610, ! 0x10400003, 0x0, 0xc003c6d, 0x0, ! 0x8f820220, 0x3c03f700, 0x431025, 0xaf820220, ! 0x8fbf0010, 0x3e00008, 0x27bd0018, 0x3c030001, ! 0x24636638, 0x8c620000, 0x10400005, 0x34422000, ! 0x3c010001, 0xac22662c, 0x10000003, 0xac600000, ! 0x3c010001, 0xac24662c, 0x3e00008, 0x0, ! 0x27bdffe0, 0x30820030, 0xafbf0018, 0x3c010001, ! 0xac226634, 0x14400067, 0x3c02ffff, 0x34421f0e, ! 0x821024, 0x14400061, 0x24020030, 0x30822000, ! 0x1040005d, 0x30838000, 0x31a02, 0x30820001, ! 0x21200, 0x3c040001, 0x8c844580, 0x621825, ! 0x331c2, 0x3c030001, 0x246344c8, 0x30828000, ! 0x21202, 0x30840001, 0x42200, 0x441025, ! 0x239c2, 0x61080, 0x431021, 0x471021, ! 0x90430000, 0x24020001, 0x10620025, 0x0, ! 0x10600007, 0x24020002, 0x10620013, 0x24020003, ! 0x1062002c, 0x3c05000f, 0x10000037, 0x0, ! 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, ! 0x8f820220, 0x3c03fffe, 0x3463ffff, 0x431024, ! 0xaf820220, 0x3c010001, 0xac206654, 0x3c010001, ! 0x10000034, 0xac20665c, 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, ! 0x431024, 0xaf820220, 0x24020100, 0x3c010001, ! 0xac226654, 0x3c010001, 0x10000026, 0xac20665c, ! 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, 0x3c030001, 0x431025, 0xaf820220, ! 0x3c010001, 0xac206654, 0x3c010001, 0x10000019, ! 0xac23665c, 0x8f820200, 0x34420100, 0xaf820200, ! 0x8f820220, 0x3c030001, 0x431025, 0xaf820220, ! 0x24020100, 0x3c010001, 0xac226654, 0x3c010001, ! 0x1000000c, 0xac23665c, 0x34a5ffff, 0x3c040001, ! 0x24844318, 0xafa30010, 0xc002a0b, 0xafa00014, ! 0x10000004, 0x0, 0x24020030, 0x3c010001, ! 0xac226638, 0x8fbf0018, 0x3e00008, 0x27bd0020, ! 0x0, 0x0, 0x0, 0x27bdffc8, ! 0xafb10024, 0x808821, 0xafb3002c, 0xa09821, ! 0xafb00020, 0xc08021, 0x3c040001, 0x24844330, ! 0x3c050009, 0x3c020001, 0x8c424428, 0x34a59001, ! 0x2203021, 0x2603821, 0xafbf0030, 0xafb20028, ! 0xa7a0001a, 0xafb00014, 0xc002a0b, 0xafa20010, ! 0x24020002, 0x126200ee, 0x2e620003, 0x10400005, ! 0x24020001, 0x1262000a, 0x3c02fffb, 0x100000e8, ! 0x0, 0x24020004, 0x1262006d, 0x24020008, ! 0x1262006c, 0x3c02ffec, 0x100000e1, 0x0, ! 0x3442ffff, 0x2028024, 0x119140, 0x3c010001, ! 0x320821, 0xac30664c, 0x3c024000, 0x2021024, ! 0x10400046, 0x1023c2, 0x30840030, 0x101382, ! 0x3042000c, 0x3c030001, 0x24634464, 0x431021, ! 0x823821, 0x3c020020, 0x2021024, 0x10400006, ! 0x24020100, 0x3c010001, 0x320821, 0xac226650, ! 0x10000005, 0x3c020080, 0x3c010001, 0x320821, ! 0xac206650, 0x3c020080, 0x2021024, 0x10400006, ! 0x111940, 0x3c020001, 0x3c010001, 0x230821, ! 0x10000005, 0xac226658, 0x111140, 0x3c010001, ! 0x220821, 0xac206658, 0x94e30000, 0x32024000, ! 0x10400003, 0xa7a30018, 0x34624000, 0xa7a20018, 0x24040001, 0x94e20002, 0x24050004, 0x24e60002, ! 0x34420001, 0xc0042f6, 0xa4e20002, 0x24040001, ! 0x2821, 0xc0042f6, 0x27a60018, 0x3c020001, ! 0x8c424428, 0x24110001, 0x3c010001, 0xac314434, ! 0x14530004, 0x32028000, 0xc003c6d, 0x0, ! 0x32028000, 0x1040009a, 0x0, 0xc003c6d, ! 0x0, 0x24020002, 0x3c010001, 0xac31442c, ! 0x3c010001, 0x10000092, 0xac224428, 0x24040001, ! 0x24050004, 0x27b0001a, 0xc0042f6, 0x2003021, ! 0x24040001, 0x2821, 0xc0042f6, 0x2003021, ! 0x3c020001, 0x521021, 0x8c426644, 0x3c040001, ! 0x8c844428, 0x3c03bfff, 0x3463ffff, 0x3c010001, ! 0xac334434, 0x431024, 0x3c010001, 0x320821, ! 0x10930079, 0xac226644, 0x10000079, 0x0, ! 0x3c02ffec, 0x3442ffff, 0x2028024, 0x3c020008, ! 0x2028025, 0x111140, 0x3c010001, 0x220821, ! 0xac306648, 0x3c022000, 0x2021024, 0x10400009, ! 0x0, 0x3c020001, 0x8c4244c4, 0x14400005, ! 0x24020001, 0x3c010001, 0xac22457c, 0x10000004, ! 0x3c024000, 0x3c010001, 0xac20457c, 0x3c024000, ! 0x2021024, 0x1440001d, 0x24020e01, 0x3c030001, ! 0x8c63457c, 0xaf820238, 0x3c010001, 0xac204440, ! 0x10600005, 0x24022020, 0x3c010001, 0xac224580, ! 0x24020001, 0xaee204b8, 0x3c04bfff, 0x111940, ! 0x3c020001, 0x431021, 0x8c426640, 0x3c050001, ! 0x8ca54428, 0x3484ffff, 0x441024, 0x3c010001, ! 0x230821, 0xac226640, 0x24020001, 0x10a20044, ! 0x0, 0x10000040, 0x0, 0x3c020001, ! 0x8c42457c, 0x1040001c, 0x24022000, 0x3c010001, ! 0xac224580, 0x3c0300a0, 0x2031024, 0x14430005, ! 0x111140, 0x3402a000, 0x3c010001, 0x1000002d, ! 0xac224580, 0x3c030001, 0x621821, 0x8c636648, ! 0x3c020020, 0x621024, 0x10400004, 0x24022001, ! 0x3c010001, 0x10000023, 0xac224580, 0x3c020080, ! 0x621024, 0x1040001f, 0x3402a001, 0x3c010001, ! 0x1000001c, 0xac224580, 0x3c020020, 0x2021024, ! 0x10400007, 0x111940, 0x24020100, 0x3c010001, ! 0x230821, 0xac226654, 0x10000006, 0x3c020080, ! 0x111140, 0x3c010001, 0x220821, 0xac206654, ! 0x3c020080, 0x2021024, 0x10400006, 0x111940, ! 0x3c020001, 0x3c010001, 0x230821, 0x10000005, ! 0xac22665c, 0x111140, 0x3c010001, 0x220821, ! 0xac20665c, 0x3c030001, 0x8c634428, 0x24020001, ! 0x10620003, 0x0, 0xc003c6d, 0x0, ! 0x8fbf0030, 0x8fb3002c, 0x8fb20028, 0x8fb10024, ! 0x8fb00020, 0x3e00008, 0x27bd0038, 0x27bdffd0, ! 0xafb50028, 0x80a821, 0xafb20020, 0x9021, ! 0xafb30024, 0x9821, 0xafb1001c, 0x8821, ! 0x24020002, 0xafbf002c, 0xafb00018, 0xa7a00012, ! 0x10a20068, 0xa7a00010, 0x2ca20003, 0x10400005, ! 0x24020001, 0x10a2000a, 0x158140, 0x100000ae, ! 0x2201021, 0x24020004, 0x10a2005e, 0x24020008, ! 0x10a2005d, 0x152940, 0x100000a7, 0x2201021, ! 0x3c030001, 0x701821, 0x8c63664c, 0x3c024000, ! 0x621024, 0x14400009, 0x24040001, 0x3c027fff, ! 0x3442ffff, 0x628824, 0x3c010001, 0x300821, ! 0xac316644, 0x10000098, 0x2201021, 0x24050001, ! 0xc0042b4, 0x27a60010, 0x24040001, 0x24050001, ! 0xc0042b4, 0x27a60010, 0x97a20010, 0x30420004, ! 0x10400034, 0x3c114000, 0x3c030001, 0x8c634594, ! 0x24020003, 0x10620008, 0x2c620004, 0x14400029, ! 0x3c028000, 0x24020004, 0x10620014, 0x24040001, ! 0x10000024, 0x3c028000, 0x24040001, 0x24050011, ! 0x27b00012, 0xc0042b4, 0x2003021, 0x24040001, ! 0x24050011, 0xc0042b4, 0x2003021, 0x97a30012, ! 0x30624000, 0x10400002, 0x3c130010, 0x3c130008, ! 0x3c120001, 0x10000010, 0x30628000, 0x24050014, ! 0x27b00012, 0xc0042b4, 0x2003021, 0x24040001, ! 0x24050014, 0xc0042b4, 0x2003021, 0x97a30012, ! 0x30621000, 0x10400002, 0x3c130010, 0x3c130008, ! 0x3c120001, 0x30620800, 0x54400001, 0x3c120002, ! 0x3c028000, 0x2221025, 0x2531825, 0x10000007, ! 0x438825, 0x3c110001, 0x2308821, 0x8e31664c, ! 0x3c027fff, 0x3442ffff, 0x2228824, 0x151140, ! 0x3c010001, 0x220821, 0xac316644, 0x1000004e, ! 0x2201021, 0x152940, 0x3c030001, 0x651821, ! 0x8c636648, 0x3c024000, 0x621024, 0x14400008, ! 0x3c027fff, 0x3442ffff, 0x628824, 0x3c010001, ! 0x250821, 0xac316640, 0x1000003f, 0x2201021, ! 0x3c020001, 0x8c424438, 0x10400033, 0x3c11c00c, ! 0x3c020001, 0x8c4244c4, 0x3c04c00c, 0x34842000, ! 0x3c030001, 0x8c63457c, 0x2102b, 0x21023, ! 0x441024, 0x10600003, 0x518825, 0x3c022000, ! 0x2228825, 0x3c020001, 0x451021, 0x8c426654, ! 0x10400003, 0x3c020020, 0x10000004, 0x2228825, ! 0x3c02ffdf, 0x3442ffff, 0x2228824, 0x151140, ! 0x3c010001, 0x220821, 0x8c22665c, 0x10400003, ! 0x3c020080, 0x10000004, 0x2228825, 0x3c02ff7f, ! 0x3442ffff, 0x2228824, 0x3c020001, 0x8c4244b0, ! 0x10400002, 0x3c020800, 0x2228825, 0x3c020001, ! 0x8c4244b4, 0x10400002, 0x3c020400, 0x2228825, ! 0x3c020001, 0x8c4244b8, 0x10400006, 0x3c020100, ! 0x10000004, 0x2228825, 0x3c027fff, 0x3442ffff, ! 0x628824, 0x151140, 0x3c010001, 0x220821, ! 0xac316640, 0x2201021, 0x8fbf002c, 0x8fb50028, ! 0x8fb30024, 0x8fb20020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0030, 0x27bdffe0, 0xafb20018, ! 0x809021, 0xafbf001c, 0xafb10014, 0xafb00010, ! 0x8f840200, 0x3c030001, 0x8c634428, 0x8f860220, ! 0x24020002, 0x106200a6, 0x2c620003, 0x10400005, ! 0x24020001, 0x1062000a, 0x121940, 0x100000a0, ! 0x0, 0x24020004, 0x10620053, 0x24020008, ! 0x10620052, 0x128940, 0x10000099, 0x0, ! 0x3c050001, 0xa32821, 0x8ca5664c, 0x3c100001, ! 0x2038021, 0x8e106644, 0x3c024000, 0xa21024, 0x10400038, 0x3c020008, 0x2021024, 0x10400020, ! 0x34840002, 0x3c020001, 0x431021, 0x8c426650, 0x10400005, 0x34840020, 0x34840100, 0x3c020020, 0x10000006, 0x2028025, 0x2402feff, 0x822024, 0x3c02ffdf, 0x3442ffff, 0x2028024, 0x121140, ! 0x3c010001, 0x220821, 0x8c226658, 0x10400005, 0x3c020001, 0xc23025, 0x3c020080, 0x10000016, 0x2028025, 0x3c02fffe, 0x3442ffff, 0xc23024, 0x3c02ff7f, 0x3442ffff, 0x1000000f, 0x2028024, 0x2402fedf, 0x822024, 0x3c02fffe, 0x3442ffff, 0xc23024, 0x3c02ff5f, 0x3442ffff, 0x2028024, ! 0x3c010001, 0x230821, 0xac206650, 0x3c010001, ! 0x230821, 0xac206658, 0xaf840200, 0xaf860220, ! 0x8f820220, 0x34420002, 0xaf820220, 0x1000000a, 0x121140, 0x3c02bfff, 0x3442ffff, 0x8f830200, ! 0x2028024, 0x2402fffd, 0x621824, 0xc003c6d, ! 0xaf830200, 0x121140, 0x3c010001, 0x220821, ! 0x1000004b, 0xac306644, 0x128940, 0x3c050001, ! 0xb12821, 0x8ca56648, 0x3c100001, 0x2118021, ! 0x8e106640, 0x3c024000, 0xa21024, 0x14400010, ! 0x0, 0x3c020001, 0x8c42457c, 0x14400005, ! 0x3c02bfff, 0x8f820200, 0x34420002, 0xaf820200, ! 0x3c02bfff, 0x3442ffff, 0xc003c6d, 0x2028024, ! 0x3c010001, 0x310821, 0x10000031, 0xac306640, ! 0x3c020001, 0x8c42457c, 0x10400005, 0x3c020020, ! 0x3c020001, 0x8c4244c4, 0x10400025, 0x3c020020, 0xa21024, 0x10400007, 0x34840020, 0x24020100, ! 0x3c010001, 0x310821, 0xac226654, 0x10000006, ! 0x34840100, 0x3c010001, 0x310821, 0xac206654, 0x2402feff, 0x822024, 0x3c020080, 0xa21024, ! 0x10400007, 0x121940, 0x3c020001, 0x3c010001, ! 0x230821, 0xac22665c, 0x10000008, 0xc23025, ! 0x121140, 0x3c010001, 0x220821, 0xac20665c, 0x3c02fffe, 0x3442ffff, 0xc23024, 0xaf840200, 0xaf860220, 0x8f820220, 0x34420002, 0xaf820220, ! 0x121140, 0x3c010001, 0x220821, 0xac306640, ! 0x8fbf001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, ! 0x3e00008, 0x27bd0020, 0x0, 0x1821, ! 0x308400ff, 0x2405ffdf, 0x2406ffbf, 0x641007, ! 0x30420001, 0x10400004, 0x0, 0x8f820044, ! 0x10000003, 0x34420040, 0x8f820044, 0x461024, ! 0xaf820044, 0x8f820044, 0x34420020, 0xaf820044, ! 0x8f820044, 0x451024, 0xaf820044, 0x24630001, ! 0x28620008, 0x5440ffee, 0x641007, 0x3e00008, ! 0x0, 0x0, 0x0, 0x8f8400c4, ! 0x8f8600e0, 0x8f8700e4, 0x2402fff8, 0xc22824, ! 0x10e5001a, 0x27623ff8, 0x14e20002, 0x24e80008, ! 0x27683000, 0x55050004, 0x8d0a0000, 0x30c20004, ! 0x14400012, 0x805021, 0x8ce90000, 0x8f42013c, ! 0x1494823, 0x49182b, 0x94eb0006, 0x10600002, ! 0x25630050, 0x494821, 0x123182b, 0x50400003, ! 0x8f4201fc, 0x3e00008, 0xe01021, 0xaf8800e8, ! 0x24420001, 0xaf4201fc, 0xaf8800e4, 0x3e00008, ! 0x1021, 0x3e00008, 0x0, 0x8f8300e4, ! 0x27623ff8, 0x10620004, 0x24620008, 0xaf8200e8, ! 0x3e00008, 0xaf8200e4, 0x27623000, 0xaf8200e8, ! 0x3e00008, 0xaf8200e4, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x8f880120, ! 0x27624fe0, 0x8f830128, 0x15020002, 0x25090020, ! 0x27694800, 0x11230012, 0x8fa20010, 0xad040000, ! 0xad050004, 0xad060008, 0xa507000e, 0x8fa30014, ! 0xad020018, 0x8fa20018, 0xad03001c, 0x25030016, ! 0xad020010, 0xad030014, 0xaf890120, 0x8f4300fc, ! 0x24020001, 0x2463ffff, 0x3e00008, 0xaf4300fc, ! 0x8f430324, 0x1021, 0x24630001, 0x3e00008, ! 0xaf430324, 0x3e00008, 0x0, 0x8f880100, ! 0x276247e0, 0x8f830108, 0x15020002, 0x25090020, ! 0x27694000, 0x1123000f, 0x8fa20010, 0xad040000, ! 0xad050004, 0xad060008, 0xa507000e, 0x8fa30014, ! 0xad020018, 0x8fa20018, 0xad03001c, 0x25030016, ! 0xad020010, 0xad030014, 0xaf890100, 0x3e00008, ! 0x24020001, 0x8f430328, 0x1021, 0x24630001, ! 0x3e00008, 0xaf430328, 0x3e00008, 0x0, ! 0x0, 0x0, 0x0, 0x0 }; static u_int32_t tigon2FwRodata[] = { 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, --- 3426,4913 ---- 0x64102b, 0x5440fffd, 0xac600000, 0x8f830040, 0x3c02f000, 0x621824, 0x3c025000, 0x1062000c, 0x43102b, 0x14400006, 0x3c026000, 0x3c024000, ! 0x1062000c, 0x24020800, 0x1000000e, 0x240202a9, ! 0x10620008, 0x24020800, 0x1000000a, 0x240202a9, ! 0x24020700, 0x3c010002, 0xac228520, 0x10000018, ! 0x0, 0x3c010002, 0xac228520, 0x10000014, ! 0x0, 0x3c040002, 0x24848058, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070002, 0x24e78070, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x3c020002, ! 0x8c428530, 0x27bdffd0, 0xafbf002c, 0xafb20028, ! 0xafb10024, 0xafb00020, 0x3c010002, 0xac208508, ! 0x10400005, 0x0, 0xc005369, 0x0, ! 0x3c010002, 0xac208530, 0x8f830054, 0x8f820054, ! 0x10000002, 0x24630064, 0x8f820054, 0x621023, ! 0x2c420065, 0x1440fffc, 0x0, 0xc005384, ! 0x0, 0x24040001, 0x2821, 0x27a60018, ! 0x34028000, 0xc004b82, 0xa7a20018, 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x24050001, 0xc004b40, 0x27a60018, 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x24050001, 0xc004b40, 0x27a60018, 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, 0x24040001, ! 0x3c060002, 0x24c68680, 0xc004b40, 0x24050002, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630064, ! 0x8f820054, 0x621023, 0x2c420065, 0x1440fffc, ! 0x24040001, 0x24050003, 0x3c100002, 0x26108682, ! 0xc004b40, 0x2003021, 0x97a60018, 0x3c070002, ! 0x94e78680, 0x3c040002, 0x24848088, 0xafa00014, ! 0x96020000, 0x3c05000d, 0x34a50100, 0xc002d3b, ! 0xafa20010, 0x97a20018, 0x10400050, 0x24036040, ! 0x96020000, 0x3042fff0, 0x1443000d, 0x24020020, ! 0x3c030002, 0x94638680, 0x1462000c, 0x24027830, ! 0x24020003, 0x3c010002, 0xac228508, 0x24020005, ! 0x3c010002, 0xac228690, 0x10000041, 0x0, ! 0x3c030002, 0x94638680, 0x24027830, 0x1462000d, ! 0x24030010, 0x3c020002, 0x94428682, 0x3042fff0, ! 0x14430008, 0x24020003, 0x3c010002, 0xac228508, ! 0x24020006, 0x3c010002, 0xac228690, 0x10000030, ! 0x0, 0x3c020002, 0x8c428508, 0x3c030002, ! 0x94638680, 0x34420001, 0x3c010002, 0xac228508, ! 0x24020015, 0x1462000b, 0x0, 0x3c020002, ! 0x94428682, 0x3042fff0, 0x3843f420, 0x2c630001, ! 0x3842f430, 0x2c420001, 0x621825, 0x1460001c, ! 0x24020003, 0x3c030002, 0x94638680, 0x24027810, ! 0x14620017, 0x24020002, 0x3c020002, 0x94428682, ! 0x3042fff0, 0x14400012, 0x24020002, 0x10000010, ! 0x24020004, 0x3c020002, 0x8c428508, 0x34420008, ! 0x3c010002, 0xac228508, 0x1000005f, 0x24020004, ! 0x3c020002, 0x8c428508, 0x34420004, 0x3c010002, ! 0xac228508, 0x100000af, 0x0, 0x24020001, ! 0x3c010002, 0xac22869c, 0x3c020002, 0x8c428508, ! 0x30420002, 0x144000b2, 0x3c09fff0, 0x24020e00, ! 0xaf820238, 0x8f840054, 0x8f820054, 0x24030008, ! 0x3c010002, 0xac23850c, 0x10000002, 0x248401f4, ! 0x8f820054, 0x821023, 0x2c4201f5, 0x1440fffc, ! 0x3c0200c8, 0x344201fb, 0xaf820238, 0x8f830054, ! 0x8f820054, 0x10000002, 0x246301f4, 0x8f820054, ! 0x621023, 0x2c4201f5, 0x1440fffc, 0x8021, ! 0x24120001, 0x24110009, 0xc0049f9, 0x0, ! 0x3c010002, 0xac328528, 0xc004ac3, 0x0, ! 0x3c020002, 0x8c428528, 0x1451fffb, 0x3c0200c8, ! 0x344201f6, 0xaf820238, 0x8f830054, 0x8f820054, ! 0x10000002, 0x2463000a, 0x8f820054, 0x621023, ! 0x2c42000b, 0x1440fffc, 0x0, 0x8f820220, ! 0x24040001, 0x34420002, 0xaf820220, 0x8f830200, ! 0x24057fff, 0x2402fffd, 0x621824, 0xaf830200, ! 0xaf840204, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x8f820224, 0x14440005, ! 0x34028000, 0x42040, 0xa4102b, 0x1040fff0, ! 0x34028000, 0x1082ff9f, 0x26100001, 0x2e020014, ! 0x1440ffcd, 0x24020004, 0x3c010002, 0xac22850c, ! 0x8021, 0x24120009, 0x3c11ffff, 0x36313f7f, ! 0xc0049f9, 0x0, 0x24020001, 0x3c010002, ! 0xac228528, 0xc004ac3, 0x0, 0x3c020002, ! 0x8c428528, 0x1452fffb, 0x0, 0x8f820044, ! 0x511024, 0x34425080, 0xaf820044, 0x8f830054, ! 0x8f820054, 0x10000002, 0x2463000a, 0x8f820054, ! 0x621023, 0x2c42000b, 0x1440fffc, 0x0, ! 0x8f820044, 0x511024, 0x3442f080, 0xaf820044, 0x8f830054, 0x8f820054, 0x10000002, 0x2463000a, 0x8f820054, 0x621023, 0x2c42000b, 0x1440fffc, 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0xaf820220, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630064, 0x8f820054, 0x621023, 0x2c420065, ! 0x1440fffc, 0x0, 0x8f820220, 0x24040001, ! 0x34420002, 0xaf820220, 0x8f830200, 0x24057fff, ! 0x2402fffd, 0x621824, 0xaf830200, 0xaf840204, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820224, 0x14440005, 0x34028000, ! 0x42040, 0xa4102b, 0x1040fff0, 0x34028000, ! 0x1082ff4f, 0x26100001, 0x2e020064, 0x1440ffb0, ! 0x0, 0x3c020002, 0x8c428508, 0x30420004, ! 0x14400007, 0x3c09fff0, 0x8f820044, 0x3c03ffff, ! 0x34633f7f, 0x431024, 0xaf820044, 0x3c09fff0, ! 0x3529bdc0, 0x3c060002, 0x8cc68508, 0x3c040002, ! 0x24848088, 0x24020001, 0x3c010002, 0xac228510, ! 0x8f820054, 0x3c070002, 0x8ce7869c, 0x3c030002, ! 0x94638680, 0x3c080002, 0x95088682, 0x3c05000d, ! 0x34a50100, 0x3c010002, 0xac20850c, 0x491021, ! 0x3c010002, 0xac22868c, 0xafa30010, 0xc002d3b, ! 0xafa80014, 0x8fbf002c, 0x8fb20028, 0x8fb10024, ! 0x8fb00020, 0x3e00008, 0x27bd0030, 0x27bdffe8, ! 0x3c050002, 0x8ca5850c, 0x24060004, 0x24020001, ! 0x14a20014, 0xafbf0010, 0x3c020002, 0x8c42a75c, ! 0x30428000, 0x10400005, 0x3c04000f, 0x3c030002, ! 0x8c63869c, 0x10000005, 0x34844240, 0x3c040004, ! 0x3c030002, 0x8c63869c, 0x348493e0, 0x24020005, ! 0x14620016, 0x0, 0x3c04003d, 0x10000013, ! 0x34840900, 0x3c020002, 0x8c42a758, 0x30428000, ! 0x10400005, 0x3c04001e, 0x3c030002, 0x8c63869c, ! 0x10000005, 0x34848480, 0x3c04000f, 0x3c030002, ! 0x8c63869c, 0x34844240, 0x24020005, 0x14620003, ! 0x0, 0x3c04007a, 0x34841200, 0x3c020002, ! 0x8c42868c, 0x8f830054, 0x441021, 0x431023, ! 0x44102b, 0x1440004e, 0x0, 0x3c020002, ! 0x8c428514, 0x1440004a, 0x0, 0x3c010002, ! 0xac208524, 0x10c00026, 0x0, 0x3c090002, ! 0x8d298508, 0x24070001, 0x3c044000, 0x3c080002, ! 0x2508a75c, 0x250afffc, 0x52842, 0x14a00002, ! 0x24c6ffff, 0x24050008, 0xa91024, 0x10400011, ! 0x0, 0x14a70009, 0x0, 0x8d020000, ! 0x441024, 0x1040000b, 0x0, 0x3c010002, ! 0xac258524, 0x10000007, 0x0, 0x8d420000, ! 0x441024, 0x10400003, 0x0, 0x3c010002, ! 0xac278524, 0x3c020002, 0x8c428524, 0x6182b, ! 0x2c420001, 0x431024, 0x5440ffe4, 0x52842, ! 0x8f820054, 0x3c030002, 0x8c638524, 0x3c010002, ! 0xac22868c, 0x1060003b, 0x24020005, 0x3c030002, ! 0x8c63869c, 0x3c010002, 0xac25850c, 0x14620012, ! 0x24020001, 0x3c020002, 0x8c42a758, 0x3c032000, ! 0x34635000, 0x431024, 0x14400006, 0x24020001, ! 0x3c010002, 0xac208678, 0x3c010002, 0xac22850c, ! 0x24020001, 0x3c010002, 0xac228590, 0x3c010002, ! 0xac228518, 0x24020001, 0x3c010002, 0xac228510, ! 0x3c020002, 0x8c428524, 0x1040001e, 0x0, ! 0x3c020002, 0x8c428510, 0x10400008, 0x24020001, ! 0x3c010002, 0xac208510, 0xaee204b8, 0x3c010002, ! 0xac208588, 0x3c010002, 0xac228540, 0x8ee304b8, ! 0x24020008, 0x10620005, 0x24020001, 0xc004791, ! 0x0, 0x1000000b, 0x0, 0x3c030002, ! 0x8c63850c, 0x10620007, 0x2402000e, 0x3c030002, ! 0x8c63a6f0, 0x10620003, 0x0, 0xc005464, ! 0x8f840220, 0x8fbf0010, 0x3e00008, 0x27bd0018, ! 0x27bdffe0, 0x3c03fdff, 0x3c040002, 0x8c84850c, ! 0x3c020002, 0x8c428534, 0x3463ffff, 0x283a024, ! 0x14820006, 0xafbf0018, 0x8ee304b8, 0x3c020002, ! 0x8c428538, 0x10620006, 0x0, 0x8ee204b8, ! 0x3c010002, 0xac248534, 0x3c010002, 0xac228538, ! 0x3c030002, 0x8c63850c, 0x24020002, 0x106201b8, ! 0x2c620003, 0x10400005, 0x24020001, 0x1062000a, ! 0x0, 0x10000245, 0x0, 0x24020004, ! 0x106200cd, 0x24020008, 0x10620122, 0x24020001, ! 0x1000023e, 0x0, 0x8ee204b8, 0x2443ffff, ! 0x2c620008, 0x1040023b, 0x31080, 0x3c010002, ! 0x220821, 0x8c2280a0, 0x400008, 0x0, ! 0x3c030002, 0x8c63869c, 0x24020005, 0x14620012, ! 0x0, 0x3c020002, 0x8c428518, 0x10400009, ! 0x24020003, 0xc0049f9, 0x0, 0x24020002, ! 0xaee204b8, 0x3c010002, 0xac208518, 0x10000002, ! 0x0, 0xaee204b8, 0x3c010002, 0xac2084ac, ! 0x10000220, 0x0, 0xc0049f9, 0x0, ! 0x3c020002, 0x8c428518, 0x3c010002, 0xac2084ac, ! 0x14400194, 0x24020002, 0x100001b9, 0x24020007, ! 0x3c030002, 0x8c63869c, 0x24020005, 0x14620003, ! 0x24020001, 0x3c010002, 0xac22853c, 0xc004bc3, ! 0x0, 0x3c030002, 0x8c63853c, 0x1000018f, ! 0x24020011, 0x3c050002, 0x8ca5850c, 0x3c060002, ! 0x8cc6a75c, 0xc0056de, 0x2021, 0x24020005, ! 0x3c010002, 0xac208518, 0x100001fe, 0xaee204b8, ! 0x3c040002, 0x24848094, 0x3c05000f, 0x34a50100, ! 0x3021, 0x3821, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x3c040002, 0x24848058, 0x240204ae, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070002, ! 0x24e78070, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x100001df, 0x0, 0x8f820220, ! 0x3c030004, 0x431024, 0x1440017d, 0x24020007, ! 0x8f830054, 0x3c020002, 0x8c428684, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x14400003, 0x24020001, ! 0x3c010002, 0xac228510, 0x3c020002, 0x8c42a75c, ! 0x30425000, 0x104001cb, 0x0, 0x8f820220, ! 0x30428000, 0x10400185, 0x0, 0x1000017d, ! 0x0, 0x3c050002, 0x8ca5850c, 0xc00587d, ! 0x2021, 0xc005aff, 0x2021, 0x3c030002, ! 0x8c63a754, 0x46101b9, 0x24020001, 0x3c020008, 0x621024, 0x10400006, 0x0, 0x8f820214, 0x3c03ffff, 0x431024, 0x10000005, 0x3442251f, 0x8f820214, 0x3c03ffff, 0x431024, 0x3442241f, ! 0xaf820214, 0x8f820220, 0x3c030200, 0x34420002, ! 0xaf820220, 0x24020008, 0xaee204b8, 0x8f820220, ! 0x283a025, 0x3c030004, 0x431024, 0x14400016, ! 0x0, 0x3c020002, 0x8c42a75c, 0x30425000, ! 0x1040000d, 0x0, 0x8f820220, 0x30428000, ! 0x10400006, 0x0, 0x8f820220, 0x3c03ffff, ! 0x34637fff, 0x10000003, 0x431024, 0x8f820220, ! 0x34428000, 0xaf820220, 0x8f820220, 0x3c03f700, ! 0x431025, 0xaf820220, 0x3c030002, 0x8c63869c, ! 0x24020005, 0x1462000a, 0x0, 0x3c020002, ! 0x94428682, 0x24429fbc, 0x2c420004, 0x10400004, ! 0x24040018, 0x24050002, 0xc0053a6, 0x24060020, ! 0xc0043a7, 0x0, 0x3c010002, 0xac20858c, ! 0x10000178, 0x0, 0x8ee204b8, 0x2443ffff, ! 0x2c620008, 0x10400173, 0x31080, 0x3c010002, ! 0x220821, 0x8c2280c0, 0x400008, 0x0, ! 0xc004ac3, 0x0, 0x3c030002, 0x8c638528, ! 0x100000ee, 0x24020009, 0x3c020002, 0x8c42a758, ! 0x30424000, 0x10400004, 0x0, 0x8f820044, ! 0x10000006, 0x3442f080, 0x8f820044, 0x3c03ffff, ! 0x34633f7f, 0x431024, 0x3442a080, 0xaf820044, ! 0x8f830054, 0x100000f0, 0x24020004, 0x8f830054, ! 0x3c020002, 0x8c428684, 0x2463d8f0, 0x431023, ! 0x2c422710, 0x1440014f, 0x24020005, 0x100000de, ! 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0xaf820220, 0xaf800204, 0x3c010002, 0xac20a740, ! 0x100000db, 0x0, 0x8f830054, 0x3c020002, ! 0x8c428684, 0x2463fff6, 0x431023, 0x2c42000a, ! 0x1440013c, 0x24020007, 0x100000dd, 0x0, ! 0xc004486, 0x0, 0x10400134, 0x24020001, ! 0x8f820214, 0x3c03ffff, 0x3c040002, 0x8c848678, ! 0x431024, 0x3442251f, 0xaf820214, 0x24020008, ! 0x10800005, 0xaee204b8, 0x3c020002, 0x8c4285a8, ! 0x10400066, 0x24020001, 0x8f820220, 0x3c030008, ! 0x431024, 0x1040006c, 0x3c020200, 0x1000007b, ! 0x0, 0x8ee204b8, 0x2443ffff, 0x2c620007, ! 0x1040011c, 0x31080, 0x3c010002, 0x220821, ! 0x8c2280e0, 0x400008, 0x0, 0xc0042e9, ! 0x0, 0x3c010002, 0xac208510, 0xaf800204, ! 0x3c010002, 0xac20a740, 0xc0049f9, 0x0, ! 0x24020001, 0x3c010002, 0xac228528, 0x24020002, ! 0x10000108, 0xaee204b8, 0xc004ac3, 0x0, ! 0x3c030002, 0x8c638528, 0x10000088, 0x24020009, ! 0x3c020002, 0x8c42a758, 0x30424000, 0x10400003, 0x3c0200c8, 0x10000002, 0x344201f6, 0x344201fe, ! 0xaf820238, 0x8f830054, 0x1000008f, 0x24020004, ! 0x8f830054, 0x3c020002, 0x8c428684, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x144000ee, 0x24020005, ! 0x1000007d, 0x0, 0x8f820220, 0x3c03f700, ! 0x431025, 0xaf820220, 0xaf800204, 0x3c010002, ! 0xac20a740, 0x1000007a, 0x0, 0x8f830054, ! 0x3c020002, 0x8c428684, 0x2463fff6, 0x431023, ! 0x2c42000a, 0x144000db, 0x24020007, 0x1000007c, ! 0x0, 0xc004486, 0x0, 0x104000d3, ! 0x24020001, 0x8f820214, 0x3c03ffff, 0x3c040002, ! 0x8c848678, 0x431024, 0x3442251f, 0xaf820214, ! 0x24020008, 0x1080000f, 0xaee204b8, 0x3c020002, ! 0x8c4285a8, 0x1440000b, 0x0, 0x8f820220, ! 0x34420002, 0xaf820220, 0x24020001, 0x3c010002, ! 0xac22a6f0, 0xc005464, 0x8f840220, 0x10000017, ! 0x0, 0x8f820220, 0x3c030008, 0x431024, ! 0x14400012, 0x3c020200, 0x282a025, 0x2402000e, ! 0x3c010002, 0xac22a6f0, 0xc005aff, 0x2021, ! 0x8f820220, 0x34420002, 0xaf820220, 0xc0043a7, ! 0x0, 0x3c050002, 0x8ca5850c, 0xc00587d, ! 0x2021, 0x100000a7, 0x0, 0x3c020002, ! 0x8c4285a8, 0x104000a3, 0x0, 0x3c020002, ! 0x8c4285a4, 0x2442ffff, 0x3c010002, 0xac2285a4, ! 0x1440009c, 0x24020002, 0x3c010002, 0xac2085a8, ! 0x3c010002, 0xac2285a4, 0x10000096, 0x0, ! 0x8ee204b8, 0x2443ffff, 0x2c620007, 0x10400091, ! 0x31080, 0x3c010002, 0x220821, 0x8c228100, ! 0x400008, 0x0, 0x3c020002, 0x8c428518, ! 0x10400019, 0x24020005, 0xc0049f9, 0x0, ! 0x24020002, 0xaee204b8, 0x3c010002, 0xac208518, ! 0x10000080, 0x0, 0xc004f28, 0x0, ! 0x3c030002, 0x8c638540, 0x24020006, 0x14620079, ! 0x24020003, 0x10000077, 0xaee204b8, 0x3c050002, ! 0x8ca5850c, 0x3c060002, 0x8cc6a758, 0xc0056de, ! 0x2021, 0x24020005, 0x1000006e, 0xaee204b8, ! 0x8f820220, 0x3c03f700, 0x431025, 0xaf820220, ! 0x8f830054, 0x24020006, 0xaee204b8, 0x3c010002, ! 0xac238684, 0x10000063, 0x0, 0x8f820220, ! 0x3c030004, 0x431024, 0x10400003, 0x24020007, ! 0x1000005c, 0xaee204b8, 0x8f830054, 0x3c020002, ! 0x8c428684, 0x2463d8f0, 0x431023, 0x2c422710, ! 0x14400003, 0x24020001, 0x3c010002, 0xac228510, ! 0x3c020002, 0x8c42a758, 0x30425000, 0x1040004d, ! 0x0, 0x8f820220, 0x30428000, 0x10400007, ! 0x0, 0x8f820220, 0x3c03ffff, 0x34637fff, ! 0x431024, 0x10000043, 0xaf820220, 0x8f820220, ! 0x34428000, 0xaf820220, 0x1000003e, 0x0, ! 0x3c050002, 0x8ca5850c, 0xc00587d, 0x2021, ! 0xc005aff, 0x2021, 0x3c020002, 0x8c42a750, ! 0x4410032, 0x24020001, 0x8f820214, 0x3c03ffff, ! 0x431024, 0x3442251f, 0xaf820214, 0x24020008, ! 0xaee204b8, 0x8f820220, 0x34420002, 0xaf820220, ! 0x8f820220, 0x3c030004, 0x431024, 0x14400016, ! 0x0, 0x3c020002, 0x8c42a758, 0x30425000, ! 0x1040000d, 0x0, 0x8f820220, 0x30428000, ! 0x10400006, 0x0, 0x8f820220, 0x3c03ffff, ! 0x34637fff, 0x10000003, 0x431024, 0x8f820220, ! 0x34428000, 0xaf820220, 0x8f820220, 0x3c03f700, ! 0x431025, 0xaf820220, 0x3c020002, 0x94428682, ! 0x24429fbc, 0x2c420004, 0x10400004, 0x24040018, ! 0x24050002, 0xc0053a6, 0x24060020, 0xc0043a7, ! 0x0, 0x10000003, 0x0, 0x3c010002, ! 0xac228510, 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x8f820200, 0x8f820220, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820200, 0x3c050002, 0x8ca5850c, ! 0x34420004, 0xaf820200, 0x24020002, 0x10a2004d, ! 0x2ca20003, 0x10400005, 0x24020001, 0x10a2000a, ! 0x0, 0x100000b6, 0x0, 0x24020004, ! 0x10a20075, 0x24020008, 0x10a20089, 0x3c02f0ff, ! 0x100000af, 0x0, 0x8f830050, 0x3c02f0ff, ! 0x3442ffff, 0x3c040002, 0x8c84869c, 0x621824, ! 0x3c020700, 0x621825, 0x24020e00, 0x2484fffb, ! 0x2c840002, 0xaf830050, 0xaf850200, 0xaf850220, ! 0xaf820238, 0x14800006, 0x0, 0x8f820044, ! 0x3c03ffff, 0x34633f7f, 0x431024, 0xaf820044, ! 0x3c030002, 0x8c63869c, 0x24020005, 0x14620004, ! 0x0, 0x8f820044, 0x34425000, 0xaf820044, ! 0x3c020002, 0x8c4284fc, 0x3c030002, 0x8c63869c, ! 0x34420022, 0x2463fffc, 0x2c630002, 0xaf820200, ! 0x1460000c, 0x0, 0x3c020002, 0x8c428520, ! 0x3c030002, 0x8c638504, 0x3c040002, 0x8c848500, ! 0x34428000, 0x621825, 0x641825, 0x1000000a, ! 0x34620002, 0x3c020002, 0x8c428504, 0x3c030002, ! 0x8c638520, 0x3c040002, 0x8c848500, 0x431025, ! 0x441025, 0x34420002, 0xaf820220, 0x1000002f, ! 0x24020001, 0x24020e01, 0xaf820238, 0x8f830050, ! 0x3c02f0ff, 0x3442ffff, 0x3c040002, 0x8c848678, 0x621824, 0x3c020d00, 0x621825, 0x24020001, ! 0xaf830050, 0xaf820200, 0xaf820220, 0x10800005, ! 0x3c033f00, 0x3c020002, 0x8c4284f4, 0x10000004, ! 0x34630070, 0x3c020002, 0x8c4284f4, 0x34630072, ! 0x431025, 0xaf820200, 0x3c030002, 0x8c6384f8, ! 0x3c02f700, 0x621825, 0x3c020002, 0x8c428504, ! 0x3c040002, 0x8c848520, 0x3c050002, 0x8ca5869c, ! 0x431025, 0x441025, 0xaf820220, 0x24020005, ! 0x14a20006, 0x24020001, 0x8f820044, 0x2403afff, ! 0x431024, 0xaf820044, 0x24020001, 0xaf820238, ! 0x1000003f, 0x0, 0x8f830050, 0x3c02f0ff, ! 0x3442ffff, 0x3c040002, 0x8c848678, 0x621824, ! 0x3c020a00, 0x621825, 0x24020001, 0xaf830050, ! 0xaf820200, 0xaf820220, 0x1080001f, 0x0, ! 0x3c020002, 0x8c4285a8, 0x1440001b, 0x3c033f00, ! 0x3c020002, 0x8c4284f4, 0x1000001b, 0x346300e0, ! 0x8f830050, 0x3c040002, 0x8c848678, 0x3442ffff, ! 0x621824, 0xaf830050, 0x1080000f, 0x0, ! 0x3c020002, 0x8c4285a8, 0x1440000b, 0x3c043f00, ! 0x3c030002, 0x8c6384f4, 0x348400e0, 0x24020001, ! 0xaf820200, 0xaf820220, 0x641825, 0xaf830200, ! 0x10000008, 0x3c05f700, 0x3c020002, 0x8c4284f4, ! 0x3c033f00, 0x346300e2, 0x431025, 0xaf820200, ! 0x3c05f700, 0x34a58000, 0x3c030002, 0x8c6384f8, ! 0x3c020002, 0x8c428504, 0x3c040002, 0x8c848520, ! 0x651825, 0x431025, 0x441025, 0xaf820220, ! 0x3e00008, 0x0, 0x3c030002, 0x8c638528, ! 0x3c020002, 0x8c42852c, 0x27bdffe0, 0x10620003, ! 0xafbf0018, 0x3c010002, 0xac23852c, 0x24020002, ! 0x1062003c, 0x2c620003, 0x10400005, 0x24020001, ! 0x10620008, 0x24020004, 0x10000055, 0x0, ! 0x24020009, 0x1062003f, 0x240209c5, 0x10000050, ! 0x0, 0x3c030002, 0x8c63850c, 0x10620008, ! 0x24020008, 0x14620010, 0x240209ac, 0x3c0200c8, ! 0x344201fb, 0xaf820238, 0x1000001e, 0x0, 0x24020e01, 0xaf820238, 0x8f820044, 0x3c03ffff, 0x34633f7f, 0x431024, 0x34420080, 0xaf820044, ! 0x10000014, 0x0, 0x3c040002, 0x24848058, ! 0xafa20010, 0xafa00014, 0x8f860144, 0x3c070002, ! 0x24e78070, 0xc002d3b, 0x3405dead, 0x8f82011c, ! 0x34420002, 0xaf82011c, 0x8f820220, 0x34420004, ! 0xaf820220, 0x8f820140, 0x3c030001, 0x431025, ! 0xaf820140, 0x8f830054, 0x24020002, 0x3c010002, ! 0xac228528, 0x3c010002, 0xac238688, 0x10000034, ! 0x0, 0x8f830054, 0x3c020002, 0x8c428688, ! 0x2463d8f0, 0x431023, 0x2c422710, 0x1440002c, ! 0x24020009, 0x3c010002, 0xac228528, 0x10000028, ! 0x0, 0x3c040002, 0x24848058, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070002, 0x24e78070, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x3c040002, 0x24848058, 0x240209cb, 0xafa20010, ! 0xafa00014, 0x8f860144, 0x3c070002, 0x24e78070, ! 0xc002d3b, 0x3405dead, 0x8f82011c, 0x34420002, ! 0xaf82011c, 0x8f820220, 0x34420004, 0xaf820220, ! 0x8f820140, 0x3c030001, 0x431025, 0xaf820140, ! 0x8fbf0018, 0x3e00008, 0x27bd0020, 0x27bdffd8, 0xafb20018, 0x809021, 0xafb3001c, 0xa09821, 0xafb10014, 0xc08821, 0xafb00010, 0x8021, ! 0xafbf0020, 0xa6200000, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x2501024, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, 0x2501024, 0x24100010, 0x2701024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x2701024, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, 0x3e00008, 0x27bd0028, 0x27bdffd8, 0xafb10014, 0x808821, 0xafb20018, 0xa09021, 0xafb3001c, 0xc09821, ! 0xafb00010, 0x8021, 0xafbf0020, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0xc005343, 0x24040001, 0x24100010, 0x2301024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, 0x1600fffa, 0x2301024, 0x24100010, 0x2501024, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x2501024, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x34108000, 0x96620000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fff8, ! 0x0, 0xc005384, 0x0, 0x8fbf0020, 0x8fb3001c, 0x8fb20018, 0x8fb10014, 0x8fb00010, ! 0x3e00008, 0x27bd0028, 0x3c040002, 0x8c84853c, ! 0x3c020002, 0x8c428584, 0x27bdffd8, 0xafbf0020, ! 0xafb1001c, 0x10820003, 0xafb00018, 0x3c010002, ! 0xac248584, 0x3c030002, 0x8c63869c, 0x24020005, ! 0x14620005, 0x2483ffff, 0xc004f28, 0x0, ! 0x1000034d, 0x0, 0x2c620013, 0x1040034a, ! 0x31080, 0x3c010002, 0x220821, 0x8c228138, ! 0x400008, 0x0, 0xc005384, 0x8021, ! 0x34028000, 0xa7a20010, 0x27b10010, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0xc005343, 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0xc005343, 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x1000030f, 0x24020002, 0x27b10010, 0xa7a00010, ! 0x8021, 0xc005343, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc005343, ! 0x2021, 0xc005343, 0x24040001, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0xc005343, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x0, 0x97a20010, 0x30428000, ! 0x144002dd, 0x24020003, 0x100002d9, 0x0, ! 0x24021200, 0xa7a20010, 0x27b10010, 0x8021, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0xc005343, 0x2021, 0x108042, 0x1600fffc, ! 0x0, 0xc005343, 0x24040001, 0xc005343, ! 0x2021, 0x34108000, 0x96220000, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fff8, 0x0, 0xc005384, ! 0x0, 0x8f830054, 0x10000296, 0x24020004, ! 0x8f830054, 0x3c020002, 0x8c428698, 0x2463ff9c, ! 0x431023, 0x2c420064, 0x1440029f, 0x24020002, ! 0x3c030002, 0x8c63869c, 0x10620298, 0x2c620003, ! 0x14400297, 0x24020011, 0x24020003, 0x10620005, ! 0x24020004, 0x10620292, 0x2402000f, 0x10000290, ! 0x24020011, 0x1000028e, 0x24020005, 0x24020014, ! 0xa7a20010, 0x27b10010, 0x8021, 0xc005343, ! 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0x32020012, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020012, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x34108000, ! 0x96220000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fff8, ! 0x0, 0xc005384, 0x0, 0x8f830054, ! 0x10000248, 0x24020006, 0x8f830054, 0x3c020002, ! 0x8c428698, 0x2463ff9c, 0x431023, 0x2c420064, ! 0x14400251, 0x24020007, 0x1000024d, 0x0, ! 0x24020006, 0xa7a20010, 0x27b10010, 0x8021, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020013, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020013, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x8f830054, 0x10000207, 0x24020008, 0x8f830054, ! 0x3c020002, 0x8c428698, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x14400210, 0x24020009, 0x1000020c, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020018, ! 0xc005384, 0x34108000, 0xc005384, 0x0, ! 0xc005323, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc005384, 0x8021, ! 0x97a20010, 0x27b10010, 0x34420001, 0xa7a20010, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020018, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x8f830054, 0x10000193, 0x2402000a, 0x8f830054, ! 0x3c020002, 0x8c428698, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x1440019c, 0x2402000b, 0x10000198, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020017, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020017, ! 0xc005384, 0x34108000, 0xc005384, 0x0, ! 0xc005323, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc005384, 0x8021, ! 0x97a20010, 0x27b10010, 0x34420700, 0xa7a20010, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020017, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020017, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x8f830054, 0x1000011f, 0x2402000c, 0x8f830054, ! 0x3c020002, 0x8c428698, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x14400128, 0x24020012, 0x10000124, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020014, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020014, ! 0xc005384, 0x34108000, 0xc005384, 0x0, ! 0xc005323, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc005384, 0x8021, ! 0x97a20010, 0x27b10010, 0x34420010, 0xa7a20010, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020014, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020014, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x8f830054, 0x100000ab, 0x24020013, 0x8f830054, ! 0x3c020002, 0x8c428698, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x144000b4, 0x2402000d, 0x100000b0, ! 0x0, 0x27b10010, 0xa7a00010, 0x8021, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020018, ! 0xc005384, 0x34108000, 0xc005384, 0x0, ! 0xc005323, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc005384, 0x8021, ! 0x97a20010, 0x27b10010, 0x3042fffe, 0xa7a20010, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020018, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x34108000, 0x96220000, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x8f830054, 0x10000037, 0x2402000e, 0x24020840, ! 0xa7a20010, 0x27b10010, 0x8021, 0xc005343, ! 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0x24100010, 0x32020001, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x32020001, 0x24100010, 0x32020013, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020013, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x34108000, 0x96220000, 0x501024, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fff8, ! 0x0, 0xc005384, 0x0, 0x8f830054, ! 0x24020010, 0x3c010002, 0xac22853c, 0x3c010002, ! 0xac238698, 0x1000000c, 0x0, 0x8f830054, ! 0x3c020002, 0x8c428698, 0x2463ff9c, 0x431023, ! 0x2c420064, 0x14400004, 0x0, 0x24020011, ! 0x3c010002, 0xac22853c, 0x8fbf0020, 0x8fb1001c, ! 0x8fb00018, 0x3e00008, 0x27bd0028, 0x3c030002, ! 0x8c63850c, 0x27bdffc8, 0x24020002, 0xafbf0034, ! 0xafb20030, 0xafb1002c, 0x14620005, 0xafb00028, ! 0x3c120002, 0x8e52a758, 0x10000003, 0x0, ! 0x3c120002, 0x8e52a75c, 0x3c030002, 0x8c638540, ! 0x3c020002, 0x8c428588, 0x50620004, 0x2463ffff, ! 0x3c010002, 0xac238588, 0x2463ffff, 0x2c620006, ! 0x1040037c, 0x31080, 0x3c010002, 0x220821, ! 0x8c228190, 0x400008, 0x0, 0x2021, ! 0x2821, 0xc0053a6, 0x34068000, 0x24040010, ! 0x24050002, 0x24060002, 0x24020002, 0xc0053a6, ! 0xa7a20018, 0x24020002, 0x3c010002, 0xac228540, ! 0x10000368, 0x0, 0x27b10018, 0xa7a00018, ! 0x8021, 0xc005343, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc005343, ! 0x2021, 0xc005343, 0x24040001, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0xc005343, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, ! 0x50400005, 0x108042, 0x96220000, 0x501025, ! 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x0, 0x97a20018, 0x30428000, ! 0x14400004, 0x24020003, 0x3c010002, 0xac228540, ! 0x24020003, 0x3c010002, 0xac228540, 0x1000032d, ! 0x0, 0x24040010, 0x24050002, 0x24060002, ! 0x24020002, 0xc0053a6, 0xa7a20018, 0x3c030002, ! 0x8c63858c, 0x24020001, 0x146201e1, 0x8021, ! 0x27b10018, 0xa7a00018, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x32020018, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x8021, 0x27b10018, 0xa7a00018, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0x32020018, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020018, ! 0xc005384, 0x34108000, 0xc005384, 0x0, ! 0xc005323, 0x0, 0x50400005, 0x108042, ! 0x96220000, 0x501025, 0xa6220000, 0x108042, ! 0x1600fff7, 0x0, 0xc005384, 0x8021, ! 0x24040018, 0x2821, 0xc0053a6, 0x24060404, ! 0xa7a0001a, 0xc005343, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc005343, ! 0x2021, 0xc005343, 0x24040001, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x24100010, ! 0x32020001, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x32020001, ! 0x24100010, 0x32020018, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x32020018, 0xc005384, 0x34108000, 0xc005384, ! 0x0, 0xc005323, 0x0, 0x50400005, ! 0x108042, 0x97a2001a, 0x501025, 0xa7a2001a, ! 0x108042, 0x1600fff7, 0x0, 0xc005384, ! 0x8021, 0xa7a0001a, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, 0x32020001, 0x24100010, 0x32020018, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x32020018, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, ! 0x50400005, 0x108042, 0x97a2001a, 0x501025, ! 0xa7a2001a, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x8021, 0xa7a0001c, 0xc005343, ! 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, ! 0x0, 0xc005343, 0x2021, 0xc005343, ! 0x24040001, 0xc005343, 0x24040001, 0xc005343, ! 0x2021, 0x24100010, 0xc005343, 0x2021, ! 0x108042, 0x1600fffc, 0x0, 0x24100010, ! 0x3202001e, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fffa, 0x3202001e, ! 0xc005384, 0x34108000, 0xc005384, 0x0, ! 0xc005323, 0x0, 0x50400005, 0x108042, ! 0x97a2001c, 0x501025, 0xa7a2001c, 0x108042, ! 0x1600fff7, 0x0, 0xc005384, 0x8021, ! 0xa7a0001c, 0xc005343, 0x24040001, 0x26100001, ! 0x2e020020, 0x1440fffb, 0x0, 0xc005343, ! 0x2021, 0xc005343, 0x24040001, 0xc005343, ! 0x24040001, 0xc005343, 0x2021, 0x24100010, ! 0xc005343, 0x2021, 0x108042, 0x1600fffc, ! 0x0, 0x24100010, 0x3202001e, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x3202001e, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, ! 0x50400005, 0x108042, 0x97a2001c, 0x501025, ! 0xa7a2001c, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x8021, 0x24020002, 0xa7a2001e, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0x24100010, 0xc005343, ! 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0x24100010, 0x3202001e, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x3202001e, 0xc005343, 0x24040001, 0xc005343, ! 0x2021, 0x34108000, 0x97a2001e, 0x501024, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fff8, 0x0, 0xc005384, ! 0x8021, 0xa7a00020, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x24100010, 0xc005343, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0x24100010, 0x3202001e, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x3202001e, 0xc005384, ! 0x34108000, 0xc005384, 0x0, 0xc005323, ! 0x0, 0x50400005, 0x108042, 0x97a20020, ! 0x501025, 0xa7a20020, 0x108042, 0x1600fff7, ! 0x0, 0xc005384, 0x8021, 0xa7a00020, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0xc005343, ! 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0x24100010, 0x3202001e, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x3202001e, 0xc005384, 0x34108000, 0xc005384, ! 0x0, 0xc005323, 0x0, 0x50400005, ! 0x108042, 0x97a20020, 0x501025, 0xa7a20020, ! 0x108042, 0x1600fff7, 0x0, 0xc005384, ! 0x8021, 0xa7a00022, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0x24100010, 0xc005343, 0x2021, 0x108042, ! 0x1600fffc, 0x0, 0x24100010, 0xc005343, ! 0x2021, 0x108042, 0x1600fffc, 0x0, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, ! 0x34108000, 0x97a20022, 0x501024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fff8, 0x0, 0xc005384, 0x0, ! 0x24040018, 0x24050002, 0xc0053a6, 0x24060004, ! 0x3c100002, 0x8e108590, 0x24020001, 0x1602011e, ! 0x0, 0x3c020002, 0x94428682, 0x3c010002, ! 0xac208590, 0x24429fbc, 0x2c420004, 0x1040000c, ! 0x24040009, 0x24050001, 0xc0053a6, 0x24060400, ! 0x24040018, 0x24050001, 0xc0053a6, 0x24060020, ! 0x24040018, 0x24050001, 0xc0053a6, 0x24062000, ! 0x3c024000, 0x2421024, 0x10400126, 0x3c022000, ! 0x2421024, 0x10400005, 0x0, 0x3c010002, ! 0xac308678, 0x10000003, 0x0, 0x3c010002, ! 0xac208678, 0x3c030002, 0x8c638690, 0x24020005, ! 0x146200f9, 0x0, 0x3c020002, 0x8c428678, ! 0x10400067, 0x3c020004, 0x2421024, 0x10400011, ! 0xa7a00018, 0x3c020008, 0x2421024, 0x10400002, ! 0x24020200, 0xa7a20018, 0x3c020010, 0x2421024, ! 0x10400004, 0x0, 0x97a20018, 0x34420100, ! 0xa7a20018, 0x97a60018, 0x24040009, 0x10000004, ! 0x2821, 0x24040009, 0x2821, 0x3021, ! 0xc0053a6, 0x0, 0x24020001, 0xa7a2001a, ! 0x3c020008, 0x2421024, 0x1040000c, 0x3c020002, ! 0x2421024, 0x10400002, 0x24020101, 0xa7a2001a, ! 0x3c020001, 0x2421024, 0x10400005, 0x3c020010, ! 0x97a2001a, 0x34420040, 0xa7a2001a, 0x3c020010, ! 0x2421024, 0x1040000e, 0x3c020002, 0x2421024, ! 0x10400005, 0x3c020001, 0x97a2001a, 0x34420080, ! 0xa7a2001a, 0x3c020001, 0x2421024, 0x10400005, ! 0x3c0300a0, 0x97a2001a, 0x34420020, 0xa7a2001a, ! 0x3c0300a0, 0x2431024, 0x54430004, 0x3c020020, ! 0x97a2001a, 0x1000000c, 0x34420400, 0x2421024, ! 0x50400004, 0x3c020080, 0x97a2001a, 0x10000006, ! 0x34420800, 0x2421024, 0x10400004, 0x0, ! 0x97a2001a, 0x34420c00, 0xa7a2001a, 0x97a6001a, ! 0x24040004, 0xc0053a6, 0x2821, 0x3c020004, ! 0x2421024, 0x10400004, 0xa7a0001c, 0x32425000, ! 0x14400004, 0x0, 0x32424000, 0x10400005, ! 0x2021, 0xc0052c4, 0x2402021, 0x10000096, ! 0x0, 0x97a6001c, 0x2821, 0x34c61200, ! 0xc0053a6, 0xa7a6001c, 0x1000008f, 0x0, ! 0x2421024, 0x10400004, 0xa7a00018, 0x32425000, ! 0x14400004, 0x0, 0x32424000, 0x10400005, ! 0x3c020010, 0xc0052c4, 0x2402021, 0x10000019, ! 0xa7a0001a, 0x2421024, 0x10400004, 0x0, ! 0x97a20018, 0x10000004, 0xa7a20018, 0x97a20018, ! 0x34420100, 0xa7a20018, 0x3c020001, 0x2421024, ! 0x10400004, 0x0, 0x97a20018, 0x10000004, ! 0xa7a20018, 0x97a20018, 0x34422000, 0xa7a20018, ! 0x97a60018, 0x2021, 0xc0053a6, 0x2821, ! 0xa7a0001a, 0x8021, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0xc005343, 0x2021, ! 0x108042, 0x1600fffc, 0x0, 0xc005384, ! 0x34108000, 0xc005384, 0x0, 0xc005323, ! 0x0, 0x50400005, 0x108042, 0x97a2001a, ! 0x501025, 0xa7a2001a, 0x108042, 0x1600fff7, ! 0x0, 0xc005384, 0x8021, 0xa7a0001a, ! 0xc005343, 0x24040001, 0x26100001, 0x2e020020, ! 0x1440fffb, 0x0, 0xc005343, 0x2021, ! 0xc005343, 0x24040001, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x24100010, 0x32020001, ! 0x10400002, 0x2021, 0x24040001, 0xc005343, ! 0x108042, 0x1600fffa, 0x32020001, 0x24100010, ! 0xc005343, 0x2021, 0x108042, 0x1600fffc, ! 0x0, 0xc005384, 0x34108000, 0xc005384, ! 0x0, 0xc005323, 0x0, 0x50400005, ! 0x108042, 0x97a2001a, 0x501025, 0xa7a2001a, ! 0x108042, 0x1600fff7, 0x0, 0xc005384, ! 0x0, 0x3c040002, 0x24848184, 0x97a60018, ! 0x97a7001a, 0x3c020002, 0x8c42850c, 0x3c030002, ! 0x8c638678, 0x3c05000d, 0x34a50205, 0xafa20010, ! 0xc002d3b, 0xafa30014, 0x8f830054, 0x24020004, ! 0x3c010002, 0xac228540, 0x3c010002, 0xac238694, ! 0x10000018, 0x0, 0x8f830054, 0x3c020002, ! 0x8c428694, 0x2463ff9c, 0x431023, 0x2c420064, ! 0x14400010, 0x0, 0x8f820220, 0x24030005, ! 0x3c010002, 0xac238540, 0x3c03f700, 0x431025, ! 0xaf820220, 0x10000007, 0x0, 0x24020006, ! 0x3c010002, 0xac228540, 0x24020011, 0x3c010002, ! 0xac22853c, 0x8fbf0034, 0x8fb20030, 0x8fb1002c, ! 0x8fb00028, 0x3e00008, 0x27bd0038, 0x27bdffd8, ! 0xafb00018, 0x808021, 0xafb1001c, 0x8821, ! 0x32024000, 0x10400013, 0xafbf0020, 0x3c020010, ! 0x2021024, 0x2c420001, 0x21023, 0x30434100, ! 0x3c020001, 0x2021024, 0x14400006, 0x34714000, ! 0x3c020002, 0x2021024, 0x14400002, 0x34716000, ! 0x34714040, 0x2021, 0x2821, 0x10000036, ! 0x2203021, 0x32021000, 0x10400035, 0x2021, ! 0x2821, 0xc0053a6, 0x24060040, 0x24040018, ! 0x2821, 0xc0053a6, 0x24060c00, 0x24040017, ! 0x2821, 0xc0053a6, 0x24060400, 0x24040016, ! 0x2821, 0xc0053a6, 0x24060006, 0x24040017, ! 0x2821, 0xc0053a6, 0x24062500, 0x24040016, ! 0x2821, 0xc0053a6, 0x24060006, 0x24040017, ! 0x2821, 0xc0053a6, 0x24064600, 0x24040016, ! 0x2821, 0xc0053a6, 0x24060006, 0x24040017, ! 0x2821, 0xc0053a6, 0x24066700, 0x24040016, ! 0x2821, 0xc0053a6, 0x24060006, 0x2404001f, ! 0x2821, 0xc0053a6, 0x24060010, 0x24040009, ! 0x2821, 0xc0053a6, 0x24061500, 0x24040009, ! 0x2821, 0x24061d00, 0xc0053a6, 0x0, ! 0x3c040002, 0x248481a8, 0x3c05000e, 0x34a50100, ! 0x2003021, 0x2203821, 0xafa00010, 0xc002d3b, ! 0xafa00014, 0x8fbf0020, 0x8fb1001c, 0x8fb00018, ! 0x3e00008, 0x27bd0028, 0x8f850044, 0x8f820044, ! 0x3c030001, 0x431025, 0x3c030008, 0xaf820044, ! 0x8f840054, 0x8f820054, 0xa32824, 0x10000002, ! 0x24840001, 0x8f820054, 0x821023, 0x2c420002, ! 0x1440fffc, 0x0, 0x8f820044, 0x3c03fffe, ! 0x3463ffff, 0x431024, 0xaf820044, 0x8f830054, ! 0x8f820054, 0x10000002, 0x24630001, 0x8f820054, ! 0x621023, 0x2c420002, 0x1440fffc, 0x0, ! 0x3e00008, 0xa01021, 0x8f830044, 0x3c02fff0, ! 0x3442ffff, 0x42480, 0x621824, 0x3c020002, ! 0x822025, 0x641825, 0xaf830044, 0x8f820044, ! 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820044, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820044, 0x3c030001, 0x431025, ! 0xaf820044, 0x8f830054, 0x8f820054, 0x10000002, ! 0x24630001, 0x8f820054, 0x621023, 0x2c420002, ! 0x1440fffc, 0x0, 0x3e00008, 0x0, ! 0x8f820044, 0x2403ff7f, 0x431024, 0xaf820044, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820044, 0x34420080, 0xaf820044, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x3e00008, 0x0, 0x8f820044, ! 0x3c03fff0, 0x3463ffff, 0x431024, 0xaf820044, ! 0x8f820044, 0x3c030001, 0x431025, 0xaf820044, ! 0x8f830054, 0x8f820054, 0x10000002, 0x24630001, ! 0x8f820054, 0x621023, 0x2c420002, 0x1440fffc, ! 0x0, 0x8f820044, 0x3c03fffe, 0x3463ffff, ! 0x431024, 0xaf820044, 0x8f830054, 0x8f820054, ! 0x10000002, 0x24630001, 0x8f820054, 0x621023, ! 0x2c420002, 0x1440fffc, 0x0, 0x3e00008, ! 0x0, 0x27bdffc8, 0xafb30024, 0x809821, ! 0xafbe002c, 0xa0f021, 0xafb20020, 0xc09021, ! 0x33c2ffff, 0xafbf0030, 0xafb50028, 0xafb1001c, ! 0xafb00018, 0x14400034, 0xa7b20010, 0x3271ffff, ! 0x27b20010, 0x8021, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x2301024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x2301024, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x34108000, 0x96420000, 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x12000075, 0x0, ! 0x1000fff6, 0x0, 0x3275ffff, 0x27b10010, ! 0xa7a00010, 0x8021, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x24040001, 0xc005343, 0x2021, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x2b01024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x2b01024, 0xc005384, 0x34108000, ! 0xc005384, 0x0, 0xc005323, 0x0, 0x50400005, 0x108042, 0x96220000, 0x501025, 0xa6220000, 0x108042, 0x1600fff7, 0x0, ! 0xc005384, 0x0, 0x33c5ffff, 0x24020001, ! 0x54a20004, 0x24020002, 0x97a20010, 0x10000006, ! 0x521025, 0x14a20006, 0x3271ffff, 0x97a20010, ! 0x121827, 0x431024, 0xa7a20010, 0x3271ffff, ! 0x27b20010, 0x8021, 0xc005343, 0x24040001, 0x26100001, 0x2e020020, 0x1440fffb, 0x0, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0xc005343, 0x24040001, 0x24100010, 0x32020001, 0x10400002, 0x2021, ! 0x24040001, 0xc005343, 0x108042, 0x1600fffa, ! 0x32020001, 0x24100010, 0x2301024, 0x10400002, ! 0x2021, 0x24040001, 0xc005343, 0x108042, ! 0x1600fffa, 0x2301024, 0xc005343, 0x24040001, ! 0xc005343, 0x2021, 0x34108000, 0x96420000, 0x501024, 0x10400002, 0x2021, 0x24040001, ! 0xc005343, 0x108042, 0x1600fff8, 0x0, ! 0xc005384, 0x0, 0x8fbf0030, 0x8fbe002c, ! 0x8fb50028, 0x8fb30024, 0x8fb20020, 0x8fb1001c, ! 0x8fb00018, 0x3e00008, 0x27bd0038, 0x27bdffe8, ! 0xafbf0010, 0x8ee304b8, 0x24020008, 0x146201f1, ! 0x0, 0x3c020002, 0x8c428678, 0x14400006, ! 0x0, 0x8f840224, 0xc0042e9, 0x0, ! 0x100001e8, 0x0, 0x8f820220, 0x3c030008, ! 0x431024, 0x10400029, 0x24020001, 0x8f840224, ! 0x8f820220, 0x3c030400, 0x431024, 0x10400007, ! 0x0, 0x3c010002, 0xac20a700, 0x3c010002, ! 0xac20a720, 0x1000000b, 0x0, 0x3c030002, ! 0x2463a700, 0x8c620000, 0x24420001, 0xac620000, ! 0x2c420002, 0x14400003, 0x24020001, 0x3c010002, ! 0xac22a720, 0x3c020002, 0x8c42a720, 0x10400007, ! 0x30820040, 0x10400005, 0x24020001, 0x3c010002, ! 0xac22a724, 0x10000003, 0x0, 0x3c010002, ! 0xac20a724, 0x3c010002, 0xac24a6fc, 0x3c010002, ! 0xac20a730, 0x1000000b, 0x0, 0x3c010002, ! 0xac22a730, 0x3c010002, 0xac20a720, 0x3c010002, ! 0xac20a700, 0x3c010002, 0xac20a724, 0x3c010002, ! 0xac20a6fc, 0x3c030002, 0x8c63a6f0, 0x3c020002, ! 0x8c42a6f4, 0x50620004, 0x2463ffff, 0x3c010002, ! 0xac23a6f4, 0x2463ffff, 0x2c62000e, 0x104001a1, ! 0x31080, 0x3c010002, 0x220821, 0x8c2281c8, ! 0x400008, 0x0, 0x24020002, 0x3c010002, ! 0xac20a720, 0x3c010002, 0xac20a700, 0x3c010002, ! 0xac20a6fc, 0x3c010002, 0xac20a724, 0x3c010002, ! 0xac20a718, 0x3c010002, 0xac20a710, 0xaf800224, ! 0x3c010002, 0xac22a6f0, 0x3c020002, 0x8c42a730, ! 0x14400053, 0x3c02fdff, 0x3442ffff, 0xc0042e9, 0x282a024, 0xaf800204, 0x8f820200, 0x2403fffd, ! 0x431024, 0xaf820200, 0x3c010002, 0xac20a740, ! 0x8f830054, 0x3c020002, 0x8c42a718, 0x24040001, ! 0x3c010002, 0xac24a72c, 0x24420001, 0x3c010002, ! 0xac22a718, 0x2c420004, 0x3c010002, 0xac23a714, ! 0x14400007, 0x24020003, 0x3c010002, 0xac248510, ! 0x3c010002, 0xac20a718, 0x1000016a, 0x0, ! 0x3c010002, 0xac22a6f0, 0x10000166, 0x0, ! 0x8f830054, 0x3c020002, 0x8c42a714, 0x2463d8f0, ! 0x431023, 0x2c422710, 0x14400003, 0x24020004, ! 0x3c010002, 0xac22a6f0, 0x3c020002, 0x8c42a730, ! 0x14400023, 0x3c02fdff, 0x3442ffff, 0x10000155, ! 0x282a024, 0x3c040002, 0x8c84867c, 0x3c010002, ! 0xac20a708, 0xc00565d, 0x0, 0x3c020002, ! 0x8c42a73c, 0xaf820204, 0x3c020002, 0x8c42a730, ! 0x14400013, 0x3c03fdff, 0x8f820204, 0x3463ffff, ! 0x30420030, 0x14400138, 0x283a024, 0x3c030002, ! 0x8c63a73c, 0x24020005, 0x3c010002, 0xac22a6f0, ! 0x3c010002, 0xac23a740, 0x1000013a, 0x0, ! 0x3c020002, 0x8c42a730, 0x10400011, 0x3c02fdff, ! 0x3c020002, 0x8c4285a0, 0x24420001, 0x3c010002, ! 0xac2285a0, 0x2c420002, 0x1440012e, 0x24020001, ! 0x3c010002, 0xac2285a8, 0x3c010002, 0xac2085a0, ! 0x3c010002, 0xac228510, 0x10000126, 0x0, ! 0x3c030002, 0x8c63a720, 0x3442ffff, 0x10600121, ! 0x282a024, 0x3c020002, 0x8c42a6fc, 0x1040011d, ! 0x0, 0x3c010002, 0xac22a728, 0x24020003, ! 0x3c010002, 0xac22a700, 0x100000bd, 0x24020006, ! 0x3c010002, 0xac20a708, 0x8f820204, 0x34420040, ! 0xaf820204, 0x3c020002, 0x8c42a740, 0x24030007, ! 0x3c010002, 0xac23a6f0, 0x34420040, 0x3c010002, ! 0xac22a740, 0x3c020002, 0x8c42a720, 0x10400005, ! 0x0, 0x3c020002, 0x8c42a6fc, 0x104000f7, ! 0x24020002, 0x3c050002, 0x24a5a700, 0x8ca20000, ! 0x2c424e21, 0x104000f1, 0x24020002, 0x3c020002, ! 0x8c42a724, 0x104000f7, 0x2404ffbf, 0x3c020002, ! 0x8c42a6fc, 0x3c030002, 0x8c63a728, 0x441024, ! 0x641824, 0x10430005, 0x24020001, 0x3c010002, ! 0xac22a6f0, 0x100000eb, 0x0, 0x24020003, ! 0xaca20000, 0x24020008, 0x3c010002, 0xac22a6f0, ! 0x3c020002, 0x8c42a72c, 0x1040000d, 0x24020001, ! 0x3c040002, 0x8c84a6fc, 0xc00566a, 0x0, ! 0x3c020002, 0x8c42a748, 0x14400005, 0x24020001, ! 0x3c020002, 0x8c42a744, 0x10400007, 0x24020001, ! 0x3c010002, 0xac228510, 0x3c010002, 0xac20a718, ! 0x100000d0, 0x0, 0x3c020002, 0x8c42a710, ! 0x3c030002, 0x8c63a6fc, 0x2c420001, 0x210c0, ! 0x30630008, 0x3c010002, 0xac22a710, 0x3c010002, ! 0xac23a70c, 0x8f830054, 0x24020009, 0x3c010002, ! 0xac22a6f0, 0x3c010002, 0xac23a714, 0x100000bd, ! 0x0, 0x8f830054, 0x3c020002, 0x8c42a714, ! 0x2463d8f0, 0x431023, 0x2c422710, 0x144000a2, ! 0x0, 0x3c020002, 0x8c42a720, 0x10400005, ! 0x0, 0x3c020002, 0x8c42a6fc, 0x104000a3, ! 0x24020002, 0x3c030002, 0x2463a700, 0x8c620000, ! 0x2c424e21, 0x1040009d, 0x24020002, 0x3c020002, ! 0x8c42a72c, 0x1040000e, 0x0, 0x3c020002, ! 0x8c42a6fc, 0x3c010002, 0xac20a72c, 0x30420080, ! 0x1040002f, 0x2402000c, 0x8f820204, 0x30420080, ! 0x1440000c, 0x24020003, 0x10000029, 0x2402000c, ! 0x3c020002, 0x8c42a6fc, 0x30420080, 0x14400005, ! 0x24020003, 0x8f820204, 0x30420080, 0x1040001f, ! 0x24020003, 0xac620000, 0x2402000a, 0x3c010002, ! 0xac22a6f0, 0x3c040002, 0x2484a738, 0x8c820000, ! 0x3c030002, 0x8c63a710, 0x431025, 0xaf820204, ! 0x8c830000, 0x3c040002, 0x8c84a710, 0x2402000b, ! 0x3c010002, 0xac22a6f0, 0x641825, 0x3c010002, ! 0xac23a740, 0x3c050002, 0x24a5a700, 0x8ca20000, ! 0x2c424e21, 0x10400069, 0x24020002, 0x3c020002, ! 0x8c42a730, 0x10400006, 0x0, 0x2402000c, ! 0x3c010002, 0xac22a6f0, 0x1000006a, 0x0, ! 0x3c020002, 0x8c42a720, 0x10400066, 0x0, ! 0x3c040002, 0x8c84a6fc, 0x10800057, 0x30820008, ! 0x3c030002, 0x8c63a70c, 0x1062005e, 0x24020003, ! 0x3c010002, 0xac24a728, 0xaca20000, 0x24020006, ! 0x3c010002, 0xac22a6f0, 0x10000056, 0x0, ! 0x8f820200, 0x34420002, 0xaf820200, 0x8f830054, ! 0x2402000d, 0x3c010002, 0xac22a6f0, 0x3c010002, ! 0xac23a714, 0x8f830054, 0x3c020002, 0x8c42a714, ! 0x2463d8f0, 0x431023, 0x2c422710, 0x14400032, ! 0x0, 0x3c020002, 0x8c42a730, 0x10400021, ! 0x2402000e, 0x3c030002, 0x8c63a744, 0x3c010002, ! 0xac22a6f0, 0x14600015, 0x0, 0xc0043a7, ! 0x0, 0x3c050002, 0x8ca5850c, 0xc00587d, ! 0x2021, 0x3c030002, 0x8c63850c, 0x24020004, ! 0x14620005, 0x2403fffb, 0x3c020002, 0x8c428508, ! 0x10000003, 0x2403fff7, 0x3c020002, 0x8c428508, ! 0x431024, 0x3c010002, 0xac228508, 0x8f830224, ! 0x3c020200, 0x3c010002, 0xac23a74c, 0x10000021, ! 0x282a025, 0x3c020002, 0x8c42a720, 0x10400005, ! 0x0, 0x3c020002, 0x8c42a6fc, 0x1040000f, ! 0x24020002, 0x3c020002, 0x8c42a700, 0x2c424e21, ! 0x1040000a, 0x24020002, 0x3c020002, 0x8c42a720, ! 0x10400010, 0x0, 0x3c020002, 0x8c42a6fc, ! 0x1440000c, 0x0, 0x24020002, 0x3c010002, ! 0xac22a6f0, 0x10000007, 0x0, 0x3c020002, ! 0x8c42a720, 0x10400003, 0x0, 0xc0042e9, ! 0x0, 0x8f820220, 0x3c03f700, 0x431025, ! 0xaf820220, 0x8fbf0010, 0x3e00008, 0x27bd0018, ! 0x3c030002, 0x2463a748, 0x8c620000, 0x10400005, ! 0x34422000, 0x3c010002, 0xac22a73c, 0x10000003, ! 0xac600000, 0x3c010002, 0xac24a73c, 0x3e00008, ! 0x0, 0x27bdffe0, 0x30820030, 0xafbf0018, ! 0x3c010002, 0xac22a744, 0x1440006b, 0x3c02ffff, ! 0x34421f0e, 0x821024, 0x14400065, 0x24020030, ! 0x30822000, 0x10400061, 0x30838000, 0x31a02, ! 0x30820001, 0x21200, 0x3c040002, 0x8c84867c, ! 0x621825, 0x331c2, 0x3c030002, 0x246385ac, ! 0x30828000, 0x21202, 0x30840001, 0x42200, ! 0x441025, 0x239c2, 0x61080, 0x431021, ! 0x471021, 0x90430000, 0x24020001, 0x10620027, ! 0x0, 0x10600007, 0x24020002, 0x10620014, ! 0x24020003, 0x1062002f, 0x3c05000f, 0x1000003b, ! 0x0, 0x8f820200, 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, ! 0x431024, 0xaf820220, 0x3c010002, 0xac20a764, ! 0x3c010002, 0xac20a76c, 0x10000037, 0x0, ! 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, ! 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820220, ! 0x24020100, 0x3c010002, 0xac22a764, 0x3c010002, ! 0xac20a76c, 0x10000028, 0x0, 0x8f820200, ! 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, ! 0x3c030001, 0x431025, 0xaf820220, 0x3c010002, ! 0xac20a764, 0x3c010002, 0xac23a76c, 0x1000001a, ! 0x0, 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, 0x3c030001, 0x431025, 0xaf820220, ! 0x24020100, 0x3c010002, 0xac22a764, 0x3c010002, ! 0xac23a76c, 0x1000000c, 0x0, 0x34a5ffff, ! 0x3c040002, 0x24848200, 0xafa30010, 0xc002d3b, ! 0xafa00014, 0x10000004, 0x0, 0x24020030, ! 0x3c010002, 0xac22a748, 0x8fbf0018, 0x3e00008, ! 0x27bd0020, 0x27bdffc8, 0xafb20028, 0x809021, ! 0xafb3002c, 0xa09821, 0xafb00020, 0xc08021, ! 0x3c040002, 0x24848228, 0x3c050009, 0x3c020002, ! 0x8c42850c, 0x34a59001, 0x2403021, 0x2603821, ! 0xafbf0030, 0xafb10024, 0xa7a0001a, 0xafb00014, ! 0xc002d3b, 0xafa20010, 0x24020002, 0x12620086, ! 0x2e620003, 0x10400005, 0x24020001, 0x1262000a, ! 0x0, 0x1000017b, 0x0, 0x24020004, ! 0x126200fc, 0x24020008, 0x126200fb, 0x3c02ffec, ! 0x10000174, 0x0, 0x3c020002, 0x8c428508, ! 0x30420002, 0x14400004, 0x128940, 0x3c02fffb, ! 0x3442ffff, 0x2028024, 0x3c010002, 0x310821, ! 0xac30a75c, 0x3c024000, 0x2021024, 0x10400050, ! 0x1023c2, 0x30840030, 0x101382, 0x3042001c, ! 0x3c030002, 0x24638544, 0x431021, 0x823821, ! 0x3c020020, 0x2021024, 0x10400006, 0x24020100, ! 0x3c010002, 0x310821, 0xac22a760, 0x10000005, ! 0x3c020080, 0x3c010002, 0x310821, 0xac20a760, ! 0x3c020080, 0x2021024, 0x10400007, 0x121940, ! 0x3c020001, 0x3c010002, 0x230821, 0xac22a768, ! 0x10000005, 0x0, 0x121140, 0x3c010002, ! 0x220821, 0xac20a768, 0x94e40000, 0x3c030002, ! 0x8c63869c, 0x24020005, 0x10620010, 0xa7a40018, ! 0x32024000, 0x10400002, 0x34824000, 0xa7a20018, 0x24040001, 0x94e20002, 0x24050004, 0x24e60002, ! 0x34420001, 0xc004b82, 0xa4e20002, 0x24040001, ! 0x2821, 0xc004b82, 0x27a60018, 0x3c020002, ! 0x8c42850c, 0x24110001, 0x3c010002, 0xac318518, ! 0x14530004, 0x32028000, 0xc0042e9, 0x0, ! 0x32028000, 0x10400123, 0x0, 0xc0042e9, ! 0x0, 0x3c030002, 0x8c63869c, 0x24020005, ! 0x1062011c, 0x24020002, 0x3c010002, 0xac318510, ! 0x3c010002, 0xac22850c, 0x10000116, 0x0, ! 0x24040001, 0x24050004, 0x27b0001a, 0xc004b82, ! 0x2003021, 0x24040001, 0x2821, 0xc004b82, ! 0x2003021, 0x3c020002, 0x511021, 0x8c42a754, ! 0x3c040002, 0x8c84850c, 0x3c03bfff, 0x3463ffff, ! 0x3c010002, 0xac338518, 0x431024, 0x3c010002, ! 0x310821, 0xac22a754, 0x109300fc, 0x0, ! 0x100000fc, 0x0, 0x3c022000, 0x2021024, ! 0x10400005, 0x24020001, 0x3c010002, 0xac228678, ! 0x10000004, 0x128940, 0x3c010002, 0xac208678, ! 0x128940, 0x3c010002, 0x310821, 0xac30a758, ! 0x3c024000, 0x2021024, 0x14400015, 0x0, ! 0x3c020002, 0x8c428678, 0x10400006, 0x24040004, ! 0x24050001, 0xc0053a6, 0x24062000, 0x24020001, ! 0xaee204b8, 0x3c020002, 0x511021, 0x8c42a750, ! 0x3c03bfff, 0x3463ffff, 0x431024, 0x3c010002, ! 0x310821, 0xac22a750, 0x100000d4, 0x0, ! 0x3c020002, 0x8c428678, 0x10400028, 0x3c0300a0, ! 0x2031024, 0x5443000d, 0x3c020020, 0x3c020002, ! 0x8c42867c, 0x24030100, 0x3c010002, 0x310821, ! 0xac23a764, 0x3c030001, 0x3c010002, 0x310821, ! 0xac23a76c, 0x10000015, 0x34420400, 0x2021024, ! 0x10400008, 0x24030100, 0x3c020002, 0x8c42867c, ! 0x3c010002, 0x310821, 0xac23a764, 0x1000000b, ! 0x34420800, 0x3c020080, 0x2021024, 0x1040002e, ! 0x3c030001, 0x3c020002, 0x8c42867c, 0x3c010002, ! 0x310821, 0xac23a76c, 0x34420c00, 0x3c010002, ! 0xac22867c, 0x10000025, 0x24040001, 0x3c020020, ! 0x2021024, 0x10400006, 0x24020100, 0x3c010002, ! 0x310821, 0xac22a764, 0x10000005, 0x3c020080, ! 0x3c010002, 0x310821, 0xac20a764, 0x3c020080, ! 0x2021024, 0x10400007, 0x121940, 0x3c020001, ! 0x3c010002, 0x230821, 0xac22a76c, 0x10000006, ! 0x24040001, 0x121140, 0x3c010002, 0x220821, ! 0xac20a76c, 0x24040001, 0x2821, 0x27b0001e, ! 0xc004b40, 0x2003021, 0x24040001, 0x2821, ! 0xc004b40, 0x2003021, 0x24040001, 0x24050001, ! 0x27b0001c, 0xc004b40, 0x2003021, 0x24040001, ! 0x24050001, 0xc004b40, 0x2003021, 0x1000007b, ! 0x0, 0x3c02ffec, 0x3442ffff, 0x2028024, ! 0x3c020008, 0x2028025, 0x121140, 0x3c010002, ! 0x220821, 0xac30a758, 0x3c022000, 0x2021024, ! 0x10400009, 0x0, 0x3c020002, 0x8c4285a8, ! 0x14400005, 0x24020001, 0x3c010002, 0xac228678, ! 0x10000004, 0x3c024000, 0x3c010002, 0xac208678, ! 0x3c024000, 0x2021024, 0x1440001d, 0x24020e01, ! 0x3c030002, 0x8c638678, 0xaf820238, 0x3c010002, ! 0xac208524, 0x10600005, 0x24022020, 0x3c010002, ! 0xac22867c, 0x24020001, 0xaee204b8, 0x3c04bfff, ! 0x121940, 0x3c020002, 0x431021, 0x8c42a750, ! 0x3c050002, 0x8ca5850c, 0x3484ffff, 0x441024, ! 0x3c010002, 0x230821, 0xac22a750, 0x24020001, ! 0x10a20048, 0x0, 0x10000044, 0x0, ! 0x3c020002, 0x8c428678, 0x1040001f, 0x24022000, ! 0x3c010002, 0xac22867c, 0x3c0300a0, 0x2031024, ! 0x14430006, 0x121140, 0x3402a000, 0x3c010002, ! 0xac22867c, 0x10000030, 0x0, 0x3c030002, ! 0x621821, 0x8c63a758, 0x3c020020, 0x621024, ! 0x10400005, 0x24022001, 0x3c010002, 0xac22867c, ! 0x10000025, 0x0, 0x3c020080, 0x621024, ! 0x10400021, 0x3402a001, 0x3c010002, 0xac22867c, ! 0x1000001d, 0x0, 0x3c020020, 0x2021024, ! 0x10400007, 0x121940, 0x24020100, 0x3c010002, ! 0x230821, 0xac22a764, 0x10000006, 0x3c020080, ! 0x121140, 0x3c010002, 0x220821, 0xac20a764, ! 0x3c020080, 0x2021024, 0x10400007, 0x121940, ! 0x3c020001, 0x3c010002, 0x230821, 0xac22a76c, ! 0x10000005, 0x0, 0x121140, 0x3c010002, ! 0x220821, 0xac20a76c, 0x3c030002, 0x8c63850c, ! 0x24020001, 0x10620003, 0x0, 0xc0042e9, ! 0x0, 0x8fbf0030, 0x8fb3002c, 0x8fb20028, ! 0x8fb10024, 0x8fb00020, 0x3e00008, 0x27bd0038, ! 0x27bdffb0, 0xafb3003c, 0x9821, 0xafb50040, ! 0xa821, 0xafb10034, 0x8821, 0x24020002, ! 0xafbf0048, 0xafbe0044, 0xafb20038, 0xafb00030, ! 0xafa4002c, 0xa7a0001a, 0xa7a00018, 0xa7a00020, ! 0xa7a0001e, 0xa7a00022, 0x10a20131, 0xa7a0001c, ! 0x2ca20003, 0x10400005, 0x24020001, 0x10a2000a, ! 0x3c024000, 0x1000025f, 0x2201021, 0x24020004, ! 0x10a2020c, 0x24020008, 0x10a2020a, 0x2201021, ! 0x10000258, 0x0, 0x8fa8002c, 0x88140, ! 0x3c030002, 0x701821, 0x8c63a75c, 0x621024, ! 0x14400009, 0x24040001, 0x3c027fff, 0x3442ffff, ! 0x628824, 0x3c010002, 0x300821, 0xac31a754, ! 0x10000248, 0x2201021, 0x24050001, 0xc004b40, ! 0x27a60018, 0x24040001, 0x24050001, 0xc004b40, ! 0x27a60018, 0x97a20018, 0x30420004, 0x104000da, ! 0x3c114000, 0x3c020002, 0x8c42869c, 0x2443ffff, ! 0x2c620006, 0x104000da, 0x31080, 0x3c010002, ! 0x220821, 0x8c228240, 0x400008, 0x0, ! 0x24040001, 0x24050011, 0x27b0001a, 0xc004b40, ! 0x2003021, 0x24040001, 0x24050011, 0xc004b40, ! 0x2003021, 0x97a3001a, 0x30624000, 0x10400002, ! 0x3c150010, 0x3c150008, 0x30628000, 0x104000ab, ! 0x3c130001, 0x100000a9, 0x3c130002, 0x24040001, ! 0x24050014, 0x27b0001a, 0xc004b40, 0x2003021, ! 0x24040001, 0x24050014, 0xc004b40, 0x2003021, ! 0x97a3001a, 0x30621000, 0x10400002, 0x3c150010, ! 0x3c150008, 0x30620800, 0x10400098, 0x3c130001, ! 0x10000096, 0x3c130002, 0x24040001, 0x24050019, ! 0x27b0001c, 0xc004b40, 0x2003021, 0x24040001, ! 0x24050019, 0xc004b40, 0x2003021, 0x97a2001c, ! 0x30430700, 0x24020400, 0x10620027, 0x28620401, ! 0x1040000e, 0x24020200, 0x1062001f, 0x28620201, ! 0x10400005, 0x24020100, 0x5062001e, 0x3c130001, ! 0x1000001e, 0x24040001, 0x24020300, 0x50620019, ! 0x3c130002, 0x10000019, 0x24040001, 0x24020600, ! 0x1062000d, 0x28620601, 0x10400005, 0x24020500, ! 0x5062000b, 0x3c130002, 0x10000010, 0x24040001, ! 0x24020700, 0x1462000d, 0x24040001, 0x3c130004, ! 0x1000000a, 0x3c150008, 0x10000006, 0x3c130004, ! 0x10000005, 0x3c150008, 0x3c130001, 0x10000002, ! 0x3c150008, 0x3c150010, 0x24040001, 0x24050018, ! 0x27b0001e, 0xc004b40, 0x2003021, 0x24040001, ! 0x24050018, 0xc004b40, 0x2003021, 0x8fa8002c, ! 0x97a7001e, 0x81140, 0x3c060002, 0xc23021, ! 0x8cc6a754, 0x97a20022, 0x3c100002, 0x26108234, ! 0x2002021, 0xafa20010, 0x97a2001c, 0x3c05000c, ! 0x34a50303, 0xc002d3b, 0xafa20014, 0x3c020004, ! 0x16620010, 0x3c020001, 0x8f840054, 0x24030001, ! 0x24020002, 0x3c010002, 0xac238510, 0x3c010002, ! 0xac22850c, 0x3c010002, 0xac238518, 0x3c010002, ! 0xac238590, 0x3c010002, 0xac24868c, 0x10000050, ! 0x2b38825, 0x1662003a, 0x3c028000, 0x3c020002, ! 0x8c42858c, 0x1440001f, 0x24040018, 0x2021, ! 0x2821, 0xc0053a6, 0x34068000, 0x8f830054, ! 0x8f820054, 0x2b38825, 0x10000002, 0x24630032, ! 0x8f820054, 0x621023, 0x2c420033, 0x1440fffc, ! 0x0, 0x8f830054, 0x24020001, 0x3c010002, ! 0xac22858c, 0x3c010002, 0xac228510, 0x3c010002, ! 0xac22850c, 0x3c010002, 0xac228518, 0x3c010002, ! 0xac228590, 0x3c010002, 0xac23868c, 0x1000002c, ! 0x0, 0x2821, 0xc0053a6, 0x24060404, ! 0x2021, 0x2405001e, 0x27a60018, 0x24020002, ! 0xc004b82, 0xa7a20018, 0x2021, 0x2821, ! 0x27a60018, 0xc004b82, 0xa7a00018, 0x24040018, ! 0x24050002, 0xc0053a6, 0x24060004, 0x3c028000, ! 0x2221025, 0x2b31825, 0x10000015, 0x438825, ! 0x2221025, 0x2751825, 0x438825, 0x2002021, ! 0x97a6001c, 0x3c070002, 0x8ce7850c, 0x3c05000c, ! 0x34a50326, 0xafb30010, 0xc002d3b, 0xafb10014, ! 0x10000007, 0x0, 0x3c110002, 0x2308821, ! 0x8e31a75c, 0x3c027fff, 0x3442ffff, 0x2228824, ! 0x3c020002, 0x8c42851c, 0x1040001e, 0x0, ! 0x3c020002, 0x8c428678, 0x10400002, 0x3c022000, ! 0x2228825, 0x8fa8002c, 0x81140, 0x3c010002, ! 0x220821, 0x8c22a760, 0x10400003, 0x3c020020, ! 0x10000005, 0x2228825, 0x3c02ffdf, 0x3442ffff, ! 0x2228824, 0x8fa8002c, 0x81140, 0x3c010002, ! 0x220821, 0x8c22a768, 0x10400003, 0x3c020080, ! 0x10000004, 0x2228825, 0x3c02ff7f, 0x3442ffff, ! 0x2228824, 0x8fa8002c, 0x81140, 0x3c010002, ! 0x220821, 0xac31a754, 0x10000136, 0x2201021, ! 0x8fa8002c, 0x8f140, 0x3c030002, 0x7e1821, ! 0x8c63a758, 0x3c024000, 0x621024, 0x14400009, ! 0x24040001, 0x3c027fff, 0x3442ffff, 0x628824, ! 0x3c010002, 0x3e0821, 0xac31a750, 0x10000125, ! 0x2201021, 0x2821, 0xc004b40, 0x27a60018, ! 0x24040001, 0x2821, 0xc004b40, 0x27a60018, ! 0x24040001, 0x24050001, 0x27b20020, 0xc004b40, ! 0x2403021, 0x24040001, 0x24050001, 0xc004b40, ! 0x2403021, 0x24040001, 0x24050004, 0x27b1001e, ! 0xc004b40, 0x2203021, 0x24040001, 0x24050004, ! 0xc004b40, 0x2203021, 0x24040001, 0x24050005, ! 0x27b00022, 0xc004b40, 0x2003021, 0x24040001, ! 0x24050005, 0xc004b40, 0x2003021, 0x24040001, ! 0x24050010, 0xc004b40, 0x27a60018, 0x24040001, ! 0x24050010, 0xc004b40, 0x27a60018, 0x24040001, ! 0x2405000a, 0xc004b40, 0x2403021, 0x24040001, ! 0x2405000a, 0xc004b40, 0x2403021, 0x24040001, ! 0x24050018, 0xc004b40, 0x2203021, 0x24040001, ! 0x24050018, 0xc004b40, 0x2203021, 0x24040001, ! 0x24050001, 0xc004b40, 0x27a60018, 0x24040001, ! 0x24050001, 0xc004b40, 0x27a60018, 0x97a20018, ! 0x30420004, 0x10400067, 0x3c114000, 0x3c030002, ! 0x8c638690, 0x24020005, 0x14620068, 0x24040001, ! 0x24050019, 0x27b0001c, 0xc004b40, 0x2003021, ! 0x24040001, 0x24050019, 0xc004b40, 0x2003021, ! 0x97a2001c, 0x30430700, 0x24020400, 0x10620027, ! 0x28620401, 0x1040000e, 0x24020200, 0x1062001f, ! 0x28620201, 0x10400005, 0x24020100, 0x5062001e, ! 0x3c130001, 0x1000001e, 0x3c020004, 0x24020300, ! 0x50620019, 0x3c130002, 0x10000019, 0x3c020004, ! 0x24020600, 0x1062000d, 0x28620601, 0x10400005, ! 0x24020500, 0x5062000b, 0x3c130002, 0x10000010, ! 0x3c020004, 0x24020700, 0x1462000d, 0x3c020004, ! 0x3c130004, 0x1000000a, 0x3c150008, 0x10000006, ! 0x3c130004, 0x10000005, 0x3c150008, 0x3c130001, ! 0x10000002, 0x3c150008, 0x3c150010, 0x3c020004, ! 0x12620018, 0x3c028000, 0x8f820054, 0x24100001, ! 0x3c010002, 0xac308510, 0x3c010002, 0xac30850c, ! 0x3c010002, 0xac308518, 0x3c010002, 0xac308590, ! 0x3c010002, 0xac22868c, 0x3c020001, 0x16620023, ! 0x2758825, 0x2021, 0x2821, 0xc0053a6, ! 0x34068000, 0x3c010002, 0xac30858c, 0x1000001b, ! 0x0, 0x2221025, 0x2b31825, 0x438825, ! 0x97a6001c, 0x3c020002, 0x8c428678, 0x3c070002, ! 0x8ce7850c, 0x3c040002, 0x24848234, 0xafa20010, ! 0x97a2001e, 0x3c05000c, 0x34a50323, 0x3c010002, ! 0xac20858c, 0xc002d3b, 0xafa20014, 0x10000007, ! 0x0, 0x3c110002, 0x23e8821, 0x8e31a750, ! 0x3c027fff, 0x3442ffff, 0x2228824, 0x3c020002, ! 0x8c42851c, 0x10400069, 0x0, 0x3c020002, ! 0x8c428678, 0x10400002, 0x3c022000, 0x2228825, ! 0x8fa8002c, 0x81140, 0x3c010002, 0x220821, ! 0x8c22a764, 0x10400003, 0x3c020020, 0x10000005, ! 0x2228825, 0x3c02ffdf, 0x3442ffff, 0x2228824, ! 0x8fa8002c, 0x81140, 0x3c010002, 0x220821, ! 0x8c22a76c, 0x10400003, 0x3c020080, 0x1000004f, ! 0x2228825, 0x3c02ff7f, 0x3442ffff, 0x1000004b, ! 0x2228824, 0x8fa8002c, 0x82940, 0x3c030002, ! 0x651821, 0x8c63a758, 0x3c024000, 0x621024, ! 0x14400008, 0x3c027fff, 0x3442ffff, 0x628824, ! 0x3c010002, 0x250821, 0xac31a750, 0x10000041, ! 0x2201021, 0x3c020002, 0x8c42851c, 0x10400034, ! 0x3c11c00c, 0x3c020002, 0x8c4285a8, 0x3c04c00c, ! 0x34842000, 0x3c030002, 0x8c638678, 0x2102b, ! 0x21023, 0x441024, 0x10600003, 0x518825, ! 0x3c022000, 0x2228825, 0x3c020002, 0x451021, ! 0x8c42a764, 0x10400003, 0x3c020020, 0x10000004, ! 0x2228825, 0x3c02ffdf, 0x3442ffff, 0x2228824, ! 0x8fa8002c, 0x81140, 0x3c010002, 0x220821, ! 0x8c22a76c, 0x10400003, 0x3c020080, 0x10000004, ! 0x2228825, 0x3c02ff7f, 0x3442ffff, 0x2228824, ! 0x3c020002, 0x8c428594, 0x10400002, 0x3c020800, ! 0x2228825, 0x3c020002, 0x8c428598, 0x10400002, ! 0x3c020400, 0x2228825, 0x3c020002, 0x8c42859c, ! 0x10400006, 0x3c020100, 0x10000004, 0x2228825, ! 0x3c027fff, 0x3442ffff, 0x628824, 0x8fa8002c, ! 0x81140, 0x3c010002, 0x220821, 0xac31a750, ! 0x2201021, 0x8fbf0048, 0x8fbe0044, 0x8fb50040, ! 0x8fb3003c, 0x8fb20038, 0x8fb10034, 0x8fb00030, ! 0x3e00008, 0x27bd0050, 0x27bdffd0, 0xafb20028, ! 0x809021, 0xafbf002c, 0xafb10024, 0xafb00020, ! 0x8f840200, 0x3c100002, 0x8e10850c, 0x8f860220, ! 0x24020002, 0x1202005e, 0x2e020003, 0x10400005, ! 0x24020001, 0x1202000a, 0x121940, 0x10000114, ! 0x0, 0x24020004, 0x120200c6, 0x24020008, ! 0x120200c5, 0x128940, 0x1000010d, 0x0, ! 0x3c050002, 0xa32821, 0x8ca5a75c, 0x3c100002, ! 0x2038021, 0x8e10a754, 0x3c024000, 0xa21024, 0x10400038, 0x3c020008, 0x2021024, 0x10400020, ! 0x34840002, 0x3c020002, 0x431021, 0x8c42a760, 0x10400005, 0x34840020, 0x34840100, 0x3c020020, 0x10000006, 0x2028025, 0x2402feff, 0x822024, 0x3c02ffdf, 0x3442ffff, 0x2028024, 0x121140, ! 0x3c010002, 0x220821, 0x8c22a768, 0x10400005, 0x3c020001, 0xc23025, 0x3c020080, 0x10000016, 0x2028025, 0x3c02fffe, 0x3442ffff, 0xc23024, 0x3c02ff7f, 0x3442ffff, 0x1000000f, 0x2028024, 0x2402fedf, 0x822024, 0x3c02fffe, 0x3442ffff, 0xc23024, 0x3c02ff5f, 0x3442ffff, 0x2028024, ! 0x3c010002, 0x230821, 0xac20a760, 0x3c010002, ! 0x230821, 0xac20a768, 0xaf840200, 0xaf860220, ! 0x8f820220, 0x34420002, 0xaf820220, 0x1000000b, 0x121140, 0x3c02bfff, 0x3442ffff, 0x8f830200, ! 0x2028024, 0x2402fffd, 0x621824, 0xaf830200, ! 0xc0042e9, 0x0, 0x121140, 0x3c010002, ! 0x220821, 0xac30a754, 0x100000bd, 0x0, ! 0x3c020002, 0x8c428678, 0x1040006e, 0x24050004, ! 0x24040001, 0xc004b40, 0x27a60018, 0x24040001, ! 0x24050005, 0xc004b40, 0x27a6001a, 0x97a30018, ! 0x97a2001a, 0x3c040002, 0x248485ac, 0x30630c00, ! 0x31a82, 0x30420c00, 0x21282, 0xa7a2001a, ! 0x21080, 0x441021, 0x431021, 0xa7a30018, ! 0x90480000, 0x24020001, 0x3103ffff, 0x1062002b, ! 0x28620002, 0x10400005, 0x0, 0x10600009, ! 0x0, 0x10000041, 0x0, 0x10700014, ! 0x24020003, 0x1062002f, 0x0, 0x1000003b, ! 0x0, 0x8f820200, 0x2403feff, 0x431024, ! 0xaf820200, 0x8f820220, 0x3c03fffe, 0x3463ffff, ! 0x431024, 0xaf820220, 0x3c010002, 0xac20a764, ! 0x3c010002, 0xac20a76c, 0x10000035, 0x0, ! 0x8f820200, 0x34420100, 0xaf820200, 0x8f820220, ! 0x3c03fffe, 0x3463ffff, 0x431024, 0xaf820220, ! 0x24020100, 0x3c010002, 0xac22a764, 0x3c010002, ! 0xac20a76c, 0x10000026, 0x0, 0x8f820200, ! 0x2403feff, 0x431024, 0xaf820200, 0x8f820220, ! 0x3c030001, 0x431025, 0xaf820220, 0x3c010002, ! 0xac20a764, 0x3c010002, 0xac23a76c, 0x10000018, ! 0x0, 0x8f820200, 0x34420100, 0xaf820200, ! 0x8f820220, 0x3c030001, 0x431025, 0xaf820220, ! 0x24020100, 0x3c010002, 0xac22a764, 0x3c010002, ! 0xac23a76c, 0x1000000a, 0x0, 0x3c040002, ! 0x24848258, 0x97a6001a, 0x97a70018, 0x3c050001, ! 0x34a5ffff, 0xafa80010, 0xc002d3b, 0xafa00014, ! 0x8f820200, 0x34420002, 0xaf820200, 0x1000004c, ! 0x0, 0x128940, 0x3c050002, 0xb12821, ! 0x8ca5a758, 0x3c100002, 0x2118021, 0x8e10a750, ! 0x3c024000, 0xa21024, 0x14400011, 0x0, ! 0x3c020002, 0x8c428678, 0x14400005, 0x3c02bfff, ! 0x8f820200, 0x34420002, 0xaf820200, 0x3c02bfff, ! 0x3442ffff, 0xc0042e9, 0x2028024, 0x3c010002, ! 0x310821, 0xac30a750, 0x10000031, 0x0, ! 0x3c020002, 0x8c428678, 0x10400005, 0x3c020020, ! 0x3c020002, 0x8c4285a8, 0x10400025, 0x3c020020, 0xa21024, 0x10400007, 0x34840020, 0x24020100, ! 0x3c010002, 0x310821, 0xac22a764, 0x10000006, ! 0x34840100, 0x3c010002, 0x310821, 0xac20a764, 0x2402feff, 0x822024, 0x3c020080, 0xa21024, ! 0x10400007, 0x121940, 0x3c020001, 0x3c010002, ! 0x230821, 0xac22a76c, 0x10000008, 0xc23025, ! 0x121140, 0x3c010002, 0x220821, 0xac20a76c, 0x3c02fffe, 0x3442ffff, 0xc23024, 0xaf840200, 0xaf860220, 0x8f820220, 0x34420002, 0xaf820220, ! 0x121140, 0x3c010002, 0x220821, 0xac30a750, ! 0x8fbf002c, 0x8fb20028, 0x8fb10024, 0x8fb00020, ! 0x3e00008, 0x27bd0030, 0x1821, 0x308400ff, ! 0x2405ffdf, 0x2406ffbf, 0x641007, 0x30420001, ! 0x10400004, 0x0, 0x8f820044, 0x10000003, ! 0x34420040, 0x8f820044, 0x461024, 0xaf820044, ! 0x8f820044, 0x34420020, 0xaf820044, 0x8f820044, ! 0x451024, 0xaf820044, 0x24630001, 0x28620008, ! 0x5440ffee, 0x641007, 0x3e00008, 0x0, ! 0x2c820008, 0x1040001b, 0x0, 0x2405ffdf, ! 0x2406ffbf, 0x41880, 0x3c020002, 0x244285bc, ! 0x621821, 0x24640004, 0x90620000, 0x10400004, ! 0x0, 0x8f820044, 0x10000003, 0x34420040, ! 0x8f820044, 0x461024, 0xaf820044, 0x8f820044, ! 0x34420020, 0xaf820044, 0x8f820044, 0x451024, ! 0xaf820044, 0x24630001, 0x64102b, 0x1440ffee, ! 0x0, 0x3e00008, 0x0, 0x0 }; static u_int32_t tigon2FwRodata[] = { 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, *************** *** 3930,3943 **** 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x6261644d, 0x656d537a, 0x0, 0x68775665, ! 0x72000000, 0x62616448, 0x77566572, 0x0, ! 0x2a2a4441, 0x574e5f41, 0x0, 0x74785278, ! 0x4266537a, 0x0, 0x62664174, 0x6e4d726b, ! 0x0, 0x7265645a, 0x6f6e6531, 0x0, ! 0x70636943, 0x6f6e6600, 0x67656e43, 0x6f6e6600, ! 0x2a646d61, 0x5244666c, 0x0, 0x2a50414e, 0x49432a00, 0x66776d61, 0x696e2e63, 0x0, 0x72636246, 0x6c616773, 0x0, 0x62616452, 0x78526362, 0x0, 0x676c6f62, 0x466c6773, 0x0, 0x2b5f6469, 0x73705f6c, 0x6f6f7000, --- 4921,4934 ---- 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x6261644d, 0x656d537a, 0x0, 0x2a50414e, 0x49432a00, 0x66776d61, 0x696e2e63, 0x0, + 0x68775665, 0x72000000, 0x62616448, 0x77566572, + 0x0, 0x2a2a4441, 0x574e5f41, 0x0, + 0x74785278, 0x4266537a, 0x0, 0x62664174, + 0x6e4d726b, 0x0, 0x7265645a, 0x6f6e6531, + 0x0, 0x70636943, 0x6f6e6600, 0x67656e43, + 0x6f6e6600, 0x2a646d61, 0x5244666c, 0x0, 0x72636246, 0x6c616773, 0x0, 0x62616452, 0x78526362, 0x0, 0x676c6f62, 0x466c6773, 0x0, 0x2b5f6469, 0x73705f6c, 0x6f6f7000, *************** *** 3982,3987 **** --- 4973,4979 ---- 0x72784264, 0x4266537a, 0x0, 0x2b6e756c, 0x6c5f6861, 0x6e646c65, 0x72000000, 0x66774f70, 0x4661696c, 0x0, 0x2b685f75, 0x70646174, + 0x655f6c65, 0x64340000, 0x2b685f75, 0x70646174, 0x655f6c65, 0x64360000, 0x2b685f75, 0x70646174, 0x655f6c65, 0x64320000, 0x696e7453, 0x74617465, 0x0, 0x2a2a696e, 0x69744370, 0x0, *************** *** 4004,4108 **** 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x542d446d, 0x61526432, 0x0, 0x542d446d, ! 0x61526431, 0x0, 0x542d446d, 0x61526442, ! 0x0, 0x542d446d, 0x61577232, 0x0, ! 0x542d446d, 0x61577231, 0x0, 0x542d446d, ! 0x61577242, 0x0, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f636f, 0x6d6d616e, ! 0x642e632c, 0x7620312e, 0x312e322e, 0x32382031, ! 0x3939392f, 0x30312f32, 0x30203139, 0x3a34393a, ! 0x34392073, 0x6875616e, 0x67204578, 0x70202400, ! 0x65767452, 0x6e674600, 0x51657674, 0x46000000, ! 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, ! 0x0, 0x4d516576, 0x74460000, 0x4d516576, ! 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, ! 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x3f48636d, 0x644d6278, 0x0, 0x3f636d64, ! 0x48737453, 0x0, 0x3f636d64, 0x4d634d64, ! 0x0, 0x3f636d64, 0x50726f6d, 0x0, ! 0x3f636d64, 0x4c696e6b, 0x0, 0x3f636d64, ! 0x45727200, 0x81fc, 0x89ac, 0x89ac, ! 0x8934, 0x86c8, 0x8980, 0x89ac, ! 0x82e0, 0x8350, 0x84e0, 0x85b8, ! 0x8584, 0x89ac, 0x83c0, 0x8674, ! 0x89ac, 0x8684, 0x8304, 0x8374, ! 0x0, 0x0, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f6d63, 0x6173742e, ! 0x632c7620, 0x312e312e, 0x322e3820, 0x31393938, ! 0x2f31322f, 0x30382030, 0x323a3336, 0x3a333620, ! 0x73687561, 0x6e672045, 0x78702024, 0x0, ! 0x65767452, 0x6e674600, 0x51657674, 0x46000000, ! 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, ! 0x0, 0x4d516576, 0x74460000, 0x4d516576, ! 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, ! 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x6164644d, 0x63447570, 0x0, 0x6164644d, ! 0x6346756c, 0x0, 0x64656c4d, 0x634e6f45, ! 0x0, 0x0, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f646d, 0x612e632c, ! 0x7620312e, 0x312e322e, 0x32342031, 0x3939382f, ! 0x31322f32, 0x31203030, 0x3a33333a, 0x30392073, ! 0x6875616e, 0x67204578, 0x70202400, 0x65767452, 0x6e674600, 0x51657674, 0x46000000, 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, ! 0x6e734600, 0x51725072, 0x6f644600, 0x7377446d, ! 0x614f6666, 0x0, 0x31446d61, 0x4f6e0000, ! 0x7377446d, 0x614f6e00, 0x2372446d, 0x6141544e, ! 0x0, 0x72446d61, 0x41544e30, 0x0, ! 0x72446d61, 0x41544e31, 0x0, 0x72446d61, ! 0x34476200, 0x2a50414e, 0x49432a00, 0x646d612e, ! 0x63000000, 0x2377446d, 0x6141544e, 0x0, ! 0x77446d61, 0x41544e30, 0x0, 0x77446d61, ! 0x41544e31, 0x0, 0x77446d61, 0x34476200, ! 0x0, 0x0, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f7472, 0x6163652e, ! 0x632c7620, 0x312e312e, 0x322e3520, 0x31393938, ! 0x2f30392f, 0x33302031, 0x383a3530, 0x3a323820, ! 0x73687561, 0x6e672045, 0x78702024, 0x0, ! 0x0, 0x0, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f6461, 0x74612e63, ! 0x2c762031, 0x2e312e32, 0x2e313220, 0x31393939, ! 0x2f30312f, 0x32302031, 0x393a3439, 0x3a353120, ! 0x73687561, 0x6e672045, 0x78702024, 0x0, ! 0x46575f56, 0x45525349, 0x4f4e3a20, 0x58585800, ! 0x46575f43, 0x4f4d5049, 0x4c455f54, 0x494d453a, ! 0x20585858, 0x0, 0x46575f43, 0x4f4d5049, ! 0x4c455f42, 0x593a2058, 0x58580000, 0x46575f43, ! 0x4f4d5049, 0x4c455f48, 0x4f53543a, 0x20585858, ! 0x0, 0x46575f43, 0x4f4d5049, 0x4c455f44, ! 0x4f4d4149, 0x4e3a2058, 0x58580000, 0x46575f43, ! 0x4f4d5049, 0x4c45523a, 0x20585858, 0x0, ! 0x0, 0x12032100, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f6d65, 0x6d2e632c, ! 0x7620312e, 0x312e322e, 0x35203139, 0x39382f30, ! 0x392f3330, 0x2031383a, 0x35303a30, 0x38207368, ! 0x75616e67, 0x20457870, 0x20240000, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f7365, 0x6e642e63, ! 0x2c762031, 0x2e312e32, 0x2e343420, 0x31393938, ! 0x2f31322f, 0x32312030, 0x303a3333, 0x3a313820, ! 0x73687561, 0x6e672045, 0x78702024, 0x0, 0x65767452, 0x6e674600, 0x51657674, 0x46000000, 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, 0x69736e74, 0x54637055, 0x0, 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, --- 4996,5100 ---- 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x2a50414e, 0x49432a00, 0x6d61632e, 0x68000000, ! 0x74696d65, 0x722e6300, 0x542d446d, 0x61526432, ! 0x0, 0x542d446d, 0x61526431, 0x0, ! 0x542d446d, 0x61526442, 0x0, 0x542d446d, ! 0x61577232, 0x0, 0x542d446d, 0x61577231, ! 0x0, 0x542d446d, 0x61577242, 0x0, ! 0x0, 0x24486561, 0x6465723a, 0x202f7072, ! 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, ! 0x2f2e2f6e, 0x69632f66, 0x77322f63, 0x6f6d6d6f, ! 0x6e2f636f, 0x6d6d616e, 0x642e632c, 0x7620312e, ! 0x312e322e, 0x32382031, 0x3939392f, 0x30312f32, ! 0x30203139, 0x3a34393a, 0x34392073, 0x6875616e, ! 0x67204578, 0x70202400, 0x65767452, 0x6e674600, ! 0x51657674, 0x46000000, 0x51657674, 0x505f4600, ! 0x4d657674, 0x526e6746, 0x0, 0x4d516576, ! 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, ! 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, ! 0x51725072, 0x6f644600, 0x3f48636d, 0x644d6278, ! 0x0, 0x3f636d64, 0x48737453, 0x0, ! 0x3f636d64, 0x4d634d64, 0x0, 0x3f636d64, ! 0x50726f6d, 0x0, 0x3f636d64, 0x4c696e6b, ! 0x0, 0x3f636d64, 0x45727200, 0x8b08, ! 0x92e4, 0x92e4, 0x9264, 0x8ff4, ! 0x92b8, 0x92e4, 0x8bf4, 0x8c64, ! 0x8df8, 0x8ee0, 0x8ea8, 0x92e4, ! 0x8cd4, 0x8fa0, 0x92e4, 0x8fb0, ! 0x8c18, 0x8c88, 0x24486561, 0x6465723a, ! 0x202f7072, 0x6f6a6563, 0x74732f72, 0x63732f73, ! 0x772f6765, 0x2f2e2f6e, 0x69632f66, 0x77322f63, ! 0x6f6d6d6f, 0x6e2f6d63, 0x6173742e, 0x632c7620, ! 0x312e312e, 0x322e3820, 0x31393938, 0x2f31322f, ! 0x30382030, 0x323a3336, 0x3a333620, 0x73687561, ! 0x6e672045, 0x78702024, 0x0, 0x65767452, 0x6e674600, 0x51657674, 0x46000000, 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, ! 0x6e734600, 0x51725072, 0x6f644600, 0x6164644d, ! 0x63447570, 0x0, 0x6164644d, 0x6346756c, ! 0x0, 0x64656c4d, 0x634e6f45, 0x0, ! 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, ! 0x74732f72, 0x63732f73, 0x772f6765, 0x2f2e2f6e, ! 0x69632f66, 0x77322f63, 0x6f6d6d6f, 0x6e2f646d, ! 0x612e632c, 0x7620312e, 0x312e322e, 0x32342031, ! 0x3939382f, 0x31322f32, 0x31203030, 0x3a33333a, ! 0x30392073, 0x6875616e, 0x67204578, 0x70202400, 0x65767452, 0x6e674600, 0x51657674, 0x46000000, 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, + 0x7377446d, 0x614f6666, 0x0, 0x31446d61, + 0x4f6e0000, 0x7377446d, 0x614f6e00, 0x2a50414e, + 0x49432a00, 0x646d612e, 0x63000000, 0x2372446d, + 0x6141544e, 0x0, 0x72446d61, 0x41544e30, + 0x0, 0x72446d61, 0x41544e31, 0x0, + 0x72446d61, 0x34476200, 0x2377446d, 0x6141544e, + 0x0, 0x77446d61, 0x41544e30, 0x0, + 0x77446d61, 0x41544e31, 0x0, 0x77446d61, + 0x34476200, 0x24486561, 0x6465723a, 0x202f7072, + 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, + 0x2f2e2f6e, 0x69632f66, 0x77322f63, 0x6f6d6d6f, + 0x6e2f7472, 0x6163652e, 0x632c7620, 0x312e312e, + 0x322e3520, 0x31393938, 0x2f30392f, 0x33302031, + 0x383a3530, 0x3a323820, 0x73687561, 0x6e672045, + 0x78702024, 0x0, 0x24486561, 0x6465723a, + 0x202f7072, 0x6f6a6563, 0x74732f72, 0x63732f73, + 0x772f6765, 0x2f2e2f6e, 0x69632f66, 0x77322f63, + 0x6f6d6d6f, 0x6e2f6461, 0x74612e63, 0x2c762031, + 0x2e312e32, 0x2e313220, 0x31393939, 0x2f30312f, + 0x32302031, 0x393a3439, 0x3a353120, 0x73687561, + 0x6e672045, 0x78702024, 0x0, 0x46575f56, + 0x45525349, 0x4f4e3a20, 0x58585800, 0x46575f43, + 0x4f4d5049, 0x4c455f54, 0x494d453a, 0x20585858, + 0x0, 0x46575f43, 0x4f4d5049, 0x4c455f42, + 0x593a2058, 0x58580000, 0x46575f43, 0x4f4d5049, + 0x4c455f48, 0x4f53543a, 0x20585858, 0x0, + 0x46575f43, 0x4f4d5049, 0x4c455f44, 0x4f4d4149, + 0x4e3a2058, 0x58580000, 0x46575f43, 0x4f4d5049, + 0x4c45523a, 0x20585858, 0x0, 0x0, + 0x12041100, 0x24486561, 0x6465723a, 0x202f7072, + 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, + 0x2f2e2f6e, 0x69632f66, 0x77322f63, 0x6f6d6d6f, + 0x6e2f6d65, 0x6d2e632c, 0x7620312e, 0x312e322e, + 0x35203139, 0x39382f30, 0x392f3330, 0x2031383a, + 0x35303a30, 0x38207368, 0x75616e67, 0x20457870, + 0x20240000, 0x24486561, 0x6465723a, 0x202f7072, + 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, + 0x2f2e2f6e, 0x69632f66, 0x77322f63, 0x6f6d6d6f, + 0x6e2f7365, 0x6e642e63, 0x2c762031, 0x2e312e32, + 0x2e343420, 0x31393938, 0x2f31322f, 0x32312030, + 0x303a3333, 0x3a313820, 0x73687561, 0x6e672045, + 0x78702024, 0x0, 0x65767452, 0x6e674600, + 0x51657674, 0x46000000, 0x51657674, 0x505f4600, + 0x4d657674, 0x526e6746, 0x0, 0x4d516576, + 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, + 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, + 0x51725072, 0x6f644600, 0x2a50414e, 0x49432a00, + 0x6d61632e, 0x68000000, 0x73656e64, 0x2e630000, 0x69736e74, 0x54637055, 0x0, 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, *************** *** 4115,4199 **** 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, 0x724d6163, 0x43686b30, 0x0, 0x72784672, 0x6d324c67, 0x0, 0x72784e6f, 0x53744264, 0x0, 0x72784e6f, 0x4d694264, 0x0, ! 0x72784e6f, 0x4a6d4264, 0x0, 0x7278436b, ! 0x446d6146, 0x0, 0x72785144, 0x6d457846, ! 0x0, 0x72785144, 0x6d614600, 0x72785144, ! 0x4c426446, 0x0, 0x72785144, 0x6d426446, ! 0x0, 0x72784372, 0x63506164, 0x0, ! 0x72536d51, 0x446d6146, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f6d61, 0x632e632c, ! 0x7620312e, 0x312e322e, 0x32322031, 0x3939382f, ! 0x31322f30, 0x38203032, 0x3a33363a, 0x33302073, ! 0x6875616e, 0x67204578, 0x70202400, 0x65767452, ! 0x6e674600, 0x51657674, 0x46000000, 0x51657674, ! 0x505f4600, 0x4d657674, 0x526e6746, 0x0, ! 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, ! 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, ! 0x6e734600, 0x51725072, 0x6f644600, 0x6d616354, ! 0x68726573, 0x0, 0x23744d61, 0x6341544e, ! 0x0, 0x23724d61, 0x6341544e, 0x0, ! 0x72656d41, 0x73737274, 0x0, 0x6c696e6b, 0x444f574e, 0x0, 0x6c696e6b, 0x55500000, ! 0x0, 0x0, 0x0, 0x24486561, ! 0x6465723a, 0x202f7072, 0x6f6a6563, 0x74732f72, ! 0x63732f73, 0x772f6765, 0x2f2e2f6e, 0x69632f66, ! 0x77322f63, 0x6f6d6d6f, 0x6e2f636b, 0x73756d2e, ! 0x632c7620, 0x312e312e, 0x322e3920, 0x31393939, ! 0x2f30312f, 0x31342030, 0x303a3033, 0x3a343820, ! 0x73687561, 0x6e672045, 0x78702024, 0x0, ! 0x65767452, 0x6e674600, 0x51657674, 0x46000000, ! 0x51657674, 0x505f4600, 0x4d657674, 0x526e6746, ! 0x0, 0x4d516576, 0x74460000, 0x4d516576, ! 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, ! 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, ! 0x0, 0x0, 0x0, 0x50726f62, ! 0x65506879, 0x0, 0x6c6e6b41, 0x53535254, ! 0x0, 0x102b8, 0x102e8, 0x10300, ! 0x1032c, 0x10358, 0x1036c, 0x103a8, ! 0x10748, 0x10528, 0x10560, 0x10458, ! 0x105b4, 0x105dc, 0x10610, 0x1049c, ! 0x10748, 0x10528, 0x10560, 0x10584, ! 0x105b4, 0x105dc, 0x10610, 0x1063c, ! 0x0, 0x0, 0x0, 0x10d2c, ! 0x10dfc, 0x10ed4, 0x1110c, 0x11168, ! 0x11244, 0x1126c, 0x11348, 0x11370, ! 0x11518, 0x11540, 0x116e8, 0x118e0, ! 0x11b74, 0x11a88, 0x11b74, 0x11ba0, ! 0x11710, 0x118b8, 0x0, 0x11eac, ! 0x11eec, 0x11f7c, 0x11fc0, 0x12024, ! 0x120b0, 0x120e4, 0x1216c, 0x12204, ! 0x122d4, 0x12314, 0x12398, 0x123bc, ! 0x124cc, 0x646f4261, 0x73655067, 0x0, ! 0x0, 0x0, 0x0, 0x73746d61, ! 0x634c4e4b, 0x0, 0x0, 0x0 }; static u_int32_t tigon2FwData[] = { 0x1, 0x1, 0x1, 0xc001fc, 0x3ffc, 0xc00000, 0x416c7465, 0x6f6e2041, 0x63654e49, ! 0x43205600, 0x0, 0x0, 0x416c7465, ! 0x6f6e2041, 0x63654e49, 0x43205600, 0x42424242, ! 0x0, 0x0, 0x0, 0x1ffffc, 0x1fff7c, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x60cf00, ! 0x60, 0xcf000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x3, 0x0, ! 0x1, 0x0, 0x0, 0x0, ! 0x1, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000000, 0x21000000, 0x12000140, 0x0, 0x0, 0x20000000, 0x120000a0, 0x0, 0x12000060, 0x12000180, 0x120001e0, 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x2, ! 0x0, 0x0, 0x30001, 0x1, ! 0x30201, 0x0, 0x0, 0x0 }; --- 5107,5208 ---- 0x0, 0x4d516576, 0x74460000, 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, 0x0, 0x5173436f, 0x6e734600, 0x51725072, 0x6f644600, + 0x2a50414e, 0x49432a00, 0x6d61632e, 0x68000000, 0x724d6163, 0x43686b30, 0x0, 0x72784672, 0x6d324c67, 0x0, 0x72784e6f, 0x53744264, 0x0, 0x72784e6f, 0x4d694264, 0x0, ! 0x72784e6f, 0x4a6d4264, 0x0, 0x72656376, ! 0x2e630000, 0x7278436b, 0x446d6146, 0x0, ! 0x72785144, 0x6d457846, 0x0, 0x72785144, ! 0x6d614600, 0x72785144, 0x4c426446, 0x0, ! 0x72785144, 0x6d426446, 0x0, 0x72784372, ! 0x63506164, 0x0, 0x72536d51, 0x446d6146, ! 0x0, 0x24486561, 0x6465723a, 0x202f7072, ! 0x6f6a6563, 0x74732f72, 0x63732f73, 0x772f6765, ! 0x2f2e2f6e, 0x69632f66, 0x77322f63, 0x6f6d6d6f, ! 0x6e2f6d61, 0x632e632c, 0x7620312e, 0x312e322e, ! 0x32322031, 0x3939382f, 0x31322f30, 0x38203032, ! 0x3a33363a, 0x33302073, 0x6875616e, 0x67204578, ! 0x70202400, 0x65767452, 0x6e674600, 0x51657674, ! 0x46000000, 0x51657674, 0x505f4600, 0x4d657674, ! 0x526e6746, 0x0, 0x4d516576, 0x74460000, ! 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, ! 0x0, 0x5173436f, 0x6e734600, 0x51725072, ! 0x6f644600, 0x2a50414e, 0x49432a00, 0x6d61632e, ! 0x68000000, 0x6d616354, 0x68726573, 0x0, ! 0x23744d61, 0x6341544e, 0x0, 0x23724d61, ! 0x6341544e, 0x0, 0x72656d41, 0x73737274, ! 0x0, 0x6d61632e, 0x63000000, 0x6c696e6b, 0x444f574e, 0x0, 0x6c696e6b, 0x55500000, ! 0x24486561, 0x6465723a, 0x202f7072, 0x6f6a6563, ! 0x74732f72, 0x63732f73, 0x772f6765, 0x2f2e2f6e, ! 0x69632f66, 0x77322f63, 0x6f6d6d6f, 0x6e2f636b, ! 0x73756d2e, 0x632c7620, 0x312e312e, 0x322e3920, ! 0x31393939, 0x2f30312f, 0x31342030, 0x303a3033, ! 0x3a343820, 0x73687561, 0x6e672045, 0x78702024, ! 0x0, 0x65767452, 0x6e674600, 0x51657674, ! 0x46000000, 0x51657674, 0x505f4600, 0x4d657674, ! 0x526e6746, 0x0, 0x4d516576, 0x74460000, ! 0x4d516576, 0x505f4600, 0x5173436f, 0x6e495f46, ! 0x0, 0x5173436f, 0x6e734600, 0x51725072, ! 0x6f644600, 0x2a50414e, 0x49432a00, 0x6d61632e, ! 0x68000000, 0x2a50414e, 0x49432a00, 0x2e2e2f63, ! 0x6f6d6d6f, 0x6e2f6d61, 0x632e6800, 0x2e2e2f2e, ! 0x2e2f2e2e, 0x2f636f6d, 0x6d6f6e2f, 0x6c696e6b, ! 0x2e630000, 0x50726f62, 0x65506879, 0x0, ! 0x6c6e6b41, 0x53535254, 0x0, 0x11f04, ! 0x11f84, 0x11fb8, 0x11fe4, 0x12624, ! 0x12060, 0x120c8, 0x127d8, 0x12380, ! 0x12224, 0x1223c, 0x12280, 0x122a8, ! 0x122cc, 0x122f4, 0x127d8, 0x12380, ! 0x123bc, 0x123d4, 0x12404, 0x1242c, ! 0x12450, 0x12478, 0x0, 0x125ac, ! 0x125dc, 0x12600, 0x127d8, 0x12624, ! 0x12650, 0x126e4, 0x0, 0x2a50414e, ! 0x49432a00, 0x2e2e2f63, 0x6f6d6d6f, 0x6e2f6d61, ! 0x632e6800, 0x12f7c, 0x1304c, 0x13124, ! 0x131f4, 0x13250, 0x1332c, 0x13354, ! 0x13430, 0x13458, 0x13600, 0x13628, ! 0x137d0, 0x139c8, 0x13c60, 0x13b70, ! 0x13c60, 0x13c8c, 0x137f8, 0x139a0, ! 0x7273745f, 0x676d6969, 0x0, 0x13d20, ! 0x13d5c, 0x13e48, 0x14a9c, 0x14ae0, ! 0x14af8, 0x7365746c, 0x6f6f7000, 0x2a50414e, ! 0x49432a00, 0x2e2e2f63, 0x6f6d6d6f, 0x6e2f6d61, ! 0x632e6800, 0x152ec, 0x1532c, 0x153c4, ! 0x15408, 0x15474, 0x15504, 0x15538, ! 0x155c4, 0x15668, 0x15738, 0x15778, ! 0x15804, 0x15828, 0x15940, 0x646f4261, ! 0x73655067, 0x0, 0x0, 0x2a50414e, ! 0x49432a00, 0x2e2e2f63, 0x6f6d6d6f, 0x6e2f6d61, ! 0x632e6800, 0x73746d61, 0x634c4e4b, 0x0, ! 0x6765746d, 0x636c6e6b, 0x0, 0x16664, ! 0x16664, 0x16314, 0x16360, 0x163ac, ! 0x16664, 0x7365746d, 0x61636163, 0x74000000, ! 0x0 }; static u_int32_t tigon2FwData[] = { 0x1, 0x1, 0x1, 0xc001fc, 0x3ffc, 0xc00000, 0x416c7465, 0x6f6e2041, 0x63654e49, ! 0x43205600, 0x0, 0x416c7465, 0x6f6e2041, ! 0x63654e49, 0x43205600, 0x42424242, 0x1ffffc, 0x1fff7c, 0x0, 0x0, 0x0, ! 0x60cf00, 0x60, 0xcf000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ! 0x0, 0x0, 0x0, 0x3, ! 0x0, 0x1, 0x0, 0x0, ! 0x0, 0x1, 0x0, 0x1, ! 0x0, 0x0, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000000, 0x21000000, 0x12000140, 0x0, 0x0, 0x20000000, 0x120000a0, 0x0, 0x12000060, 0x12000180, 0x120001e0, + 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, ! 0x2, 0x0, 0x0, 0x30001, ! 0x1, 0x30201, 0x1010101, 0x1010100, ! 0x10100, 0x1010001, 0x10001, 0x1000101, ! 0x101, 0x0, 0x0 }; *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/sys/jumbo.h Sat Jul 8 21:56:27 2000 *************** *** 0 **** --- 1,51 ---- + /*- + * Copyright (c) 1997, Duke University + * All rights reserved. + * + * Author: + * Andrew Gallatin + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgements: + * This product includes software developed by Duke University + * 4. The name of Duke University may not be used to endorse or promote + * products derived from this software without specific prior written + * permission. + * + * THIS SOFTWARE IS PROVIDED BY DUKE UNIVERSITY ``AS IS'' AND ANY + * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL DUKE UNIVERSITY BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITSOR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER + * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * $FreeBSD$ + */ + + #ifndef _SYS_JUMBO_H_ + #define _SYS_JUMBO_H_ + + #ifdef _KERNEL + __inline caddr_t jumbo_phys_to_kva(vm_offset_t pa); + int jumbo_vm_init(void); + void jumbo_ref(caddr_t addr, u_int len); + void jumbo_freem(caddr_t addr, u_int len); + vm_page_t jumbo_pg_alloc(void); + void jumbo_pg_free(vm_offset_t addr); + void jumbo_pg_steal(vm_page_t pg); + #endif /* _KERNEL */ + + #endif /* !_SYS_JUMBO_H_ */ *** src/sys/sys/kernel.h.orig --- src/sys/sys/kernel.h *************** *** 150,155 **** --- 150,156 ---- SI_SUB_KTHREAD_VM = 0xe800000, /* vm daemon*/ SI_SUB_KTHREAD_BUF = 0xea00000, /* buffer daemon*/ SI_SUB_KTHREAD_UPDATE = 0xec00000, /* update daemon*/ + SI_SUB_KTHTREAD_ZCOPY = 0xed00000, /* zcopy */ SI_SUB_KTHREAD_IDLE = 0xee00000, /* idle procs*/ SI_SUB_SMP = 0xf000000, /* idle procs*/ SI_SUB_RUN_SCHEDULER = 0xfffffff /* scheduler: no return*/ *** src/sys/sys/mbuf.h.orig --- src/sys/sys/mbuf.h *************** *** 138,146 **** #define M_FIRSTFRAG 0x0800 /* packet is first fragment */ #define M_LASTFRAG 0x1000 /* packet is last fragment */ /* flags copied when copying m_pkthdr */ #define M_COPYFLAGS (M_PKTHDR|M_EOR|M_PROTO1|M_PROTO1|M_PROTO2|M_PROTO3 | \ ! M_PROTO4|M_PROTO5|M_BCAST|M_MCAST|M_FRAG) /* flags indicating hw checksum support and sw checksum requirements */ #define CSUM_IP 0x0001 /* will csum IP */ --- 138,149 ---- #define M_FIRSTFRAG 0x0800 /* packet is first fragment */ #define M_LASTFRAG 0x1000 /* packet is last fragment */ + #define M_ZCOPY 0x2000 /* doing zero copy */ + #define M_ZCOMMIT 0x4000 /* copy commit required */ + /* flags copied when copying m_pkthdr */ #define M_COPYFLAGS (M_PKTHDR|M_EOR|M_PROTO1|M_PROTO1|M_PROTO2|M_PROTO3 | \ ! M_PROTO4|M_PROTO5|M_BCAST|M_MCAST|M_FRAG|M_ZCOPY) /* flags indicating hw checksum support and sw checksum requirements */ #define CSUM_IP 0x0001 /* will csum IP */ *************** *** 204,209 **** --- 207,213 ---- /* flags to m_get/MGET */ #define M_DONTWAIT 1 #define M_WAIT 0 + #define M_HASZCOPY(SO) ((SO)->so_snd.sb_mb->m_flags & M_ZCOPY) /* Freelists: * *** src/sys/sys/socket.h.orig --- src/sys/sys/socket.h *************** *** 83,88 **** --- 83,89 ---- #define SO_RCVTIMEO 0x1006 /* receive timeout */ #define SO_ERROR 0x1007 /* get error status and clear */ #define SO_TYPE 0x1008 /* get socket type */ + #define SO_ZCOPY 0x1009 /* enable zero copy */ /*efine SO_PRIVSTATE 0x1009 get/deny privileged state */ /* *** src/sys/sys/socketvar.h.orig --- src/sys/sys/socketvar.h *************** *** 107,112 **** --- 107,113 ---- #define SB_NOINTR 0x40 /* operations not interruptible */ #define SB_AIO 0x80 /* AIO operations queued */ #define SB_KNOTE 0x100 /* kernel note attached */ + #define SB_ZCOPY 0x200 /* do zero copy optimization */ void (*so_upcall) __P((struct socket *, void *, int)); void *so_upcallarg; *** src/sys/sys/sysctl.h.orig --- src/sys/sys/sysctl.h *************** *** 341,346 **** --- 341,347 ---- #define KIPC_MAX_DATALEN 7 /* int: max length of data? */ #define KIPC_MBSTAT 8 /* struct: mbuf usage statistics */ #define KIPC_NMBCLUSTERS 9 /* int: maximum mbuf clusters */ + #define KIPC_ZCOPY 10 /* int: zcopy on by default */ /* * CTL_HW identifiers *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/sys/tiio.h Sat Jul 8 21:56:27 2000 *************** *** 0 **** --- 1,333 ---- + /*- + * Copyright (c) 1999, 2000 Kenneth D. Merry. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions, and the following disclaimer, + * without modification, immediately at the beginning of the file. + * 2. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + /* + * The ti_stats structure below is from code with the following copyright, + * and originally comes from the Alteon firmware documentation. + */ + /* + * Copyright (c) 1997, 1998, 1999 + * Bill Paul . All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Bill Paul. + * 4. Neither the name of the author nor the names of any co-contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + * THE POSSIBILITY OF SUCH DAMAGE. + * + * from: if_tireg.h,v 1.8 1999/07/23 18:46:24 wpaul Exp $ + */ + + #ifndef _SYS_TIIO_H_ + #define _SYS_TIIO_H_ + + #include + + /* + * Tigon statistics counters. + */ + struct ti_stats { + /* + * MAC stats, taken from RFC 1643, ethernet-like MIB + */ + volatile u_int32_t dot3StatsAlignmentErrors; /* 0 */ + volatile u_int32_t dot3StatsFCSErrors; /* 1 */ + volatile u_int32_t dot3StatsSingleCollisionFrames; /* 2 */ + volatile u_int32_t dot3StatsMultipleCollisionFrames; /* 3 */ + volatile u_int32_t dot3StatsSQETestErrors; /* 4 */ + volatile u_int32_t dot3StatsDeferredTransmissions; /* 5 */ + volatile u_int32_t dot3StatsLateCollisions; /* 6 */ + volatile u_int32_t dot3StatsExcessiveCollisions; /* 7 */ + volatile u_int32_t dot3StatsInternalMacTransmitErrors; /* 8 */ + volatile u_int32_t dot3StatsCarrierSenseErrors; /* 9 */ + volatile u_int32_t dot3StatsFrameTooLongs; /* 10 */ + volatile u_int32_t dot3StatsInternalMacReceiveErrors; /* 11 */ + /* + * interface stats, taken from RFC 1213, MIB-II, interfaces group + */ + volatile u_int32_t ifIndex; /* 12 */ + volatile u_int32_t ifType; /* 13 */ + volatile u_int32_t ifMtu; /* 14 */ + volatile u_int32_t ifSpeed; /* 15 */ + volatile u_int32_t ifAdminStatus; /* 16 */ + #define IF_ADMIN_STATUS_UP 1 + #define IF_ADMIN_STATUS_DOWN 2 + #define IF_ADMIN_STATUS_TESTING 3 + volatile u_int32_t ifOperStatus; /* 17 */ + #define IF_OPER_STATUS_UP 1 + #define IF_OPER_STATUS_DOWN 2 + #define IF_OPER_STATUS_TESTING 3 + #define IF_OPER_STATUS_UNKNOWN 4 + #define IF_OPER_STATUS_DORMANT 5 + volatile u_int32_t ifLastChange; /* 18 */ + volatile u_int32_t ifInDiscards; /* 19 */ + volatile u_int32_t ifInErrors; /* 20 */ + volatile u_int32_t ifInUnknownProtos; /* 21 */ + volatile u_int32_t ifOutDiscards; /* 22 */ + volatile u_int32_t ifOutErrors; /* 23 */ + volatile u_int32_t ifOutQLen; /* deprecated */ /* 24 */ + volatile u_int8_t ifPhysAddress[8]; /* 8 bytes */ /* 25 - 26 */ + volatile u_int8_t ifDescr[32]; /* 27 - 34 */ + u_int32_t alignIt; /* align to 64 bit for u_int64_ts following */ + /* + * more interface stats, taken from RFC 1573, MIB-IIupdate, + * interfaces group + */ + volatile u_int64_t ifHCInOctets; /* 36 - 37 */ + volatile u_int64_t ifHCInUcastPkts; /* 38 - 39 */ + volatile u_int64_t ifHCInMulticastPkts; /* 40 - 41 */ + volatile u_int64_t ifHCInBroadcastPkts; /* 42 - 43 */ + volatile u_int64_t ifHCOutOctets; /* 44 - 45 */ + volatile u_int64_t ifHCOutUcastPkts; /* 46 - 47 */ + volatile u_int64_t ifHCOutMulticastPkts; /* 48 - 49 */ + volatile u_int64_t ifHCOutBroadcastPkts; /* 50 - 51 */ + volatile u_int32_t ifLinkUpDownTrapEnable; /* 52 */ + volatile u_int32_t ifHighSpeed; /* 53 */ + volatile u_int32_t ifPromiscuousMode; /* 54 */ + volatile u_int32_t ifConnectorPresent; /* follow link state 55 */ + /* + * Host Commands + */ + volatile u_int32_t nicCmdsHostState; /* 56 */ + volatile u_int32_t nicCmdsFDRFiltering; /* 57 */ + volatile u_int32_t nicCmdsSetRecvProdIndex; /* 58 */ + volatile u_int32_t nicCmdsUpdateGencommStats; /* 59 */ + volatile u_int32_t nicCmdsResetJumboRing; /* 60 */ + volatile u_int32_t nicCmdsAddMCastAddr; /* 61 */ + volatile u_int32_t nicCmdsDelMCastAddr; /* 62 */ + volatile u_int32_t nicCmdsSetPromiscMode; /* 63 */ + volatile u_int32_t nicCmdsLinkNegotiate; /* 64 */ + volatile u_int32_t nicCmdsSetMACAddr; /* 65 */ + volatile u_int32_t nicCmdsClearProfile; /* 66 */ + volatile u_int32_t nicCmdsSetMulticastMode; /* 67 */ + volatile u_int32_t nicCmdsClearStats; /* 68 */ + volatile u_int32_t nicCmdsSetRecvJumboProdIndex; /* 69 */ + volatile u_int32_t nicCmdsSetRecvMiniProdIndex; /* 70 */ + volatile u_int32_t nicCmdsRefreshStats; /* 71 */ + volatile u_int32_t nicCmdsUnknown; /* 72 */ + /* + * NIC Events + */ + volatile u_int32_t nicEventsNICFirmwareOperational; /* 73 */ + volatile u_int32_t nicEventsStatsUpdated; /* 74 */ + volatile u_int32_t nicEventsLinkStateChanged; /* 75 */ + volatile u_int32_t nicEventsError; /* 76 */ + volatile u_int32_t nicEventsMCastListUpdated; /* 77 */ + volatile u_int32_t nicEventsResetJumboRing; /* 78 */ + /* + * Ring manipulation + */ + volatile u_int32_t nicRingSetSendProdIndex; /* 79 */ + volatile u_int32_t nicRingSetSendConsIndex; /* 80 */ + volatile u_int32_t nicRingSetRecvReturnProdIndex; /* 81 */ + /* + * Interrupts + */ + volatile u_int32_t nicInterrupts; /* 82 */ + volatile u_int32_t nicAvoidedInterrupts; /* 83 */ + /* + * BD Coalessing Thresholds + */ + volatile u_int32_t nicEventThresholdHit; /* 84 */ + volatile u_int32_t nicSendThresholdHit; /* 85 */ + volatile u_int32_t nicRecvThresholdHit; /* 86 */ + /* + * DMA Attentions + */ + volatile u_int32_t nicDmaRdOverrun; /* 87 */ + volatile u_int32_t nicDmaRdUnderrun; /* 88 */ + volatile u_int32_t nicDmaWrOverrun; /* 89 */ + volatile u_int32_t nicDmaWrUnderrun; /* 90 */ + volatile u_int32_t nicDmaWrMasterAborts; /* 91 */ + volatile u_int32_t nicDmaRdMasterAborts; /* 92 */ + /* + * NIC Resources + */ + volatile u_int32_t nicDmaWriteRingFull; /* 93 */ + volatile u_int32_t nicDmaReadRingFull; /* 94 */ + volatile u_int32_t nicEventRingFull; /* 95 */ + volatile u_int32_t nicEventProducerRingFull; /* 96 */ + volatile u_int32_t nicTxMacDescrRingFull; /* 97 */ + volatile u_int32_t nicOutOfTxBufSpaceFrameRetry; /* 98 */ + volatile u_int32_t nicNoMoreWrDMADescriptors; /* 99 */ + volatile u_int32_t nicNoMoreRxBDs; /* 100 */ + volatile u_int32_t nicNoSpaceInReturnRing; /* 101 */ + volatile u_int32_t nicSendBDs; /* current count 102 */ + volatile u_int32_t nicRecvBDs; /* current count 103 */ + volatile u_int32_t nicJumboRecvBDs; /* current count 104 */ + volatile u_int32_t nicMiniRecvBDs; /* current count 105 */ + volatile u_int32_t nicTotalRecvBDs; /* current count 106 */ + volatile u_int32_t nicTotalSendBDs; /* current count 107 */ + volatile u_int32_t nicJumboSpillOver; /* 108 */ + volatile u_int32_t nicSbusHangCleared; /* 109 */ + volatile u_int32_t nicEnqEventDelayed; /* 110 */ + /* + * Stats from MAC rx completion + */ + volatile u_int32_t nicMacRxLateColls; /* 111 */ + volatile u_int32_t nicMacRxLinkLostDuringPkt; /* 112 */ + volatile u_int32_t nicMacRxPhyDecodeErr; /* 113 */ + volatile u_int32_t nicMacRxMacAbort; /* 114 */ + volatile u_int32_t nicMacRxTruncNoResources; /* 115 */ + /* + * Stats from the mac_stats area + */ + volatile u_int32_t nicMacRxDropUla; /* 116 */ + volatile u_int32_t nicMacRxDropMcast; /* 117 */ + volatile u_int32_t nicMacRxFlowControl; /* 118 */ + volatile u_int32_t nicMacRxDropSpace; /* 119 */ + volatile u_int32_t nicMacRxColls; /* 120 */ + /* + * MAC RX Attentions + */ + volatile u_int32_t nicMacRxTotalAttns; /* 121 */ + volatile u_int32_t nicMacRxLinkAttns; /* 122 */ + volatile u_int32_t nicMacRxSyncAttns; /* 123 */ + volatile u_int32_t nicMacRxConfigAttns; /* 124 */ + volatile u_int32_t nicMacReset; /* 125 */ + volatile u_int32_t nicMacRxBufDescrAttns; /* 126 */ + volatile u_int32_t nicMacRxBufAttns; /* 127 */ + volatile u_int32_t nicMacRxZeroFrameCleanup; /* 128 */ + volatile u_int32_t nicMacRxOneFrameCleanup; /* 129 */ + volatile u_int32_t nicMacRxMultipleFrameCleanup; /* 130 */ + volatile u_int32_t nicMacRxTimerCleanup; /* 131 */ + volatile u_int32_t nicMacRxDmaCleanup; /* 132 */ + /* + * Stats from the mac_stats area + */ + volatile u_int32_t nicMacTxCollisionHistogram[15]; /* 133 */ + /* + * MAC TX Attentions + */ + volatile u_int32_t nicMacTxTotalAttns; /* 134 */ + /* + * NIC Profile + */ + volatile u_int32_t nicProfile[32]; /* 135 */ + /* + * Pat to 1024 bytes. + */ + u_int32_t pad[75]; + }; + + struct tg_reg { + u_int32_t data; + u_int32_t addr; + }; + + struct tg_mem { + u_int32_t tgAddr; + caddr_t userAddr; + int len; + }; + + + typedef enum { + TI_PARAM_NONE = 0x00, + TI_PARAM_STAT_TICKS = 0x01, + TI_PARAM_RX_COAL_TICKS = 0x02, + TI_PARAM_TX_COAL_TICKS = 0x04, + TI_PARAM_RX_COAL_BDS = 0x08, + TI_PARAM_TX_COAL_BDS = 0x10, + TI_PARAM_TX_BUF_RATIO = 0x20, + TI_PARAM_ALL = 0x2f + } ti_param_mask; + + struct ti_params { + u_int32_t ti_stat_ticks; + u_int32_t ti_rx_coal_ticks; + u_int32_t ti_tx_coal_ticks; + u_int32_t ti_rx_max_coal_bds; + u_int32_t ti_tx_max_coal_bds; + u_int32_t ti_tx_buf_ratio; + ti_param_mask param_mask; + }; + + typedef enum { + TI_TRACE_TYPE_NONE = 0x00000000, + TI_TRACE_TYPE_SEND = 0x00000001, + TI_TRACE_TYPE_RECV = 0x00000002, + TI_TRACE_TYPE_DMA = 0x00000004, + TI_TRACE_TYPE_EVENT = 0x00000008, + TI_TRACE_TYPE_COMMAND = 0x00000010, + TI_TRACE_TYPE_MAC = 0x00000020, + TI_TRACE_TYPE_STATS = 0x00000040, + TI_TRACE_TYPE_TIMER = 0x00000080, + TI_TRACE_TYPE_DISP = 0x00000100, + TI_TRACE_TYPE_MAILBOX = 0x00000200, + TI_TRACE_TYPE_RECV_BD = 0x00000400, + TI_TRACE_TYPE_LNK_PHY = 0x00000800, + TI_TRACE_TYPE_LNK_NEG = 0x00001000, + TI_TRACE_LEVEL_1 = 0x10000000, + TI_TRACE_LEVEL_2 = 0x20000000 + } ti_trace_type; + + struct ti_trace_buf { + u_long *buf; + int buf_len; + int fill_len; + u_long cur_trace_ptr; + }; + + #define TIIOCGETSTATS _IOR('T', 1, struct ti_stats) + #define TIIOCGETPARAMS _IOR('T', 2, struct ti_params) + #define TIIOCSETPARAMS _IOW('T', 3, struct ti_params) + #define TIIOCSETTRACE _IOW('T', 11, ti_trace_type) + #define TIIOCGETTRACE _IOWR('T', 12, struct ti_trace_buf) + + /* + * Taken from Alteon's altioctl.h. Alteon's ioctl numbers 1-6 aren't + * used by the FreeBSD driver. + */ + #define ALT_ATTACH _IO('a', 7) + #define ALT_READ_TG_MEM _IOWR('a', 10, struct tg_mem) + #define ALT_WRITE_TG_MEM _IOWR('a', 11, struct tg_mem) + #define ALT_READ_TG_REG _IOWR('a', 12, struct tg_reg) + #define ALT_WRITE_TG_REG _IOWR('a', 13, struct tg_reg) + + #endif /* _SYS_TIIO_H_ */ *** /dev/null Sat Jul 8 03:45:01 2000 --- src/sys/sys/zcopy.h Sat Jul 8 21:56:27 2000 *************** *** 0 **** --- 1,75 ---- + #ifndef _SYS_ZCOPY_H_ + #define _SYS_ZCOPY_H_ + /* + * Copyright (c) 1999 + * Bob Picco . All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * + */ + + extern unsigned int auto_zcopy; + + + #define DO_ZCOPY(UIO, SO) \ + (((UIO)->uio_segflg == UIO_USERSPACE && \ + (UIO)->uio_resid >= PAGE_SIZE && \ + (SO)->so_snd.sb_flags & SB_ZCOPY && \ + (UIO)->uio_iovcnt == 1 && \ + (UIO)->uio_iov->iov_base <= \ + (caddr_t) VM_MAXUSER_ADDRESS) \ + ? 1 : 0) + + int zcopy_create( + struct uio *uio, + vm_size_t *len, + struct mbuf *m, + struct socket *so + ); + + /* + * Contained in first mbuf + */ + + typedef struct zcopy_data { + struct zcopy_data *zd_next; /* next request */ + struct inpcb *zd_pcb; /* our pcb */ + int zd_tcplen; /* len of tcp request */ + int zd_tcpoptlen; /* options len */ + int zd_tcphdrlen; /* hdrlen of tcp request */ + } zcopy_data_t, *pzcopy_data_t; + + + int zcopy_copy( + struct mbuf *m + ); + int zcopy_fault(struct mbuf *m); + + void zcopy_enqueue( + struct socket *so, + void (*proc)(caddr_t arg, struct mbuf *), + caddr_t arg, + struct mbuf *m + ); + + #endif /* !_SYS_ZCOPY_H_ */ *** src/sys/ufs/ffs/ffs_alloc.c.orig --- src/sys/ufs/ffs/ffs_alloc.c *************** *** 487,493 **** } /* * Next we must write out the modified inode and indirect blocks. ! * For strict correctness, the writes should be synchronous since * the old block values may have been written to disk. In practise * they are almost never written, but if we are concerned about * strict correctness, the `doasyncfree' flag should be set to zero. --- 487,493 ---- } /* * Next we must write out the modified inode and indirect blocks. ! * For strict correctness, the writes should be ordered since * the old block values may have been written to disk. In practise * they are almost never written, but if we are concerned about * strict correctness, the `doasyncfree' flag should be set to zero. *************** *** 503,509 **** if (doasyncfree) bdwrite(sbp); else ! bwrite(sbp); } else { ip->i_flag |= IN_CHANGE | IN_UPDATE; if (!doasyncfree) --- 503,509 ---- if (doasyncfree) bdwrite(sbp); else ! bowrite(sbp); } else { ip->i_flag |= IN_CHANGE | IN_UPDATE; if (!doasyncfree) *************** *** 513,519 **** if (doasyncfree) bdwrite(ebp); else ! bwrite(ebp); } /* * Last, free the old blocks and assign the new blocks to the buffers. --- 513,519 ---- if (doasyncfree) bdwrite(ebp); else ! bowrite(ebp); } /* * Last, free the old blocks and assign the new blocks to the buffers. *** src/sys/ufs/ffs/ffs_balloc.c.orig --- src/sys/ufs/ffs/ffs_balloc.c *************** *** 216,222 **** bdwrite(bp); } else { /* ! * Write synchronously so that indirect blocks * never point at garbage. */ if (DOINGASYNC(vp)) --- 216,222 ---- bdwrite(bp); } else { /* ! * Ensure write ordering so that indirect blocks * never point at garbage. */ if (DOINGASYNC(vp)) *************** *** 265,271 **** bdwrite(nbp); } else { /* ! * Write synchronously so that indirect blocks * never point at garbage. */ if ((error = bwrite(nbp)) != 0) { --- 265,271 ---- bdwrite(nbp); } else { /* ! * Ensure write ordering so that indirect blocks * never point at garbage. */ if ((error = bwrite(nbp)) != 0) { *** src/sys/vm/vm_fault.c.orig --- src/sys/vm/vm_fault.c *************** *** 288,293 **** --- 288,307 ---- fs.m = vm_page_lookup(fs.object, fs.pindex); if (fs.m != NULL) { int queue, s; + + /* + * check for page-based copy on write + */ + + if ((fs.m->cow) && + (fault_type & VM_PROT_WRITE)) { + s = splvm(); + vm_page_cowfault(fs.m); + splx(s); + unlock_things(&fs); + goto RetryFault; + } + /* * Wait/Retry if the page is busy. We have to do this * if the page is busy via either PG_BUSY or *** src/sys/vm/vm_map.c.orig --- src/sys/vm/vm_map.c *************** *** 749,754 **** --- 749,768 ---- } /* + * vm_map_e_clip_start: [ exported ] + */ + + void + vm_map_e_clip_start(map, entry, start) + vm_map_t map; + vm_map_entry_t entry; + vm_offset_t start; + { + vm_map_clip_start(map, entry, start); + } + + + /* * This routine is called only when it is known that * the entry must be split. */ *************** *** 813,818 **** --- 827,845 ---- } /* + * vm_map_e_clip_end: [ exported ] + */ + + void + vm_map_e_clip_end(map, entry, end) + vm_map_t map; + vm_map_entry_t entry; + vm_offset_t end; + { + vm_map_clip_end(map, entry, end); + } + + /* * This routine is called only when it is known that * the entry must be split. */ *** src/sys/vm/vm_map.h.orig --- src/sys/vm/vm_map.h *************** *** 374,379 **** --- 374,382 ---- void vm_freeze_copyopts __P((vm_object_t, vm_pindex_t, vm_pindex_t)); int vm_map_stack __P((vm_map_t, vm_offset_t, vm_size_t, vm_prot_t, vm_prot_t, int)); int vm_map_growstack __P((struct proc *p, vm_offset_t addr)); + void vm_map_e_clip_start __P((vm_map_t, vm_map_entry_t, vm_offset_t)); + void vm_map_e_clip_end __P((vm_map_t, vm_map_entry_t, vm_offset_t)); + #endif #endif /* _VM_MAP_ */ *** src/sys/vm/vm_page.c.orig --- src/sys/vm/vm_page.c *************** *** 1931,1936 **** --- 1931,2013 ---- alignment, 0ul, kernel_map)); } + int so_zerocp_fullpage = 0; + + void + vm_page_cowfault(m) + vm_page_t m; + { + vm_page_t mnew; + vm_object_t object; + vm_pindex_t pindex; + + object = m->object; + pindex = m->pindex; + vm_page_busy(m); + + retry_alloc: + vm_page_remove(m); + mnew = vm_page_alloc(object, pindex, VM_ALLOC_NORMAL); + if (mnew == NULL) { + vm_page_insert(m, object, pindex); + VM_WAIT; + goto retry_alloc; + } + + if (m->cow == 0) { + /* + * check to see if we raced with an xmit complete when + * waiting to allocate a page. If so, put things back + * the way they were + */ + vm_page_busy(mnew); + vm_page_free(mnew); + vm_page_insert(m, object, pindex); + } else { /* clear COW & copy page */ + if (so_zerocp_fullpage) { + mnew->valid = VM_PAGE_BITS_ALL; + } else { + vm_page_copy(m, mnew); + } + vm_page_dirty(mnew); + vm_page_flag_clear(mnew, PG_BUSY); + } + vm_page_wakeup(m); /*unbusy the page */ + } + + void + vm_page_cowclear(m) + vm_page_t m; + + { + int s = splvm(); + + if (m->cow) { + atomic_subtract_int(&m->cow, 1); + /* + * let vm_fault add back write permission lazily + */ + } + /* + * sf_buf_free() will free the page, so we needn't do it here + */ + + splx(s); + } + + void + vm_page_cowsetup(m) + vm_page_t m; + + { + int s = splvm(); + + atomic_add_int(&m->cow, 1); + vm_page_protect(m, VM_PROT_READ); + + splx(s); + } + #include "opt_ddb.h" #ifdef DDB #include *** src/sys/vm/vm_page.h.orig --- src/sys/vm/vm_page.h *************** *** 134,139 **** --- 134,140 ---- u_short valid; /* map of valid DEV_BSIZE chunks */ u_short dirty; /* map of dirty DEV_BSIZE chunks */ #endif + u_int cow; /* page cow mapping count */ }; /* *************** *** 434,439 **** --- 435,443 ---- #endif void vm_page_zero_invalid(vm_page_t m, boolean_t setvalid); void vm_page_free_toq(vm_page_t m); + void vm_page_cowfault __P((vm_page_t)); + void vm_page_cowsetup __P((vm_page_t)); + void vm_page_cowclear __P((vm_page_t)); /* * Keep page from being freed by the page daemon