// https://syzkaller.appspot.com/bug?id=d13ff4f487f1df9c87d7a0abe11a8c14e5e7b244 // 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"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20000100, "./file0\000", 8); *(uint32_t*)0x20000280 = 0; sprintf((char*)0x20000284, "%020llu", (long long)0); *(uint16_t*)0x20000298 = -1; memcpy((void*)0x2000029a, "\x2b\xca\x6a\x97\xe9\x9c\x9a\xe5\xe9\x61\x04\xa5\xc8\xa9\x13\x7e\xb1" "\xe3\x16\x5e\x86\x31\xa5\x2e\x9e\x14\xee\xda\xf5\x2e\x0c\x7e\xce\x2e" "\xd7\x3c\xc9\xb1\xe9\x33\xb3\x5d\xf6\xe3\xce\x99\x4a\x43\xbf\x45\xe3" "\xb5\x6b\x41\xb6\x8c\x0d\x46\x7a\x6c\x2f\x92\x11\x72\x3f\xb1\x8c\xce" "\x10\xc6\x4d\xe0\x37\x0f\x37\xbd\x33\x23", 78); memcpy( (void*)0x20005dc0, "\x78\x9c\xec\xdd\x7d\x70\x5d\x67\x99\x18\xf0\x73\xee\xbd\xb2\x64\xcb\x8e" "\x65\x63\x88\x1c\x3b\x8e\x42\x0c\xd4\xd9\x06\x9c\xb8\x49\x31\xbb\xd4\x2a" "\x5d\x28\x50\x43\x8c\x83\x93\xe0\xac\xd7\x36\x89\x0c\x5e\x1c\xdb\xf8\x23" "\x4e\xec\x6d\xf3\xd5\x0d\x69\xa0\x1d\xcf\x24\xb3\x49\x93\xd2\xf1\x26\x0c" "\xdd\xe9\xec\xb4\x61\xbc\x6d\xca\xae\x3b\x63\x42\x08\x3b\xec\x4c\x26\x86" "\xf2\x07\x9b\x7e\x6d\xa6\xd0\x3f\xca\x66\x3d\x8b\x1d\xa8\xcd\xa0\x1d\x49" "\xe7\x48\xf7\x1e\x9d\xf7\x9c\xab\x7b\xae\x1c\x07\x7e\xbf\x19\xe9\xea\x3d" "\x7a\xee\xf3\xbe\xcf\xb9\xef\xf9\x94\x74\x15\x01\x00\x00\xf0\x2b\xe1\xc5" "\xdf\xdb\xff\xfa\xc7\x2f\xfb\xe0\x77\x1e\x18\x39\x7b\xef\x87\xff\xe4\xce" "\xfb\xa3\xfe\xfa\xf8\xf2\xbe\x34\x60\x20\x79\xbc\xfb\x8d\x1a\x21\xb3\x69" "\xd5\x77\xcf\xb7\xbc\xb2\xbd\x8d\xc1\xf1\xc7\xec\xbc\xb8\xf4\x4f\x97\xbc" "\x3e\xf0\xe0\xfa\x8f\x3d\xb2\xf6\x43\xdf\xdd\xf6\x67\x8b\x86\x57\xac\x1c" "\xb9\xe1\x6b\xc7\x6f\x7c\xe8\xc1\xe7\xdf\xff\xf3\xe7\x1f\x7f\x72\x7d\x59" "\x3f\xe9\x7c\xba\x7a\xaa\x1d\xff\x55\x1c\x45\x2b\x7e\x78\xfc\xf1\x87\xbe" "\xf5\xe7\x97\x8e\x2d\x8b\xc7\xfa\x8f\x07\xee\x8b\x16\x2d\x8a\x17\x7f\x63" "\x51\x9c\x49\xb1\xfa\x5c\x14\x45\x77\x4c\x8e\xb3\xf5\x9b\xc7\xcf\xae\xd9" "\x31\xf6\x78\xff\x17\x7b\x5b\x96\x2f\xcc\x24\x31\xdf\x7f\xb5\xf5\x25\xf3" "\xec\xc8\xd6\x4f\x3f\x7d\xf2\x73\xc3\xdf\x3a\x3e\xb4\x77\xcd\x8f\xcf\x5c" "\xbf\xe7\xbe\xa9\x90\xb8\xaf\x69\x3e\x45\xd1\x25\xdb\x9a\x9f\xdf\x13\x45" "\xd1\xdc\xe4\x63\x4c\x3a\xdb\x06\xd3\x27\x27\x8f\x1b\xa2\x28\x9a\xd7\xf4" "\xbc\xf7\x96\x8c\xeb\xaa\x36\xc7\x7f\x4d\xa0\xbd\x3c\x79\x9c\x93\x3c\xf6" "\x97\xe4\x49\xbf\x7f\x65\xa6\xdd\x68\x73\x1c\x8d\xcc\x63\x6f\x9b\xcf\xeb" "\x54\x6d\x96\xf3\x67\x65\xd7\x5f\x76\x67\x34\x5b\xd2\x3a\x2f\x49\x1e\x9f" "\x4b\x1e\xaf\x9e\x61\x9e\x7a\xfa\x11\x47\xb5\x38\x6a\x4c\x0e\x7f\x57\x3c" "\x35\x47\xa2\xa6\xd7\x2d\x8e\xe2\xf1\xb9\xdd\x37\xd9\xae\x8d\xb7\xa3\xc9" "\x76\x94\x6d\xc7\x99\x76\x2d\xd3\xae\xf7\x64\xea\x1a\xef\x37\x59\xb1\xf5" "\x38\x6e\x5d\x9e\xc6\x65\x96\xa7\xbb\xe3\x46\xb2\xfc\xca\xe6\x7d\x75\x8e" "\x8d\x81\xe5\x4b\x93\xc7\xbe\x64\x43\xfd\x59\xda\x8e\xb2\x5f\x4c\xe8\x9f" "\xf6\xc5\x54\x1d\x51\xd3\xb8\x4e\x5f\xa8\x89\x11\x50\x0b\x6c\x7b\xe9\xf2" "\xc9\xe1\x25\x2f\x46\x7f\xb2\xac\x3f\x5e\x3c\xed\x39\xa3\x39\xd2\xef\x9d" "\xfe\xf6\xf6\xcd\xaf\xfd\xe0\xf0\x73\x03\x81\x71\xc4\xcf\xc6\x49\xfe\xb8" "\xa3\xfc\xc3\x23\x4f\x9d\xfc\xea\xad\x27\x96\x0e\x86\xf2\x6f\xab\x25\xf9" "\x6b\x1d\xe5\x7f\xb1\xfe\xd2\xb9\xaf\x9c\x19\x9c\x1f\xcc\x7f\x34\xcd\x5f" "\xef\x28\xff\xa6\x5f\xfc\xe8\xe1\x07\x6e\x3a\xb4\x24\xb8\x7e\x4e\xa7\xeb" "\xa7\xd1\x51\xfe\x95\x5f\x9a\x7f\xe4\xec\xa1\x8d\xbd\x43\xa1\xfc\xc7\xd2" "\xfc\x7d\x1d\xe5\xbf\x61\xcb\x8a\xb5\x97\x9f\x39\x78\x57\x70\xfc\xab\xd3" "\xf5\x33\xb7\xa3\xfc\xdf\x7f\x74\xd5\xf9\x2d\x47\xbf\x7e\x22\x98\x3f\x4a" "\xf3\xcf\xeb\x28\xff\x2b\x4f\x3d\xb3\xbc\xbe\xf4\xb1\x53\xc1\xfc\x27\xd3" "\xf5\xd3\xdf\x51\xfe\x9b\xd7\x3c\xb1\xee\xa3\xcb\x1e\x7c\x32\xb8\xfe\x5f" "\x4e\xf3\x2f\xe8\x28\xff\xe6\x53\x0f\x6d\xdb\xfb\xf4\x0b\xab\x82\xf3\x73" "\x43\xba\x7e\x06\x3a\xca\x7f\x6e\xdd\xf7\x5e\x3d\x3f\xb0\xfe\x99\xd0\xbe" "\x33\x3e\x76\xa1\x8f\xb0\x00\xbf\x5c\xde\x92\x9c\x63\x3d\x9c\xb4\x3b\xbd" "\xce\xac\xaa\xe9\x7a\xe1\x89\xa1\xc6\xc4\x39\xdf\xfc\xe4\x63\x41\x37\x3b" "\xca\x88\x9b\xae\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa0\x53\x8f\xad\xfb\x4f\x9f\x6f\x6e\xbf\xe3\xff" "\xdd\xb5\xe9\xd4\x7f\x5e\xb1\xb3\x91\xb4\x7b\x1b\x51\x14\x47\x51\xf4\x5a" "\x7d\xa2\x9d\x2e\x9f\x13\x45\xf1\xdc\x28\x8a\xf6\x1f\xd8\xbe\xef\xc0\xce" "\xdd\x9f\x19\xfa\x9d\x3d\x07\xf7\xed\xde\xbe\x6b\x68\xfb\x81\xa1\x91\xdd" "\x07\xf6\xdd\x33\xf4\xf7\xfe\xee\xd0\xbe\x91\xbd\xbb\xb6\xdf\x33\xf6\xdd" "\xd5\xd7\xac\x99\x78\xde\xe2\xf1\x6c\x51\xb4\x38\xbe\x7c\xda\x58\x46\x47" "\x47\x47\xa3\x28\x1a\x6a\x5e\x96\xf6\xf7\x07\x1f\x79\xf6\xff\x6f\x7a\xf2" "\x6f\x3e\x15\x45\xab\xdf\xfa\xbd\x15\x8d\x60\x3d\xef\xf9\xef\xaf\x7e\x70" "\x49\xce\xe7\x8c\x78\x78\x74\xc3\xbf\xb9\xfe\xd1\xc3\x73\xfe\xcf\xc2\x89" "\x05\x03\xc9\xb8\x06\x42\xe3\x1a\x68\x5d\x96\x8e\xa0\x7f\xf8\xe5\xbf\xf8" "\xc0\x73\x3f\x18\x1b\xd7\xdb\x8a\xc6\xf5\xf8\x4b\xb7\xfc\x75\xcb\x80\xc6" "\x17\x4c\xe5\x49\xd4\x7a\xa3\xda\xf8\x17\xbd\xf1\xbc\xdc\x71\x4c\x8e\x7a" "\x6a\x3c\xe3\xeb\xab\xb1\x63\xe7\xae\x91\xd5\xe5\xeb\x37\x0e\xac\xdf\x77" "\xbd\xf0\xc7\x67\xfe\xe3\xdd\x9b\xfe\xe5\xc4\xfa\xed\x0b\xd6\xd1\xe6\xfa" "\x1d\x5b\xab\x8d\xd1\x47\x7e\xf2\xc0\xbb\xee\xfb\xc0\xc8\xfb\x2e\xe2\xd7" "\xbd\x6c\x7d\x37\x95\x30\x3e\xbe\x74\xfd\xf5\x25\xeb\xfb\x92\xa4\xae\x4b" "\x02\x75\xd5\x02\x75\xdd\x35\xf4\xca\xe9\x7f\xf5\x1f\xfe\xeb\x57\xee\x8b" "\x56\x37\x7e\x72\xc5\xf4\xbe\xcb\xea\xea\x49\x26\x40\x4f\xbc\xb4\xad\x7e" "\xd3\x1e\xe6\xc5\x8b\x5a\x62\xfb\x92\xf8\xf4\x15\x4f\x9f\xf7\x9e\x03\x77" "\xee\x7d\xcf\xfe\x7b\x0e\x5f\xb3\xf3\xce\xed\x9f\x19\xf9\xcc\xc8\xee\x35" "\x6b\xae\x5f\x7b\xed\x9a\x6b\xaf\x5b\xbb\xe6\x3d\xe3\xa5\x4f\x7c\xee\x5a" "\xfd\x69\xff\xef\x6a\xb3\xfe\xf9\x49\xa6\xf9\xf1\xb2\xdc\xf5\x96\x5d\x9a" "\xf6\x7b\xc5\xf8\xe7\x7a\x94\x0c\x3b\x7d\x68\xfa\xa2\x55\x4f\xd4\x3f\xf1" "\x98\x59\xcf\x69\x78\xb6\xea\xfe\xe4\x7b\xfd\xf1\xe2\x69\xb9\x46\x73\xa4" "\xdf\x3b\xfd\xed\xed\x9b\x5f\xfb\xc1\xe1\xe7\x42\x5b\x5e\xfc\xec\x44\x8f" "\x73\xa3\x05\x13\x8f\xf1\xf2\x40\xe4\xae\xcc\x13\xeb\x93\x03\xce\xeb\xff" "\xc2\x6c\x97\x7b\x7e\xbf\x6f\x57\xfa\xb9\xbd\xed\xb2\x6c\x5c\x65\xf3\x6a" "\x6c\x5c\xe5\xf3\xaa\x79\x44\x05\xfb\xb1\x97\xae\x7a\xf8\x27\x4f\x7f\xe1" "\x5f\xdf\xd6\xc6\xfe\xa2\x29\x74\x7c\x7c\xe9\x38\xe7\x8d\x6d\x2e\xd7\x46" "\x4d\xdb\xed\xf4\x75\x95\x57\x57\x1b\xaf\xcf\x70\xde\x7a\xb8\xfd\x9a\x7d" "\x7f\x7c\xcf\xce\xcd\x47\xcb\xf6\xe7\xcd\xaf\x4c\xf3\xe7\x8c\x78\x78\xf4" "\x7f\x2f\x8f\x3f\x76\x70\xff\x5f\xec\x9b\x58\x70\x41\x8e\x97\xcd\x03\xea" "\xf0\x78\x39\x39\xea\xa9\xf1\x8c\xaf\xaf\xbe\xe4\xf5\xb8\x58\xd7\x6f\x6f" "\x54\x4f\xea\xea\xcf\x1d\xd7\xc6\xf8\xe9\xf7\xbf\xeb\xce\x13\xbf\x36\x39" "\xbe\x39\x73\xa2\xbb\xb7\x1f\x38\xb0\xef\xda\x89\xcf\x6f\xd6\xba\xfe\x72" "\xce\xc2\x25\x3b\xef\x5f\x76\xf9\xb4\xba\xae\x9b\xf8\x5c\xb6\xdf\xbf\x22" "\xd3\xce\xdb\xef\xf7\x34\xef\xee\x6b\xf9\xf5\x95\xed\xf7\xb3\xfd\x4c\xc5" "\xe7\xe7\x1b\xca\xb4\xfb\xa3\x7a\x47\xc7\x89\x4d\xbf\xf8\xd1\xba\x07\x6e" "\x3a\xb4\x24\x78\x9c\x38\xdd\xee\x71\xe2\x77\x5b\x5a\xf5\x8a\xc7\x89\x5a" "\x60\x7b\x7f\xe4\x6f\xbe\x3c\xf4\xfa\x6d\x9f\x7c\xbd\x6c\x3e\xdd\xb8\x7f" "\xd9\xbd\x4b\x72\x3e\x67\xcb\x1b\x1e\xfd\xfa\x1f\xfd\xfa\xb5\xef\xbb\xe5" "\xa6\x0f\x4d\x2c\x98\xe5\xfd\xd0\x4f\x6a\x63\xbb\x9d\xe6\x01\x75\xb8\x1f" "\x9a\x1c\x75\x32\x9e\x74\x7d\x8d\xef\x87\xae\xbb\x40\xfb\xd3\x36\xea\x78" "\xe3\x5e\xe7\x96\x0d\x31\x1e\x1e\xbd\xe2\x6b\xef\xbc\xf9\xfc\xd9\xcf\x7f" "\x62\x62\x41\xd9\xfa\x9d\x8c\xce\x5b\xbf\x6b\xca\xf7\xf3\xf5\x40\x5d\xb7" "\xf5\xbc\x7d\xd1\xa3\x3f\x5e\xf6\xf6\xee\xcd\xdf\xfd\x5b\x7f\x7a\xd5\xbb" "\xe7\xcd\xbf\x30\xf3\xb7\xed\xd7\xbd\x2f\x59\xbf\x7d\x81\xf5\x3b\x39\xea" "\x64\x3c\xf5\xe6\xf5\xfb\xee\xdb\xf7\xec\xba\x63\xa2\x7d\xf1\x9e\xb7\x4d" "\xe8\x2d\xb9\xfe\x49\x8f\x3b\xfb\xef\x39\xfc\xb9\xed\xbb\x76\x8d\xec\xdb" "\xdf\x5e\x5d\xed\x1e\x4f\xd3\x7e\xb2\x6b\xb9\xd3\xe3\x69\x7a\xf4\x58\x5c" "\x52\x57\xfa\x7a\x4d\xd5\x35\x7b\x5f\xb4\xb3\xbe\xda\xdd\xde\xd2\xf1\xdf" "\x91\xc9\xd1\xe9\xf6\x06\x90\x9a\x3a\x2e\xcc\x69\x59\x9e\xdd\x7f\xa6\xf7" "\xfd\x56\x5c\x12\x6d\x7a\xf7\x17\xbe\xf9\x52\x3c\x34\x71\xbc\xec\xd6\xfd" "\xd6\xb4\x9f\xcb\x32\x07\xe6\x4e\xef\xb7\x96\x5d\x27\xbd\x3d\xd3\x6e\xbd" "\x4e\x6a\x44\x4d\x75\x4f\x98\x7e\x9d\x34\xfe\x94\xb2\xeb\xa4\x6c\x3f\x65" "\xd7\x49\x57\x65\xda\xe5\xd7\x31\x0f\xe7\x56\x12\x7a\xfd\x7a\x92\x23\x6f" "\xde\x7d\xd3\xcc\x78\x1b\x63\x19\x42\xf3\x63\x30\xc9\x3f\x98\xb4\xd3\xf3" "\xcd\x15\xef\x8e\xae\xaf\x3f\xf7\x8e\x8f\xc4\xc3\xed\xcd\x8f\x76\xcf\xa7" "\xd3\x7e\xfe\x4e\x66\x05\x75\x7a\x3e\x5d\x36\x3f\x56\x46\xf9\xe3\xea\xf6" "\xfc\x78\x67\xe6\x49\xe5\xaf\xf7\xd1\xdc\x91\xf5\x05\x5e\x8f\xb2\xd7\x7b" "\x65\x4b\xa2\xd1\xd1\x0a\xd7\xe5\x0f\x8f\x5d\x97\x0f\x04\x46\x9d\x5e\x97" "\xf7\x47\x71\x47\xf9\x87\x47\x9e\x3a\xf9\xd5\x5b\x4f\x2c\x0d\xe6\xdf\x56" "\x4b\xf2\xd7\x3a\xca\xff\x62\xfd\xa5\x73\x5f\x39\x33\x38\x3f\x98\xff\x68" "\x9a\xbf\xd1\x51\xfe\x95\x5f\x9a\x7f\xe4\xec\xa1\x8d\xbd\xc1\xfc\xc7\xd2" "\xf5\xd3\xd7\x51\xfe\x1b\xb6\xac\x58\x7b\xf9\x99\x83\x77\x05\xf3\xaf\x4e" "\xc7\x3f\xb7\xa3\xfc\xdf\x7f\x74\xd5\xf9\x2d\x47\xbf\x7e\x22\x98\x3f\x4a" "\xf3\xf7\x77\x94\xff\xe6\x35\x4f\xac\xfb\xe8\xb2\x07\x9f\x0c\xe6\x7f\x39" "\x4e\xfa\x19\xdb\x76\xa3\xe8\xf8\xd9\x35\x3b\x26\xda\xf1\xf8\xfd\xac\xbe" "\xa6\x71\xf4\xb4\x8c\x2b\xca\xb6\xe3\x4c\xbb\x96\x69\xd7\x9b\xdb\xb5\x89" "\x9f\xf5\x4e\x76\x50\x8f\xe3\xd6\xe5\x69\x5c\x66\x79\x5a\x47\x23\x59\x7e" "\x65\xd3\x18\xf3\x6c\x0a\x2c\x4f\xb7\xda\xbe\x64\xc3\xfe\x59\xda\x8e\xb2" "\x5f\x14\x2f\x4f\x77\x4f\xe9\xb8\x4e\x07\x8e\x3f\x17\x4a\xad\xe9\xdc\x23" "\x6f\x79\xd9\xfd\xc9\x6e\x79\xed\x87\x83\x7f\xd0\xdc\x4e\x7f\xfe\x9f\xce" "\x81\xde\xc6\xc4\x6b\x77\x5d\x66\x7d\x95\x1d\x3f\xb2\x7b\xef\x34\x5f\xf0" "\xe7\x6f\x81\x5b\x18\x65\xe7\x0b\xd3\x7f\xfe\x36\xaf\xa3\xed\xef\x95\xa7" "\x9e\x59\x5e\x5f\xfa\xd8\xa9\xe0\x7d\xd5\x93\xed\xde\x57\xdd\xdb\xd2\x9a" "\x57\x72\x5f\xb5\xea\x78\x83\xfb\x8b\x93\xe9\xfe\xb4\xda\xfe\x68\x30\x94" "\xff\xe5\x34\x7f\xb5\xe3\x41\x30\x7f\x72\x3c\x28\x9b\x67\xef\xc8\xb4\x4b" "\xe7\x59\x4f\x7e\x7f\x65\xf3\x2c\x7b\x9e\xd2\x1f\x2d\xe8\xa8\xee\xcd\xa7" "\x1e\xda\xb6\xf7\xe9\x17\x56\x05\xe7\xd9\x86\x89\x0d\xbe\x7c\x9e\x3d\xd6" "\xd2\x5a\x50\x3a\xcf\xaa\xfd\x5c\x3a\x38\xcf\x9e\x8d\xbb\xb2\x3e\x82\xf9" "\x37\x74\xe7\xbc\x26\x38\xcf\x92\xf3\x9a\xb2\x79\x76\x75\xa6\x5d\x7d\x9e" "\xb5\x9e\x8f\x7e\x2c\x79\xbc\x3b\x13\xdf\x9f\xdc\x21\x9e\x69\xdd\xe7\xd6" "\x7d\xef\xd5\xf3\x03\xeb\x9f\x09\xce\xb3\x63\xed\xce\xb3\x3f\x6c\x69\x0d" "\x94\xce\xb3\x6a\xe7\xb7\xc1\xd7\x69\xf2\xfc\xb6\x9b\xe7\xe7\x53\xb7\x6c" "\xa7\xce\xcf\xdf\xdc\xe7\x9f\x6f\xd8\xf9\x61\xf2\xe3\xdc\xd9\x3a\x3f\xdc" "\x18\x58\x3e\xd3\xf3\xc3\xfe\x69\x5f\x4c\xd5\x11\xbd\x19\xcf\x0f\x03\xfb" "\x19\x00\x28\xf2\x9d\x47\xee\xf9\xbf\xcd\xed\xf4\xfa\x3f\x3d\x76\xa7\xd7" "\xff\xdf\xcc\x3c\xaf\xea\x75\x65\xf6\xf7\xa1\x52\xdd\xba\xae\x0c\xe6\x3f" "\xd6\x9d\xeb\x95\xe0\x79\xea\xe4\xf5\xca\x6c\x5f\x6f\xcd\xf6\x79\xf6\xec" "\x5e\x6f\xcd\xfe\x7d\xf6\x37\xf7\x79\xfc\xec\xdf\x17\x9a\xdd\xeb\x4a\xd7" "\x21\x49\x3b\xca\x7e\x31\xc1\x75\x08\x00\x00\x6f\x84\x2b\xff\xdd\x97\x7f" "\xb3\xb9\x9d\x5e\xff\x4f\xfe\xde\x5b\xf2\xf7\xff\x2f\xa4\xed\xcc\xf3\x5d" "\xe7\x06\xf2\x5f\xb0\xeb\xdc\xd9\xbe\x4f\xe2\x3a\x3a\x37\x7f\x97\x7e\xbf" "\xa2\xfc\x3e\xd8\x6c\xdf\xa7\x72\x1f\xc0\x7d\x80\x72\xee\x03\x00\x00\xfc" "\x72\xd8\xba\x63\xdf\xc8\xc8\xfe\xbd\xdb\x6f\x1f\xd9\xba\x73\xf7\xce\x03" "\x93\xcb\x7b\xc6\xaf\x9c\xa6\xff\x9e\xea\xdf\x4f\x1e\x37\x64\xf2\x94\xfd" "\xfe\x74\x5e\xfc\xbc\x82\xf8\x4f\x04\xf3\xb7\x8e\xe7\xbd\x81\xf8\x90\xc6" "\xf8\xef\xbc\x46\xd1\xa7\x6f\xff\xec\x75\x5b\xef\x18\xb9\x6b\xa6\xf5\x87" "\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\xec\xf5\x45\xa8\xfe\xb5\x81\xf8\x90\xaa" "\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\x9b\x82\xf9\x5b\xc7\xf3\xbe\x40" "\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x9f\x17\x5f\x54\xff\x27\x83\xf9\x5b\xc7" "\xf3\xeb\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\xec\xdf" "\x83\x85\xea\xff\x8d\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x9f\x17\x5f\x54" "\xff\xcd\xc1\xfc\xad\xe3\x79\x7f\x20\x3e\xa4\x6a\xfd\xa1\xfe\xca\xea\xcf" "\x8b\x2f\xaa\xff\x96\x60\xfe\xd6\xf1\xfc\x83\x40\x7c\x48\xd5\xfa\x43\xfd" "\x95\xd5\x9f\x17\x5f\x54\xff\xad\xc1\xfc\xad\xe3\x59\x17\x88\x0f\xa9\x5a" "\x7f\xa8\xbf\xb2\xfa\xf3\xe2\x8b\xea\xff\x54\x30\x7f\xeb\x78\x86\x03\xf1" "\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x5e\x7c\x51\xfd\x9b\x83\xf9\x5b\xc7\xf3" "\x0f\x03\xf1\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x5e\x7c\x51\xfd\xb7\x05\xf3" "\xb7\x8e\xe7\x03\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe" "\xdf\x0a\xe6\x6f\x1d\xcf\x3f\x0a\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x79" "\xf1\x45\xf5\x6f\x09\xe6\x6f\x1d\xcf\x6f\x06\xe2\x43\xaa\xd6\x1f\xea\x2f" "\xbf\xfe\x46\x61\x3d\x45\xf5\xff\x76\x30\x7f\xeb\x78\x3e\x18\x88\x0f\xa9" "\x5a\x7f\xa8\xbf\xb2\xd7\x3f\x2f\xbe\xa8\xfe\xad\xc1\xfc\xad\xe3\xf9\x50" "\x20\x3e\xa4\x6a\xfd\xa1\xfe\xca\xea\xcf\x8b\x2f\xa8\x7f\xda\x8f\x5a\x42" "\xf5\xff\xe3\xe4\x71\x5b\x7e\xb7\xd3\x54\xad\x3f\xd4\x5f\x71\xfd\x3d\xb9" "\xf1\x45\xaf\xff\xf6\x60\xfe\xd6\xf1\x7c\x38\x10\x1f\x52\xb5\xfe\x50\x7f" "\x65\xaf\x7f\x5e\x7c\x51\xfd\x9f\x0e\xe6\x6f\x1d\xcf\x47\x02\xf1\x21\x55" "\xeb\x0f\xf5\x57\x56\x7f\x5e\x7c\x51\xfd\xb7\x07\xf3\xb7\x8e\xe7\xa3\x81" "\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\xec\xfb\x1d\x86\xea" "\xff\x27\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\x91\x60" "\xfe\xd6\xf1\xac\x0f\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x79\xf1\x45\xf5" "\xef\x08\xe6\xcf\x7f\xdf\x80\x6c\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x9f\x17" "\x5f\x54\xff\x67\x82\xf9\x5b\xc7\xf3\xf1\x40\x7c\x48\xd5\xfa\x43\xfd\x95" "\xd5\x9f\x17\x5f\x54\xff\x67\x83\xf9\x5b\xc7\x73\x63\x20\x3e\xa4\x6a\xfd" "\xa1\xfe\xca\xea\xcf\x8b\x2f\xaa\x7f\x67\x30\x7f\xeb\x78\x36\x04\xe2\x43" "\x66\x54\xff\xfd\xed\xf7\x57\x56\x7f\x5e\x7c\x51\xfd\xbf\x13\xcc\xdf\x3a" "\x9e\x4f\x04\xe2\x43\xaa\xbe\xfe\xa1\xfe\xca\xea\xcf\x8b\x2f\xaa\xff\x73" "\xc1\xfc\xad\xe3\xd9\x18\x88\x0f\x69\x44\x8d\x4a\xf5\x87\xfa\x2b\xab\x3f" "\x2f\xbe\xa8\xfe\x5d\xc1\xfc\xad\xe3\xb9\x29\x10\x1f\x52\xf5\xf5\x0f\xf5" "\x57\x56\x7f\x5e\x7c\x51\xfd\x77\x06\xf3\xb7\x8e\xe7\x93\x81\xf8\x90\xaa" "\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\xdd\xc1\xfc\xad\xe3\xd9\x14\x88" "\x0f\xa9\x5a\x7f\xa8\xbf\xb2\xfa\xf3\xe2\x8b\xea\xdf\x13\xcc\xdf\x3a\x9e" "\x9b\x03\xf1\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x5e\x7c\x51\xfd\x7b\x83\xf9" "\x5b\xc7\x73\x4b\x20\x3e\xa4\x6a\xfd\xa1\xfe\xca\xea\xcf\x8b\x2f\xaa\xff" "\xf3\xc1\xfc\xad\xe3\xb9\x35\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\xe7\xc5" "\x17\xd5\xbf\x2f\x98\xbf\x75\x3c\x9f\x0a\xc4\x87\x54\xad\x3f\xd4\x5f\x59" "\xfd\x79\xf1\x45\xf5\xef\x0f\xe6\x6f\x1d\xcf\xe6\x40\x7c\x48\xd5\xfa\x43" "\xfd\x95\xd5\x9f\x17\x5f\x54\xff\x81\x60\xfe\xd6\xf1\xdc\x16\x88\x0f\xa9" "\x5a\x7f\xa8\xbf\xb2\xfa\xf3\xe2\x8b\xea\x3f\x18\xcc\xdf\x3a\x9e\xdf\x0a" "\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x79\xf1\x45\xf5\xdf\x15\xcc\xdf\x3a" "\x9e\x2d\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\x3f\x2f\xbe\xa8\xfe\x43\xc1" "\xfc\xad\xe3\xf9\xed\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x9f\x17\x5f\x54" "\x7f\xf6\x7d\x20\x43\xf5\x6f\x0d\xc4\x87\x4c\xd6\x7f\x60\xdf\xc8\xc8\xd6" "\x83\x7b\xef\xd8\x7e\x60\x64\xeb\xee\x3d\x77\x8c\xec\xdf\x7a\x68\xdf\xce" "\x03\x07\x46\x92\x13\xb5\xaa\x7f\x57\x16\xfe\xbb\xa0\x37\xf8\x0f\x59\x28" "\xd4\xb2\x7d\x4c\x4c\x92\x9d\xbb\xf7\x8f\xec\x9b\xbe\xff\x9e\x5b\x38\x7f" "\x9b\xe7\x44\x34\xfe\x67\x4f\x73\x27\x1e\xe3\xb7\xb5\x15\x9f\x7d\xdb\xeb" "\x4e\x67\xcd\xc5\x32\xdf\x7b\xa2\x46\xe1\xfa\xba\x2c\xd3\x5e\x98\xfc\xec" "\x78\x61\xe0\xfd\x68\xb3\xf1\x69\xda\x65\xe3\x5f\x4c\x7f\x3f\xda\x6c\xb7" "\x8d\x92\xf7\x71\x2d\xdb\x3f\x65\xfb\x0f\xed\x9f\xe2\x82\xf8\xbc\xfd\x6b" "\x68\x7f\x56\x76\xfc\x9b\xf1\xfe\xaf\x74\x7e\xf7\x15\xd6\x9f\x5d\xdc\x9b" "\xfc\x61\x5f\x6f\xfc\xd6\xb6\xe2\xa3\x82\xff\xef\xd6\xde\x7c\xad\xf6\x77" "\xa7\xc1\xf9\xfa\x72\x7b\xf3\x35\xfb\xbe\xeb\x65\xf3\x35\x1b\x3f\xd3\xf9" "\xda\x5f\x71\xbe\x66\xfb\x0f\xcd\xa7\x5a\x41\x7c\xd1\xf9\x50\xbb\xf3\x75" "\x73\x20\x3e\xd5\xfe\xfc\x8c\x83\xf5\xe6\xcd\xab\x99\xfe\x9f\xc1\x34\xed" "\x8c\xfe\xcf\x60\xe6\xd3\x34\x1d\xfc\x2f\x83\xf6\xb7\x87\x6a\x7f\x47\x1e" "\xdc\x1e\x92\x41\x97\x6d\x0f\xd9\xbf\xe3\x2e\xdb\x1e\xb2\xf1\x33\xdd\x1e" "\xe6\x56\xdc\x1e\xb2\xfd\x97\x6d\x0f\x79\xf1\x45\xd7\xc7\xed\x6e\x0f\xb7" "\x04\xe2\x43\xda\x9f\x0f\xd5\xde\xb7\x20\x38\x1f\x56\xb7\x37\x1f\xb2\xff" "\xc7\xaa\x6c\x3e\x64\xe3\x67\x3a\x1f\xfa\x2a\xce\x87\x6c\xff\x65\xf3\x21" "\x2f\xbe\xe8\x7e\x61\xbb\xf3\xe1\x93\x81\xf8\x76\xb5\x3f\x3f\xaa\xbd\xaf" "\x48\x70\x7e\x6c\x6b\x6f\x7e\x64\xff\x9f\x44\xd9\xfc\xc8\xc6\xcf\x74\x7e" "\xc4\x15\xe7\x47\xb6\xff\xb2\xf9\x91\x17\x5f\xf4\xf3\x94\x76\xe7\xc7\x27" "\x02\xf1\xa9\x96\xe3\xe7\x8e\xfd\xe3\x17\xf5\x3b\xb7\xef\xda\x79\x38\xf3" "\x0b\x18\x03\xc9\xf1\xf3\x8d\x3e\x1e\xce\xf6\x71\x39\x8a\x6e\xf9\xeb\xe8" "\xa7\xbf\xf1\x97\x3f\x9b\xf8\x94\x8c\xa3\x36\x6d\x1c\x65\xe7\x13\x71\x66" "\x1c\x8b\x92\x91\x2c\x0a\xfd\xdf\xc3\xc0\xb8\x6f\xff\x6f\xff\x7e\xd3\x37" "\x7f\xfe\x85\x2f\x47\xd1\xea\xb7\xd6\x97\x87\xc7\x3d\x35\xe4\xa9\x4f\x19" "\xf1\xf0\xe8\xe2\x7b\x57\x7e\xf5\xd6\xb7\x9d\xfa\xc0\xd8\xf8\x6b\x85\xe3" "\x9f\x8c\x4c\xff\x6f\x71\xc9\xff\x3b\xce\xc6\xa7\xf5\x34\x76\xed\xd9\x7f" "\xe0\xd7\x76\xec\x39\xb8\xbb\xdd\xdf\xb8\x2a\x96\xbe\x1f\x4a\x6d\xb2\x3d" "\x4b\xef\x87\x92\x2c\xac\xb7\xf9\xfe\x26\xa1\xbf\x27\x98\xe9\xfb\x9b\xf4" "\x4c\xfb\xe2\xe2\xd4\xf6\xfb\x9b\x00\xfc\x92\x58\x78\xec\xd9\x05\xcd\xed" "\xf4\xfd\xff\xd2\xe3\xd1\x60\xb2\xef\x9b\x9b\xec\x00\xd3\xe5\xed\x9f\x67" "\x57\x7b\x7f\xbd\xe0\x79\xf6\xd1\xf6\xce\xb3\x57\x65\xeb\x2d\x39\xcf\xce" "\xc6\xa7\xf5\xb6\x7b\x9e\x5d\xab\x78\x9e\x9d\xed\xbf\xec\x3c\x3b\x2f\xbe" "\xe8\xf7\xf6\xda\x3d\xcf\xfe\x78\x20\x7e\xa6\x5a\xe7\xc9\xd8\x04\x19\x9f" "\x1f\x23\x5b\x0f\xed\xd9\xd7\xfc\x3b\x71\xb3\xfd\x7f\x6b\xbb\x3f\xde\xd9" "\xfd\x3f\xbe\xd5\xc7\x37\xbb\xef\xdb\xd8\xa9\xf6\xc7\x3f\xbb\xef\x0b\x39" "\xfb\xe3\x9f\xdd\xff\x03\x3c\xfb\xe3\x9f\xdd\xff\xf3\xdc\xa9\x0b\x76\xbd" "\x94\xbc\x59\x64\xd9\xfb\x47\x96\x5d\x47\x85\xfe\x2e\x7d\xa6\xd7\x51\x73" "\xa6\x7d\x71\x71\x72\x1d\x05\x00\x17\xbf\x7f\xb1\xef\x87\xff\xb6\xb9\x9d" "\x5e\xff\x27\x57\xb1\x93\xd7\xff\x5f\x4c\xda\xf5\x2e\xf7\x3f\xdb\xd7\x51" "\xb3\x7d\x5d\x39\xdb\xe7\xc9\x6f\xfe\xf7\xdf\x9f\xdd\xeb\x20\xd7\x03\x05" "\x9d\x5d\x04\x5c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe4\xfb\xc3\xff\xf9\x5f\xbe\xd1\xdc\xee\x6d\x0c" "\x8e\x3f\xbe\xf8\x7b\xfb\x5f\xff\xf8\x65\x1f\xfc\xce\x03\x23\x67\xef\xfd" "\xf0\x9f\xdc\x79\xff\xa5\x7f\xba\xe4\xf5\x81\x07\xd7\x7f\xec\x91\xb5\x1f" "\xfa\xee\xb6\x3f\x5b\x34\xbc\x62\xe5\xc8\x0d\x5f\x3b\x7e\xe3\x43\x0f\x3e" "\xff\xfe\x9f\x3f\xff\xf8\x93\xeb\x4b\x3b\x1a\x98\x78\xb8\x3a\x69\xf6\x45" "\x51\xfc\x57\x71\x14\xad\xf8\xe1\xf1\xc7\x1f\xfa\xd6\x9f\x5f\x3a\xb6\x2c" "\x1e\xeb\x3f\x1e\xb8\x2f\x5a\xb4\x28\x5e\xfc\x8d\x45\x71\x26\xc3\xea\x73" "\x51\x14\xdd\x31\x39\xce\xd6\x6f\x1e\x3f\xbb\x66\xc7\xd8\xe3\xfd\x5f\xec" "\x6d\x59\xbe\x30\x93\x24\x5b\x57\xd4\x5f\x4f\xc7\xd3\x32\xce\xe8\xee\xd2" "\x8a\x78\x13\xea\x4b\xe6\xd9\x91\xad\x9f\x7e\xfa\xe4\xe7\x86\xbf\x75\x7c" "\x68\xef\x9a\x1f\x9f\xb9\x7e\xcf\x7d\x53\x21\x71\x5f\xd3\x7c\x8a\xa2\x4b" "\xb6\x35\x3f\xbf\x27\x8a\xa2\xb9\xc9\xc7\x98\x74\xb6\x0d\xa6\x4f\x4e\x1e" "\x37\x44\x51\x34\xaf\xe9\x79\xef\x2d\x19\xd7\x55\x6d\x8e\xff\x9a\x40\x7b" "\x79\xf2\x38\x27\x79\xec\x2f\xc9\x93\x7e\xff\xca\x4c\xbb\xd1\xe6\x38\x1a" "\x99\xc7\xde\x36\x9f\xd7\xa9\xda\x2c\xe7\xcf\xca\xae\xbf\xec\xce\x68\xb6" "\xa4\x75\x5e\x92\x3c\x3e\x97\x3c\x5e\x3d\xc3\x3c\xf5\xf4\x23\x8e\x6a\x71" "\xd4\x98\x1c\xfe\xae\x78\x6a\x8e\x44\x4d\xaf\x5b\x1c\xc5\xe3\x73\xbb\x6f" "\xb2\x5d\x1b\x6f\x47\x93\xed\x28\xdb\x8e\x33\xed\x5a\xa6\x5d\xef\xc9\xd4" "\x35\xde\x6f\xb2\x62\xeb\x71\xdc\xba\x3c\x8d\xcb\x2c\x4f\x77\xc7\x8d\x64" "\xf9\x95\xcd\xfb\xea\x1c\x1b\x03\xcb\x97\x26\x8f\x7d\xc9\x86\xfa\xb3\xb4" "\x1d\x65\xbf\x98\xd0\x3f\xed\x8b\xa9\x3a\xa2\xa6\x71\x9d\xbe\x50\x13\x23" "\xa0\x16\xd8\xf6\xd2\xe5\x93\xc3\x4b\x5e\x8c\xfe\x64\x59\x7f\xbc\x78\xda" "\x73\x46\x73\xa4\xdf\x3b\xfd\xed\xed\x9b\x5f\xfb\xc1\xe1\xe7\x06\x02\xe3" "\x88\x9f\x8d\x93\xfc\x71\x47\xf9\x87\x47\x9e\x3a\xf9\xd5\x5b\x4f\x2c\x1d" "\x0c\xe5\xdf\x56\x4b\xf2\xd7\x3a\xca\xff\x62\xfd\xa5\x73\x5f\x39\x33\x38" "\x3f\x98\xff\x68\x9a\xbf\xde\x51\xfe\x4d\xbf\xf8\xd1\xc3\x0f\xdc\x74\x68" "\x49\x70\xfd\x9c\x4e\xd7\x4f\xa3\xa3\xfc\x2b\xbf\x34\xff\xc8\xd9\x43\x1b" "\x7b\x87\x42\xf9\x8f\xa5\xf9\xfb\x3a\xca\x7f\xc3\x96\x15\x6b\x2f\x3f\x73" "\xf0\xae\xe0\xf8\x57\xa7\xeb\x67\x6e\x47\xf9\xbf\xff\xe8\xaa\xf3\x5b\x8e" "\x7e\xfd\x44\x30\x7f\x94\xe6\x9f\xd7\x51\xfe\x57\x9e\x7a\x66\x79\x7d\xe9" "\x63\xa7\x82\xf9\x4f\xa6\xeb\xa7\xbf\xa3\xfc\x37\xaf\x79\x62\xdd\x47\x97" "\x3d\xf8\x64\x70\xfd\xbf\x9c\xe6\x5f\xd0\x51\xfe\xcd\xa7\x1e\xda\xb6\xf7" "\xe9\x17\x56\x05\xe7\xe7\x86\x74\xfd\x0c\x74\x94\xff\xdc\xba\xef\xbd\x7a" "\x7e\x60\xfd\x33\xa1\x7d\x67\x7c\xec\x42\x1f\x61\x01\x7e\xb9\xbc\x25\x39" "\xc7\x7a\x38\x69\x77\x7a\x9d\x59\x55\xd3\xf5\xc2\x13\x43\x8d\x89\x73\xbe" "\xf9\xc9\xc7\x82\x6e\x76\x94\x11\x37\x5d\xbb\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xc8" "\x9e\xd1\xfa\xc1\xe6\xf6\xab\x27\x1e\xb9\xf1\xb3\xff\x6b\xeb\xff\x68\xc4" "\x51\x14\x07\x9e\x33\x9a\x23\xfd\x5e\x7d\xce\xf0\xf0\x50\x07\xe3\x58\xf9" "\xa5\xf9\x47\xce\x1e\xda\xd8\x9b\xb6\xc7\xfa\x1e\xec\x20\x0f\x00\x00\x00" "\x30\xdd\xb2\x57\xbe\xf0\xf9\xe6\x76\x7a\x1d\x5e\x4b\xda\x71\xd4\x17\x0d" "\x46\x87\xe2\xb9\xd1\xb2\xdc\xe7\xa7\xf7\x08\x96\xa5\xad\xb8\x75\x79\xf6" "\x1e\xc2\xdc\xa9\xc8\xae\xe4\xa9\x75\x29\x4f\xbd\x4b\x79\x1a\x5d\xc9\x33" "\x10\x65\x75\x3a\x9e\x39\x5d\xca\xd3\xdb\xa5\x3c\x7d\x25\x79\xfa\xa2\xf6" "\xf2\xcc\x2d\xcc\x53\x6b\x7b\x3c\xf3\xba\x94\xa7\xbf\x4b\x79\xe6\x77\x29" "\xcf\x82\x2e\xe5\xb9\xa4\x4b\x79\x16\x76\x29\x4f\x76\xcb\xe8\x74\x1e\x2e" "\xea\x52\x9e\xc5\x5d\xca\xf3\x96\x2e\xe5\x59\xd2\xa5\x3c\x6f\xed\x24\xcf" "\xd0\xf4\x3c\x6f\xeb\xd2\x78\x2e\xed\x52\x9e\xec\x3d\xe5\x99\xce\xc3\x05" "\x49\xe4\x65\xa1\x3c\xe3\x5f\xd4\x4b\xf3\x34\xe2\xfa\xe4\x37\xf2\xee\xa7" "\xa7\xfd\x5c\x5e\xb1\x9f\xfe\x36\xfb\xc9\xde\xb3\x9f\x69\x3f\x73\xdb\xec" "\xe7\xaa\x8a\xfd\xf4\xb5\xd9\xcf\x3b\x2b\xf6\x13\xb7\xd9\xcf\xaa\xcc\xf3" "\x6a\x33\xec\xa7\x56\xd2\x4f\x3a\x6f\xef\x0e\xd5\x93\xb6\xda\x9c\xff\xf7" "\x74\x29\xcf\xe1\x2e\xe5\x39\xd2\xa5\x3c\xbf\xdb\xa5\x3c\xff\xb4\x4b\x79" "\xfe\x59\x97\xf2\xdc\x5b\x31\x4f\xb1\xec\xd9\x2a\xf0\xab\xe4\xf7\x9f\xbf" "\xfa\x8f\x9a\xdb\xe9\xf5\x7f\x4f\xd2\x8e\xa3\x81\xa8\xb7\x71\x5d\x34\x2f" "\xd9\xe3\x64\xef\x02\xa4\x7b\x90\x2b\xc6\x3f\x4f\x3f\xde\x85\x76\x48\x69" "\xbe\xe5\x99\xe5\x3d\x65\xf9\x02\xbb\xac\x34\xdf\x15\x33\x1d\x5f\xf6\x06" "\x42\x26\xdf\xdb\x0b\xf3\x35\xa6\x5d\xaf\xe6\xe4\x6b\x34\xe7\x5b\xd9\xa5" "\x7c\x00\x00\x00\x30\x13\xff\xfc\xdc\x91\x96\x1f\xcd\x4d\xbf\xfe\x1f\x8c" "\x7a\x1b\x4b\x26\xaf\x5f\xdf\x91\x79\x7e\xe9\xf5\x7a\x4f\x7e\xbf\x69\xbe" "\xab\xbb\x94\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf8\x5b\x76\xed\x35\x46\xae\xb2\x7c\x00\xf8\x7b\x76" "\x66\x67\xe6\xbf\x5c\xba\x90\xb6\x4c\xe9\x6d\xd3\xf6\x4f\x21\x84\x5e\x68" "\x6a\x04\x15\x26\x4d\x24\xc1\x08\x5b\xc4\x96\x4b\x43\xd6\x0a\x0b\xdb\xb0" "\xb4\xd0\x6d\x81\x56\x4d\x11\x8c\x6d\x36\xc1\xa0\xc5\x0b\xb7\x0f\x16\x24" "\x86\x10\x81\x84\xa4\x41\xd7\x04\x03\x4a\xfc\x60\x63\x83\x18\x2e\xae\x0b" "\x2b\x81\x2f\x44\x90\xde\x80\xa2\x63\x66\xf7\x9c\xdd\xb3\xb3\x33\xec\x32" "\x4a\x6b\xf5\xf7\x0b\x39\x73\x9e\x73\x9e\xe7\x7d\xde\x73\x48\x48\x9e\xb3" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xfc\xe7\xfb\xe3\xf7\xff\xf6\x6c\x3a\x1e\xec\xeb\x6d" "\xef\x1a\xe8\xe8\x0f\x51\xa8\xfc\x53\x53\xb9\x86\xe4\x5e\x26\x57\x2a\xb5" "\x35\xb0\x8f\x77\x9e\x5b\x7b\xe5\x5f\x5f\xda\xba\x3b\x89\x2b\xbd\xf3\xd9" "\x06\x16\x02\x00\x00\x00\xc6\x79\xfc\xbc\x19\xa7\xa7\xe3\x64\x0e\x4f\x46" "\xef\x28\x14\x42\x3e\xbb\x34\xe4\xa3\xdc\x98\xba\x62\xfc\x1d\xa0\x18\xc7" "\x4d\xad\xc3\xbf\x73\x16\x85\xe5\x99\xdd\xff\x7f\x61\x54\x6a\x1a\x8a\x4f" "\x8e\x4e\x1a\x53\x57\x88\xeb\x0a\x71\x9c\x89\xeb\x7a\xb6\x6c\xbd\x7e\x6d" "\x77\x77\xe7\xc6\x4f\xf0\xa4\xd2\xa7\xfa\x39\xaa\xf7\x13\x85\x30\xf4\xf9" "\x62\xce\x89\x61\xd5\xa2\xed\xcf\xec\x89\xda\x86\x9f\xa3\x65\x82\xe7\x68" "\x8a\xeb\x16\x6f\xba\xe1\xc6\xc5\x3d\x5b\xb6\x9e\xb5\xee\x86\xb5\xd7\x75" "\x5e\xd7\xb9\x7e\xd9\xb2\xe5\xe7\x2c\x5d\xb6\xf4\xec\x73\x96\x2d\xbe\x76" "\x5d\x77\xe7\x92\xe1\x63\xc8\x4f\xb0\x5e\x08\xa1\x34\xf6\xbd\x4c\xf0\x2f" "\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8e\x80\x6d" "\xbf\xdd\xfd\xad\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xdf\x12\x85\x10\xd5" "\xa9\x29\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xf1\xca\x7d\x0f\xce\xca" "\xcc\xb8\x7b\x6f\x12\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\x8c\xf3\xab" "\xc7\x67\x9c\x9f\x8e\x93\x39\x3c\x19\xbd\xa3\x50\x08\xf9\x6c\x2e\x64\xc2" "\x8c\xa1\x78\xde\x68\x6a\x36\x84\x72\x39\xb9\xbe\xa0\xea\xfa\x91\xd8\x3b" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x64\xed\x3b" "\xd8\xfe\xe7\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x7f\x5c\x14\x42\x54\xa7" "\xa6\x5c\x43\x72\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\xea\x65\x3f\x3a\xff\x0b" "\x33\xef\xb8\x37\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\x8c\xf7\xc2\xe9" "\xcd\x77\xa4\xe3\x64\x0e\x6f\x8a\xe3\x28\x14\x42\x31\xcc\x0f\xcd\xd1\x8c" "\x31\x75\xc9\xb7\x81\x53\xab\xd6\xab\xce\x4b\xd6\x99\x3d\xc9\xbc\xea\x6f" "\x07\xf5\xf2\xe6\x4f\x32\xef\xb4\x49\xe6\x9d\x31\x41\xde\xc5\xf1\xef\xad" "\x01\x00\x00\x00\x8e\x3d\x57\xb4\xfe\x6e\x75\x3a\x4e\xe6\xff\xe6\x38\x8e" "\x42\x6b\xc8\x67\x8b\x21\x13\xc7\x13\xcd\xf1\xc9\x77\x81\xb9\x55\x79\x49" "\xfd\x44\xf3\x7d\x52\x3f\xaf\x4e\xfd\x44\x73\x7f\x52\x5f\x3d\xf7\x03\x00" "\x00\xc0\xff\xb2\xb3\xde\x7c\xe2\xc3\x74\x3c\x7e\xfe\x2f\x86\x7c\xb6\x30" "\x32\x7f\x4f\xf4\xf7\xf4\x8b\xe2\x5f\x7f\x27\x07\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xea\xf9\xf5\xc1\x0b\x7f\x91\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x33" "\x51\x08\x51\x9d\x9a\x72\x0d\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\xab\xfe" "\xf1\xc6\x8e\xdb\x2f\xbd\x65\x6a\x12\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00" "\x00\x8c\xf3\x68\xee\xd3\xb7\xa4\xe3\x64\x0e\x4f\x46\xef\x28\x14\x42\x3e" "\xdb\x12\x9a\xc3\x71\x43\x73\xff\x6b\xb9\x29\x53\xd7\x7d\x73\xe6\xec\x10" "\x42\x69\x28\x21\x97\x0b\xb7\xae\xdd\xb4\x69\xe3\xd9\xc3\xc7\x24\xef\x4b" "\xd1\xae\xcf\x2d\xbc\xa1\xef\xcc\x71\x79\x4b\x87\x8f\x47\xfe\x49\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x7f\xd5\xb2\x47\x76" "\xae\x49\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd\xff\x17\x85\x10\xd5\xa9\x29" "\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xf1\xc2\xce\x33\x0e\x5f\x75\xd7" "\x53\x7d\x49\x5c\xe9\x5d\x6c\x60\x1d\x00\x00\x00\x60\xbc\x59\xdd\x4f\xff" "\x25\x1d\x27\x73\x78\x32\xfb\x47\xa1\x10\x8a\x21\x17\x72\x61\xfa\x50\x9c" "\x9e\xf5\x2b\x9a\xaa\xd6\xab\xf7\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf8\xef\xd1\xb3\x65\xeb\xf5\x6b\xbb\xbb\x3b" "\x37\x3a\x71\xe2\xc4\xc9\xc8\xc9\xd1\xfe\x2f\x13\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\xb4\xfc\x7c\xfd\xf7\xde" "\x4e\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd\x85\x28\x84\xa8\x4e\x4d\xb9\x86" "\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x4f\x5d\x35\xe7\x9c\xd9\xfb\x37\xdf" "\x9c\xc4\x95\xde\xc5\x06\xd6\x01\x00\x00\x00\xc6\x5b\xf3\xd6\xe6\xfd\xe9" "\x38\x99\xc3\x93\xd9\x3f\x0a\x85\x50\x0c\xcd\xa1\x39\x4c\x8b\xe3\xf1\x86" "\xe6\xff\xd6\x23\xb1\x5b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe0\x68\x9a\x1b\xa2\x50\xfe\x98\x4e\x59\x79\xb4\x77\x0d\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x12" "\x0e\xbc\xb8\xea\xbe\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x7f\x42\x14\x42" "\x54\xa7\xa6\x5c\x43\x72\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\x95\x7b\xbf\xfd" "\x95\x1b\x77\x3d\x7b\x46\x12\x57\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\x8c" "\xd3\xfc\xe6\x8b\x5f\x4d\xc7\xc9\x1c\x9e\x8c\xde\x51\x28\x84\x7c\x76\x56" "\xc8\x87\x59\xf1\x95\xee\xb1\x0b\x44\x99\x24\xb1\xe6\x77\x81\xd1\xba\xaf" "\x8f\x29\xcb\x4c\xba\x6e\x47\xd5\x8e\x87\x77\x56\x88\xbf\x43\x14\x46\xf6" "\x19\x86\x3e\x3b\x8c\xd6\xdd\xf5\x91\x75\xc5\xf8\x6a\x53\xeb\xe4\xde\x13" "\x00\x00\x00\x1c\xcb\xa6\xed\xb8\xf8\x1b\xe9\x38\x99\xff\x9b\xe3\x38\x0a" "\xad\x21\x9f\x9d\x96\x9a\xab\x6f\x1c\x53\xdf\x32\xe9\x39\xfe\xee\x31\x75" "\x27\x4c\xba\xee\xa7\x63\xea\x5a\x27\xa8\xfb\x37\xbc\x12\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa0\x41\x77\xae\x7c\xee\x94\x74\x3c\xd8\xd7\xdb" "\xde\x35\xd0\xd1\x1f\x45\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9\x52\xa9" "\xad\x81\x7d\x94\x3a\xef\x7b\xfa\xe1\xcb\xfb\x66\x24\x71\xa5\x77\xb1\x81" "\x75\x00\x00\x00\x80\xf1\x2e\x7d\xa3\xf0\xdd\x74\x9c\xcc\xe1\xc9\xec\x1f" "\x85\x42\x28\x86\xd9\xe1\xc4\x30\x7b\x68\xee\x0f\xad\x63\xeb\x93\xbc\xe3" "\x4a\xbf\x7f\x79\xc5\xee\x97\xae\x08\x61\xc9\xf4\xe7\xe7\x64\xeb\xf6\xfb" "\xe1\x9e\xcb\xde\x0e\x87\x3e\xfb\xda\x7b\xc3\x87\xa1\x30\x84\xa6\xb1\x49" "\x4d\x21\x4c\x89\xfb\x45\x75\xfa\x5d\xfd\x87\x47\x56\x3d\xf3\xe1\xf6\x07" "\x42\x58\x32\x2d\x33\xab\x7e\xbf\xd1\x56\xa3\x87\x2a\x51\xa9\x7c\xf2\xb6" "\x05\x0f\x5f\x3e\x7d\xef\x8a\xba\xcb\x00\x00\x00\xc0\x31\xad\xf0\xe0\x81" "\x9f\xa4\xe3\x64\xfe\x4f\x26\xea\x28\xb4\x86\x7c\x76\x7d\xdd\xf9\x3f\xc9" "\xab\xcc\xff\xcd\xf1\xf9\x84\xf3\x7f\x7b\xcf\xcc\x6d\x53\xe3\x63\xfc\x05" "\xa0\xaa\xa2\xa9\x35\xee\xd7\x54\xa7\x5f\xef\xbb\x0f\xb4\x1d\x5c\xf3\xe5" "\x83\x95\xf9\xff\xf9\x39\x85\x91\xff\x57\xe0\xf4\xf9\x63\xf3\xd3\xad\xd2" "\xc7\xaa\x6f\x0e\x51\xa9\x3c\xf7\x89\xd3\x56\x1f\x3e\x70\xd3\x25\xc3\x17" "\x92\xfe\x99\x3a\xfd\xd7\x34\xcf\x3b\x69\xe7\x5b\x33\xe7\x25\xfd\x0b\xf1" "\xf5\x6b\xc2\x64\xfb\x87\xaa\xfe\x3d\x1d\x87\xe6\x2f\x6a\x39\xfe\x82\xb1" "\xfd\x43\x08\x6d\xb5\xfa\xff\xf8\xc2\xc7\xdf\x5f\x75\xef\xbb\x57\x0c\xf7" "\xaf\xff\xbe\x17\xff\x69\xf0\xf3\x53\xc3\x86\x1f\x14\xba\x93\xe3\xf0\x95" "\xf1\xfd\x57\xde\xbf\x7c\xe7\xd6\xdc\xeb\x53\xc6\xf6\x8f\xea\xf4\x5f\xf8" "\xec\x93\xfb\x1f\xbb\x75\xd5\x9d\xd5\xcf\x7f\x6a\xb6\x56\xff\xf1\xc7\x2a" "\x95\xae\xd9\x72\xef\xbe\xdb\x17\xde\xb6\xa2\xf3\xdc\x54\xff\xa6\x3a\xfd" "\x6f\x6e\x7b\xe5\x9d\xef\xfc\xec\x97\x0f\x55\xfa\xef\x9b\xdb\x32\xd2\x7f" "\xe1\x47\x3c\xff\x84\xfd\xf7\xcc\xdf\xb1\x6f\xd7\xf6\x7b\xd6\x8c\x7d\xff" "\xa5\x5a\xfd\xaf\x3e\x6b\xe3\x93\x5b\xd6\x5d\x79\x57\xf5\xf3\xb7\x54\x2d" "\x9c\x7e\xf3\xe9\xe3\xf8\xf7\xff\xea\xac\xe8\xa2\xcd\x3d\x2f\x6f\xac\xbe" "\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x6c\xeb\x78\xec\x83" "\x43\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xbf\x29\x0a\x21\xaa\x53\x53\xae" "\x21\xb9\x97\xc9\x95\x4a\x6d\x1f\xd5\xb0\x9c\xaf\x79\xf9\x37\x99\x3d\x1f" "\x3c\xb4\xbf\x78\x7c\x12\x57\x7a\x17\x3f\xf6\xd3\x00\x00\x00\x00\xb5\x5c" "\xb2\xe2\xd5\xeb\xd2\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x72\x21\x17" "\x5a\x86\xe6\xfe\x93\xb7\x2d\x78\xf8\xf2\xe9\x7b\x57\x84\xd6\xf8\x7e\xfc" "\x9b\xed\xde\xd0\xb3\xe9\xcc\x6b\x37\x6c\x5e\x7f\xcd\x91\x7e\x04\x00\x00" "\x00\x60\x02\xbb\xce\x7b\x7f\x45\x3a\x4e\xe6\xff\x6c\x1c\x47\xa1\x35\xe4" "\xb3\x0b\x42\x73\x3c\xff\xaf\xbc\x7f\xf9\xce\xad\xb9\xd7\xa7\x24\xf3\x7f" "\x08\x61\xe8\xcf\xfd\xd9\x6b\xd7\x75\x77\x2e\x09\x23\xdf\x09\x7a\x3a\x0e" "\xcd\x5f\xd4\x72\xfc\x05\x49\x5e\x26\xfe\x2d\x54\xf2\x16\x5d\xbd\xa1\x3b" "\xfe\x4c\x90\xac\xfb\xd4\xa3\x9f\x59\x7a\xee\x65\x97\x8e\xe4\x37\xa5\xf3" "\xcf\x1e\xcd\x9b\xfb\xc4\x69\xab\x0f\x1f\xb8\xe9\x92\x9a\x79\xcb\x46\xf3" "\x5e\x9d\x15\x5d\xb4\xb9\xe7\xe5\x8d\xa9\x7d\x96\x46\xf2\x96\x8e\xe6\xf5" "\xee\xbb\x7d\xe1\x6d\x2b\x3a\xcf\x4d\x9e\x23\x8a\x7f\x0b\xf1\xf3\x24\x79" "\x7b\xe6\xef\xd8\xb7\x6b\xfb\x3d\x6b\x92\xbc\xa6\xf8\xb7\x25\x5e\x0f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\xe1\xa4\xf7\xfe\xfe\xb5\x74\x3c" "\xd8\xd7\xdb\xde\x35\xd0\xd1\x1f\x32\x21\x44\x75\x6a\xca\x35\x24\xf7\x32" "\xb9\x52\xa9\xad\x81\x7d\x7c\x70\xfe\xf3\x83\x87\x5b\xbf\xf8\x60\x12\x57" "\x7a\xe7\xb3\x0d\x2c\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x93\x1d\x38\x10\x00" "\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a" "\xec\xd7\x4f\x88\x94\x65\x1c\x07\xf0\xe7\x99\x19\xdb\xd1\x31\x9b\x35\xc1" "\xdd\xb2\x45\xc9\x8b\x42\x20\x2c\x49\x1e\xc2\xbd\xf4\x87\xd8\x4a\x8c\xa2" "\x04\x69\x8b\xb6\x4b\x45\x42\x94\x91\x87\xd4\xa5\x45\xaa\x83\x50\x60\xe8" "\x45\x34\x3a\x17\x7b\x90\xca\xc3\x26\x69\x51\x10\x59\x74\x88\x4e\x05\x75" "\xaa\xd8\xc3\xae\xc4\x1a\x15\x3b\xfb\xbc\xb3\x33\xaf\xbe\xec\xf6\x86\x12" "\xf2\xf9\xc0\xf0\xcc\xef\x99\x79\xbe\xf3\x7b\x9f\x79\xe6\xd5\x05\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xff\xb5\xc7\x7e\xbc\xa7\xd6\x59\xf7\xd4\xfa\x5a\xe3" "\xb9\xd7\x5e\xb8\xf0\xc0\x4d\x77\x7d\x71\x70\x74\xe6\xd5\x7b\x3f\x7a\xee" "\xc0\xda\x8f\xd7\x5c\x68\x8e\x0d\xdf\xff\xfa\xb6\xbb\xbf\x19\xf9\xbc\x77" "\x68\x60\xe3\xe8\xd6\x0f\x26\x1e\x1c\x1f\x3b\x73\xe7\x9f\x67\x8e\x1c\x1d" "\x5e\xf4\x83\x5e\x9e\x1f\x36\xa7\xb2\x1e\x42\xfc\x2d\x86\x30\xf0\xf3\xc4" "\x91\xf1\xb3\x5f\xae\x9d\x9b\x8b\x73\x9f\x1f\x9b\xfb\x43\x6f\x6f\x5c\xfd" "\x49\x6f\xcc\x25\x6c\x99\x0d\x21\x3c\xd5\xee\xb3\xfb\xc5\x89\x99\xc1\xa7" "\xe7\xc6\x03\x6f\x74\x2f\xbb\x21\x17\x92\xbf\xae\xd0\xa8\x66\xfd\xcc\x6b" "\x76\xf7\xcb\xb5\xa5\x9e\xce\xd9\xbe\xc7\x9f\x3c\x31\xf9\xcc\xd0\xd9\x89" "\xf5\x7b\x06\x7f\x9d\xbe\xfd\xf9\xfd\x0b\x6f\x89\xf5\x8e\xf3\x14\xc2\xaa" "\x91\xce\xf5\xcb\x42\x08\xcb\xd3\x63\x4e\x4f\x1a\xfb\xb2\xc5\x69\xdc\x11" "\x42\x58\xd1\xb1\xee\x8e\x45\xfa\xba\x75\x89\xfd\xdf\x56\x50\xaf\x4b\xe3" "\x75\x69\x6c\x2c\x92\x93\xbd\xbe\x21\x57\xd7\x96\xd8\x47\x2d\x37\xf6\x2c" "\x71\x5d\x59\x95\x2b\x9c\x9f\x97\xdf\xbf\xfc\xcd\xe8\x4a\xc9\xae\x73\x55" "\x1a\x4f\xa5\x71\xf3\xbf\xcc\xa9\x66\x8f\x18\x2a\x31\xd4\xda\xed\x3f\x1b" "\x17\xce\x48\xe8\xf8\xde\x62\x88\xad\xb3\x5d\x6f\xd7\x95\x56\x1d\xda\x75" "\xc8\xd7\x31\x57\x57\x72\x75\x75\x59\xee\xba\x5a\x9f\x9b\x36\xb6\x1a\x63" "\xf7\x7c\xf6\xbe\xdc\x7c\x76\x3b\xae\xa5\xf9\x0d\x9d\xf7\xea\xcb\xd8\x59" "\x30\xdf\x9f\xc6\x7a\xfa\xa1\xfe\x91\xd5\x21\xff\x64\x5e\xe3\x92\x27\x0b" "\xd7\x11\x3a\xfa\x9a\xba\x5a\x07\xa3\x40\xa5\xe0\xb7\x97\xcd\xb7\xdb\x4b" "\x5f\x46\x23\xcd\x35\xe2\xea\x4b\xd6\xfc\x7d\x19\xd9\x6b\x53\x9f\x3d\xb1" "\xeb\xf7\xef\x5f\x39\xd5\x2c\xe8\x23\xbe\x1f\x53\x7e\x2c\x95\x3f\x34\x7a" "\x6c\xf2\xbd\x47\x4f\xf7\xf7\x15\xe5\x8f\x54\x52\x7e\xa5\x54\xfe\xb9\xea" "\x57\xb3\xef\x4e\xf7\xad\x2c\xcc\x3f\x9c\xe5\x57\x4b\xe5\x3f\xfc\xd7\x2f" "\x87\x0e\x3e\xb4\x77\x4d\xe1\xfe\x4c\x65\xfb\x53\x2b\x95\xbf\xf1\xcd\x95" "\xfb\x66\xf6\xee\xec\x59\x5f\x94\x7f\x3c\xcb\xaf\x97\xca\xdf\xba\x7b\x60" "\xdb\x2d\xd3\x2f\xbe\x54\xd8\xff\x96\x6c\x7f\x96\x97\xca\xff\xee\xad\x4d" "\x17\x77\x1f\xfe\xf0\x74\x61\x7e\xc8\xf2\x57\x94\xca\xff\xe1\xd8\xc9\x75" "\xd5\xfe\xb7\xcf\x17\xe6\x4f\x66\xfb\xd3\x28\x95\xff\xc8\xe0\x3b\xdb\xef" "\xbb\x79\xec\x68\xe1\xfe\x7f\x9d\xe5\x5f\x5f\x2a\x7f\xd7\xf9\xf1\x91\x3d" "\x27\x3e\xdd\x54\x78\x3e\x77\x64\xfb\xd3\x2c\x95\x3f\xbb\xfd\xdb\x9f\x2e" "\x36\x87\x4f\x16\xdd\x3b\xe3\xf1\xab\xfd\x2f\x2c\xc0\xb5\xe5\xc6\xf4\x7f" "\xac\x43\xa9\x2e\xfb\x77\xe6\x7f\xf5\x0f\xfb\x75\x88\x02\x00\x08\x04\x51" "\x14\xc1\xa8\x77\xf0\xd8\x1e\xd7\xa0\xc2\x60\x36\xbe\x07\x9b\xb7\xce\x8f" "\x5e\x98\xa3\xee\xcd\xd7\xce\xf5\x9f\x8f\x1e\x25\xda\x05\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xae" "\x15\x00\x00\xff\xff\x52\x9e\x64\x9b", 23967); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20000100, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_NOATIME*/ 0x3000400, /*opts=*/0x20000280, /*chdir=*/1, /*size=*/0x5d9f, /*img=*/0x20005dc0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }