// https://syzkaller.appspot.com/bug?id=82d7ed0fa940c6177cc4bbda26e75f0f62737a20 // 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*)0x20005dc0, "./file0\000", 8); *(uint16_t*)0x20000340 = -1; memcpy( (void*)0x2000bb80, "\x78\x9c\xec\xdd\x7d\x90\x1c\x67\x99\x18\xf0\xee\x99\x59\xed\x4a\x2b\x59" "\x2b\x21\xe3\x95\x25\xcb\x6b\x2c\x20\xf2\xc5\x20\x5b\xb1\x83\xb8\x23\xda" "\x90\x83\x00\x11\x58\xc8\xc8\x18\xf9\x74\x92\xb0\x57\xa0\x43\x96\x84\x3e" "\x2c\x5b\xba\xc4\x5f\x39\xe3\x18\x92\x52\x95\x5d\x67\xc7\x0e\x89\xce\xa6" "\xc8\x55\xea\x2a\x31\xa5\x4b\x1c\xee\x94\x2a\x61\x8c\xb9\x70\x55\x2e\x0b" "\xc2\x1f\x9c\xf3\x75\xae\x40\xfe\x08\xe7\xa8\x0e\xc9\x47\x24\xc2\x5e\xed" "\x6e\xf7\xee\x74\x6f\xbf\xd3\xb3\xd3\xb3\xb2\x0c\xbf\x5f\x95\x76\xe6\xed" "\x7d\xe6\x79\xdf\xa7\xe7\xed\x4f\xed\xce\x46\x00\x00\x00\xfc\x52\x78\xf1" "\x77\xf6\xbf\xfe\xb1\xcb\x3f\xf0\x9d\x07\x46\xce\xde\xfb\xa1\x3f\xba\xf3" "\xfe\xa8\xbf\x3e\xbe\xbc\x2f\x0d\x18\x48\x1e\xef\x7e\xa3\x46\xc8\x6c\x5a" "\xf5\xdd\xf3\x99\x77\xb6\xb7\x31\x38\xfe\x98\x9f\x17\x97\xfd\xf1\x92\xd7" "\x07\x1e\x5c\xff\xd1\x47\xd6\x7e\xf0\xbb\xdb\xfe\x64\xd1\xf0\x8a\x95\x23" "\x37\x7e\xed\xf8\x4d\x0f\x3d\xf8\xfc\xfb\x7e\xf6\xfc\xe3\x4f\xae\x2f\xeb" "\x27\x9d\x4f\xd7\x4c\xb5\xe3\xbf\x88\xa3\x68\xc5\x0f\x8f\x3f\xfe\xd0\xb7" "\xfe\xf4\xb2\xb1\x65\xf1\x58\xff\xf1\xc0\x7d\xd1\xa2\x45\xf1\xe2\x6f\x2c" "\x8a\x73\x29\x56\x9f\x8b\xa2\xe8\x8e\xc9\x71\x66\xbf\x79\xfc\xec\x9a\x1d" "\x63\x8f\xf7\x7f\xb1\x37\xb3\x7c\x61\x2e\x89\xf9\xfe\xcb\xad\x2f\x99\x67" "\x47\xb6\x7e\xfa\xe9\x93\x9f\x1b\xfe\xd6\xf1\xa1\xbd\x6b\x7e\x7c\xe6\x86" "\x3d\xf7\x4d\x85\xc4\x7d\x4d\xf3\x29\x8a\x2e\xd9\xd6\xfc\xfa\x9e\x28\x8a" "\xe6\x26\xff\xc6\xa4\xb3\x6d\x30\x7d\x71\xf2\xb8\x21\x8a\xa2\x79\x4d\xaf" "\x7b\x4f\xc9\xb8\xae\x6e\x73\xfc\xd7\x06\xda\xcb\x93\xc7\x39\xc9\x63\x7f" "\x49\x9e\xf4\xfb\x57\xe5\xda\x8d\x36\xc7\xd1\xc8\x3d\xf6\xb6\xf9\xba\x4e" "\xd5\x66\x39\x7f\x5e\x7e\xfd\xe5\x77\x46\xb3\x25\xad\xf3\x92\xe4\xf1\xb9" "\xe4\xf1\x9a\x19\xe6\xa9\xa7\xff\xe2\xa8\x16\x47\x8d\xc9\xe1\xef\x8a\xa7" "\xe6\x48\xd4\xf4\xbe\xc5\x51\x3c\x3e\xb7\xfb\x26\xdb\xb5\xf1\x76\x34\xd9" "\x8e\xf2\xed\x38\xd7\xae\xe5\xda\xf5\x9e\x5c\x5d\xe3\xfd\x26\x2b\xb6\x1e" "\xc7\xd9\xe5\x69\x5c\x6e\x79\xba\x3b\x6e\x24\xcb\xaf\x6a\xde\x57\x17\xd8" "\x18\x58\xbe\x34\x79\xec\x4b\x36\xd4\x9f\xa6\xed\x28\xff\x64\x42\xff\xb4" "\x27\x53\x75\x44\x4d\xe3\x3a\x7d\xa1\x26\x46\x40\x2d\xb0\xed\xa5\xcb\x27" "\x87\x97\xbc\x19\xfd\xc9\xb2\xfe\x78\xf1\xb4\xd7\x8c\x16\x48\xbf\x77\xfa" "\xdb\xdb\x37\xbf\xf6\x83\xc3\xcf\x0d\x04\xc6\x11\x3f\x1b\x27\xf9\xe3\x8e" "\xf2\x0f\x8f\x3c\x75\xf2\xab\xb7\x9e\x58\x3a\x18\xca\xbf\xad\x96\xe4\xaf" "\x75\x94\xff\xc5\xfa\x4b\xe7\xbe\x72\x66\x70\x7e\x30\xff\xd1\x34\x7f\xbd" "\xa3\xfc\x9b\x7e\xfe\xa3\x87\x1f\xb8\xf9\xd0\x92\xe0\xfa\x39\x9d\xae\x9f" "\x46\x47\xf9\x57\x7e\x69\xfe\x91\xb3\x87\x36\xf6\x0e\x85\xf2\x1f\x4b\xf3" "\xf7\x75\x94\xff\xc6\x2d\x2b\xd6\x5e\x71\xe6\xe0\x5d\xc1\xf1\xaf\x4e\xd7" "\xcf\xdc\x8e\xf2\x7f\xff\xd1\x55\xe7\xb7\x1c\xfd\xfa\x89\x60\xfe\x28\xcd" "\x3f\xaf\xa3\xfc\xaf\x3c\xf5\xcc\xf2\xfa\xd2\xc7\x4e\x05\xf3\x9f\x4c\xd7" "\x4f\x7f\x47\xf9\x6f\x59\xf3\xc4\xba\x8f\x2c\x7b\xf0\xc9\xe0\xfa\x7f\x39" "\xcd\xbf\xa0\xa3\xfc\x9b\x4f\x3d\xb4\x6d\xef\xd3\x2f\xac\x0a\xce\xcf\x0d" "\xe9\xfa\x19\xe8\x28\xff\xb9\x75\xdf\x7b\xf5\xfc\xc0\xfa\x67\x42\xfb\xce" "\xf8\xd8\x85\x3e\xc2\x02\xfc\x62\x79\x4b\x72\x8e\xf5\x70\xd2\xee\xf4\x3a" "\xb3\xaa\xa6\xeb\x85\x27\x86\x1a\x13\xe7\x7c\xf3\x93\x7f\x0b\xba\xd9\x51" "\x4e\xdc\x74\xed\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x9d\x7a\x6c\xdd\xbf\xff\x7c\x73\xfb\xed\xff\xe7" "\xae\x4d\xa7\xfe\xc3\x8a\x9d\x8d\xa4\xdd\xdb\x88\xa2\x38\x8a\xa2\xd7\xea" "\x13\xed\x74\xf9\x9c\x28\x8a\xe7\x46\x51\xb4\xff\xc0\xf6\x7d\x07\x76\xee" "\xfe\xcc\xd0\x6f\xed\x39\xb8\x6f\xf7\xf6\x5d\x43\xdb\x0f\x0c\x8d\xec\x3e" "\xb0\xef\x9e\xa1\xbf\xf5\x37\x87\xf6\x8d\xec\xdd\xb5\xfd\x9e\xb1\xef\xae" "\xbe\x76\xcd\xc4\xeb\x16\x8f\x67\x8b\xa2\xc5\xf1\x15\xd3\xc6\x32\x3a\x3a" "\x3a\x1a\x45\xd1\x50\xf3\xb2\xb4\xbf\xdf\xfb\xf0\xb3\xff\x6f\xd3\x93\x7f" "\xf9\xa9\x28\x5a\x7d\xe9\xf7\x56\x34\x82\xf5\xbc\xfb\xbf\xbe\xfa\x81\x25" "\x05\x5f\x73\xe2\xe1\xd1\x0d\xff\xe2\x86\x47\x0f\xcf\xf9\x5f\x0b\x27\x16" "\x0c\x24\xe3\x1a\x08\x8d\x6b\x20\xbb\x2c\x1d\x41\xff\xf0\xcb\x7f\xf6\xfe" "\xe7\x7e\x30\x36\xae\xb7\xb6\x1a\xd7\xe3\x2f\x7d\xf2\xff\x66\x06\x34\xbe" "\x20\xcd\x33\x27\x0d\xab\xf5\x46\xb5\xf1\x27\xbd\xf1\xbc\xc2\x71\x4c\x8e" "\x7a\x6a\x3c\xe3\xeb\xab\xb1\x63\xe7\xae\x91\xd5\xe5\xeb\x37\x0e\xac\xdf" "\x77\xbe\xf0\x87\x67\xfe\xdd\xdd\x9b\xfe\xe9\xc4\xfa\xed\x0b\xd6\xd1\xe6" "\xfa\x1d\x5b\xab\x8d\xd1\x47\x7e\xf2\xc0\x3b\xef\x7b\xff\xc8\x7b\x2f\xe2" "\xf7\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\xf6\x6f\xff\xd3\x57\xee" "\x8b\x56\x37\x7e\x72\xe5\xf4\xbe\xcb\xea\xea\x49\x26\x40\x4f\xbc\xb4\xad" "\x7e\xd3\x1e\xe6\xc5\x8b\x32\xb1\x7d\x49\x7c\xfa\x8e\xa7\xaf\x7b\xf7\x81" "\x3b\xf7\xbe\x7b\xff\x3d\x87\xaf\xdd\x79\xe7\xf6\xcf\x8c\x7c\x66\x64\xf7" "\x9a\x35\x37\xac\xbd\x6e\xcd\x75\xd7\xaf\x5d\xf3\xee\xf1\xd2\x27\xbe\x76" "\xad\xfe\xb4\xff\x77\xb6\x59\xff\xfc\x24\xd3\xfc\x78\x59\xe1\x7a\xcb\x2f" "\x4d\xfb\xbd\x72\xfc\x6b\x3d\x4a\x86\x9d\x3e\x34\x3d\xc9\xea\x89\xfa\x27" "\x1e\x73\xeb\x39\x0d\xcf\x57\xdd\x9f\x7c\xaf\x3f\x5e\x3c\x2d\xd7\x68\x81" "\xf4\x7b\xa7\xbf\xbd\x7d\xf3\x6b\x3f\x38\xfc\x5c\x68\xcb\x8b\x9f\x9d\xe8" "\x71\x6e\xb4\x60\xe2\x31\x5e\x1e\x88\xdc\x95\x7b\x61\x7d\x72\xc0\x45\xfd" "\x5f\x98\xed\x72\xcf\xef\xf6\xed\x4a\xbf\xb6\xb7\x5d\x96\x8d\xab\x6c\x5e" "\x8d\x8d\xab\x7c\x5e\x35\x8f\xa8\xc5\x7e\xec\xa5\xab\x1f\xfe\xc9\xd3\x5f" "\xf8\xe7\xb7\xb5\xb1\xbf\x68\x0a\x1d\x1f\x5f\x3a\xce\x79\x63\x9b\xcb\x75" "\x51\xd3\x76\x3b\x7d\x5d\x15\xd5\xd5\xc6\xfb\x33\x5c\xb4\x1e\x6e\xbf\x76" "\xdf\x1f\xde\xb3\x73\xf3\xd1\xb2\xfd\x79\xf3\x3b\xd3\xfc\x35\x27\x1e\x1e" "\xfd\x9f\xcb\xe3\x8f\x1e\xdc\xff\x67\xfb\x26\x16\x5c\x90\xe3\x65\xf3\x80" "\x32\xc7\xcb\x49\xa5\xc7\xcb\xc9\x51\x4f\x8d\x67\x7c\x7d\xf5\x25\xef\xc7" "\xc5\xba\x7e\x7b\xc7\xf6\x51\xd1\x58\xff\xfd\x85\xe3\xda\x18\x3f\xfd\xbe" "\x77\xde\x79\xe2\x57\x26\xc7\x37\x67\x4e\x74\xf7\xf6\x03\x07\xf6\x5d\x37" "\xf1\xf5\xe2\xae\x6b\xec\xfd\x2a\xae\xeb\xcf\xe7\x2c\x5c\xb2\xf3\xfe\x65" "\x57\x4c\xab\xeb\xfa\x89\xaf\x65\xfb\xfd\x2b\x73\xed\xd2\xfd\x7e\xad\xb8" "\xbe\xb2\xfd\x7e\xbe\x9f\xa9\xf8\xe2\x7c\x43\xb9\x76\x7f\x54\xef\xe8\x38" "\xb1\xe9\xe7\x3f\x7a\xf8\x81\x9b\x0f\x2d\x09\x1e\x27\x4e\xb7\x7b\x9c\xf8" "\xed\x4c\xab\x5e\xf1\x38\x51\x0b\x6c\xef\x8f\xfc\xe5\x97\x87\x5e\xbf\xed" "\x13\xaf\x97\xcd\xa7\x9b\xf6\x2f\xbb\x77\x49\xc1\xd7\x7c\x79\xc3\xa3\x5f" "\xff\x83\x5f\xbd\xee\xbd\x9f\xbc\xf9\x83\x13\x0b\x2e\xc8\x7e\xa8\x79\x40" "\x1d\xee\x87\x26\x47\x9d\x8c\x27\x5d\x5f\xe3\xfb\xa1\xeb\x2f\x9e\x3a\xde" "\xb8\xf7\x39\xb3\x21\xc6\xc3\xa3\x57\x7e\xed\x1d\xb7\x9c\x3f\xfb\xf9\x8f" "\x4f\x2c\x28\x5b\xbf\x93\xd1\x45\xeb\x77\x4d\xf9\x7e\xbe\x1e\xa8\xeb\xb6" "\x9e\xb7\x2d\x7a\xf4\xc7\xcb\xde\xd6\xbd\xf9\xbb\x7f\xeb\x5f\x5d\xfd\xae" "\x79\xf3\x2f\xb2\xf9\xdb\x97\xac\xdf\xbe\xc0\xfa\x9d\x1c\x75\x32\x9e\x7a" "\xf3\xfa\x7d\xd7\xed\x7b\x76\xdd\x31\xd1\xbe\x78\xcf\xdb\x26\xf4\x96\x5c" "\xff\xa4\xc7\x9d\xfd\xf7\x1c\xfe\xdc\xf6\x5d\xbb\x46\xf6\xed\x6f\xaf\xae" "\x76\x8f\xa7\x69\x3f\xf9\xb5\xdc\xe9\xf1\x34\x3d\x7a\x2c\x2e\xa9\x2b\x7d" "\xbf\xa6\xea\x9a\xbd\x27\xed\xac\xaf\x76\xb7\xb7\x74\xfc\x77\xe4\x72\x74" "\xba\xbd\x01\xa4\xa6\x8e\x0b\x73\x32\xcb\xf3\xfb\xcf\xf4\xbe\xdf\x8a\x4b" "\xa2\x4d\xef\xfa\xc2\x37\x5f\x8a\x87\x26\x8e\x97\xdd\xba\xdf\x9a\xf6\x73" "\x79\xee\xc0\xdc\xe9\xfd\xd6\xb2\xeb\xa4\xb7\xe5\xda\xd9\xeb\xa4\x46\xd4" "\x54\xf7\x84\xe9\xd7\x49\xe3\x2f\x29\xbb\x4e\xca\xf7\x53\x76\x9d\x74\x75" "\xae\x5d\x7e\x1d\xf3\x70\x61\x25\xa1\xf7\xaf\x27\x39\xf2\x16\xdd\x37\xcd" "\x8d\xb7\x31\x96\x21\x34\x3f\x06\x93\xfc\x83\x49\x3b\x3d\xdf\x5c\xf1\xae" "\xe8\x86\xfa\x73\x6f\xff\x70\x3c\xdc\xde\xfc\x68\xf7\x7c\x3a\xed\xe7\x6f" "\xe4\x56\x50\xa7\xe7\xd3\x65\xf3\x63\x65\x54\x3c\xae\x6e\xcf\x8f\x77\xe4" "\x5e\x54\xfe\x7e\x1f\x2d\x1c\x59\x5f\xe0\xfd\x28\x7b\xbf\x57\x66\x12\x8d" "\x8e\x56\xbd\x2e\x1f\x08\x8c\x3a\xbd\x2e\xef\x8f\xe2\x8e\xf2\x0f\x8f\x3c" "\x75\xf2\xab\xb7\x9e\x58\x1a\xcc\xbf\xad\x96\xe4\xaf\x75\x94\xff\xc5\xfa" "\x4b\xe7\xbe\x72\x66\x70\x7e\x30\xff\xd1\x34\x7f\xa3\xa3\xfc\x2b\xbf\x34" "\xff\xc8\xd9\x43\x1b\x7b\x83\xf9\x8f\xa5\xeb\xa7\xaf\xa3\xfc\x37\x6e\x59" "\xb1\xf6\x8a\x33\x07\xef\x0a\xe6\x5f\x9d\x8e\x7f\x6e\x47\xf9\xbf\xff\xe8" "\xaa\xf3\x5b\x8e\x7e\xfd\x44\x30\x7f\x94\xe6\xef\xef\x28\xff\x2d\x6b\x9e" "\x58\xf7\x91\x65\x0f\x3e\x19\xcc\xff\x72\x9c\xf4\x33\xb6\xed\x46\xd1\xf1" "\xb3\x6b\x76\x4c\xb4\xe3\xa8\x27\x99\xff\xe9\x38\x7a\x32\xe3\x8a\xf2\xed" "\x78\xb2\x3d\xa7\xa8\x8e\xa8\xde\x1c\x5f\x4b\xc3\x92\x0e\xea\x71\x9c\x5d" "\x9e\xc6\xe5\x96\xa7\x75\x34\x92\xe5\x57\x35\x8d\xb1\xc8\xa6\xc0\xf2\x74" "\xab\xed\x4b\x36\xec\x9f\xa6\xed\x28\xff\xa4\xf5\xf2\x74\xf7\x94\x8e\xeb" "\x74\xe0\xf8\x73\xa1\xd4\x9a\xce\x3d\x8a\x96\x97\xdd\x9f\xec\x96\xd7\x7e" "\x38\xf8\x7b\xcd\xed\xf4\xff\xff\xd3\x39\xd0\xdb\x98\x78\xef\xae\xcf\xad" "\xaf\xb2\xe3\x47\x7e\xef\x9d\xe6\x0b\xde\x87\x0d\xdc\xc2\x28\x3b\x5f\x98" "\xfe\xff\x6f\xf3\x3a\xda\xfe\x5e\x79\xea\x99\xe5\xf5\xa5\x8f\x9d\x0a\xde" "\x57\x3d\xd9\xee\x7d\xd5\xbd\x99\xd6\xbc\x92\xfb\xaa\x55\xc7\x1b\xdc\x5f" "\x9c\x4c\xf7\xa7\xd5\xf6\x47\x83\xa1\xfc\x2f\xa7\xf9\xab\x1d\x0f\x82\xf9" "\x93\xe3\x41\xd9\x3c\x7b\x7b\xae\x5d\x3a\xcf\x7a\x8a\xfb\x2b\x9b\x67\xf9" "\xf3\x94\xfe\x68\x41\x47\x75\x6f\x3e\xf5\xd0\xb6\xbd\x4f\xbf\xb0\x2a\x38" "\xcf\x36\x4c\x6c\xf0\xe5\xf3\xec\xb1\x4c\x6b\x41\xe9\x3c\xab\xf6\xff\xd2" "\xc1\x79\xf6\x6c\xdc\x95\xf5\x11\xcc\xbf\xa1\x3b\xe7\x35\xc1\x79\x96\x9c" "\xd7\x94\xcd\xb3\x6b\x72\xed\xea\xf3\x2c\x7b\x3e\xfa\xd1\xe4\xf1\xee\x5c" "\x7c\x7f\x72\x87\x78\xa6\x75\x9f\x5b\xf7\xbd\x57\xcf\x0f\xac\x7f\x26\x38" "\xcf\x8e\xb5\x3b\xcf\x7e\x3f\xd3\x1a\x28\x9d\x67\xd5\xce\x6f\x83\xef\xd3" "\xe4\xf9\xed\x6c\x9f\x9f\xbf\xb9\xcf\x3f\xbb\x7a\x7e\x38\xd1\xae\xe5\xda" "\xc5\xe7\x87\xc9\x7f\xe7\xce\xd6\xf9\xe1\xc6\xc0\xf2\x99\x9e\x1f\xf6\x4f" "\x7b\x32\x55\x47\xf4\x66\x3c\x3f\x0c\xec\x67\x00\xa0\x95\xef\x3c\x72\xcf" "\xff\x6e\x6e\xa7\xd7\xff\xe9\xb1\x3b\xbd\xfe\xff\x66\xee\x75\x55\xaf\x2b" "\xf3\x3f\x0f\x95\xea\xd6\x75\x65\x30\xff\xb1\xee\x5c\xaf\x04\xcf\x53\x27" "\xaf\x57\x66\xfb\x7a\x6b\xb6\xcf\xb3\x67\xf7\x7a\xcb\x79\x7c\x20\xff\xe4" "\x7d\xe4\xd9\xbe\x2f\x34\xbb\xd7\x95\xae\x43\x92\x76\x94\x7f\x32\xc1\x75" "\x08\x00\x00\x6f\x84\xab\xfe\xf5\x97\x7f\xbd\xb9\x9d\x5e\xff\x4f\xfe\xdc" "\x5b\xf2\xfb\xff\x2f\xa4\xed\xdc\xeb\x5d\xe7\x06\xf2\x5f\xb0\xeb\xdc\xd9" "\xbe\x4f\xe2\x3a\xba\x30\x7f\x97\x7e\xbe\xa2\xfc\x3e\xd8\x6c\xdf\xa7\x9a" "\xc9\x7d\x80\xff\x7c\x69\xfa\x3d\xf7\x01\x8a\xb9\x0f\x70\x61\xc7\x05\x00" "\xc0\xcc\x6c\xdd\xb1\x6f\x64\x64\xff\xde\xed\xb7\x8f\x6c\xdd\xb9\x7b\xe7" "\x81\xc9\xe5\x3d\xe3\x57\x4e\xd3\x7f\x4e\xf5\x6f\x27\x8f\x1b\x72\x79\xca" "\x7e\x7e\xba\x28\x7e\x5e\x8b\xf8\x8f\x07\xf3\x67\xc7\xf3\x9e\x40\x7c\x48" "\x63\xfc\x67\x5e\xa3\xe8\xd3\xb7\x7f\xf6\xfa\xad\x77\x8c\xdc\x35\xd3\xfa" "\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\xfc\xf5\x45\xa8\xfe\xb5\x81\xf8\x90" "\xaa\xf5\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd\x37\x07\xf3\x67\xc7\xf3\xde" "\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\x4f\x04\xf3\x67" "\xc7\xf3\xab\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd\xf9" "\xdf\x07\x0b\xd5\xff\x6b\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\xbf\x28\xbe" "\x55\xfd\xb7\x04\xf3\x67\xc7\xf3\xbe\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5" "\x5f\x14\xdf\xaa\xfe\x4f\x06\xf3\x67\xc7\xf3\x77\x02\xf1\x21\x55\xeb\x0f" "\xf5\x57\x56\x7f\x51\x7c\xab\xfa\x6f\x0d\xe6\xcf\x8e\x67\x5d\x20\x3e\xa4" "\x6a\xfd\xa1\xfe\xca\xea\x2f\x8a\x6f\x55\xff\xa7\x82\xf9\xb3\xe3\x19\x0e" "\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xdf\x1c\xcc\x9f\x1d" "\xcf\xdf\x0d\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xbf\x2d" "\x98\x3f\x3b\x9e\xf7\x07\xe2\x43\xaa\xd6\x1f\xea\xaf\xac\xfe\xa2\xf8\x56" "\xf5\xff\x46\x30\x7f\x76\x3c\x7f\x2f\x10\x1f\xd2\xb2\xfe\xc2\xf1\xb5\xd7" "\x5f\x59\xfd\x45\xf1\xad\xea\xdf\x12\xcc\x9f\x1d\xcf\xaf\x07\xe2\x43\xaa" "\xbe\xff\xa1\xfe\xca\xea\x2f\x8a\x6f\x55\xff\x6f\x06\xf3\x67\xc7\xf3\x81" "\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe\xad\xc1\xfc\xd9" "\xf1\x7c\x30\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\x17\xc5\xb7\xaa\x7f\x5b" "\x30\x7f\x76\x3c\x7f\x3f\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\x17\xc5\xb7" "\xaa\x7f\x7b\x30\x7f\x76\x3c\x1f\x0a\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd" "\x45\xf1\xad\xea\xff\x74\x30\x7f\x76\x3c\x1f\x0e\xc4\x87\x54\xad\x3f\xd4" "\x5f\x59\xfd\x45\xf1\xad\xea\xbf\x3d\x98\x3f\x3b\x9e\x8f\x04\xe2\x43\xaa" "\xd6\x1f\xea\xaf\xac\xfe\xa2\xf8\x56\xf5\xe7\x3f\xef\x30\x54\xff\x3f\x08" "\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\x1f\x09\xe6\xcf\x8e" "\x67\x7d\x20\x3e\xa4\x6a\xfd\xa1\xfe\xca\xea\x2f\x8a\x6f\x55\xff\x8e\x60" "\xfe\xe2\xcf\x0d\xc8\xc7\x4f\x98\xfe\x3f\xf6\x55\xeb\x0f\xf5\x57\x56\x7f" "\x51\x7c\xab\xfa\x3f\x13\xcc\x9f\x1d\xcf\xc7\x02\xf1\x21\x55\xeb\x0f\xf5" "\x57\x56\x7f\x51\x7c\xab\xfa\x3f\x1b\xcc\x9f\x1d\xcf\x4d\x81\xf8\x90\xaa" "\xf5\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd\x3b\x83\xf9\xb3\xe3\xd9\x10\x88" "\x0f\xa9\x5a\x7f\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\xff\x5b\xc1\xfc\xd9\xf1" "\x7c\x3c\x10\x1f\x52\xb5\xfe\x50\x7f\x65\xf5\x17\xc5\xb7\xaa\xff\x73\xc1" "\xfc\xd9\xf1\x6c\x0c\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea" "\xdf\x15\xcc\x9f\x1d\xcf\xcd\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\xbf\x28" "\xbe\x55\xfd\x77\x06\xf3\x67\xc7\xf3\x89\x40\x7c\x48\xd5\xfa\xc7\xfa\xfb" "\x57\x05\x79\xcb\xea\x2f\xaa\xa7\x55\xfd\xbb\x83\xf9\xb3\xe3\xd9\x14\x88" "\x0f\xa9\x5a\x7f\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\xbf\x27\x98\x3f\x3b\x9e" "\x5b\x02\xf1\x21\x55\xeb\x0f\xf5\x57\x56\x7f\x51\x7c\xab\xfa\xf7\x06\xf3" "\x67\xc7\xf3\xc9\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14\xdf\xaa\xfe" "\xcf\x07\xf3\x67\xc7\x73\x6b\x20\x3e\xa4\x6a\xfd\xa1\xfe\xca\xea\x2f\x8a" "\x6f\x55\xff\xbe\x60\xfe\xec\x78\x3e\x15\x88\x0f\xa9\x5a\x7f\xa8\xbf\xb2" "\xfa\x8b\xe2\x5b\xd5\xbf\x3f\x98\x3f\x3b\x9e\xcd\x81\xf8\x90\x2a\xf5\x3f" "\xdb\xa2\xbf\xb2\xfa\x8b\xe2\x5b\xd5\x7f\x20\x98\x3f\x5b\xff\x6d\x81\xf8" "\x90\xaa\xef\x7f\xa8\xbf\xb2\xfa\x8b\xe2\x5b\xd5\x7f\x30\x98\x3f\x3b\x9e" "\xdf\x08\xc4\x87\x54\xad\x3f\xd4\x5f\x59\xfd\x45\xf1\xad\xea\xbf\x2b\x98" "\x3f\x3b\x9e\x2d\x81\xf8\x90\xaa\xf5\x87\xfa\x2b\xab\xbf\x28\xbe\x55\xfd" "\x87\x82\xf9\xb3\xe3\xf9\xcd\x40\x7c\x48\xd5\xfa\x43\xfd\x95\xd5\x5f\x14" "\xdf\xaa\xfe\xfc\xe7\x40\x86\xea\xdf\x1a\x88\x0f\x99\xac\xff\xc0\xbe\x91" "\x91\xad\x07\xf7\xde\xb1\xfd\xc0\xc8\xd6\xdd\x7b\xee\x18\xd9\xbf\xf5\xd0" "\xbe\x9d\x07\x0e\x8c\x24\x27\x6a\x55\x7f\xaf\x2c\xfc\x7b\x41\x6f\xf0\x2f" "\xb2\xd0\x52\x66\xfb\x98\x98\x24\x3b\x77\xef\x1f\xd9\x37\x7d\xff\x3d\xb7" "\xe5\xfc\x6d\x9e\x13\xd1\xf8\xaf\x3d\xcd\x9d\x78\x8c\xdf\xda\x56\x7c\xfe" "\x63\xaf\x3b\x9d\x35\x17\xcb\x7c\xef\x89\x1a\x2d\xd7\xd7\xe5\xb9\xf6\xc2" "\xe4\xf3\x68\x17\x06\x3e\x8f\x36\x1f\x9f\xa6\x5d\x36\xfe\x64\xfa\xe7\xd1" "\xe6\xbb\x6d\x94\x7c\x8e\x6b\xd9\xfe\x29\xdf\x7f\x68\xff\x14\xb7\x88\x2f" "\xda\xbf\x86\xf6\x67\x65\xc7\xbf\x19\xef\xff\x4a\xe7\x77\x5f\xcb\xfa\xf3" "\x8b\x7b\x93\x5f\xec\xeb\x8d\x2f\x6d\x2b\x3e\x6a\xf1\xf7\xdd\xda\x9b\xaf" "\xd5\x7e\xef\x34\x38\x5f\x5f\x6e\x6f\xbe\xe6\x3f\x77\xbd\x6c\xbe\xe6\xe3" "\x67\x3a\x5f\xfb\x2b\xce\xd7\x7c\xff\xa1\xf9\x54\x6b\x11\xdf\xea\x7c\xa8" "\xdd\xf9\xba\x39\x10\x9f\x6a\x7f\x7e\xc6\xc1\x7a\x8b\xe6\xd5\x4c\xff\xce" "\x60\x9a\x76\x46\x7f\x67\x30\xf7\x65\x9a\x0e\xfe\x96\x41\xfb\xdb\x43\xb5" "\xdf\x23\x0f\x6e\x0f\xc9\xa0\xcb\xb6\x87\xfc\xef\x71\x97\x6d\x0f\xf9\xf8" "\x99\x6e\x0f\x73\x2b\x6e\x0f\xf9\xfe\xcb\xb6\x87\xa2\xf8\xa2\xed\x21\x34" "\xbf\xcb\xee\x5f\x75\xff\xfc\xb5\xda\xe7\x16\x04\xe7\xc3\xea\xf6\xe6\x43" "\xfe\xef\x58\x95\xcd\x87\x7c\xfc\x4c\xe7\x43\x5f\xc5\xf9\x90\xef\xbf\x6c" "\x3e\x14\xc5\xb7\xba\x5f\xd8\xee\x7c\xf8\x44\x20\xbe\x5d\xed\xcf\x8f\x6a" "\x9f\x2b\x12\x9c\x1f\xdb\xda\x9b\x1f\xf9\xbf\x27\x51\x36\x3f\xf2\xf1\x33" "\x9d\x1f\x71\xc5\xf9\x91\xef\xbf\x6c\x7e\x14\xc5\x87\xfe\x3f\x25\x9a\xc1" "\xfc\xf8\x78\x20\x3e\x95\x39\x7e\xee\xd8\x3f\x7e\x51\xbf\x73\xfb\xae\x9d" "\x87\x73\x3f\x80\x31\x90\x1c\x3f\xdf\xe8\xe3\xe1\x05\x39\x2e\xff\xd5\xaf" "\xfd\xf9\x4f\x27\xbe\x24\xe3\xa8\x4d\x1b\x47\xd9\xf9\x44\x9c\x1b\xc7\xa2" "\x64\x24\x8b\x42\x7f\xf7\x30\x30\xee\xdb\xff\xcb\xbf\xd9\xf4\xcd\x9f\x7d" "\xe1\xcb\x51\xb4\xfa\xd2\xfa\xf2\xf0\xb8\xa7\x86\x3c\xf5\x25\x27\x1e\x1e" "\x5d\x7c\xef\xca\xaf\xde\xfa\xd6\x53\xef\x1f\x1b\x7f\xad\xe5\xf8\x27\x23" "\xd3\xbf\x5b\x5c\xf2\xf7\x8e\xf3\xf1\x69\x3d\x8d\x5d\x7b\xf6\x1f\xf8\x95" "\x1d\x7b\x0e\xee\x6e\xf7\x27\xae\x5a\x4b\x3f\x0f\xa5\x36\xd9\x9e\xa5\xcf" "\x43\x49\x16\xd6\xdb\xfc\x7c\x93\xd0\xef\x13\xcc\xf4\xf3\x4d\x7a\xa6\x3d" "\xb9\x38\xb5\xfd\xf9\x26\x00\xbf\x20\x16\x1e\x7b\x76\x41\x73\x3b\xfd\xfc" "\xbf\xf4\x78\x34\x98\xec\xfb\xe6\x26\x3b\xc0\x74\x79\xfb\xe7\xd9\xd5\x3e" "\x5f\x2f\x78\x9e\x7d\xb4\xbd\xf3\xec\x55\xf9\x7a\x4b\xce\xb3\xf3\xf1\x69" "\xbd\xed\x9e\x67\xd7\x2a\x9e\x67\xe7\xfb\x2f\x3b\xcf\x2e\x8a\x6f\xf5\x73" "\x7b\xed\x9e\x67\x7f\x2c\x10\x3f\x53\xd9\x79\x32\x36\x41\xc6\xe7\xc7\xc8" "\xd6\x43\x7b\xf6\x35\xff\x4c\xdc\x6c\xff\xdd\xda\xee\x8f\x77\x76\xff\x8e" "\x6f\xf5\xf1\xcd\xee\xe7\x36\x76\xaa\xfd\xf1\xcf\xee\xe7\x42\xce\xfe\xf8" "\x67\xf7\xef\x00\xcf\xfe\xf8\x67\xf7\xef\x3c\x77\xea\x82\x5d\x2f\x25\x1f" "\x16\x59\xf6\xf9\x91\x65\xd7\x51\xa1\xdf\x4b\x9f\xe9\x75\xd4\x9c\x69\x4f" "\x2e\x4e\xae\xa3\x00\xe0\xe2\xf7\x4f\xf6\xfd\xf0\x5f\x36\xb7\xd3\xeb\xff" "\xe4\x2a\x76\xf2\xfa\xff\x8b\x49\xbb\xde\xe5\xfe\x67\xfb\x3a\x6a\xb6\xaf" "\x2b\x67\xfb\x3c\xf9\xcd\xff\xf9\xfb\xb3\x7b\x1d\xe4\x7a\xa0\x45\x67\x17" "\x01\xd7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc5\x7e\xff\xbf\xff\xc7\x6f\x34\xb7\x7b\x1b\x83\xe3\x8f" "\x2f\xfe\xce\xfe\xd7\x3f\x76\xf9\x07\xbe\xf3\xc0\xc8\xd9\x7b\x3f\xf4\x47" "\x77\xde\x7f\xd9\x1f\x2f\x79\x7d\xe0\xc1\xf5\x1f\x7d\x64\xed\x07\xbf\xbb" "\xed\x4f\x16\x0d\xaf\x58\x39\x72\xe3\xd7\x8e\xdf\xf4\xd0\x83\xcf\xbf\xef" "\x67\xcf\x3f\xfe\xe4\xfa\xd2\x8e\x06\x26\x1e\xae\x49\x9a\x7d\x51\x14\xff" "\x45\x1c\x45\x2b\x7e\x78\xfc\xf1\x87\xbe\xf5\xa7\x97\x8d\x2d\x8b\xc7\xfa" "\x8f\x07\xee\x8b\x16\x2d\x8a\x17\x7f\x63\x51\x9c\xcb\xb0\xfa\x5c\x14\x45" "\x77\x4c\x8e\x33\xfb\xcd\xe3\x67\xd7\xec\x18\x7b\xbc\xff\x8b\xbd\x99\xe5" "\x0b\x73\x49\xf2\x75\x45\xfd\xf5\x74\x3c\x99\x71\x46\x77\x97\x56\xc4\x9b" "\x50\x5f\x32\xcf\x8e\x6c\xfd\xf4\xd3\x27\x3f\x37\xfc\xad\xe3\x43\x7b\xd7" "\xfc\xf8\xcc\x0d\x7b\xee\x9b\x0a\x89\xfb\x9a\xe6\x53\x14\x5d\xb2\xad\xf9" "\xf5\x3d\x51\x14\xcd\x4d\xfe\x8d\x49\x67\xdb\x60\xfa\xe2\xe4\x71\x43\x14" "\x45\xf3\x9a\x5e\xf7\x9e\x92\x71\x5d\xdd\xe6\xf8\xaf\x0d\xb4\x97\x27\x8f" "\x73\x92\xc7\xfe\x92\x3c\xe9\xf7\xaf\xca\xb5\x1b\x6d\x8e\xa3\x91\x7b\xec" "\x6d\xf3\x75\x1d\xfa\xff\xb5\xd9\xcd\x3f\x4d\x7e\xfd\xe5\x77\x46\xb3\x25" "\xad\xf3\x92\xe4\xf1\xb9\xe4\xf1\x9a\x19\xe6\xa9\xa7\xff\xe2\xa8\x16\x47" "\x8d\xc9\xe1\xef\x8a\xa7\xe6\x48\xd4\xf4\xbe\xc5\x51\x3c\x3e\xb7\xfb\x26" "\xdb\xb5\xf1\x76\x34\xd9\x8e\xf2\xed\x38\xd7\xae\xe5\xda\xf5\x9e\x5c\x5d" "\xe3\xfd\x26\x2b\xb6\x1e\xc7\xd9\xe5\x69\x5c\x6e\x79\xba\x3b\x6e\x24\xcb" "\xaf\x6a\xde\x57\x17\xd8\x18\x58\xbe\x34\x79\xec\x4b\x36\xd4\x9f\xa6\xed" "\x28\xff\x64\x42\xff\xb4\x27\x53\x75\x44\x4d\xe3\x3a\x7d\xa1\x26\x46\x40" "\x2d\xb0\xed\xa5\xcb\x27\x87\x97\xbc\x19\xfd\xc9\xb2\xfe\x78\xf1\xb4\xd7" "\x8c\x16\x48\xbf\x77\xfa\xdb\xdb\x37\xbf\xf6\x83\xc3\xcf\x0d\x04\xc6\x11" "\x3f\x1b\x27\xf9\xe3\x8e\xf2\x0f\x8f\x3c\x75\xf2\xab\xb7\x9e\x58\x3a\x18" "\xca\xbf\xad\x96\xe4\xaf\x75\x94\xff\xc5\xfa\x4b\xe7\xbe\x72\x66\x70\x7e" "\x30\xff\xd1\x34\x7f\xbd\xa3\xfc\x9b\x7e\xfe\xa3\x87\x1f\xb8\xf9\xd0\x92" "\xe0\xfa\x39\x9d\xae\x9f\x46\x47\xf9\x57\x7e\x69\xfe\x91\xb3\x87\x36\xf6" "\x0e\x85\xf2\x1f\x4b\xf3\xf7\x75\x94\xff\xc6\x2d\x2b\xd6\x5e\x71\xe6\xe0" "\x5d\xc1\xf1\xaf\x4e\xd7\xcf\xdc\x8e\xf2\x7f\xff\xd1\x55\xe7\xb7\x1c\xfd" "\xfa\x89\x60\xfe\x28\xcd\x3f\xaf\xa3\xfc\xaf\x3c\xf5\xcc\xf2\xfa\xd2\xc7" "\x4e\x05\xf3\x9f\x4c\xd7\x4f\x7f\x47\xf9\x6f\x59\xf3\xc4\xba\x8f\x2c\x7b" "\xf0\xc9\xe0\xfa\x7f\x39\xcd\xbf\xa0\xa3\xfc\x9b\x4f\x3d\xb4\x6d\xef\xd3" "\x2f\xac\x0a\xce\xcf\x0d\xe9\xfa\x19\xe8\x28\xff\xb9\x75\xdf\x7b\xf5\xfc" "\xc0\xfa\x67\x42\xfb\xce\xf8\xd8\x85\x3e\xc2\x02\xfc\x62\x79\x4b\x72\x8e" "\xf5\x70\xd2\xee\xf4\x3a\xb3\xaa\xa6\xeb\x85\x27\x86\x1a\x13\xe7\x7c\xf3" "\x93\x7f\x0b\xba\xd9\x51\x4e\xdc\x74\xed\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x21\x7b" "\x46\xeb\x07\x9b\xdb\xaf\x9e\x78\xe4\xa6\xcf\xfe\x8f\xad\xff\xad\x11\x47" "\x51\x1c\x78\xcd\x68\x81\xf4\x7b\xf5\x39\xc3\xc3\x43\x1d\x8c\x63\xe5\x97" "\xe6\x1f\x39\x7b\x68\x63\x6f\xda\x1e\xeb\x7b\xb0\x83\x3c\x00\x00\x00\xc0" "\x74\xcb\x5e\xf9\xc2\xe7\x9b\xdb\xe9\x75\x78\x2d\x69\xc7\x51\x5f\x34\x18" "\x1d\x8a\xe7\x46\xcb\x0a\x5f\x9f\xde\x23\x58\x96\xb6\xe2\xec\xf2\xfc\x3d" "\x84\xb9\x53\x91\x5d\xc9\x53\xeb\x52\x9e\x7a\x97\xf2\x34\xba\x94\xa7\xa7" "\x4b\x79\xe6\x74\x29\x4f\x6f\x97\xf2\xf4\x95\xe4\xe9\x8b\xda\xcb\x33\xb7" "\x65\x9e\x5a\xdb\xe3\x99\xd7\xa5\x3c\xfd\x5d\xca\x33\xbf\x4b\x79\x16\x74" "\x29\xcf\x25\x9d\xe7\x69\x34\xe7\x59\xd8\xa5\xf1\x0c\xb4\xcc\xd3\xfe\x3c" "\x5c\xd4\xa5\x3c\x8b\xbb\x94\xe7\x2d\x5d\xca\xb3\xa4\x4b\x79\x2e\xed\x52" "\x9e\xb7\x76\x29\xcf\x65\x5d\xca\x93\xbf\xa7\x3c\xd3\x79\xb8\x20\x89\xbc" "\x3c\x94\x67\xfc\x49\xbd\x34\x4f\x23\xae\x4f\x7e\xa3\xe8\x7e\x7a\xda\xcf" "\x15\x15\xfb\xe9\x6f\xb3\x9f\xfc\x3d\xfb\x99\xf6\x33\xb7\xcd\x7e\xae\xae" "\xd8\x4f\x5f\x9b\xfd\xbc\xa3\x62\x3f\x71\x9b\xfd\xac\xca\xbd\xae\x36\xc3" "\x7e\x6a\x25\xfd\xa4\xf3\xf6\xee\x50\x3d\x69\xab\xcd\xf9\x7f\x4f\x97\xf2" "\x1c\xee\x52\x9e\x23\x5d\xca\xf3\xdb\x5d\xca\xf3\x0f\xbb\x94\xe7\x1f\x75" "\x29\xcf\xbd\x15\xf3\x00\x84\xfc\xee\xf3\xd7\xfc\x41\x73\x3b\xbd\xfe\x4f" "\xaf\x3f\xe3\x68\x20\xea\x6d\x5c\x1f\xcd\x4b\xf6\x38\xf9\xbb\x00\xe9\xf5" "\xee\x95\xe3\x5f\xa7\x1f\xef\x42\x3b\xa4\x34\xdf\xf2\xdc\xf2\x9e\xb2\x7c" "\xf9\x0b\xec\x5c\xbe\x2b\x67\x3a\xbe\xfc\x0d\x84\x5c\xbe\xb7\xb5\xcc\xd7" "\x98\x76\xbd\x5a\x90\xaf\xd1\x9c\x6f\x65\x97\xf2\x01\x00\x00\xc0\x4c\xfc" "\xe3\x73\x47\x32\xff\x35\x37\xfd\xfa\x7f\x30\xea\x6d\x2c\x99\xbc\x7e\x7d" "\x7b\xee\xf5\xa5\xd7\xeb\xf9\xff\xc8\x4e\xa4\xf9\xae\xe9\x52\x3e\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xaf\xd9\xb5\xf7\xd8\xb8\xca\xec\x00\xe0\xdf\xf5\x8c\x67\x06\xf3\x88" "\x41\x49\x98\x90\x97\x95\xa4\x04\x84\xc8\x83\x28\x55\xa1\x2d\x8c\x22\x15" "\x89\xaa\xe0\x50\x9a\xf0\x88\x90\x9b\x82\x83\x23\x4c\x02\x71\x02\x24\x6d" "\x15\x0a\x55\x13\x59\xa2\xa2\x0d\x7d\xf0\xfa\xa3\x81\xa2\x0a\xa1\x02\x12" "\x52\xc4\xae\x57\x62\x05\xbb\x68\xff\xd8\x68\x23\x96\x15\x8f\xf5\x1a\xbc" "\x08\xfe\x41\x0b\x4b\x5e\x40\xd8\x9d\xd5\xd8\xf3\xc5\xd7\x33\x1e\x6c\x66" "\x97\x64\xb3\xfa\xfd\x84\xee\x9d\x73\xef\x39\xdf\xf9\xee\x45\x42\x3a\xd7" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xfe\xfb\xc9\x7f\xfc\xf2\xd5\x74\x3c\x3c\xd0\xdf\xd9" "\x33\xd4\x35\x18\x92\x50\xf9\x67\x42\xe5\x09\xc4\x7b\x99\x5c\xa9\xd4\xd1" "\xc4\x3e\x3e\x79\x6d\xfd\x4d\xbf\x78\x6b\xc7\xbe\x18\x57\x7a\xe7\xb3\x4d" "\x2c\x04\x00\x00\x00\xd4\x79\xfe\xf2\x59\x17\xa4\xe3\x38\x87\xc7\xd1\x3b" "\x09\x85\x90\xcf\x2e\x0f\xf9\x24\x37\xae\xae\x58\xfd\x0e\x50\xac\xc6\x2d" "\xed\xa3\xe7\x79\x4b\xc2\xca\xcc\xbe\x3f\xba\x2a\x29\xb5\x8c\xc4\xe7\x24" "\x67\x8f\xab\x2b\x54\xeb\x0a\xd5\x38\x53\xad\xeb\xdb\xbe\xe3\xf6\xf5\xbd" "\xbd\xdd\x5b\xbe\xc1\x1f\x95\x3e\xb5\xcf\x51\xbb\x9f\x24\x84\x91\xcf\x17" "\xf3\xce\x0a\x6b\x96\xec\x7a\x65\x7f\xd2\x31\xfa\x1c\x6d\x93\x3c\x47\x4b" "\xb5\x6e\xe9\xd6\x3b\xee\x5c\xda\xb7\x7d\xc7\xc5\x1b\xef\x58\x7f\x5b\xf7" "\x6d\xdd\x9b\x56\xac\x58\x79\xe9\xf2\x15\xcb\x2f\xb9\x74\xc5\xd2\x0d\x1b" "\x7b\xbb\x97\x8d\x1e\x43\x3e\x39\xeb\x2b\xd7\x0b\x21\x94\xc6\xbf\x97\x49" "\xfe\x45\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x09" "\xb0\xf3\x07\xfb\xfe\x39\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\xb6\x25\x21" "\x24\x0d\x6a\xca\x13\x88\xf7\x32\xb9\x52\xa9\xa3\x89\x7d\xbc\xf3\xd8\x93" "\x73\x32\xb3\x1e\x3e\x10\xe3\x4a\xef\x7c\xb6\x89\x85\x00\x00\x00\x80\x3a" "\xdf\x7d\x7e\xd6\x15\xe9\x38\xce\xe1\x71\xf4\x4e\x42\x21\xe4\xb3\xb9\x90" "\x09\xb3\x46\xe2\x05\x63\xa9\xd9\x10\xca\xe5\x78\x7d\x51\xcd\xf5\x13\xb1" "\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xc4\x3a" "\x78\xa4\xf3\x67\xe9\x78\x78\xa0\xbf\xb3\x67\xa8\x6b\xf0\xf4\x24\x84\xa4" "\x41\x4d\x79\x02\xf1\x5e\x26\x57\x2a\x75\x34\xb1\x8f\xb5\x2b\xfe\xfb\x8a" "\xbf\x9c\xfd\xc0\xa3\x31\xae\xf4\x2e\x36\xb1\x0e\x00\x00\x00\x50\xef\x8d" "\x0b\x5a\x1f\x48\xc7\x71\x0e\x6f\xa9\xc6\x49\x28\x84\x62\x58\x18\x5a\x93" "\x59\xe3\xea\xe2\xb7\x81\xf3\x6a\xd6\xab\xcd\x8b\xeb\xcc\x9d\x62\x5e\xed" "\xb7\x83\x46\x79\x0b\xa7\x98\x77\xfe\x14\xf3\x2e\x9c\x24\xef\x9a\xea\xf9" "\xde\x00\x00\x00\x00\xa7\x9e\x1b\xdb\x7f\xb8\x36\x1d\xc7\xf9\xbf\xb5\x1a" "\x27\xa1\x3d\xe4\xb3\xc5\x90\xa9\xc6\x93\xcd\xf1\xf1\xbb\xc0\xfc\x9a\xbc" "\x58\x3f\xd9\x7c\x1f\xeb\x17\x34\xa8\x9f\x6c\xee\x8f\xf5\xd5\xb9\xff\xb4" "\x00\x00\x00\x00\x84\x8b\x3f\x7c\xe1\xcb\x74\x5c\x3f\xff\x17\x43\x3e\x5b" "\x38\x3e\x7f\x4f\xf6\xf7\xf4\xab\xab\x67\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\x1a\xf9\xde\x91\xab\xbe\x9d\x8e\x87\x07\xfa\x3b\x7b\x86\xba\x06" "\x33\x49\x08\x49\x83\x9a\xf2\x04\xe2\xbd\x4c\xae\x54\xea\x68\x62\x1f\x6b" "\x7e\xfd\xc1\xee\xfb\xaf\xbb\x67\x7a\x8c\x2b\xbd\xf3\xd9\x26\x16\x02\x00" "\x00\x00\xea\x3c\x9b\xfb\x93\x7b\xd2\x71\x9c\xc3\xe3\xe8\x9d\x84\x42\xc8" "\x67\xdb\x42\x6b\x38\x7d\x64\xee\x7f\x2f\x37\x6d\xfa\xc6\x7f\x9a\x3d\x37" "\x84\x50\x1a\x49\xc8\xe5\xc2\xbd\xeb\xb7\x6e\xdd\x72\xc9\xe8\x31\xe6\xfd" "\x75\xb2\xf7\xcf\x17\xdf\x31\x70\x51\x5d\xde\xf2\xd1\xe3\x89\x7f\x52\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\xb7\xb5\xe2\x99" "\x3d\xeb\xd2\xf1\xf0\x40\x7f\x67\xcf\x50\xd7\xe0\x69\x49\x08\x49\x83\x9a" "\xf2\x04\xe2\xbd\x4c\xae\x54\xea\x68\x62\x1f\x6f\xec\xb9\xf0\xd8\xcd\x0f" "\xbd\x34\x10\xe3\x4a\xef\x62\x13\xeb\x00\x00\x00\x00\xf5\xe6\xf4\xbe\xfc" "\xf3\x74\x1c\xe7\xf0\x38\xfb\x27\xa1\x10\x8a\x21\x17\x72\x61\xe6\x48\x9c" "\x9e\xf5\x2b\x5a\x6a\xd6\x6b\xf4\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\xc3\xd1\xb7\x7d\xc7\xed\xeb\x7b\x7b\xbb" "\xb7\xf8\xe1\x87\x1f\x7e\x1c\xff\x71\xb2\xff\xcb\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\x9c\x2c\xdf\xda\xf4\xef" "\x1f\xa7\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\x42\x12\x42\xd2\xa0\xa6\x3c" "\x81\x78\x2f\x93\x2b\x95\x3a\x9a\xd8\xc7\x1f\xdf\x3c\xef\xd2\xb9\x87\xb6" "\xdd\x1d\xe3\x4a\xef\x62\x13\xeb\x00\x00\x00\x00\xf5\xd6\x7d\xb4\xed\x50" "\x3a\x8e\x73\x78\x9c\xfd\x93\x50\x08\xc5\xd0\x1a\x5a\xc3\x8c\x6a\x5c\x6f" "\x64\xfe\x6f\x3f\x11\xbb\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\x4e\xa6\xf9\x21\x09\xe5\xaf\xe9\xdc\xd5\x27\x7b\xd7\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x37" "\xe1\xf0\x9b\x6b\x1e\x4b\xc7\xc3\x03\xfd\x9d\x3d\x43\x5d\x83\x67\x26\x21" "\x24\x0d\x6a\xca\x13\x88\xf7\x32\xb9\x52\xa9\xa3\x89\x7d\xdc\x74\xe0\x5f" "\xfe\xf6\xce\xbd\xaf\x5e\x18\xe3\x4a\xef\x7c\xb6\x89\x85\x00\x00\x00\x80" "\x3a\xad\x1f\xbe\xf9\x77\xe9\x38\xce\xe1\x71\xf4\x4e\x42\x21\xe4\xb3\x73" "\x42\x3e\xcc\xa9\x5e\xe9\x1d\xbf\x40\x92\x89\x89\x13\x7e\x17\x18\xab\xfb" "\x87\x71\x65\x99\x29\xd7\xed\xae\xd9\xf1\xe8\xce\x0a\xd5\xef\x10\x85\xe3" "\xfb\x0c\x23\x9f\x1d\xc6\xea\x1e\xfa\xca\xba\x62\xf5\x6a\x4b\xfb\xd4\xde" "\x13\x00\x00\x00\x9c\xca\x66\xec\xbe\xe6\x1f\xd3\x71\x9c\xff\x5b\xab\x71" "\x12\xda\x43\x3e\x3b\x23\x35\x57\xdf\x39\xae\xbe\x6d\xca\x73\xfc\xc3\xe3" "\xea\xce\x9c\x72\xdd\xff\x8d\xab\x6b\x9f\xa4\xee\x77\xf0\x4a\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x26\x3d\xb8\xfa\xb5\x73\xd3\xf1\xf0\x40" "\x7f\x67\xcf\x50\xd7\x60\x92\x84\x90\x34\xa8\x29\x4f\x20\xde\xcb\xe4\x4a" "\xa5\x8e\x26\xf6\x51\xea\x7e\xec\xe5\xa7\x6f\x18\x98\x15\xe3\x4a\xef\x62" "\x13\xeb\x00\x00\x00\x00\xf5\xae\xfb\xa0\xf0\x6f\xe9\x38\xce\xe1\x71\xf6" "\x4f\x42\x21\x14\xc3\xdc\x70\x56\x98\x3b\x32\xf7\x87\xf6\xf1\xf5\x31\xef" "\xf4\xd2\x8f\xde\x5e\xb5\xef\xad\x1b\x43\x58\x36\xf3\xf5\x79\xd9\x86\xfd" "\xfe\x6b\xff\xf5\x1f\x87\xa3\x7f\xf6\xde\x67\xa3\x87\x91\x30\x84\x96\xf1" "\x49\x2d\x21\x4c\xab\xf6\x4b\x1a\xf4\xbb\xe5\xc7\xcf\xac\x79\xe5\xcb\x5d" "\x4f\x84\xb0\x6c\x46\x66\x4e\xe3\x7e\x63\xad\xc6\x0e\x35\x92\x52\xf9\x9c" "\x9d\x8b\x9e\xbe\x61\xe6\x81\x55\x0d\x97\x01\x00\x00\x80\x53\x5a\xe1\xc9" "\xc3\xff\x9b\x8e\xe3\xfc\x1f\x27\xea\x24\xb4\x87\x7c\x76\x53\xc3\xf9\x3f" "\xe6\x7d\xad\xf9\xbf\xb3\x6f\xf6\xce\xe9\xd5\x63\xf5\x0b\x40\x4d\x45\x4b" "\x7b\xb5\x5f\x4b\x83\x7e\xfd\x9f\x3e\xd1\x71\x64\xdd\xdf\x1c\xa9\xcc\xff" "\xaf\xcf\x2b\x1c\xff\x7f\x05\x2e\x58\x38\x3e\x3f\xdd\x2a\x7d\xac\xf9\xe6" "\x90\x94\xca\xf3\x5f\x38\x7f\xed\xb1\xc3\x77\x5d\x3b\x7a\x21\xf6\xcf\x34" "\xe8\xbf\xae\x75\xc1\xd9\x7b\x3e\x9a\xbd\x20\xf6\x2f\x54\xaf\xdf\x1a\xa6" "\xda\x3f\xd4\xf4\xef\xeb\x3a\xba\x70\x49\xdb\x19\x57\x8e\xef\x1f\x42\xe8" "\x98\xa8\xff\xff\x5c\xf5\xfc\xe7\x6b\x1e\xfd\xf4\xc6\xd1\xfe\x8d\xdf\xf7" "\xd2\x9f\x0e\xff\xc5\xf4\xb0\xf9\x3f\x0b\xbd\xf1\x38\x7a\xa5\xbe\xff\xea" "\xc7\x57\xee\xd9\x91\x7b\x7f\xda\xf8\xfe\x49\x83\xfe\x8b\x5f\x7d\xf1\xd0" "\x73\xf7\xae\x79\xb0\xf6\xf9\xcf\xcb\x4e\xd4\xbf\xfe\x58\xa3\xd2\x35\x5b" "\xee\x3f\x78\xff\xe2\xfb\x56\x75\x5f\x96\xea\xdf\xd2\xa0\xff\xdd\x1d\xef" "\x7c\xf2\xaf\xff\xff\x9d\xa7\x2a\xfd\x0f\xce\x6f\x3b\xde\x7f\xf1\x57\x3c" "\xff\xa4\xfd\xf7\x2f\xdc\x7d\x70\xef\xae\x47\xd6\x8d\x7f\xff\xa5\xfa\xfe" "\xf7\x85\x5b\x2e\xde\xf2\xe2\xf6\x8d\x37\x3d\x54\xfb\xfc\x6d\x35\x0b\xa7" "\xdf\x7c\xfa\x58\xff\xfe\xdf\x9d\x93\x5c\xbd\xad\xef\xed\x2d\xb5\xb7\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4e\x6d\x5d\xcf\x7d\x71\x34" "\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\xb6\x24\x21\x24\x0d\x6a\xca\x13\x88" "\xf7\x32\xb9\x52\xa9\xa3\x89\x7d\x7c\x3f\xb3\xff\x8b\xa7\x0e\x15\xcf\x88" "\x71\xa5\x77\xb1\x89\x75\x00\x00\x00\x80\x7a\xd7\xae\x7a\xf7\xb6\x74\x1c" "\xe7\xf0\x38\xfb\x27\xa1\x10\x8a\x21\x17\x72\xa1\x6d\x64\xee\x3f\x67\xe7" "\xa2\xa7\x6f\x98\x79\x60\x55\x68\xaf\xde\xaf\x9e\xb3\xbd\x9b\xfb\xb6\x5e" "\xb4\x61\xf3\xb6\x4d\xb7\x9e\xe8\x47\x00\x00\x00\x00\x26\xb1\xf7\xf2\xcf" "\x57\xa5\xe3\x38\xff\x67\xab\x71\x12\xda\x43\x3e\xbb\x28\xb4\x56\xe7\xff" "\xd5\x8f\xaf\xdc\xb3\x23\xf7\xfe\xb4\x38\xff\x87\x10\x46\xfe\xdc\x9f\xdd" "\xb0\xb1\xb7\x7b\x59\x38\xfe\x9d\xa0\xaf\xeb\xe8\xc2\x25\x6d\x67\x5c\x19" "\xf3\x32\xd5\x73\xa1\x92\xb7\xe4\x96\xcd\xbd\xd5\xcf\x04\x71\xdd\x97\x9e" "\xfd\xd3\xe5\x97\x5d\x7f\xdd\xf1\xfc\x96\x74\xfe\x25\x63\x79\xf3\x5f\x38" "\x7f\xed\xb1\xc3\x77\x5d\x3b\x61\xde\x8a\xb1\xbc\x77\xe7\x24\x57\x6f\xeb" "\x7b\x7b\x4b\x6a\x9f\xa5\xca\xe1\xb4\xb0\xb1\xb7\x7b\xf9\x58\x5e\xff\xc1" "\xfb\x17\xdf\xb7\xaa\xfb\xb2\xf8\x1c\x49\xf5\x5c\xa8\x3e\x4f\xcc\xdb\xbf" "\x70\xf7\xc1\xbd\xbb\x1e\x59\x17\xf3\x5a\xaa\xe7\xb6\x0d\xa3\xeb\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\x21\x9c\xfd\xd9\xaf\xfe\x3e\x1d\x0f" "\x0f\xf4\x77\xf6\x0c\x75\x0d\x86\x4c\x08\x49\x83\x9a\xf2\x04\xe2\xbd\x4c" "\xae\x54\xea\x68\x62\x1f\x5f\x5c\xf1\xfa\xf0\xb1\xf6\xbf\x7a\x32\xc6\x95" "\xde\xf9\x6c\x13\x0b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x86\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" "\xd6\x5f\x88\x54\x55\x1c\x07\xf0\x73\x66\xc6\x76\x74\xcc\x66\x4d\x70\xb7" "\x6c\x51\xf2\x45\x21\x10\x96\x24\x1f\xc2\x7d\xe9\x0f\xb1\x95\x18\x45\x09" "\xd2\x16\x6d\x2f\x15\x09\x51\x46\x3e\xa4\x2e\x2d\x52\x3d\x08\x05\x86\xbe" "\x88\x46\xcf\xc5\x3e\x48\xe5\xc3\x26\x69\x51\x10\x59\xf4\x10\x3d\x15\xd4" "\x53\xc5\x3e\xec\x4a\xac\x51\xb1\xb3\xf7\xcc\xce\x5c\xbd\xec\x76\x41\x11" "\xf9\x7c\x60\x38\xf3\x3b\x77\xee\xf7\xfe\xee\x99\x33\x77\x17\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x6b\xda\x13\x3f\xdf\x57\xeb\xac\x7b\x6a\x7d\xad\xf1" "\xdc\x1b\x2f\x5d\x78\xe8\x96\x7b\xbe\x3a\x38\x3a\xf3\xfa\xfd\x9f\xbc\x70" "\x60\xed\xa7\x6b\x2e\x34\xc7\x86\x1f\x7c\x73\xdb\xbd\xdf\x8d\x7c\xd9\x3b" "\x34\xb0\x71\x74\xeb\x47\x13\x0f\x8f\x8f\x9d\xb9\xfb\xef\x33\x47\x8e\x0e" "\x2f\x7a\xa1\x57\xe7\x87\xcd\x59\x59\x0f\x21\xfe\x11\x43\x18\xf8\x75\xe2" "\xc8\xf8\xd9\xaf\xd7\xce\xcd\xc5\xb9\xeb\xc7\xe6\xfe\xd0\xdb\x1b\x57\x7f" "\xd6\x1b\x73\x09\x5b\x66\x43\x08\xcf\xb4\xfb\xec\x3e\x38\x31\x33\xf8\xec" "\xdc\x78\xe0\xad\x9e\xae\xf9\x9b\x72\x21\xf9\xfb\x0a\x8d\x6a\xea\x67\x5e" "\xb3\xbb\x5f\xae\x2f\xf5\x6c\x9f\xed\x7b\xf2\xe9\x13\x93\xcf\x0d\x9d\x9d" "\x58\xbf\x67\xf0\xf7\xe9\x3b\x5f\xdc\xbf\xf0\x91\x58\xef\xd8\x4f\x21\xac" "\x1a\xe9\x3c\x7f\x59\x08\x61\x79\xf6\x9a\x93\x76\x5b\x5f\x3a\x39\x1b\x77" "\x84\x10\x56\x74\x9c\x77\xd7\x22\x7d\xdd\xbe\xc4\xfe\xef\x28\xa8\xd7\x65" "\xe3\x0d\xd9\xd8\x58\x24\x27\x1d\xdf\x90\xab\x6b\x4b\xec\xa3\x96\x1b\x7b" "\x96\x78\x5e\x59\x95\x2b\x9c\x9f\x97\x5f\xbf\xfc\xc3\xe8\x4a\x49\xf7\xb9" "\x2a\x1b\x4f\x65\xe3\xe6\xff\x99\x53\x4d\xaf\x18\x2a\x31\xd4\xda\xed\x3f" "\x1f\x17\xf6\x48\xe8\xf8\xde\x62\x88\xad\xbd\x5d\x6f\xd7\x95\x56\x1d\xda" "\x75\xc8\xd7\x31\x57\x57\x72\x75\x75\x59\xee\xbe\x5a\xd7\xcd\x16\xb6\x1a" "\x63\xf7\x7c\xfa\x5c\x6e\x3e\x3d\x8e\x6b\xd9\xfc\x86\xce\x67\xf5\x65\xec" "\x2c\x98\xef\xcf\xc6\x7a\xf6\x43\xfd\x2b\xd5\x21\xff\x66\x5e\xe3\x92\x37" "\x0b\xf7\x11\x3a\xfa\x9a\xba\x5a\x1b\xa3\x40\xa5\xe0\xb7\x97\xe6\xdb\xed" "\x65\x5f\x46\x23\x9b\x6b\xc4\xd5\x97\x9c\xf3\xef\x65\xa4\x63\x53\x5f\x3c" "\xb5\xeb\xcf\x1f\x5f\x3b\xd5\x2c\xe8\x23\x7e\x18\xb3\xfc\x58\x2a\x7f\x68" "\xf4\xd8\xe4\x07\x8f\x9f\xee\xef\x2b\xca\x1f\xa9\x64\xf9\x95\x52\xf9\xe7" "\xaa\xdf\xcc\xbe\x3f\xdd\xb7\xb2\x30\xff\x70\xca\xaf\x96\xca\x7f\xf4\x9f" "\xdf\x0e\x1d\x7c\x64\xef\x9a\xc2\xf5\x99\x4a\xeb\x53\x2b\x95\xbf\xf1\xed" "\x95\xfb\x66\xf6\xee\xec\x59\x5f\x94\x7f\x3c\xe5\xd7\x4b\xe5\x6f\xdd\x3d" "\xb0\xed\xb6\xe9\x97\x5f\x29\xec\x7f\x4b\x5a\x9f\xe5\xa5\xf2\x7f\x78\x67" "\xd3\xc5\xdd\x87\x3f\x3e\x5d\x98\x1f\x52\xfe\x8a\x52\xf9\x3f\x1d\x3b\xb9" "\xae\xda\xff\xee\xf9\xc2\xfc\xc9\xb4\x3e\x8d\x52\xf9\x8f\x0d\xbe\xb7\xfd" "\x81\x5b\xc7\x8e\x16\xae\xff\xb7\x29\xff\xc6\x52\xf9\xbb\xce\x8f\x8f\xec" "\x39\xf1\xf9\xa6\xc2\xfd\xb9\x23\xad\x4f\xb3\x54\xfe\xec\xf6\xef\x7f\xb9" "\xd8\x1c\x3e\x59\xf4\xec\x8c\xc7\xaf\xf6\x5f\x58\x80\xeb\xcb\xcd\xd9\xff" "\x58\x87\xfe\x63\xbf\x8e\x4d\x00\x08\x61\x00\x8a\x72\x70\xa5\xee\xe0\xd8" "\x8e\x6b\x61\x84\x60\xa9\x96\xef\x41\x8a\x54\x69\xf3\x63\x3f\xed\xcc\x5b" "\xa9\x17\x7a\xfb\xe7\xcf\x57\x62\xea\xcb\x43\x9b\x2f\xb5\x0b\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x2c\x23\x00\x00\xff\xff\x82\x20\x68\xb6", 23968); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=MS_RELATIME|MS_NOATIME*/ 0x200400, /*opts=*/0x20000340, /*chdir=*/1, /*size=*/0x5da0, /*img=*/0x2000bb80); } 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; }