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