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