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