// https://syzkaller.appspot.com/bug?id=150e74662b9e2d35bab0af23c58cd0f2192a3bc8 // 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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 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; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x2010880 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x5 (1 bytes) // size: len = 0x6115 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6115) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000080, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000000, "./file1\000", 8)); NONFAILING(memcpy( (void*)0x200000006600, "\x78\x9c\xec\xdd\x4b\x8f\x1c\x57\xd9\x07\xf0\xa7\xaf\x73\xf1\x1b\x67\x94" "\x45\x94\xd7\x42\x68\xe2\x84\x4b\x08\xf1\x35\x18\x43\x80\x24\x0b\x58\xb0" "\xc9\x02\x79\x8b\x6c\x4d\x26\x91\x85\x03\xc8\x36\xc8\x89\x2c\x3c\xd1\x6c" "\x58\xb0\xe2\x13\x80\x90\x58\x22\xc4\x12\xb1\xe0\x03\x64\xc1\x96\x1d\x2b" "\x56\x58\xb2\x91\x40\x59\x51\xa8\x66\xce\xf1\x54\xb7\xbb\xdd\x63\xc6\xd3" "\xd5\x9e\xf3\xfb\x49\xe3\xaa\xa7\x4e\xf5\xf4\x29\xff\xbb\xfa\x32\x55\xd5" "\x27\x00\x00\x00\x00\x00\x00\x00\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\xf8\xee\x77" "\xbe\x77\xb6\x13\x11\x97\x7f\x9a\x16\xac\x45\xfc\x5f\xf4\x22\xba\x11\x2b" "\x75\xbd\x1e\x11\x2b\xeb\x6b\x79\xfd\x7e\x44\xbc\x10\x3b\xcd\xf1\x7c\x44" "\x0c\x96\x22\xea\xdb\xef\xfc\xf3\x6c\xc4\xeb\x11\xf1\xc9\xf1\x88\x7b\xf7" "\x6f\x6f\xd4\x8b\xcf\xed\xb3\x1f\xdf\xfe\xfd\x5f\x7f\xf3\xfd\x63\xef\xfc" "\xe5\x77\x83\xd3\xff\xfe\xc3\xcd\xde\x1b\xd3\xd6\xbb\x75\xeb\x17\xff\xfa" "\xe3\x9d\x83\x6d\x33\x00\x00\x00\x94\xa6\xaa\xaa\xaa\x93\x3e\xe6\x9f\x48" "\x9f\xef\xbb\x6d\x77\x0a\x00\x98\x8b\xfc\xfa\x5f\x25\x79\xf9\x91\xaf\x7f" "\xf9\xf7\x77\xfe\xb4\x48\xfd\x51\xab\xd5\x6a\xb5\x7a\x0e\x75\x53\x35\xd9" "\x9d\x66\x11\x11\x5b\xcd\xdb\xd4\xef\x19\x1c\x8e\x07\x80\xa7\xcc\x56\x7c" "\xda\x76\x17\x68\x91\xfc\x8b\xd6\x8f\x88\x63\x6d\x77\x02\x58\x68\x9d\xb6" "\x3b\xc0\xa1\xb8\x77\xff\xf6\x46\x27\xe5\xdb\x69\xbe\x1e\xac\xef\xb6\xe7" "\x73\x41\x46\xf2\xdf\xea\x3c\xb8\xbe\x63\xda\x74\x96\xf1\x73\x4c\xe6\xf5" "\xf8\xda\x8e\x5e\x3c\x37\xa5\x3f\x2b\x73\xea\xc3\x22\xc9\xf9\x77\xc7\xf3" "\xbf\xbc\xdb\x3e\x4c\xeb\x1d\x76\xfe\xf3\x32\x2d\xff\xe1\xee\xa5\x4f\xc5" "\xc9\xf9\xf7\xc6\xf3\x1f\x73\x74\xf2\xef\x4e\xcc\xbf\x54\x39\xff\xfe\x63" "\xe5\xdf\x93\x3f\x00\x00\x00\x00\x00\x2c\xb0\xfc\xf7\xff\xb5\x96\x8f\xff" "\x2e\x1d\x7c\x53\xf6\xe5\x51\xc7\x7f\xd7\xe7\xd4\x07\x00\x00\x00\x00\x00" "\x00\x00\x78\xd2\x0e\x3a\xfe\xdf\x03\xc6\xff\x03\x00\x00\x80\x85\x55\x7f" "\x56\xaf\xfd\xea\xf8\xde\xb2\x69\xdf\xc5\x56\x2f\xbf\xd4\x89\x78\x66\x6c" "\x7d\xa0\x30\xe9\x62\x99\xd5\xb6\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x25\xe9\xef\x9e\xc3\x7b\xa9\x13\x31\x88\x88\x67\x56\x57\xab\xaa" "\xaa\x7f\x9a\xc6\xeb\xc7\x75\xd0\xdb\x3f\xed\x4a\xdf\x7e\x28\x59\xdb\x4f" "\xf2\x00\x00\xb0\xeb\x93\xe3\x63\xd7\xf2\x77\x22\x96\x23\xe2\x52\xfa\xae" "\xbf\xc1\xea\xea\x6a\x55\x2d\xaf\xac\x56\xab\xd5\xca\x52\x7e\x3f\x3b\x5c" "\x5a\xae\x56\x1a\x9f\x6b\xf3\xb4\x5e\xb6\x34\x9c\xfd\x7e\xb8\x97\xee\x6c" "\xb9\x71\xbb\xa6\x59\x9f\x97\x67\xb5\x8f\xff\xbe\xba\xe3\xc3\xaa\x37\xbb" "\x63\x4f\xca\x20\x6d\xe0\x94\xe6\x16\x82\x06\x80\x86\xdd\x57\xa3\x7b\x5e" "\x91\x8e\x98\xaa\x7a\x76\xda\x9b\x0f\x18\x61\xff\x3f\x7a\xec\xff\xec\x47" "\xdb\x8f\x53\x00\x00\x00\xe0\xf0\x55\x55\x55\x75\xd2\xd7\x79\x9f\x48\xc7" "\xfc\xbb\x6d\x77\x0a\x00\x98\x8b\xfc\xfa\x3f\x7e\x5c\xe0\x50\xea\x88\xc3" "\xfd\xfd\x6a\xb5\x5a\xad\x56\xab\x1f\x59\x37\x55\x93\xdd\x69\x16\x11\xb1" "\xd5\xbc\x4d\xfd\x9e\xc1\x70\xfc\x00\xf0\x94\xd9\x8a\x4f\xdb\xee\x02\x2d" "\x92\x7f\xd1\xfa\x11\xf1\x42\xdb\x9d\x00\x16\x5a\xa7\xed\x0e\x70\x28\xee" "\xdd\xbf\xbd\xd1\x49\xf9\x76\x9a\xaf\x07\x69\x7c\xf7\x7c\x2e\xc8\x48\xfe" "\x5b\x9d\x9d\xdb\xe5\xdb\x4f\x9a\xce\x32\x7e\x8e\xc9\xbc\x1e\x5f\xdb\xd1" "\x8b\xe7\xa6\xf4\xe7\xf9\x39\xf5\x61\x91\xe4\xfc\xbb\xe3\xf9\x5f\xde\x6d" "\x1f\xa6\xf5\x0e\x3b\xff\x79\x99\x96\x7f\xbd\x9d\x6b\x2d\xf4\xa7\x6d\x39" "\xff\xde\x78\xfe\x63\x8e\x4e\xfe\xdd\x89\xf9\x97\x2a\xe7\xdf\x7f\xac\xfc" "\x7b\xf2\x07\x00\x00\x00\x00\x80\x05\x96\xff\xfe\xbf\xe6\xf8\x6f\xde\x64" "\x00\x00\x00\x00\x00\x00\x00\x78\xea\xdc\xbb\x7f\x7b\x23\x5f\xf7\x9a\x8f" "\xff\x7f\x66\xc2\x7a\xae\xff\x3c\x9a\x72\xfe\x1d\xf9\x17\x29\xe7\xdf\x1d" "\xcb\xff\x8b\x63\xeb\xf5\x1a\xf3\x77\xdf\xde\xcb\xff\x9f\xf7\x6f\x6f\xfc" "\xf6\xe6\x3f\xfe\x3f\x4f\xf7\x9b\xff\x52\x9e\xe9\xa4\x47\x56\x27\x3d\x22" "\x3a\xe9\x9e\x3a\xfd\x34\x3d\xc8\xd6\x3d\x6c\x7b\xd0\x1b\xd6\xf7\x34\xe8" "\x74\x7b\xfd\x74\xce\x4f\x35\x78\x2f\xae\xc6\xb5\xd8\x8c\x33\x23\xeb\x76" "\xd3\xff\xc7\x5e\xfb\xd9\x91\xf6\xba\xa7\x83\x91\xf6\x73\x23\xed\xfd\x87" "\xda\xcf\x8f\xb4\x0f\xd2\xf7\x0e\x54\x2b\xb9\xfd\x54\x6c\xc4\x8f\xe2\x5a" "\xbc\xbb\xd3\x5e\xb7\x2d\xcd\xd8\xfe\xe5\x19\xed\xd5\x8c\xf6\x9c\x7f\xcf" "\xfe\x5f\xa4\x9c\x7f\xbf\xf1\x53\xe7\xbf\x9a\xda\x3b\x63\xd3\xda\xdd\x8f" "\xbb\x0f\xed\xf7\xcd\xe9\xa4\xfb\x79\xeb\xea\x67\x7f\x7e\xe6\xf0\x37\x67" "\xa6\xed\xe8\x3d\xd8\xb6\xa6\x7a\xfb\x4e\xb6\xd0\x9f\x9d\xff\x93\x63\xc3" "\xf8\xc9\x8d\xcd\xeb\xa7\x6e\x5d\xb9\x79\xf3\xfa\xd9\x48\x93\x91\xa5\xe7" "\x22\x4d\x9e\xb0\x9c\xff\x60\xe7\x67\x69\xef\xf9\xff\xa5\xdd\xf6\xfc\xbc" "\xdf\xdc\x5f\xef\x7e\x3c\x7c\xec\xfc\x17\xc5\x76\xf4\xa7\xe6\xff\x52\x63" "\xbe\xde\xde\x57\xe6\xdc\xb7\x36\xe4\xfc\x87\xe9\x27\xe7\xff\x6e\x6a\x9f" "\xbc\xff\x3f\xcd\xf9\x4f\xdf\xff\x5f\x6d\xa1\x3f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\x28\x55\x55\xed\x5c\x22\xfa\x56\x44\x5c\x48" "\xd7\xff\xb4\x75\x6d\x26\x00\x30\x5f\xf9\xf5\xbf\x4a\xf2\x72\xb5\x5a\x5d" "\x58\xdd\x8b\xc5\xea\x8f\x5a\xad\x3e\x94\xba\xa9\x9a\xec\xcd\x66\x11\x11" "\x7f\x6e\xde\xa6\x7e\xcf\xf0\xb3\x49\xbf\x0c\x00\x58\x64\xff\x89\x88\xbf" "\xb5\xdd\x09\x5a\x23\xff\x82\xe5\xef\xfb\xab\xa7\x2f\xb7\xdd\x19\x60\xae" "\x6e\x7c\xf8\xd1\x0f\xae\x5c\xbb\xb6\x79\xfd\x46\xdb\x3d\x01\x00\x00\x00" "\x00\x00\x00\x00\xfe\x57\x79\xfc\xcf\xf5\xc6\xf8\xcf\x2f\x47\xc4\xda\xd8" "\x7a\x23\xe3\xbf\xbe\x1d\xeb\x07\x1d\xff\xb3\x9f\x67\x1e\x0c\x30\xfa\x84" "\x07\xfa\x9e\x62\xbb\x3b\xec\x75\x1b\xc3\x8d\xbf\x18\x3b\xe3\x73\x9f\x9a" "\x36\xfe\xf7\xc9\x78\xf4\xf8\xdf\xfd\x19\xf7\x37\x98\xd1\x3e\x9c\xd1\xbe" "\x34\xa3\x7d\x79\xe2\xd2\xbd\xb4\x26\x5e\xe8\xd1\x90\xf3\x7f\xb1\x31\xde" "\x79\x9d\xff\x89\xb1\xe1\xd7\x4b\x18\xff\x75\x7c\xcc\xfb\x12\xe4\xfc\x4f" "\x36\x1e\xcf\x75\xfe\x5f\x18\x5b\xaf\x99\x7f\xf5\xeb\x85\xcb\x7f\x6b\xbf" "\x2b\x6e\x47\x77\x24\xff\xd3\x37\x3f\xf8\xf1\xe9\x1b\x1f\x7e\xf4\xda\xd5" "\x0f\xae\xbc\xbf\xf9\xfe\xe6\x0f\xcf\x9f\x3d\x7b\xe6\xfc\x85\x0b\x17\x2f" "\x5e\x3c\xfd\xde\xd5\x6b\x9b\x67\x76\xff\x3d\x9c\x5e\x2f\x80\x9c\x7f\x1e" "\xfb\xda\x79\xa0\x65\xc9\xf9\xe7\xcc\xe5\x5f\x96\x9c\xff\xe7\x52\x2d\xff" "\xb2\xe4\xfc\x3f\x9f\x6a\xf9\x97\x25\xe7\x9f\xdf\xef\xc9\xbf\x2c\x39\xff" "\xfc\xd9\x47\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\xa5\x54\xcb" "\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\xbf\x9c\x6a\xf9\x97\x25\xe7" "\xff\x5a\xaa\x1f\x23\x7f\x5f\x13\x7d\x04\xe4\xfc\x4f\xa5\xda\xfe\x5f\x96" "\x9c\xff\xe9\x54\xef\x23\x7f\xfb\xfd\x11\x92\xf3\xcf\x47\xb8\xec\xff\x65" "\xc9\xf9\xe7\x33\x1b\xe4\x5f\x96\x9c\xff\xb9\x54\xcb\xbf\x2c\x39\xff\xf3" "\xa9\x96\x7f\x59\x72\xfe\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x25\xd5\xf2\x2f" "\x4b\xce\xff\x42\xaa\xe5\x5f\x96\x9c\xff\x57\x53\x2d\xff\xb2\xe4\xfc\x2f" "\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xeb\xa9\x96\x7f" "\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff" "\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\x7f\x33\xd5\xf2" "\x2f\xcb\xde\xf7\xff\x9b\x31\x63\xc6\x4c\x9e\x69\xfb\x99\x09\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x18\x37\x8f\xd3\x89\xdb\xde\x46\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xcb\x0e\x1c\x08\x00\x00" "\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76" "\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xb0\x77\x77\x31\x72\x9d\xf5\x19\xc0\xcf\xec\x87\xbd\x76\x08" "\x31\x10\x82\x93\x1a\xd8\x24\x26\x84\x64\xc9\xae\xed\xc4\x1f\xb4\x29\x26" "\x7c\x36\x40\x29\x90\x50\xe8\x07\x8e\xeb\x5d\x9b\x05\x7f\xe1\x5d\x97\x40" "\x91\x6c\x1a\x28\x91\x30\x2a\xaa\xa8\x9a\x5e\xb4\x05\x84\xda\x48\x55\x45" "\x54\x71\x41\x2b\x4a\x73\x51\xf5\xe3\xaa\xb4\x17\xf4\xa6\xa2\xaa\x84\xd4" "\xa8\x0a\x28\x20\x21\xb5\x88\x66\xab\x99\xf3\xbe\xaf\x67\x66\x67\xe7\xec" "\x7a\xc7\xeb\xd9\xf3\xfe\x7e\x52\xfc\xf7\xee\x9c\x99\x73\xe6\xcc\x3b\xb3" "\xfb\xac\xf3\xec\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x6e\x7d\xe3" "\xdc\x67\x1b\x45\x51\x34\xff\x6b\xfd\xb1\xa3\x28\x5e\xd0\xfc\xfb\xb6\xc9" "\x1d\xad\xcf\xbd\xee\x5a\x1f\x21\x00\x00\x00\xb0\x5e\xff\xd7\xfa\xf3\xb9" "\x1b\xd2\x27\x0e\xaf\xe2\x4a\x6d\xdb\xfc\xc3\x2b\xfe\xf9\xeb\x4b\x4b\x4b" "\x4b\xc5\xfb\x47\x7f\x7f\xfc\x8b\x4b\x4b\xe9\x82\xc9\xa2\x18\xdf\x5a\x14" "\xad\xcb\xa2\xa7\xfe\xf3\x03\x8d\xf6\x6d\x82\xc7\x8a\x89\xc6\x48\xdb\xc7" "\x23\x15\xbb\x1f\xad\xb8\x7c\xac\xe2\xf2\xf1\x8a\xcb\xb7\x54\x5c\xbe\xb5" "\xe2\xf2\x89\x8a\xcb\x97\x9d\x80\x65\xb6\x95\x3f\x8f\x69\xdd\xd8\xee\xd6" "\x5f\x77\x94\xa7\xb4\xb8\xb1\x18\x6f\x5d\xb6\xbb\xc7\xb5\x1e\x6b\x6c\x1d" "\x19\x89\x3f\xcb\x69\x69\xb4\xae\xb3\x34\x7e\xbc\x98\x2f\x4e\x16\x73\xc5" "\x4c\xc7\xf6\xe5\xb6\x8d\xd6\xf6\xdf\xbc\xb5\xb9\xaf\xb7\x15\x71\x5f\x23" "\x6d\xfb\xda\xd5\x5c\x21\x3f\xfc\xe4\xb1\x78\x0c\x8d\x70\x8e\x77\x77\xec" "\xeb\xf2\x6d\x46\xdf\x7f\x43\x31\xf9\xa3\x1f\x7e\xf2\xd8\x9f\x2e\x3e\x7b" "\x73\xaf\x59\x79\x1a\x3a\x6e\xaf\x3c\xce\x3b\x6f\x6b\x1e\xe7\xa7\xc3\x67" "\xca\x63\x6d\x14\x5b\xd3\x39\x89\xc7\x39\xd2\x76\x9c\xbb\x7a\x3c\x26\xa3" "\x1d\xc7\xd9\x68\x5d\xaf\xf9\xf7\xee\xe3\x7c\x6e\x95\xc7\x39\x7a\xf9\x30" "\x37\x54\xf7\x63\x3e\x51\x8c\xb4\xfe\xfe\xed\xd6\x79\x1a\x6b\xff\xb1\x5e" "\x3a\x4f\xbb\xc2\xe7\xfe\xe7\xf6\xa2\x28\x2e\x5e\x3e\xec\xee\x6d\x96\xed" "\xab\x18\x29\xb6\x77\x7c\x66\xe4\xf2\xe3\x33\x51\xae\xc8\xe6\x6d\x34\x97" "\xd2\x8b\x8b\xb1\x35\xad\xd3\x5b\x57\xb1\x4e\x9b\x73\x76\x77\xe7\x3a\xed" "\x7e\x4e\xc4\xc7\xff\xd6\x70\xbd\xb1\x15\x8e\xa1\xfd\x61\xfa\xfe\xa7\xb6" "\x2c\x7b\xdc\xd7\xba\x4e\xa3\xe6\xbd\x5e\xe9\xb9\xd2\xbd\x06\x07\xfd\x5c" "\x19\x96\x35\x18\xd7\xc5\xb7\x5b\x77\xfa\xf1\x9e\x6b\x70\x77\xb8\xff\x9f" "\xbc\x63\xe5\x35\xd8\x73\xed\xf4\x58\x83\xe9\x7e\xb7\xad\xc1\xdb\xaa\xd6" "\xe0\xc8\x96\xd1\xd6\x31\xa7\x07\xa1\xd1\xba\xce\xe5\x35\xb8\xa7\x63\xfb" "\xd1\xd6\x9e\x1a\xad\xf9\xcc\x1d\xfd\xd7\xe0\xf4\xe2\xa9\xb3\xd3\x0b\x1f" "\xff\xc4\x6b\xe7\x4f\x1d\x3d\x31\x77\x62\xee\xf4\xbe\x3d\x7b\x66\xf6\xed" "\xdf\x7f\xf0\xe0\xc1\xe9\xe3\xf3\x27\xe7\x66\xca\x3f\xaf\xf0\x6c\x0f\xbf" "\xed\xc5\x48\x7a\x0e\xdc\x16\xce\x5d\x7c\x0e\xbc\xba\x6b\xdb\xf6\xa5\xba" "\xf4\xe5\xc1\x3d\x0f\x27\xfa\x3c\x0f\x77\x74\x6d\x3b\xe8\xe7\xe1\x58\xf7" "\x9d\x6b\x6c\xcc\x13\x72\xf9\x9a\x2e\x9f\x1b\x0f\x35\x4f\xfa\xc4\xa5\x91" "\x62\x85\xe7\x58\xeb\xf1\xb9\x6b\xfd\xcf\xc3\x74\xbf\xdb\x9e\x87\x63\x6d" "\xcf\xc3\x9e\x5f\x53\x7a\x3c\x0f\xc7\x56\xf1\x3c\x6c\x6e\x73\xf6\xae\xd5" "\x7d\xcf\x32\xd6\xf6\x5f\xaf\x63\xb8\x5a\x5f\x0b\x76\xb4\xad\xc1\xee\xef" "\x47\xba\xd7\xe0\xa0\xbf\x1f\x19\x96\x35\x38\x11\xd6\xc5\xbf\xdf\xb5\xf2" "\xd7\x82\x5d\xe1\x78\x1f\x9f\x5a\xeb\xf7\x23\xa3\xcb\xd6\x60\xba\xbb\xe1" "\xb5\xa7\xf9\x99\xf4\xfd\xfe\xc4\xc1\xd6\xe8\xb5\x2e\x6f\x69\x5e\x70\xdd" "\x96\xe2\xfc\xc2\xdc\xb9\x7b\x1e\x3d\xba\xb8\x78\x6e\x4f\x11\xc6\x86\x78" "\x49\xdb\x5a\xe9\x5e\xaf\xdb\xdb\xee\x53\xb1\x6c\xbd\x8e\xac\x79\xbd\x1e" "\x9e\x7f\xc5\xe3\xb7\xf4\xf8\xfc\x8e\x70\xae\x26\x5e\xdb\xfc\x63\x62\xc5" "\xc7\xaa\xb9\xcd\xbd\xf7\xf4\x7f\xac\x5a\x5f\xdd\x7a\x9f\xcf\x8e\xcf\xee" "\x2d\xc2\x18\xb0\x8d\x3e\x9f\xbd\xbe\x9a\x37\xcf\x67\xca\x92\x7d\xce\x67" "\x73\x9b\x4f\x4f\xaf\xff\x7b\xf1\x94\x4b\xdb\x5e\x7f\xc7\x57\x78\xfd\x8d" "\xb9\xff\xf9\x72\x7f\xe9\xa6\x1e\x1b\x1d\x1f\x2b\x9f\xbf\xa3\xe9\xec\x8c" "\x77\xbc\x1e\x77\x3e\x54\x63\xad\xd7\xae\x46\x6b\xdf\xcf\x4d\xaf\xee\xf5" "\x78\x3c\xfc\xb7\xd1\xaf\xc7\x37\xf6\x79\x3d\xde\xd9\xb5\xed\xa0\x5f\x8f" "\xc7\xbb\xef\x5c\x7c\x3d\x6e\x54\xfd\xb4\x63\x7d\xba\x1f\xcf\x89\xb0\x4e" "\x4e\xce\xf4\x7f\x3d\x6e\x14\x4b\x4b\x3b\xf7\xae\x75\x4d\x8e\xf5\x7d\x3d" "\xbe\x3d\xcc\x46\x38\xff\xaf\x09\x49\x21\xe5\xa2\xb6\xb5\xb3\xd2\xba\x4d" "\xfb\x1a\x1b\x1b\x0f\xf7\x6b\x2c\xee\xa1\x73\x9d\xee\xeb\xd8\x7e\x3c\x64" "\xb3\xe6\xbe\x9e\xdc\x7b\x65\xeb\xf4\xce\xdb\xcb\xdb\x1a\x4d\xf7\xee\xb2" "\x8d\x5a\xa7\x93\x5d\xdb\x0e\x7a\x9d\xa6\xd7\xab\x95\xd6\x69\xa3\xea\xa7" "\x6f\x57\xa6\xfb\xf1\x9c\x08\xeb\xe2\xc6\x7d\xfd\xd7\x69\x73\x9b\xa7\xef" "\x5d\xff\x6b\xe7\xb6\xf8\xd7\xb6\xd7\xce\x2d\x55\x6b\x70\x7c\x74\x4b\xf3" "\x98\xc7\xd3\x22\x2c\x5f\xef\x97\xb6\xc5\x35\x78\x4f\x71\xac\x38\x53\x9c" "\x2c\x66\x5b\x97\x6e\x69\xad\xa7\x46\x6b\x5f\x53\xf7\xad\x6e\x0d\x6e\x09" "\xff\x6d\xf4\x6b\xe5\xce\x3e\x6b\xf0\xce\xae\x6d\x07\xbd\x06\xd3\xd7\xb1" "\x95\xd6\x5e\x63\x6c\xf9\x9d\x1f\x80\xee\xc7\x73\x22\xac\x8b\x27\xee\xeb" "\xbf\x06\x9b\xdb\xbc\xe9\xc0\x60\xbf\x77\xbd\x33\x7c\x26\x6d\xd3\xf6\xbd" "\x6b\xf7\xcf\xd7\x56\xfa\x99\xd7\x2d\x5d\xa7\xe9\x6a\xfe\xcc\xab\x79\x9c" "\x7f\x77\xa0\xff\xcf\x66\x9b\xdb\x9c\x3c\xb8\xd6\x9c\xd9\xff\x3c\xdd\x1d" "\x3e\x73\x5d\x8f\xf3\xd4\xfd\xfc\x5d\xe9\x39\x35\x5b\x6c\xcc\x79\xda\x19" "\x8e\xf3\xd9\x83\x2b\x9f\xa7\xe6\xf1\x34\xb7\xf9\xe2\xa1\x55\xae\xa7\xc3" "\x45\x51\x5c\xf8\xe8\x03\xad\x9f\xf7\x86\x7f\x5f\xf9\xcb\xf3\xdf\xf9\x7a" "\xc7\xbf\xbb\xf4\xfa\x37\x9d\x0b\x1f\x7d\xe0\x07\xd7\x1f\xff\xfb\xb5\x1c" "\x3f\x00\x9b\xdf\xf3\xe5\xd8\x5e\x7e\xad\x6b\xfb\x97\xa9\xd5\xfc\xfb\x3f" "\x00\x00\x00\xb0\x29\xc4\xdc\x3f\x12\x66\x22\xff\x03\x00\x00\x40\x6d\xc4" "\xdc\x1f\xff\xaf\xf0\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x2c\xcc\x24" "\x93\xfc\xbf\xf3\x4d\xcf\xce\x3f\x7f\xa1\x48\xcd\xfc\xa5\x20\x5e\x9e\x4e" "\xc3\x83\xe5\x76\xb1\xe3\x3a\x13\x3e\x9e\x5c\xba\xac\xf9\xf9\x07\xbe\x3a" "\xf7\xe3\xbf\xbe\xb0\xba\x7d\x8f\x14\x45\xf1\xd3\x07\x7f\xab\xe7\xf6\x3b" "\x1f\x8c\xc7\x55\x9a\x0c\xc7\xf9\xd4\x9b\x3b\x3f\xbf\xfc\x8a\x17\x56\xb5" "\xff\x47\x1e\xbe\xbc\x5d\x7b\x7f\xfd\x4b\xe1\xf6\xe3\xfd\x59\xed\x32\xe8" "\x55\xc1\x9d\x29\x8a\xe2\x9b\x37\x7c\xbe\xb5\x9f\xc9\x0f\x5c\x6a\xcd\xa7" "\x1f\x7c\xa4\x35\xdf\x73\xf1\xf1\xc7\x9a\xdb\x3c\x77\xa8\xfc\x38\x5e\xff" "\x99\x97\x94\xdb\xff\x51\x28\xff\x1e\x3e\x7e\xb4\xe3\xfa\xcf\x84\xf3\xf0" "\xbd\x30\x67\xde\xde\xfb\x7c\xc4\xeb\x7d\xed\xd2\x6b\x76\x1d\x78\xdf\xe5" "\xfd\xc5\xeb\x35\x6e\x7b\x61\xeb\x6e\x3f\xf1\xc1\xf2\x76\xe3\xef\xc9\xf9" "\xc2\x63\xe5\xf6\xf1\x3c\xaf\x74\xfc\x7f\xf3\xb9\x27\xbf\xd6\xdc\xfe\xd1" "\x57\xf5\x3e\xfe\x0b\x23\xbd\x8f\xff\xc9\x70\xbb\x5f\x0d\xf3\x7f\x5f\x5e" "\x6e\xdf\xfe\x18\x34\x3f\x8e\xd7\xfb\x4c\x38\xfe\xb8\xbf\x78\xbd\x7b\xbe" "\xf2\xad\x9e\xc7\xff\xd4\x67\xcb\xed\xcf\xbe\xa5\xdc\xee\x91\x30\xe3\xfe" "\xef\x0c\x1f\xef\x7e\xcb\xb3\xf3\xed\xe7\xeb\xd1\xc6\xd1\x8e\xfb\x55\xbc" "\xb5\xdc\x2e\xee\x7f\xe6\x3b\xbf\xdb\xba\x3c\xde\x5e\xbc\xfd\xee\xe3\x9f" "\x38\x72\xa9\xe3\x7c\x74\xaf\x8f\xa7\xff\xb5\xbc\x9d\xe9\xae\xed\xe3\xe7" "\xe3\x7e\xa2\xbf\xea\xda\x7f\xf3\x76\xda\xd7\x67\xdc\xff\x93\xbf\xf3\x48" "\xc7\x79\xae\xda\xff\x53\xef\x79\xe6\xe5\xcd\xdb\xed\xde\xff\xdd\x5d\xdb" "\x8d\x76\x5d\xbf\xfb\x37\x36\xfd\xf1\x67\x3e\xdf\x73\x7f\xf1\x78\x0e\xff" "\xc5\xd9\x8e\xfb\x73\xf8\xdd\xe1\x79\x1c\xf6\xff\xc4\x07\xc3\x7a\x0c\x97" "\xff\xe4\xa9\xcf\x77\xec\x37\x7a\xe4\xdd\x9d\xaf\x3f\x71\xfb\x2f\xed\xb8" "\xd0\x71\x7f\xa2\xb7\xfd\xa8\xdc\xff\x53\xaf\x3f\xd1\x9a\xff\x35\xf9\xe3" "\x3f\xbc\xee\x05\xd7\xbf\xf0\xe2\x2b\x9b\xe7\xae\x28\xbe\xfd\xde\xf2\xf6" "\xaa\xf6\x7f\xe2\x4f\xce\x74\x1c\xff\x97\x6f\xba\xab\xf5\x78\xc4\xcb\x63" "\x47\xbf\x7b\xff\x2b\x89\xfb\x3f\xf7\xb1\xa9\xd3\x67\x16\xce\xcf\xcf\xb6" "\x9d\xd5\xd6\xef\xce\x79\x47\x79\x3c\x5b\x27\xb6\x6d\x6f\x1e\xef\x0d\xe1" "\xb5\xb5\xfb\xe3\x23\x67\x16\x3f\x34\x77\x6e\x72\x66\x72\xa6\x28\x26\xeb" "\xfb\x2b\xf4\xae\xd8\x57\xc2\xfc\x41\x39\x2e\xae\xf5\xfa\x77\x3d\x1c\x1e" "\xcf\x5b\xfe\xe0\x9b\xdb\xef\xf8\x97\xcf\xc5\xcf\xff\xdb\x43\xe5\xe7\x2f" "\xbd\xbd\xfc\xba\xf5\xea\xb0\xdd\x17\xc2\xe7\x77\x94\x8f\xdf\x52\x63\x9d" "\xfb\x7f\xe2\xd6\x9b\x5a\xcf\xef\xc6\xd3\xe5\xc7\x1d\x3d\xf6\x01\xd8\xb5" "\xfb\xbf\x0f\xae\x6a\xc3\x70\xff\xbb\xbf\x2f\x88\xeb\xfd\xec\x4b\x3f\xd4" "\x3a\x0f\xcd\xcb\x5a\x5f\x37\xe2\xf3\x7a\x9d\xc7\xff\xdd\xd9\xf2\x76\xbe" "\x11\xce\xeb\x52\xf8\xcd\xcc\xb7\xdd\x74\x79\x7f\xed\xdb\xc7\xdf\x8d\x70" "\xe9\xbd\xe5\xf3\x7d\xdd\xe7\x2f\xbc\xcc\xc5\xc7\xf5\xcf\xc2\xe3\xfd\xce" "\xef\x95\xb7\x1f\x8f\x2b\xde\xdf\xef\x86\xef\x63\xbe\xb5\xb3\xf3\xf5\x2e" "\xae\x8f\x6f\x5c\x18\xe9\xbe\xfd\xd6\x6f\xf1\xb8\x18\x5e\x4f\x8a\x8b\xe5" "\xe5\x71\xab\x78\xbe\x2f\x3d\x77\x53\xcf\xc3\x8b\xbf\x87\xa4\xb8\x78\x73" "\xeb\xe3\xdf\x4b\xb7\x73\xf3\x9a\xee\xe6\x4a\x16\x3e\xbe\x30\x7d\x72\xfe" "\xf4\xf9\x47\xa7\x17\xe7\x16\x16\xa7\x17\x3e\xfe\x89\x23\xa7\xce\x9c\x3f" "\xbd\x78\xa4\xf5\xbb\x3c\x8f\x7c\xb8\xea\xfa\x97\x5f\x9f\xb6\xb7\x5e\x9f" "\x66\xe7\xf6\xdf\x5b\xcc\x6c\x2b\x8a\xe2\x4c\x31\xb3\x01\x2f\x58\x57\xe7" "\xf8\x9b\x7f\x5b\xdd\xf1\x9f\x7d\xf8\xd8\xec\x81\x99\x3b\x66\xe7\x8e\x1f" "\x3d\x7f\x7c\xf1\xe1\xb3\x73\xe7\x4e\x1c\x5b\x58\x38\x36\x37\xbb\x70\xc7" "\xd1\xe3\xc7\xe7\x3e\x56\x75\xfd\xf9\xd9\xfb\xf7\xec\x3d\xb4\xef\xc0\xde" "\xa9\x13\xf3\xb3\xf7\x1f\x3c\x74\x68\xdf\xa1\xa9\xf9\xd3\x67\x9a\x87\x51" "\x1e\x54\x85\xfd\x33\x1f\x99\x3a\x7d\xee\x48\xeb\x2a\x0b\xf7\xdf\x7b\x68" "\xcf\x7d\xf7\xdd\x3b\x33\x75\xea\xcc\xec\xdc\xfd\x07\x66\x66\xa6\xce\x57" "\x5d\xbf\xf5\xb5\x69\xaa\x79\xed\xdf\x9c\x3a\x37\x77\xf2\xe8\xe2\xfc\xa9" "\xb9\xa9\x85\xf9\x4f\xcc\xdd\xbf\xe7\xd0\xfe\xfd\x7b\x2b\x7f\x1b\xe0\xa9" "\xb3\xc7\x17\x26\xa7\xcf\x9d\x3f\x3d\x7d\x7e\x61\xee\xdc\x74\x79\x5f\x26" "\x17\x5b\x9f\x6e\x7e\xed\xab\xba\x3e\xf5\xb4\xf0\x1f\xe5\xf7\xb3\xdd\x1a" "\xe5\x2f\xe2\x2b\xde\x75\xf7\xfe\xf4\xfb\x59\x9b\xbe\xfa\xa9\x15\x6f\xaa" "\xdc\xa4\xeb\x17\x88\x3e\x1b\x7e\x17\xcd\x3f\xbd\xe8\xec\xc1\xd5\x7c\x1c" "\x73\xff\x78\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x96\x30\x13" "\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xad\x61\x26\xf2\x3f\x00\x00\x00\xd4" "\x46\xcc\xfd\x13\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\xd5\xf5\xff\xcb\xcb" "\xf5\xff\xf3\xea\xff\x9f\xfd\x68\xd9\x2b\xdd\xec\xfd\xff\xd8\x9f\xd7\xff" "\xcf\xc3\x35\xee\xff\xaf\x7b\xff\xfa\xff\xfa\xff\xf5\xeb\xff\xaf\xbe\x3f" "\xbf\xd9\x8f\x5f\xff\x5f\xff\x9f\xe5\x86\xad\xff\x1f\x73\xff\xb6\xa2\xc8" "\x32\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x1e\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\x7f\x5d\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x0b\xc2" "\x4c\x32\xc9\xff\xfa\xff\xab\xea\xff\xef\xad\x2a\x5c\xd5\xbf\xff\xef\xfd" "\xff\xf5\xff\x8b\xcd\xd9\xff\x8f\x0f\x8e\xfe\x7f\x36\xd6\xdc\xbf\x7f\xdf" "\x43\x1d\x1f\xea\xff\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xac\xdb" "\xf8\x8a\x97\x5c\xab\xfe\x7f\xcc\xfd\xd7\x87\x99\x64\x92\xff\x01\x00\x00" "\x20\x07\x31\xf7\xbf\x30\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x86" "\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x1d\x61\x26\x99\xe4\x7f\xfd" "\x7f\xef\xff\xaf\xff\xaf\xff\x5f\xeb\xfe\xff\x7a\xdf\xff\xbf\xed\x60\xf4" "\xff\x37\x07\xef\xff\xdf\x9f\xfe\x7f\x85\x2b\xee\xff\x4f\xac\xab\xff\x1f" "\xe9\xff\x6f\xf0\xf1\x8f\x0f\xf6\xf8\x87\xbb\xff\x5f\x79\xf8\xfa\xff\x5c" "\x15\xc3\xf6\xfe\xff\x31\xf7\xbf\x28\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39" "\x88\xb9\xff\xc5\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x2f\x09\x33" "\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xbf\x31\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xd5\xef\xff\x5f\xfe\x4d\xff\x7f" "\xb8\xe8\xff\xf7\xa7\xff\x5f\xc1\xfb\xff\xe7\xd5\xff\x1f\xf0\xf1\x0f\x77" "\xff\x7f\xd0\xef\xff\x3f\xfe\xe6\xee\xeb\xeb\xff\xd3\xcb\xb0\xf5\xff\x63" "\xee\x7f\x69\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x4d\x61\x26" "\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x2f\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x36\x62\xee\xdf\x19\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xef\xbd\xff\xea\xfe\x7f\x49\xff\x7f\xb8\xe8\xff\xf7\xa7\xff\x5f\x41" "\xff\x5f\xff\x5f\xff\x7f\x75\xfd\xff\x1e\xdf\xfc\xea\xff\xd3\xcb\xb0\xf5" "\xff\x63\xee\xbf\x39\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x96" "\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x9f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\xdf\x15\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xcf" "\xab\xff\x7f\xf7\x16\xfd\x7f\xfd\xff\x7a\xd3\xff\xef\x4f\xff\xbf\x82\xfe" "\xbf\xfe\xbf\xfe\xff\x2a\xdf\xff\x7f\xb9\xb5\xf4\xff\xb7\x56\xdd\x18\xb5" "\x31\x6c\xfd\xff\x98\xfb\x5f\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4" "\xdc\xff\x8a\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x57\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\x4f\x86\x99\x64\x92\xff\xf5\xff\xeb\xd5" "\xff\xff\xf3\xbf\x7d\xe2\x95\x85\xfe\xbf\xfe\x7f\xc5\xfe\x6b\xda\xff\x8f" "\xcb\x40\xff\x3f\x73\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xdf" "\x90\xfe\x3f\xf9\x18\xb6\xfe\x7f\xcc\xfd\xb7\x86\x99\x64\x92\xff\x01\x00" "\x00\x20\x07\x31\xf7\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f" "\x7b\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xee\x30\x93\x4c\xf2\xbf" "\xfe\x7f\xbd\xfa\xff\x91\xfe\xbf\xfe\x7f\xbf\xfd\xd7\xb4\xff\x9f\xe8\xff" "\xe7\x4d\xff\xbf\x87\xb6\x27\xa9\xfe\x7f\x05\xfd\x7f\xfd\xff\xec\xfb\xff" "\xf1\xbb\x5f\xfd\x7f\x06\x63\xd8\xfa\xff\x31\xf7\xbf\x2a\xcc\x24\x93\xfc" "\x0f\x00\x00\x00\x39\x88\xb9\xff\x8e\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23" "\xe6\xfe\x57\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x19\x66\x92" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbd\x7f\xfd\xff\xcd" "\x49\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xd9\xf7\xff\xbd\xff\x3f\x83" "\x35\x6c\xfd\xff\x98\xfb\x5f\x13\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4" "\xdc\x7f\x57\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\xff\xff\xcd\xf2\xff\x7b" "\x95\xff\x01\x00\x00\xa0\x8e\x62\xee\x9f\x0a\x33\xc9\x24\xff\xeb\xff\xeb" "\xff\xe7\xd4\xff\x6f\xe8\xff\xeb\xff\xeb\xff\xd7\x9e\xfe\x7f\x7f\xfa\xff" "\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7\xdc\xff\xda" "\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x7b\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8d\x98\xfb\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\x18\x4e\x5b\xd7" "\x7e\x95\x98\xfb\x67\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\x39\xf5\xff\xbd" "\xff\xbf\xfe\xbf\xfe\x7f\xfd\xe9\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff\xbf" "\x6e\xfd\xff\xa2\xd0\xff\xe7\x9a\x1a\xb6\xfe\x7f\xcc\xfd\x7b\xc2\x4c\x32" "\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xf7\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xbf\x37\xcc" "\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xfa\xff" "\x9b\x93\xfe\x7f\x7f\xfa\xff\x15\xf4\xff\xf5\xff\xeb\xd6\xff\xf7\xfe\xff" "\x5c\x63\xc3\xd6\xff\x8f\xb9\xff\xbe\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4" "\x20\xe6\xfe\xfd\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x07\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x0f\x86\x99\x64\x92\xff\x33\xef\xff" "\x37\x96\xea\xd2\xff\xff\xed\x7f\xec\xd8\xb7\xfe\xbf\xfe\x7f\xbf\xfd\x0f" "\xa6\xff\xbf\x4d\xff\x3f\x4c\xfd\xff\xe1\x52\xd3\xfe\x7f\xf7\xd3\xe2\x8a" "\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86\xad\xff\x1f\x73" "\xff\xa1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xd7\x85\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\xcf\x85\x99\x64\x92\xff\x33\xef\xff\xa7\xe3\x88\x36\x6d\xff" "\xbf\x8b\xfe\xbf\xfe\x7f\xbf\xfd\x7b\xff\x7f\xfd\xff\x3a\xab\x69\xff\x7f" "\x60\xf4\xff\x2b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\x33\x50\x57\xbf\xff\x1f" "\xff\xb6\xba\xfe\x7f\xcc\xfd\xf7\x87\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xff\x7c\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xeb\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x0f\x87\x99\x64\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xaf\x4e\xff\xff\xf5\x45\xb7\x61\xec\xff\x37\x17\x8f" "\xfe\x7f\xbd\xe8\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\x81\x1a\xb6\xf7\xff\x8f\xb9\xff\x0d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8" "\x41\xcc\xfd\x0f\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x31\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x4d\x61\x26\x99\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xef\xff\xdf\x7b\xff\xfa\xff\x9b\x93\xfe\x7f\x7f" "\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7\xdc" "\xff\xe6\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xb7\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xda" "\x88\xb9\xff\x6d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\xde\xfb\xd7\xff\xdf\x9c\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf" "\xff\xaf\xff\xcf\x40\x0d\x5b\xff\x3f\xe6\xfe\x5f\x08\x33\xc9\x24\xff\x03" "\x00\x00\x40\x0e\x62\xee\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xef\x08\x33\xc9\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xde\xbf\xfe\xff\xe6\xa4" "\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd8\xfa" "\xff\x31\xf7\xbf\x33\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x17" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xdf\x15\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\xff\x4b\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\x2c\xfa\xff\xcd\x2b\xe9\xff\x67\x41\xff\xbf\x3f\xfd\xff\x0a\x3d" "\xfa\xff\x5b\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xb9\x62\xc3\xd6\xff\x8f\xb9" "\xff\xdd\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xef\x09\x33\x91" "\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x6f\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\x43\x61\x26\x99\xe4\x7f\xfd\xff\x2c\xfb\xff\xe9\x2e\xeb\xff" "\x97\xf4\xff\x33\xe8\xff\x7b\xff\xff\x6c\xe8\xff\xf7\xa7\xff\x5f\xc1\xfb" "\xff\xeb\xff\xeb\xff\xeb\xff\x33\x50\xc3\xd6\xff\x8f\xb9\xff\xe1\x30\x93" "\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\xf7\x85\x99\xc8\xff\x00\x00\x00" "\x50\x1b\x31\xf7\xff\x72\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xfb" "\xc3\x4c\x32\xc9\xff\xfa\xff\x59\xf6\xff\xbd\xff\xff\x86\xf5\xff\xc7\x3a" "\xd6\x47\x4e\xfd\xff\x89\xb6\xc7\x33\xad\x4b\xfd\x7f\xfd\xff\x0d\xa0\xff" "\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\xff\x61\xee\xff\x87\xd5\xbc\x6d\x85\xeb" "\xeb\xff\x33\x8c\x86\xad\xff\x1f\x73\xff\x07\xc2\x4c\x32\xc9\xff\x00\x00" "\x00\x90\x83\x98\xfb\x7f\x25\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff" "\x57\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x7f\x2d\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\xaf\xff\xef\xfd\xff\xbd\xff\x7f\xef\xfd\xeb\xff\x6f\x4e" "\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\x1f\xe6\xfe\x7f\x05\xfd\x7f\x86" "\xd1\xb0\xf5\xff\x63\xee\xff\xf5\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x1f\x09\x33\x91" "\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x24\xcc\x24\x93\xfc\xaf\xff\xdf\xdd" "\xff\x8f\xef\xa8\xaa\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x19\x0d\xae" "\xff\xff\xb2\xeb\x8b\x42\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\xf5\x18\xb6\xfe\x7f\xcc\xfd\x47\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\x7f\x23\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x58\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x6c\x98\x49\x26\xf9\x5f\xff\xdf\xfb" "\xff\x0f\xaa\xff\xff\x53\xfd\x7f\xfd\xff\x40\xff\xbf\x37\xfd\xff\x8d\xe1" "\xfd\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x0d\x5b" "\xff\x3f\xe6\xfe\xb9\x30\x93\x4c\xf2\x3f\x00\x00\x00\xd4\x58\xfa\x71\x70" "\xcc\xfd\xc7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x4f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\x7f\x28\xcc\x24\x93\xfc\xaf\xff\xaf\xff" "\xef\xfd\xff\xaf\x45\xff\x7f\xac\x63\x7b\xfd\xff\xd2\x4f\x9a\xa7\x45\xff" "\x5f\xff\x7f\x9d\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x40\x0d\x5b\xff\x3f\xe6\xfe\xf9\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4" "\x20\xe6\xfe\x0f\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x7f\x24\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x64\x98\x49\x26\xf9\x5f\xff\x5f" "\xff\x3f\xf7\xfe\x7f\xa3\x28\x2e\x7a\xff\xff\x21\xe9\xff\x7b\xff\x7f\xfd" "\xff\x01\xd0\xff\xef\x4f\xff\xbf\xc2\x55\xec\xff\x3f\xbe\x58\x4e\xfd\xff" "\xab\xe7\x5a\x1f\xbf\xfe\xbf\xfe\x3f\xcb\x0d\x5b\xff\x3f\xe6\xfe\x53\x61" "\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xa7\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\xcf\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\xff\xcf\xde" "\x7d\x34\xd9\x75\x1e\x77\x1c\xbe\xa6\x49\x84\x95\xfd\x11\xbc\xf6\xca\x4b" "\x7b\xe5\xaf\xe0\xad\x77\xae\xf2\xda\x55\x96\x44\xe5\x00\x41\x39\x4b\x54" "\xce\xa2\xa8\x9c\xa8\x9c\x13\xa9\x9c\x73\x8e\x54\xce\x91\x4a\xa4\x54\x35" "\x2a\x0e\xba\x9b\xc0\xcc\xc5\x39\x00\x71\x39\x73\xce\xdb\xcf\xb3\x69\x03" "\x45\xf8\x0e\xc8\x31\xad\xbf\x50\xbf\x7a\x73\xf7\xff\x7f\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xdd\xfb\xff\xcd\xb1\xbc\xff\x7f\xe1\x5f\xaf\xff\x3f\x47" "\xff\xaf\xff\xdf\x85\x43\xfd\xfd\xd5\x97\xf7\xeb\x2f\xda\xff\xff\xdb\xbf" "\x5f\xfb\x3f\xfa\x7f\xfd\xbf\xf7\xff\x27\xe9\xff\xf5\xff\xfa\x7f\x0e\x5a" "\x5a\xff\x9f\xbb\xff\x1e\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf" "\x67\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf\x2b\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\xaf\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xbf\xa0\xff\xbf\x49\xff\xaf\xff\x5f\x37\xef\xff\x4f\xd3\xff\xcf\xd0\xff" "\xeb\xff\xf5\xff\xfa\x7f\x76\x6a\x69\xfd\x7f\xee\xfe\x7b\xc7\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\x3e\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\x7f\xdf\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x5f\xdc\xd2\x64" "\xff\xeb\xff\x0f\xf5\xff\x67\x6e\xd6\xff\xeb\xff\x3b\xf7\xff\xde\xff\xd7" "\xff\xaf\x9c\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x53" "\x4b\xeb\xff\x73\xf7\xdf\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x0f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x07\xc6\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x83\xe2\x96\x26\xfb\x5f\xff\xef\xfd\x7f\xfd\xbf" "\xfe\x5f\xff\xbf\xfd\xf3\xf5\xff\xeb\x74\xc3\xe6\xce\x7f\x27\xe8\xff\x0f" "\xd3\xff\xcf\x98\xe9\xff\x37\x1b\xfd\xff\x94\x4b\xee\xe7\xb7\xff\xf6\xd6" "\xf3\xf5\x5f\x84\xfe\x5f\xff\xcf\x61\x4b\xeb\xff\x73\xf7\x3f\x38\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x89\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x33\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd0\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xcf\xd7\xff\xaf\x93" "\xf7\xff\xa7\x5d\x79\xff\xff\xaf\xff\xfc\x7f\xff\xdb\xb7\xff\xdf\xf2\xfe" "\x7f\x7e\x09\xfa\x7f\xef\xff\xeb\xff\xf5\xff\x6c\xb1\xb4\xfe\x3f\x77\xff" "\xd9\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2c\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\x8f\x88\x5b\x9a\xec\x7f\xfd\x7f\x9b\xfe\x7f\xbf\x76\xd1\xff\xeb\xff\xf5" "\xff\xfa\xff\xd1\xe9\xff\xa7\x79\xff\x7f\xc6\xfe\xbf\xe6\x4e\xd7\x0f\x2f" "\xa1\xff\xf7\xfe\xff\x79\xf4\xff\xfa\x7f\xfd\x3f\x07\x2d\xad\xff\xcf\xdd" "\xff\xc8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2a\x6e\xd9\xb6" "\xff\x6f\x3c\xaa\xaf\x0a\x00\x00\x00\xd8\xa5\xdc\xfd\x8f\x8e\x5b\xfc\xf9" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x63\xe2\x96\x26\xfb\x5f\xff\xdf\xa6\xff" "\xf7\xfe\xbf\xfe\xff\x88\xfb\xff\xdb\xf6\xf6\xf6\xf4\xff\xe7\xd3\xff\x1f" "\x0d\xfd\xff\x34\xfd\xff\x8c\xcb\x7f\xff\x7f\x99\xfd\xff\x5d\xfc\xae\x39" "\xee\x7e\xfe\x4a\x1d\xf7\xd7\xaf\xff\xd7\xff\x73\xd8\xd2\xfa\xff\xdc\xfd" "\x8f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xe3\xe2\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xf1\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x84\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xd7\xd1\xff\xe7\x27\xe8\xff\xd7" "\xd3\xff\x7b\xff\xff\x20\xfd\xff\xd1\xd0\xff\x4f\xd3\xff\xcf\x18\xa5\xff" "\xbf\x8b\x8e\xbb\x9f\x5f\xfb\xd7\xaf\xff\xd7\xff\x73\xd8\xd2\xfa\xff\xdc" "\xfd\x4f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x93\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xc9\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\x94\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xd7\xd1\xff\x7b\xff\x5f\xff" "\xaf\xff\xd7\xff\x5f\x1a\xfd\xff\x34\xfd\xff\x0c\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\xa7\x96\xd6\xff\xe7\xee\xbf\x2e\x6e\x69\xb2\xff\x01\x00\x00\xa0" "\x83\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xa7\xc5\x2d" "\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd3\xe3\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\x19" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xa8\xff\x3f\xef\x57\x9d\xda\x3c" "\x23\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x8c\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x67\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xb3\xe3\x96\x26\xfb\x5f\xff\xbf\x98\xfe\x7f\x3f\xe7\x1b\xab\xff\x3f\xbd" "\xd9\x6c\xf4\xff\x9b\xa6\xfd\xff\xe9\xf3\xfe\x79\xd6\xf7\xa5\xfe\x5f\xff" "\x7f\x04\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x5a" "\x50\xff\xbf\xff\xe3\xdc\xfd\xcf\x89\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20" "\x77\xff\x73\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x79\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xfc\xb8\xa5\xc9\xfe\xd7\xff\x2f\xa6\xff" "\xdf\x37\x56\xff\xef\xfd\xff\x83\xdf\x1f\x9d\xfa\x7f\xef\xff\x1f\xa6\xff" "\x3f\x1a\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d" "\xad\xff\xcf\xdd\xff\x82\xb8\xe9\xc4\x35\x77\xf9\xb7\x08\x00\x00\x00\x2c" "\x4c\xee\xfe\x17\xc6\x2d\x4d\xfe\xfc\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xa2" "\xb8\xc5\xfe\x07\x00\x00\x80\x95\xba\xee\xd0\xcf\xe4\xee\xbf\x3e\x6e\x69" "\xb2\xff\xf5\xff\xbb\xed\xff\x4f\x9c\xf7\x73\x47\xdd\xff\x9f\xdf\x60\xeb" "\xff\xf5\xff\x53\x9f\xaf\xff\xd7\xff\x8f\x4c\xff\x3f\x4d\xff\x3f\x43\xff" "\xaf\xff\x3f\xf7\xf5\xe7\x7f\xb4\xd0\xff\xeb\xff\xb9\x42\x4b\xeb\xff\x73" "\xf7\xbf\x38\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x37\xc4\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x4b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xa5\x71\x4b\x93\xfd\xaf\xff\xf7\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf" "\xfe\xf9\xfa\xff\x75\xd2\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\x8f\xf7\xfd" "\xff\x93\x77\xfe\x8f\xfa\x7f\xc6\x70\x19\xfd\xff\xde\xde\xde\x99\xbb\xbd" "\xff\xcf\xdd\xff\xb2\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3c" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x11\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xaf\x8c\x5b\x9a\xec\x7f\xfd\x7f\xd3\xfe\x3f\xbf\xd5\xf5" "\xff\xfb\xf4\xff\xfa\xff\x6d\x9f\xaf\xff\x5f\x27\xfd\xff\x34\xfd\xff\x0c" "\xfd\xbf\xfe\xff\x78\xfb\x7f\xef\xff\x33\x9c\xa5\xbd\xff\x9f\xbb\xff\x55" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x75\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x26\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f" "\x1b\xb7\x0c\xba\xff\x4f\x1c\xf8\xb1\xfe\xbf\x69\xff\xef\xfd\x7f\xfd\xff" "\x45\xfb\xff\x3b\xfe\x6a\xfd\xff\x66\xf7\xfd\xff\xed\x1b\xfd\xff\x91\x58" "\x45\xff\x7f\xfa\xe2\x9f\xbf\xf4\xfe\xff\xac\xfe\x5f\xff\x3f\xa1\x5d\xff" "\xff\x5f\xff\x71\xc1\x0f\xf5\xff\xfa\x7f\x0e\x5b\x5a\xff\x9f\xbb\xff\x75" "\x71\xcb\xa0\xfb\x1f\x00\x00\x00\x3a\xca\xdd\x7f\x63\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x3e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf" "\x10\x37\x5d\xdd\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xf7\xff\xb7\x7f" "\xfe\x11\xbf\xff\x7f\x62\xb3\xd9\xe8\xff\x77\x60\x15\xfd\xff\x84\xa5\xf7" "\xff\xde\xff\xd7\xff\x4f\x69\xd7\xff\x1f\xa0\xff\xd7\xff\x73\xd8\xd2\xfa" "\xff\xdc\xfd\x6f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x9b\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\x96\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1" "\xfb\xff\xb3\xab\xe8\xff\xbd\xff\xbf\x23\xfa\xff\x69\xfa\xff\x19\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\x91\x38\xae\xfe\x3f\x77\xff\x5b\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\x7f\x7b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x23\x6e\x69\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xe4\xe2\xfa\xff\x53\x17\xfc\xef\x6b" "\xf2\xfe\xbf\xfe\x7f\x47\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xff" "\x75\xfa\x7f\x76\x69\x69\xef\xff\xe7\xee\x7f\x67\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xdf\x15\xb7\xfe\xab\x5b\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9e\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xdf\xff\xd7\xff\xb7\xa2\xff\x9f" "\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\xbd\xff\xcf\x4e\x2d\xad\xff\xcf\xdd" "\xff\xde\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2f\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x37\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xcf\xfd" "\x33\xd4\xff\x8f\x41\xff\x3f\xed\x68\xfa\xff\xd3\xfa\x7f\xfd\x7f\xf5\xf3" "\xff\x10\xff\x57\xa0\xff\xd7\xff\xcf\xfd\x7a\xc6\xb4\xb4\xfe\x3f\x77\xff" "\xcd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x40\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x7f\x30\x6e\xb1\xff\x01\x00\x00\x60\x95\xae\xde" "\xf2\x73\xb9\xfb\x3f\x14\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xdf\xfe\xf9\xfa\xff\x75\xd2\xff\x4f\xf3\xfe\xff\x0c\xfd\xff\x65\xf6" "\xf3\xff\x72\xc1\x8f\xd6\xf6\xfe\xff\xc1\xff\xff\xa5\xff\xd7\xff\xb3\x7b" "\x4b\xeb\xff\x73\xf7\x7f\x38\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x1f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x8f\xc6\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\xc7\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e\xfa\xff\x69\xfa\xff\x19\xfa\xff\x63" "\x7d\x3f\x7f\xed\x5f\xbf\xfe\x5f\xff\xcf\x61\x4b\xeb\xff\x73\xf7\x7f\x3c" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x88\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x63\x7f\xf7\x67" "\x5c\xd6\x70\xff\xeb\xff\xf5\xff\xfa\xff\xae\xfd\xff\x59\xfd\xbf\xfe\x7f" "\x48\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x4e\x2d\xad" "\xff\xff\xd4\xfe\xaf\x3a\xb5\xf9\x74\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x3f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8d\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf" "\x8e\xfe\x7f\x6f\x6f\xef\x8c\xfe\xdf\xfb\xff\x17\xfe\x7e\xae\xff\xc7\x4d" "\xfc\x7e\x6e\xd1\xff\x53\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\xf3\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xff\x42\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x31\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x14\xb7\x34\xd9\xff\xfa\xff\x05" "\xf4\xff\xa7\xf4\xff\xde\xff\xd7\xff\x6f\xbc\xff\xaf\xff\xdf\x11\xfd\xff" "\x34\xfd\xff\x8c\x11\xfb\xff\x53\x97\xfe\xdb\x3f\xee\x7e\xfe\x4a\x1d\xf7" "\xd7\xaf\xff\xd7\xff\x73\xd8\xd2\xfa\xff\xdc\xfd\x5f\x8e\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x57\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\xab\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb5\xb8\xa5\xc9\xfe" "\xd7\xff\x1f\x5d\xff\x7f\xc7\xdf\xbb\x2e\xef\xff\x9f\xde\x6c\xff\xfa\xf5" "\xff\xeb\xee\xff\x0f\x76\xf9\xfa\xff\x73\xf4\xff\xcb\xa2\xff\x9f\xa6\xff" "\x9f\x31\x62\xff\x7f\x19\x8e\xbb\x9f\x5f\xfb\xd7\xaf\xff\xd7\xff\x73\xd8" "\xd2\xfa\xff\xdc\xfd\x5f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x37\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x9b\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xad\xb8\xa5\xc9\xfe\xd7\xff\x2f\xe0\xfd\xff\x01" "\xfb\x7f\xef\xff\x6f\xff\xfe\x58\x7b\xff\x3f\xf8\xfb\xff\x57\xe9\xff\xc7" "\xa0\xff\x9f\xa6\xff\x9f\xa1\xff\xd7\xff\xeb\xff\x77\xd4\xff\xe7\x77\xb3" "\xfe\xbf\xbb\xa5\xf5\xff\xb9\xfb\xbf\x1d\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xef\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x77\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x96\xb8\xe5\xbc\xfd\xbf\xad\xed\x1e" "\x85\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\x7f\xbe\xfe\x7f\x9d\xf4\xff" "\xd3\x2e\xb5\xff\x3f\xb9\xb9\xb2\xfe\x3f\xe9\xff\xf5\xff\xfa\xff\xae\xfd" "\xbf\xf7\xff\x39\x67\x69\xfd\x7f\xee\xfe\xef\xc5\x2d\xfe\xfc\x1f\x00\x00" "\x00\x56\xe7\x9a\x8b\xfc\x7c\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x0f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x87\x71\xcb" "\xad\x57\x1d\xd7\x97\x74\xa4\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd" "\xf3\xf5\xff\xeb\xa4\xff\x9f\xe6\xfd\xff\x19\xfa\xff\x5d\xf4\xf3\xff\xa9" "\xff\x1f\xa3\xff\xdf\x6c\xf4\xff\x5c\xb9\xa5\xf5\xff\xb9\xfb\x7f\x14\xb7" "\xf8\xf3\x7f\x00\x00\x00\x18\x46\xee\xfe\x1f\xc7\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x4f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa7\x71" "\x4b\x93\xfd\xaf\xff\xd7\xff\x5f\x61\xff\xbf\x9f\x66\xea\xff\xcf\xd1\xff" "\x9f\xa3\xff\xdf\x4e\xff\x7f\x34\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xde\xff" "\xd7\xff\x7b\xff\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\x67\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x79\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xff\x22\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x19\xb7\x34\xd9\xff" "\xc7\xd6\xff\xc7\xdf\x6a\xfd\xff\xea\xfb\x7f\xef\xff\xeb\xff\xf5\xff\xfa" "\xff\x45\xd1\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76\x6a" "\x69\xfd\x7f\xee\xfe\x5f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff" "\xd7\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9b\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xff\x6d\xdc\xd2\x64\xff\x7b\xff\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\xb7\x7f\xbe\xfe\x7f\x9d\xf4\xff\xd3\xf4\xff\xdb\xd5\x3f\x28" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa7\x96\xd6\xff\xe7\xee\xff\x5d\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\xb7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x1f\xe2\x96" "\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x3f\x5f\xff\xbf\x4e" "\xfa\xff\x69\xc7\xd9\xff\xff\xf7\x3f\xcd\x7f\xac\xf7\xff\x8f\xbd\xff\xcf" "\x2f\x41\xff\xaf\xff\xd7\xff\xb3\x13\x4b\xeb\xff\x73\xf7\xff\x31\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8a\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x3f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5f\xe2\x96" "\x26\xfb\x7f\xa6\xff\x3f\x59\x7f\xa1\xfe\x7f\x92\xfe\xff\xc2\xaf\x5f\xff" "\xbf\xfd\xfb\x43\xff\xaf\xff\xd7\xff\xdf\xfd\xf4\xff\xd3\xbc\xff\x3f\x43" "\xff\xef\xfd\x7f\xfd\xbf\xfe\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\xb6\xb8\xa5" "\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf\x1e\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x7f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf\xc5\x2d" "\x4d\xf6\xbf\xf7\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xe7\xeb\xff\xd7" "\x49\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5" "\xff\xb9\xfb\xff\x1e\x00\x00\xff\xff\x45\x85\x57\x96", 24853)); NONFAILING(syz_mount_image( /*fs=*/0x200000000080, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x200000000040, /*chdir=*/5, /*size=*/0x6115, /*img=*/0x200000006600)); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 70 75 2e 73 74 61 74 00} (length 0x9) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000080, "cpu.stat\000", 9)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // write$UHID_CREATE2 arguments: [ // fd: fd_uhid (resource) // data: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {1c 5f e2 4a 08 7c 69 70 c5 01 f7 d6 45 69 3b b1 // 25 c8 48 48 bd 42 dc aa 55 39 69 d0 c7 48 4a b1 38 a9 06 4b 8c 15 // 74 0a bc 7c 04 ed 4a b3 60 61 1b ac 60 dc bb 3e 8d d9 ed d7 11 1a // 69 fd 32 5c bb 12 72 b6 10 e4 2d 5b 07 74 e7 2d 2b e9 11 d3 6c a3 // 36 06 8d 92 4d c5 cf 3f 50 65 7e 20 c2 c8 60 b3 7d a0 6b da c8 06 // 64 ce 09 f3 88 d2 98 90 c4 29 50 6d 57 9d 07 b2 7d aa 7b d7 12 76 // 44 84 ec 5c 5d f2 5e 11 28 74 64 31 b8 b2 2d d9 18 4f 71 f8 a4 4c // 1a 93 f2 73 80 31 72 64 25 f9 fc 05 04 a3 4f 16 cc 1f 4b 10 48 c5 // 10 85 c2 28 0e 1a eb 1a f3 88 0f 8e 8c eb bc f6 ed 9a d9 aa ad 51 // 5b e3 56 2b e3 62 3f 84 13 ce e3 aa 81 40 94 40 bb a9 59 4f 9e b4 // eb 6c bf ac e0 73 8a 49 27 45 19 e5 4b 80 ce 8b 42 40 4f 5f 61 2a // ee 64 9a 61 87 5d 52 27 24 7e ab} (length 0xf7) // } // union ANYUNION { // ANYBLOB: buffer: {a3 e3 fe c9 68 32 44 a7 3e} (length 0x9) // } // } // } // len: len = 0x118 (8 bytes) // ] NONFAILING(*(uint8_t*)0x2000000009c0 = -1); NONFAILING(memcpy( (void*)0x2000000009c1, "\x1c\x5f\xe2\x4a\x08\x7c\x69\x70\xc5\x01\xf7\xd6\x45\x69\x3b\xb1\x25\xc8" "\x48\x48\xbd\x42\xdc\xaa\x55\x39\x69\xd0\xc7\x48\x4a\xb1\x38\xa9\x06\x4b" "\x8c\x15\x74\x0a\xbc\x7c\x04\xed\x4a\xb3\x60\x61\x1b\xac\x60\xdc\xbb\x3e" "\x8d\xd9\xed\xd7\x11\x1a\x69\xfd\x32\x5c\xbb\x12\x72\xb6\x10\xe4\x2d\x5b" "\x07\x74\xe7\x2d\x2b\xe9\x11\xd3\x6c\xa3\x36\x06\x8d\x92\x4d\xc5\xcf\x3f" "\x50\x65\x7e\x20\xc2\xc8\x60\xb3\x7d\xa0\x6b\xda\xc8\x06\x64\xce\x09\xf3" "\x88\xd2\x98\x90\xc4\x29\x50\x6d\x57\x9d\x07\xb2\x7d\xaa\x7b\xd7\x12\x76" "\x44\x84\xec\x5c\x5d\xf2\x5e\x11\x28\x74\x64\x31\xb8\xb2\x2d\xd9\x18\x4f" "\x71\xf8\xa4\x4c\x1a\x93\xf2\x73\x80\x31\x72\x64\x25\xf9\xfc\x05\x04\xa3" "\x4f\x16\xcc\x1f\x4b\x10\x48\xc5\x10\x85\xc2\x28\x0e\x1a\xeb\x1a\xf3\x88" "\x0f\x8e\x8c\xeb\xbc\xf6\xed\x9a\xd9\xaa\xad\x51\x5b\xe3\x56\x2b\xe3\x62" "\x3f\x84\x13\xce\xe3\xaa\x81\x40\x94\x40\xbb\xa9\x59\x4f\x9e\xb4\xeb\x6c" "\xbf\xac\xe0\x73\x8a\x49\x27\x45\x19\xe5\x4b\x80\xce\x8b\x42\x40\x4f\x5f" "\x61\x2a\xee\x64\x9a\x61\x87\x5d\x52\x27\x24\x7e\xab", 247)); NONFAILING( memcpy((void*)0x200000000ab8, "\xa3\xe3\xfe\xc9\x68\x32\x44\xa7\x3e", 9)); syscall(__NR_write, /*fd=*/r[0], /*data=*/0x2000000009c0ul, /*len=*/0x118ul); // mmap arguments: [ // addr: VMA[0x3000] // len: len = 0x3000 (8 bytes) // prot: mmap_prot = 0x5 (8 bytes) // flags: mmap_flags = 0x12 (8 bytes) // fd: fd (resource) // offset: intptr = 0x0 (8 bytes) // ] syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x3000ul, /*prot=PROT_READ|PROT_EXEC*/ 5ul, /*flags=MAP_FIXED|MAP_PRIVATE*/ 0x12ul, /*fd=*/r[0], /*offset=*/0ul); // mkdirat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: open_mode = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x200000000100, "./file0\000", 8)); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000000100ul, /*mode=*/0ul); } 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); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }