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