// https://syzkaller.appspot.com/bug?id=2e5ebed3dc4a74ecc7fd3965c4f56a3b99be3dc2 // 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x8002 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 6f // 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 64 2c 65 // 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 ad d4 ce ec 7c // b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 d7 47 8e 07 06 b0 04 08 dc // 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 84 4e f8 e6 97 2c db // 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f 94 1f 15 4a e2 05 d3 4a // 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 fc e1 2a e6 4a 5a 52 1a a8 // 30 80 b7 67 2c 4e 15 66 a6 1a 0a de 4b 6c 9d 78 15 10 53 d9 fb 31 // fd 2c fc 77 f2 69 f8 73 e1 4e 5f e3 c4 6c 0a cb b2 2d 40 39 1a e3 // 1d 20 25 dc d9 47 ad f7 67 39 ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d // 78 16 e0 b9 39 81 de 11 47 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 // 65 b9} (length 0x11a) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6249 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6249) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000000c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61\x74" "\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x79" "\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce\xec\x7c\xb8\x70\x2b\x1b" "\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc" "\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28\x9d\xcb\x18\x25\x04\x84\x4e\xf8" "\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f" "\x94\x1f\x15\x4a\xe2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\xe6\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e" "\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c" "\xfc\x77\xf2\x69\xf8\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39" "\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30" "\x04\x0b\x37\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2" "\xf4\x6d\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282); memcpy( (void*)0x20000000c6c0, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x3f\xff\x29\x6d\xa3" "\x1e\xaa\x12\x21\xe4\xb6\x01\x5a\x4a\xf3\xb7\x84\x40\x81\xb6\x07\x38\xf4" "\xc2\x01\xe5\x8a\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\xab\x88\xb8\xca\x85" "\x03\x2f\x02\x84\xc4\x11\x10\x47\x4e\xbc\x80\x1e\xb8\x72\xe3\x05\x10\x29" "\x41\x02\x7a\xea\xa0\xb1\x9f\xc7\x19\x2f\xde\xac\xe3\x74\x77\xd6\x7e\x3e" "\x1f\xc9\x9d\xf9\xcd\x33\xe3\x7d\xa6\xdf\x1d\xef\x6e\x66\x66\x9f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\xed\xef\xff\xf0\x4c" "\x15\x11\x97\x7e\x91\x16\x1c\x8b\xf8\x5c\xf4\x23\x7a\x11\x2b\x4d\xbd\x16" "\x11\x2b\x6b\xc7\xf2\xfa\x83\x88\x78\x2e\xb6\x9a\xe3\xd9\x88\x18\x2e\x45" "\x54\xb9\xf1\xe9\x88\xd7\x22\xe2\xe3\xa7\x22\xee\xdd\xbf\xb5\xde\x2c\x3a" "\xbb\xcf\x7e\x7c\xef\x4f\x7f\xff\xdd\x8f\x9e\xf8\xc1\xdf\xfe\x30\x3c\xf5" "\x9f\x3f\xdf\xe8\xbf\x3e\x69\xbd\x9b\x37\x7f\xfd\xef\xbf\xdc\x3e\xf8\xfe" "\x02\x00\x00\x40\x89\xea\xba\xae\xab\xf4\x31\xff\x78\xfa\x7c\xdf\xeb\xba" "\x53\x00\xc0\x5c\xe4\xd7\xff\x3a\xc9\xcb\xd5\x0b\x57\x6f\x2e\x58\x7f\xd4" "\x6a\xb5\x5a\x7d\x08\xeb\xb6\x7a\x6f\xb7\xdb\x45\x44\x6c\xb6\xb7\x69\xde" "\x33\x38\x1d\x0f\x00\x87\xcc\x66\x7c\xd2\x75\x17\xe8\x90\xfc\x8b\x36\x88" "\x88\x27\xba\xee\x04\xb0\xd0\xaa\xae\x3b\xc0\x4c\xdc\xbb\x7f\x6b\xbd\x4a" "\xf9\x56\xed\xd7\x83\xb5\xed\xf6\x7c\x2d\xc8\xae\xfc\x37\xab\x9d\xfb\x3b" "\x26\x4d\xa7\x19\xbf\xc6\x64\x5e\xcf\xaf\x3b\xd1\x8f\x67\x26\xf4\x67\x65" "\x4e\x7d\x58\x24\x39\xff\xde\x78\xfe\x97\xb6\xdb\x47\x69\xbd\x59\xe7\x3f" "\x2f\x93\xf2\x1f\x6d\xdf\xfa\x54\x9c\x9c\x7f\x7f\x3c\xff\x31\x47\x27\xff" "\xde\x9e\xf9\x97\x2a\xe7\x3f\x78\xa4\xfc\xfb\xf2\x07\x00\x00\x00\x00\x80" "\x05\x96\xff\xfd\xff\x58\xc7\xe7\x7f\x97\x1e\x7f\x57\xf6\xe5\x61\xe7\x7f" "\xd7\xe6\xd4\x07\x00\x00\x00\x00\x00\x00\x00\xf8\xac\x3d\xee\xf8\x7f\x3b" "\x2a\xe3\xff\x01\x00\x00\xc0\xa2\x6a\x3e\xab\x37\x7e\xf3\xd4\x83\x65\x93" "\xbe\x8b\xad\x59\x7e\xb1\x8a\x78\x72\x6c\x7d\xa0\x30\xe9\x66\x99\xd5\xae" "\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x19\x6c\x5f\xc3\x7b" "\xb1\x8a\x18\x46\xc4\x93\xab\xab\x75\x5d\x37\x3f\x6d\xe3\xf5\xa3\x7a\xdc" "\xed\x0f\xbb\xd2\xf7\x1f\x4a\xd6\xf5\x1f\x79\x00\x00\xd8\xf6\xf1\x53\x63" "\xf7\xf2\x57\x11\xcb\x11\x71\x31\x7d\xd7\xdf\x70\x75\x75\xb5\xae\x97\x57" "\x56\xeb\xd5\x7a\x65\x29\xbf\x9f\x1d\x2d\x2d\xd7\x2b\xad\xcf\xb5\x79\xda" "\x2c\x5b\x1a\xed\xe3\x0d\xf1\x60\x54\x37\xbf\x6c\xb9\xb5\x5d\xdb\xb4\xcf" "\xcb\xd3\xda\xc7\x7f\x5f\xf3\x58\xa3\xba\xbf\x8f\x8e\xcd\x47\x87\x81\x03" "\x40\x44\x6c\xbf\x1a\xdd\xf3\x8a\x74\xc4\xd4\xf5\xd3\xd1\xf5\xbb\x1c\x0e" "\x07\xc7\xff\xd1\xe3\xf8\x67\x3f\xba\x7e\x9e\x02\x00\x00\x00\xb3\x57\xd7" "\x75\x5d\xa5\xaf\xf3\x3e\x9e\xce\xf9\xf7\xba\xee\x14\x00\x30\x17\xf9\xf5" "\x7f\xfc\xbc\x80\x5a\xad\x56\xab\xd5\xea\xa3\x57\xb7\xd5\x7b\xbb\xdd\x2e" "\x22\x62\xb3\xbd\x4d\xf3\x9e\xc1\x70\xfc\x00\x70\xc8\x6c\xc6\x27\x5d\x77" "\x81\x0e\xc9\xbf\x68\x83\x88\x78\xae\xeb\x4e\x00\x0b\xad\xea\xba\x03\xcc" "\xc4\xbd\xfb\xb7\xd6\xab\x94\x6f\xd5\x7e\x3d\x48\xe3\xbb\xe7\x6b\x41\x76" "\xe5\xbf\x59\x6d\x6d\x97\xb7\xdf\x6b\x3a\xcd\xf8\x35\x26\xf3\x7a\x7e\xdd" "\x89\x7e\x3c\x33\xa1\x3f\xcf\xce\xa9\x0f\x8b\x24\xe7\xdf\x1b\xcf\xff\xd2" "\x76\xfb\x28\xad\x37\xeb\xfc\xe7\x65\x52\xfe\xcd\x7e\x1e\xeb\xa0\x3f\x5d" "\xcb\xf9\xf7\xc7\xf3\x1f\x73\x74\xf2\xef\xed\x99\x7f\xa9\x72\xfe\x83\x47" "\xca\xbf\x2f\x7f\x00\x00\x00\x00\x00\x58\x60\xf9\xdf\xff\x8f\x2d\xd4\xf9" "\xdf\xd1\x41\x77\x67\xaa\x87\x9d\xff\x5d\x9b\xd9\xa3\x02\x00\x00\x00\x00" "\x00\x00\xc0\x6c\xdd\xbb\x7f\x6b\x3d\xdf\xf7\x9a\xcf\xff\x7f\x61\x8f\xf5" "\xdc\xff\x79\x34\xe5\xfc\x2b\xf9\x17\x29\xe7\x9f\xee\xff\xdf\xb9\xf0\xe6" "\xa5\xb1\xf5\xfa\xad\xf9\xbb\x6f\x3d\xc8\xff\x5f\xf7\x6f\xad\xff\xfe\xc6" "\x3f\x3f\x9f\xa7\xfb\xcd\x7f\x29\xcf\x54\xe9\x99\x55\xa5\x67\x44\x95\x1e" "\xa9\x1a\xa4\xe9\x01\x77\x6c\x82\x3b\xc3\xfe\xa8\x79\xa4\x61\xd5\xeb\x0f" "\xd2\x35\x3f\xf5\xf0\xdd\xb8\x12\x57\x63\x23\x4e\xef\x5a\xb7\x97\x8e\x87" "\x07\xed\x67\x76\xb5\x37\x3d\x1d\x6e\xb5\xd7\xfd\xed\xf6\xb3\xbb\xda\x07" "\x3b\xed\x79\xfb\x73\xbb\xda\x87\xe9\x4a\xa7\x7a\x25\xb7\x9f\x8c\xf5\xf8" "\x69\x5c\x8d\x77\xb6\xda\x9b\xb6\xa5\x29\xfb\xbf\x3c\xa5\xbd\x9e\xd2\x9e" "\xf3\xef\x3b\xfe\x8b\x94\xf3\x1f\xb4\x7e\x9a\xfc\x57\x53\x7b\x35\x36\x6d" "\xdc\xfd\xa8\xf7\x7f\xc7\x7d\x7b\xba\xd7\xe3\xbc\x79\xe5\x8b\xbf\x3a\x3d" "\xfb\xdd\x99\xea\x4e\xf4\x77\xf6\xad\xad\xd9\xbf\x17\x3a\xe8\xcf\xd6\xff" "\x93\x27\x46\xf1\xf3\xeb\x1b\xd7\x4e\xde\xbc\x7c\xe3\xc6\xb5\x33\x91\x26" "\xbb\x96\x9e\x8d\x34\xf9\x8c\xe5\xfc\x87\xe9\x27\xe7\xff\xd2\x8b\xdb\xed" "\xf9\xef\x7e\xfb\x78\xbd\xfb\xd1\xe8\x91\xf3\x5f\x14\x77\x62\x30\x31\xff" "\x17\x5b\xf3\xcd\xfe\xbe\x3c\xe7\xbe\x75\x21\xe7\x3f\x4a\x3f\x39\xff\x77" "\x52\xfb\xde\xc7\xff\x61\xce\x7f\xf2\xf1\xff\x4a\x07\xfd\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\x87\xa9\xeb\x7a\xeb\x16\xd1\x37\x23" "\xe2\x7c\xba\xff\xa7\xab\x7b\x33\x01\x80\xf9\xca\xaf\xff\x75\x92\x97\xcf" "\xab\xee\x1f\x74\xfb\x3f\xee\xde\x8f\xae\xfa\xaf\x56\xcf\xb9\xae\x16\xac" "\x3f\x73\xad\x3f\xad\x67\xfd\x78\x6f\x2f\xd4\xfe\xaa\x0f\x54\xff\x77\xc1" "\xfa\xb3\x70\x75\x5b\xbd\xb7\x37\xda\x45\x44\xfc\xb5\xbd\x4d\xf3\x9e\xe1" "\x97\x7b\xfd\x32\x00\x60\x91\x7d\x1a\x11\xff\xe8\xba\x13\x74\x46\xfe\x05" "\xcb\xdf\xf7\xd7\x4c\x4f\x74\xdd\x19\x60\xae\xae\x7f\xf0\xe1\x8f\x2f\x5f" "\xbd\xba\x71\xed\x7a\xd7\x3d\x01\x00\x00\x00\x00\x00\x00\x00\x0e\x2a\x8f" "\xff\xb9\xd6\x1a\xff\xf9\x44\x5d\xd7\xb7\xc7\xd6\xdb\x35\xfe\xeb\x5b\xb1" "\xf6\xb8\xe3\x7f\x0e\xf2\xcc\xce\x00\xa3\x13\x06\xaa\xee\x3f\xfa\x3e\x3d" "\x4c\x2f\xa2\xdf\x6b\x0d\x37\xfe\x7c\x4c\x1a\xff\x7b\xb8\x33\xf7\xb0\xf1" "\xbf\x07\x53\x1e\x6f\x38\xa5\x7d\x34\xa5\x7d\x69\x4a\xfb\xf2\x94\xf6\x3d" "\x6f\xf4\x68\xc9\xf9\x3f\xdf\x1a\xef\xfc\x44\x44\x1c\x1f\x1b\x7e\xbd\x84" "\xf1\x5f\xc7\xc7\xbc\x2f\x41\xce\xff\x85\xd6\xf3\xb9\xc9\xff\x2b\x63\xeb" "\xb5\xf3\xaf\x7f\x7b\x98\xf3\xef\xed\xca\xff\xd4\x8d\xf7\x7f\x76\xea\xfa" "\x07\x1f\xbe\x7a\xe5\xfd\xcb\xef\x6d\xbc\xb7\xf1\x93\x73\x67\xce\x9c\x3e" "\x77\xfe\xfc\x85\x0b\x17\x4e\xbd\x7b\xe5\xea\xc6\xe9\xed\xff\x76\xd8\xe3" "\xd9\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9" "\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\xcb\xa9\x96\x7f\x59\x72\xfe\xf9\xfd\x9e" "\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\xcb\xa9\x96\x7f\x59\x72" "\xfe\x5f\x4d\xb5\xfc\xcb\x92\xf3\x7f\x25\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9" "\x96\x7f\x59\x72\xfe\xaf\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4c\xb5\xfc\xcb\x92" "\xf3\x3f\x95\xea\x7d\xe6\xbf\x32\xeb\x7e\x31\x1f\x39\xff\x7c\x86\xcb\xf1" "\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65\xc9\xf9\x9f\x4d\xb5\xfc\xcb\x92\xf3" "\x3f\x97\x6a\xf9\x97\x25\xe7\xff\x5a\xaa\xe5\x5f\x96\x9c\xff\xd7\x53\x2d" "\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce" "\xff\x42\xaa\xe5\x5f\x96\x9c\xff\x37\x53\x2d\xff\xb2\xe4\xfc\xbf\x95\x6a" "\xf9\x97\x25\xe7\xff\x7a\xaa\xe5\x5f\x96\x9c\xff\xb7\x53\x2d\xff\xb2\xe4" "\xfc\xbf\x93\x6a\xf9\x97\x25\xe7\xff\xdd\x54\xcb\xbf\x2c\x39\xff\x37\x52" "\x2d\xff\xb2\x3c\xf8\xfe\x7f\x33\x66\xcc\x98\xc9\x33\x5d\xff\x65\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\xcd\xe3\x72\xe2\xae\xf7\x11\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x1f\x3b\x70\x20\x00\x00\x00\x00" "\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03" "\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xc2\xde\xbd\xc5\xc8\x75\xd7\x77\x00\x3f\xb3\x37\xaf\x1d\x48\x0c\x84" "\xd4\x49\x9d\xb0\x71\x4c\x12\x92\x4d\x76\x6d\x27\xbe\xd0\xa6\x98\x70\x6d" "\xb8\x95\x84\xa4\xd0\x0b\xb6\xeb\x5d\x9b\x05\xdf\xf0\xda\x25\xd0\xa8\x76" "\x14\x28\x91\x30\x2a\xaa\x68\x1b\x1e\xda\x02\x42\x6d\x5e\x2a\xa2\x8a\x07" "\x5a\x01\xca\x03\x6a\x55\xa9\x12\xb4\x0f\xf4\x05\x51\xa1\xf2\x10\x55\x01" "\x05\xa4\xaa\xb4\x02\xb6\x9a\x39\xff\xff\x7f\x67\xce\xce\xce\xec\x7a\xc7" "\x9b\xb3\xe7\x7c\x3e\x52\xf2\xcb\xce\x9c\x99\x73\xe6\xcc\x7f\x66\xf7\x6b" "\xe7\xbb\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xbb\x9b" "\xdf\x30\xfb\xc9\x46\x96\x65\x8d\x46\x23\xbf\x60\x6b\x96\xbd\xa4\x39\x37" "\x4f\x6c\x6d\x5d\xf2\xda\x17\xf7\xf8\x00\x00\x00\x80\xb5\xfb\x79\xeb\xdf" "\x2f\x5c\x93\x2e\x38\xb8\x82\x1b\xb5\x6d\xf3\x4f\x37\x7d\xeb\x2b\x0b\x0b" "\x0b\x0b\xd9\x7b\x87\xff\x74\xf4\xb3\x0b\x0b\xe9\x8a\x89\x2c\x1b\xdd\x94" "\x65\xad\xeb\xa2\x67\xbe\xff\xbe\x46\xfb\x36\xc1\x13\xd9\x78\x63\xa8\xed" "\xeb\xa1\x3e\xbb\x1f\xee\x73\xfd\x48\x9f\xeb\x47\xfb\x5c\x3f\xd6\xe7\xfa" "\x4d\x7d\xae\x1f\xef\x73\xfd\x92\x13\xb0\xc4\xe6\xac\x91\xee\x6c\x67\xeb" "\x3f\xb7\xe6\xa7\x34\xbb\x36\x1b\x6d\x5d\xb7\xb3\xcb\xad\x9e\x68\x6c\x1a" "\x6a\x9e\xbb\x74\xdb\xac\xd1\xba\xcd\xc2\xe8\xb1\x6c\x2e\x3b\x91\xcd\x66" "\xd3\x1d\xdb\xe7\xdb\x36\x5a\xdb\x7f\xed\xe6\xe6\xbe\xde\x9a\xc5\x7d\x0d" "\xb5\xed\x6b\x7b\x73\x85\xfc\xf8\xb1\xa3\xf1\x18\x1a\xe1\x1c\xef\xec\xd8" "\xd7\xe2\x7d\x46\x3f\x7c\x7d\x36\xf1\x93\x1f\x3f\x76\xf4\xaf\xcf\x3d\x7f" "\x7d\xb7\xd9\xf7\x34\x74\xdc\x5f\x7e\x9c\xb7\xef\x68\x1e\xe7\xc7\xc3\x25" "\xf9\xb1\x36\xb2\x4d\xe9\x9c\xc4\xe3\x1c\x6a\x3b\xce\xed\x5d\x9e\x93\xe1" "\x8e\xe3\x6c\xb4\x6e\xd7\xfc\xef\xe2\x71\xbe\xb0\xc2\xe3\x1c\x5e\x3c\xcc" "\x75\x55\x7c\xce\xc7\xb3\xa1\xd6\x7f\x7f\xbb\x75\x9e\x46\x1a\x59\x97\xf3" "\xb4\x3d\x5c\xf6\xd3\x5b\xb2\x2c\xbb\xb8\x78\xd8\xc5\x6d\x96\xec\x2b\x1b" "\xca\xb6\x74\x5c\x32\xb4\xf8\xfc\x8c\xe7\x2b\xb2\x79\x1f\xcd\xa5\xf4\xf2" "\x6c\x64\x55\xeb\xf4\xe6\x15\xac\xd3\xe6\x9c\xd9\xd9\xb9\x4e\x8b\xaf\x89" "\xf8\xfc\xdf\x1c\x6e\x37\xb2\xcc\x31\xb4\x3f\x4d\x3f\x7c\x7c\xac\xed\x79" "\xff\xd9\xc2\xe5\xac\xd3\xa8\xf9\xa8\x97\x7b\xad\x14\xd7\xe0\xa0\x5f\x2b" "\x65\x59\x83\x71\x5d\x7c\xbb\xf5\xa0\x9f\xec\xba\x06\x77\x86\xc7\xff\xd8" "\xad\xcb\xaf\xc1\xae\x6b\xa7\xcb\x1a\x4c\x8f\xbb\x6d\x0d\xee\xe8\xb7\x06" "\x87\xc6\x86\x5b\xc7\x9c\x9e\x84\x46\xeb\x36\x8b\x6b\x70\x57\xc7\xf6\xc3" "\xad\x3d\x35\x5a\xf3\xb9\x5b\x7b\xaf\xc1\xa9\x73\x27\xcf\x4c\xcd\x7f\xf4" "\x63\x77\xcd\x9d\x3c\x72\x7c\xf6\xf8\xec\xa9\x3d\xbb\x76\x4d\xef\xd9\xbb" "\x77\xff\xfe\xfd\x53\xc7\xe6\x4e\xcc\x4e\xe7\xff\xbe\xcc\xb3\x5d\x7e\x5b" "\xb2\xa1\xf4\x1a\xd8\x11\xce\x5d\x7c\x0d\xdc\x56\xd8\xb6\x7d\xa9\x2e\x7c" "\x61\x6c\xc9\xfb\xef\xe5\xbe\x0e\xc7\x7b\xbc\x0e\xb7\x16\xb6\x1d\xf4\xeb" "\x70\xa4\xf8\xe0\x1a\xeb\xf3\x82\x5c\xba\xa6\xf3\xd7\xc6\x7b\x9a\x27\x7d" "\xfc\xd2\x50\xb6\xcc\x6b\xac\xf5\xfc\xdc\xb1\xf6\xd7\x61\x7a\xdc\x6d\xaf" "\xc3\x91\xb6\xd7\x61\xd7\xef\x29\x5d\x5e\x87\x23\x2b\x78\x1d\x36\xb7\x39" "\x73\xc7\xca\x7e\x66\x19\x69\xfb\xa7\xdb\x31\x2c\xff\xbd\x60\x6d\x6b\x70" "\x6b\xdb\x1a\x2c\xfe\x3c\x52\x5c\x83\x83\xfe\x79\xa4\x2c\x6b\x70\x3c\xac" "\x8b\xef\xde\xb1\xfc\xf7\x82\xed\xe1\x78\x9f\x9c\x5c\xed\xcf\x23\xc3\x4b" "\xd6\x60\x7a\xb8\xe1\xbd\xa7\x79\x49\xfa\x79\x7f\x7c\x7f\x6b\x74\x5b\x97" "\x37\x34\xaf\xb8\x6a\x2c\x3b\x3f\x3f\x7b\xf6\xee\x47\x8f\x9c\x3b\x77\x76" "\x57\x16\xc6\xba\x78\x45\xdb\x5a\x29\xae\xd7\x2d\x6d\x8f\x29\x5b\xb2\x5e" "\x87\x56\xbd\x5e\x0f\xce\xdd\xf4\xe4\x0d\x5d\x2e\xdf\x1a\xce\xd5\xf8\x5d" "\xcd\x7f\x8d\x2f\xfb\x5c\x35\xb7\xb9\xe7\xee\xde\xcf\x55\xeb\xbb\x5b\xf7" "\xf3\xd9\x71\xe9\xee\x2c\x8c\x01\x5b\xef\xf3\xd9\xed\xbb\x79\xf3\x7c\x8e" "\x65\xd9\xe7\xbe\xf9\xf8\x83\x5f\x7f\xec\x73\x6f\x58\xf6\x7c\x36\xf3\xe6" "\xc7\xa7\xd6\xfe\xb3\x78\xca\xa5\x6d\xef\xbf\xa3\xcb\xbc\xff\xc6\xdc\xff" "\x8b\x7c\x7f\xe9\xae\x9e\x18\x1e\x1d\xc9\x5f\xbf\xc3\xe9\xec\x8c\x76\xbc" "\x1f\x77\x3e\x55\x23\xad\xf7\xae\x46\x6b\xdf\x2f\x4c\xad\xec\xfd\x78\x34" "\xfc\xb3\xde\xef\xc7\xd7\xf6\x78\x3f\xde\x56\xd8\x76\xd0\xef\xc7\xa3\xc5" "\x07\x17\xdf\x8f\x1b\xfd\xfe\xb4\x63\x6d\x8a\xcf\xe7\x78\x58\x27\x27\xa6" "\x7b\xbf\x1f\x37\xb7\xd9\xb6\x7b\xb5\x6b\x72\xa4\xe7\xfb\xf1\x2d\x61\x36" "\xc2\xf9\x7f\x4d\x48\x0a\x29\x17\xb5\xad\x9d\xe5\xd6\x6d\xda\xd7\xc8\xc8" "\x68\x78\x5c\x23\x71\x0f\x9d\xeb\x74\x4f\xc7\xf6\xa3\x21\x9b\x35\xf7\xf5" "\xf4\xee\xcb\x5b\xa7\xb7\xdf\x92\xdf\xd7\x70\x7a\x74\x8b\xd6\x6b\x9d\x4e" "\x14\xb6\x1d\xf4\x3a\x4d\x7f\xf6\xb5\xdc\x3a\x6d\xf4\xfb\xd3\xb7\xcb\x53" "\x7c\x3e\xc7\xc3\xba\xb8\x76\x4f\xef\x75\xda\xdc\xe6\xd9\x7b\xd6\xfe\xde" "\xb9\x39\xfe\x67\xdb\x7b\xe7\x58\xbf\x35\x38\x3a\x3c\xd6\x3c\xe6\xd1\xb4" "\x08\x5b\xef\xf7\xd9\xc2\xe6\xb8\x06\xef\xce\x8e\x66\xa7\xb3\x13\xd9\x4c" "\xeb\xda\xb1\xd6\x7a\x6a\xb4\xf6\x35\x79\xef\xca\xd6\xe0\x58\xf8\x67\xbd" "\xdf\x2b\xb7\xf5\x58\x83\xb7\x17\xb6\x1d\xf4\x1a\x4c\xdf\xc7\x96\x5b\x7b" "\x8d\x91\xa5\x0f\x7e\x00\x8a\xcf\xe7\x78\x58\x17\x4f\xdd\xdb\x7b\x0d\x36" "\xb7\x79\xe3\xbe\xc1\xfe\xec\x7a\x7b\xb8\x24\x6d\xd3\xf6\xb3\x6b\xf1\xcf" "\xd7\x96\xfb\x33\xaf\x1b\x0a\xa7\xe9\x4a\xad\x95\x91\x70\x9c\xdf\xdc\xd7" "\xfb\xcf\x66\x9b\xdb\x9c\xd8\xbf\xda\x9c\xd9\xfb\x3c\xdd\x19\x2e\xb9\xaa" "\xcb\x79\x2a\xbe\x7e\x97\x7b\x4d\xcd\x64\xeb\x73\x9e\xb6\x85\xe3\x7c\x7e" "\xff\xf2\xe7\xa9\x79\x3c\xcd\x6d\x3e\x7b\x60\x85\xeb\xe9\x60\x96\x65\x17" "\x3e\x7c\x7f\xeb\xcf\x7b\xc3\xdf\xaf\xfc\xdd\xf9\xef\x7c\xa5\xe3\xef\x5d" "\xba\xfd\x9d\xce\x85\x0f\xdf\xff\xa3\x97\x1e\xfb\xc7\xd5\x1c\x3f\x00\x1b" "\xdf\x2f\xf2\xb1\x25\xff\x5e\xd7\xf6\x37\x53\x2b\xf9\xfb\x7f\x00\x00\x00" "\x60\x43\x88\xb9\x7f\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x3f\xfe" "\x5f\xe1\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x48\x98\x49\x4d\xf2\xff" "\xb6\x37\x3e\x3f\xf7\x8b\x0b\x59\x6a\xe6\x2f\x04\xf1\xfa\x74\x1a\x1e\xc8" "\xb7\x8b\x1d\xd7\xe9\xf0\xf5\xc4\xc2\xa2\xe6\xe5\xf7\x7f\x69\xf6\xbf\xff" "\xe1\xc2\xca\xf6\x3d\x94\x65\xd9\xcf\x1e\xf8\x83\xae\xdb\x6f\x7b\x20\x1e" "\x57\x6e\x22\x1c\xe7\x33\x6f\xea\xbc\x7c\x89\xaf\xdc\xb5\xa2\x7d\x1f\x7e" "\xf8\x42\xda\x6f\x7b\x7f\xfd\xf3\xe1\xfe\xe3\xe3\x59\xe9\x32\xe8\x56\xc1" "\x9d\xce\xb2\xec\x6b\xd7\x7c\xba\xb5\x9f\x89\xf7\x5d\x6a\xcd\x67\x1f\x38" "\xdc\x9a\x0f\x5e\x7c\xf2\x89\xe6\x36\x2f\x1c\xc8\xbf\x8e\xb7\x7f\xee\x15" "\xf9\xf6\x7f\x11\xca\xbf\x07\x8f\x1d\xe9\xb8\xfd\x73\xe1\x3c\xfc\x20\xcc" "\xe9\xb7\x75\x3f\x1f\xf1\x76\x5f\xbe\xf4\x9a\xed\xfb\x1e\x59\xdc\x5f\xbc" "\x5d\x63\xc7\xd5\xad\x87\xfd\xd4\xfb\xf3\xfb\x8d\xbf\x27\xe7\x33\x4f\xe4" "\xdb\xc7\xf3\xbc\xdc\xf1\x7f\xfd\x53\x4f\x7f\xb9\xb9\xfd\xa3\xaf\xee\x7e" "\xfc\x17\x86\xba\x1f\xff\xd3\xe1\x7e\xbf\x14\xe6\xff\xde\x98\x6f\xdf\xfe" "\x1c\x34\xbf\x8e\xb7\xfb\x44\x38\xfe\xb8\xbf\x78\xbb\xbb\xbf\xf8\x8d\xae" "\xc7\xff\xcc\x27\xf3\xed\xcf\xbc\x39\xdf\xee\x70\x98\x71\xff\xb7\x87\xaf" "\x77\xbe\xf9\xf9\xb9\xf6\xf3\xf5\x68\xe3\x48\xc7\xe3\xca\xde\x92\x6f\x17" "\xf7\x3f\xfd\x9d\x3f\x6e\x5d\x1f\xef\x2f\xde\x7f\xf1\xf8\xc7\x0f\x5d\xea" "\x38\x1f\xc5\xf5\xf1\xec\xbf\xe5\xf7\x33\x55\xd8\x3e\x5e\x1e\xf7\x13\xfd" "\x7d\x61\xff\xcd\xfb\x69\x5f\x9f\x71\xff\x4f\xff\xd1\xe1\x8e\xf3\xdc\x6f" "\xff\xcf\x3c\xf8\xdc\x8d\xcd\xfb\x2d\xee\xff\xce\xc2\x76\x67\x3e\x7c\x47" "\x6b\xff\x8b\xf7\xd7\xf9\x1b\x9b\xfe\xf2\x13\x9f\xee\xba\xbf\x78\x3c\x07" "\xff\xf6\x4c\xc7\xe3\x39\xf8\xee\xf0\x3a\x0e\xfb\x7f\xea\xfd\x61\x3d\x86" "\xeb\xff\xef\x99\xfc\xfe\x8a\xbf\x5d\xe1\xf0\xbb\x3b\xdf\x7f\xe2\xf6\x9f" "\xdf\x7a\xa1\xe3\xf1\x44\x6f\xfd\x49\xbe\xff\x67\x5e\x77\xbc\x35\x37\x8d" "\x6f\xde\x72\xd5\x4b\x5e\x7a\xf5\xc5\x57\x35\xcf\x5d\x96\x7d\x7b\x53\x7e" "\x7f\xfd\xf6\x7f\xfc\xaf\x4e\x77\x1c\xff\x17\xae\xcb\xcf\x47\xbc\x3e\x76" "\xf4\x8b\xfb\x5f\x4e\xdc\xff\xd9\x8f\x4c\x9e\x3a\x3d\x7f\x7e\x6e\x26\x9d" "\xd5\xc7\xae\x69\xfd\xee\x9c\xb7\xe7\xc7\x13\x8f\xf7\x9a\xf0\xde\x5a\xfc" "\xfa\xd0\xe9\x73\x1f\x98\x3d\x3b\x31\x3d\x31\x9d\x65\x13\xd5\xfd\x15\x7a" "\x97\xed\x8b\x61\xfe\x28\x1f\x17\x7b\x6f\xbd\xb0\xe4\x1d\xf4\x8e\x87\xc3" "\xf3\x79\xc3\x9f\x7f\x6d\xcb\xad\xff\xfa\xa9\x78\xf9\xbf\xbf\x27\xbf\xfc" "\xd2\xdb\xf2\xef\x5b\xb7\x3d\xfc\xdc\x8d\x63\x8f\x64\xd9\x67\xc2\xe5\x5b" "\xc3\xf3\xb7\xba\xfd\x2f\xf5\xd4\xcd\xd7\xb5\x5e\xdf\x8d\x67\xc3\x11\x2e" "\x2c\xfd\x7d\xc1\x6b\xb1\x7d\xe7\x7f\xed\x5f\xd1\x86\xe1\xf1\x17\x7f\x2e" "\x88\xeb\xfd\xcc\x2b\x3f\xd0\x3a\x0f\xcd\xeb\x5a\xdf\x37\xe2\xeb\x7a\x8d" "\xc7\xff\xbd\x99\xfc\x7e\xbe\x1a\xce\xeb\x42\xf8\xcd\xcc\x3b\xae\x5b\xdc" "\x5f\xfb\xf6\xf1\x77\x23\x5c\x7a\x28\x7f\xbd\xaf\xf9\xfc\x85\xb7\xb9\xf8" "\xbc\xfe\x4d\x78\xbe\xdf\xf1\x83\xfc\xfe\xe3\x71\xc5\xc7\xfb\xbd\xf0\x73" "\xcc\x37\xb6\x75\xbe\xdf\xdd\x16\xd6\xd1\x57\x2f\x0c\x15\xef\xbf\xf5\x5b" "\x3c\x2e\x86\xf7\x93\xec\x62\x7e\x7d\xdc\x2a\x9e\xef\x4b\x2f\x5c\xd7\xf5" "\xf0\xe2\xef\x21\xc9\x2e\x5e\xdf\xfa\xfa\x4f\xd2\xfd\x5c\xbf\xaa\x87\xb9" "\x9c\xf9\x8f\xce\x4f\x9d\x98\x3b\x75\xfe\xd1\xa9\x73\xb3\xf3\xe7\xa6\xe6" "\x3f\xfa\xb1\x43\x27\x4f\x9f\x3f\x75\xee\x50\xeb\x77\x79\x1e\xfa\x60\xbf" "\xdb\x2f\xbe\x3f\x6d\x69\xbd\x3f\xcd\xcc\xee\xbd\x27\x6b\xbd\x5b\x9d\xce" "\xc7\x15\xf6\x62\x1f\xff\x99\x87\x8f\xce\xec\x9b\xbe\x75\x66\xf6\xd8\x91" "\xf3\xc7\xce\x3d\x7c\x66\xf6\xec\xf1\xa3\xf3\xf3\x47\x67\x67\xe6\x6f\x3d" "\x72\xec\xd8\xec\x47\xfa\xdd\x7e\x6e\xe6\xbe\x5d\xbb\x0f\xec\xd9\xb7\x7b" "\xf2\xf8\xdc\xcc\x7d\xfb\x0f\x1c\xd8\x73\x60\x72\xee\xd4\xe9\xe6\x61\xe4" "\x07\xd5\xc7\xde\xe9\x0f\x4d\x9e\x3a\x7b\xa8\x75\x93\xf9\xfb\xee\x39\xb0" "\xeb\xde\x7b\xef\x99\x9e\x3c\x79\x7a\x66\xf6\xbe\x7d\xd3\xd3\x93\xe7\xfb" "\xdd\xbe\xf5\xbd\x69\xb2\x79\xeb\xdf\x9f\x3c\x3b\x7b\xe2\xc8\xb9\xb9\x93" "\xb3\x93\xf3\x73\x1f\x9b\xbd\x6f\xd7\x81\xbd\x7b\x77\xf7\xfd\x6d\x80\x27" "\xcf\x1c\x9b\x9f\x98\x3a\x7b\xfe\xd4\xd4\xf9\xf9\xd9\xb3\x53\xf9\x63\x99" "\x38\xd7\xba\xb8\xf9\xbd\xaf\xdf\xed\xa9\xa6\xf9\xff\xc8\x7f\x9e\x2d\x6a" "\xe4\xbf\x88\x2f\x7b\xd7\x9d\x7b\xd3\xef\x67\x6d\xfa\xd2\xe3\xcb\xde\x55" "\xbe\x49\xe1\x17\x88\x3e\x1f\x7e\x17\xcd\x3f\xbf\xec\xcc\xfe\x95\x7c\x1d" "\x73\xff\x68\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x63\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\xc7\xc3\x4c\x6a\x92\xff\x2b\xd7\xff\xdf\x76\x61\x45\xfb\xd7" "\xff\xd7\xff\x6f\x3f\x5f\xfa\xff\x35\xeb\xff\x3f\x54\xb6\xfe\x7f\xfe\x7e" "\xa1\xff\x3f\x18\x6b\xed\xdf\xaf\xa6\xff\xbf\x4f\xff\x5f\xff\x5f\xff\xbf" "\x83\xfe\xbf\xfe\xbf\xfe\x3f\x45\x65\xeb\xff\xc7\xdc\xbf\x39\xcb\x6a\x99" "\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\x7f\x55\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x4b\xc2\x4c" "\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\xef\x5f\xff\x7f" "\x63\xd2\xff\xef\x4d\xff\xbf\x0f\xfd\xff\xa9\xac\x5e\xfd\xff\x8b\x83\x3c" "\x7e\xfd\x7f\xfd\x7f\x96\x2a\x5b\xff\x3f\xe6\xfe\x97\x86\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x75\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x35\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x5b\xc3\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\xef\x5f\xff\x7f\x63" "\xd2\xff\xef\x4d\xff\xbf\x0f\xfd\x7f\x9f\xff\xaf\xff\xaf\xff\xcf\x40\x95" "\xad\xff\x1f\x73\xff\xcb\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\x7f\x79\x98\x89\xfc\x0f\x00\x00\x00\xe5\x33\x72\x79\x37\x8b\xb9\xff\x15" "\x61\x26\x4b\xf2\xff\x65\xee\x00\x00\x00\x00\x78\xd1\xc5\xdc\x7f\x6d\x56" "\x28\x82\xd7\xe4\xef\xff\xf5\xff\xf5\xff\xcb\xdf\xff\xdf\x94\xae\xd3\xff" "\xd7\xff\xcf\x4a\xd9\xff\x1f\xce\xf4\xff\xcb\x43\xff\xbf\x37\xfd\xff\x3e" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\xb2\xf5\xff\x5b\xb9\x3f\x1b\xcf" "\x5e\x19\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x75\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xbf\x2d\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\xbf\xfc\xfd\x7f\x9f\xff" "\xaf\xff\x5f\xf6\xfe\xbf\xcf\xff\x2f\x13\xfd\xff\xde\xf4\xff\xfb\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x8f\xb9\xff\xfa\x30\x93\x9a" "\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x6f\x08\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xff\xe5\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xed\x61" "\x26\x35\xc9\xff\xfa\xff\x25\xef\xff\xc7\xe6\xa8\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xff\x8a\xe8\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\x3f\x03\x55\xb6\xfe\x7f\xcc\xfd\x37\x86\x99\xd4\x24\xff\x03\x00\x00" "\x40\x1d\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xab" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27\xc2\x4c\x6a\x92\xff\xf5" "\xff\x4b\xde\xff\xcf\x7b\xf0\x63\x3e\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x7f\x65\xf4\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff\x7f\x20\xfd\xff\x85\x0b" "\xfa\xff\xfa\xff\xe4\xca\xd6\xff\x8f\xb9\xff\xe6\x30\x93\x9a\xe4\x7f\x00" "\x00\x00\xa8\x83\x98\xfb\x77\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\xdf\x12\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x33\xcc\xa4\x26\xf9" "\x5f\xff\x7f\x43\xf4\xff\x33\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95" "\xd1\xff\xef\x4d\xff\xbf\x0f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xcf\x40\x95" "\xad\xff\x1f\x73\xff\xab\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb6\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\xdb\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xbb\xef\x5f\xff\x7f\x63\xd2\xff\xef\x4d\xff\xbf\x0f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\xaa\x6c\xfd\xff\x98\xfb\x5f\x13\x66" "\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x1d\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f" "\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\xdf\xbf" "\xfe\xff\xc6\xa4\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x0c\x54\xd9\xfa\xff\x31\xf7\xdf\x15\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\xdd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x53\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xd3\x61\x26\x35\xc9\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xab\xea\xff\xbf\x6a\xf1\x7e\xf5\xff\x73\xfa\xff\xe5" "\xa2\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\x2f\x7a\xff\x7f\x54\xff\x9f" "\x4a\x29\x5b\xff\x3f\xe6\xfe\x5d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07" "\x31\xf7\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x13\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x4f\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xcf\xff\xef\xbe\x7f\xfd\xff\x8d\x49\xff\xbf\xb7\xc1" "\xf7\xff\xe3\x43\xd4\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xfa\xff\x2c\x55\xb6" "\xfe\x7f\xcc\xfd\xf7\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf" "\x37\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x5f\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xfe\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\xee\xfb\xd7\xff\xdf\x98\xf4\xff\x7b\xf3\xf9\xff\x7d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x46\x0f\xfd\x61\xfb\x57\x65\xeb\xff\xc7" "\xdc\x7f\x20\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xd7\x86\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x4a\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xaf\x86\x99\xd4\x24\xff\xeb\xff\x77\x74\xcf\x9b\x0f\x57" "\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x45\xff\x7f\x63\xd2\xff\xef\x4d\xff\xbf" "\x0f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\x6a\xd9\xfe\x7f\x88\xde\xeb\xdd" "\xff\x8f\xb9\xff\xbe\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x7f" "\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x75\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x07\xc3\x4c\x6a\x92\xff\xf5\xff\x7d\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x7f\xf7\xfd\xaf\x77\xff\x7f\x2c\xde\xaf\xfe\xff\x9a\xe8" "\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x55\xb6\xcf" "\xff\x8f\xb9\xff\xf5\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf" "\x1f\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x86\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x37\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\x6f\x94" "\xfe\xff\x55\xfa\xff\xfa\xff\x85\xc7\x53\xb5\xfe\xbf\xcf\xff\x1f\x0c\xfd" "\xff\xde\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff" "\x8f\xb9\xff\x4d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x39" "\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x2d\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x6f\x0d\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xdf\x28\xfd" "\xff\x4c\xff\x5f\xff\xbf\xf0\x78\xf4\xff\xf5\xff\xbb\xd1\xff\xef\x4d\xff" "\xbf\x0f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\xaa\x6c\xfd\xff\x98\xfb\x7f" "\x3d\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x07\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4" "\xdc\xff\xf6\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x35\xf5" "\xff\x37\xeb\xff\xeb\xff\x97\x8b\xfe\x7f\x6f\x1b\xac\xff\xff\xf3\xab\xc3" "\xe5\xfa\xff\x39\xfd\xff\x72\x1f\xff\x6a\xfb\xff\x23\x85\xaf\xaf\x48\xff" "\xff\xfb\xcb\xf5\xff\x17\x36\x15\x6f\xaf\xff\xcf\x95\x50\xb6\xfe\x7f\xcc" "\xfd\xef\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x9d\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xff\x8d\x30\x93\x9a\xe4\x7f\xfd\xff\xe6\x71\x2c\xb6\x97\xf5" "\xff\xab\xda\xff\x1f\xd2\xff\xf7\xf9\xff\xfa\xff\x35\xa1\xff\xdf\xdb\x06" "\xeb\xff\xfb\xfc\xff\x02\xfd\xff\x72\x1f\xbf\xcf\xff\xd7\xff\x67\xa9\xb2" "\xf5\xff\x63\xee\x7f\x77\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd" "\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x3f\x14\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xdc\xff\x9e\x30\x93\x9a\xe4\x7f\xfd\x7f\x9f\xff\x5f" "\x8f\xfe\xbf\xcf\xff\xcf\xf4\xff\xf5\xff\x6b\x42\xff\xbf\x37\xfd\xff\x3e" "\xf4\xff\xf5\xff\xcb\xd6\xff\xff\x4f\xfd\x7f\x36\xb6\xb2\xf5\xff\x63\xee" "\x7f\x38\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x47\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\xbd\x61\x26\x35\xc9\xff\xfa\xff\x1b\xa5\xff\x3f\xb1\x41\xfb" "\xff\x8f\xeb\xff\x5f\xc1\xfe\xff\x4d\x57\xe7\xdb\xe9\xff\xeb\xff\xb3\x48" "\xff\xbf\x37\xfd\xff\x3e\xf4\xff\xf5\xff\xcb\xd6\xff\xf7\xf9\xff\x6c\x70" "\x65\xeb\xff\xc7\xdc\xff\xbe\x30\x93\x95\xe7\xff\xf1\x15\x6f\x09\x00\x00" "\x00\x5c\x19\xc5\xbf\x48\x2a\x88\xb9\xff\xb7\xc2\x4c\x6a\xf2\xf7\xff\x00" "\x00\x00\x50\x07\x31\xf7\xff\x76\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xef\x84\x99\xd4\x24\xff\xeb\xff\x6f\x94\xfe\xbf\xcf\xff\xcf\xf4\xff" "\x7d\xfe\x7f\xe1\xf1\xe8\xff\xeb\xff\x77\xb3\x7e\xfd\xff\xf8\xce\xa3\xff" "\xaf\xff\xaf\xff\x1f\xe9\xff\xeb\xff\xeb\xff\x53\x54\xb6\xfe\x7f\xcc\xfd" "\xbf\x1b\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xfb\xc3\x4c\xe4" "\x7f\x00\x00\x00\xd8\x10\xba\xfd\x3f\xd9\x45\x31\xf7\x1f\x0a\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\x3f\x1c\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf" "\xff\x5f\xd2\xfe\xff\x9f\xed\xf8\x97\xef\x7e\xeb\x9d\x87\x77\xe9\xff\xeb" "\xff\xeb\xff\xaf\xca\xba\x7e\xfe\x7f\xf3\xc5\xef\xf3\xff\xf5\xff\xf5\xff" "\x13\xfd\x7f\xfd\x7f\xfd\x7f\x8a\xca\xd6\xff\x8f\xb9\xff\x48\x98\x49\x4d" "\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x17\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x26\xcc" "\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\xa4\xfd\xff\x0d\xfc\xf9\xff\xf1" "\x7c\xe8\xff\x77\x1a\x58\xff\x3f\xbe\xe9\xea\xff\x77\x95\xf7\xef\xd3\x2a" "\xba\xb2\xfd\xff\x47\x16\x7b\xe2\xfa\xff\xab\xed\xff\x8f\x75\xbd\x54\xff" "\x5f\xff\x7f\x23\x1f\xbf\xfe\xbf\xfe\x3f\x4b\x95\xad\xff\x1f\x73\xff\x6c" "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xc8\xfd\x43\xc7\xf2\xb9\x78\x85" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\x0f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xfb" "\xfc\xff\xee\xfb\xef\xd5\xff\x6f\x8c\xf8\xfc\xff\xb2\x4a\xfd\xfb\x9f\xb6" "\x5e\x28\xfa\xff\x05\xe5\xe9\xff\x77\xa7\xff\xaf\xff\xbf\x91\x8f\x5f\xff" "\x5f\xff\x9f\xa5\xca\xd6\xff\x8f\xb9\x7f\x2e\xcc\xa4\x26\xf9\x1f\x00\x00" "\x00\xea\x20\xe6\xfe\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f" "\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x44\x98\x49\x4d\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf7\xfd\x97\xf6\xf3\xff\xf5\xff" "\x7b\x5a\x6b\xff\x5e\xff\x3f\xd0\xff\xaf\x77\xff\xff\x7f\xf4\xff\xf5\xff" "\xf5\xff\x19\x8c\xb2\xf5\xff\x63\xee\x3f\x19\x66\x52\x93\xfc\x0f\x00\x00" "\xff\xcf\xde\x9d\x34\x59\x56\xa7\x75\x1c\x3f\xa9\x05\x95\x15\xb8\x70\xe7" "\xc2\x8d\x11\x2e\x7d\x09\x2c\x74\xad\x2f\xc0\x85\x1b\x37\x46\x18\x2e\x70" "\x40\xc5\x99\xc2\x79\x44\x41\x71\x56\x04\xe7\x01\x54\x10\x44\x54\x70\x1e" "\x40\x45\x14\x67\x50\xd1\x9e\xe7\xa6\x27\x9a\x6e\xa2\x3a\x2a\xf3\x79\x9e" "\xaa\xcc\x3c\x79\x6e\x0e\x37\xef\x3d\xe7\xff\xff\x7c\x16\xf5\x48\x5a\xc9" "\xbd\x4d\x54\x57\xf1\xab\xac\x6f\x1f\x80\x1e\xe4\xee\xbf\x23\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xbf\x2a\x6e\xe9\x64\xff\xeb\xff\xcf\xd3\xff\xdf\xa8\x94\xf5\xff\x07" "\xdf\xff\xea\xfe\x3f\x5f\xf1\x02\xfb\xff\xcf\xd7\xff\x1f\xf7\xfa\xfa\x7f" "\xfd\x7f\xcb\xf4\xff\xd3\xf4\xff\x2b\x8c\xf7\xff\xb7\x0e\xc3\xd0\x57\xff" "\xef\xf9\xff\xfa\x7f\xfd\x3f\x6b\x32\xb7\xfe\x3f\x77\xff\x57\xc7\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xaf\x89\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x3b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6b\xe3\x96" "\x4e\xf6\xff\xa1\xfe\x7f\x67\xe8\xb3\xff\xcf\x8c\xd7\xf3\xff\x3d\xff\x5f" "\xff\x7f\x5c\xff\xbf\xf7\x8d\xfe\x5f\xff\x3f\x7f\x9b\xed\xff\xef\xb9\xfe" "\x33\x9f\xfe\xff\xc4\xfd\xff\xa3\xf7\xaf\x7a\xd9\x99\xf6\xff\x2d\x3e\xff" "\xff\xd6\xb1\x0f\x6e\xbb\x9f\x3f\xaf\x6d\xbf\xff\x13\xf6\xff\x97\x8f\xfb" "\x7c\xfd\x3f\x2d\x9a\x5b\xff\x9f\xbb\xff\xeb\xe2\x96\x4e\xf6\x3f\x00\x00" "\x00\xf4\x20\x77\xff\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x5d" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x0d\x71\x4b\x27\xfb\x7f\x7d" "\xcf\xff\xbf\xb2\xf7\xf1\x85\xf6\xff\x45\xff\xaf\xff\xdf\xfb\x80\xfe\xdf" "\xf3\xff\xf5\xff\x8b\xe5\xf9\xff\xd3\x7a\x7a\xfe\xff\x9d\x2f\xdd\x76\xc7" "\x6b\x4f\x7e\xf6\x53\xa7\x79\xfd\x8e\xfa\xff\x51\xdb\xee\xe7\x97\xfe\xfe" "\x3d\xff\x5f\xff\xcf\x51\x73\xeb\xff\x73\xf7\x7f\x63\xdc\xd2\xc9\xfe\x07" "\x00\x00\x80\x1e\xe4\xee\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x96\xb8\xa5\x93\xfd" "\xbf\xbe\xfe\x7f\xd1\xcf\xff\x2f\xfa\x7f\xfd\xff\xde\x07\xf4\xff\xfa\x7f" "\xfd\xff\x62\xe9\xff\xa7\xf5\xd4\xff\x9f\xe5\xf5\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xf5\x9a\x5b\xff\x9f\xbb\xff\x5b\xe3\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\xb7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xdd\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x35\x6e\xe9\x64\xff\xeb\xff\x2f" "\xbe\xff\x7f\x53\xff\xaf\xff\x8f\xab\xff\xd7\xff\xeb\xff\x2f\x9e\xfe\x7f" "\x9a\xfe\x7f\x05\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xad\xe6\xd6\xff\xe7\xee" "\xbf\x27\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x7b\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x7f\x47\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x7f\x67\xdc\xd2\xc9\xfe\xd7\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f" "\x7f\x7d\xfd\xff\x32\xe9\xff\xa7\xe9\xff\x57\xd0\xff\x9f\xb7\x9f\xbf\x45" "\xff\xaf\xff\xd7\xff\x73\xb3\x53\xf6\xff\x6f\x4c\xfc\xb4\xbd\x96\xfe\x3f" "\x77\xff\x77\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xef\x8e\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\x89\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\xef\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xe6" "\xfe\xff\xe8\x0f\xbd\x3d\xfa\xff\x71\xfa\xff\xcd\xd0\xff\x4f\x9b\x4d\xff" "\xbf\x73\x69\xf4\xc3\xfa\xff\xc5\xf7\xff\x9e\xff\xaf\xff\xd7\xff\x73\xc0" "\xdc\x9e\xff\x9f\xbb\xff\xfb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xf7\xc7\x2d\x13\xfb\xff\xd4\xbf\x99\x0f\x00\x00\x00\x6c\x55\xee\xfe" "\x1f\x88\x5b\x7c\xfd\x1f\x00\x00\x00\x16\x2f\xab\xb3\xdc\xfd\x3f\x18\xb7" "\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xdf\xf3\xff\xc7\x5f\x7f\xaa\xff" "\x7f\xea\xa6\xf7\xa7\xff\x9f\x17\xfd\xff\xb4\xd9\xf4\xff\xc7\xd0\xff\xeb" "\xff\x97\xfc\xfe\xf5\xff\xfa\x7f\x8e\x9a\x5b\xff\x9f\xbb\xff\x87\xe2\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xc3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x23\x71" "\x4b\x27\xfb\x7f\xbc\xff\xbf\xf1\xff\xd7\xff\x9f\x8c\xfe\xff\xe0\xfb\xd7" "\xff\x8f\xff\xf8\x58\x57\xff\x9f\x7f\x47\xfd\xff\x64\xff\xff\x05\x9e\xff" "\xdf\x27\xfd\xff\xb4\xcd\xf7\xff\x97\xf5\xff\x07\xff\xfe\xfa\xff\x0b\xb4" "\xed\xf7\xdf\x78\xff\x7f\x65\xd5\xe7\xeb\xff\x19\x33\xb7\xfe\x3f\x77\xff" "\x7d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xfe\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\xb1\xb8\xa5\x93\xfd\xef\xf9\xff\xfa\x7f\xfd\xff\xf2\xfa\x7f\xcf\xff" "\xdf\xb7\xcd\xe7\xff\x0f\x1b\xef\xff\x2f\xe9\xff\x4f\x48\xff\x3f\xcd\xf3" "\xff\x57\xd0\xff\xeb\xff\xf5\xff\x9e\xff\xcf\x5a\xcd\xad\xff\xcf\xdd\xff" "\x40\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\x3c\xf0\xfa\xb0\xb7\xfb\x7f\x7c" "\x18\xec\x7f\x00\x00\x00\x58\xa2\x9b\xff\xec\xc0\xe1\x3f\x50\x1a\x72\xf7" "\xff\x44\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x64\xdc\xd2\xc9\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf8\xeb\x9f\xb6\xff\x5f\xf5\x60" "\x64\xcf\xff\xdf\x0c\xfd\xff\x34\xfd\xff\x0a\xfa\xff\x8b\xe8\xe7\x2f\x35" "\xd6\xff\x3f\x78\xdc\xe7\xcf\xa1\xff\xbf\x5b\xff\xcf\xcc\x1c\xe8\xff\x9f" "\xb9\xf1\xf1\x6d\xf5\xff\xb9\xfb\x7f\x2a\x6e\xe9\x64\xff\x03\x00\x00\x40" "\x0f\x72\xf7\xff\x74\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x4c\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x6c\xdc\xd2\xc9\xfe\xbf\xf0\xfe" "\x7f\x22\x88\xd5\xff\xeb\xff\xf5\xff\xfa\xff\x96\xfa\xff\x55\xf4\xff\x9b" "\xa1\xff\x9f\xa6\xff\x5f\x41\xff\xef\xf9\xff\x9e\xff\xaf\xff\x67\xad\x6e" "\xf4\xff\x07\x7f\x3e\xdc\x56\xff\x9f\xbb\xff\xe7\xe2\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\xcf\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x83\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x0b\x71\x4b\x27\xfb\xdf" "\xf3\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfc\xf5\xf5\xff\xcb\xa4\xff\x9f" "\xa6\xff\x5f\x41\xff\xaf\xff\xd7\xff\xeb\xff\x59\xab\x03\xcf\xff\xbf\xc9" "\xb6\xfa\xff\xdc\xfd\x0f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x87\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x17\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x97\xe2\x96\x4e\xf6\xbf\xfe\xff\x62\xfb\xff\xfc" "\xb8\xfe\x5f\xff\x3f\xe8\xff\xf5\xff\xfa\xff\x8d\xe8\xb6\xff\xdf\x19\xfb" "\x95\xe8\xa8\x63\xfa\xff\xe7\xbf\xfc\xea\x17\x1d\xfc\x88\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x59\x83\x59\xf4\xff\xd7\x6e\xfc\xdb\x65\xee\xfe\x5f" "\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x12\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xbf\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xbf\x16\xb7\x9c\x72\xff\x7f\xe6\x5a\xdf\xd5\xe6\xe8\xff\x3d\xff\x5f\xff" "\xaf\xff\xd7\xff\x8f\xbf\xbe\xfe\x7f\x99\xba\xed\xff\x4f\xc8\xf3\xff\x57" "\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x6a\x16\xfd\xff\x4d\x7f\x9d\xbb\xff" "\xd7\xe3\x16\x5f\xff\x07\x00\x00\x80\x66\xe4\xee\xff\x8d\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\xcd\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\xad\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf1\xd7" "\x3f\x6b\xff\xbf\x3b\x8c\xd3\xff\x6f\x86\xfe\x7f\x9a\xfe\x7f\x05\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x67\xad\xe6\xd6\xff\xe7\xee\x7f\x24\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\x3f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xbf\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x13\xb7\x74\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfa\x9e\xff\xbf\x4c\xfa" "\xff\x69\xfa\xff\x61\x18\x1e\x9b\x78\x03\x63\xfd\xff\xb5\xcb\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x19\xcd\xad\xff\xcf\xdd\xff\xbb\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\xb1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x2f\x6e\xe9\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfc\xf5\xf5\xff\xcb\xa4\xff\x9f" "\xa6\xff\x5f\xc1\xf3\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb7\xfe\x3f\x77" "\xff\x13\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc9\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\xfd\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x2a\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x85\xf4\xff" "\x57\xf5\xff\x87\xe9\xff\x37\xe3\xe2\xfa\xff\x41\xff\xaf\xff\xd7\xff\xaf" "\xa0\xff\xd7\xff\xeb\xff\x39\x6c\x53\xfd\xff\x1b\xf1\xf3\xfd\xaa\xfe\x3f" "\x77\xff\x1f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xa7\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x0f\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x8f\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xfe" "\xff\xf8\xeb\xeb\xff\x97\xc9\xf3\xff\xa7\xe9\xff\x57\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xd6\x6a\x53\xfd\xff\x71\xbd\xff\xe1\xbf\xce\xdd\xff\xc7\x71" "\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x99\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x24" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x07\xfb\xff\x61\xd0\xff\xeb\xff\xf5\xff" "\xfb\x36\xd0\xff\xef\x0e\xfa\xff\xb5\xd3\xff\x4f\xd3\xff\xaf\xa0\xff\x6f" "\xb3\xff\xff\xb4\xa1\xa1\xfe\xff\xca\xb1\x9f\xaf\xff\x67\x8e\xe6\xd6\xff" "\xe7\xee\xff\xd3\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x67\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe7\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x17\x71\x4b\x4b\xfb\xff\xcd\xe3\xd3\xb7\xe5\xf7\xff\x97" "\x0f\x7d\xa2\xfe\x7f\x18\x86\x97\xef\xf2\xfc\x7f\xfd\xff\xc4\xeb\xeb\xff" "\x67\xd3\xff\xd7\x3f\x55\xfd\xff\xfa\xe8\xff\xa7\xe9\xff\x57\xd0\xff\xb7" "\xd9\xff\x7b\xfe\xbf\xfe\x9f\xad\x99\x5b\xff\x9f\xbb\xff\x2f\xe3\x96\x96" "\xf6\x3f\x00\x00\x00\x74\x2e\x77\xff\x5f\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x5f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xdf\xc4\x2d" "\x9d\xec\xff\xe5\xf7\xff\x87\x3f\x51\xff\x3f\x9c\xeb\xf9\xff\xfa\xff\xbd" "\x0f\xe8\xff\xf5\xff\xfa\xff\xc5\x3a\x6f\x7f\xff\xd0\x6e\xfc\x9a\xa6\xff" "\xd7\xff\x1f\xdb\xff\x5f\xb9\xfe\x2b\x5e\xb7\xfd\xff\xce\x31\xff\xde\x33" "\xe8\xff\xf5\xff\xfa\x7f\x46\xcc\xad\xff\xcf\xdd\xff\xb7\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x3e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x2e\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\xfa\xff\x65\xf6\xff\xbb\xfa\x7f\xfd\xbf\xfe\x7f\xd4" "\x5c\x9e\xff\x7f\xfb\xed\x5f\xf8\xa2\xfe\xbf\xd5\xfe\xdf\xf3\xff\x8f\xa3" "\xff\xd7\xff\xeb\xff\x39\x6c\x6e\xfd\x7f\xee\xfe\xbf\x8f\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\xff\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x2f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\xe3\x85\xbd\x90\x73\x77\xf8\xc7" "\x61\xe8\x72\xff\x1f\xed\xff\x6f\x19\xf6\x0b\xd5\x7d\x63\xfd\x7f\x34\x6a" "\xfa\xff\x9b\xe8\xff\x0f\xbe\x7f\xfd\xff\xf8\x8f\x0f\xcf\xff\xd7\xff\xeb" "\xff\x2f\xde\x5c\xfa\x7f\xcf\xff\x3f\xdb\xfb\xd7\xff\xeb\xff\x97\xfc\xfe" "\x4f\xd5\xff\x7f\xce\xd1\xcf\xd7\xff\xd3\xa2\xb9\xf5\xff\xb9\xfb\x5f\x8c" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xff\x14\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xff\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x2f" "\xc5\x2d\x9d\xec\x7f\xcf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf1\xd7\xd7" "\xff\x2f\x93\xfe\x7f\x9a\xfe\x7f\x05\xfd\xff\xf9\xfb\xf9\xfc\x59\x55\xff" "\xbf\xdc\xe7\xff\x7f\xba\xfe\x9f\xf5\x99\x5b\xff\x9f\xbb\xff\x5f\xe2\x96" "\xbd\xe1\xf7\xb9\x9f\x71\xc6\xff\x98\x00\x00\x00\xc0\x8c\xe4\xee\xff\xd7" "\xb8\xa5\x93\xaf\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x5b\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xff\x7b\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf8\xeb\xeb\xff\x97\x49\xff\x3f\x4d\xff\xbf\x42\x3f\xfd" "\xff\xee\xd8\x07\xb7\xdd\xcf\x9f\xd7\xb6\xdf\xff\x16\xfb\xff\xbd\x1f\x16" "\x9e\xff\xcf\x1c\xcd\xad\xff\xcf\xdd\xff\x1f\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\xda\xf6\xfa\xde\xb7\xb9\xfb\xff\x33\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xff\x2b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x8e\x5b\x3a" "\xd9\xff\x4b\xec\xff\xaf\xe8\xff\xf5\xff\xa7\xea\xff\xbf\x54\xff\x7f\xe8" "\xf5\xf5\xff\xfa\xff\x96\xe9\xff\xf3\x57\xf4\x71\xfa\xff\x15\xfa\xe9\xff" "\x47\x6d\xbb\x9f\x5f\xdb\xfb\xbf\xfe\x5f\x82\xbe\xfa\xff\x3d\xfa\x7f\xe6" "\x68\x6e\xfd\x7f\xee\xfe\x57\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\x7f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xff\xc4\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xff\xc6\x2d\x4d\xec\xff\x4b\x2b\xbf\xc7\x12" "\xfb\x7f\xcf\xff\x3f\x7b\xff\xbf\x33\xf4\xd8\xff\x7b\xfe\xbf\xfe\x5f\xff" "\xdf\x93\xe5\xf4\xff\x0f\x8f\xfe\x22\xed\xf9\xff\xfa\x7f\xfd\xff\x72\xdf" "\xbf\xfe\x5f\xff\xcf\x51\x73\xeb\xff\x73\xf7\xbf\xba\x73\xa9\xc1\xfd\x0f" "\x00\x00\x00\xed\xfa\xe2\xcf\xfb\x8a\x57\x4e\xfa\x7d\x5f\xdd\xfb\x76\x77" "\xf8\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xff\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\x7f\x4b\xdc\xd2\xc9\xfe\xd7\xff\xf7\xd5\xff\xf7" "\xf9\xfc\x7f\xfd\xbf\xfe\x5f\xff\xdf\x93\xe5\xf4\xff\xe3\xf4\xff\xfa\x7f" "\xfd\xff\x72\xdf\xbf\xfe\x5f\xff\xcf\x51\x73\xeb\xff\x73\xf7\xbf\x35\x6e" "\xb9\x69\xf8\xad\xfe\x5f\xd1\x03\x00\x00\x00\x36\xea\xd6\xd3\x7d\xf7\xdc" "\xfd\x6f\x8b\x5b\x3a\xf9\xfa\x3f\x00\x00\x00\xf4\x20\x77\xff\xdb\xe3\x96" "\x23\xfb\xff\xda\x09\xff\x54\x3b\x00\x00\x00\x30\x37\xb9\xfb\xdf\x11\xb7" "\x74\xf2\xf5\x7f\xfd\xff\xcc\xfb\xff\xe1\x82\xfa\xff\xf8\x7e\xfa\xff\x7d" "\x9b\xee\xff\x77\x0e\x7d\x7f\xfd\xff\x3e\xfd\xbf\xfe\x7f\x1d\xf4\xff\xd3" "\xce\xd9\xff\x5f\xdb\xd1\xff\xeb\xff\x27\xe8\xff\xf5\xff\xfa\x7f\x0e\x9b" "\x5b\xff\x9f\xbb\xff\xe9\x27\x86\x2e\xf7\x3f\x00\x00\x00\x34\xea\xc0\xef" "\x28\xbc\x73\xef\xdb\xdd\xe1\x5d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\xee\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4f\xdc\xd2\xc9\xfe" "\xd7\xff\xcf\xbc\xff\x3f\xd3\xf3\xff\xaf\xd4\xff\xe5\xf9\xff\xf3\xec\xff" "\x37\xf6\xfc\xff\x7b\x77\x47\x5f\x5f\xff\xaf\xff\x6f\x99\xfe\x7f\x9a\xe7" "\xff\xaf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5\x29\xfa\xff\xbd\x41\x7a" "\xd1\xfd\x7f\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\xf7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xfb\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x03\x71\x4b\x27\xfb\x5f\xff\xbf\x85\xfe\xff\xbe" "\xcb\xc3\x70\xa1\xfd\xff\x09\x9e\xff\xaf\xff\xef\xa3\xff\x3f\xe6\xf5\xdb" "\xe9\xff\x3f\xeb\xb6\xab\xcf\x7d\xc9\x97\x3d\xfe\x88\xfe\x9f\x1b\x36\xd9" "\xff\xe7\x8f\x05\xfd\xbf\xfe\x5f\xff\xbf\x4f\xff\xaf\xff\xd7\xff\x73\xd8" "\xdc\x9e\xff\x9f\xbb\xff\x83\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x50\xdc\x72\x7d\xff" "\x3f\xbb\xad\x77\x05\x00\x00\x00\xac\x53\xee\xfe\x0f\xc7\x2d\x9d\x7c\xfd" "\x5f\xff\xdf\xe2\xf3\xff\x97\xd9\xff\xe7\x3f\xeb\x2d\xf4\xff\x57\x97\xd7" "\xff\x67\x53\xdc\x7b\xff\xef\xf9\xff\xfa\xff\xa3\x3c\xff\x7f\x9a\xfe\x7f" "\x05\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xad\xe6\xd6\xff\xe7\xee\xff\x48\xdc" "\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x68\xdc\x92\xfb\x7f\xe7\xd4" "\xbf\x75\x0f\x00\x00\x00\xcc\x4c\xee\xfe\x8f\xc5\x2d\xbe\xfe\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x7a\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xe7\xd2\xff\x27" "\xcf\xff\xbf\xf1\x79\x9e\xff\xbf\x4f\xff\xaf\xff\x3f\x0d\xfd\xff\x34\xfd" "\xff\x0a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\xcd\xad\xff\xcf\xdd\xff\xf1" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x46\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\x7f\x22\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f" "\x19\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfa\xfa" "\xff\x65\xd2\xff\x4f\xd3\xff\xaf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5" "\xdc\xfa\xff\xdc\xfd\x9f\x0a\x00\x00\xff\xff\x6f\xa3\x69\x1f", 25161); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_SILENT|MS_NOSUID*/ 0x8002, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x6249, /*img=*/0x20000000c6c0); // chdir arguments: [ // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // ] memcpy((void*)0x200000000200, "./file0\000", 8); syscall(__NR_chdir, /*dir=*/0x200000000200ul); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x105042 (4 bytes) // mode: open_mode = 0x1db (2 bytes) // ] // returns fd memcpy((void*)0x200000000540, "./file0\000", 8); syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000540ul, /*flags=O_SYNC|O_DIRECT|O_CREAT|O_RDWR*/ 0x105042, /*mode=S_IXOTH|S_IWOTH|S_IXGRP|S_IWGRP|S_IXUSR|S_IWUSR|S_IRUSR*/ 0x1db); // syz_mount_image$fuse arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 00} (length 0xfc) // } // flags: mount_flags = 0x3000000 (8 bytes) // opts: nil // chdir: int8 = 0x1 (1 bytes) // size: const = 0x0 (8 bytes) // img: nil // ] // returns fd_dir memcpy((void*)0x200000000540, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 252); syz_mount_image(/*fs=*/0, /*dir=*/0x200000000540, /*flags=MS_LAZYTIME|MS_STRICTATIME*/ 0x3000000, /*opts=*/0, /*chdir=*/1, /*size=*/0, /*img=*/0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }