// https://syzkaller.appspot.com/bug?id=3e6a8499b70dc448ca4f8dcd150ba509b9b69a26 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x2010880 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x9 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // resize_size: fs_opt["resize", fmt[hex, int32]] { // name: buffer: {72 65 73 69 7a 65} (length 0x6) // eq: const = 0x3d (1 bytes) // val: int32 = 0x0 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nointegrity: buffer: {6e 6f 69 6e 74 65 67 72 69 74 79} // (length 0xb) // } // comma: const = 0x0 (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 31} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // usrquota: buffer: {75 73 72 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 30} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // noquota: buffer: {6e 6f 71 75 6f 74 61} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // resize_size: fs_opt["resize", fmt[hex, int32]] { // name: buffer: {72 65 73 69 7a 65} (length 0x6) // eq: const = 0x3d (1 bytes) // val: int32 = 0x9 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // subj_type: fs_opt["subj_type", stringnoz] { // name: buffer: {73 75 62 6a 5f 74 79 70 65} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {2b 2d 5d 7b 2e 26 51 2e} (length 0x8) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // fowner_eq: fs_opt["fowner", fmt[dec, uid]] { // name: buffer: {66 6f 77 6e 65 72} (length 0x6) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[fs_options_common] { // elem: union fs_options_common { // measure: buffer: {6d 65 61 73 75 72 65} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x5 (1 bytes) // size: len = 0x6130 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6130) // } // ] // returns fd_dir memcpy((void*)0x20000080, "jfs\000", 4); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20000600, "gid", 3); *(uint8_t*)0x20000603 = 0x3d; sprintf((char*)0x20000604, "0x%016llx", (long long)0); *(uint8_t*)0x20000616 = 0x2c; memcpy((void*)0x20000617, "discard", 7); *(uint8_t*)0x2000061e = 0x3d; sprintf((char*)0x2000061f, "0x%016llx", (long long)9); *(uint8_t*)0x20000631 = 0x2c; memcpy((void*)0x20000632, "gid", 3); *(uint8_t*)0x20000635 = 0x3d; sprintf((char*)0x20000636, "0x%016llx", (long long)0); *(uint8_t*)0x20000648 = 0x2c; memcpy((void*)0x20000649, "integrity", 9); *(uint8_t*)0x20000652 = 0x2c; memcpy((void*)0x20000653, "errors=continue", 15); *(uint8_t*)0x20000662 = 0x2c; memcpy((void*)0x20000663, "resize", 6); *(uint8_t*)0x20000669 = 0x3d; sprintf((char*)0x2000066a, "0x%016llx", (long long)0); *(uint8_t*)0x2000067c = 0x2c; memcpy((void*)0x2000067d, "nointegrity", 11); *(uint8_t*)0x20000688 = 0; memcpy((void*)0x20000689, "iocharset", 9); *(uint8_t*)0x20000692 = 0x3d; memcpy((void*)0x20000693, "iso8859-1", 9); *(uint8_t*)0x2000069c = 0x2c; memcpy((void*)0x2000069d, "grpquota", 8); *(uint8_t*)0x200006a5 = 0x2c; memcpy((void*)0x200006a6, "usrquota", 8); *(uint8_t*)0x200006ae = 0x2c; memcpy((void*)0x200006af, "uid", 3); *(uint8_t*)0x200006b2 = 0x3d; sprintf((char*)0x200006b3, "0x%016llx", (long long)0); *(uint8_t*)0x200006c5 = 0x2c; memcpy((void*)0x200006c6, "quota", 5); *(uint8_t*)0x200006cb = 0x2c; memcpy((void*)0x200006cc, "gid", 3); *(uint8_t*)0x200006cf = 0x3d; sprintf((char*)0x200006d0, "0x%016llx", (long long)0); *(uint8_t*)0x200006e2 = 0x2c; memcpy((void*)0x200006e3, "noquota", 7); *(uint8_t*)0x200006ea = 0x2c; memcpy((void*)0x200006eb, "errors=remount-ro", 17); *(uint8_t*)0x200006fc = 0x2c; memcpy((void*)0x200006fd, "iocharset", 9); *(uint8_t*)0x20000706 = 0x3d; memcpy((void*)0x20000707, "cp860", 5); *(uint8_t*)0x2000070c = 0x2c; memcpy((void*)0x2000070d, "noquota", 7); *(uint8_t*)0x20000714 = 0x2c; memcpy((void*)0x20000715, "noquota", 7); *(uint8_t*)0x2000071c = 0x2c; memcpy((void*)0x2000071d, "resize", 6); *(uint8_t*)0x20000723 = 0x3d; sprintf((char*)0x20000724, "0x%016llx", (long long)9); *(uint8_t*)0x20000736 = 0x2c; memcpy((void*)0x20000737, "subj_type", 9); *(uint8_t*)0x20000740 = 0x3d; memcpy((void*)0x20000741, "+-]{.&Q.", 8); *(uint8_t*)0x20000749 = 0x2c; memcpy((void*)0x2000074a, "fowner", 6); *(uint8_t*)0x20000750 = 0x3d; sprintf((char*)0x20000751, "%020llu", (long long)0); *(uint8_t*)0x20000765 = 0x2c; memcpy((void*)0x20000766, "measure", 7); *(uint8_t*)0x2000076d = 0x2c; *(uint8_t*)0x2000076e = 0; memcpy( (void*)0x20000780, "\x78\x9c\xec\xdd\xbd\x8f\x1c\x67\x1d\x07\xf0\xdf\xbe\xde\x4b\x88\x73\x4a" "\x11\x05\x0b\xa1\x8b\x13\x5e\x42\x88\x5f\x83\x31\x04\x48\x52\x40\x41\x93" "\x02\xb9\x45\xb6\x2e\x97\xc8\xc2\x01\x64\x1b\xe4\x44\x16\x3e\x74\x0d\x05" "\x15\x7f\x01\x08\x89\x12\x21\x4a\x44\xc1\x1f\x90\x82\x96\x8e\x8a\x8a\x48" "\x36\x12\x28\x15\x83\xe6\xee\x79\x7c\xb3\xeb\x5d\xef\x99\xf3\xed\xec\xdd" "\xf3\xf9\x48\xeb\x99\xdf\x3c\xb3\xbb\xcf\xdc\x77\x67\x5f\xbc\x33\xfb\x04" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xfd\xce\xf7" "\xce\x75\x22\xe2\xca\x4f\xd3\x82\xb5\x88\x4f\x45\x2f\xa2\x1b\xb1\x52\xd7" "\xeb\x11\xb1\xb2\xbe\x96\xd7\xef\x47\xc4\xf3\xb1\xd3\x1c\xcf\x45\xc4\x60" "\x29\xa2\xbe\xfe\xce\x3f\xcf\x44\xbc\x16\x11\x1f\x9d\x88\xb8\x77\xff\xce" "\x46\xbd\xf8\xfc\x3e\xfb\xf1\xed\x3f\xfc\xed\xb7\xdf\x7f\xea\xed\xbf\xfe" "\x7e\x70\xe6\x3f\x7f\xbc\xd5\x7b\x7d\xda\x7a\xb7\x6f\xff\xf2\xdf\x7f\xba" "\x7b\xb0\x6d\x06\x00\x00\x80\xd2\x54\x55\x55\x75\xd2\xc7\xfc\x93\xe9\xf3" "\x7d\xb7\xed\x4e\x01\x00\x73\x91\x5f\xff\xab\x24\x2f\x5f\x98\xba\x7b\x48" "\xb7\xff\xab\x7f\xbc\xfd\xe7\x45\xd8\x3e\xb5\x5a\xad\x56\xab\xe7\x58\x37" "\x55\x93\xdd\x6d\x16\x11\xb1\xd5\xbc\x4e\xfd\x9e\xc1\xd7\xf1\x00\x70\xc4" "\x6c\xc5\x27\x6d\x77\x81\x16\xc9\xbf\x68\xfd\x88\x78\xaa\xed\x4e\x00\x0b" "\xad\xd3\x76\x07\x38\x14\xf7\xee\xdf\xd9\xe8\xa4\x7c\x3b\xcd\xd7\x83\xf5" "\xdd\xf6\x7c\x2c\xc8\x48\xfe\x5b\x9d\x07\xe7\x77\x4c\x9b\xce\x32\x7e\x8c" "\xc9\xbc\x1e\x5f\xdb\xd1\x8b\x67\xa7\xf4\x67\x65\x4e\x7d\x58\x24\x39\xff" "\xee\x78\xfe\x57\x76\xdb\x87\x69\xbd\xc3\xce\x7f\x5e\xa6\xe5\x3f\xdc\x3d" "\xf5\xa9\x38\x39\xff\xde\x78\xfe\x63\x8e\x4f\xfe\xdd\x89\xf9\x97\x2a\xe7" "\xdf\x7f\xac\xfc\x7b\xf2\x07\x00\x00\x00\x00\x80\x05\x96\xff\xff\x7f\xad" "\xe5\xef\x7f\x97\x0e\xbe\x29\xfb\xf2\xa8\xef\x7f\xd7\xe7\xd4\x07\x00\x00" "\x00\x00\x00\x00\x00\x78\xd2\x0e\x3a\xfe\xdf\x03\xc6\xff\x03\x00\x00\x80" "\x85\x55\x7f\x56\xaf\xfd\xfa\xc4\xde\xb2\x69\xbf\xc5\x56\x2f\xbf\xdc\x89" "\x78\x7a\x6c\x7d\xa0\x30\xe9\x64\x99\xd5\xb6\xfb\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x25\xe9\xef\x1e\xc3\x7b\xb9\x13\x31\x88\x88\xa7\x57" "\x57\xab\xaa\xaa\x2f\x4d\xe3\xf5\xe3\x3a\xe8\xf5\x8f\xba\xd2\xb7\x1f\x4a" "\xd6\xf6\x93\x3c\x00\x00\xec\xfa\xe8\xc4\xd8\xb9\xfc\x9d\x88\xe5\x88\xb8" "\x9c\x7e\xeb\x6f\xb0\xba\xba\x5a\x55\xcb\x2b\xab\xd5\x6a\xb5\xb2\x94\xdf" "\xcf\x0e\x97\x96\xab\x95\xc6\xe7\xda\x3c\xad\x97\x2d\x0d\xf7\xf1\x86\xb8" "\x3f\xac\xea\x1b\x5b\x6e\x5c\xaf\x69\xd6\xe7\xe5\x59\xed\xe3\xb7\x57\xdf" "\xd7\xb0\xea\xed\xa3\x63\x4f\xc8\x20\xfd\x35\xa7\x34\xb7\x14\x36\x00\x24" "\xbb\xaf\x46\xf7\xbc\x22\x1d\x33\x55\xf5\xcc\xb4\x37\x1f\x30\xc2\xfe\x7f" "\xfc\xd8\xff\xd9\x8f\xb6\x1f\xa7\x00\x00\x00\xc0\xe1\xab\xaa\xaa\xea\xa4" "\x9f\xf3\x3e\x99\xbe\xf3\xef\xb6\xdd\x29\x00\x60\x2e\xf2\xeb\xff\xf8\xf7" "\x02\x87\x52\x47\x1c\xee\xed\xab\xd5\x6a\xb5\x5a\xad\x7e\x64\xdd\x54\x4d" "\x76\xb7\x59\x44\xc4\x56\xf3\x3a\xf5\x7b\x06\xc3\xf1\x03\xc0\x11\xb3\x15" "\x9f\xb4\xdd\x05\x5a\x24\xff\xa2\xf5\x23\xe2\xf9\xb6\x3b\x01\x2c\xb4\x4e" "\xdb\x1d\xe0\x50\xdc\xbb\x7f\x67\xa3\x93\xf2\xed\x34\x5f\x0f\xd2\xf8\xee" "\xf9\x58\x90\x91\xfc\xb7\x3a\x3b\xd7\xcb\xd7\x9f\x34\x9d\x65\xfc\x18\x93" "\x79\x3d\xbe\xb6\xa3\x17\xcf\x4e\xe9\xcf\x73\x73\xea\xc3\x22\xc9\xf9\x77" "\xc7\xf3\xbf\xb2\xdb\x3e\x4c\xeb\x1d\x76\xfe\xf3\x32\x2d\xff\x7a\x3b\xd7" "\x5a\xe8\x4f\xdb\x72\xfe\xbd\xf1\xfc\xc7\x1c\x9f\xfc\xbb\x13\xf3\x2f\x55" "\xce\xbf\xff\x58\xf9\xf7\xe4\x0f\x00\x00\x00\x00\x00\x0b\x2c\xff\xff\xff" "\x9a\xef\x7f\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\x91\x73\xef\xfe\x9d" "\x8d\x7c\xde\x6b\xfe\xfe\xff\x33\x13\xd6\x73\xfe\xe7\xf1\x94\xf3\xef\xc8" "\xbf\x48\x39\xff\xee\x58\xfe\x5f\x1c\x5b\xaf\xd7\x98\xff\xf8\xad\xbd\xfc" "\xff\x75\xff\xce\xc6\xef\x6e\xfd\xf3\xd3\x79\xba\xdf\xfc\x97\xf2\x4c\x27" "\x3d\xb2\x3a\xe9\x11\xd1\x49\xf7\xd4\xe9\xa7\xe9\x41\xb6\xee\x61\xdb\x83" "\xde\xb0\xbe\xa7\x41\xa7\xdb\xeb\xa7\x63\x7e\xaa\xc1\xbb\x71\x2d\xae\xc7" "\x66\x9c\x1d\x59\xb7\x9b\xfe\x1e\x7b\xed\xe7\x46\xda\xeb\x9e\x0e\x46\xda" "\xcf\x8f\xb4\xf7\x1f\x6a\xbf\x30\xd2\x3e\x48\xbf\x3b\x50\xad\xe4\xf6\xd3" "\xb1\x11\x3f\x8a\xeb\xf1\xce\x4e\x7b\xdd\xb6\x34\x63\xfb\x97\x67\xb4\x57" "\x33\xda\x73\xfe\x3d\xfb\x7f\x91\x72\xfe\xfd\xc6\xa5\xce\x7f\x35\xb5\x77" "\xc6\xa6\xd1\xd8\x35\x9b\xfb\x7d\x73\x3a\xe9\x7e\xde\xbc\xf6\xd9\x5f\x9c" "\x3d\xe4\x6d\xd9\x8f\xed\xe8\x3d\xd8\xb6\xa6\x7a\xfb\x4e\xb5\xd0\x9f\x9d" "\xbf\xc9\x53\xc3\xf8\xc9\xcd\xcd\x1b\xa7\x6f\x5f\xbd\x75\xeb\xc6\xb9\x48" "\x93\x91\xa5\xe7\x23\x4d\x9e\xb0\x9c\xff\x60\xe7\xb2\xb4\xf7\xfc\xff\xe2" "\x6e\x7b\x7e\xde\x6f\xee\xaf\x1f\xff\x7c\xf8\xd0\xf3\xfe\xac\xfc\x17\xc5" "\x76\xf4\xa7\xe6\xff\x62\x63\xbe\xde\xde\x97\xe7\xdc\xb7\x36\xe4\xfc\x87" "\xe9\x92\xf3\x7f\x27\xb5\x4f\xda\xff\x8f\x76\xfe\xd3\xf7\xff\x57\x5a\xe8" "\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x4a\x55\x55\x3b" "\xa7\x88\xbe\x19\x11\x17\xd3\xf9\x3f\x6d\x9d\x9b\x09\x00\xcc\x57\x7e\xfd" "\xaf\x92\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xf1\xab\x9b\xaa\xc9\xde\x68\x16" "\x11\xf1\x97\xe6\x75\xea\xf7\x0c\x3f\x9b\x74\x63\x00\xc0\x22\xfb\x6f\x44" "\xfc\xbd\xed\x4e\xd0\x1a\xf9\x17\x2c\xff\xde\x5f\x3d\x7d\xa9\xed\xce\x00" "\x73\x75\xf3\x83\x0f\x7f\x70\xf5\xfa\xf5\xcd\x1b\x37\xdb\xee\x09\x00\x00" "\x00\x00\x00\x00\x00\xf0\xff\xca\xe3\x7f\xae\x37\xc6\x7f\x7e\x29\x22\xd6" "\xc6\xd6\x1b\x19\xff\xf5\xad\x58\x3f\xe8\xf8\x9f\xfd\x3c\xf3\x60\x80\xd1" "\x27\x3c\xd0\xf7\x14\xdb\xdd\x61\xaf\xdb\x18\x6e\xfc\x85\xd8\x19\x9f\xfb" "\xf4\xb4\xf1\xbf\x4f\xc5\xa3\xc7\xff\xee\xcf\xb8\xbf\xc1\x8c\xf6\xe1\x8c" "\xf6\xa5\x19\xed\xcb\x13\x97\xee\xa5\x35\xf1\x44\x8f\x86\x9c\xff\x0b\x8d" "\xf1\xce\xeb\xfc\x4f\x8e\x0d\xbf\x5e\xc2\xf8\xaf\xe3\x63\xde\x97\x20\xe7" "\x7f\xaa\xf1\x78\xae\xf3\xff\xc2\xd8\x7a\xcd\xfc\xab\xdf\x2c\x5c\xfe\x5b" "\xfb\x5d\x71\x3b\xba\x23\xf9\x9f\xb9\xf5\xfe\x8f\xcf\xdc\xfc\xe0\xc3\x57" "\xaf\xbd\x7f\xf5\xbd\xcd\xf7\x36\x7f\x78\xe1\xdc\xb9\xb3\x17\x2e\x5e\xbc" "\x74\xe9\xd2\x99\x77\xaf\x5d\xdf\x3c\xbb\xfb\xef\xe1\xf4\x7a\x01\xe4\xfc" "\xf3\xd8\xd7\x8e\x03\x2d\x4b\xce\x3f\x67\x2e\xff\xb2\xe4\xfc\x3f\x97\x6a" "\xf9\x97\x25\xe7\xff\xf9\x54\xcb\xbf\x2c\x39\xff\xfc\x7e\x4f\xfe\x65\xc9" "\xf9\xe7\xcf\x3e\xf2\x2f\x4b\xce\xff\xe5\x54\xcb\xbf\x2c\x39\xff\x2f\xa5" "\x5a\xfe\x65\xc9\xf9\xbf\x92\x6a\xf9\x97\x25\xe7\xff\xe5\x54\xcb\xbf\x2c" "\x39\xff\x57\x53\x2d\xff\xb2\xe4\xfc\x4f\xa7\x5a\xfe\x65\xc9\xf9\x9f\x49" "\xf5\x3e\xf2\xf7\xf3\xf0\xc7\x48\xce\x3f\x7f\xc3\x65\xff\x2f\x4b\xce\x3f" "\x1f\xd9\x20\xff\xb2\xe4\xfc\xcf\xa7\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc" "\xcb\x92\xf3\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\x2b\xa9\x96\x7f\x59\x72\xfe" "\x17\x53\x2d\xff\xb2\xe4\xfc\xbf\x9a\x6a\xf9\x97\x25\xe7\x7f\x29\xd5\xf2" "\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59\x72\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3" "\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\x1b\xa9\x96\x7f\x59\x72\xfe\xdf\x4c\xb5" "\xfc\xcb\x92\xf3\xff\x56\xaa\xe5\x5f\x96\x9c\xff\x1b\xa9\x96\x7f\x59\xf6" "\x7e\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xdb\xcf\x4c\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\xb8\x79\x1c\x4e\xdc\xf6\x36\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xff\xd8\x81\x03\x01\x00\x00\x00\x00" "\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\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\xf6\xee\x35\x46\xae\xb3\xbe\x1f\xf8\x99\xbd\xd8\x6b\x87\x10\x03\x21" "\x38\xf9\x1b\xb2\x76\x8c\x31\xce\x92\x5d\x5f\xe2\x0b\xff\xba\x98\x70\x6d" "\x80\x52\x20\xa1\xd0\x0b\xb6\xeb\x5d\x9b\x05\xdf\xf0\xda\x25\x50\x24\x9b" "\x06\x4a\x24\x1c\x15\x55\x54\x4d\x5f\xb4\x05\x14\xb5\x91\xaa\x0a\xab\xe2" "\x05\xad\x52\x9a\x17\x55\x2f\xaf\x9a\xf6\x05\x7d\x53\x51\x55\x42\x6a\x54" "\x05\x14\x90\x90\xda\x8a\x66\xab\x99\xf3\x3c\xcf\xce\xcc\xce\xce\xec\xda" "\xe3\xcd\xec\x79\x3e\x1f\x29\xf9\xd9\x33\x67\xe6\x9c\x39\xf3\xcc\xec\x7e" "\x37\xf9\xee\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xb3\xad\x6f\x9b\xf9" "\x52\xad\x28\x8a\xfa\x3f\x8d\x7f\x6d\x2a\x8a\x97\xd5\xff\xbc\x61\x7c\x53" "\xe3\xb2\x37\xbf\xd4\x47\x08\x00\x00\x00\xdc\xa8\xff\x6d\xfc\xfb\x85\xdb" "\xd2\x05\x47\x96\x71\xa3\xa6\x6d\xfe\xee\x75\xff\xf8\xad\xf9\xf9\xf9\xf9" "\xe2\x23\xc3\xbf\x3b\xfa\xd5\xf9\xf9\x74\xc5\x78\x51\x8c\xae\x2f\x8a\xc6" "\x75\xd1\xb5\x7f\xff\x68\xad\x79\x9b\xe0\xd1\x62\xac\x36\xd4\xf4\xf7\xa1" "\x1e\xbb\x1f\xee\x71\xfd\x48\x8f\xeb\x47\x7b\x5c\xbf\xae\xc7\xf5\xeb\x7b" "\x5c\x3f\xd6\xe3\xfa\x45\x27\x60\x91\x0d\xe5\xcf\x63\x1a\x77\xb6\xbd\xf1" "\xc7\x4d\xe5\x29\x2d\x6e\x2f\x46\x1b\xd7\x6d\xef\x70\xab\x47\x6b\xeb\x87" "\x86\xe2\xcf\x72\x1a\x6a\x8d\xdb\xcc\x8f\x9e\x2c\x66\x8b\xd3\xc5\x4c\x31" "\xd5\xb2\x7d\xb9\x6d\xad\xb1\xfd\xd3\x5b\xeb\xfb\x7a\x77\x11\xf7\x35\xd4" "\xb4\xaf\x2d\xf5\x15\xf2\xa3\xcf\x9d\x88\xc7\x50\x0b\xe7\x78\x7b\xcb\xbe" "\x16\xee\x33\xfa\xc1\x5b\x8b\xf1\x1f\xff\xe8\x73\x27\xfe\xf8\xe2\xf3\x77" "\x76\x9a\x3d\x4f\x43\xcb\xfd\x95\xc7\xb9\x73\x5b\xfd\x38\xbf\x10\x2e\x29" "\x8f\xb5\x56\xac\x4f\xe7\x24\x1e\xe7\x50\xd3\x71\x6e\xe9\xf0\x9c\x0c\xb7" "\x1c\x67\xad\x71\xbb\xfa\x9f\xdb\x8f\xf3\x85\x65\x1e\xe7\xf0\xc2\x61\xae" "\xaa\xf6\xe7\x7c\xac\x18\x6a\xfc\xf9\xd9\xc6\x79\x1a\x69\xfe\xb1\x5e\x3a" "\x4f\x5b\xc2\x65\xff\x75\x4f\x51\x14\x57\x16\x0e\xbb\x7d\x9b\x45\xfb\x2a" "\x86\x8a\x8d\x2d\x97\x0c\x2d\x3c\x3f\x63\xe5\x8a\xac\xdf\x47\x7d\x29\xbd" "\xb2\x18\x59\xd1\x3a\xdd\xba\x8c\x75\x5a\x9f\xd3\xdb\x5b\xd7\x69\xfb\x6b" "\x22\x3e\xff\x5b\xc3\xed\x46\x96\x38\x86\xe6\xa7\xe9\x07\x9f\x5f\xb7\xe8" "\x79\x5f\xe9\x3a\x8d\xea\x8f\x7a\xa9\xd7\x4a\xfb\x1a\xec\xf7\x6b\x65\x50" "\xd6\x60\x5c\x17\xcf\x36\x1e\xf4\x63\x1d\xd7\xe0\xf6\xf0\xf8\x3f\xb7\x63" "\xe9\x35\xd8\x71\xed\x74\x58\x83\xe9\x71\x37\xad\xc1\x6d\xbd\xd6\xe0\xd0" "\xba\xe1\xc6\x31\xa7\x27\xa1\xd6\xb8\xcd\xc2\x1a\xdc\xdd\xb2\xfd\x70\x63" "\x4f\xb5\xc6\x7c\x6e\x47\xf7\x35\x38\x79\xf1\xcc\xf9\xc9\xb9\xcf\x7c\xf6" "\x4d\xb3\x67\x8e\x9f\x9a\x39\x35\x73\x76\xef\xee\xdd\x53\x7b\xf7\xef\x3f" "\x78\xf0\xe0\xe4\xc9\xd9\xd3\x33\x53\xe5\xbf\xaf\xf3\x6c\x0f\xbe\x8d\xc5" "\x50\x7a\x0d\x6c\x0b\xe7\x2e\xbe\x06\xde\xd0\xb6\x6d\xf3\x52\x9d\xff\x7a" "\xff\x5e\x87\x63\x5d\x5e\x87\x9b\xda\xb6\xed\xf7\xeb\x70\xa4\xfd\xc1\xd5" "\x56\xe7\x05\xb9\x78\x4d\x97\xaf\x8d\x87\xea\x27\x7d\xec\xea\x50\xb1\xc4" "\x6b\xac\xf1\xfc\xec\xba\xf1\xd7\x61\x7a\xdc\x4d\xaf\xc3\x91\xa6\xd7\x61" "\xc7\xaf\x29\x1d\x5e\x87\x23\xcb\x78\x1d\xd6\xb7\x39\xbf\x6b\x79\xdf\xb3" "\x8c\x34\xfd\xd3\xe9\x18\x6e\xd6\xd7\x82\x4d\x4d\x6b\xb0\xfd\xfb\x91\xf6" "\x35\xd8\xef\xef\x47\x06\x65\x0d\x8e\x85\x75\xf1\xaf\xbb\x96\xfe\x5a\xb0" "\x25\x1c\xef\x63\x13\x2b\xfd\x7e\x64\x78\xd1\x1a\x4c\x0f\x37\xbc\xf7\xd4" "\x2f\x49\xdf\xef\x8f\x1d\x6c\x8c\x4e\xeb\xf2\xae\xfa\x15\xb7\xac\x2b\x2e" "\xcd\xcd\x5c\xb8\xef\x91\xe3\x17\x2f\x5e\xd8\x5d\x84\xb1\x2a\x5e\xd5\xb4" "\x56\xda\xd7\xeb\xc6\xa6\xc7\x54\x2c\x5a\xaf\x43\x2b\x5e\xaf\x47\x66\x5f" "\xf7\xd8\x5d\x1d\x2e\xdf\x14\xce\xd5\xd8\x9b\xea\xff\x1a\x5b\xf2\xb9\xaa" "\x6f\xb3\xef\xbe\xee\xcf\x55\xe3\xab\x5b\xe7\xf3\xd9\x72\xe9\x9e\x22\x8c" "\x3e\x5b\xed\xf3\xd9\xe9\xab\x79\xfd\x7c\xa6\x2c\xd9\xe5\x7c\xd6\xb7\xf9" "\xc2\xe4\x8d\x7f\x2f\x9e\x72\x69\xd3\xfb\xef\xe8\x12\xef\xbf\x31\xf7\xbf" "\x58\xee\x2f\xdd\xd5\xa3\xc3\xa3\x23\xe5\xeb\x77\x38\x9d\x9d\xd1\x96\xf7" "\xe3\xd6\xa7\x6a\xa4\xf1\xde\x55\x6b\xec\xfb\x85\xc9\xe5\xbd\x1f\x8f\x86" "\x7f\x56\xfb\xfd\xf8\xf6\x2e\xef\xc7\x9b\xdb\xb6\xed\xf7\xfb\xf1\x68\xfb" "\x83\x8b\xef\xc7\xb5\x5e\x3f\xed\x58\x74\x38\x2b\xd2\xfe\x7c\x8e\x85\x75" "\x72\x7a\xaa\xfb\xfb\x71\x7d\x9b\xcd\x7b\x56\xba\x26\x47\xba\xbe\x1f\xdf" "\x13\x66\x2d\x9c\xff\x37\x86\xa4\x90\x72\x51\xd3\xda\x59\x6a\xdd\xa6\x7d" "\x8d\x8c\x8c\x86\xc7\x35\x12\xf7\xd0\xba\x4e\xf7\xb6\x6c\x3f\x1a\xb2\x59" "\x7d\x5f\x4f\xed\xb9\xbe\x75\xba\xf3\x9e\xf2\xbe\x86\xd3\xa3\x5b\xb0\x5a" "\xeb\x74\xbc\x6d\xdb\x7e\xaf\xd3\xf4\x7e\xb5\xd4\x3a\xad\x5d\xf7\x52\xec" "\xaa\xfd\xf9\x1c\x0b\xeb\xe2\xf6\xbd\xdd\xd7\x69\x7d\x9b\x67\xf6\xdd\xf8" "\x7b\xe7\x86\xf8\xc7\xa6\xf7\xce\x75\xbd\xd6\xe0\xe8\xf0\xba\xfa\x31\x8f" "\xa6\x45\x58\xbe\xdf\xcf\x6f\x88\x6b\xf0\xbe\xe2\x44\x71\xae\x38\x5d\x4c" "\x37\xae\x5d\xd7\x58\x4f\xb5\xc6\xbe\x26\xee\x5f\xde\x1a\x5c\x17\xfe\x59" "\xc9\x7b\x65\xd1\xe1\xf9\x5f\xe9\x1a\xdc\xdc\x65\x0d\xee\x6c\xdb\xb6\xdf" "\x6b\x30\x7d\x1d\x5b\x6a\xed\xd5\x46\x16\x3f\xf8\x3e\x68\x7f\x3e\xc7\xc2" "\xba\x78\xe2\xfe\xee\x6b\xb0\xbe\xcd\xdb\x0f\xf4\xf7\x7b\xd7\x9d\xe1\x92" "\xb4\x4d\xd3\xf7\xae\xed\x3f\x5f\x5b\xea\x67\x5e\x77\xb5\x9d\xa6\x9b\xf9" "\x33\xaf\xfa\x71\xfe\xcd\x81\xee\x3f\x9b\xad\x6f\x73\xfa\xe0\x4a\x73\x66" "\xf7\xf3\x74\x6f\xb8\xe4\x96\x0e\xe7\xa9\xfd\xf5\xbb\xd4\x6b\x6a\xba\x58" "\x9d\xf3\xb4\x39\x1c\xe7\xf3\x07\x97\x3e\x4f\xf5\xe3\xa9\x6f\xf3\xd5\x43" "\xcb\x5c\x4f\x47\x8a\xa2\xb8\xfc\xa9\x07\x1a\x3f\xef\x0d\xff\x7d\xe5\xcf" "\x2f\x7d\xf7\x5b\x2d\xff\xdd\xa5\xd3\x7f\xd3\xb9\xfc\xa9\x07\x7e\x78\xeb" "\xc9\xbf\x5d\xc9\xf1\x03\xb0\xf6\xbd\x58\x8e\x8d\xe5\xd7\xba\xa6\xff\x32" "\xb5\x9c\xff\xfe\x0f\x00\x00\x00\xac\x09\x31\xf7\x0f\x85\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xc7\xff\x2b\x3c\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x1f\x09\x33\xc9\x24\xff\x6f\x7e\xfb\xf3\xb3\x2f\x5e\x2e\x52\x33\x7f" "\x3e\x88\xd7\xa7\xd3\xf0\x60\xb9\x5d\xec\xb8\x4e\x85\xbf\x8f\xcf\x2f\xa8" "\x5f\xfe\xc0\x93\x33\x3f\xf9\xcb\xcb\xcb\xdb\xf7\x50\x51\x14\x3f\x7d\xf0" "\x37\x3a\x6e\xbf\xf9\xc1\x78\x5c\xa5\xf1\x70\x9c\xd7\xde\xd1\x7a\xf9\xe2" "\x1b\x5e\x5e\xd6\xfe\x8f\x3d\xbc\xb0\x5d\x73\x7f\xfd\x6b\xe1\xfe\xe3\xe3" "\x59\xee\x32\xe8\x54\xc1\x9d\x2a\x8a\xe2\xe9\xdb\x1e\x6f\xec\x67\xfc\xa3" "\x57\x1b\xf3\x99\x07\x8f\x35\xe6\x07\xaf\x3c\xf6\x68\x7d\x9b\x17\x0e\x95" "\x7f\x8f\xb7\x7f\xee\x55\xe5\xf6\x7f\x10\xca\xbf\x47\x4e\x1e\x6f\xb9\xfd" "\x73\xe1\x3c\x7c\x3f\xcc\xa9\xf7\x74\x3e\x1f\xf1\x76\xdf\xbc\xfa\xc6\x2d" "\x07\x3e\xbc\xb0\xbf\x78\xbb\xda\xb6\x97\x37\x1e\xf6\x13\x1f\x2b\xef\x37" "\xfe\x9e\x9c\xaf\x3c\x5a\x6e\x1f\xcf\xf3\x52\xc7\xff\x57\x5f\x7e\xea\x9b" "\xf5\xed\x1f\x79\x7d\xe7\xe3\xbf\x3c\xd4\xf9\xf8\x9f\x0a\xf7\xfb\x64\x98" "\xff\xfd\xda\x72\xfb\xe6\xe7\xa0\xfe\xf7\x78\xbb\x2f\x86\xe3\x8f\xfb\x8b" "\xb7\xbb\xef\x1b\xdf\xe9\x78\xfc\xd7\xbe\x54\x6e\x7f\xfe\x9d\xe5\x76\xc7" "\xc2\x8c\xfb\xdf\x19\xfe\xbe\xfd\x9d\xcf\xcf\x36\x9f\xaf\x47\x6a\xc7\x5b" "\x1e\x57\xf1\xae\x72\xbb\xb8\xff\xa9\xef\xfe\x76\xe3\xfa\x78\x7f\xf1\xfe" "\xdb\x8f\x7f\xec\xe8\xd5\x96\xf3\xd1\xbe\x3e\x9e\xf9\xe7\xf2\x7e\x26\xdb" "\xb6\x8f\x97\xc7\xfd\x44\x7f\xd1\xb6\xff\xfa\xfd\x34\xaf\xcf\xb8\xff\xa7" "\x7e\xeb\x58\xcb\x79\xee\xb5\xff\x6b\x1f\x7c\xee\xb5\xf5\xfb\x6d\xdf\xff" "\xbd\x6d\xdb\x0d\xb7\xdd\xbe\xfd\x37\x36\xfd\xe1\x17\x1f\xef\xb8\xbf\x78" "\x3c\x47\xfe\xec\x7c\xcb\xe3\x39\xf2\x81\xf0\x3a\x0e\xfb\x7f\xe2\x63\x61" "\x3d\x86\xeb\xff\xe7\xda\xe3\x2d\xfb\x8d\x8e\x7d\xa0\xf5\xfd\x27\x6e\xff" "\xb5\x4d\x97\x5b\x1e\x4f\xf4\xee\x1f\x97\xfb\xbf\xf6\x96\x53\x8d\xf9\x1f" "\xe3\x3f\xf9\xfd\x5b\x5e\x76\xeb\xcb\xaf\xdc\x5d\x3f\x77\x45\xf1\xec\x87" "\xca\xfb\xeb\xb5\xff\x53\x7f\x74\xae\xe5\xf8\xbf\x7e\xc7\xae\xc6\xf3\x11" "\xaf\x8f\x1d\xfd\xf6\xfd\x2f\x25\xee\xff\xc2\xa7\x27\xce\x9e\x9b\xbb\x34" "\x3b\xdd\x74\x56\x1b\xbf\x3b\xe7\xbd\xe5\xf1\xac\x1f\xdb\xb0\xb1\x7e\xbc" "\xb7\x85\xf7\xd6\xf6\xbf\x1f\x3d\x77\xf1\xe3\x33\x17\xc6\xa7\xc6\xa7\x8a" "\x62\xbc\xba\xbf\x42\xef\xba\x7d\x23\xcc\x1f\x96\xe3\xca\x4a\x6f\xbf\xeb" "\xe1\xf0\x7c\xde\xf5\x7b\x4f\x6f\xdc\xf1\x4f\x5f\x8e\x97\xff\xcb\x43\xe5" "\xe5\x57\xdf\x53\x7e\xdd\x7a\x43\xd8\xee\x2b\xe1\xf2\x4d\xe5\xf3\x37\x5f" "\xbb\xc1\xfd\x3f\xb1\xf5\x8e\xc6\xeb\xbb\xf6\x4c\xf9\xf7\x96\x1e\x7b\x1f" "\x6c\xd9\xfe\x9f\x07\x97\xb5\x61\x78\xfc\xed\xdf\x17\xc4\xf5\x7e\xfe\xd5" "\x1f\x6f\x9c\x87\xfa\x75\x8d\xaf\x1b\xf1\x75\x7d\x83\xc7\xff\xbd\xe9\xf2" "\x7e\xbe\x1d\xce\xeb\x7c\xf8\xcd\xcc\xdb\xee\x58\xd8\x5f\xf3\xf6\xf1\x77" "\x23\x5c\xfd\x50\xf9\x7a\xbf\xe1\xf3\x17\xde\xe6\xe2\xf3\xfa\x27\xe1\xf9" "\x7e\xdf\xf7\xcb\xfb\x8f\xc7\x15\x1f\xef\xf7\xc2\xf7\x31\xdf\xd9\xdc\xfa" "\x7e\x17\xd7\xc7\xb7\x2f\x0f\xb5\xdf\x7f\xe3\xb7\x78\x5c\x09\xef\x27\xc5" "\x95\xf2\xfa\xb8\x55\x3c\xdf\x57\x5f\xb8\xa3\xe3\xe1\xc5\xdf\x43\x52\x5c" "\xb9\xb3\xf1\xf7\xdf\x49\xf7\x73\xe7\x8a\x1e\xe6\x52\xe6\x3e\x33\x37\x79" "\x7a\xf6\xec\xa5\x47\x26\x2f\xce\xcc\x5d\x9c\x9c\xfb\xcc\x67\x8f\x9e\x39" "\x77\xe9\xec\xc5\xa3\x8d\xdf\xe5\x79\xf4\x13\xbd\x6e\xbf\xf0\xfe\xb4\xb1" "\xf1\xfe\x34\x3d\xb3\x7f\x5f\x31\xb5\xa1\x28\x8a\x73\xc5\xd4\x2a\xbc\x61" "\xdd\x9c\xe3\xaf\xff\x69\x79\xc7\x7f\xfe\xe1\x13\xd3\x07\xa6\x76\x4c\xcf" "\x9c\x3c\x7e\xe9\xe4\xc5\x87\xcf\xcf\x5c\x38\x75\x62\x6e\xee\xc4\xcc\xf4" "\xdc\x8e\xe3\x27\x4f\xce\x7c\xba\xd7\xed\x67\xa7\x0f\xef\xde\x73\x68\xef" "\x81\x3d\x13\xa7\x66\xa7\x0f\x1f\x3c\x74\x68\xef\xa1\x89\xd9\xb3\xe7\xea" "\x87\x51\x1e\x54\x0f\xfb\xa7\x3e\x39\x71\xf6\xc2\xd1\xc6\x4d\xe6\x0e\xef" "\x3b\xb4\xfb\xfe\xfb\xf7\x4d\x4d\x9c\x39\x37\x3d\x73\xf8\xc0\xd4\xd4\xc4" "\xa5\x5e\xb7\x6f\x7c\x6d\x9a\xa8\xdf\xfa\xd7\x27\x2e\xcc\x9c\x3e\x7e\x71" "\xf6\xcc\xcc\xc4\xdc\xec\x67\x67\x0e\xef\x3e\xb4\x7f\xff\x9e\x9e\xbf\x0d" "\xf0\xcc\xf9\x93\x73\xe3\x93\x17\x2e\x9d\x9d\xbc\x34\x37\x73\x61\xb2\x7c" "\x2c\xe3\x17\x1b\x17\xd7\xbf\xf6\xf5\xba\x3d\xd5\x34\xf7\x6f\xe5\xf7\xb3" "\xed\x6a\xe5\x2f\xe2\x2b\xde\x7f\xef\xfe\xf4\xfb\x59\xeb\x9e\xfc\xfc\x92" "\x77\x55\x6e\xd2\xf6\x0b\x44\x9f\x0f\xbf\x8b\xe6\x1f\x5e\x71\xfe\xe0\x72" "\xfe\x1e\x73\xff\x68\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xba" "\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf5\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x63\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\xe5\xf5\xff" "\xcb\xeb\xf5\xff\xf3\xea\xff\x9f\xff\x54\xd9\x2b\x5d\xeb\xfd\xff\xd8\x9f" "\xd7\xff\xcf\xc3\x4b\xdc\xff\xbf\xe1\xfd\xeb\xff\xeb\xff\x57\xaf\xff\xbf" "\xfc\xfe\xfc\x5a\x3f\x7e\xfd\x7f\xfd\x7f\x16\x1b\xb4\xfe\x7f\xcc\xfd\x1b" "\x8a\x22\xcb\xfc\x0f\x00\x00\x00\x39\x88\xb9\x7f\x63\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x2f\x0b\x33\xc9\x24\xff\xeb\xff\x2f\xab\xff\xbf\xa7\x57\xe1\xaa\xfa\xfd" "\x7f\x9f\xff\xaf\xff\x5f\xac\xcd\xfe\x7f\x7c\x72\xf4\xff\xb3\xb1\xe2\xfe" "\xfd\x87\x1f\x6a\xf9\xab\xfe\x7f\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x0d\x1b\x5d\xf2\x9a\x97\xaa\xff\x1f\x73\xff\xad\x61\x26\x99\xe4\x7f" "\x00\x00\x00\xc8\x41\xcc\xfd\x2f\x0f\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x53\x98\x49\x26" "\xf9\x5f\xff\xdf\xe7\xff\xeb\xff\xeb\xff\x57\xba\xff\x7f\xa3\x9f\xff\xdf" "\x74\x30\xfa\xff\x6b\x83\xcf\xff\xef\xae\x43\xff\xff\xee\x8e\x1b\xea\xff" "\xaf\xb0\xff\x3f\xa6\xff\xbf\x16\xfb\xff\xa3\xfd\x3d\xfe\xc1\xee\xff\xf7" "\x3c\x7c\xfd\x7f\x6e\x8a\x41\xfb\xfc\xff\x98\xfb\x5f\x11\x66\x92\x49\xfe" "\x07\x00\x00\x80\x1c\xc4\xdc\xff\xca\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x1e\x66\x92" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\xff\xde\x9f\xff" "\x5f\xfe\x49\xff\x7f\xb0\xe8\xff\x77\xe7\xf3\xff\x7b\xf0\xf9\xff\x79\xf5" "\xff\xfb\x7c\xfc\x83\xdd\xff\xef\xf7\xe7\xff\x8f\xbe\xa3\xfd\xf6\xfa\xff" "\x74\x32\x68\xfd\xff\x98\xfb\x5f\x1d\x66\x92\x49\xfe\x07\x00\x00\x80\x1c" "\xc4\xdc\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6b\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x37\x87\x99\x64\x92\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xef\xbf\x77\xff\xbf\xa4\xff\x3f\x58\xf4" "\xff\xbb\xeb\x77\xff\x7f\xb8\xed\x72\xfd\xff\x92\xfe\xbf\xfe\x7f\xe5\xfb" "\xff\x1d\xbe\xf9\xd5\xff\xa7\x93\x41\xeb\xff\xc7\xdc\x7f\x67\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x5d\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\xff\x2f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98" "\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x3f\xaf\xfe\xff\xbd\xeb\xf4\xff\xf5" "\xff\xab\x4d\xff\xbf\x3b\x9f\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xff\x32\x3f" "\xff\x7f\xb1\x95\xf4\xff\xd7\xf7\xba\x33\x2a\x63\xd0\xfa\xff\x31\xf7\xbf" "\x36\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x75\x61\x26\xf2\x3f" "\x00\x00\x00\x54\x46\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\x8f\x87\x99\x64\x92\xff\xf5\xff\xab\xd5\xff\xff\xd3\xbf\x7e\xe2\xee" "\x42\xff\x5f\xff\xbf\xc7\xfe\x2b\xda\xff\x8f\xcb\x40\xff\x3f\x73\xfa\xff" "\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xbf\x2a\xfd\x7f\xf2\x31\x68\xfd" "\xff\x98\xfb\xb7\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x6f\x0b" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x27\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\x7f\x7b\x98\x49\x26\xf9\x5f\xff\xbf\x5a\xfd\xff\x48\xff" "\x5f\xff\xbf\xdb\xfe\x2b\xda\xff\x4f\xf4\xff\xf3\xa6\xff\xdf\x41\xd3\x8b" "\x54\xff\xbf\x07\xfd\x7f\xfd\xff\xec\xfb\xff\xf1\xbb\x5f\xfd\x7f\xfa\x63" "\xd0\xfa\xff\x31\xf7\xbf\x3e\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9" "\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x1b\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8c\x98\xfb\x77\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff\x7f\x6d\xd2\xff\xef\x4e\xff\xbf\x07" "\xfd\x7f\xfd\xff\xec\xfb\xff\x3e\xff\x9f\xfe\x1a\xb4\xfe\x7f\xcc\xfd\x6f" "\x0c\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x15\x66\x22\xff\x03" "\x00\x00\x40\x65\xc4\xff\x7f\xb3\xfc\xff\x5e\xe5\x7f\x00\x00\x00\xa8\xa2" "\x98\xfb\x27\xc2\x4c\x32\xc9\xff\xfa\xff\xfa\xff\x39\xf5\xff\x6b\xfa\xff" "\xfa\xff\xfa\xff\x95\xa7\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\x7f\x53\x98\x49\x26\xf9\x1f\x00\x00" "\x00\x72\x10\x73\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x93" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x53\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\xff\x9c\xfa\xff\x3e\xff\xbf\xa5\xff\x3f\x56\x14\xfa\xff\xfa\xff" "\xd5\xa3\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\x55\xeb\xff\x17\x85\xfe" "\x3f\x2f\xa9\x41\xeb\xff\xc7\xdc\xbf\x3b\xcc\x24\x93\xfc\x0f\x00\x00\x00" "\x39\x88\xb9\x7f\x4f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xde\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x7d\x61\x26\x99\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x6c\xfb\xff\x3e\xff\x5f\xff\xbf\x92\xf4\xff\xbb\xd3\xff" "\xef\x41\xff\x5f\xff\xbf\x6a\xfd\x7f\x9f\xff\xcf\x4b\x6c\xd0\xfa\xff\x31" "\xf7\xdf\x1f\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x3f\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\x95" "\x11\x73\xff\xc1\x30\x93\x4c\xf2\xbf\xfe\x7f\x45\xfa\xff\xbf\xf9\xf7\x2d" "\xfb\xd6\xff\xd7\xff\xef\xb6\xff\xfe\xf4\xff\x37\xe8\xff\x87\xa9\xff\x3f" "\x58\x2a\xda\xff\x6f\x7f\x59\x5c\x37\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff" "\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\x7f\x28\xcc\x24\x93\xfc\x0f\x00\x00" "\x00\x39\x88\xb9\xff\xcd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xff" "\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x67\xc2\x4c\x32\xc9\xff" "\xfa\xff\x15\xe9\xff\xb7\xd1\xff\xd7\xff\xef\xb6\x7f\x9f\xff\xaf\xff\x5f" "\x65\x15\xed\xff\xf7\x8d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4" "\xd5\xcd\xef\xff\xc7\x3f\x2d\xaf\xff\x1f\x73\xff\xe1\x30\x93\x4c\xf2\x3f" "\x00\x00\x00\xe4\x20\xe6\xfe\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x7f\x4b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x91\x30\x93\x4c" "\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\xcd\xe9\xff\xbf\xa5\x68\x37\x88" "\xfd\xff\xfa\xe2\xd1\xff\xaf\x16\xfd\xff\xee\xf4\xff\x7b\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xa7\xaf\x06\xed\xf3\xff\x63\xee\x7f\x6b\x98\x49\x26\xf9" "\x1f\x00\x00\x00\x72\x10\x73\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x7b\x98\x49" "\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xe7\xff\x77\xde\xbf\xfe\xff" "\xda\xa4\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd5" "\xa0\xf5\xff\x63\xee\x7f\x47\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73" "\xff\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x15\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\xee\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xfd\xeb\xff\xaf\x4d\xfa\xff\xdd\xe9\xff\xf7" "\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6\xfe\x9f\x0b" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x30\xcc\x44\xfe\x07\x00" "\x00\x80\xca\x88\xb9\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\xef\x0d\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\xde" "\xbf\xfe\xff\xda\xa4\xff\xdf\x9d\xfe\x7f\x0f\x03\xd0\xff\xaf\x7f\x4d\xd3" "\xff\x5f\x9b\xc7\xaf\xff\xaf\xff\xcf\x62\x83\xd6\xff\x8f\xb9\xff\x7d\x61" "\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x3f\x1f\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x5f\x08\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x67\xd1\xff\xaf" "\xdf\x48\xff\x3f\x0b\xfa\xff\xdd\xe9\xff\xf7\xd0\xa1\xff\xbf\xde\xe7\xff" "\xeb\xff\xeb\xff\xeb\xff\x73\xdd\x06\xad\xff\x1f\x73\xff\x07\xc2\x4c\x32" "\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x3f\x18\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x87\xc2" "\x4c\x32\xc9\xff\xfa\xff\x59\xf6\xff\xd3\x43\xd6\xff\x2f\xe9\xff\x67\xd0" "\xff\xf7\xf9\xff\xd9\xd0\xff\xef\x4e\xff\xbf\x87\x01\xf8\xfc\x7f\xfd\xff" "\xb5\x7b\xfc\xfa\xff\xfa\xff\x2c\x36\x68\xfd\xff\x98\xfb\x1f\x0e\x33\xc9" "\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\x70\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x2f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x24" "\xcc\x24\x93\xfc\xaf\xff\x9f\x65\xff\xdf\xe7\xff\xaf\x5a\xff\x7f\xa4\x65" "\x7d\xe4\xd4\xff\x1f\x6b\x7a\x3e\xd3\xba\xd4\xff\xd7\xff\x5f\x05\xfa\xff" "\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\x3f\xc8\xfd\xff\xb0\x9a\x37\x2c\x71\x7b" "\xfd\x7f\x06\xd1\xa0\xf5\xff\x63\xee\xff\x68\x98\x49\x26\xf9\x1f\x00\x00" "\x00\x72\x10\x73\xff\x2f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff" "\x72\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xaf\x84\x99\x64\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\xbf\xcf\xff\xef\xbc\x7f\xfd\xff\xb5\x49" "\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\x07\xb9\xff\xdf\x83\xfe\x3f\x83" "\x68\xd0\xfa\xff\x31\xf7\xff\x6a\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10" "\x73\xff\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x8f\x86\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x1f\x0b\x33\xc9\x24\xff\xeb\xff\xb7\xf7" "\xff\xe3\x27\xaa\xf6\xa1\xff\x5f\x2b\x6a\x85\xfe\xbf\xfe\xbf\xfe\xff\xc2" "\xba\xd4\xff\xd7\xff\x5f\x05\xfd\xeb\xff\xbf\xe6\xd6\xa2\xd0\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xe7\x46\x0c\x5a\xff\x3f\xe6\xfe\xe3\x61" "\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xbf\x16\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f" "\x3a\xcc\x24\x93\xfc\xaf\xff\xef\xf3\xff\xfb\xd5\xff\xff\xa9\xfe\xbf\xfe" "\x7f\xa0\xff\xdf\x99\xfe\xff\xea\xf0\xf9\xff\xdd\xe9\xff\xf7\xa0\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6\xfe\x99\x30\x93\x4c\xf2" "\x3f\x00\x00\x00\x54\x58\xfa\x71\x70\xcc\xfd\x27\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x7f" "\x3c\xcc\x24\x93\xfc\xaf\xff\xbf\x0a\xfd\xff\x0d\xe1\x82\x8a\xf7\xff\x0b" "\xfd\xff\x15\xf4\xff\x47\x5a\xb6\xd7\xff\x2f\xe9\xff\xeb\xff\xf7\x83\xfe" "\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57\x83\xd6\xff" "\x8f\xb9\x7f\x36\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x13\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9f\x0c\x33\x91\xff\x01\x00\x00" "\xa0\x32\x62\xee\x3f\x1d\x66\x92\x49\xfe\xd7\xff\xf7\xf9\xff\xb9\xf7\xff" "\x6b\x45\x71\xc5\xe7\xff\xeb\xff\x77\xda\xbf\xfe\xff\xda\xa4\xff\xdf\x9d" "\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee" "\x3f\x13\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x36\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\x5c\x98\x89\xfc\x0f\x00\x00\xff\xc7\xde" "\x7d\x34\xd9\x75\x56\x7b\x1c\x3e\x76\xd9\x96\x34\xba\xf7\x1b\xdc\x3b\xbe" "\xa3\x3b\x84\x11\x5f\x81\x09\x03\x66\x54\x79\x4c\x95\x01\x93\x83\x31\x39" "\x83\xc9\x39\x98\x9c\x73\x4e\x26\xe7\x9c\xb3\xc9\x39\x9a\x60\x0c\x55\xa2" "\xdc\xbd\xd6\xb2\x5a\x7d\xb4\xb7\x2d\x1d\x75\xef\xfd\xae\xe7\x99\x2c\x5a" "\xe5\xe6\x9c\x96\x9a\x86\x3f\xaa\x5f\x6d\x80\x61\xe4\xee\xbf\x2a\x6e\x69" "\xb2\xff\xf5\xff\xfa\xff\xee\xfd\xff\xe6\x58\x9e\xff\x7f\xf0\x9f\xd7\xff" "\xef\xd3\xff\xeb\xff\x77\xe1\x50\x7f\x7f\xd9\x1d\xfb\xfc\x73\xf6\xff\xff" "\x7f\xa7\xab\xef\xa1\xff\xd7\xff\xeb\xff\x27\xe9\xff\xf5\xff\xfa\x7f\xce" "\xb6\xb4\xfe\x3f\x77\xff\xbd\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\x7f\xef\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x4f\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x5f\x1d\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\x7f\xa0\xff\xbf\x41\xff\xaf\xff\x5f\x37\xcf\xff\x9f\xa6\xff\x9f\xa1" "\xff\xd7\xff\xeb\xff\xf5\xff\xec\xd4\xd2\xfa\xff\xdc\xfd\xf7\x8d\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xfd\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xfe\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x80\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xcf\xff\xdf\xfe\xfa\xfa\xff\x75" "\xd2\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76\x6a\x69\xfd" "\x7f\xee\xfe\x07\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x41\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe0\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x48\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfb\xeb\xeb\xff\xd7\xe9\xfa\xcd\x6d\x3f\x13\xf4\xff\x87\xe9\xff\x67" "\xcc\xf4\xff\x9b\x8d\xfe\x7f\xca\xed\xee\xe7\xb7\x7f\x79\xeb\x79\xff\xe7" "\xa0\xff\xd7\xff\x73\xd8\xd2\xfa\xff\xdc\xfd\x0f\x8d\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\xc3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x78\xdc\xd2\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfb\xeb\xeb\xff\xd7\xc9\xf3\xff\xa7" "\x5d\x78\xff\xff\x7f\xff\x7d\xcf\x2b\xfb\xf6\xff\x9e\xff\x3f\xcd\xf3\xff" "\xf5\xff\xfa\x7f\xce\xb6\xb4\xfe\x3f\x77\xff\xb5\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\x7f\x44\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f" "\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x15\xb7\x34\xd9\xff\xfa" "\xff\x36\xfd\xff\x5e\xed\xa2\xff\xd7\xff\xeb\xff\xf5\xff\xa3\xd3\xff\x4f" "\xf3\xfc\xff\x19\x7b\x3f\xe6\x4e\xd5\x87\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x85\x59\x5a\xff\x9f\xbb\xff\xd1\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4" "\xee\x7f\x4c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x36\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x1f\x17\xb7\x34\xd9\xff\xfa\xff\x36\xfd\xbf" "\xe7\xff\xeb\xff\xf5\xff\xfa\xff\x16\xf4\xff\xd3\xf4\xff\x33\x46\x79\xfe" "\xff\x79\x7e\xd7\x1c\x77\x3f\x7f\xa1\x8e\xfb\xfd\xeb\xff\xf5\xff\x1c\xb6" "\xb4\xfe\x3f\x77\xff\xe3\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\x84\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x62\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x3f\x29\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x75\xf4\xff" "\xf9\x0a\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x4d\xff\x3f\x4d\xff\x3f\x63\x94" "\xfe\xff\x3c\x1d\x77\x3f\xbf\xf6\xf7\xaf\xff\xd7\xff\x73\xd8\xd2\xfa\xff" "\xdc\xfd\x4f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x53\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa9\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xb4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xd7\xd1\xff\xaf\xff\xf9" "\xff\x27\xf5\xff\xfa\x7f\xfd\xff\x91\xd0\xff\x4f\xd3\xff\xcf\xd0\xff\xeb" "\xff\xf5\xff\xfa\x7f\x76\x6a\x69\xfd\x7f\xee\xfe\xeb\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\x7f\x46\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x33\x6e\x69\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\xb7\xbf\xbe\xfe\x7f\x9d\xf4\xff" "\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x5a\x50\xff\x7f\xc6" "\x67\x9d\xdc\x3c\x2b\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x8e" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xe7\xc4\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x73\xe3\x96\x26\xfb\x5f\xff\xbf\x98\xfe\x7f\x2f\xe7\x1b" "\xab\xff\x3f\xb5\xd9\x6c\xf4\xff\x9b\xa6\xfd\xff\xa9\x33\xfe\x3c\xeb\xfb" "\x52\xff\xaf\xff\x3f\x02\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xcf\x4e\x2d\xa8\xff\xdf\xfb\x38\x77\xff\xf3\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xfc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x41\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x30\x6e\x69\xb2\xff\xf5" "\xff\x8b\xe9\xff\xf7\x8c\xd5\xff\x7b\xfe\xff\xd9\xdf\x1f\x9d\xfa\x7f\xcf" "\xff\x3f\x4c\xff\x7f\x34\xf4\xff\xd3\xf4\xff\x33\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\x45\x71\xd3\x15\x97\x9f\xf7\x97\x08" "\x00\x00\x00\x2c\x4c\xee\xfe\x17\xc7\x2d\x4d\xfe\xfe\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\x92\xb8\xc5\xfe\x07\x00\x00\x80\x95\xba\xee\xd0\xaf\xe4\xee" "\x7f\x69\xdc\xd2\x64\xff\xeb\xff\x77\xdb\xff\x5f\x71\xc6\xaf\xe9\xff\xf5" "\xff\x67\x7f\x7f\xe8\xff\xf5\xff\xfa\xff\x8b\x4f\xff\x3f\x4d\xff\x3f\x43" "\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\x5f\x16\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xeb\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\xe5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8a\xb8\xa5" "\xc9\xfe\xd7\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\xdf\xfe\xfa\xfa\xff\x75" "\xd2\xff\x4f\x5b\x76\xff\x7f\xba\x7e\x9c\xe8\xff\xf5\xff\x6b\x7c\xff\x57" "\xdd\xed\xca\xff\xd9\xdc\xfa\x69\xe7\xdf\xff\x9f\xb8\xed\x5f\xea\xff\x19" "\xc3\x1d\xe8\xff\x4f\x9f\x3e\x7d\xcd\x45\xef\xff\x73\xf7\xbf\x32\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xaf\x8a\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x57\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x6b\xe2\x96" "\x26\xfb\x5f\xff\xdf\xb4\xff\xcf\x6f\x75\xfd\xff\x1e\xfd\xbf\xfe\x7f\xdb" "\xeb\xeb\xff\xd7\x49\xff\x3f\x6d\xd9\xfd\xbf\xe7\xff\xeb\xff\xd7\xfd\xfe" "\x3d\xff\x5f\xff\xcf\x61\x4b\x7b\xfe\x7f\xee\xfe\xd7\xc6\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x43\xdc\xd2\x64\xff" "\xeb\xff\x9b\xf6\xff\x9e\xff\xaf\xff\xd7\xff\x1f\x75\xff\x7f\xcb\x46\xff" "\x7f\x24\x56\xd1\xff\x9f\x3a\xf7\xeb\x2f\xbd\xff\xbf\x56\xff\xaf\xff\x9f" "\xd0\xae\xff\xbf\xeb\x9d\x0f\x7c\xa8\xff\xd7\xff\x73\xd8\xd2\xfa\xff\xdc" "\xfd\x6f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x9b\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\x96\xb8\xe9\xb2\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xdb\x5f\xff\x88\x9f\xff\x7f\xc5\x66\xb3\xd1\xff\xef\xc0\x2a\xfa\xff\x09" "\x4b\xef\xff\x3d\xff\x5f\xff\x3f\xa5\x5d\xff\x7f\x16\xfd\xbf\xfe\x9f\xc3" "\x96\xd6\xff\xe7\xee\x7f\x6b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\xdf\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8f\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x77\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x0f\xdf\xff\x5f\xbb\x8a\xfe\xdf\xf3\xff\x77\x44\xff\x3f\x4d\xff\x3f" "\x43\xff\xaf\xff\xd7\xff\xeb\xff\x39\x12\xc7\xd5\xff\xe7\xee\x7f\x67\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x15\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xef\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xf7\xc4" "\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x9f\x58\x5c\xff\x7f\xf2\xc0" "\xbf\x5f\x93\xe7\xff\xeb\xff\x77\x44\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff" "\xd7\xff\x5f\xa7\xff\x67\x97\x96\xf6\xfc\xff\xdc\xfd\xef\x8d\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\xfb\xe2\xd6\xff\x75\x6b\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xbf\x3f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x10" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xf3\xff\xf5\xff\xad" "\xe8\xff\xa7\x2d\xbc\xff\xdf\xfb\xfd\xd2\xff\xeb\xff\xd7\xfa\xfe\x07\xe9" "\xff\x3d\xff\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\x83\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\xff\x50\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f" "\x38\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x6f\x88\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\xff\x19\xea\xff\xc7\xa0\xff\x9f\x76" "\x34\xfd\xff\x29\xcf\xff\xd7\xff\x57\x3f\x7f\x49\xfc\xa7\x40\xff\xaf\xff" "\x9f\xfb\x7c\xc6\xb4\xb4\xfe\x3f\x77\xff\x47\xe2\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xd1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x58" "\xdc\x62\xff\x03\x00\x00\xc0\x2a\x5d\xb6\xe5\xd7\x72\xf7\x7f\x3c\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfd\xf5\xf5\xff\xeb\xa4" "\xff\x9f\xb6\xf0\xe7\xff\xeb\xff\x57\xd7\xff\xff\xef\x81\x8f\xd6\xf6\xfc" "\xff\xb3\xff\xfb\x4b\xff\xaf\xff\x67\xf7\x8e\xbf\xff\xdf\xff\x5f\x6c\xf9" "\x71\xee\xfe\x4f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x93\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa9\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\xff\x74\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x7f\xfb\xeb\xeb\xff\xd7\x49\xff\x3f\x4d\xff\x3f\x43\xff\x7f\xac\xcf\xcf" "\x5f\xfb\xfb\xd7\xff\xeb\xff\x39\xec\xf8\xfb\xff\x83\x1f\xe7\xee\xff\x4c" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x1b\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00\x18\xc6\xde\xee\xcf" "\xb8\xac\xe1\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf6\xd7\xd7\xff" "\xaf\x93\xfe\x7f\x9a\xfe\x7f\x86\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x53\x4b" "\xeb\xff\x3f\xbf\xf7\x59\x27\x37\x5f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x17\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x4b\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe5\xb8\xa5\xc9\xfe\xbf\xb8\xfd\xff" "\xcd\x93\xd5\xdd\x11\xf5\xff\x27\xb6\xfd\x63\xfa\xff\xb5\xf5\xff\xa7\x4f" "\x9f\xbe\x46\xff\xaf\xff\x3f\xf8\xf5\xdc\xd6\xff\xdf\xa8\xff\xa7\xe8\xff" "\xa7\xe9\xff\x67\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x3b\xb5\xb4\xfe\x3f\x77" "\xff\x57\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd5\xb8\xc5\xfe" "\x07\x00\x00\x80\x61\xe4\xee\xff\x5a\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\x7f\x3d\x6e\x69\xb2\xff\x3d\xff\x7f\x01\xfd\xff\x49\xfd\xbf\xe7\xff" "\xeb\xff\x37\x9e\xff\xaf\xff\xdf\x11\xfd\xff\x34\xfd\xff\x8c\x11\xfb\xff" "\x93\xb7\xff\xcb\x3f\xee\x7e\xfe\x42\x1d\xf7\xfb\x5f\x40\xff\x7f\x49\xfc" "\xd0\xd1\xff\xb3\x18\x4b\xeb\xff\x73\xf7\x7f\x23\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xdf\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x6f" "\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xb7\xe3\x96\x26\xfb\x5f\xff" "\x7f\x74\xfd\xff\xad\xbf\x77\x5d\x9e\xff\x7f\x6a\xb3\xfd\xfd\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\xc5\xa6\xff\x9f\xa6\xff\x9f\x31\x62\xff\x7f\x07\x1c" "\x77\x3f\xbf\xf6\xf7\xbf\x80\xfe\xdf\xf3\xff\x59\x9c\xa5\xf5\xff\xb9\xfb" "\xbf\x13\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xef\xc6\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xf7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\xfb\x71\x4b\x93\xfd\xaf\xff\x5f\xc0\xf3\xff\x07\xec\xff\x3d\xff\x7f" "\xfb\xf7\x87\xfe\x7f\xd1\xfd\xff\xa5\xfa\xff\x31\xe8\xff\xa7\xe9\xff\x67" "\xe8\xff\xf5\xff\xfa\xff\x1d\xf5\xff\xf9\xdd\xac\xff\xef\x6e\x69\xfd\x7f" "\xee\xfe\x1f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x87\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xbf\x31\x6e\x39\x63\xff\x6f\x6b\xbb\x47\xa1\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xed\xaf\xaf\xff\x5f\x27\xfd\xff\xb4\xdb\xdb\xff\x9f\xd8" "\x5c\x58\xff\x9f\xf4\xff\xfa\x7f\xfd\x7f\xd7\xfe\xdf\xf3\xff\xd9\xb7\xb4" "\xfe\x3f\x77\xff\x8f\xe3\x16\x7f\xff\x0f\x00\x00\x00\xab\x73\xf9\x39\x7e" "\x3d\x77\xff\x4f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa7\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb3\xb8\xe5\xa6\x4b\x8f\xeb\x2d\x1d" "\x29\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x7f\x7d\xfd\xff\x3a\xe9\xff" "\xa7\x79\xfe\xff\x0c\xfd\xff\x2e\xfa\xf9\xbb\xe8\xff\xc7\xe8\xff\x37\x1b" "\xfd\x3f\x17\x6e\x69\xfd\x7f\xee\xfe\x9f\xc7\x2d\xfe\xfe\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcb\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x55\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\x17\xd8\xff\xef\xa5\x99\xfa\xff\x7d\xfa\xff\x7d\xfa\xff\xed\xf4\xff" "\x47\x43\xff\x3f\x4d\xff\x3f\x43\xff\xef\xf9\xff\xfa\x7f\xcf\xff\x67\xa7" "\x96\xd6\xff\xe7\xee\xff\x75\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x7f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x8d\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\xdf\xc5\x2d\x4d\xf6\xff\xb1\xf5\xff\xf1\x5b\xad" "\xff\x5f\x7d\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x51\xf4\xff\xd3\xf4" "\xff\x33\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x9d\x5a\x5a\xff\x9f\xbb\xff\xf7" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x43\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xff\x31\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff" "\x14\xb7\x34\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\x5f\x5f" "\xff\xbf\x4e\xfa\xff\x69\xfa\xff\xed\xea\x0f\x4a\xff\xaf\xff\xd7\xff\xeb" "\xff\xd9\xa9\xa5\xf5\xff\xb9\xfb\xff\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0" "\x41\xee\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4d\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd7\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xdd\xf5\xff\xfb\x3f\x43\xf5\xff\xdb\xe9\xff\x8f\x86\xfe" "\x7f\xda\x71\xf6\xff\x77\xff\xaf\xf9\x97\xf5\xfc\xff\x63\xef\xff\xf3\x2d" "\xe8\xff\xf5\xff\xfa\x7f\x76\x62\x69\xfd\x7f\xee\xfe\xbf\xc5\x2d\x4d\xf6" "\x3f\x00\x00\x00\x74\x90\xbb\xff\xef\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\x8f\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x39\x6e\x69\xb2" "\xff\x67\xfa\xff\x13\xf5\x0f\xea\xff\x27\xe9\xff\x0f\xbe\x7f\xfd\xff\xf6" "\xef\x8f\xf1\xfb\xff\x7d\x17\xb1\xff\x3f\xb5\xd1\xff\xeb\xff\x67\xe8\xff" "\xa7\x79\xfe\xff\x0c\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\xec\xd4\xd2\xfa\xff" "\xdc\xfd\xff\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x2d\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xaf\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x77\xdc\xd2\x64\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\x5f\x51" "\xff\x7f\xe0\xeb\xd1\xff\xeb\xff\xb7\xd1\xff\x4f\xd3\xff\xcf\xd0\xff\xeb" "\xff\xf5\xff\xfa\x7f\x76\x6a\x69\xfd\x7f\xee\xfe\xff\x04\x00\x00\xff\xff" "\xac\xef\x49\xb2", 24880); syz_mount_image( /*fs=*/0x20000080, /*dir=*/0x20000000, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_DIRSYNC*/ 0x2010880, /*opts=*/0x20000600, /*chdir=*/5, /*size=*/0x6130, /*img=*/0x20000780); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }