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