// https://syzkaller.appspot.com/bug?id=78f98000deba69b5db400d53ad5890d7f51f16d6 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; 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; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[bcachefs_options]] { // fs_options[bcachefs_options] { // elems: array[fs_opt_elem[bcachefs_options]] { // fs_opt_elem[bcachefs_options] { // elem: union bcachefs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5d92 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5d92) // } // ] // returns fd_dir memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./file0\000", 8); memcpy((void*)0x20000040, "errors=continue", 15); *(uint8_t*)0x2000004f = 0x2c; *(uint8_t*)0x20000050 = 0; memcpy( (void*)0x2000bb80, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\xab\x8f" "\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xe5\x3b\x47\x1b" "\xe7\xec\xd8\x8e\x6c\x64\x61\x01\x16\xa7\x93\x64\x58\x61\x1d\x42\x12\xfa" "\x40\x20\x5d\xc2\x57\x0e\x08\x26\x29\x55\x41\x1d\x04\xe2\x44\x07\x14\xb9" "\x4a\x5d\x25\xb8\x74\x09\xe1\x4e\xa9\x92\x31\xe0\x8b\xaf\x8a\x42\x26\xfe" "\x83\x23\x5f\x47\x05\xe7\x8f\xf8\x88\xea\x2c\x71\x44\x72\xbc\x57\xbb\xdb" "\xbd\x3b\xd3\xdb\xef\xf4\xec\xf4\xac\x10\xf6\xef\x57\xa5\x9d\x7d\x7b\x9f" "\x79\xde\xe7\xe9\x7d\xa7\xa7\x7b\xb4\x3b\x1b\x01\x00\x00\xf0\x4b\xe1\x95" "\xdf\xd9\xf3\xee\x57\x2e\xf8\xdc\x0f\xee\x1d\x3a\x75\xd7\x17\xfe\xe8\xd6" "\x7b\xa2\xde\xea\xe8\xf6\x9e\x34\xa0\x2f\xb9\xbd\xe3\xfd\xaa\x90\xe9\xb4" "\xfc\x87\x67\x1a\xbe\xb3\xdd\xb5\xfe\xd1\xdb\xec\xba\x38\xff\x8f\x17\xbe" "\xdb\x77\xdf\x9a\x2f\x3f\xb4\xea\xf3\x3f\xdc\xfc\x27\xf3\x07\x97\x2e\x1b" "\xba\xea\x3b\x47\xae\xbe\xff\xbe\x17\x3f\xf3\xb3\x17\x1f\x7b\x62\x4d\xd1" "\x3c\xe9\x7a\xba\x74\x62\x1c\xff\x45\x1c\x45\x4b\xdf\x3e\xf2\xd8\xfd\x2f" "\xff\xe9\xf9\x23\xdb\xe2\x91\xf9\xe3\xbe\xbb\xa3\xf9\xf3\xe3\x05\xdf\x9d" "\x1f\x67\x52\xac\x38\x1d\x45\xd1\x4d\xe3\x75\x36\x7e\xf1\xc8\xa9\x95\x5b" "\x47\x6e\xef\xf9\x56\x77\xc3\xf6\x79\x99\x24\xd6\xfb\x2f\xb7\x9e\x64\x9d" "\x1d\xdc\xf4\x8d\xa7\x8e\xdd\x32\xf8\xf2\x91\x81\x5d\x2b\x7f\x72\xf2\xca" "\x9d\x77\x4f\x84\xc4\x3d\x75\xeb\x29\x8a\xe6\x6e\xae\xbf\x7f\x57\x14\x45" "\x33\x93\x7f\x23\xd2\xd5\xd6\x9f\xde\x39\xb9\x5d\x1b\x45\xd1\xac\xba\xfb" "\x7d\xaa\xa0\xae\x4b\x5a\xac\xff\xb2\xc0\x78\x49\x72\x3b\x23\xb9\xed\x2d" "\xc8\x93\x7e\xfd\xe2\xcc\xb8\xd6\x62\x1d\xb5\xcc\x6d\x77\x8b\xf7\x6b\x57" "\x65\x9a\xf3\x67\x65\xf7\x5f\xf6\x60\x34\x5d\xd2\x3e\xe7\x26\xb7\xcf\x27" "\xb7\x97\x4e\x31\x4f\x35\xfd\x17\x47\x95\x38\xaa\x8d\x97\xbf\x3d\x9e\x58" "\x23\x51\xdd\xf7\x2d\x8e\xe2\xd1\xb5\xdd\x33\x3e\xae\x8c\x8e\xa3\xf1\x71" "\x94\x1d\xc7\x99\x71\x25\x33\xae\x76\x65\xfa\x1a\x9d\x37\xd9\xb1\xd5\x38" "\x6e\xdc\x9e\xc6\x65\xb6\xa7\x87\xe3\x5a\xb2\xfd\xe2\xfa\x63\x75\x8e\x75" "\x81\xed\x8b\x92\xdb\x9e\xe4\x81\xfa\x5e\x3a\x8e\xb2\x9f\x8c\xe9\x9d\xf4" "\xc9\x44\x1f\x51\x5d\x5d\x27\xce\xd6\xc2\x08\xa8\x04\x1e\x7b\xe9\xf6\xf1" "\xf2\x92\x6f\x46\x6f\xb2\xad\x37\x5e\x30\xe9\x3e\xc3\x39\xd2\xaf\x9d\xf8" "\xfe\x96\x0d\xef\xbc\x71\xe0\xf9\xbe\x40\x1d\xf1\x73\x71\x92\x3f\x6e\x2b" "\xff\xe0\xd0\x93\xc7\x9e\xbd\xfe\xe8\xa2\xfe\x50\xfe\xcd\x95\x24\x7f\xa5" "\xad\xfc\xaf\x54\x5f\x3d\xfd\xcc\xc9\xfe\xd9\xc1\xfc\x87\xd2\xfc\xd5\xb6" "\xf2\xaf\xff\xf9\x8f\x1f\xbc\xf7\x9a\xfd\x0b\x83\xfb\xe7\x44\xba\x7f\x6a" "\x6d\xe5\x5f\xf6\xf0\xec\x83\xa7\xf6\xaf\xeb\x1e\x08\xe5\x3f\x9c\xe6\xef" "\x69\x2b\xff\x55\x1b\x97\xae\xba\xf0\xe4\xbe\xdb\x83\xf5\xaf\x48\xf7\xcf" "\xcc\xb6\xf2\xff\xe8\x91\xe5\x67\x36\x1e\x7a\xe1\x68\x30\x7f\x94\xe6\x9f" "\xd5\x56\xfe\x37\x9f\x7c\x7a\x49\x75\xd1\xa3\xc7\x83\xf9\x8f\xa5\xfb\xa7" "\xb7\xad\xfc\xd7\xae\x7c\x7c\xf5\x97\x16\xdf\xf7\x44\x70\xff\xbf\x96\xe6" "\x9f\xd3\x56\xfe\x0d\xc7\xef\xdf\xbc\xeb\xa9\x97\x96\x07\xd7\xe7\xda\x74" "\xff\xf4\xb5\x95\xff\xf4\xea\xd7\xdf\x3a\xd3\xb7\xe6\xe9\xd0\xb1\x33\x3e" "\x7c\xb6\x9f\x61\x01\x7e\xb1\x7c\x28\x39\xc7\x7a\x30\x19\xb7\x7b\x9d\x59" "\x56\xdd\xf5\xc2\xe3\x03\xb5\xb1\x73\xbe\xd9\xc9\xbf\x39\x9d\x9c\x28\x23" "\xae\xbb\x76\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x76\x3d\xba\xfa\xdf\xdf\x56\x3f\xfe\xe8\xff\xb9\x7d" "\xfd\xf1\xff\xb0\x74\x5b\x2d\x19\x77\xd7\xa2\x28\x8e\xa2\xe8\x9d\xea\xd8" "\x38\xdd\x3e\x23\x8a\xe2\x99\x51\x14\xed\xd9\xbb\x65\xf7\xde\x6d\x3b\x6e" "\x1e\xf8\xad\x9d\xfb\x76\xef\xd8\xb2\x7d\x60\xcb\xde\x81\xa1\x1d\x7b\x77" "\xdf\x39\xf0\xb7\xfe\xe6\xc0\xee\xa1\x5d\xdb\xb7\xdc\x39\xf2\xd5\x15\x97" "\xad\x1c\xbb\xdf\x82\xd1\x6c\x51\xb4\x20\xbe\x70\x52\x2d\xc3\xc3\xc3\xc3" "\x51\x14\x0d\xd4\x6f\x4b\xe7\xfb\xbd\x2f\x3e\xf7\xff\xd6\x3f\xf1\x97\x5f" "\x8f\xa2\x15\xe7\xbd\xbe\xb4\x16\xec\xe7\x93\xff\xf5\xad\xcf\x2d\xcc\xf9" "\x98\x11\x0f\x0e\xaf\xfd\x17\x57\x3e\x72\x60\xc6\xff\x9a\x37\xb6\xa1\x2f" "\xa9\xab\x2f\x54\x57\x5f\xe3\xb6\xb4\x82\xde\xc1\xd7\xfe\xec\xb3\xcf\xbf" "\x31\x52\xd7\x87\x9b\xd5\xf5\xd8\xab\xd7\xfd\xdf\x86\x82\x46\x37\x4c\xe4" "\x49\x54\xba\xa3\xca\xe8\x27\xdd\xf1\xac\xdc\x3a\xc6\xab\x9e\xa8\x67\x74" "\x7f\xd5\xb6\x6e\xdb\x3e\xb4\xa2\x78\xff\xc6\x81\xfd\xfb\xf1\x97\xfe\xf0" "\xe4\xbf\xbb\x63\xfd\x3f\x1d\xdb\xbf\x3d\xc1\x3e\x5a\xdc\xbf\x23\x7b\xb5" "\x36\xfc\xd0\x4f\xef\xfd\xf8\xdd\x9f\x1d\xfa\xf4\x39\xfc\x7d\x2f\xda\xdf" "\x75\x2d\x8c\xd6\x97\xee\xbf\x9e\x64\x7f\xcf\x4d\xfa\x9a\x1b\xe8\xab\x12" "\xe8\xeb\xf6\x81\x37\x4f\xfc\xb3\x7f\xfb\x9f\x9e\xb9\x3b\x5a\x51\xfb\xe9" "\x45\x93\xe7\x2e\xea\xab\x2b\x59\x00\x5d\xf1\xa2\x96\xe6\x4d\x67\x98\x15" "\xcf\x6f\x88\xed\x49\xe2\xd3\xef\x78\x7a\xbf\x4f\xee\xbd\x75\xd7\x27\xf7" "\xdc\x79\xe0\xb2\x6d\xb7\x6e\xb9\x79\xe8\xe6\xa1\x1d\x2b\x57\x5e\xb9\xea" "\xf2\x95\x97\x5f\xb1\x6a\xe5\x27\x47\x5b\x1f\xfb\xd8\xb1\xfe\xd3\xf9\x3f" "\xde\x62\xff\xb3\x93\x4c\xb3\xe3\xc5\xb9\xfb\x2d\xbb\x35\x9d\xf7\xa2\xd1" "\x8f\xd5\x28\x29\x3b\xbd\xa9\xfb\xa4\x51\x57\xd4\x3b\x76\x9b\xd9\xcf\x69" "\x78\xb6\xeb\xde\xe4\x6b\xbd\xf1\x82\x49\xb9\x86\x73\xa4\x5f\x3b\xf1\xfd" "\x2d\x1b\xde\x79\xe3\xc0\xf3\xa1\x47\x5e\xfc\xdc\xd8\x8c\x33\xa3\x39\x63" "\xb7\xf1\x92\x40\xe4\xf6\xcc\x1d\xab\xe3\x05\xe7\xcd\x7f\x76\x1e\x97\x3b" "\x7f\xb7\x67\x7b\xfa\xb1\xb5\xc7\x65\x51\x5d\x45\xeb\x6a\xa4\xae\xe2\x75" "\x55\x5f\x51\x93\xe3\xd8\xab\x97\x3c\xf8\xd3\xa7\x1e\xf8\xe7\x37\xb4\x70" "\xbc\xa8\x0b\x1d\xad\x2f\xad\x73\xd6\xc8\xc3\xe5\xf2\xa8\xee\x71\x3b\x79" "\x5f\xe5\xf5\xd5\xc2\xf7\x67\x30\x6f\x3f\xdc\x78\xd9\xee\x3f\xbc\x73\xdb" "\x86\x43\x45\xc7\xf3\xfa\xef\x4c\xfd\xc7\x8c\x78\x70\xf8\x7f\x2e\x89\xbf" "\xbc\x6f\xcf\x9f\xed\x1e\xdb\x70\x56\x9e\x2f\xeb\x0b\x6a\xf3\xf9\x72\xbc" "\xea\x89\x7a\x46\xf7\x57\x4f\xf2\xfd\x38\x57\xf7\x6f\x77\x54\x4d\xfa\xea" "\xcd\xad\x6b\x5d\xfc\xd4\x67\x3e\x7e\xeb\xd1\x5f\x19\xaf\x6f\xc6\x8c\xe8" "\x8e\x2d\x7b\xf7\xee\xbe\x7c\xec\xe3\x07\xb5\xaf\x3f\x9f\x31\x6f\xe1\xb6" "\x7b\x16\x5f\x38\xa9\xaf\x2b\xc6\x3e\x16\x1d\xf7\x2f\xca\x8c\x0b\x8f\xfb" "\x95\xfc\xfe\x8a\x8e\xfb\xd9\x79\x26\xe2\xf3\xf3\x0d\x64\xc6\xbd\x51\xb5" "\xad\xe7\x89\xf5\x3f\xff\xf1\x83\xf7\x5e\xb3\x7f\x61\xf0\x79\xe2\x44\xab" "\xcf\x13\xbf\xdd\x30\xaa\x96\x7c\x9e\xa8\x04\x1e\xef\x0f\xfd\xe5\xb7\x07" "\xde\xbd\xe1\x6b\xef\x16\xad\xa7\xab\xf7\x2c\xbe\x6b\x61\xce\xc7\x6c\x7b" "\x83\xc3\x2f\xfc\xc1\xaf\x5e\xfe\xe9\xeb\xae\xf9\xfc\xd8\x86\xb3\x72\x1c" "\xaa\x2f\xa8\xcd\xe3\xd0\x78\xd5\x49\x3d\xe9\xfe\x1a\x3d\x0e\x5d\x71\xee" "\xf4\xf1\xfe\x7d\x9f\x1b\x1e\x88\xf1\xe0\xf0\x45\xdf\xf9\xd8\xb5\x67\x4e" "\xdd\xf6\xd5\xb1\x0d\x45\xfb\x77\x3c\x3a\x6f\xff\xae\x2c\x3e\xce\x57\x03" "\x7d\xdd\xd0\xf5\x91\xf9\x8f\xfc\x64\xf1\x47\x3a\xb7\x7e\xf7\x6c\xfa\xab" "\x4b\x3e\x31\x6b\xf6\x39\xb6\x7e\x7b\x92\xfd\xdb\x13\xd8\xbf\xe3\x55\x27" "\xf5\x54\xeb\xf7\xef\x27\x6e\xdc\xb9\xfd\xa6\xb1\xf1\xb9\x7b\xde\x36\xa6" "\xbb\xe0\xfa\x27\x7d\xde\xd9\x73\xe7\x81\x5b\xb6\x6c\xdf\x3e\xb4\x7b\x4f" "\x6b\x7d\xb5\xfa\x7c\x9a\xce\x93\xdd\xcb\xed\x3e\x9f\xa6\xcf\x1e\x0b\x0a" "\xfa\x4a\xbf\x5f\x13\x7d\x4d\xdf\x27\xad\xec\xaf\x56\x1f\x6f\x69\xfd\x37" "\x65\x72\xb4\xfb\x78\x03\x48\x4d\x3c\x2f\xcc\x68\xd8\x9e\x3d\x7e\xa6\xaf" "\xfb\x2d\x9d\x1b\xad\xff\xc4\x03\xdf\x7b\x35\x1e\x18\x7b\xbe\xec\xd4\xeb" "\xad\xe9\x3c\x17\x64\x9e\x98\xdb\x7d\xbd\xb5\xe8\x3a\xe9\x23\x99\x71\xe3" "\x75\x52\x2d\xaa\xeb\x7b\xcc\xe4\xeb\xa4\xd1\xbb\x14\x5d\x27\x65\xe7\x29" "\xba\x4e\xba\x24\x33\x2e\xbe\x8e\x79\x30\xb7\x93\xd0\xf7\xaf\x2b\x79\xe6" "\xcd\x7b\xdd\x34\x53\x6f\x6d\x24\x43\x68\x7d\xf4\x27\xf9\xfb\x93\x71\x7a" "\xbe\xb9\xf4\x13\xd1\x95\xd5\xe7\x3f\xfa\xc5\x78\xb0\xb5\xf5\xd1\xea\xf9" "\x74\x3a\xcf\xdf\xc8\xec\xa0\x76\xcf\xa7\x8b\xd6\xc7\xb2\x28\xbf\xae\x4e" "\xaf\x8f\x8f\x65\xee\x54\xfc\xfd\x3e\x94\x5b\x59\x4f\xe0\xfb\x51\xf4\xfd" "\x5e\xd6\x90\x68\x78\xb8\xec\x75\x79\x5f\xa0\xea\xf4\xba\xbc\x37\x8a\xdb" "\xca\x3f\x38\xf4\xe4\xb1\x67\xaf\x3f\xba\x28\x98\x7f\x73\x25\xc9\x5f\x69" "\x2b\xff\x2b\xd5\x57\x4f\x3f\x73\xb2\x7f\x76\x30\xff\xa1\x34\x7f\xad\xad" "\xfc\xcb\x1e\x9e\x7d\xf0\xd4\xfe\x75\xdd\xc1\xfc\x87\xd3\xfd\xd3\xd3\x56" "\xfe\xab\x36\x2e\x5d\x75\xe1\xc9\x7d\xb7\x07\xf3\xaf\x48\xeb\x9f\xd9\x56" "\xfe\x1f\x3d\xb2\xfc\xcc\xc6\x43\x2f\x1c\x0d\xe6\x8f\xd2\xfc\xbd\x6d\xe5" "\xbf\x76\xe5\xe3\xab\xbf\xb4\xf8\xbe\x27\x82\xf9\x5f\x8b\x93\x79\x46\x1e" "\xbb\x51\x74\xe4\xd4\xca\xad\x63\xe3\x38\xea\x4a\xd6\x7f\x5a\x47\x57\x43" "\x5d\x51\x76\x1c\x8f\x8f\x67\xe4\xf5\x11\x55\xeb\xe3\x2b\x69\x58\x32\x41" "\x35\x8e\x1b\xb7\xa7\x71\x99\xed\x69\x1f\xb5\x64\xfb\xc5\x75\x35\xe6\x59" "\x1f\xd8\x9e\x3e\x6a\x7b\x92\x07\xf6\x7b\xe9\x38\xca\x7e\xd2\x7c\x7b\x7a" "\x78\x4a\xeb\x3a\x11\x78\xfe\x39\x5b\x2a\x75\xe7\x1e\x79\xdb\x8b\x5e\x9f" "\xec\x94\x77\xde\xee\xff\xbd\xfa\x71\xfa\xff\xff\xe9\x1a\xe8\xae\x8d\x7d" "\xef\xae\xc8\xec\xaf\xa2\xe7\x8f\xec\xd1\x3b\xcd\x17\x7c\x1d\x36\xf0\x12" "\x46\xd1\xf9\xc2\xe4\xff\x7f\x9b\xd5\xd6\xe3\xef\xcd\x27\x9f\x5e\x52\x5d" "\xf4\xe8\xf1\xe0\xeb\xaa\xc7\x5a\x7d\x5d\x75\x57\xc3\x68\x56\xc1\xeb\xaa" "\x65\xeb\x0d\x1e\x2f\x8e\xa5\xc7\xd3\x72\xc7\xa3\xfe\x50\xfe\xd7\xd2\xfc" "\xe5\x9e\x0f\x82\xf9\x93\xe7\x83\xa2\x75\xf6\xd1\xcc\xb8\x70\x9d\x75\xe5" "\xcf\x57\xb4\xce\xb2\xe7\x29\xbd\xd1\x9c\xb6\xfa\xde\x70\xfc\xfe\xcd\xbb" "\x9e\x7a\x69\x79\x70\x9d\xad\x1d\x7b\xc0\x17\xaf\xb3\x47\x1b\x46\x73\x0a" "\xd7\x59\xb9\xff\x97\x0e\xae\xb3\xe7\xe2\x8e\xec\x8f\x60\xfe\xb5\x9d\x39" "\xaf\x09\xae\xb3\xe4\xbc\xa6\x68\x9d\x5d\x9a\x19\x97\x5f\x67\x8d\xe7\xa3" "\x5f\x4e\x6e\xef\xc8\xc4\xf7\x26\xaf\x10\x4f\xb5\xef\xd3\xab\x5f\x7f\xeb" "\x4c\xdf\x9a\xa7\x83\xeb\xec\x70\xab\xeb\xec\xf7\x1b\x46\x7d\x85\xeb\xac" "\xdc\xf9\x6d\xf0\xfb\x34\x7e\x7e\x3b\xdd\xe7\xe7\x1f\xec\xf3\xcf\x8e\x9e" "\x1f\x8e\x8d\x2b\x99\x71\xfe\xf9\x61\xf2\xdf\xb9\xd3\x75\x7e\xb8\x2e\xb0" "\x7d\xaa\xe7\x87\xbd\x93\x3e\x99\xe8\x23\xfa\x20\x9e\x1f\x06\x8e\x33\x00" "\xd0\xcc\x0f\x1e\xba\xf3\x7f\xd7\x8f\xd3\xeb\xff\xf4\xb9\x3b\xbd\xfe\xff" "\x5e\xe6\x7e\x65\xaf\x2b\xb3\x3f\x0f\x95\xea\xd4\x75\x65\x30\xff\xe1\xce" "\x5c\xaf\x04\xcf\x53\xc7\xaf\x57\xa6\xfb\x7a\x6b\xba\xcf\xb3\xa7\xf7\x7a" "\xcb\x79\x7c\x20\xff\xf8\xeb\xc8\xd3\xfd\xba\xd0\xf4\x5e\x57\xba\x0e\x49" "\xc6\x51\xf6\x93\x31\xae\x43\x00\x00\x78\x3f\x5c\xfc\xaf\xbf\xfd\xeb\xf5" "\xe3\xf4\xfa\x7f\xfc\xe7\xde\x92\xdf\xff\x7f\x29\x1d\x67\xee\xef\x3a\x37" "\x90\xff\xac\x5d\xe7\x4e\xf7\xeb\x24\xae\xa3\x73\xf3\x77\xe8\xe7\x2b\x8a" "\x5f\x07\x9b\xee\xd7\xa9\xa6\xf2\x3a\xc0\x7f\x3e\x2f\xfd\x9a\xd7\x01\xf2" "\x79\x1d\xe0\xec\xd6\x05\x00\xc0\xd4\x6c\xda\xba\x7b\x68\x68\xcf\xae\x2d" "\x37\x0e\x6d\xda\xb6\x63\xdb\xde\xf1\xed\x5d\xa3\x57\x4e\x93\x7f\x4e\xf5" "\x6f\x27\xb7\x6b\x33\x79\x8a\x7e\x7e\x3a\x2f\x7e\x56\x93\xf8\xaf\x06\xf3" "\x37\xd6\xf3\xa9\x40\x7c\x48\x6d\xf4\x67\x5e\xa3\xe8\x1b\x37\x7e\xf3\x8a" "\x4d\x37\x0d\xdd\x3e\xd5\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\xec\xf5" "\x45\xa8\xff\x55\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff" "\xd7\x04\xf3\x37\xd6\xf3\xe9\x40\x7c\x48\xd9\xfe\x43\xf3\x15\xf5\x9f\x17" "\xdf\xac\xff\xaf\x05\xf3\x37\xd6\xf3\xab\x81\xf8\x90\xb2\xfd\x87\xe6\x2b" "\xea\x3f\x2f\xbe\x59\xff\xd9\xdf\x07\x0b\xf5\xff\x6b\x81\xf8\x90\xb2\xfd" "\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xd7\x06\xf3\x37\xd6\xf3\x99\x40\x7c" "\x48\xd9\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\xeb\x82\xf9\x1b\xeb\xf9" "\x3b\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xd7\x07\xf3" "\x37\xd6\xb3\x3a\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff" "\xeb\xc1\xfc\x8d\xf5\x0c\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8" "\x66\xfd\x6f\x08\xe6\x6f\xac\xe7\xef\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8" "\xff\xbc\xf8\x66\xfd\xdf\x10\xcc\xdf\x58\xcf\x67\x03\xf1\x21\x65\xfb\x0f" "\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x7f\x23\x98\xbf\xb1\x9e\xbf\x17\x88\x0f" "\x69\xda\x7f\x6e\x7d\xad\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x37\x06\xf3\x37" "\xd6\xf3\xeb\x81\xf8\x90\xb2\xdf\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff" "\x37\x83\xf9\x1b\xeb\xf9\x5c\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b" "\x6f\xd6\xff\xa6\x60\xfe\xc6\x7a\x3e\x1f\x88\x0f\x29\xdb\x7f\x68\xbe\xa2" "\xfe\xf3\xe2\x9b\xf5\xbf\x39\x98\xbf\xb1\x9e\xbf\x1f\x88\x0f\x29\xdb\x7f" "\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xbf\x25\x98\xbf\xb1\x9e\x2f\x04\xe2\x43" "\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\x7f\x23\x98\xbf\xb1\x9e\x2f" "\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xdf\x18\xcc\xdf" "\x58\xcf\x97\x02\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xb3" "\xef\x77\x18\xea\xff\x1f\x04\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8" "\x66\xfd\x0f\x05\xf3\x37\xd6\xb3\x26\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd" "\xe7\xc5\x37\xeb\x7f\x6b\x30\x7f\xfe\xfb\x06\x64\xe3\x43\xca\xf6\x1f\x9a" "\xaf\xa8\xff\xbc\xf8\x66\xfd\xdf\x1c\xcc\xdf\x58\xcf\x57\x02\xf1\x21\x65" "\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xbf\x19\xcc\xdf\x58\xcf\xd5\x81" "\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xdb\x82\xf9\x1b\xeb" "\x59\x1b\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xff\x5b\xc1" "\xfc\x8d\xf5\x7c\x35\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb" "\xff\x96\x60\xfe\xc6\x7a\xd6\x05\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc" "\xf8\x66\xfd\x6f\x0f\xe6\x6f\xac\xe7\x9a\x40\x7c\x48\xd9\xfe\x43\xf3\x15" "\xf5\x9f\x17\xdf\xac\xff\x5b\x83\xf9\x1b\xeb\xf9\x5a\x20\x3e\xa4\x6c\xff" "\x23\xf3\xfd\xab\x9c\xbc\x45\xfd\xe7\xf5\xd3\xac\xff\x1d\xc1\xfc\x8d\xf5" "\xac\x0f\xc4\x87\x94\xed\x3f\x34\x5f\x51\xff\x79\xf1\xcd\xfa\xdf\x19\xcc" "\xdf\x58\xcf\xb5\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff" "\xbb\x82\xf9\x1b\xeb\xb9\x2e\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5" "\x37\xeb\xff\xb6\x60\xfe\xc6\x7a\xae\x0f\xc4\x87\x94\xed\x3f\x34\x5f\x51" "\xff\x79\xf1\xcd\xfa\xdf\x1d\xcc\xdf\x58\xcf\xd7\x03\xf1\x21\x65\xfb\x0f" "\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xf7\x04\xf3\x37\xd6\xb3\x21\x10\x1f\x52" "\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\x7f\x6f\x30\x7f\x63\x3d\x37\x04" "\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xef\x0b\xe6\x6f\xac" "\xe7\x37\x02\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x6f\x0f" "\xe6\x6f\xac\x67\x63\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6" "\xff\xfe\x60\xfe\xc6\x7a\x7e\x33\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7" "\xc5\x37\xeb\x3f\xfb\x3e\x90\xa1\xfe\x37\x05\xe2\x43\xc6\xfb\xdf\xbb\x7b" "\x68\x68\xd3\xbe\x5d\x37\x6d\xd9\x3b\xb4\x69\xc7\xce\x9b\x86\xf6\x6c\xda" "\xbf\x7b\xdb\xde\xbd\x43\xc9\x89\x5a\xd9\xdf\x2b\x0b\xff\x5e\xd0\xfb\xfc" "\x8b\x2c\x34\xd5\xf0\xf8\x18\x5b\x24\xdb\x76\xec\x19\xda\x3d\xf9\xf8\x3d" "\xb3\xe9\xfa\xad\x5f\x13\xd1\xe8\xaf\x3d\xcd\x1c\xbb\x8d\x3f\xdc\x52\x7c" "\xf6\x6d\xaf\xdb\x5d\x35\xe7\xca\x7a\xef\x8a\x6a\x4d\xf7\xd7\x05\x99\xf1" "\xbc\xe4\xfd\x68\xe7\x05\xde\x8f\x36\x1b\x9f\xa6\x5d\x3c\xfa\xc9\xe4\xf7" "\xa3\xcd\x4e\x5b\x2b\x78\x1f\xd7\xa2\xe3\x53\x76\xfe\xd0\xf1\x29\x6e\x12" "\x9f\x77\x7c\x0d\x1d\xcf\x8a\x9e\xff\xa6\x7c\xfc\x2b\x5c\xdf\x3d\x4d\xfb" "\xcf\x6e\xee\x4e\x7e\xb1\xaf\x3b\x3e\xaf\xa5\xf8\xa8\xc9\xdf\x77\x6b\x6d" "\xbd\x96\xfb\xbd\xd3\xe0\x7a\x7d\xad\xb5\xf5\x9a\x7d\xdf\xf5\xa2\xf5\x9a" "\x8d\x9f\xea\x7a\xed\x2d\xb9\x5e\xb3\xf3\x87\xd6\x53\xa5\x49\x7c\xb3\xf3" "\xa1\x56\xd7\xeb\x86\x40\x7c\xaa\xf5\xf5\x19\x07\xfb\xcd\x5b\x57\x53\xfd" "\x3b\x83\x69\xda\x29\xfd\x9d\xc1\xcc\x87\x49\xda\xf8\x5b\x06\xad\x3f\x1e" "\xca\xfd\x1e\x79\xf0\xf1\x90\x14\x5d\xf4\x78\xc8\xfe\x1e\x77\xd1\xe3\x21" "\x1b\x3f\xd5\xc7\xc3\xcc\x92\x8f\x87\xec\xfc\x45\x8f\x87\xbc\xf8\x66\xd7" "\xc7\xad\x3e\x1e\xae\x0b\xc4\x87\xb4\xbe\x1e\xca\xbd\x6f\x41\x70\x3d\xac" "\x68\x6d\x3d\x64\xff\x8e\x55\xd1\x7a\xc8\xc6\x4f\x75\x3d\xf4\x94\x5c\x0f" "\xd9\xf9\x8b\xd6\x43\x5e\x7c\xb3\xd7\x0b\x5b\x5d\x0f\x5f\x0b\xc4\xb7\xaa" "\xf5\xf5\x51\xee\x7d\x45\x82\xeb\x63\x73\x6b\xeb\x23\xfb\xf7\x24\x8a\xd6" "\x47\x36\x7e\xaa\xeb\x23\x2e\xb9\x3e\xb2\xf3\x17\xad\x8f\xbc\xf8\xd0\xff" "\xa7\x44\x53\x58\x1f\x5f\x0d\xc4\xa7\x1a\x9e\x3f\xb7\xee\x19\xbd\xa8\xdf" "\xb6\x65\xfb\xb6\x03\x99\x1f\xc0\xe8\x4b\x9e\x3f\xdf\xef\xe7\xc3\xb3\xf2" "\xbc\xfc\x57\xbf\xf6\xe7\xef\x8d\x7d\x48\xea\xa8\x4c\xaa\xa3\xe8\x7c\x22" "\xce\xd4\x31\x3f\xa9\x64\x7e\xe8\xef\x1e\x06\xea\xbe\xf1\xbf\xfc\x9b\xf5" "\xdf\xfb\xd9\x03\xdf\x8e\xa2\x15\xe7\x55\x97\x84\xeb\x9e\x28\x79\xe2\x43" "\x46\x3c\x38\xbc\xe0\xae\x65\xcf\x5e\xff\xe1\xe3\x9f\x1d\xa9\xbf\xd2\xb4" "\xfe\xf1\xc8\xf4\xef\x16\x17\xfc\xbd\xe3\x6c\x7c\xda\x4f\x6d\xfb\xce\x3d" "\x7b\x7f\x65\xeb\xce\x7d\x3b\x5a\xfd\x89\xab\xe6\xd2\xf7\x43\xa9\x8c\x8f" "\xa7\xe9\xfd\x50\x92\x8d\xd5\x16\xdf\xdf\x24\xf4\xfb\x04\x53\x7d\x7f\x93" "\xae\x49\x9f\x9c\x9b\x5a\x7e\x7f\x13\x80\x5f\x10\xf3\x0e\x3f\x37\xa7\x7e" "\x9c\xbe\xff\x5f\xfa\x7c\xd4\x9f\x1c\xfb\x66\x26\x07\xc0\x74\x7b\xeb\xe7" "\xd9\xe5\xde\x5f\x2f\x78\x9e\x7d\xa8\xb5\xf3\xec\xe5\xd9\x7e\x0b\xce\xb3" "\xb3\xf1\x69\xbf\xad\x9e\x67\x57\x4a\x9e\x67\x67\xe7\x2f\x3a\xcf\xce\x8b" "\x6f\xf6\x73\x7b\xad\x9e\x67\x7f\x25\x10\x3f\x55\x8d\xeb\x64\x64\x81\x8c" "\xae\x8f\xa1\x4d\xfb\x77\xee\xae\xff\x99\xb8\xe9\xfe\xbb\xb5\x9d\xaf\x77" "\x7a\xff\x8e\x6f\xf9\xfa\xa6\xf7\x7d\x1b\xdb\xd5\x7a\xfd\xd3\xfb\xbe\x90" "\xd3\x5f\xff\xf4\xfe\x1d\xe0\xe9\xaf\x7f\x7a\xff\xce\x73\xbb\xce\xda\xf5" "\x52\xf2\x66\x91\x45\xef\x1f\x59\x74\x1d\x15\xfa\xbd\xf4\xa9\x5e\x47\xcd" "\x98\xf4\xc9\xb9\xc9\x75\x14\x00\x9c\xfb\xfe\xc9\xee\xb7\xff\x65\xfd\x38" "\xbd\xfe\x4f\xae\x62\xc7\xaf\xff\xbf\x95\x8c\xab\x1d\x9e\x7f\xba\xaf\xa3" "\xa6\xfb\xba\x72\xba\xcf\x93\x3f\xf8\xef\xbf\x3f\xbd\xd7\x41\xae\x07\x9a" "\x4c\x76\x0e\x70\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x90\xef\xf7\xff\xfb\x7f\xfc\x6e\xfd\xb8\xbb\xd6" "\x3f\x7a\xfb\xca\xef\xec\x79\xf7\x2b\x17\x7c\xee\x07\xf7\x0e\x9d\xba\xeb" "\x0b\x7f\x74\xeb\x3d\xe7\xff\xf1\xc2\x77\xfb\xee\x5b\xf3\xe5\x87\x56\x7d" "\xfe\x87\x9b\xff\x64\xfe\xe0\xd2\x65\x43\x57\x7d\xe7\xc8\xd5\xf7\xdf\xf7" "\xe2\x67\x7e\xf6\xe2\x63\x4f\xac\x29\x9c\xa8\x6f\xec\xe6\xd2\x64\xd8\x13" "\x45\xf1\x5f\xc4\x51\xb4\xf4\xed\x23\x8f\xdd\xff\xf2\x9f\x9e\x3f\xb2\x2d" "\x1e\x99\x3f\xee\xbb\x3b\x9a\x3f\x3f\x5e\xf0\xdd\xf9\x71\x26\xc3\x8a\xd3" "\x51\x14\xdd\x34\x5e\x67\xe3\x17\x8f\x9c\x5a\xb9\x75\xe4\xf6\x9e\x6f\x75" "\x37\x6c\x9f\x97\x49\x92\xed\x2b\xea\xad\xa6\xf5\x34\xd4\x19\xdd\x51\xd8" "\x11\x1f\x40\x3d\xc9\x3a\x3b\xb8\xe9\x1b\x4f\x1d\xbb\x65\xf0\xe5\x23\x03" "\xbb\x56\xfe\xe4\xe4\x95\x3b\xef\x9e\x08\x89\x7b\xea\xd6\x53\x14\xcd\xdd" "\x5c\x7f\xff\xae\x28\x8a\x66\x26\xff\x46\xa4\xab\xad\x3f\xbd\x73\x72\xbb" "\x36\x8a\xa2\x59\x75\xf7\xfb\x54\x41\x5d\x97\xb4\x58\xff\x65\x81\xf1\x92" "\xe4\x76\x46\x72\xdb\x5b\x90\x27\xfd\xfa\xc5\x99\x71\xad\xc5\x3a\x6a\x99" "\xdb\xee\x16\xef\xd7\xa6\xff\x5f\x99\xde\xfc\x93\x64\xf7\x5f\xf6\x60\x34" "\x5d\xd2\x3e\xe7\x26\xb7\xcf\x27\xb7\x97\x4e\x31\x4f\x35\xfd\x17\x47\x95" "\x38\xaa\x8d\x97\xbf\x3d\x9e\x58\x23\x51\xdd\xf7\x2d\x8e\xe2\xd1\xb5\xdd" "\x33\x3e\xae\x8c\x8e\xa3\xf1\x71\x94\x1d\xc7\x99\x71\x25\x33\xae\x76\x65" "\xfa\x1a\x9d\x37\xd9\xb1\xd5\x38\x6e\xdc\x9e\xc6\x65\xb6\xa7\x87\xe3\x5a" "\xb2\xfd\xe2\xfa\x63\x75\x8e\x75\x81\xed\x8b\x92\xdb\x9e\xe4\x81\xfa\x5e" "\x3a\x8e\xb2\x9f\x8c\xe9\x9d\xf4\xc9\x44\x1f\x51\x5d\x5d\x27\xce\xd6\xc2" "\x08\xa8\x04\x1e\x7b\xe9\xf6\xf1\xf2\x92\x6f\x46\x6f\xb2\xad\x37\x5e\x30" "\xe9\x3e\xc3\x39\xd2\xaf\x9d\xf8\xfe\x96\x0d\xef\xbc\x71\xe0\xf9\xbe\x40" "\x1d\xf1\x73\x71\x92\x3f\x6e\x2b\xff\xe0\xd0\x93\xc7\x9e\xbd\xfe\xe8\xa2" "\xfe\x50\xfe\xcd\x95\x24\x7f\xa5\xad\xfc\xaf\x54\x5f\x3d\xfd\xcc\xc9\xfe" "\xd9\xc1\xfc\x87\xd2\xfc\xd5\xb6\xf2\xaf\xff\xf9\x8f\x1f\xbc\xf7\x9a\xfd" "\x0b\x83\xfb\xe7\x44\xba\x7f\x6a\x6d\xe5\x5f\xf6\xf0\xec\x83\xa7\xf6\xaf" "\xeb\x1e\x08\xe5\x3f\x9c\xe6\xef\x69\x2b\xff\x55\x1b\x97\xae\xba\xf0\xe4" "\xbe\xdb\x83\xf5\xaf\x48\xf7\xcf\xcc\xb6\xf2\xff\xe8\x91\xe5\x67\x36\x1e" "\x7a\xe1\x68\x30\x7f\x94\xe6\x9f\xd5\x56\xfe\x37\x9f\x7c\x7a\x49\x75\xd1" "\xa3\xc7\x83\xf9\x8f\xa5\xfb\xa7\xb7\xad\xfc\xd7\xae\x7c\x7c\xf5\x97\x16" "\xdf\xf7\x44\x70\xff\xbf\x96\xe6\x9f\xd3\x56\xfe\x0d\xc7\xef\xdf\xbc\xeb" "\xa9\x97\x96\x07\xd7\xe7\xda\x74\xff\xf4\xb5\x95\xff\xf4\xea\xd7\xdf\x3a" "\xd3\xb7\xe6\xe9\xd0\xb1\x33\x3e\x7c\xb6\x9f\x61\x01\x7e\xb1\x7c\x28\x39" "\xc7\x7a\x30\x19\xb7\x7b\x9d\x59\x56\xdd\xf5\xc2\xe3\x03\xb5\xb1\x73\xbe" "\xd9\xc9\xbf\x39\x9d\x9c\x28\x23\xae\xbb\x76\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x90" "\x9d\xc3\xd5\x7d\xf5\xe3\xb7\x8e\x3e\x74\xf5\x37\xff\xc7\xa6\xff\x56\x8b" "\xa3\x28\x0e\xdc\x67\x38\x47\xfa\xb5\xea\x8c\xc1\xc1\x81\x36\xea\x58\xf6" "\xf0\xec\x83\xa7\xf6\xaf\xeb\x4e\xc7\x23\x73\xf7\xb7\x91\x07\x00\x00\x00" "\x98\x6c\xf1\x9b\x0f\xdc\x56\x3f\x4e\xaf\xc3\x2b\xc9\x38\x8e\x7a\xa2\xfe" "\x68\x7f\x3c\x33\x5a\x9c\x7b\xff\xf4\x35\x82\xc5\xe9\x28\x6e\xdc\x9e\x7d" "\x0d\x61\xe6\x44\x64\x47\xf2\x54\x3a\x94\xa7\xda\xa1\x3c\xb5\x0e\xe5\xe9" "\xea\x50\x9e\x19\x1d\xca\xd3\xdd\xa1\x3c\x3d\x05\x79\x7a\xa2\xd6\xf2\xcc" "\x6c\x9a\xa7\xd2\x72\x3d\xb3\x3a\x94\xa7\xb7\x43\x79\x66\x77\x28\xcf\x9c" "\x0e\xe5\x99\xdb\x7e\x9e\x5a\x7d\x9e\x79\x1d\xaa\xa7\xaf\x69\x9e\xd6\xd7" "\xe1\xfc\x0e\xe5\x59\xd0\xa1\x3c\x1f\xea\x50\x9e\x85\x1d\xca\x73\x5e\x87" "\xf2\x7c\xb8\x43\x79\xce\xef\x50\x9e\xec\x6b\xca\x53\x5d\x87\x73\x92\xc8" "\x0b\x42\x79\x46\x3f\xa9\x16\xe6\xa9\xc5\xd5\xf1\x2f\xe4\xbd\x9e\x9e\xce" "\x73\x61\xc9\x79\x7a\x5b\x9c\x27\xfb\x9a\xfd\x54\xe7\x99\xd9\xe2\x3c\x97" "\x94\x9c\xa7\xa7\xc5\x79\x3e\x56\x72\x9e\xb8\xc5\x79\x96\x67\xee\x57\x99" "\xe2\x3c\x95\x82\x79\xd2\x75\x7b\x47\xa8\x9f\x74\xd4\xe2\xfa\xbf\xb3\x43" "\x79\x0e\x74\x28\xcf\xc1\x0e\xe5\xf9\xed\x0e\xe5\xf9\x87\x1d\xca\xf3\x8f" "\x3a\x94\xe7\xae\x92\x79\x00\x42\x7e\xf7\xc5\x4b\xff\xa0\x7e\x9c\x5e\xff" "\xa7\xd7\x9f\x71\xd4\x17\x75\xd7\xae\x88\x66\x25\x47\x9c\xec\xab\x00\xe9" "\xf5\xee\x45\xa3\x1f\x27\x3f\xdf\x85\x0e\x48\x69\xbe\x25\x99\xed\x5d\x45" "\xf9\xb2\x17\xd8\x99\x7c\x17\x4d\xb5\xbe\xec\x0b\x08\x99\x7c\x1f\x69\x9a" "\xaf\x36\xe9\x7a\x35\x27\x5f\xad\x3e\xdf\xb2\x0e\xe5\x03\x00\x00\x80\xa9" "\xf8\xc7\xa7\x0f\x36\xfc\xd7\xdc\xe4\xeb\xff\xfe\xa8\xbb\xb6\x70\xfc\xfa" "\xf5\xa3\x99\xfb\x17\x5e\xaf\x67\xff\x23\x3b\x91\xe6\xbb\xb4\xe5\x7c\x6f" "\xae\x6b\x96\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\xbf\x66\xd7\x5e\x63\xe4\xaa\xcb\x06\x80\xff" "\xcf\xce\xec\xcc\xbc\xcb\xa5\x0b\x69\xcb\x94\xde\xf6\x6d\xfb\x52\x08\xa1" "\x17\x9a\xbe\x11\x54\x98\x34\x91\x04\x23\x6c\x11\x5b\x2e\x0d\x59\x2b\x2c" "\x6c\xc3\xd2\x42\xb7\x05\x5a\x35\x45\x30\xb6\xd9\x04\x83\x16\x2f\xdc\x3e" "\x58\x90\x18\x42\x04\x12\x92\x06\x5d\x13\x0c\x28\xf1\x83\x8d\x0d\x62\xb8" "\xb8\x2e\xac\x04\xbe\x10\x41\x7a\x03\x8a\x8e\x99\xdd\x73\x76\xcf\xce\xec" "\xb0\xcb\x28\xad\xd5\xdf\x2f\xe4\x9c\x79\xce\x79\x9e\xff\xf3\x3f\x87\x84" "\xe4\x39\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xfc\xfb\xfb\xc3\xf7\xfe\xfa\x6c\x3a\x1e\xec\xeb" "\x6d\xef\x1a\xe8\xe8\x0f\x51\xa8\xfc\x33\xae\xf2\x38\x92\x7b\x99\x5c\xa9" "\xd4\xd6\xc0\x3e\xde\x79\x6e\xed\x95\x7f\x79\x69\xeb\xee\x24\xae\xf4\xce" "\x67\x1b\x58\x08\x00\x00\x00\xa8\xf1\xf8\x79\x33\x4e\x4f\xc7\xc9\x1c\x9e" "\x8c\xde\x51\x28\x84\x7c\x76\x69\xc8\x47\xb9\x31\x75\xc5\xf8\x3b\x40\x31" "\x8e\x9b\x5a\x87\xcf\x73\x16\x85\xe5\x99\xdd\xff\x77\x61\x54\x6a\x1a\x8a" "\x4f\x8e\x4e\x1a\x53\x57\x88\xeb\x0a\x71\x9c\x89\xeb\x7a\xb6\x6c\xbd\x7e" "\x6d\x77\x77\xe7\xc6\x4f\xf0\x47\xa5\x4f\xf5\x73\x54\xef\x27\x0a\x61\xe8" "\xf3\xc5\x9c\x13\xc3\xaa\x45\xdb\x9f\xd9\x13\xb5\x0d\x3f\x47\xcb\x04\xcf" "\xd1\x14\xd7\x2d\xde\x74\xc3\x8d\x8b\x7b\xb6\x6c\x3d\x6b\xdd\x0d\x6b\xaf" "\xeb\xbc\xae\x73\xfd\xb2\x65\xcb\xcf\x59\xba\x6c\xe9\xd9\xe7\x2c\x5b\x7c" "\xed\xba\xee\xce\x25\xc3\xc7\x90\x9f\x60\xbd\x10\x42\x69\xec\x7b\x99\xe0" "\x5f\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x01" "\xdb\x7e\xb3\xfb\x9b\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xbf\x25\x0a\x21" "\xaa\x53\x53\x1e\x47\x72\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\x2b\xf7\x3d\x38" "\x2b\x33\xe3\xee\xbd\x49\x5c\xe9\x9d\xcf\x36\xb0\x10\x00\x00\x00\x50\xe3" "\x97\x8f\xcf\x38\x3f\x1d\x27\x73\x78\x32\x7a\x47\xa1\x10\xf2\xd9\x5c\xc8" "\x84\x19\x43\xf1\xbc\xd1\xd4\x6c\x08\xe5\x72\x72\x7d\x41\xd5\xf5\x23\xb1" "\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xc8\xda" "\x77\xb0\xfd\x4f\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xff\xb8\x28\x84\xa8" "\x4e\x4d\x79\x1c\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\xab\x97\xfd\xf0\xfc" "\xcf\xcf\xbc\xe3\xde\x24\xae\xf4\x2e\x36\xb0\x0e\x00\x00\x00\x50\xeb\x85" "\xd3\x9b\xef\x48\xc7\xc9\x1c\xde\x14\xc7\x51\x28\x84\x62\x98\x1f\x9a\xa3" "\x19\x63\xea\x92\x6f\x03\xa7\x56\xad\x57\x9d\x97\xac\x33\x7b\x92\x79\xd5" "\xdf\x0e\xea\xe5\xcd\x9f\x64\xde\x69\x93\xcc\x3b\x63\x82\xbc\x8b\xe3\xf3" "\xad\x01\x00\x00\x00\x8e\x3d\x57\xb4\xfe\x76\x75\x3a\x4e\xe6\xff\xe6\x38" "\x8e\x42\x6b\xc8\x67\x8b\x21\x13\xc7\x13\xcd\xf1\xc9\x77\x81\xb9\x55\x79" "\x49\xfd\x44\xf3\x7d\x52\x3f\xaf\x4e\xfd\x44\x73\x7f\x52\x5f\x3d\xf7\x03" "\x00\x00\xc0\x7f\xb3\xb3\xde\x7c\xe2\xc3\x74\x5c\x3b\xff\x17\x43\x3e\x5b" "\x18\x99\xbf\x27\xfa\x7b\xfa\x45\xf1\xd9\xdf\xc9\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x80\x7a\x7e\x75\xf0\xc2\x9f\xa7\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe" "\x4c\x14\x42\x54\xa7\xa6\x3c\x8e\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x55" "\x7f\x7f\x63\xc7\xed\x97\xde\x32\x35\x89\x2b\xbd\xf3\xd9\x06\x16\x02\x00" "\x00\x00\x6a\x3c\x9a\xfb\xd4\x2d\xe9\x38\x99\xc3\x93\xd1\x3b\x0a\x85\x90" "\xcf\xb6\x84\xe6\x70\xdc\xd0\xdc\xff\x5a\x6e\xca\xd4\x75\xdf\x98\x39\x3b" "\x84\x50\x1a\x4a\xc8\xe5\xc2\xad\x6b\x37\x6d\xda\x78\xf6\xf0\x31\xc9\xfb" "\x62\xb4\xeb\xb3\x0b\x6f\xe8\x3b\xb3\x26\x6f\xe9\xf0\xf1\xc8\x3f\x29\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xcf\x5a\xf6\xc8" "\xce\x35\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xff\x7f\xa2\x10\xa2\x3a\x35" "\xe5\x71\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d\xbc\xb0\xf3\x8c\xc3\x57\xdd" "\xf5\x54\x5f\x12\x57\x7a\x17\x1b\x58\x07\x00\x00\x00\xa8\x35\xab\xfb\xe9" "\x3f\xa7\xe3\x64\x0e\x4f\x66\xff\x28\x14\x42\x31\xe4\x42\x2e\x4c\x1f\x8a" "\xd3\xb3\x7e\x45\x53\xd5\x7a\xf5\xbe\x19\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xff\x39\x7a\xb6\x6c\xbd\x7e\x6d\x77\x77" "\xe7\x46\x3f\xfc\xf0\xc3\x8f\x91\x1f\x47\xfb\xbf\x4c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd1\xf2\xb3\xf5\xdf" "\x7d\x3b\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74\xf4\x17\xa2\x10\xa2\x3a\x35\xe5" "\x71\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d\xfc\xff\x55\x73\xce\x99\xbd\x7f" "\xf3\xcd\x49\x5c\xe9\x5d\x6c\x60\x1d\x00\x00\x00\xa0\xd6\x9a\xb7\x36\xef" "\x4f\xc7\xc9\x1c\x9e\xcc\xfe\x51\x28\x84\x62\x68\x0e\xcd\x61\x5a\x1c\xd7" "\x1a\x9a\xff\x5b\x8f\xc4\x6e\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\xa3\x69\x6e\x88\x42\xf9\x63\x3a\x65\xe5\xd1\xde\x35\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x49\x38\xf0\xe2\xaa\xfb\xd2\xf1\x60\x5f\x6f\x7b\xd7\x40\x47\xff\x09\x51" "\x08\x51\x9d\x9a\xf2\x38\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e\xae\xdc\xfb" "\xad\x2f\xdf\xb8\xeb\xd9\x33\x92\xb8\xd2\x3b\x9f\x6d\x60\x21\x00\x00\x00" "\xa0\x46\xf3\x9b\x2f\x7e\x25\x1d\x27\x73\x78\x32\x7a\x47\xa1\x10\xf2\xd9" "\x59\x21\x1f\x66\xc5\x57\xba\xc7\x2e\x10\x65\x92\xc4\x71\xbf\x0b\x8c\xd6" "\x7d\x6d\x4c\x59\x66\xd2\x75\x3b\xaa\x76\x3c\xbc\xb3\x42\xfc\x1d\xa2\x30" "\xb2\xcf\x30\xf4\xd9\x61\xb4\xee\xae\x8f\xac\x2b\xc6\x57\x9b\x5a\x27\xf7" "\x9e\x00\x00\x00\xe0\x58\x36\x6d\xc7\xc5\x5f\x4f\xc7\xc9\xfc\xdf\x1c\xc7" "\x51\x68\x0d\xf9\xec\xb4\xd4\x5c\x7d\xe3\x98\xfa\x96\x49\xcf\xf1\x77\x8f" "\xa9\x3b\x61\xd2\x75\x3f\x19\x53\xd7\x3a\x41\xdd\xbf\xe0\x95\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x0d\xba\x73\xe5\x73\xa7\xa4\xe3\xc1\xbe" "\xde\xf6\xae\x81\x8e\xfe\x28\x0a\x21\xaa\x53\x53\x1e\x47\x72\x2f\x93\x2b" "\x95\xda\x1a\xd8\x47\xa9\xf3\xbe\xa7\x1f\xbe\xbc\x6f\x46\x12\x57\x7a\x17" "\x1b\x58\x07\x00\x00\x00\xa8\x75\xe9\x1b\x85\xef\xa4\xe3\x64\x0e\x4f\x66" "\xff\x28\x14\x42\x31\xcc\x0e\x27\x86\xd9\x43\x73\x7f\x68\x1d\x5b\x9f\xe4" "\x1d\x57\xfa\xdd\xcb\x2b\x76\xbf\x74\x45\x08\x4b\xa6\x3f\x3f\x27\x5b\xb7" "\xdf\x0f\xf6\x5c\xf6\x76\x38\xf4\x99\xd7\xde\x1b\x3e\x0c\x85\x21\x34\x8d" "\x4d\x6a\x0a\x61\x4a\xdc\x2f\xaa\xd3\xef\xea\xdf\x3f\xb2\xea\x99\x0f\xb7" "\x3f\x10\xc2\x92\x69\x99\x59\xf5\xfb\x8d\xb6\x1a\x3d\x54\x89\x4a\xe5\x93" "\xb7\x2d\x78\xf8\xf2\xe9\x7b\x57\xd4\x5d\x06\x00\x00\x00\x8e\x69\x85\x07" "\x0f\xfc\x38\x1d\x27\xf3\x7f\x32\x51\x47\xa1\x35\xe4\xb3\xeb\xeb\xce\xff" "\x49\xde\xc7\x9a\xff\xdb\x7b\x66\x6e\x9b\x1a\x1f\xe3\x2f\x00\x55\x15\x4d" "\xad\x71\xbf\xa6\x3a\xfd\x7a\xdf\x7d\xa0\xed\xe0\x9a\x2f\x1d\xac\xcc\xff" "\xcf\xcf\x29\x8c\xfc\xbf\x02\xa7\xcf\x1f\x9b\x9f\x6e\x95\x3e\x56\x7d\x73" "\x88\x4a\xe5\xb9\x4f\x9c\xb6\xfa\xf0\x81\x9b\x2e\x19\xbe\x90\xf4\xcf\xd4" "\xe9\xbf\xa6\x79\xde\x49\x3b\xdf\x9a\x39\x2f\xe9\x5f\x88\xaf\x5f\x13\x26" "\xdb\x3f\x54\xf5\xef\xe9\x38\x34\x7f\x51\xcb\xf1\x17\x8c\xed\x1f\x42\x68" "\x1b\xaf\xff\x8f\x2e\x7c\xfc\xfd\x55\xf7\xbe\x7b\xc5\x70\xff\xfa\xef\x7b" "\xf1\x1f\x07\x3f\x37\x35\x6c\xf8\x7e\xa1\x3b\x39\x0e\x5f\xa9\xed\xbf\xf2" "\xfe\xe5\x3b\xb7\xe6\x5e\x9f\x32\xb6\x7f\x54\xa7\xff\xc2\x67\x9f\xdc\xff" "\xd8\xad\xab\xee\xac\x7e\xfe\x53\xab\xb6\x92\x1b\xea\xb6\xb8\xe6\x58\xa5" "\xd2\x35\x5b\xee\xdd\x77\xfb\xc2\xdb\x56\x74\x9e\x9b\xea\xdf\x54\xa7\xff" "\xcd\x6d\xaf\xbc\xf3\xed\x9f\xfe\xe2\xa1\x4a\xff\x7d\x73\x5b\x46\xfa\x2f" "\xfc\x88\xe7\x9f\xb0\xff\x9e\xf9\x3b\xf6\xed\xda\x7e\xcf\x9a\xb1\xef\xbf" "\x54\xdb\xff\xb6\x70\xf5\x59\x1b\x9f\xdc\xb2\xee\xca\xbb\xaa\x9f\xbf\xa5" "\x6a\xe1\xf4\x9b\x4f\x1f\x6b\xdf\xff\xab\xb3\xa2\x8b\x36\xf7\xbc\xbc\xb1" "\xfa\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xb1\xad\xe3\xb1" "\x0f\x0e\xa5\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\xa6\x28\x84\xa8\x4e\x4d" "\x79\x1c\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\xbf\xce\xec\xf9\xe0\xa1\xfd" "\xc5\xe3\x93\xb8\xd2\xbb\xd8\xc0\x3a\x00\x00\x00\x40\xad\x4b\x56\xbc\x7a" "\x5d\x3a\x4e\xe6\xf0\x64\xf6\x8f\x42\x21\x14\x43\x2e\xe4\x42\xcb\xd0\xdc" "\x7f\xf2\xb6\x05\x0f\x5f\x3e\x7d\xef\x8a\xd0\x1a\xdf\x8f\xcf\xd9\xee\x0d" "\x3d\x9b\xce\xbc\x76\xc3\xe6\xf5\xd7\x1c\xe9\x47\x00\x00\x00\x00\x26\xb0" "\xeb\xbc\xf7\x57\xa4\xe3\x64\xfe\xcf\xc6\x71\x14\x5a\x43\x3e\xbb\x20\x34" "\xc7\xf3\xff\xca\xfb\x97\xef\xdc\x9a\x7b\x7d\x4a\x32\xff\x87\x10\x86\xfe" "\xdc\x9f\xbd\x76\x5d\x77\xe7\x92\x30\xf2\x9d\xa0\xa7\xe3\xd0\xfc\x45\x2d" "\xc7\x5f\x90\xe4\x65\xe2\x73\xa1\x92\xb7\xe8\xea\x0d\xdd\xf1\x67\x82\x64" "\xdd\xa7\x1e\xfd\xf4\xd2\x73\x2f\xbb\x74\x24\xbf\x29\x9d\x7f\xf6\x68\xde" "\xdc\x27\x4e\x5b\x7d\xf8\xc0\x4d\x97\x8c\x9b\xb7\x6c\x34\xef\xd5\x59\xd1" "\x45\x9b\x7b\x5e\xde\x98\xda\x67\x69\x24\x6f\xe9\x68\x5e\xef\xbe\xdb\x17" "\xde\xb6\xa2\xf3\xdc\xe4\x39\xa2\xf8\x5c\x88\x9f\x27\xc9\xdb\x33\x7f\xc7" "\xbe\x5d\xdb\xef\x59\x93\xe4\x35\xc5\xe7\x96\x78\x3d\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x20\x84\x93\xde\xfb\xdb\x57\xd3\xf1\x60\x5f\x6f\x7b" "\xd7\x40\x47\x7f\xc8\x84\x10\xd5\xa9\x29\x0f\xf9\xdf\x72\x5a\x72\x2f\x93" "\x2b\x95\xda\x1a\xd8\xc7\x07\xe7\x3f\x3f\x78\xb8\xf5\x0b\x0f\x26\x71\xa5" "\x77\x3e\xdb\xc0\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x60\x07\x0e\x04" "\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\x0a\xfb\xf5\x13\x1a\x47\x15\xc7\x01\xfc\xbd\xdd\xad\xd9\x76\x6b\xdd\xd4" "\x42\x13\xad\x21\xc5\x5e\x5a\x10\x0a\xc1\x62\x0f\xd2\x5c\xfc\x83\x44\x2d" "\x15\x45\x0b\xc5\x28\xc6\x8b\x8a\x05\xd1\x8a\x3d\xd8\x36\x18\x8a\x7a\x28" "\x28\xb4\xb4\x97\xd2\x8a\x67\x25\x87\xa2\xf6\x10\x8b\xad\xa2\x20\x56\xf1" "\x20\x9e\x14\xf4\xa4\x92\x43\x52\x24\x15\x95\x24\xf3\x36\xbb\xd3\x8e\x89" "\xa3\x16\x29\x9f\x0f\x2c\x6f\x7f\x6f\x77\xbe\xf3\x9b\xb7\x6f\x27\x59\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xd7\x1e\xf9\xee\xae\x5a\x7b\xdd\x55\xeb\x99\x1b" "\xcf\xbd\xf2\xdc\x85\xfb\x6e\xb8\xe3\xd3\x03\x23\xd3\x2f\xdf\xfd\xfe\x33" "\xfb\xd7\x7e\xb0\xe6\x42\x73\x74\xe8\xde\x57\xb7\xde\xf9\xe5\xf0\x27\xdd" "\x83\x7d\x1b\x46\xb6\xbc\x3b\x7e\xff\xd8\xe8\x99\xdb\x7f\x3b\x73\xf8\xe8" "\xd0\xa2\x27\x7a\x71\x7e\xd8\x94\x95\xf5\x10\xe2\xcf\x31\x84\xbe\x1f\xc6" "\x0f\x8f\x9d\xfd\x6c\xed\xec\x5c\x9c\x3d\x7f\x6c\xee\x0b\xdd\xdd\x71\xf5" "\x87\xdd\x31\x97\xb0\x79\x26\x84\xf0\x44\xab\xcf\xce\x17\xc7\xa7\x07\x9e" "\x9c\x1d\xf7\xbf\xd6\xd5\x31\x7f\x5d\x2e\x24\x7f\x5d\xa1\x51\x4d\xfd\xcc" "\x6b\x76\xf6\xcb\xd5\xa5\x9e\xed\xb3\xbd\x8f\x3e\x7e\x62\xe2\xa9\xc1\xb3" "\xe3\xfd\xbb\x07\x7e\x9a\xba\xf5\xd9\x7d\x0b\x6f\x89\xf5\xb6\xfd\x14\xc2" "\xaa\xe1\xf6\xe3\x97\x85\x10\x96\x67\x8f\x59\x69\xb7\xf5\xa4\x83\xb3\x71" "\x7b\x08\x61\x45\xdb\x71\xb7\x2d\xd2\xd7\xcd\x4b\xec\xff\x96\x82\x7a\x5d" "\x36\x5e\x93\x8d\x8d\x45\x72\xd2\xeb\xeb\x73\x75\x6d\x89\x7d\xd4\x72\x63" "\xd7\x12\x8f\x5b\xba\x99\x8e\xaa\xf2\xaf\xe7\xff\xb5\xfc\xfa\xe5\x6f\x46" "\xff\x95\x74\x9d\xab\xb2\xf1\x54\x36\x6e\xfa\x9b\x39\xd5\xf4\x88\xa1\x12" "\x43\xad\xd5\xfe\xd3\x71\x61\x8f\x84\xb6\xcf\x2d\x86\x38\xb7\xb7\xeb\xad" "\xba\x32\x57\x87\x56\x1d\xf2\x75\xcc\xd5\x95\x5c\x5d\x5d\x96\xbb\xae\xb9" "\xf3\x66\x0b\x5b\x8d\xb1\x73\x3e\xbd\x2f\x37\x9f\x6e\xc7\xb5\x6c\x7e\x7d" "\xfb\xbd\xfa\x32\x76\x14\xcc\xf7\x66\x63\x3d\xfb\xa2\xfe\x9a\xea\x90\x7f" "\x32\xaf\x71\xc9\x93\x85\xeb\x08\x6d\x7d\x4d\x5e\xa9\x8d\x51\xa0\x52\xf0" "\xdd\x4b\xf3\xad\xf6\xb2\x0f\xa3\x91\xcd\x35\xe2\xea\x4b\x8e\xf9\xe3\x32" "\xd2\x6b\x93\x1f\x3f\xb6\xf3\x97\x6f\x5e\x3a\xd5\x2c\xe8\x23\xbe\x13\xb3" "\xfc\x58\x2a\x7f\x70\xe4\xd8\xc4\xdb\x0f\x9f\xee\xed\x29\xca\x1f\xae\x64" "\xf9\x95\x52\xf9\xe7\xaa\x9f\xcf\xbc\x35\xd5\xb3\xb2\x30\xff\x50\xca\xaf" "\x96\xca\x7f\xf0\xf7\x1f\x0f\x1e\x78\x60\xcf\x9a\xc2\xf5\x99\x4c\xeb\x53" "\x2b\x95\xbf\xe1\xf5\x95\x7b\xa7\xf7\xec\xe8\xea\x2f\xca\x3f\x9e\xf2\xeb" "\xa5\xf2\xb7\xec\xea\xdb\x7a\xd3\xd4\xf3\x2f\x14\xf6\xbf\x39\xad\xcf\xf2" "\x52\xf9\x5f\xbf\xb1\xf1\xe2\xae\x43\xef\x9d\x2e\xcc\x0f\x29\x7f\x45\xa9" "\xfc\x6f\x8f\x9d\x5c\x57\xed\x7d\xf3\x7c\x61\xfe\x44\x5a\x9f\x46\xa9\xfc" "\x87\x06\x8e\x6c\xbb\xe7\xc6\xd1\xa3\x85\xeb\xff\x45\xca\xbf\xb6\x54\xfe" "\xce\xf3\x63\xc3\xbb\x4f\x7c\xb4\xb1\x70\x7f\x6e\x4f\xeb\xd3\x2c\x95\x3f" "\xb3\xed\xab\xef\x2f\x36\x87\x4e\x16\xdd\x3b\xe3\xf1\x2b\xfd\x17\x16\xe0" "\xea\x72\x7d\xf6\x3f\xd6\xc1\xac\x2e\xfb\x3b\xf3\x9f\x6a\xfb\xbd\x70\xa4" "\xff\x4f\xf6\xeb\x10\x05\x00\x18\x86\x01\x20\x83\xc9\xed\xff\xdf\x9d\x58" "\x0b\xa5\xba\xf2\x0e\xa2\x63\x93\xfd\x37\xdf\x89\xdc\xc9\xa2\x66\x95\xef" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xe9\x05\x00\x00\xff\xff\x49\x11\x67\x82", 23954); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x5d92, /*img=*/0x2000bb80); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*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=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }