// https://syzkaller.appspot.com/bug?id=486f3c4bfb7cb53e7c03279b8d1bb98f2b0fd749 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x200000000000, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000000200, "./file1\000", 8)); NONFAILING(memcpy( (void*)0x200000005c00, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\x9d\x28\xf0\x73\xbb\x7b\x32\x3d\x33\x99" "\x64\x12\x40\x22\xc8\x64\x08\x44\x11\xd4\x4c\xf8\x55\x28\x96\x44\x9f\xbf" "\x0a\x90\x8a\x85\xa5\x84\x17\x85\x81\x4c\x30\x92\x84\x54\x12\x04\x02\x4a" "\xf0\x81\x0f\x0a\xb0\xd0\xa7\xa5\xa8\x7f\xa0\x0f\xa9\x87\x46\x8b\x2a\x78" "\x4a\xa4\x44\x7e\x6c\xc2\x2a\x4a\xb1\xba\xd4\x16\x50\x2b\xbb\xe8\x1f\x6c" "\x21\x4b\x4a\x20\xcb\x5a\xac\xb3\x35\xd3\xf7\x74\x7a\xee\xf4\x9d\xee\xe9" "\xe9\xc9\x0f\xf8\x7c\x2a\x99\xdb\xf7\xf4\xed\xef\x39\xf7\xdc\xd3\xb7\xef" "\xf7\x74\xcf\x74\x00\x00\x00\xe0\x0d\x61\xe7\x75\x9b\x76\x9f\x75\xd8\x87" "\x7e\xfd\xa5\xe1\x57\xae\xfe\xe8\xcf\xd7\x5d\x13\x7a\x8a\x63\xe5\xe5\xb8" "\x41\x5f\xba\xbc\x7c\x5f\xb5\x90\xbd\xa9\xb3\xb4\x60\x6c\x99\x1d\x17\x6f" "\xbb\xf2\x87\x7f\x1a\xb8\xf0\x03\xbf\xba\xab\xfb\x07\xaf\xee\x58\x75\xe4" "\xea\xa7\x3e\x78\xd0\x85\xf7\x7d\xee\xf4\xed\xb7\x7e\xe7\xc1\x97\x7b\xef" "\xf9\xdb\xb3\x8d\xe2\xc6\xf1\x74\xec\x9e\xf5\xe4\x85\x24\x84\xf2\x2f\x76" "\x7d\xe3\xcb\x3b\x1e\x3d\x74\xb4\x2c\x09\x21\x14\x93\xbe\xad\x21\xcc\x4b" "\xe6\x3f\x38\x2f\xc9\x84\x18\xfc\x6b\x08\x61\x55\xba\xb2\x20\x73\xe7\xdd" "\xaf\x9c\xb0\x7a\x74\x79\xcd\x8d\x9d\xe3\xca\xe7\x66\xb6\x33\xde\xdf\xd8" "\xca\xe9\x38\xdb\xb2\xfb\xb2\xe3\xc2\x1f\xde\xbf\xe2\xda\xdf\x2e\xfc\xc9" "\x8f\x3b\xb6\x3d\xbf\x75\xcf\x26\x49\xb9\x66\x3c\x85\x30\xe7\xfc\xda\xc7" "\x77\x84\x10\xba\xd2\xff\xa3\xe2\x68\x8b\xe3\x31\x0e\xda\xe5\x21\x84\xee" "\x9a\xc7\x9d\x12\x6f\x5c\xdc\x55\xb7\x5d\x47\x35\xd9\xfe\x25\x39\xeb\x87" "\xa7\xcb\x59\xe9\xb2\xa7\x41\x9c\x78\xff\xa2\xcc\x7a\x21\xb3\x5d\x76\x3d" "\xea\xc8\x2c\xbb\x1b\xd4\x37\x5d\x79\xed\x68\x75\xbb\x46\x66\x67\xd6\xb3" "\x27\xa3\xe9\xca\x6b\x67\x2c\x9f\x97\x2e\x7f\x96\x2e\x8f\x9d\x62\xfc\x62" "\xfc\x9f\x84\x42\x12\x4a\xd5\xe6\xaf\x4d\xf6\x8c\x91\x50\x73\xdc\x92\x90" "\x8c\x1d\xcb\x72\x75\xbd\x50\x3d\xb6\x21\xdd\xff\xcc\x7a\x92\x59\x2f\x64" "\xd6\x8b\x1d\x99\xfd\x1a\xab\x37\x1d\x68\xc5\x24\x19\x5f\x1e\xb7\xcb\x94" "\xc7\xd3\x71\x29\x2d\x3f\xb2\xf6\x5c\x5d\xc7\xd9\x39\xe5\x6f\x4e\x97\xe5" "\xf4\x89\xfa\x6a\x5c\x0f\xd9\x1b\x15\x3d\x13\x6e\x54\xf7\x6b\x4c\x6c\xd7" "\xae\x49\xda\xb2\x37\x14\x6a\xce\x41\xf5\xca\xab\x07\x3e\x3d\x18\x3d\x69" "\x59\x4f\x32\x7f\xc2\x63\x46\xea\x88\xf7\xed\x58\x71\xd3\xe2\xe2\xca\x87" "\x76\xf6\xe5\xb4\x23\xb9\x2b\x49\xe3\x27\x53\x8c\x5f\xe9\xf8\x2d\xbf\x99" "\x37\xfb\x33\x3f\xba\xe1\xd2\xec\xeb\x7a\x35\xfe\xf9\x85\x34\x7e\xa1\xa5" "\xf6\x3f\x73\xc6\x63\x2f\x9e\x7b\xc3\xf7\xbf\x9d\x1b\xff\x96\x18\xbf\xd8" "\x52\xfc\xe3\xef\xef\x7e\xe1\x8c\x87\xaf\x5b\x94\xdb\x3f\xbb\x62\xff\x94" "\x5a\x8a\x3f\xf4\xec\x23\x37\x2f\x3c\xf8\x82\x6d\xb9\xed\xbf\x2d\xc6\x2f" "\xb7\x14\x7f\xd9\xf6\xc7\x3a\x7b\x77\xdf\xff\x40\x6e\xfb\x07\x63\xff\x74" "\xb5\x14\xff\xe9\x53\x3f\xfc\xc7\x3b\x9f\xb8\xf7\xf9\xdc\xf8\x21\xc6\xef" "\x6e\x29\xfe\xca\xed\x1b\xbe\xd2\xd9\xbf\xfb\x98\xdc\xf8\x0f\xc4\xfe\xe9" "\x69\x6d\xfc\xbc\xb4\xed\xe4\x27\xfb\xfb\x9f\x1b\xc8\x8b\xff\x78\x8c\xdf" "\xdb\x52\xfc\x3b\xb6\xde\xfa\x9e\xdb\xe7\xde\x78\x7a\xee\xf1\x5d\x1e\xfb" "\xa7\xaf\xa5\xf8\x67\x1e\x7d\xdf\xb5\xb3\x77\xdf\x7b\x44\xde\xb9\x33\xb9" "\xad\x5d\xaf\x9c\x00\x6f\x4c\x07\xa5\xd7\x58\xd7\xa7\xeb\xad\xe6\x99\xd3" "\x55\x93\x2f\x7c\x6b\xa0\x54\xb9\xe6\x9b\x9d\xfe\xef\x0d\x21\x9c\x96\x9d" "\x18\x69\x55\xe6\xe2\x73\xb4\x9e\x39\x6d\x0a\x0d\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd1\x21\xc7\xfd\xfd" "\x47\xfe\xf5\x93\x7d\x2f\x94\xd2\xf5\xce\xf4\xc6\xd3\x85\xca\x32\x96\xcf" "\x0a\x21\xe9\x0a\x21\x6c\xda\x3c\xb4\x71\xf3\x9a\xf5\x17\x0d\x7c\xee\x92" "\x4b\x37\xae\x1f\x5a\x3b\x30\xb4\x79\x60\x78\xfd\xe6\x8d\x57\x0c\x9c\xf8" "\x8e\x81\x8d\xc3\x1b\xd6\x0e\x5d\x31\x7a\xef\xe0\x3b\x4f\xa8\x3c\x6e\x7e" "\x48\x2a\xcb\xe4\x88\x09\x75\x77\x8e\x8c\x8c\x14\xfa\xc6\x97\xc5\xfa\xfe" "\xc7\xd1\xdb\xfe\xb0\xf8\x94\x7f\xfb\x73\x08\x83\x87\xfc\xbe\xbf\x94\xdb" "\xfe\x25\xb7\xae\xbb\xfd\xe0\x3a\x3f\x33\x92\x65\x23\xa7\xad\xbb\xf4\xac" "\xdf\x9f\xf4\xbd\x74\xbf\xfa\xd2\x76\xf5\xd5\x69\xd7\xc8\xc8\xc8\x48\xc8" "\x69\xd7\xbf\x9f\xf3\xda\xed\x5f\xdb\xf5\xa7\x63\x42\x18\x7c\xd3\x64\xed" "\x7a\xe4\xe9\xf7\xfd\x72\x5c\x83\xc6\x0a\xf6\xc4\x49\x15\x3a\x43\xa5\x41" "\x9d\x49\x77\xdd\x76\x54\x5b\x9d\xb6\x27\xf6\x57\x69\xf5\x9a\xb5\xc3\x83" "\x93\xf7\xef\xe8\xe3\x8b\x39\xfb\xf1\x3f\xaf\x7c\xfe\xaf\xab\x2f\xff\xea" "\x6b\x95\xfe\x2d\xe7\xee\x47\x93\xfd\xdb\xb5\x6c\x64\x6d\xe1\x9b\x2b\xce" "\xfc\xaf\x6f\x5e\x55\x29\x68\xd4\xae\x7d\x75\xdc\x1b\xf5\x77\xdc\x8b\xd8" "\xbe\xd8\x7f\xe5\xb4\xbf\xe7\xa4\xfb\x35\x27\x67\xbf\x4a\x39\xfb\x75\xdd" "\x6f\x1f\x78\xe2\x17\x87\xdd\xf0\xf2\xd6\x30\x58\x7a\x69\xe1\xc4\xba\x1b" "\xed\x57\x47\x3a\x00\x3a\x92\x37\x37\x55\x6f\xac\xa1\x3b\x99\x37\xae\xbc" "\x9c\x6e\x1f\x8f\x78\x7c\xdc\x92\xcd\xeb\x36\x2c\xd9\x74\xc5\x96\x77\xae" "\x59\x37\x74\xd1\xf0\x45\xc3\xeb\xdf\xbd\xf4\xc4\xa5\x27\x0f\x9e\x74\xf2" "\x49\x4b\xc6\xf6\x7c\x49\x9b\xf7\x3f\xd6\xff\xd6\x26\xf7\x7f\xef\x8c\xa7" "\xb9\x9f\xdf\xfa\xb3\xf8\xb3\xb9\xf1\xd4\xa8\x5d\x8d\xfa\x63\xb4\x5d\x8d" "\xfb\xa3\xb6\x45\x79\xcf\xbf\xee\xb3\xbf\xfc\xf5\x77\xdf\xfa\xf0\x59\x95" "\x82\x46\xe3\x3c\x6e\x5d\x3d\x9f\xa4\xcb\xee\xd1\xe3\xbc\x34\xd4\x8c\xb7" "\x89\x7d\x55\x6f\xbf\x1a\xf5\x43\x08\x61\xa0\x5e\x3f\xbc\xf8\xf2\xe9\xe1" "\xd0\x7f\x5a\x73\x6d\xa3\xf3\x50\xed\x91\xa9\xfd\x99\x91\x2c\x1b\x79\x74" "\xd1\x5f\xbe\x77\xca\x77\x17\xbc\xb7\x52\xb0\x57\xce\xf3\xb5\x0d\x6a\xf1" "\x3c\x5f\x6d\xf5\x9e\xf6\x8c\xf5\x57\x39\x3d\x1e\x23\xfb\x69\xff\x76\x86" "\x62\xba\x5f\x3d\x75\xdb\xb5\xf4\xd1\x87\x3b\x6e\xda\xf9\xe7\x2f\x54\xdb" "\x37\x6b\x56\xb8\x7c\x68\xf3\xe6\x8d\x4b\x2b\x3f\x67\xa7\x2d\x9d\x9d\x1c" "\x5e\xb7\x5d\xd9\xd2\xb8\x5f\x0b\xc7\x7e\x16\x43\xda\x2d\xa1\x3a\x4c\xeb" "\x8c\xd7\x51\x1d\xa1\xd2\xbe\xec\xf9\x33\x6e\x9e\xed\xd5\x9e\xf4\xbe\x9e" "\x64\x7e\xdd\xfd\xca\x8a\xf7\xed\x58\x71\xd3\xe2\xe2\xca\x87\x76\xe6\xf5" "\x74\x72\x57\xa5\xc6\xae\xd0\x5b\x59\x26\x6f\xc9\xd9\x72\x6d\xe6\x81\xc5" "\x6a\x83\xeb\xd5\xbf\xbf\x3e\xff\x1a\x8d\x8f\xfe\x8f\x7c\xf7\x9e\x4f\xde" "\xf3\xd3\x13\x27\x8c\x8f\xe3\x2b\x3f\x1b\xed\x57\x92\xb3\x5f\x3f\x79\xe2" "\x8e\xaf\xff\xe0\xab\xff\xfb\xa7\xed\xdb\xaf\x8f\xbc\xef\xb1\xbe\xbf\xfc" "\xf3\x67\x17\x57\x0a\x0e\x94\xf3\x4a\xb5\xd5\x69\x7b\x92\xda\xf3\xca\xf1" "\x21\x34\x7a\xfe\x2d\x0c\xf5\xf7\x23\xf7\xf9\x57\xa8\xbf\x3f\x8d\x9e\x7f" "\xd9\x7a\xf6\x6c\x5f\x3f\xde\x40\x66\xbd\x27\x14\x5b\x7a\xbe\x1e\x7f\x7f" "\xf7\x0b\x67\x3c\x7c\xdd\xa2\xdc\xe7\xeb\xae\x66\x9f\xaf\x57\x8d\x5b\x2b" "\x36\x78\xbe\xee\x2f\xe3\x27\xfb\xfc\x4a\x4a\xe3\xdb\x31\x73\xcf\xaf\x71" "\x03\x25\x59\x36\xf2\xab\xeb\x0f\xda\xfa\xe0\xd5\xcb\x0f\xab\x14\x34\x1a" "\xd7\xd5\xad\xeb\x8d\xeb\x13\x9a\xc8\x3f\x72\xf6\xeb\x97\x1d\xb1\xa4\x5d" "\xe7\x8d\x1f\xbe\xe3\xee\xf3\x9e\x1a\x5a\xf6\xc5\x4a\x41\xeb\xc7\x3d\xb6" "\xa5\x3d\xc7\xbd\x9c\xf6\x6f\x39\xa7\x7f\x47\x5b\x3d\xee\x01\xb5\xfd\xfb" "\xae\x0b\x2f\x59\xbb\xaa\x52\xbe\xff\x5e\xff\xa6\xcb\x06\xf9\x4f\x3c\x95" "\x6c\xba\x62\xcb\xc5\x43\x6b\xd7\x0e\x6f\xdc\xd4\xdc\x7e\x35\xfb\x7a\x1a" "\xeb\xc9\xf6\x72\xab\xaf\xa7\xf1\xec\x36\xbf\xc1\x7e\x15\x26\xec\xd7\xcc" "\xdd\x68\xa6\xbf\x72\x9f\x6f\xe7\x3e\xd9\x7f\xc9\xc0\xff\xfa\xc7\x6c\x7f" "\xad\x6a\xb9\xbf\xc6\x3f\xdf\x7a\x42\xd2\xd2\xeb\xc2\x96\xdf\xcc\x9b\xfd" "\x99\x1f\xdd\x70\x69\xdf\x84\x47\xa5\x15\x9d\x5f\x48\xe3\x17\x5a\x8a\xff" "\xcc\x19\x8f\xbd\x78\xee\x0d\xdf\xff\x76\x6e\xfc\x5b\x62\xfc\x52\x4b\xf1" "\x87\x9e\x7d\xe4\xe6\x85\x07\x5f\xb0\x2d\x37\xfe\x6d\x49\x1a\xbf\xdc\x52" "\xfc\x65\xdb\x1f\xeb\xec\xdd\x7d\xff\x03\xb9\xf1\x07\x63\xfb\xbb\x5a\x8a" "\xff\xf4\xa9\x1f\xfe\xe3\x9d\x4f\xdc\xfb\x7c\x6e\xfc\x10\xe3\xf7\xb4\xd6" "\xff\x2f\x6d\x3b\xf9\xc9\xfe\xfe\xe7\x72\xe3\x3f\x9e\xa4\xf5\x8c\x5e\x23" "\x85\x70\xf7\x2b\x27\xac\xae\xac\x27\xa1\x23\x7d\xbe\xc5\x76\x74\x8c\x6b" "\x57\xc8\xae\x27\x99\xf5\x42\x66\xbd\x58\xbb\x5e\xa8\xcc\xb5\x56\x2b\x28" "\x26\xc9\xf8\xf2\xb8\x5d\x5a\x7e\x64\x4d\x5b\xea\xf9\x54\xbd\xc2\x8e\x10" "\xe2\x55\x58\x79\x41\x65\xf9\x6a\x5c\x0f\xd9\x1b\x93\x97\xef\x6f\x0a\x35" "\xe7\xfe\x7a\xe5\x8d\xae\x53\x01\x00\x5e\xef\xe2\xfb\xff\xf1\x1a\x34\xbe" "\xff\x3f\x9c\x5e\x28\xe5\xcf\x34\xc0\x1e\xd3\xcd\xc3\x16\xe4\xc4\x8d\x79" "\xd8\x9e\xf9\x9c\x59\xe3\xee\x5f\x90\xc6\x8f\x8f\x8f\xf3\x80\xfd\xef\x0a" "\x83\xa3\xcb\x6b\x06\x2a\x17\xfa\x53\x7d\x1f\x21\x3e\x1f\xb2\xf3\x9c\xb1" "\x9e\x63\x8e\x1a\x1f\xa3\xd5\x79\xce\x46\xf3\xef\x8b\x32\xeb\xb1\x5d\x95" "\xf9\xf2\x52\x4d\x1e\x9a\x9a\x98\xd7\x94\x42\x13\xf3\xef\x13\xeb\x99\x7c" "\xfe\x3d\xb3\xfb\x8d\xe7\xc7\x07\xae\x9f\xd0\xac\x81\x9a\x79\xab\xec\xf1" "\xeb\x48\x67\xcc\xea\x7d\xde\x21\xd3\xde\xd2\x68\x84\xbc\xf1\x91\x9d\x17" "\x8b\x9f\xe7\xe8\x9f\x13\x96\x8f\xd5\xd7\xe4\xf8\xc8\x7e\x8e\x26\x1e\x87" "\xec\xe7\x68\x62\x3d\x87\x65\x4e\x9c\xad\x7e\x8e\x66\xba\xe3\x23\x36\x7b" "\x92\xf1\x31\xd6\xe4\xc6\xef\x6f\x4c\x3c\x7e\x61\x92\xfe\xdd\x73\xfc\xea" "\x47\xcb\x1e\xbf\x29\x1c\xef\xf2\xe8\xf6\x33\xfd\xfe\x6c\x1b\xe6\x0d\xeb" "\x9e\xd2\xf6\xde\xbc\xe1\xcc\xbe\x1f\x66\x5e\x32\x27\x7e\xfa\x04\xdb\xdf" "\xe7\x0d\x63\x79\xdc\x8f\x52\x93\xf3\x89\x9f\xcc\x29\x6f\xd7\x7c\x62\x3c" "\x5d\xf4\x85\xb0\x6c\x74\xb9\x6b\x92\xb6\xec\x0d\xe6\x13\x81\xd7\xab\x98" "\xff\xc7\xd7\x88\xd1\xfc\x7f\xf4\x02\xfc\x3f\x32\xdb\x35\xba\x0e\xcd\x5e" "\x35\xc6\x78\xb9\x9f\x13\x2a\xd6\x6f\x4f\xa3\xbc\x63\xe2\xe7\xf4\xba\x5b" "\x7a\x1d\x5f\xb9\x7d\xc3\x57\x3a\xfb\x77\x1f\x93\x7b\x9d\xf3\x40\xb3\x9f" "\xfb\xd9\x30\x6e\xad\xbb\xc1\xe7\x7e\x1a\xf5\xe3\xe2\xcc\x7a\xc3\x7e\xcc" "\x99\xa0\x69\x94\xef\x65\xeb\x69\xd4\xef\xd9\xcf\x65\xf4\x84\xde\x96\xfa" "\xfd\x8e\xad\xb7\xbe\xe7\xf6\xb9\x37\x9e\x9e\xdb\xef\xcb\x2b\x2f\xa4\x8d" "\xfb\xfd\xeb\xe3\xd6\x7a\x1b\xf4\xfb\x01\x90\x2f\xd4\x8f\x2f\x5f\x98\x56" "\xbe\x70\xcd\x01\x92\x2f\xcc\xf4\xfc\xd9\x3e\xcb\x47\xd2\x0f\x3e\xcd\x54" "\x3e\xf2\x89\x9c\xf2\xa9\xe6\x23\xdd\x13\x6e\x54\xf7\x6b\x4c\x6c\xd7\x01" "\x91\x8f\x14\x32\x07\x0f\x00\xa0\x46\xcc\xff\xab\xef\x9f\xa5\xf9\xff\xbf" "\xc4\x0d\xd2\xeb\x88\x46\x79\xeb\xb1\x99\xf5\x18\x2f\x37\x6f\xcd\xb9\x3e" "\xc9\xcb\x5b\x3f\x96\x2e\x2f\xcf\x6c\xdf\x93\xfe\x46\xc5\x14\xaf\x9b\xbb" "\xd2\xe5\x11\xd9\x6b\xcb\xde\x74\x99\xdc\xd6\x6c\x1e\xfa\xff\xc6\xad\xf5" "\x35\xcc\x43\xa7\x97\x37\xe7\xe6\x11\xcb\xdb\xf3\x79\xf1\xdc\x3c\xa2\x9a" "\x67\x4d\x2f\x4f\xcc\x6d\x7f\x35\x4f\x9c\x5e\x9e\x9e\x1b\xbf\x9a\xa7\x4f" "\x2f\x8f\xce\xed\x9f\x6a\x1e\x3d\xbd\x79\x80\xdc\xf8\xd5\x79\x80\x89\x79" "\x6e\xa1\x89\xf8\xfb\x4f\x9e\xdb\x60\xbe\x2e\x53\x59\x5c\x6d\x76\xbe\x6e" "\xff\xcc\xa3\x4b\xb5\xeb\xad\xe5\xd1\xe9\xaf\xcf\xce\x54\x1e\x7d\x76\x08" "\xe1\xb5\x9a\xfe\x88\xa6\x9a\x47\xf7\x4c\xb8\x51\xdd\xaf\x31\x07\x54\x1e" "\x1d\xe4\xd1\x00\xc0\xeb\x4f\xcc\xff\xe3\x65\x5c\xcc\xff\x1f\xce\x6c\x37" "\xdd\xf7\xd9\x73\xf3\x82\x36\x5d\xb7\x67\xff\x1e\x48\x35\xfe\xe3\x7b\x2b" "\xaf\x9c\xe9\xbc\x6f\xa6\xf3\xd6\x99\xce\xeb\x67\x7a\x5e\x62\x6a\x9f\x17" "\xfd\xbf\xd7\x56\xee\xdb\x7f\xf2\xe2\x99\x9e\x17\x6a\x69\x9e\x2c\x9c\x79" "\xf4\x7d\xd7\xce\xde\x7d\xef\x84\x79\xb2\x6a\xfc\xdb\xf6\xf1\xe7\x5d\xf7" "\x42\x5e\x5c\xcf\x84\xbc\x38\xad\xf4\x80\xca\x8b\xeb\x7c\x06\x4b\x5e\x0c" "\x00\xf0\xfa\x16\xf3\xff\xf8\x86\x78\x7e\xfe\x3f\xbd\xfc\xa4\x5e\xfe\xd6" "\x31\x2e\x3f\x91\x9f\xd7\x8d\xff\x06\xcd\xcf\xe3\x7d\xfb\x4f\x7e\xbe\x6f" "\xe7\xbf\x3a\x33\xf5\xc4\xfb\x9a\x9f\xff\x1a\x9f\xff\x5f\xd6\x64\xfb\x0f" "\xdc\xfc\xbf\xf2\x9e\xfb\x5e\xcb\xff\xe3\x7a\xc8\xde\xa8\xd8\x2f\xf3\xff" "\x3a\xe4\xff\x00\x00\xaf\x6f\x31\xff\x8f\xbf\xf6\x18\xff\xfe\xdf\xdf\xa5" "\xeb\xd9\xbf\x5b\x7f\xe0\xe5\xe9\x95\x99\x0d\x79\xba\x3c\x7d\xb2\xf8\xfb" "\xcf\xe7\x54\xda\x3f\xcf\x16\x7c\x0e\x60\xdf\xce\x03\x74\xed\xf9\x8d\x23" "\xf3\x00\x00\x00\xec\x0b\xcf\x3f\x55\x59\x66\x7f\xcf\xfe\xd3\xe9\x32\xfb" "\x7b\xf6\xf5\x7f\x2f\x3f\x09\xe7\xe6\x6c\xdf\xac\x52\x7a\x69\x7c\xc1\xe6" "\x8d\xc3\xc3\xe7\x5d\xba\x61\xd5\xd0\xe6\xe1\xf3\xd6\x5f\xb2\x6a\x78\xd3" "\x79\x97\x6d\x5c\xb3\x79\xf3\xf0\xfa\xca\x76\xe3\xf3\xc6\xff\x33\x2e\x46" "\x33\x79\x63\x6e\xde\x92\xe6\x8d\x1d\xa1\x34\x36\xd7\xd1\xec\xf7\x8d\xce" "\x4d\xdf\x5f\x9c\x9b\xf3\xf7\x10\xb2\xdb\xc7\xb0\x87\x8f\xdd\x98\xf8\xf7" "\x10\xb2\xd5\x76\x35\xf8\x3b\x02\x1d\x63\x99\x6e\xf3\xed\xcd\xfb\xbb\x0a" "\x85\x49\xb6\xef\xae\xb3\x7d\xde\xf1\xce\x8b\xff\xa9\x9c\xed\xa3\xea\xf1" "\xbf\xf0\xb3\xc7\x9f\xb7\x7a\xd3\x79\x6b\xd6\xaf\xd9\xbc\x66\x68\xed\x9a" "\x2d\xc3\xe3\xb7\x1b\xcd\x5a\xbb\xa7\xf0\xbd\x99\xb1\x5b\xa6\xf4\x7d\xa9" "\x99\x1f\x13\x14\xa6\xfe\xfd\x9d\xed\x69\x47\x61\x42\x3b\x3a\xd2\xfe\xc8" "\xfb\x7e\xf6\x24\xd3\x8e\x79\x69\x4b\xe6\xe5\x7d\xff\x41\x4e\xbb\x7f\xfd" "\x0f\x5f\xfb\xfc\xd1\x23\xaf\xdd\x19\xc2\xe0\x21\xc5\xb7\x4c\xab\xff\x92" "\x65\x23\xff\xff\x9c\xe1\x8f\x6d\xde\xf9\xfb\x0d\xa3\xed\x2f\x4c\xda\xfe" "\xea\x96\x69\xbb\x1a\x7d\x5f\x69\x76\xfb\xb8\x3f\xa5\xb5\x97\x6c\xda\x7c" "\xdc\xea\x4b\x2e\x5d\x9f\xfd\x46\xc9\xd6\xc4\xf9\x8c\x42\x75\x7d\x86\xe6" "\x33\xd2\xa7\x7f\xb1\xc9\xf9\x89\x95\x39\xe5\x53\xfd\x9c\x42\x71\xc2\x8d" "\xfd\x53\xd3\xf3\x13\x00\x00\x8c\x13\xdf\xff\x8f\xd7\xb3\xf1\xfd\xc3\xaf" "\xa6\x17\x50\xb1\xbc\xf9\x3c\x7d\x7a\xef\x1f\xe7\xe6\xe9\x83\xcd\xe5\xe9" "\xd9\xef\x25\x6b\x94\xa7\x67\xb7\x8f\xfb\xdb\x6c\x9e\x5e\x9e\x66\x9e\x9e" "\xad\xbf\x51\x9e\x5e\x6f\xfb\x7a\x79\x7a\x5e\xde\x9d\x17\xff\x13\x39\xdb" "\x4f\x55\xf3\xe3\x64\x7a\x9f\xf3\xc8\x1d\x27\xe7\x37\x37\x4e\xb2\xdf\x67" "\x90\x37\x4e\xfe\x33\x67\xfb\xa9\x8e\x93\x64\x9a\xe3\x24\x5b\x7f\xa3\x71" "\x52\x6f\xfb\x7a\xe3\x24\xef\xb8\xe7\xc5\xff\x78\xce\xf6\x79\x9a\x1f\x0f" "\xd3\xfb\x5c\x4e\xee\x78\xb8\xa5\xb9\xf1\xf0\xf6\xcc\x7a\xa3\xf3\x46\x76" "\xfb\xa9\x8e\x87\xc2\x34\xc7\x43\xb6\xfe\x46\xe3\xa1\xde\xf6\xf5\xc6\x43" "\xde\xf1\xcd\x8b\x7f\x56\xce\xf6\xcd\x1a\x3f\x3e\x46\x07\xc6\xd8\xb8\x18" "\x3e\xef\xb2\x4b\x36\x5e\x5c\xb3\xdd\x4c\x7f\xff\xc5\xf4\xdb\x37\xb3\xdf" "\xff\xd1\xaa\xe6\xdb\x3f\xb3\x9f\xfb\x9a\xf9\xf6\xcf\xec\xe7\xca\x66\xbe" "\xfd\xd3\xfb\x5c\x59\x6e\xfb\x1f\x9f\xde\x4c\x58\xf3\xed\x9f\xd9\xef\x77" "\x69\xd5\x5e\x9b\xaf\x4d\x3f\x6c\xd6\xe8\xf3\x67\x8d\xe6\x71\x57\xe4\x94" "\x4f\x75\x1e\x77\xd6\x84\x1b\xfb\x27\xf3\xb8\xb0\xef\xc4\xfc\x3f\xbe\xdd" "\x13\xf3\xff\x1b\xd3\x65\xbb\xdf\x06\xda\x77\xdf\x93\x36\xab\x6e\x2d\xf1" "\xde\xe6\xbf\x27\xcd\xf7\x1e\xd7\x8d\xdf\xa6\xef\x31\x6b\x74\x1d\xe3\xf5" "\x7c\x92\xca\x1a\x9a\xac\xa5\xed\xe1\xf5\x1c\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x39\x9d\xa5\x05\x63\xcb" "\x9d\xd7\x6d\xda\x7d\xd6\x61\x1f\xfa\xf5\x97\x86\x5f\xb9\xfa\xa3\x3f\x5f" "\x77\xcd\xdb\xae\xfc\xe1\x9f\x06\x2e\xfc\xc0\xaf\xee\xea\xfe\xc1\xab\x3b" "\x56\x1d\xb9\xfa\xa9\x0f\x1e\x74\xe1\x7d\x9f\x3b\x7d\xfb\xad\xdf\x79\xf0" "\xe5\xde\x7b\xfe\xf6\xec\xc4\x48\xc5\xf1\xab\x7d\x63\x3f\x4b\xc7\xa6\xab" "\xe5\x10\x92\x17\x92\x10\xca\xbf\xd8\xf5\x8d\x2f\xef\x78\xf4\xd0\xd1\xb2" "\x64\xf4\x51\x49\xdf\xd6\x10\xe6\x25\xf3\x1f\x9c\x97\x64\x02\x0e\xfe\x35" "\x84\xb0\xaa\xda\xce\xf1\x77\xde\xfd\xca\x09\xab\x47\x97\xd7\xdc\xd8\x39" "\xae\x7c\x6e\x26\x48\x76\xbf\x42\x4f\x31\xb6\xa7\xb6\x9d\x21\x5c\xde\x44" "\x67\x71\xc0\x29\xa7\xe3\x6c\xcb\xee\xcb\x8e\x0b\x7f\x78\xff\x8a\x6b\x7f" "\xbb\xf0\x27\x3f\xee\xd8\xf6\xfc\xd6\x3d\x9b\x24\xe5\x9a\xf1\x14\xc2\x9c" "\xf3\x6b\x1f\xdf\x11\x42\xe8\x4a\xff\x8f\x8a\xa3\x6d\x41\x7c\x70\xba\x5c" "\x1e\x42\xe8\xae\x79\xdc\x29\x0d\xda\x75\x54\x93\xed\x5f\x92\xb3\x7e\x78" "\xba\x9c\x95\x2e\x7b\x1a\xc4\x89\xf7\x2f\xca\xac\x17\x32\xdb\x65\xd7\xa3" "\x8e\xcc\xb2\xbb\x41\x7d\xd3\x95\xd7\x8e\x56\xb7\x6b\x64\x76\x66\x3d\x7b" "\x32\x9a\xae\xbc\x76\xc6\xf2\x79\xe9\xf2\x67\xe9\xf2\xd8\x29\xc6\x2f\xc6" "\xff\x49\x28\x24\xa1\x54\x6d\xfe\xda\x64\xcf\x18\x09\x35\xc7\x2d\x09\xc9" "\xd8\xb1\x2c\x57\xd7\x0b\xd5\x63\x1b\xd2\xfd\xcf\xac\x27\x99\xf5\x42\x66" "\xbd\xd8\x91\xd9\xaf\xb1\x7a\xd3\x81\x56\x4c\x92\xf1\xe5\x71\xbb\x4c\x79" "\x3c\x1d\x97\xd2\xf2\x23\x6b\xcf\xd5\x75\x9c\x9d\x53\xfe\xe6\x74\x59\x4e" "\x9f\xa8\xaf\xc6\xf5\x90\xbd\x51\xd1\x33\xe1\x46\x75\xbf\xc6\xc4\x76\xed" "\x9a\xa4\x2d\x7b\x43\xa1\xe6\x1c\x54\xaf\xbc\x7a\xe0\xd3\x83\xd1\x93\x96" "\xf5\x24\xf3\x27\x3c\x66\xa4\x8e\x78\xdf\x8e\x15\x37\x2d\x2e\xae\x7c\x68" "\x67\x5f\x4e\x3b\x92\xbb\x92\x34\x7e\xd2\x52\xfc\x2d\xbf\x99\x37\xfb\x33" "\x3f\xba\xe1\xd2\x05\x79\xf1\xcf\x2f\xa4\xf1\x0b\x0d\xe2\x5f\x3c\xbb\x76" "\x2d\xde\xf7\xcc\x19\x8f\xbd\x78\xee\x0d\xdf\xff\xf6\x82\x90\x6c\xad\x1b" "\xff\x96\x18\xbf\xd8\x52\xfb\x8f\xbf\xbf\xfb\x85\x33\x1e\xbe\x6e\x51\x6e" "\xff\xec\x8a\xfd\x53\x6a\x29\xfe\xd0\xb3\x8f\xdc\xbc\xf0\xe0\x0b\xb6\xe5" "\xf6\xcf\x6d\x31\x7e\xb9\xa5\xf8\xcb\xb6\x3f\xd6\xd9\xbb\xfb\xfe\x07\x72" "\xdb\x3f\x18\xfb\xa7\xab\xa5\xf8\x4f\x9f\xfa\xe1\x3f\xde\xf9\xc4\xbd\xcf" "\xe7\xc6\x0f\x31\x7e\x77\x4b\xf1\x57\x6e\xdf\xf0\x95\xce\xfe\xdd\xc7\xe4" "\xc6\x7f\x20\xf6\x4f\x4f\x4b\xf1\x9f\x79\x69\xdb\xc9\x4f\xf6\xf7\x3f\x37" "\x90\x17\xff\xf1\x18\xbf\xb7\xa5\xf8\x77\x6c\xbd\xf5\x3d\xb7\xcf\xbd\xf1" "\xf4\xdc\xe3\xbb\x3c\xf6\x4f\x5f\x4b\xf1\xcf\x3c\xfa\xbe\x6b\x67\xef\xbe" "\xf7\x88\xbc\x73\x67\x72\x5b\xbb\x5e\x39\x01\xde\x98\x0e\x4a\xaf\xb1\xae" "\x4f\xd7\x5b\xcd\x33\xa7\xab\x26\x5f\xf8\xd6\x40\xa9\x72\xcd\x37\x3b\xfd" "\xdf\xdb\xce\x8a\x32\x46\xeb\x99\x33\x83\xf1\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x7d" "\xfa\xdd\x55\x27\x7e\xfa\x9c\xd3\x3e\xbe\xa2\x94\x84\x90\xe4\x6c\x33\x52" "\x47\xbc\xaf\x38\x6b\xd9\xb2\x81\x16\xea\x1d\x7a\xf6\x91\x9b\x17\x1e\x7c" "\xc1\xb6\xda\xb2\x05\xb9\x5b\x97\x5b\xa8\x01\x00\x00\x00\x88\x62\x1e\x5e" "\xa8\x96\x94\xc3\x82\x70\x59\xd2\x15\x0e\xaf\xbb\x7d\x9c\x23\x38\x3c\xae" "\x25\xe3\xcb\xb3\x73\x08\x31\x4e\x76\x8e\xa0\xd5\x38\x85\x36\xc5\x29\xb6" "\x29\x4e\xa9\x4d\x71\x3a\xda\x14\x67\x56\x9b\xe2\x74\xb6\x29\x4e\x76\xe6" "\x26\x1b\xa7\x1c\x9a\x8b\xd3\x35\x49\x9c\xd2\xe8\xa8\x68\xb2\x3d\xdd\x93" "\xb6\xa7\xf9\x38\x3d\x6d\x8a\x33\xbb\x4d\x71\x7a\xdb\x14\x67\x4e\x9b\xe2" "\xcc\x6d\x53\x9c\xbe\x49\xe3\x34\x3f\x0e\xe7\xb5\x29\xce\xfc\x36\xc5\x39" "\xa8\x4d\x71\x0e\x6e\x53\x9c\x43\xda\x14\xe7\x4d\x6d\x8a\x73\x68\x1b\xe2" "\x3c\x53\x67\x4e\x79\xaa\xe3\xb0\x37\xdd\xf2\xb0\xbc\x38\x63\x37\x8a\x0d" "\xe3\x94\x92\x62\xf5\x8e\x7a\xf3\xe9\x87\xa6\xf5\x1c\x31\xcd\x7a\x7a\x1a" "\xd4\xd3\xdb\xe8\xf5\xb8\xc9\x7a\xba\x9a\xac\xe7\xa8\xcc\xe3\x0a\x53\xac" "\xa7\xdc\x64\x3d\x6f\x9d\x66\x3d\x49\x93\xf5\xbc\x7d\x9a\xf5\x14\x1a\xd4" "\x13\xc7\xff\xe5\xd9\xf6\xa5\x2f\x80\x53\x7d\x1e\x5d\x91\x8d\x13\x5a\x8b" "\xb3\xa5\x4d\x71\xae\x9c\x52\x9c\xe7\x4e\xcd\x8b\x73\x55\x9b\xda\xf3\x85" "\x36\xc5\xf9\x62\x9b\xe2\x5c\x3d\xcd\x38\x00\xcd\x8a\xf9\xff\x9e\x7c\xaf" "\x2f\x74\x96\xde\x1b\xba\xd3\x33\x4e\x76\x16\x20\xe6\xbb\x0b\xc7\x7e\x4e" "\x7c\xbd\xcb\x3b\x21\xc5\x78\x6f\xc9\x94\xcf\x6a\x14\x2f\x9b\xa8\x67\xe2" "\x2d\x9c\x6a\xfb\xb2\x13\x08\x99\x78\x8b\x32\xe5\x1d\xe3\xe2\x95\xaa\xf9" "\xc8\x24\xf1\xca\xb5\xf1\x16\x67\xee\x6c\xb8\xbf\xd9\x09\x85\x4c\xfb\x8e" "\xcd\x94\x77\x36\x8a\x97\x9d\x58\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\x19\xf4\xbb\xab\x4e\xfc\xf4\x39\xa7\x7d\x7c\x45\x48\xc2\xe8\xbf\x51" "\xb7\x77\x65\xb6\x19\xa9\x23\xde\x57\x9c\xb5\x6c\xd9\x40\x0b\xf5\xee\x58" "\x71\xd3\xe2\xe2\xca\x87\x76\xd6\x96\x75\x96\x26\x7d\x48\x47\x0b\xd5\x00" "\x00\x00\x00\x35\x79\xf8\x9e\xe4\xba\x1c\x3a\x4b\x4b\x43\x67\x32\x6b\xdc" "\x76\xe5\x74\x1e\xa0\x9c\xae\x17\xfb\x2a\xcb\xfe\x39\x61\xf9\xe8\x32\x19" "\x28\x8c\xad\x77\x27\xf3\x26\x7d\x5c\x29\x7d\xdc\x92\xcd\xeb\x36\x2c\xd9" "\x74\xc5\x96\x77\xae\x59\x37\x74\xd1\xf0\x45\xc3\xeb\xdf\xbd\xf4\xc4\xa5" "\x27\x0f\x9e\x74\xf2\x49\x4b\x56\xaf\x59\x3b\x3c\x58\xf9\x19\x42\x67\x83" "\x78\x21\x84\xb1\xe9\x87\x4d\x57\x6c\xb9\x78\x68\xed\xda\xe1\x8d\x9b\x2a" "\x85\xd9\xf6\x2f\x48\x1f\xb7\x20\x5d\x4f\xd2\xc7\xf5\xbf\x2b\x0c\x8e\x2e" "\xaf\x49\xdb\x3f\xbf\x41\x7d\x85\x09\xf5\xcd\xdc\x8d\xc6\x47\x0f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\xff\x66\xd7\xee\x62\xe4\xac\xea\x3f\x80\x9f\x67\x66\x76" "\x66\x58\xe8\x9f\xf9\x87\xb7\xa1\xa1\xcb\xa4\x14\x82\x4a\x94\xd6\xad\x29" "\x4a\xd8\x27\x31\x91\x04\xda\xa6\x1b\x12\x33\x8b\xae\xa4\x91\x36\x12\xb7" "\xb4\x81\x96\x54\x1c\xa1\x89\x80\x6d\x34\x26\x90\x26\x4d\xb5\x17\xd6\x54" "\x22\x48\xbc\xe1\x45\x88\x91\x97\x34\xa9\xc1\x6a\x13\xb7\x36\x06\x88\x72" "\xa1\x17\x1a\x50\x4c\x21\xbd\xd0\x92\x31\xdd\x9d\x33\x3b\x33\x3b\xd3\x59" "\x47\x42\xa1\x7e\x3e\x17\xf3\x3c\x73\xce\xef\x9c\xdf\x9c\xb9\xd8\xe4\xfb" "\xcc\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xfe\x9a\xae\x8d\x4e\x56\xc7\xc6" "\x27\x86\x93\x10\x92\x1e\x35\xf5\x2e\xe2\x5c\x36\x9f\xa6\x95\x01\xfa\x7e" "\xf1\xb9\x2d\xdf\x2d\x8c\x9c\xb8\xba\x75\xac\x90\x1b\x60\x23\x00\x00\x00" "\xa0\xaf\x98\xc3\x87\x9a\x23\xc5\x50\xc8\x65\x43\x36\x5c\x3a\xf3\x6e\x69" "\x68\x99\x08\x73\xb9\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf8\xdf\x33\x5d\x1b\x9d\xac\x8e\x8d\x4f\x9c\x9b\x84\x90\xb4\x8c" "\xaf\x6c\xb9\xaf\x77\x11\xe7\xb2\xf9\x34\xad\x0c\xd0\xf7\xf5\xb7\x9f\xf8" "\xd4\x2b\x23\x23\x7f\x69\x1d\x2b\x0f\x74\x02\x00\x00\x00\xa0\x9f\x98\xc3" "\x33\xcd\x91\x62\x28\x87\x2b\xc2\x50\x72\x69\x5b\x5d\x7c\x36\x50\x2f\xb4" "\xaf\xef\xac\x8b\xfb\x2c\x09\x0b\xab\xeb\x7c\x76\xd0\xab\xee\x8a\x05\xd6" "\x5d\xb5\xc0\xba\x8f\xf4\xa9\x5b\xdb\xb8\x6e\x0f\x00\x00\x00\xf0\xe1\x17" "\xf3\x7f\xae\x39\x52\x0a\x85\xdc\xa2\x9e\xf9\xbf\x5f\xae\x8f\x75\x97\x77" "\xd4\x65\x1b\xd7\x41\xfe\x57\x00\x00\x00\x00\xf8\xef\xc4\xfc\x3f\xf7\xb3" "\x7e\x39\x14\x72\xe5\x66\x5e\x5f\x68\xde\x5f\xda\x51\x17\xd7\xf7\xfb\xdd" "\x3e\xae\xbf\xb2\xc7\xfa\x99\xdf\xf3\xbf\xdf\x7b\xfd\x9a\xc6\xd5\xef\xf4" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\xe1\x31\x5d\x1b\x9d\xac\x8e\x8d\x4f\x64" "\x93\x10\x92\x1e\x35\xf5\x2e\xe2\x5c\x36\x9f\xa6\x95\x01\xfa\xae\x78\x7e" "\xf8\x6f\x37\x1f\x7c\x70\x69\xeb\x58\x21\x37\xc0\x46\x00\x00\x00\x40\x5f" "\x31\x87\xcf\x45\xef\x62\x28\xe4\x86\xc3\x50\x38\x77\x26\xf7\x8f\xdc\xb8" "\xef\xa9\xcf\x3f\xf5\xcc\x68\x08\x61\x36\xe6\xe7\xf3\x61\xfb\xfa\xad\x5b" "\xef\x5a\x31\xfb\x1a\xeb\x96\x1f\x3e\x38\xf4\x9d\x43\x6f\x7e\x63\x5e\xdd" "\xf2\xd9\xd7\x33\x76\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe0\x3d\x33\x5d\x1b\x9d\xac\x8e\x8d\x4f\x9c\x93\x84\x90\xf4\xa8" "\xa9\x77\x11\xe7\xb2\xf9\x34\xad\x0c\xd0\xf7\xb5\xcf\x7c\xee\x4f\x8f\x1d" "\x7b\xf6\x8d\xd6\xb1\xf2\x00\xfb\x00\x00\x00\x00\xfd\xc5\x1c\x3e\x97\xfd" "\x8b\xa1\x1c\xf2\x21\x1f\x2e\x9e\x79\xd7\x9a\xf5\x4f\xc9\x74\xac\xef\xf5" "\xcc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38" "\x7b\xdc\xfd\xb5\x7b\xbf\xba\x7e\x6a\x6a\xc3\x5d\x6e\xdc\xb8\x71\xd3\xbc" "\x39\xd3\x7f\x99\x00\x00\x80\xf7\xda\xe5\x21\x09\xf5\xff\xd0\x25\xeb\xce" "\xf4\xa7\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e" "\x08\xa6\x6b\xa3\x93\xd5\xb1\xf1\x89\x62\x12\x42\xd2\xa3\xa6\xde\x45\x9c" "\xcb\xe6\xd3\xb4\x32\x40\xdf\xf4\xb9\x23\x85\x45\x27\x9e\x7f\xb1\x75\xac" "\x3c\xc0\x3e\x00\x00\x00\x40\x7f\x31\x87\xcf\x65\xff\x62\x28\x87\xa1\x30" "\x14\x2e\x9a\x79\xd7\xf9\x4c\xe0\x5f\x31\xff\x97\xde\xe7\x0f\x0a\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x60\x4c\xd7\x46" "\x27\xab\x63\xe3\x13\x8b\x92\x10\x92\x1e\x35\xf5\x2e\xe2\x5c\x36\x9f\xa6" "\x95\x05\x77\xcb\x35\xef\x1e\xdd\xb1\xf7\xd3\x07\xce\xff\xf6\x4d\xad\xb3" "\x85\xdc\x40\x47\x00\x00\x00\x00\xfa\x88\x39\x3c\xdf\x1c\x29\x86\x42\xee" "\xa3\xa1\x10\x2e\x6b\xbc\x9f\x6a\x5f\x90\x64\x1b\xd7\xee\xcf\x05\xe6\xd6" "\x6d\x69\x5b\x36\xbc\xe0\x75\xb5\x10\xb2\x73\xeb\xb2\x0b\x5e\xb7\xb3\xe3" "\x64\xb9\xc6\x69\x66\xd7\x15\xe3\x7e\xa5\xd9\x6b\x73\x5d\x65\xfe\xba\x4a" "\xcb\xba\x72\x68\xb6\xaf\xb4\xad\x0b\xbb\xdb\x56\x2d\xea\xf3\x39\x03\x00" "\x00\x00\x9c\x41\x31\xff\x17\x9a\x23\xa5\x50\xc8\x15\x5a\x72\xee\x8f\xdb" "\xea\x4b\x72\x2e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xc3\x74\x6d" "\x74\xb2\x3a\x36\x3e\x91\x24\x21\x24\x3d\x6a\xea\x5d\xc4\xb9\x6c\x3e\x4d" "\x2b\x03\xf4\xbd\xf7\xd7\xff\x7f\xde\x97\x7e\xb2\x6b\x5b\xeb\x58\x79\x80" "\x7d\x00\x00\x00\x80\xfe\x62\x0e\x9f\xcb\xfe\xc5\x50\x0e\x4b\xc2\xff\x85" "\x25\x33\xb9\x3f\x94\xda\xeb\x63\xdd\xdf\xab\x27\x0f\x3c\xf2\x8f\x3f\x5f" "\x1d\xc2\xb5\x17\x1f\x1d\xc9\x75\x6e\xfb\x83\x78\xf3\xcb\xd7\x6e\x78\xa1" "\xf3\x25\x84\x4c\x7b\x75\x26\x84\xf3\x1b\xfd\x92\x1e\xfd\x7e\xf5\xdb\x47" "\xee\x59\x56\x3f\xf9\x58\x08\xd7\x5e\x94\xbd\x6c\x5e\xbf\x70\xfa\x7e\xed" "\x5b\xa6\xf5\xa7\xab\x1b\xd6\x6c\x3d\x74\x74\x4b\x9f\x2f\x07\x00\x00\x00" "\xce\x12\x31\xff\x0f\x35\x47\x4a\xa1\x90\xbb\xb3\x67\xfe\x8f\xc9\xbb\x4f" "\xfe\x6f\x9a\x09\xe0\xe7\xdf\xb3\xe3\x67\x17\x36\x5e\x1b\x89\xbc\x63\x45" "\xa6\xd4\xe8\x97\x29\xb5\x4f\xc6\xdb\xcf\x2e\x7b\xe2\x8f\x57\xae\xfa\xeb" "\x9b\xa7\xf2\xff\xe9\xfa\x7d\x62\xef\xa6\x03\x17\xb6\x35\x9c\x1d\xe9\x90" "\xa4\xf5\xb1\x4d\xdb\xd6\x1e\x5d\xb9\x3f\x13\x4f\x3d\xdb\x3f\xdb\x71\xde" "\xf8\xbd\x7c\xe1\xeb\x6f\xfc\x73\xe3\xf6\x87\x4f\xce\xf6\x2f\x86\x62\x63" "\x7c\x71\xae\x5b\xff\xf9\xaf\x1d\xce\x49\xeb\x53\x99\x3d\x13\xab\xdf\xdd" "\x53\x6b\xef\x9f\xeb\xf1\x7d\x3f\xf8\x9b\x17\x8f\xfd\x62\xf1\xae\x77\x4e" "\xf5\x7f\xfb\xf2\xe1\x66\xff\xab\x4e\x73\xfe\xd3\xf7\x1f\xbe\xe5\xa1\xdd" "\xd7\xed\x3d\xb8\xb6\xbd\x7f\x08\xa1\xd2\xad\xff\x5b\xef\xdc\x14\x2e\xf9" "\xfd\x1d\x0f\x74\x9e\x7f\xb8\x63\xe3\xd6\x6f\xbe\xf5\xb5\x43\x92\xd6\x0f" "\x2f\x3d\xbe\x7f\xd5\xbe\xf2\xf5\xed\xfd\x93\x8e\xfe\xf1\xfb\xff\xe9\xb1" "\x47\x77\xff\xe8\xe1\x6f\x3d\x13\xfb\xc7\xff\x15\xb9\xfa\x8a\x85\xf6\x8f" "\xcf\x9c\xe2\xf5\xe5\x9d\x17\xec\x78\xe9\xfe\x75\x8b\xdb\xfb\x67\x7a\x9c" "\xff\x85\x5b\x5f\x19\xd9\x5c\xf9\xe6\xef\x3a\xcf\x7f\x7b\xdb\xa9\x72\x3d" "\x3f\xc5\xfc\xf3\x3f\x7e\xcd\x93\xb7\xbd\xba\x3e\xbd\xaf\x73\x0a\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xec\x32\x5d\x1b\x9d\xac\x8e\x8d" "\x4f\x64\x92\x10\x92\x1e\x35\xf5\x2e\xe2\x5c\x36\x9f\xa6\x95\x01\xfa\xbe" "\x7e\xf3\x91\xb7\x6e\xdd\xf5\xc3\xef\xb5\x8e\x95\x07\xd8\x07\x00\x00\x00" "\xe8\x2f\xe6\xf0\xb9\xec\x5f\x0c\xe5\x90\x0f\xf9\x30\x3c\x93\xfb\x9f\xae" "\x6e\x58\xb3\xf5\xd0\xd1\x2d\xa1\x34\x3b\x9b\x34\xae\xb9\xa9\xcd\x77\x6f" "\xfd\xd8\xc6\xcd\xdb\xee\xbc\xfd\x0c\x7d\x72\x00\x00\x00\x60\xa1\x62\xfe" "\xcf\x35\x47\x4a\xa1\x90\x5b\x16\x86\x1a\xf9\x7f\x6c\xd3\xb6\xb5\x47\x57" "\xee\xcf\xc4\xfc\x9f\x89\xf9\x7f\xe3\x1d\x53\x1b\xae\x0d\xcd\xba\x97\x77" "\x5e\xb0\xe3\xa5\xfb\xd7\x2d\x6e\x3e\x27\x08\x61\xe6\xdf\x02\x8a\xa7\xea" "\x3e\x39\x57\x77\xe3\x0d\x47\x4a\xc7\xff\xf0\x95\x2b\xbb\xd6\xad\x98\xab" "\x3b\xbc\xf4\xf8\xfe\x55\xfb\xca\xd7\xc7\xba\xd0\x5a\xb7\x3c\x34\x9f\x4f" "\x3c\x7e\xcd\x93\xb7\xbd\xba\x3e\xbd\xaf\xf9\xf9\x5a\xeb\x3e\xfe\xe5\xcd" "\x53\x8d\xc7\x13\x71\xdf\xe1\x5b\x1e\xda\x7d\xdd\xde\x83\x6b\x9b\xe7\x68" "\x5c\x87\x1b\xfb\xc6\xba\xa9\xcc\x9e\x89\xd5\xef\xee\xa9\xc5\xba\x6c\xe3" "\x5a\x6c\x9c\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x6f\xba\x36" "\x3a\x59\x1d\x1b\x9f\x08\xd9\x10\x92\x1e\x35\xf5\x2e\xe2\x5c\x36\x9f\xa6" "\x95\x01\xfa\xae\x5e\xf6\xf3\x07\xce\x3b\xf1\xec\x92\xd6\xb1\x42\x6e\x80" "\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x37\x3b\x70\x20\x00\x00\x00\x00" "\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xaf\x9f" "\xd0\xb8\x8a\x38\x0e\xe0\x33\xbb\x1b\xb3\xcd\x26\x6d\xd2\x0a\x56\xc5\x34" "\xad\x8a\x52\x0f\x16\x05\x11\xbd\xa8\xa8\x48\x2b\x52\xf0\x54\x29\x52\x6d" "\xed\x41\x14\x04\x11\xa5\x1e\x4c\xa5\x15\x4b\x55\xbc\x08\x56\x2f\x45\x54" "\x50\xa3\x14\x14\x6c\x2c\x96\x56\x49\xc5\x7f\xc5\x8b\x07\x15\x14\xaa\x07" "\xa1\x14\x03\xda\x50\x3c\xa8\x64\x77\x26\x6e\x5e\xf2\x4c\xb3\xa9\x82\xfa" "\xf9\xc0\x32\x99\xd9\xf7\xbe\xef\xf7\xe6\xcd\xce\x66\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfe\x55\xba\x6b\xcb\x9b\xed\x91\x9d\x0f\x4e\xdc\x76\xde\x4d\x9f\x3c" "\x7e\xcf\xc9\xc7\x6e\x79\xef\xfe\xed\x97\x3c\xfa\xfa\x0f\x43\x9b\x6f\xf8" "\x78\x5f\xcf\x2b\xa7\xc6\xb6\xac\xdc\xfa\xf5\x8d\xcb\x36\x1f\xb8\x77\xed" "\xe8\x9e\x17\x0f\xff\xd2\xf7\xce\x6f\xc7\xe6\x0c\x7e\xa4\xd5\xac\x4e\xdd" "\x7a\x08\xf1\x44\x0c\xa1\xfe\xfe\xf8\x73\x4f\x8c\x7d\x7a\xce\xe4\x58\x0c" "\x21\x54\x63\xff\x70\x08\x03\x71\xe9\xe1\x81\x58\x48\x58\xf3\x6b\x08\x61" "\xcb\x54\x9d\xd3\xdf\x7c\xfb\xe4\x95\x5b\x27\xdb\xed\xbb\xbb\xa7\x8d\x2f" "\x29\x84\x14\xef\x2b\x34\xaa\xb9\x9e\x96\xfe\xe9\xf5\xf2\xdf\x52\x4f\xeb" "\x6c\xdb\xc4\xc3\x97\x85\x6f\xaf\xdf\xb0\xe3\xf3\x15\x6f\xbd\xd9\x35\x72" "\x7c\xf8\xcf\x43\x62\xbd\x6d\x3d\x85\xb0\x78\x53\xfb\xf9\x5d\x21\x84\x45" "\xe9\x35\x29\xaf\xb6\xe5\xf9\xe4\xd4\xae\x0f\x21\xf4\xb4\x9d\x77\xf5\x1c" "\x75\x5d\x78\x9a\xf5\x5f\x5e\xd2\x3f\x3f\xb5\x67\xa5\xb6\x31\x47\x4e\x7e" "\x7f\x55\xa1\x5f\x29\x1c\x57\xec\x67\x5d\x85\xb6\x67\x8e\xeb\x2d\x54\xab" "\x8e\xda\x69\x1e\xb7\x70\xbd\x85\x7e\x71\x33\x5a\xa8\xb2\x3a\xf3\xf8\x40" "\x6a\xdf\x4d\xed\xea\x79\xe6\x57\xf3\x2b\x86\x4a\x0c\xb5\xa9\xf2\xef\x8b" "\xd3\x6f\x25\x3f\xb7\xc9\xe1\xae\xb6\x7d\x30\x86\xca\xd4\xb3\x0d\xe9\xfe" "\x0b\xfd\x58\xe8\x57\x0a\xfd\x6a\x57\xe1\xbe\x9a\x6b\x33\x2d\xb4\x6a\x8c" "\xd3\xc7\xf3\x71\x85\xf1\xbc\x1d\xd7\xd2\xf8\xca\xf6\xbd\x7a\x16\xb7\x97" "\x8c\x9f\x9b\xda\x7a\xfa\xa0\x9e\xca\xfd\x50\xfc\xa3\xa5\x31\xe3\x8f\xa9" "\xfb\x6a\xca\x75\x8d\xff\x45\x2d\xff\x84\x4a\xdb\x1e\x34\xdb\xf8\xd4\xc3" "\x4e\x0f\xa3\x91\xc6\x1a\x71\xe9\x8c\x73\x7e\x9f\x45\x7e\x6f\x6c\xc3\x53" "\x17\x57\x37\x7e\x70\xa4\xbf\xa4\x8e\xb8\x2f\xa6\xfc\xd8\x51\xfe\xb6\xcf" "\x06\x7a\xef\x7c\x63\xd7\x43\xcb\xcb\xf2\x37\x55\x52\x7e\xa5\xa3\xfc\xef" "\xd6\x1d\xfd\xe9\x8e\x5d\x2f\xbd\x50\x9a\xff\x6c\xce\xaf\x76\x94\x7f\xc5" "\xc1\x9e\x13\xeb\x3e\xdc\xb9\xaa\x74\x7e\xc6\xf3\xfc\xd4\x9a\x1f\xe5\xf9" "\xe6\xdf\x75\xec\xa3\xa7\x57\x9c\x7d\xf7\xc8\x6c\xcf\xba\x99\xbf\x37\xe7" "\xd7\xe7\x53\xff\x78\xbe\xc0\x75\xa3\x47\xbb\xfb\x26\x0e\x1e\x4a\xf5\xcf" "\xd8\x68\xe3\x9a\x3c\x3f\x8b\x3a\x9a\x9f\x6f\xae\xbd\xf9\xfb\xd7\xbe\xdc" "\x7f\xbc\x74\x7e\x42\xce\xef\xe9\x28\x7f\xe3\xe8\x03\xcf\x74\x0f\x4e\x5c" "\x5a\x9a\x7f\xa8\xf5\x51\x68\x34\x57\x68\x07\xeb\xe7\xe7\x91\xab\xbe\x1a" "\x1c\xfc\x71\xa8\x2c\xff\x8b\x3c\xff\x7d\xb3\xe4\xc7\x39\xf3\x5f\x1d\xde" "\x73\xcd\xcb\x4b\x76\xaf\x2d\x5d\x9f\xeb\xf3\xfc\xf4\x77\x54\xff\xad\x17" "\x1d\xd8\xd1\x3b\xb1\xff\x82\xb2\xbd\x33\xee\x3d\x53\xdf\x9c\x00\xff\x4f" "\xcb\xd2\xff\x58\x4f\xa6\x7e\xa7\xbf\x33\x17\xaa\xed\xf7\xc2\xf3\x43\xb5" "\xd6\x37\x50\x6f\x7a\xf5\x9d\xc9\x0b\x15\x4c\x5e\x67\xf1\xdf\x98\x0f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x1f\xec\xc0\x01\x09" "\x00\x00\x00\x80\xa0\xff\xaf\xdb\x11\x28\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x53" "\x01\x00\x00\xff\xff\x23\x8f\x21\xbb", 22995)); NONFAILING(syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000200, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_RDONLY|MS_NOEXEC|MS_MANDLOCK|0x80*/ 0x28000c9, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x59d3, /*img=*/0x200000005c00)); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }