// https://syzkaller.appspot.com/bug?id=1a44cf81f0b45557562bef765af261c8f707d60a // 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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20005d40, "./file0\000", 8); memcpy( (void*)0x20006940, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x71\xac" "\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60\x01\x0b" "\x90\x90\xd7\xd8\x9a\x4c\x22\x83\x03\xc8\x36\x88\x44\x16\x9e\xc8\x0b\xc4" "\x06\x78\x04\xd8\x64\xc3\x22\xaf\xc0\x03\xe4\x19\x10\x0f\x80\xa5\x19\x56" "\x59\x10\x0a\xd5\xcc\x39\x76\x4d\x4d\x8f\x7b\x8c\x3d\x5d\xdd\x73\x7e\x3f" "\x69\x5c\xf5\xd5\xe9\x9a\x3e\xe5\xff\xd4\x54\xf7\x54\x55\x9f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x07\xdf\xff\xc9\xd9\x5e" "\x44\x5c\xfd\x4d\x5a\x70\x34\xe2\x73\x31\x88\xe8\x47\x2c\xd7\xf5\x89\xa8" "\x67\x2e\xe7\xc7\x0f\x23\xe2\x58\x6c\x35\xc7\x0b\x11\x31\x58\x8c\xa8\xd7" "\xdf\xfa\xe7\xb9\x88\x0b\x11\xf1\xc9\x91\x88\x8d\xcd\x3b\xab\xf5\xe2\x73" "\xfb\xec\xc7\xc5\x33\xb7\x6f\x7e\xf6\xc3\xef\xfd\xe3\xf7\x7f\xba\x77\xec" "\x67\x6f\xff\xf4\xa3\x76\xfb\x8f\x3f\x7f\xfe\xe3\x3f\xdc\x8d\x38\xfa\xa3" "\x37\x3e\xfe\xec\xee\xd3\xd9\x76\x00\x00\x00\x28\x45\x55\x55\x55\x2f\xbd" "\xcd\x3f\x9e\xde\xdf\xf7\xbb\xee\x14\x00\x30\x15\xf9\xf8\x5f\x25\x79\xb9" "\x5a\xad\x56\xab\x9f\x6a\xfd\xc7\xfe\x6c\xf5\x47\x5d\x68\xdd\x54\x8d\x77" "\xb7\x59\x44\xc4\x7a\x73\x9d\xfa\x35\x83\xd3\xf1\x00\x30\x67\xd6\xe3\xd3" "\xae\xbb\x40\x87\xe4\x5f\xb4\x61\x44\x3c\xd3\x75\x27\x80\x99\xd6\xeb\xba" "\x03\x1c\x88\x8d\xcd\x3b\xab\xbd\x94\x6f\xaf\x79\x3c\x38\xb1\xdd\x9e\xff" "\x4e\xb9\x23\xff\xf5\xde\x83\xfb\x3b\xf6\x9a\x4e\xd2\xbe\xc6\x64\x5a\x3f" "\x5f\xf7\x62\x10\xcf\xef\xd1\x9f\xe5\x29\xf5\x61\x96\xe4\xfc\xfb\xed\xfc" "\xaf\x6e\xb7\x8f\xd2\xe3\x0e\x3a\xff\x69\xd9\x2b\xff\xd1\xf6\xad\x4f\xc5" "\xc9\xf9\x0f\xda\xf9\xb7\xec\xc8\xff\xcf\x11\x31\xb7\xf9\xf7\xc7\xe6\x5f" "\xaa\x9c\xff\xf0\x71\xf2\x5f\x1f\xcc\xf1\xfe\x2f\x7f\x00\x00\x00\x00\x00" "\x0e\xbf\xfc\xf7\xff\xa3\x1d\x9f\xff\x5d\x7c\xf2\x4d\xd9\x97\x47\x9d\xff" "\x3d\x31\xa5\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\xd3\xf6\xa4\xe3\xff\x3d" "\x60\xfc\x3f\x00\x00\x00\x98\x59\xf5\x7b\xf5\xda\x5f\x8e\x3c\x5c\xb6\xd7" "\x67\xb1\xd5\xcb\xaf\xf4\x22\x9e\x6d\x3d\x1e\x28\x4c\xba\x59\x66\xa5\xeb" "\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x49\x86\xdb\xd7\xf0\x5e" "\xe9\x45\x2c\x44\xc4\xb3\x2b\x2b\x55\x55\xd5\x5f\x4d\xed\xfa\x71\x3d\xe9" "\xfa\xf3\xae\xf4\xed\x87\x92\x75\xfd\x4b\x1e\x00\x00\xb6\x7d\x72\xa4\x75" "\x2f\x7f\x2f\x62\x29\x22\xae\xa4\xcf\xfa\x5b\x58\x59\x59\xa9\xaa\xa5\xe5" "\x95\x6a\xa5\x5a\x5e\xcc\xaf\x67\x47\x8b\x4b\xd5\x72\xe3\x7d\x6d\x9e\xd6" "\xcb\x16\x47\xfb\x78\x41\x3c\x1c\x55\xf5\x37\x5b\x6a\xac\xd7\x34\xe9\xfd" "\xf2\xa4\xf6\xf6\xf7\xab\x9f\x6b\x54\x0d\xf6\xd1\xb1\xe9\xe8\x30\x70\x00" "\x88\x88\xed\xa3\xd1\x86\x23\xd2\x21\x53\x55\xcf\x45\xd7\xaf\x72\x98\x0f" "\xf6\xff\xc3\xc7\xfe\xcf\x7e\x74\xfd\x73\x0a\x00\x00\x00\x1c\xbc\xaa\xaa" "\xaa\x5e\xfa\x38\xef\xe3\xe9\x9c\x7f\xbf\xeb\x4e\x01\x00\x53\x91\x8f\xff" "\xed\xf3\x02\x6a\xb5\x5a\xad\x56\xab\x0f\x5f\xdd\x54\x8d\x77\xb7\x59\x44" "\xc4\x7a\x73\x9d\xfa\x35\x83\xe1\xf8\x01\x60\xce\xac\xc7\xa7\x5d\x77\x81" "\x0e\xc9\xbf\x68\xc3\x88\x38\xd6\x75\x27\x80\x99\xd6\xeb\xba\x03\x1c\x88" "\x8d\xcd\x3b\xab\xbd\x94\x6f\xaf\x79\x3c\x48\xe3\xbb\xe7\x6b\x41\x76\xe4" "\xbf\xde\xdb\x5a\x2f\xaf\x3f\x6e\x3a\x49\xfb\x1a\x93\x69\xfd\x7c\xdd\x8b" "\x41\x3c\xbf\x47\x7f\x5e\x98\x52\x1f\x66\x49\xce\xbf\xdf\xce\xff\xea\x76" "\xfb\x28\x3d\xee\xa0\xf3\x9f\x96\xbd\xf2\xaf\xb7\xf3\x68\x07\xfd\xe9\x5a" "\xce\x7f\xd0\xce\xbf\xe5\xf0\xe4\xdf\x1f\x9b\x7f\xa9\x72\xfe\xc3\xc7\xca" "\x7f\x20\x7f\x00\x00\x00\x00\x00\x98\x61\xf9\xef\xff\x47\x9d\xff\xcd\x9b" "\x0c\x00\x00\x00\x00\x00\x00\x00\x73\x67\x63\xf3\xce\x6a\xbe\xef\x35\x9f" "\xff\xff\xe2\x98\xc7\xf5\x9a\x73\xee\xff\x3c\x34\x72\xfe\xbd\x7d\xe7\xef" "\xfe\xdf\xc3\x24\xe7\xdf\x6f\xe7\xdf\xba\x20\x67\xd0\x98\xbf\xff\xd6\xc3" "\xfc\xff\xbd\x79\x67\xf5\xa3\xdb\xff\xfa\x42\x9e\xce\x7c\xfe\x0b\x83\x51" "\xfd\xdc\x0b\xbd\xfe\x60\x98\xae\xf9\xa9\x16\xde\x89\xeb\x71\x23\xd6\xe2" "\xcc\xae\xc7\x0f\x77\xb4\x9f\xdd\xd5\xbe\xb0\xa3\xfd\xdc\x84\xf6\xf3\xbb" "\xda\x47\x75\xfb\x72\x6e\x3f\x15\xab\xf1\xcb\xb8\x11\x6f\x3f\x68\x5f\x9c" "\x70\x61\xd4\xd2\x84\xf6\x6a\x42\x7b\xce\x7f\x60\xff\x2f\x52\xce\x7f\xd8" "\xf8\xaa\xf3\x5f\x49\xed\xbd\xd6\xb4\x76\xff\xc3\xfe\xae\xfd\xbe\x39\x1d" "\xf7\x3c\x97\xff\xf6\x9f\x97\x77\xef\x5d\xd3\x77\x2f\x06\x0f\xb6\xad\xa9" "\xde\xbe\x93\x1d\xf4\x67\xeb\xff\xe4\x99\x51\xfc\xfa\xd6\xda\xcd\x53\xbf" "\xbd\x76\xfb\xf6\xcd\xb3\x91\x26\x3b\x96\x9e\x8b\x34\x79\xca\x72\xfe\x0b" "\xe9\x2b\xe7\xff\xca\x4b\xdb\xed\xf9\xf7\x7e\x73\x7f\xbd\xff\xe1\xe8\xb1" "\xf3\x9f\x15\xf7\x62\xb8\x67\xfe\x2f\x35\xe6\xeb\xed\x7d\x75\xca\x7d\xeb" "\x42\xce\x7f\x94\xbe\x72\xfe\xf9\x08\x34\x7e\xff\x9f\xe7\xfc\xf7\xde\xff" "\x5f\xeb\xa0\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x28" "\x55\x55\x6d\xdd\x22\x7a\x39\x22\x2e\xa5\xfb\x7f\xba\xba\x37\x13\x00\x98" "\xae\x7c\xfc\xaf\x92\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xe1\xab\x9b\xaa\xf1" "\xde\x6c\x16\x11\xf1\xf7\xe6\x3a\xf5\x6b\x86\xdf\x8d\xfb\x66\x00\xc0\x2c" "\xfb\x6f\x44\xfc\xb3\xeb\x4e\xd0\x19\xf9\x17\x2c\x7f\xde\x5f\x3d\xfd\x52" "\xd7\x9d\x01\xa6\xea\xd6\xfb\x1f\xfc\xfc\xda\x8d\x1b\x6b\x37\x6f\x75\xdd" "\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff\x3c\xd1\x18\xff\x79" "\xeb\x3a\xa0\xd6\xb8\xd1\x3b\xc6\x7f\x7d\x2b\x4e\xcc\xed\xf8\x9f\xfd\xd1" "\x60\x6b\xac\xf3\xb4\x41\x2f\xc6\xa3\xc7\xff\x3e\x19\x8f\x1e\xff\x7b\x38" "\xe1\xf9\x16\x26\xb4\x8f\x26\xb4\x2f\x4e\x68\x5f\x9a\xd0\x3e\xf6\x46\x8f" "\x86\x9c\xff\x8b\x29\xe3\x9c\xff\xf1\xb4\x61\x25\x8d\xff\xfa\x4a\x07\xfd" "\xe9\x5a\xce\xff\x64\x1a\xeb\x39\xe7\xff\x95\xd6\xe3\x9a\xf9\x57\x7f\x9d" "\xe7\xfc\xfb\x3b\xf2\x3f\x7d\xfb\xbd\x5f\x9d\xbe\xf5\xfe\x07\xaf\x5f\x7f" "\xef\xda\xbb\x6b\xef\xae\xfd\xe2\xec\x99\x4b\x17\xce\x5f\xbc\x70\xfe\xe2" "\xc5\xd3\xef\x5c\xbf\xb1\x76\x66\xfb\xdf\x0e\x7b\x7c\xb0\x72\xfe\x79\xec" "\x6b\xd7\x81\x96\x25\xe7\x9f\x33\x97\x7f\x59\x72\xfe\x5f\x4e\xb5\xfc\xcb" "\x92\xf3\x7f\x39\xd5\xf2\x2f\x4b\xce\x3f\xbf\xde\x93\x7f\x59\x72\xfe\xf9" "\xbd\x8f\xfc\xcb\x92\xf3\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\xab\xa9\x96\x7f" "\x59\x72\xfe\xaf\xa5\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff" "\xf5\x54\xcb\xbf\x2c\x39\xff\x53\xa9\x96\x7f\x59\x72\xfe\xa7\x53\x2d\xff" "\xb2\xe4\xfc\xf3\x19\x2e\xf9\x97\x25\xe7\x9f\xaf\x6c\x90\x7f\x59\x72\xfe" "\xe7\x52\x2d\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7\x7f\x29\xd5\xf2\x2f\x4b\xce\xff" "\xeb\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\x7f\x23\xd5\xf2" "\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3" "\xff\x76\xaa\xe5\x5f\x96\x9c\xff\x77\x52\x2d\xff\xb2\xe4\xfc\xbf\x9b\x6a" "\xf9\x97\x25\xe7\xff\x66\xaa\xe5\x5f\x96\x87\x9f\xff\x6f\xc6\x8c\x19\x33" "\x79\xa6\xeb\xdf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xdb\x34" "\x2e\x27\xee\x7a\x1b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xc7\x0e\x1c\x08\x00\x00\x00" "\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0" "\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xb0\x77\x6f\x31\x72\xd5\xf7\x1d\xc0\xcf\xde\xec\xb5\x21\xe0\x86" "\x3b\x71\xc0\x36\x37\x03\x0b\xbb\xeb\x1b\x38\xc4\x60\x92\x90\x52\xd2\x0b" "\x25\x21\x6d\x5a\x52\xe3\xd8\x6b\xe3\xc4\xb7\x7a\x77\xb9\x09\x95\x4d\xa1" "\x2d\x51\x90\x8a\xd4\x3e\xd0\x87\xa6\x49\x94\x46\x91\xda\x0a\x54\x45\x6a" "\x2a\xd1\x08\xa9\x91\xda\xb7\xe6\xa9\x11\x2f\x51\x2b\xe5\xc1\x0f\x50\x39" "\x28\xa9\x94\x2a\xb0\xd5\x99\xf9\xff\xff\x9e\x99\x9d\x9d\x59\x63\x8f\x99" "\x39\xff\xcf\x07\xd9\x3f\xef\xce\x39\x33\xff\x39\x73\x66\x76\xbf\x8b\xbe" "\xb3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x8d\x36\x7e\x7c\xe6\xcf\x86\x8a\xa2\x28\xff\xd4\xfe\x5a\x57\x14" "\x17\x96\xff\x5e\x53\xec\x2e\x3f\x5c\xd8\xf1\x7e\xaf\x10\x00\x00\x00\x38" "\x5b\xef\xd4\xfe\xfe\xfb\x8b\xd3\x27\x76\xaf\x60\xa7\x86\x6d\xfe\xed\x9a" "\xff\xf8\xee\xe2\xe2\xe2\x62\xf1\x85\xb7\x4f\xbe\xfb\x17\x8b\x8b\xe9\x82" "\x0d\x45\x31\xb2\xba\x28\x6a\x97\x45\xff\xfe\x8b\x9f\x2f\x36\x6e\x13\x3c" "\x57\x8c\x0f\x0d\x37\x7c\x3c\xdc\xe5\xe6\x47\xba\x5c\x3e\xda\xe5\xf2\xb1" "\x2e\x97\xaf\xea\x72\xf9\xea\x2e\x97\x8f\x77\xb9\x7c\xc9\x01\x58\x62\x4d" "\xfd\xe7\x31\xb5\x2b\xbb\xbe\xf6\xcf\x75\xf5\x43\x5a\x5c\x5a\x8c\xd5\x2e" "\xbb\xbe\xcd\x5e\xcf\x0d\xad\x1e\x1e\x8e\x3f\xcb\xa9\x19\xaa\xed\xb3\x38" "\x76\xa0\x38\x54\x1c\x2e\x66\x8a\xa9\x25\xfb\x0c\xd5\xfe\x2b\x8a\xd7\x36" "\x96\xb7\x75\x7f\x11\x6f\x6b\xb8\xe1\xb6\xd6\x17\x45\x71\xea\xa7\xcf\xec" "\x8b\x6b\x18\x0a\xc7\xf8\xfa\xa2\xe9\xc6\x6a\x1a\x1f\xbb\xb7\xee\x2d\x36" "\xbc\xfd\xd3\x67\xf6\x7d\x7b\xee\xcd\xab\xda\xcd\xae\x87\x61\xc9\x4a\x8b" "\x62\xf3\xa6\x72\x9d\xcf\x17\xc5\xe9\x1f\x57\x15\x43\xc5\xea\x74\x4c\xe2" "\x3a\x87\x1b\xd6\xb9\xbe\xcd\x3a\x47\x9a\xd6\x39\x54\xdb\xaf\xfc\x77\xeb" "\x3a\x4f\xad\x70\x9d\xf1\x7e\x8f\x87\x75\xfe\xb0\xc3\x3a\xd7\x87\xcf\x3d" "\x79\x5d\x51\x14\x0b\xc5\xb2\xdb\xb4\x7a\xae\x18\x2e\xd6\xb6\xdc\x6a\x3a" "\xde\xe3\xf5\x33\xa2\xbc\x8e\xf2\xa1\xfc\x60\x31\x7a\x46\xe7\xc9\xc6\x15" "\x9c\x27\xe5\x3e\x3f\xb9\xae\xf9\x3c\x69\x3d\x27\xe3\xf1\xdf\x18\x8e\xc9" "\xe8\x32\x6b\x68\x7c\x38\xde\xfa\xf2\xaa\x25\xc7\xfd\xbd\x9e\x27\xe5\xbd" "\xee\x87\x73\xb5\xbc\xee\x07\xcb\x1b\x1d\x1f\x6f\xfc\xd1\x6a\xd3\xb9\x5a" "\x6e\xf3\xcc\x0d\xcb\x9f\x03\x6d\x1f\xbb\x36\xe7\x40\x3a\x97\x1b\xce\x81" "\x4d\xdd\xce\x81\xe1\x55\x23\xb5\x73\x60\xf8\xf4\x9a\x37\x35\x9d\x03\xd3" "\x4b\xf6\x19\x2e\x86\x6a\xb7\x75\xf2\x86\xce\xe7\xc0\xe4\xdc\x91\xe3\x93" "\xb3\x4f\x3d\x7d\xdb\xa1\x23\x7b\x0f\xce\x1c\x9c\x39\x3a\x3d\xb5\x63\xdb" "\xd6\xed\xdb\xb6\x6e\xdf\x3e\x79\xe0\xd0\xe1\x99\xa9\xfa\xdf\x67\x76\x48" "\x07\xc8\xda\x62\x38\x9d\x83\x9b\xc2\x6b\x4d\x3c\x07\x6f\x6a\xd9\xb6\xf1" "\x94\x5c\xfc\xc6\xb9\x7b\x1e\x8c\xf7\xc9\xf3\xa0\xbc\xef\x9f\xb9\xb1\x5c" "\xd0\x85\xc3\xc5\x32\xe7\x78\xb9\xcd\xf3\x9b\xcf\xfe\x79\x90\xbe\xee\x37" "\x3c\x0f\x46\x1b\x9e\x07\x6d\x5f\x53\xdb\x3c\x0f\x46\x57\xf0\x3c\x28\xb7" "\x39\xb5\x79\x65\x5f\x33\x47\x1b\xfe\xb4\x5b\x43\xaf\x5e\x0b\xd7\x35\x9c" "\x03\xef\xe7\xd7\xc3\xf2\x36\x1f\xb9\x79\xf9\xd7\xc2\xf5\x61\x5d\x2f\xdc" "\x72\xa6\x5f\x0f\x47\x96\x9c\x03\xf1\x6e\x0d\x85\xe7\x5e\xf9\x99\xf4\xfd" "\xde\xf8\x9d\xe1\xb8\x2c\x3d\x2f\xae\x2e\x2f\xb8\x60\x55\x31\x3f\x3b\x73" "\xe2\xf6\x27\xf7\xce\xcd\x9d\x98\x2e\xc2\x38\x2f\x2e\x69\x78\xac\x5a\xcf" "\x97\xb5\x0d\xf7\xa9\x58\x72\xbe\x0c\x9f\xf1\xf9\xb2\xfb\xef\x7e\x79\xe3" "\xd5\x6d\x3e\xbf\x2e\x1c\xab\xf1\x5b\x3b\x3f\x56\xe5\x36\xdb\x26\x3a\x3f" "\x56\xb5\x57\xf7\xf6\xc7\xb3\xe9\xb3\x5b\x8a\x30\xce\xb1\xf3\x7d\x3c\xdb" "\x7d\x35\x2b\x8f\x67\xca\x12\x1d\x8e\x67\xb9\xcd\xf3\xb7\x9d\xfd\xf7\x82" "\x29\x97\x34\xbc\xfe\x8d\x75\x7b\xfd\x1b\x19\x1b\xad\xbf\xfe\x8d\xa4\xa3" "\x31\xd6\xf4\xfa\xb7\xf4\xa1\x19\xa9\xad\xac\x28\x4e\xdd\xb6\xb2\xd7\xbf" "\xb1\xf0\xe7\x7c\xbf\xfe\x5d\xda\x27\xaf\x7f\xe5\xb1\x7a\xe4\xf6\xce\xe7" "\x40\xb9\xcd\x0b\x93\x67\x7a\x0e\x8c\x76\x7c\xfd\xbb\x2e\xcc\xa1\xb0\x9e" "\x9b\x43\x62\x18\x6f\xc8\xfd\xef\xd6\x2e\x5f\xa8\x9f\xa6\x0d\x8f\x65\xd7" "\xf3\x66\x74\x74\x2c\x9c\x37\xa3\xf1\x16\x9b\xcf\x9b\xad\x4b\xf6\x29\xaf" "\xad\xbc\xed\xcd\x53\xef\xed\xbc\xd9\x7c\x5d\xf3\x63\xd5\xf4\x7d\x4b\x05" "\xcf\x9b\xf2\x58\xfd\xe5\x54\xe7\xf3\xa6\xdc\xe6\xf5\xe9\xb3\x7f\xed\x58" "\x13\xff\xd9\xf0\xda\xb1\xaa\xdb\x39\x30\x36\xb2\xaa\x5c\xef\x58\x3a\x09" "\xea\xaf\x77\x8b\x6b\xe2\x39\x70\x7b\xb1\xaf\x38\x56\x1c\x2e\xf6\xa7\x7d" "\xca\x47\xb9\xbc\xad\x89\x2d\x2b\x3b\x07\x56\x85\x3f\xe7\xfb\xb5\xe3\xca" "\x3e\x39\x07\xca\x63\xf5\xf2\x96\xce\xe7\x40\xb9\xcd\x0f\xb6\x9e\xdb\xef" "\x9d\x36\x87\xcf\xa4\x6d\x1a\xbe\x77\x6a\xfd\xf9\xc2\x72\x99\xff\xea\xd1" "\xd3\xd7\xd7\x7a\xd8\xce\x75\xe6\x2f\xd7\xf9\x89\x6d\x9d\x7f\x36\x54\x6e" "\xf3\xe6\xb6\x33\xcd\x19\x9d\x8f\xd3\xad\xe1\x33\x17\xb4\x39\x4e\xad\xcf" "\x9f\xe5\xce\xe9\xfd\xc5\xf9\x39\x4e\x57\x86\x75\x1e\xde\xde\xf9\x67\x53" "\xe5\x36\x97\xee\x58\xe1\xf9\xb4\xbb\x28\x8a\x37\xa6\xdf\xa8\xfd\xbc\x2b" "\xfc\x7c\xf7\x1f\xe7\xff\xf3\xbb\x4d\x3f\xf7\x6d\xf7\x33\xe5\x37\xa6\xdf" "\x78\x60\xf2\xa1\x1f\x9d\xc9\xfa\x01\x00\x78\xef\xde\xad\xfd\xbd\xb0\xaa" "\xfe\xbd\x66\xc3\xff\xb1\x5e\xc9\xff\xff\x07\x00\x00\x00\x06\x42\xcc\xfd" "\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x23\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\xa3\x61\x26\x99\xe4\xff\xc7\xee\xdc\xf9\xca\x3b" "\xcf\x16\xe9\xdd\x00\x17\x83\x78\x79\x3c\x0c\x0f\xde\x5d\xdf\x2e\x76\xbc" "\x17\xc2\xc7\x1b\x16\x4f\x2b\x3f\xff\xb1\x6f\x8d\xbd\xf2\x95\x67\x57\x76" "\xdb\xc3\x45\x51\xfc\xf2\x81\x0f\xb5\xdd\xfe\xb1\xbb\xe3\xba\xea\x8e\xc7" "\x75\x7e\xa4\xf9\xf3\x4b\x5c\x79\xed\x8a\x6e\xff\xd1\x87\x4f\x6f\xd7\xf8" "\xfe\x09\xa7\x76\xd6\xaf\x3f\xde\x9f\x95\x9e\x06\xb1\xab\xfc\xda\xe4\x96" "\xda\xf5\x6e\x78\x6a\xba\x36\x5f\x7f\xa0\xa8\xcd\x87\x16\x5e\x78\xae\x7e" "\xfd\xf5\x8f\xe3\xf6\x27\xb7\xd6\xb7\xff\xeb\xf0\xa6\x25\xbb\x0f\x0c\x35" "\xed\xbf\x39\xac\xe7\xfa\x30\x37\x84\xf7\x94\x79\x70\xf7\xe9\xe3\x50\xce" "\xb8\xdf\x2b\xeb\xaf\xf9\xd7\x4b\x3e\x7b\xfa\xf6\xe2\x7e\x43\x9b\x2e\xaa" "\xdd\xcd\x97\xff\xa8\x7e\xbd\xf1\x3d\xa2\x5e\xba\xa4\xbe\x7d\xbc\xdf\xcb" "\xad\xff\x5f\xbe\xfa\x9d\x57\xca\xed\x9f\xbc\xa1\xfd\xfa\x9f\x1d\x6e\xbf" "\xfe\x93\xe1\x7a\x7f\x12\xe6\x2f\x76\xd5\xb7\x6f\x3c\xe6\x5f\x69\x58\xff" "\x9f\x84\xf5\xc7\xdb\x8b\xfb\xdd\xfe\xcd\xef\xb7\x5d\xff\xab\x57\xd4\xb7" "\x7f\x35\x9c\x17\x5f\x0f\xb3\x75\xfd\xf7\xfe\xf9\x87\xdf\x69\xf7\x78\xc5" "\xdb\xd9\x7d\x57\x7d\xbf\x78\xfb\x53\xff\xbb\xad\xb6\x5f\xbc\xbe\x78\xfd" "\xad\xeb\x1f\x7f\x76\xba\xe9\x78\xb4\x5e\xff\xeb\x6f\xd7\xaf\x67\xd7\xe3" "\x3f\x1b\x69\xdc\x3e\x7e\x3e\xde\x4e\xf4\xe8\x5d\xcd\xe7\xf7\x50\x78\x7c" "\x9b\x7a\xe4\x45\x51\x7c\xe7\x4f\x8b\xa6\xe3\x5c\x7c\xb4\xbe\xdf\x3f\xb7" "\xac\x3f\x5e\xdf\xf1\xbb\xda\xaf\xff\xd6\x96\x75\x1e\x1f\xba\xb6\xb6\xff" "\xe9\xfb\xb3\xae\xe9\x7e\x7d\xed\x6f\xb7\xb4\xbd\xbf\x71\x3d\xbb\xff\x61" "\x5d\xd3\xfd\x79\xe9\xbe\x70\xfc\xde\x9e\xfc\x41\x79\xbd\x27\x1f\x0a\xe7" "\x63\xb8\xfc\xff\x7e\x58\xbf\xbe\xd6\xf7\x32\x7d\xf5\xbe\xe6\xd7\x9b\xb8" "\xfd\xd7\xd7\xd5\x9f\xb7\xf1\xfa\x26\x5b\xd6\xff\x52\xcb\xfa\x17\xae\x2d" "\x8f\x5d\xf7\xf5\xdf\xff\x76\x7d\xfd\xaf\xde\xb3\xba\x69\xfd\xbb\x3f\x19" "\xce\xa7\xfb\xeb\xb3\xdb\xfa\x0f\xfe\xcd\xc5\x4d\xfb\x7f\xe3\xdb\xf5\xc7" "\xe3\xc4\x13\x13\x47\x8f\xcd\xce\x1f\xda\xdf\x70\x54\x1b\x9f\xc7\xab\xc7" "\xd7\xac\xbd\xe0\xc2\x0f\x5c\x74\x71\x78\x2d\x6d\xfd\x78\xcf\xb1\xb9\xc7" "\x66\x4e\x6c\x98\xda\x30\x55\x14\x1b\x06\xf0\x2d\x03\x7b\xbd\xfe\x6f\x86" "\xf9\x3f\xf5\xb1\x70\xee\x6f\xa1\xee\x47\x3f\xab\x9f\x77\x2f\x7e\xaa\xfe" "\x75\xeb\xa6\x9f\xd7\x3f\x7e\x29\x7c\xfe\xd1\xf0\x78\xc6\xaf\x8f\x5f\xfb" "\xab\xb1\xa6\xf3\xb5\xf5\x71\x5f\xb8\xa7\x3e\xcf\x76\xfd\xb7\x84\x75\xac" "\xd4\x15\x5f\xfd\xef\x6b\x57\xb4\xe1\xc9\xcf\xbf\x36\xff\x4f\x7f\xfc\x66" "\xeb\xf7\x05\xf1\xfe\x1c\xbf\x6c\xbc\x76\xff\x5e\xde\x78\x79\xed\xb2\xa1" "\xd7\xeb\x97\xb7\xbe\x5e\x75\xf3\x5f\x97\x35\x3f\xaf\x7f\x3c\x3a\x55\x9b" "\xdf\x0b\xc7\x75\x31\xbc\x33\xf3\xa6\xcb\xeb\xb7\xd7\x7a\xfd\xf1\xbd\x49" "\x5e\xfc\x74\xfd\xf9\x1b\xbf\x93\x8b\xfb\x17\x2d\xef\x27\xb2\x6e\xa4\xf9" "\x7e\x9c\xed\xfa\x7f\x1c\xbe\x8f\xf9\xfe\x95\xcd\xaf\x7f\xf1\xfc\xf8\xde" "\xb3\x2d\xef\xe6\xbc\xae\x18\x2a\x97\xb0\x10\x5e\x1f\x8a\x85\xfa\xe5\x71" "\xab\x78\xbc\x5f\x3c\x75\x79\xdb\xdb\x8b\xef\xc3\x53\x2c\x5c\x75\x26\xcb" "\x5c\xd6\xec\x53\xb3\x93\x87\x0f\x1d\x9d\x7f\x72\x72\x6e\x66\x76\x6e\x72" "\xf6\xa9\xa7\xf7\x1c\x39\x36\x7f\x74\x6e\x4f\xed\xbd\x4b\xf7\x7c\xb1\xdb" "\xfe\xa7\x9f\xdf\x6b\x6b\xcf\xef\xfd\x33\x3b\xb6\x15\xb5\x67\xfb\xb1\xfa" "\xe8\xb1\xf7\x7b\xfd\xc7\x1f\xde\xb7\xff\x8e\xa9\x1b\xf7\xcf\x1c\xd8\x3b" "\x7f\x60\xee\xe1\xe3\x33\x27\x0e\xee\x9b\x9d\xdd\x37\xb3\x7f\xf6\xc6\xbd" "\x07\x0e\xcc\x3c\xd1\x6d\xff\x43\xfb\x77\x4d\x6f\xd9\xb9\xf5\x8e\x2d\x13" "\x07\x0f\xed\xdf\x75\xe7\xce\x9d\x5b\x77\x4e\x1c\x3a\x7a\xac\x5c\x46\x7d" "\x51\x5d\xec\x98\xfa\xd2\xc4\xd1\x13\x7b\x6a\xbb\xcc\xee\xda\xb6\x73\x7a" "\xfb\xf6\x6d\x53\x13\x47\x8e\xed\x9f\xd9\x75\xc7\xd4\xd4\xc4\x7c\xb7\xfd" "\x6b\x5f\x9b\x26\xca\xbd\x1f\x9f\x38\x31\x73\x78\xef\xdc\xa1\x23\x33\x13" "\xb3\x87\x9e\x9e\xd9\x35\xbd\x73\xc7\x8e\x2d\x5d\xdf\xfd\xf1\xc8\xf1\x03" "\xb3\x1b\x26\x4f\xcc\x1f\x9d\x9c\x9f\x9d\x39\x31\x59\xbf\x2f\x1b\xe6\x6a" "\x9f\x2e\xbf\xf6\x75\xdb\x9f\x3c\xcc\x1e\x0b\xaf\x77\x2d\x86\xc2\x77\xe7" "\x9f\xbb\x75\x47\x7a\x7f\xdc\xd2\xb7\xbe\xbc\xec\x55\xd5\x37\x69\xfe\xf6" "\xb4\x78\x2b\xbc\x17\x54\xfc\xfa\xd6\xed\xe3\x98\xfb\xc7\xc2\x4c\x32\xc9" "\xff\x00\x00\x00\x90\x83\x98\xfb\xc3\x1b\xff\x9f\xbe\x40\xfe\x07\x00\x00" "\x80\xca\x88\xb9\x7f\x75\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x78" "\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97" "\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d" "\xbf\xf5\xff\x63\xee\x5f\x53\x14\x59\xe6\x7f\x00\x00\x00\xc8\x41\xcc\xfd" "\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x2f\x08\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xbf\x30\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xdf\xa9\xff\x1f\xb7\xd5\xff\x2f\xf4\xff\xf5\xff\xdf\x23\xfd\x7f\xfd\xff" "\x4e\xf4\xff\xf5\xff\x07\x79\xfd\x7d\xd8\xff\x5f\xa3\xff\x4f\xbf\xe9\xb7" "\xfe\x7f\xcc\xfd\x1f\x08\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xbf" "\x28\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xe2\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x75\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xbf\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\x1f" "\xe4\xf5\xf7\x61\xff\xdf\xef\xff\xa7\xef\xf4\x5b\xff\x3f\xe6\xfe\x5f\x09" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\x60\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x25\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x97\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x7b\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf\xfe\x3f" "\xdd\xf5\x5b\xff\x3f\xe6\xfe\xcb\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83" "\x98\xfb\x2f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x22\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xca\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff\xeb\xff\x77\xa2\xff\xaf" "\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xbb\x7e\xeb\xff\xc7\xdc\x7f\x55\x98" "\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xd5\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x5f" "\x1f\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef" "\xa5\xc1\xea\xff\x0f\x2f\x7b\x89\xfe\x7f\x9d\xfe\x7f\x33\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\x3a\xeb\xb7\xfe\x7f\xcc\xfd\x1f\x0e\x33\xc9\x24\xff\x03" "\x00\x00\x40\x0e\x62\xee\xbf\x26\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\xda\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x0d\x61\x26\x99\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x5e\x1a\xac\xfe\xff" "\xf2\xf4\xff\xeb\xf4\xff\x9b\xe9\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x59\xbf" "\xf5\xff\x63\xee\xdf\x18\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf" "\x29\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xba\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xeb\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20" "\xaf\x5f\xff\x5f\xff\x9f\xee\xfa\xad\xff\x1f\x73\xff\x0d\x61\x26\x99\xe4" "\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x37\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x39\xcc\x24" "\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff" "\xfa\xff\x9d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xe9\xae\xdf\xfa" "\xff\x31\xf7\xdf\x1c\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x4b" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xad\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x13\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\x5e\xd2\xff\xd7\xff\xef\x44\xff\x5f\xff\x7f\x90\xd7" "\xaf\xff\xaf\xff\x4f\x77\xfd\xd6\xff\x8f\xb9\xff\xb6\x30\x93\x4c\xf2\x3f" "\x00\x00\x00\xe4\x20\xe6\xfe\xdb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x27\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xa7\xc2\x4c\x32\xc9" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xa4\xff\xaf\xff" "\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xee\xfa\xad\xff\x1f" "\x73\xff\x74\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x96\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xad\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xdb\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xbd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff" "\x5f\xff\x9f\x66\xc3\x6d\x3e\xd7\x6f\xfd\xff\x98\xfb\xb7\x87\x99\x64\x92" "\xff\x01\x00\x00\x20\x07\x31\xf7\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xce\x30\x93" "\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9\xff" "\xeb\xff\x77\xa2\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xbb\x7e\xeb" "\xff\xc7\xdc\xbf\x33\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x23" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x77\x85\x99\xc8\xff\x00\x00" "\x00\x30\x50\xda\xfd\x1e\xc2\x28\xe6\xfe\x8f\x86\x99\x64\x92\xff\xf5\xff" "\xab\xde\xff\x5f\x5c\xad\xff\xaf\xff\xaf\xff\xdf\x79\xfd\xfa\xff\xbd\xa5" "\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xee\xfa" "\xad\xff\x1f\x73\xff\xae\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x09\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\xdf\x1d\x66\x92\x49\xfe\xd7\xff\xaf\x7a\xff\xdf" "\xef\xff\xd7\xff\xd7\xff\xef\xb6\x7e\xfd\xff\xde\xd2\xff\xd7\xff\xef\x44" "\xff\x7f\x30\xfb\xff\xe1\xdb\x16\xfd\xff\x3e\xea\xff\x97\xe7\x90\xfe\x3f" "\xfd\xa8\xdf\xfa\xff\x31\xf7\xdf\x1b\x66\x92\x49\xfe\x07\x00\x00\x80\x1c" "\xc4\xdc\xff\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x8f\x87\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\x9d\xe8\xff" "\x0f\x66\xff\x3f\xd2\xff\xef\x9f\xfe\xbf\xdf\xff\x4f\xbf\xea\xb7\xfe\x7f" "\xcc\xfd\xf7\x85\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x7f\x32\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x57\xc3\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8c\x98\xfb\xef\x0f\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27\xfa\xff\xfa\xff\x83\xbc\x7e" "\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\xbf\x16\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xa7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3d\xcc\x24\x93" "\xfc\xaf\xff\x7f\x7e\xfa\xff\xc3\xe9\xfa\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xcf\x25\xfd\x7f\xfd\xff\x42\xff\xff\x3d\x7b\xbf\xfb\xf3\x83\xbe" "\x7e\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\xbf\x11\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xff\x9b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xbf\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x60\x98\x49" "\x26\xf9\x5f\xff\xdf\xef\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\x25\xfd" "\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\x74\xd7\x6f" "\xfd\xff\x98\xfb\x7f\x3b\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff" "\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x4f\x87\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\x7f\x26\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff\x9d\xe8\xff\xeb\xff\x0f" "\xf2\xfa\xf5\xff\xf5\xff\xe9\xae\xdf\xfa\xff\x31\xf7\x3f\x1c\x66\x92\x49" "\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xd9\x30\x13\xf9\x1f\x00\x00\x00\x2a" "\x23\xe6\xfe\xdf\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xdd\x30" "\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x2f\xe9" "\xff\x2f\xed\xff\x97\xaf\x61\xfa\xff\x75\xfa\xff\xfa\xff\x83\xbc\x7e\xfd" "\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd\x9f\x0b\x33\xc9\x24\xff\x03\x00" "\x00\x40\x0e\x62\xee\xff\xbd\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xdf\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x24\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\x7e\xff" "\x7f\x27\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f" "\xcc\xfd\x9f\x0f\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\x83\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3d\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x8f\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x7b\x49\xff\x5f\xff\xbf\x13\xfd\x7f\xfd\xff\x41\x5e\xbf" "\xfe\xbf\xfe\x3f\xdd\xf5\x5b\xff\x3f\xe6\xfe\xbd\x61\x26\x99\xe4\x7f\x00" "\x00\x00\xc8\x41\xcc\xfd\x5f\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\xdf\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3f\xcc\x24\x93\xfc" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x4b\xfa\xff\xfa\xff" "\x9d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xe9\xae\xdf\xfa\xff\x31" "\xf7\xcf\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x1f\x08\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x65" "\xc4\xdc\xff\x58\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b\xd1\xff\xd7\xff\x1f\xe4\xf5\xeb\xff" "\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee\x3f\x14\x66\x92\x49\xfe\x07\x00\x00" "\x80\x1c\xc4\xdc\xff\xc5\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x2f" "\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0e\x33\xc9\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\x92\xfe\xbf\xfe\x7f\x27" "\xfa\xff\xfa\xff\x83\xbc\x7e\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe\x7f\xcc\xfd" "\x47\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x8f\x86\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x1f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x3f\x1e\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xef\x25\xfd\x7f\xfd\xff\x4e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa" "\xff\x74\xd7\x6f\xfd\xff\x98\xfb\xff\x30\xcc\x24\x93\xfc\x0f\x00\x00\x00" "\x39\x88\xb9\xff\x44\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6c\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x5c\x98\x49\x26\xf9\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\x97\xf4\xff\xf5\xff\x3b\xd1\xff" "\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5d\xbf\xf5\xff\x63\xee\x9f\x0f" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x3c\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x27\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xbd\xa4\xff\xaf\xff\xdf\x89\xfe\xbf\xfe\xff\x20\xaf\x5f\xff\x5f\xff\x9f" "\xee\xfa\xad\xff\x1f\x73\xff\x53\x61\x26\x99\xe4\xff\xff\x67\xef\xae\x72" "\x06\x4b\x8b\x38\x0e\x7f\xc0\x05\x24\x84\xc5\xb0\x02\x96\xc0\x1a\xd8\x06" "\xee\x30\xb8\xbb\xbb\xbb\xbb\xbb\xbb\xbb\xc3\xc0\xe0\x9a\x40\x42\x57\xd5" "\x24\x64\xfa\x9c\xee\x86\xc3\xf7\x9e\xaa\xe7\xb9\xa9\xb4\x24\xfd\x26\xdf" "\xd5\x3f\x9d\x5f\x0e\x00\x00\x00\x4c\x90\xbb\xff\x9e\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\xbf\x57\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xef" "\x1d\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49" "\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb" "\xff\x73\xf7\xdf\x27\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xf7\x8d" "\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xfd\xe2\x16\xfb\x1f\x00\x00\x00" "\xda\xc8\xdd\x7f\xff\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb" "\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\x01\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13" "\xe4\xee\x7f\x60\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x1f\x14\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x07\xc7\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67" "\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\x0f\x89\x5b\x86\xec\x7f" "\x00\x00\x00\x98\x20\x77\xff\x43\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd" "\xff\xb0\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\x3f\x3c\x6e\x19\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe\x5f\xff\xbf\x45" "\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\x1d\xde\xff\xdf\xfd\xa6\x7f" "\xdf\x6b\xed\xff\x73\xf7\xdf\x14\xb7\x0c\xd9\xff\x00\x00\x00\x30\x41\xee" "\xfe\x47\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x91\x71\x8b\xfd\x0f" "\x00\x00\x00\x6d\xe4\xee\x7f\x54\xdc\x32\x64\xff\xeb\xff\xf5\xff\xb7\xf6" "\xff\xff\xbc\x9d\xfe\x5f\xff\xaf\xff\xbf\xf5\xf7\xf5\xff\xff\x1b\xfa\x7f" "\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9\x77\x78\xff\xbf" "\xd3\xfb\xff\xe7\xaf\x73\xf7\x3f\x3a\x6e\x19\xb2\xff\x01\x00\x00\x60\x82" "\xdc\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x63\xe3\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xb8\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\x7d" "\xff\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f" "\xf9\xfd\x5b\xfd\xff\xdd\xae\xe1\xfd\xfa\x7f\x26\x58\xad\xff\xcf\xdd\xff" "\xf8\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x21\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\x4f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\x93\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23" "\xe9\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x33\xbf\xdf\xf7\xff\xf5\xff\xec\x5b" "\xad\xff\xcf\xdd\xff\xe4\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f" "\x25\x6e\xb1\xff\x01\x00\x00\xa0\x8d\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00\x00" "\x00\x68\x23\x77\xff\xd3\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xff\xab\xfe\xff\x0e\xfa\x7f\xfd\xff\x36\xfd\xbf\xfe\x7f\x8b\xfe\x5f\xff" "\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xf4\xb8\x65\xc8" "\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x23\x6e\xb1\xff\x01\x00\x00\xa0\x8d" "\xdc\xfd\xcf\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xb3\xe2\x96\x21" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x7d\xff\x5f\xff\x7f\x24\xfd\xbf\xfe" "\x7f\x8b\xfe\x5f\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd" "\xff\xec\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x3f\x27\x6e\xb1\xff" "\x01\x00\x00\xa0\x8d\xdc\xfd\xcf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77" "\xff\xf3\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\x23\xe9\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf" "\x6a\xfd\x7f\xee\xfe\xe7\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff" "\x05\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\x7f\x61\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\x5f\x14\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xbf\xed\xfe\xff\x4e\x57" "\xf9\xf7\xf4\xff\x6b\xbd\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe\x17" "\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x25\x71\x8b\xfd\x0f\x00" "\x00\x00\x6d\xe4\xee\x7f\x69\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x5f" "\x16\xb7\x0c\xd9\xff\x57\xeb\xff\x6f\xb9\xf3\x95\x3f\xd7\xff\x5f\x1b\xfd" "\xff\x6d\xbf\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x2d\xfa\x7f" "\xdf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\x7f\x79\xdc" "\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x5f\x11\xb7\xd8\xff\x00\x00\x00" "\xd0\x46\xee\xfe\x57\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x55\x71" "\xcb\x90\xfd\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92\xfe" "\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6\xff" "\xe7\xee\x7f\x75\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x5f\x13\xb7" "\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xd7\xc6\x2d\xf6\x3f\x00\x00\x00\xb4" "\x91\xbb\xff\x75\x71\xcb\x90\xfd\xaf\xff\xd7\xff\x5f\x7a\xff\x7f\x7b\xfd" "\x7f\xd2\xff\xc7\xcf\x55\xff\xaf\xff\xbf\x0e\xfa\x7f\xfd\xff\x85\xfe\xff" "\x86\x5d\x76\x3f\x7f\xf6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff" "\xfa\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\xbf\x21\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\x9b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xbf\xf4\xfe\xdf\xf7\xff\x8b\xfe\x3f" "\x7e\xae\xfa\x7f\xfd\xff\x75\xd0\xff\xeb\xff\x2f\xf4\xff\x37\xec\xb2\xfb" "\xf9\xb3\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd\x7f\xee\xfe\x37\xc7\x2d\x43" "\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\x6d" "\xe4\xee\x7f\x6b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xdf\x16\xb7\x0c" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff" "\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7" "\xbf\x3d\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xef\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x23\x77\xff\x3b\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd" "\xff\xae\xb8\x65\xc8\xfe\xd7\xff\x9f\xbd\xff\xbf\xc7\xcd\xf1\x02\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x5f\x92\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb" "\xf5\xff\xfa\x7f\xf6\xad\xd6\xff\xe7\xee\x7f\x77\xdc\x32\x64\xff\x03\x00" "\x00\xc0\x04\xb9\xfb\xdf\x13\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\xf7" "\xc6\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb\xff\x7d\x71\xcb\x90\xfd\xaf\xff" "\x3f\x7b\xff\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\x6d\xfa\x7f\xfd\xff\x16" "\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\xfd" "\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4\xee\xff\x40\xdc\x62\xff\x03\x00" "\x00\x40\x1b\xb9\xfb\x3f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x0f" "\xc5\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2" "\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa" "\xff\xdc\xfd\x1f\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x47\xe2" "\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80" "\x36\x72\xf7\x7f\x2c\x6e\xb8\xeb\x5d\x2e\xef\x49\xff\x57\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f" "\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7\x7f\x3c\x6e\xf1\xff\xff" "\x00\x00\x00\xd0\x46\xee\xfe\x4f\xc4\x2d\xf6\x3f\x00\x00\x00\xb4\x91\xbb" "\xff\x93\x71\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x54\xdc\x32\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x24\xfd\xbf\xfe\x7f\x8b" "\xfe\x5f\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff\xe9" "\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x7f\x26\x6e\xb1\xff\x01\x00" "\x00\xa0\x8d\xdc\xfd\x9f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\xe7" "\xe2\x96\x21\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x23\xe9" "\xff\xf5\xff\x5b\xf4\xff\xfa\xff\x33\xbf\x5f\xff\xaf\xff\x67\xdf\x6a\xfd" "\x7f\xee\xfe\xcf\xc7\x2d\x43\xf6\x3f\x00\x00\x00\x4c\x90\xbb\xff\x0b\x71" "\x8b\xfd\x0f\x00\x00\x00\x6d\xe4\xee\xff\x62\xdc\x62\xff\x03\x00\x00\x40" "\x1b\xb9\xfb\xbf\x14\xb7\x0c\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x1f\x49\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd" "\x3f\xfb\x56\xeb\xff\x73\xf7\x7f\x39\x6e\x19\xb2\xff\x01\x00\x00\x60\x82" "\xdc\xfd\x5f\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x57\xe3\x16\xfb" "\x1f\x00\x00\x00\xda\xc8\xdd\xff\xb5\xb8\x65\xc8\xfe\xef\xdc\xff\x6f\xfd" "\x35\xfd\xff\x15\xfa\x7f\xfd\xff\x85\xfe\x5f\xff\x7f\x30\xfd\xbf\xfe\x7f" "\x8b\xfe\x5f\xff\x7f\xe6\xf7\xeb\xff\xf5\xff\xec\x5b\xad\xff\xcf\xdd\xff" "\xf5\xb8\x65\xc8\xfe\x07\x00\x00\x80\x09\x72\xf7\x7f\x23\x6e\xb1\xff\x01" "\x00\x00\xa0\x8d\xdc\xfd\xdf\x8c\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff" "\xb7\xe2\x96\x21\xfb\xbf\x73\xff\xbf\x45\xff\x7f\x85\xfe\x5f\xff\x7f\xa1" "\xff\xd7\xff\x1f\x4c\xff\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f" "\xfd\x3f\xfb\x56\xeb\xff\x73\xf7\x7f\x3b\x6e\x19\xb2\xff\x01\x00\x00\x60" "\x82\xdc\xfd\xdf\x89\x5b\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x77\xe3\x16" "\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\xbd\xb8\x65\xc8\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff" "\xcc\xef\xd7\xff\xeb\xff\xd9\xb7\x5a\xff\x9f\xbb\xff\xfb\x71\xcb\x90\xfd" "\x0f\x00\x00\x00\x13\xe4\xee\xff\x41\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9" "\xfb\x7f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x1f\xc5\x2d\x43\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7" "\xe8\xff\xf5\xff\x67\x7e\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\x3f" "\x8e\x5b\x86\xec\x7f\x00\x00\x00\x98\x20\x77\xff\x4f\xe2\x16\xfb\x1f\x00" "\x00\x00\xda\xc8\xdd\xff\xd3\xb8\xc5\xfe\x07\x00\x00\x80\x36\x72\xf7\xff" "\x2c\x6e\x19\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x92" "\xfe\x5f\xff\xbf\x45\xff\xaf\xff\x3f\xf3\xfb\xf5\xff\xfa\x7f\xf6\xad\xd6" "\xff\xe7\xee\xff\x79\xdc\x32\x64\xff\x03\x00\x00\xc0\x04\xb9\xfb\x7f\x11" "\xb7\xd8\xff\x00\x00\x00\xd0\x46\xee\xfe\x5f\xc6\x2d\xf6\x3f\x00\x00\x00" "\xb4\x91\xbb\xff\x57\x71\xcb\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x91\xf4\xff\xfa\xff\x2d\xfa\x7f\xfd\xff\x99\xdf\xaf\xff\xd7" "\xff\xb3\x6f\xb5\xfe\x3f\x77\xff\xcd\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13" "\xe4\xee\xff\x75\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\x7f\x13\xb7\xd8" "\xff\x00\x00\x00\xd0\x46\xee\xfe\x5b\xe2\x96\x21\xfb\x5f\xff\xaf\xff\x6f" "\xd9\xff\xdf\x51\xff\xaf\xff\xd7\xff\xaf\x42\xff\xaf\xff\xdf\xa2\xff\xd7" "\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff\x73\xf7\xff\x36\x6e\x19" "\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\xbf\x8b\x5b\xec\x7f\x00\x00\x00\x68" "\x23\x77\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\xda\xc8\xdd\xff\x87\xb8\x65" "\xc8\xfe\xd7\xff\xeb\xff\x5b\xf6\xff\xbe\xff\xaf\xff\xd7\xff\x2f\x43\xff" "\xaf\xff\xdf\xa2\xff\xd7\xff\x9f\xf9\xfd\xfa\x7f\xfd\x3f\xfb\x56\xeb\xff" "\x73\xf7\xff\x31\x6e\x19\xb2\xff\x01\x00\x00\x60\x82\xdc\xfd\x7f\x8a\x5b" "\xec\x7f\x00\x00\x00\x68\x23\x77\xff\x9f\xe3\x16\xfb\x1f\x00\x00\x00\xda" "\xc8\xdd\xff\x97\xb8\x65\xc8\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xff\x48\xfa\x7f\xfd\xff\x16\xfd\xbf\xfe\xff\xcc\xef\xd7\xff\xeb\xff" "\xd9\xb7\x5a\xff\x9f\xbb\xff\xaf\x71\xcb\x90\xfd\x0f\x00\x00\x00\x13\xe4" "\xee\xff\x5b\xdc\x62\xff\x03\x00\x00\x40\x1b\xb9\xfb\xff\x1e\xb7\xd8\xff" "\x00\x00\x00\xd0\x46\xee\xfe\x7f\xc4\x2d\x43\xf6\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\x47\xd2\xff\xeb\xff\xb7\xe8\xff\xf5\xff\x67\x7e" "\xbf\xfe\x5f\xff\xcf\xbe\xd5\xfa\xff\xdc\xfd\xff\x0a\x00\x00\xff\xff\x3e" "\x7f\x37\xf8", 24015); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20005d40, /*flags=MS_REC|MS_NODEV|MS_MANDLOCK*/ 0x4044, /*opts=*/0x20000300, /*chdir=*/-1, /*size=*/0x5dcf, /*img=*/0x20006940); memcpy((void*)0x20000200, "./bus\000", 6); syscall(__NR_mknod, /*file=*/0x20000200ul, /*mode=*/0ul, /*dev=*/0x701); memcpy((void*)0x20000100, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 251); syscall(__NR_rename, /*old=*/0x20000100ul, /*new=*/0ul); memcpy((void*)0x20000380, "/dev/loop", 9); *(uint8_t*)0x20000389 = 0x30; *(uint8_t*)0x2000038a = 0; memcpy((void*)0x20000340, "./bus\000", 6); syscall(__NR_mount, /*src=*/0x20000380ul, /*dst=*/0x20000340ul, /*type=*/0ul, /*flags=MS_BIND*/ 0x1000ul, /*data=*/0ul); memcpy((void*)0x200005c0, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x200005c0ul, /*flags=O_TRUNC|O_NOCTTY|O_APPEND*/ 0x700ul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint32_t*)0x20000140 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4c02, /*arg=*/0x20000140ul); memcpy((void*)0x20000f40, "msdos\000", 6); memcpy((void*)0x20000f00, ".\000", 2); syz_mount_image( /*fs=*/0x20000f40, /*dir=*/0x20000f00, /*flags=MS_I_VERSION|MS_PRIVATE|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202401*/ 0x1a4a421, /*opts=*/0x200008c0, /*chdir=*/0xb, /*size=*/0, /*img=*/0x20000000); } 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; use_temporary_dir(); loop(); return 0; }