// https://syzkaller.appspot.com/bug?id=e6096b97f180de441e3c03d438143073986fc3fb // 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 #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #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 close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } 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(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // 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 = 0x20108c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 65 // 74 3d 63 70 38 35 35 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 6e 74 // 2d 72 6f 2c 69 6e 74 65 67 72 69 74 79 2c 6e 6f 64 69 73 63 61 72 // 64 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 30 30 30 30 // 30 30 30 30 30 38 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 // 00 69 69 73 6f 38 38 35 39 2d 34 2c 75 6d 61 73 6b 3d 30 78 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 38 31 2c 69 6f 63 68 61 72 57 // fd 74 3d 6d 61 63 67 72 65 65 6b 2c 71 75 6f 74 61 2c 65 72 72 6f // 17 29 de f7 e3 5b cb 75 6e 74 2d 72 6f 2c 72 65 73 69 7a 65 3d 30 // 78 30 30 30 30 30 30 30 30 30 18 18 29 30 30 30 30 30 30 31 2c 75 // 6d 61 73 6b 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 32 30 30 34 // 35 2c 66 73 6d 61 67 69 63 3d 30 78 30 dc b1 c4 7c b8 7a 74 ac 1a // 30 30 30 30 30 30 30 30 30 30 30 30 30 30 39 2c 64 65 66 63 6f 6e // 74 65 78 74 3d 72 6f 6f 74 2c 66 73 6e 61 6d 65 3d 75 7d 40 7d 58 // 7d 5b 2d 29 2b 2c 00 0d 1c 13 f7 c8 92 c8 61 5d 26 5c 63 76 53 91 // 75 38 05 11 ba c7 65 71 3e 83 a6 5e 4f df 01 1c 70 5f c6 83 80 05 // 12 03 85 ac 61 b9 70 f4 5d 14 92 a0 61 2e b8 00 00 00 00 00 00 80 // 8f c7 6f 91 b7 b9 a5 ce 77 88 78 58 ea 33 39 61 d1 ef 1e 4e ab d4 // c8 71 81 db f5 75 c4 7e 9b 8e ea 9d 68 06 fa 15 9e 05 25 14 6f 63 // 12 b4 93 1c ff ed 00 00} (length 0x1a4) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {a7 83 c8 94 22 e3 1c 30 d6 bf 83 1c 44 26 92 20 // 89 e2 b8 94 4e da 73 3c 7b ed 94 40 ae e9 df 86 36 11 0f 25 1f f7 // 57 94 e8 47 bb ad 8f 59 79 c9 d5 54 34 d5 34 4b c2 68 e6 19 48 fc // 8a 8f fe 2d 27 c1 49 72 f7 9c 1c 97 7c 01 b4 a8 a4 e3 5f 14 d1 16 // c5 94 82 ad d0 c3 1e 92 2b 29 fb 4c 24 94 88 18 ed c6 36 cc ed 87 // 8c a3 1c 24 c6 a3 a3 1b cd ca 27 86 4f 76 11 d3 16 3d 21 93 9c 3c // 5a fb 70} (length 0x81) // } // union ANYUNION { // ANYBLOB: buffer: {01 3c ed 04 4b dd 1d 80 c6 a5 9b ca 5c 1f 9d 57 // c0 bf 98 3d e4 20 f4 61 a7 41 46 16 09 3c 24 32 34 af 92 43 25 91 // 43 a1 df 24 ac 02 19 d7 c3 78 a6 5b 31 0c 8b 4a 0a 5b e5 28 31 34 // 05 48 24 7e d2 20 c3 c9 fb c8 33 37 fa 0b 63 b0 a5 4e 73 ff 5f 9b // 66 25 b0 fa a1 fb 75 5e 1a f6 38 d9 6e c9 2d 08 02 aa 01 c4 9d 12 // 70 3c 64 52 c7 b0 ed ad 1e cf dc 92 6c f6 ee 88 d5 5c 25 51 09 52 // b4 3a 77 3f 9c d3 5d 70 e0 3d 69 b2 af 2e ad 1c 39 ef 1c 55 be 4e // 5a fc 92 67 4e 57 e2 27 95 1a 97 06 ce c7 b7 34 de c8 9e 0e d0 de // 44 f2 3a 3d e2 9c ee 4d e4 2e 11 7c 71 af 53 f7 85 eb 2f eb 89} // (length 0xbf) // } // } // } // chdir: int8 = 0xfa (1 bytes) // size: len = 0x6231 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6231) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000140, "./file0\000", 8); memcpy( (void*)0x2000000008c0, "\x64\x69\x73\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x63\x70\x38\x35\x35\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d\x6f\x75" "\x6e\x74\x2d\x72\x6f\x2c\x69\x6e\x74\x65\x67\x72\x69\x74\x79\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x38\x2c\x65" "\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x00\x69\x69\x73" "\x6f\x38\x38\x35\x39\x2d\x34\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x78\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x38\x31\x2c\x69\x6f\x63" "\x68\x61\x72\x57\xfd\x74\x3d\x6d\x61\x63\x67\x72\x65\x65\x6b\x2c\x71\x75" "\x6f\x74\x61\x2c\x65\x72\x72\x6f\x17\x29\xde\xf7\xe3\x5b\xcb\x75\x6e\x74" "\x2d\x72\x6f\x2c\x72\x65\x73\x69\x7a\x65\x3d\x30\x78\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x18\x18\x29\x30\x30\x30\x30\x30\x30\x31\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30" "\x30\x34\x35\x2c\x66\x73\x6d\x61\x67\x69\x63\x3d\x30\x78\x30\xdc\xb1\xc4" "\x7c\xb8\x7a\x74\xac\x1a\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x39\x2c\x64\x65\x66\x63\x6f\x6e\x74\x65\x78\x74\x3d\x72\x6f\x6f" "\x74\x2c\x66\x73\x6e\x61\x6d\x65\x3d\x75\x7d\x40\x7d\x58\x7d\x5b\x2d\x29" "\x2b\x2c\x00\x0d\x1c\x13\xf7\xc8\x92\xc8\x61\x5d\x26\x5c\x63\x76\x53\x91" "\x75\x38\x05\x11\xba\xc7\x65\x71\x3e\x83\xa6\x5e\x4f\xdf\x01\x1c\x70\x5f" "\xc6\x83\x80\x05\x12\x03\x85\xac\x61\xb9\x70\xf4\x5d\x14\x92\xa0\x61\x2e" "\xb8\x00\x00\x00\x00\x00\x00\x80\x8f\xc7\x6f\x91\xb7\xb9\xa5\xce\x77\x88" "\x78\x58\xea\x33\x39\x61\xd1\xef\x1e\x4e\xab\xd4\xc8\x71\x81\xdb\xf5\x75" "\xc4\x7e\x9b\x8e\xea\x9d\x68\x06\xfa\x15\x9e\x05\x25\x14\x6f\x63\x12\xb4" "\x93\x1c\xff\xed\x00\x00", 420); *(uint8_t*)0x200000000a64 = -1; *(uint32_t*)0x200000000a65 = -1; memcpy((void*)0x200000000a69, "\xa7\x83\xc8\x94\x22\xe3\x1c\x30\xd6\xbf\x83\x1c\x44\x26\x92\x20\x89" "\xe2\xb8\x94\x4e\xda\x73\x3c\x7b\xed\x94\x40\xae\xe9\xdf\x86\x36\x11" "\x0f\x25\x1f\xf7\x57\x94\xe8\x47\xbb\xad\x8f\x59\x79\xc9\xd5\x54\x34" "\xd5\x34\x4b\xc2\x68\xe6\x19\x48\xfc\x8a\x8f\xfe\x2d\x27\xc1\x49\x72" "\xf7\x9c\x1c\x97\x7c\x01\xb4\xa8\xa4\xe3\x5f\x14\xd1\x16\xc5\x94\x82" "\xad\xd0\xc3\x1e\x92\x2b\x29\xfb\x4c\x24\x94\x88\x18\xed\xc6\x36\xcc" "\xed\x87\x8c\xa3\x1c\x24\xc6\xa3\xa3\x1b\xcd\xca\x27\x86\x4f\x76\x11" "\xd3\x16\x3d\x21\x93\x9c\x3c\x5a\xfb\x70", 129); memcpy( (void*)0x200000000aea, "\x01\x3c\xed\x04\x4b\xdd\x1d\x80\xc6\xa5\x9b\xca\x5c\x1f\x9d\x57\xc0\xbf" "\x98\x3d\xe4\x20\xf4\x61\xa7\x41\x46\x16\x09\x3c\x24\x32\x34\xaf\x92\x43" "\x25\x91\x43\xa1\xdf\x24\xac\x02\x19\xd7\xc3\x78\xa6\x5b\x31\x0c\x8b\x4a" "\x0a\x5b\xe5\x28\x31\x34\x05\x48\x24\x7e\xd2\x20\xc3\xc9\xfb\xc8\x33\x37" "\xfa\x0b\x63\xb0\xa5\x4e\x73\xff\x5f\x9b\x66\x25\xb0\xfa\xa1\xfb\x75\x5e" "\x1a\xf6\x38\xd9\x6e\xc9\x2d\x08\x02\xaa\x01\xc4\x9d\x12\x70\x3c\x64\x52" "\xc7\xb0\xed\xad\x1e\xcf\xdc\x92\x6c\xf6\xee\x88\xd5\x5c\x25\x51\x09\x52" "\xb4\x3a\x77\x3f\x9c\xd3\x5d\x70\xe0\x3d\x69\xb2\xaf\x2e\xad\x1c\x39\xef" "\x1c\x55\xbe\x4e\x5a\xfc\x92\x67\x4e\x57\xe2\x27\x95\x1a\x97\x06\xce\xc7" "\xb7\x34\xde\xc8\x9e\x0e\xd0\xde\x44\xf2\x3a\x3d\xe2\x9c\xee\x4d\xe4\x2e" "\x11\x7c\x71\xaf\x53\xf7\x85\xeb\x2f\xeb\x89", 191); memcpy( (void*)0x200000000e80, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\x25\x90\x5a\x3d" "\x54\x25\x42\xc8\x4d\xcb\x4b\x29\x4d\xe2\xa4\x84\x40\x81\xb6\x07\x38\x70" "\xe9\x01\xe5\x8a\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\x2b\x8b\xb8\xf2\x85" "\x03\x27\xfe\x02\x10\x12\x47\x84\x38\x22\x0e\xfd\x03\x7a\xe0\xca\x8d\x13" "\x27\x22\xd9\x48\xa0\x9e\x18\x34\xde\xe7\x89\x67\x37\xbb\x5d\xbb\x8e\x77" "\xd6\x9e\xcf\x47\x72\x66\x7e\xf3\xcc\x78\x9f\xf1\x77\x67\x5f\xb2\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\x3f\xf8\xfe" "\x0f\xd7\x5a\x11\x71\xe3\x17\x69\xc1\x4a\xc4\x67\xa2\x13\xd1\x8e\x58\x2a" "\xeb\xd5\x88\x58\x5a\x5d\xc9\xeb\x77\x23\xe2\xd9\xd8\x6b\x8e\x67\x22\xa2" "\xb7\x10\x51\x6e\xbf\xf7\xcf\x53\x11\xaf\x44\xc4\x47\x67\x23\x76\x76\x37" "\xd7\xcb\xc5\x97\x0f\xd8\x8f\xef\xfd\xe9\xef\xbf\xff\xd1\x99\x37\xff\xf6" "\xc7\xde\xc5\xff\xfe\xf9\x5e\xe7\xd5\x49\xeb\xdd\xbf\xff\xeb\xff\xfc\xe5" "\xc1\xd1\xf6\x19\x00\x00\x00\x9a\xa6\x28\x8a\xa2\x95\xde\xe6\x9f\x4b\xef" "\xef\xdb\x75\x77\x0a\x00\x98\x89\xfc\xfc\x5f\x24\x79\xf9\xa9\xaf\x7f\xf3" "\xcf\x37\xff\x3a\x4f\xfd\x51\xab\xd5\x6a\xb5\x7a\x06\x75\x55\x31\xde\x83" "\x6a\x11\x11\x5b\xd5\x6d\xca\xd7\x0c\x3e\x8e\x07\x80\x13\x66\x2b\x3e\xae" "\xbb\x0b\xd4\x48\xfe\x8d\xd6\x8d\x88\x33\x75\x77\x02\x98\x6b\xad\xba\x3b" "\xc0\xb1\xd8\xd9\xdd\x5c\x6f\xa5\x7c\x5b\xd5\xe7\x83\xd5\x41\x7b\x3e\x17" "\x64\x28\xff\xad\xd6\xa3\xeb\x3b\x26\x4d\xa7\x19\x3d\xc7\x64\x56\xf7\xaf" "\xed\xe8\xc4\xd3\x13\xfa\xb3\x34\xa3\x3e\xcc\x93\x9c\x7f\x7b\x34\xff\x1b" "\x83\xf6\x7e\x5a\xef\xb8\xf3\x9f\x95\x49\xf9\xf7\x07\x97\x3e\x35\x4e\xce" "\xbf\x33\x9a\xff\x88\xd3\x93\x7f\x7b\x6c\xfe\x4d\x95\xf3\xef\x1e\x2a\xff" "\x8e\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xff\xff\x5f\xa9\xf9\xf3\xdf\x85" "\xa3\xef\xca\x81\x7c\xd2\xe7\xbf\xab\x33\xea\x03\x00\x00\x00\x00\x00\x00" "\x00\x3c\x69\x47\x1d\xff\xef\x11\xe3\xff\x01\x00\x00\xc0\xdc\x2a\xdf\xab" "\x97\x7e\x7b\x76\x7f\xd9\xa4\xef\x62\x2b\x97\x5f\x6f\x45\x7c\x76\x64\x7d" "\xa0\x61\x3e\x1c\x4c\x96\xeb\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x34\x49\x77\x70\x0e\xef\xf5\x56\x44\x6f\x70\x59\x7f\x51\x14\xcb\xc5" "\xb0\xd1\xfa\xb0\x8e\xba\xfd\x49\xd7\xf4\xfd\x87\x26\xab\xfb\x41\x1e\x00" "\x00\x06\x3e\x3a\x3b\x72\x2d\x7f\x2b\x62\x31\x22\xae\x47\x7b\xef\xbb\xfe" "\x7a\xcb\xcb\xcb\x45\xb1\xb8\xb4\x5c\x2c\x17\x4b\x0b\xf9\xf5\x6c\x7f\x61" "\xb1\x58\xaa\xbc\xaf\xcd\xd3\x72\xd9\x42\xff\x00\x2f\x88\xbb\xfd\xa2\xfc" "\x65\x8b\x95\xed\xaa\xa6\xbd\x5f\x9e\xd6\x3e\xfa\xfb\xca\xdb\xea\x17\x9d" "\x03\x74\xec\x09\xe9\xa5\xbf\xe6\x84\xe6\x9a\xc2\x06\x80\x64\xf0\x6c\xb4" "\xe3\x19\xe9\x94\x29\x8a\xa7\x26\xbd\xf8\x80\x21\x8e\xff\x53\x68\x25\x56" "\xea\xbe\x5f\x31\xff\xea\xbe\x9b\x02\x00\x00\x00\xc7\xaf\x28\x8a\xa2\x95" "\x86\xf9\x3b\x97\xc6\xf7\x6b\xd7\xdd\x29\x00\x60\x26\xf2\xf3\xff\xe8\xe7" "\x02\x07\xaa\x23\xc6\xb7\xb7\x0f\xb9\xbe\x5a\xad\x56\xab\xd5\xea\x99\xd4" "\x55\xc5\x78\x0f\xaa\x45\x44\x6c\x55\xb7\x29\x5f\x33\x18\x8e\x1f\x00\x4e" "\x98\xad\xf8\xb8\xee\x2e\x50\x23\xf9\x37\x5a\x37\x22\x9e\xad\xbb\x13\xc0" "\x5c\x6b\xd5\xdd\x01\x8e\xc5\xce\xee\xe6\x7a\x2b\xe5\xdb\xaa\x3e\x1f\xac" "\x0e\xda\xf3\xb9\x20\x43\xf9\x6f\xb5\xf6\xb6\xcb\xdb\x8f\x9b\x4e\x33\x7a" "\x8e\xc9\xac\xee\x5f\xdb\xd1\x89\xa7\x27\xf4\xe7\x99\x19\xf5\x61\x9e\xe4" "\xfc\xdb\xa3\xf9\xdf\x18\xb4\xf7\xd3\x7a\xc7\x9d\xff\xac\x4c\xca\xbf\xbf" "\x77\xc9\x5c\xf3\xe4\xfc\x3b\xa3\xf9\x8f\x38\x3d\xf9\xb7\xc7\xe6\xdf\x54" "\x39\xff\xee\xa1\xf2\xef\xc8\x1f\x00\x00\x00\x00\x00\xe6\x58\xfe\xff\xff" "\x15\x9f\xff\xe6\x5d\x06\x00\x00\x00\x00\x00\x00\x80\x13\x67\x67\x77\x73" "\x3d\x5f\xf7\x9a\x3f\xff\xff\xfc\x98\xf5\x5c\xff\x79\x3a\xe5\xfc\x5b\x87" "\xcd\x7f\x29\xcd\xcb\xff\x44\xcb\xf9\xb7\x47\xf2\xff\xca\xc8\x7a\x9d\xca" "\xfc\xc3\x37\xf6\x8f\xff\x7f\xef\x6e\xae\xff\xe1\xde\xbf\x3e\x97\xa7\x07" "\xcd\x7f\x21\xcf\xb4\xd2\x3d\xab\x95\xee\x11\xad\x74\x4b\xad\x6e\x9a\x1e" "\x65\xef\x1e\xb7\xdd\xeb\xf4\xcb\x5b\xea\xb5\xda\x9d\x6e\x3a\xe7\xa7\xe8" "\xbd\x1d\xb7\xe2\x76\x6c\xc4\xa5\xa1\x75\xdb\xe9\xef\xb1\xdf\xbe\x36\xd4" "\x5e\xf6\xb4\x37\xd4\x7e\x79\xa8\xbd\xfb\x58\xfb\x95\xa1\xf6\x5e\xfa\xde" "\x81\x62\x29\xb7\x5f\x88\xf5\xf8\x69\xdc\x8e\xb7\xf6\xda\xcb\xb6\x85\x29" "\xfb\xbf\x38\xa5\xbd\x98\xd2\x9e\xf3\xef\x78\xfc\x6f\xa4\x9c\x7f\xb7\xf2" "\x53\xe6\xbf\x9c\xda\x5b\x23\xd3\xd2\xc3\x0f\xda\x8f\x1d\xf7\xd5\xe9\xb8" "\xdb\x79\xfd\xd6\x17\x7e\x75\xe9\xf8\x77\x67\xaa\xed\xe8\x3c\xda\xb7\xaa" "\x72\xff\xce\xd7\xd0\x9f\xbd\xbf\xc9\x99\x7e\xfc\xfc\xee\xc6\x9d\x0b\xf7" "\x6f\xde\xbb\x77\x67\x2d\xd2\x64\x68\xe9\xe5\x48\x93\x27\x2c\xe7\xdf\xdb" "\xfb\x59\xd8\x7f\xfc\x7f\x7e\xd0\x9e\x1f\xf7\xab\xc7\xeb\xc3\x0f\xfa\x87" "\xce\x7f\x5e\x6c\x47\x77\x62\xfe\xcf\x57\xe6\xcb\xfd\x7d\x71\xc6\x7d\xab" "\x43\xce\xbf\x9f\x7e\x72\xfe\x6f\xa5\xf6\xf1\xc7\xff\x49\xce\x7f\xf2\xf1" "\xff\x52\x0d\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x4f" "\x52\x14\xc5\xde\x25\xa2\xaf\x47\xc4\xd5\x74\xfd\x4f\x5d\xd7\x66\x02\x00" "\xb3\x95\x9f\xff\x8b\x24\x2f\x57\xab\xd5\x6a\xb5\xfa\xf4\xd5\xc5\xa3\x25" "\xf3\xd1\x9f\xd9\xd7\x55\xc5\x78\xaf\x55\x8b\x88\xf8\xb0\xba\x4d\xf9\x9a" "\xe1\x97\xe3\x7e\x19\x00\x30\xcf\xfe\x17\x11\xff\xa8\xbb\x13\xd4\x46\xfe" "\x0d\x96\xbf\xef\xaf\x9c\xbe\x50\x77\x67\x80\x99\xba\xfb\xde\xfb\x3f\xbe" "\x79\xfb\xf6\xc6\x9d\xbb\x75\xf7\x04\x00\x00\x00\x00\x00\x00\x00\xf8\xb4" "\xf2\xf8\x9f\xab\x95\xf1\x9f\x5f\x88\x88\x95\x91\xf5\x86\xc6\x7f\x7d\x23" "\x56\x8f\x3a\xfe\x67\x37\xcf\x3c\x1a\x60\xf4\x09\x0f\xf4\x3d\xc1\x76\xbb" "\xdf\x69\x57\x86\x1b\x7f\x2e\xf6\xc6\xe7\xbe\x30\x69\xfc\xef\xf3\xf1\xf8" "\xf8\xdf\x79\x4c\xdc\x4e\x75\x3f\x26\xe8\x4d\x69\xef\x4f\x69\x5f\x98\xd2" "\xbe\x38\x76\xe9\x7e\x5a\x63\x2f\xf4\xa8\xc8\xf9\x3f\x57\x19\xef\xbc\xcc" "\xff\xdc\xc8\xf0\xeb\x4d\x18\xff\x75\x74\xcc\xfb\x26\xc8\xf9\x9f\xaf\xdc" "\x9f\xcb\xfc\xbf\x3c\xb2\x5e\x35\xff\xe2\x77\x73\x97\xff\xd6\x41\x57\xdc" "\x8e\xf6\x50\xfe\x17\xef\xbd\xfb\xb3\x8b\x77\xdf\x7b\xff\xe5\x5b\xef\xde" "\x7c\x67\xe3\x9d\x8d\x9f\x5c\x59\x5b\xbb\x74\xe5\xea\xd5\x6b\xd7\xae\x5d" "\x7c\xfb\xd6\xed\x8d\x4b\x83\x7f\x8f\xa7\xd7\x73\x20\xe7\x9f\xc7\xbe\x76" "\x1e\x68\xb3\xe4\xfc\x73\xe6\xf2\x6f\x96\x9c\xff\x17\x53\x2d\xff\x66\xc9" "\xf9\x7f\x29\xd5\xf2\x6f\x96\x9c\x7f\x7e\xbd\x27\xff\x66\xc9\xf9\xe7\xf7" "\x3e\xf2\x6f\x96\x9c\xff\x8b\xa9\x96\x7f\xb3\xe4\xfc\xbf\x9a\x6a\xf9\x37" "\xcb\xce\xee\xe6\x42\x99\xff\x4b\xa9\x96\x7f\xb3\xe4\xe3\xff\x6b\xa9\x96" "\x7f\xb3\xe4\xfc\x5f\x4e\xb5\xfc\x9b\x25\xe7\x7f\x21\xd5\xf2\x6f\x96\x9c" "\xff\xc5\x54\x1f\x20\x7f\x5f\x0f\x7f\x8a\xe4\xfc\xf3\x27\x5c\x8e\xff\x66" "\xc9\xf9\xaf\xa5\x5a\xfe\xcd\x92\xf3\xbf\x9c\x6a\xf9\x37\x4b\xce\xff\x4a" "\xaa\xe5\xdf\x2c\x39\xff\x57\x52\x2d\xff\x66\xc9\xf9\x7f\x3d\xd5\xf2\x6f" "\x96\x9c\xff\xd5\x54\xcb\xbf\x59\x72\xfe\xdf\x48\xb5\xfc\x9b\x25\xe7\x7f" "\x2d\xd5\xf2\x6f\x96\x9c\xff\x37\x53\x2d\xff\x66\xc9\xf9\x7f\x2b\xd5\xf2" "\x6f\x96\x9c\xff\xab\xa9\x96\x7f\xb3\xe4\xfc\xbf\x9d\x6a\xf9\x37\x4b\xce" "\xff\x3b\xa9\x96\x7f\xb3\xe4\xfc\xbf\x9b\x6a\xf9\x37\x4b\xce\xff\xb5\x54" "\xcb\xbf\x59\xf6\xbf\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xdd\x8f\x4c\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xa8\x59\x9c\x4e\x5c\xf7\x3e\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\xc0\xff\xd9\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\x2e\x46\xae\xb3\xbc\x03\xf8\x99\xf5\xae\xbd\x76\x08\x31\x10" "\x82\x93\x1a\xd8\x24\x26\x84\xc4\x64\xd7\x1f\xf1\x07\x6d\x8a\x09\x04\x68" "\x80\x52\x20\xa1\xd0\x0f\x1c\xd7\xbb\x36\x0b\xfe\xc2\x6b\x97\x40\x91\x6c" "\x1a\x28\x91\x30\x2a\xaa\xa8\x9a\x5e\xb4\x05\x14\xb5\x91\xaa\x8a\xa8\xe2" "\x82\x56\x94\xe6\xa2\xea\xc7\x55\x69\x2f\xe8\x4d\x45\x55\x09\xa9\x51\x15" "\x50\x40\x45\x6a\x2b\x9a\xad\x66\xce\xfb\xbe\x9e\x99\x9d\x9d\x19\x7b\x67" "\xd7\x67\xcf\xfb\xfb\x49\xf6\xb3\x3b\x73\xce\x9c\x77\xce\xbc\xe7\xec\x3c" "\x6b\xff\xe7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xbb" "\x5b\xdf\x3c\xf7\xb9\x46\x51\x14\xcd\x3f\xad\xbf\xb6\x16\xc5\x8b\x9a\x5f" "\x6f\x9e\xda\xda\xba\xed\x0d\xd7\x7a\x84\x00\x00\x00\xc0\x4a\xfd\x5f\xeb" "\xef\xe7\x6f\x48\x37\x1c\x1a\x62\xa5\xb6\x65\xfe\xee\x55\xff\xf8\xf5\xc5" "\xc5\xc5\xc5\xe2\x03\x1b\x7e\x77\xe2\x4b\x8b\x8b\xe9\x8e\xa9\xa2\x98\xd8" "\x54\x14\xad\xfb\xa2\xa7\xff\xfd\x83\x8d\xf6\x65\x82\xc7\x8a\xc9\xc6\x58" "\xdb\xf7\x63\x03\x36\xbf\x61\xc0\xfd\xe3\x03\xee\x9f\x18\x70\xff\xc6\x01" "\xf7\x6f\x1a\x70\xff\xe4\x80\xfb\x97\xec\x80\x25\x36\x97\xbf\x8f\x69\x3d" "\xd8\x8e\xd6\x97\x5b\xcb\x5d\x5a\xdc\x58\x4c\xb4\xee\xdb\xd1\x63\xad\xc7" "\x1a\x9b\xc6\xc6\xe2\xef\x72\x5a\x1a\xad\x75\x16\x27\x8e\x15\xf3\xc5\x89" "\x62\xae\x98\xe9\x58\xbe\x5c\xb6\xd1\x5a\xfe\x9b\xb7\x36\xb7\xf5\xf6\x22" "\x6e\x6b\xac\x6d\x5b\xdb\x9b\x33\xe4\x87\x9f\x3a\x1a\xc7\xd0\x08\xfb\x78" "\x47\xc7\xb6\x2e\x3f\x66\xf4\xfd\x37\x15\x53\x3f\xfa\xe1\xa7\x8e\xfe\xf1" "\xb9\xe7\x6e\xee\x55\x07\xee\x86\x8e\xc7\x2b\xc7\x79\xe7\x6d\xcd\x71\x7e" "\x26\xdc\x52\x8e\xb5\x51\x6c\x4a\xfb\x24\x8e\x73\xac\x6d\x9c\xdb\x7b\xbc" "\x26\x1b\x3a\xc6\xd9\x68\xad\xd7\xfc\xba\x7b\x9c\xcf\x0f\x39\xce\x0d\x97" "\x87\xb9\xa6\xba\x5f\xf3\xc9\x62\xac\xf5\xf5\xb7\x5b\xfb\x69\xbc\xfd\xd7" "\x7a\x69\x3f\x6d\x0f\xb7\xfd\xf7\xed\x45\x51\x5c\xbc\x3c\xec\xee\x65\x96" "\x6c\xab\x18\x2b\xb6\x74\xdc\x32\x76\xf9\xf5\x99\x2c\x67\x64\xf3\x31\x9a" "\x53\xe9\xa5\xc5\xf8\x15\xcd\xd3\x5b\x87\x98\xa7\xcd\x3a\xbb\xa3\x73\x9e" "\x76\x1f\x13\xf1\xf5\xbf\x35\xac\x37\xbe\xcc\x18\xda\x5f\xa6\xef\x7f\x7a" "\xe3\x92\xd7\xfd\x4a\xe7\x69\xd4\x7c\xd6\xcb\x1d\x2b\xdd\x73\x70\xd4\xc7" "\x4a\x55\xe6\x60\x9c\x17\xdf\x6e\x3d\xe9\xc7\x7b\xce\xc1\x1d\xe1\xf9\x7f" "\xea\x8e\xe5\xe7\x60\xcf\xb9\xd3\x63\x0e\xa6\xe7\xdd\x36\x07\x6f\x1b\x34" "\x07\xc7\x36\x6e\x68\x8d\x39\xbd\x08\x8d\xd6\x3a\x97\xe7\xe0\xae\x8e\xe5" "\x37\xb4\xb6\xd4\x68\xd5\x67\xef\xe8\x3f\x07\xa7\xcf\x9d\x3c\x33\xbd\xf0" "\x89\x4f\xbe\x7e\xfe\xe4\x91\xe3\x73\xc7\xe7\x4e\xed\xd9\xb5\x6b\x66\xcf" "\xbe\x7d\x07\x0e\x1c\x98\x3e\x36\x7f\x62\x6e\xa6\xfc\xfb\x2a\xf7\x76\xf5" "\x6d\x29\xc6\xd2\x31\x70\x5b\xd8\x77\xf1\x18\x78\x6d\xd7\xb2\xed\x53\x75" "\xf1\x2b\xa3\x3b\x0e\x27\xfb\x1c\x87\x5b\xbb\x96\x1d\xf5\x71\x38\xde\xfd" "\xe4\x1a\x6b\x73\x40\x2e\x9d\xd3\xe5\xb1\xf1\x50\x73\xa7\x4f\x5e\x1a\x2b" "\x96\x39\xc6\x5a\xaf\xcf\x5d\x2b\x3f\x0e\xd3\xf3\x6e\x3b\x0e\xc7\xdb\x8e" "\xc3\x9e\x3f\x53\x7a\x1c\x87\xe3\x43\x1c\x87\xcd\x65\xce\xdc\x35\xdc\x7b" "\x96\xf1\xb6\x3f\xbd\xc6\xb0\x5a\x3f\x0b\xb6\xb6\xcd\xc1\xee\xf7\x23\xdd" "\x73\x70\xd4\xef\x47\xaa\x32\x07\x27\xc3\xbc\xf8\xd7\xbb\x96\xff\x59\xb0" "\x3d\x8c\xf7\xf1\x9d\x57\xfa\x7e\x64\xc3\x92\x39\x98\x9e\x6e\x38\xf7\x34" "\x6f\x49\xef\xf7\x27\x0f\xb4\x4a\xaf\x79\x79\x4b\xf3\x8e\xeb\x36\x16\xe7" "\x17\xe6\xce\xde\xf3\xe8\x91\x73\xe7\xce\xee\x2a\x42\x59\x13\x2f\x6b\x9b" "\x2b\xdd\xf3\x75\x4b\xdb\x73\x2a\x96\xcc\xd7\xb1\x2b\x9e\xaf\x87\xe6\x5f" "\xf5\xf8\x2d\x3d\x6e\xdf\x1a\xf6\xd5\xe4\xeb\x9b\x7f\x4d\x2e\xfb\x5a\x35" "\x97\xd9\x7b\x4f\xff\xd7\xaa\xf5\xd3\xad\xf7\xfe\xec\xb8\x75\x77\x11\xca" "\x88\xad\xf5\xfe\xec\xf5\xd3\xbc\xb9\x3f\x53\x2f\xd9\x67\x7f\x36\x97\xf9" "\xcc\xf4\xca\xdf\x8b\xa7\xbe\xb4\xed\xfc\x3b\xb1\xcc\xf9\x37\xf6\xfd\x2f" "\x94\xdb\x4b\x0f\xf5\xd8\x86\x89\xf1\xf2\xf8\xdd\x90\xf6\xce\x44\xc7\xf9" "\xb8\xf3\xa5\x1a\x6f\x9d\xbb\x1a\xad\x6d\x3f\x3f\x3d\xdc\xf9\x78\x22\xfc" "\x59\xeb\xf3\xf1\x8d\x7d\xce\xc7\xdb\xba\x96\x1d\xf5\xf9\x78\xa2\xfb\xc9" "\xc5\xf3\x71\x63\xd0\x6f\x3b\x56\xa6\xfb\xf5\x9c\x0c\xf3\xe4\xc4\x4c\xff" "\xf3\x71\x73\x99\x6d\xbb\xaf\x74\x4e\x8e\xf7\x3d\x1f\xdf\x1e\x6a\x23\xec" "\xff\xd7\x85\x4e\x21\xf5\x45\x6d\x73\x67\xb9\x79\x9b\xb6\x35\x3e\x3e\x11" "\x9e\xd7\x78\xdc\x42\xe7\x3c\xdd\xd3\xb1\xfc\x44\xe8\xcd\x9a\xdb\x7a\x6a" "\xf7\xd5\xcd\xd3\x3b\x6f\x2f\x1f\x6b\x43\x7a\x76\x97\xad\xd5\x3c\x9d\xea" "\x5a\x76\xd4\xf3\x34\x9d\xaf\x96\x9b\xa7\x8d\x41\xbf\x7d\xbb\x3a\xdd\xaf" "\xe7\x64\x98\x17\x37\xee\xe9\x3f\x4f\x9b\xcb\x3c\xb3\x77\xe5\xe7\xce\xcd" "\xf1\xcb\xb6\x73\xe7\xc6\x41\x73\x70\x62\xc3\xc6\xe6\x98\x27\xd2\x24\x2c" "\xcf\xf7\x8b\x9b\xe3\x1c\xbc\xa7\x38\x5a\x9c\x2e\x4e\x14\xb3\xad\x7b\x37" "\xb6\xe6\x53\xa3\xb5\xad\x9d\xf7\x0e\x37\x07\x37\x86\x3f\x6b\x7d\xae\xdc" "\xd6\x67\x0e\xde\xd9\xb5\xec\xa8\xe7\x60\xfa\x39\xb6\xdc\xdc\x6b\x8c\x2f" "\x7d\xf2\x23\xd0\xfd\x7a\x4e\x86\x79\xf1\xc4\xbd\xfd\xe7\x60\x73\x99\xb7" "\xec\x1f\xed\x7b\xd7\x3b\xc3\x2d\x69\x99\xb6\xf7\xae\xdd\xbf\x5f\x5b\xee" "\x77\x5e\xb7\x74\xed\xa6\xd5\xfc\x9d\x57\x73\x9c\x7f\xb3\xbf\xff\xef\x66" "\x9b\xcb\x9c\x38\x70\xa5\x7d\x66\xff\xfd\x74\x77\xb8\xe5\xba\x1e\xfb\xa9" "\xfb\xf8\x5d\xee\x98\x9a\x2d\xd6\x66\x3f\x6d\x0b\xe3\x7c\xee\xc0\xf2\xfb" "\xa9\x39\x9e\xe6\x32\x5f\x3a\x38\xe4\x7c\x3a\x54\x14\xc5\x85\x8f\xdd\xdf" "\xfa\x7d\x6f\xf8\xf7\x95\x3f\x3f\xff\x9d\xaf\x77\xfc\xbb\x4b\xaf\x7f\xd3" "\xb9\xf0\xb1\xfb\x7f\x70\xfd\xb1\xbf\xbd\x92\xf1\x03\xb0\xfe\xbd\x50\x96" "\x2d\xe5\xcf\xba\xb6\x7f\x99\xea\xf7\xef\xff\x7b\x57\xe7\xbd\x3f\x00\x00" "\x00\xb0\x3a\x62\xdf\x3f\x16\x6a\x32\xcc\xff\xff\x07\x00\x00\x00\xd6\x85" "\xd8\xf7\xc7\xff\x15\x9e\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\x3f\x1e\x6a" "\x92\x49\xff\xbf\xed\x2d\xcf\xcd\xbf\x70\xa1\x48\xc9\xfc\xc5\x20\xde\x9f" "\x76\xc3\x83\xe5\x72\x31\xf9\x30\x13\xbe\x9f\x5a\xbc\xac\x79\xfb\xfd\x4f" "\xce\xfd\xf8\x2f\x2f\x0c\xb7\xed\xb1\xa2\x28\x7e\xf2\xe0\x6f\xf4\x5c\x7e" "\xdb\x83\x71\x5c\xa5\xa9\x30\xce\xa7\x1f\xe8\xbc\x7d\xe9\x8a\x17\x86\xda" "\xfe\x23\x0f\x5f\x5e\xae\x3d\xbf\xfe\xe5\xf0\xf8\xf1\xf9\x0c\x3b\x0d\x7a" "\x45\x70\x67\x8a\xa2\xf8\xe6\x0d\x5f\x68\x6d\x67\xea\x83\x97\x5a\xf5\x99" "\x07\x1f\x69\xd5\xf7\x5e\x7c\xfc\xb1\xe6\x32\xcf\x1f\x2c\xbf\x8f\xeb\x3f" "\xfb\xb2\x72\xf9\x3f\x08\xe1\xdf\x43\xc7\x8e\x74\xac\xff\x6c\xd8\x0f\xdf" "\x0b\x75\xe6\x1d\xbd\xf7\x47\x5c\xef\x6b\x97\x5e\xb7\x7d\xff\xfb\x2f\x6f" "\x2f\xae\xd7\xb8\xed\xc5\xad\xa7\xfd\xc4\x87\xca\xc7\x8d\x9f\x93\xf3\xc5" "\xc7\xca\xe5\xe3\x7e\x5e\x6e\xfc\x7f\xf5\xf9\xa7\xbe\xd6\x5c\xfe\xd1\xd7" "\xf4\x1e\xff\x85\xb1\xde\xe3\x7f\x2a\x3c\xee\x93\x0f\x3c\x37\xdf\x9c\x71" "\xff\xf3\xca\x72\xf9\xf6\xd7\xa0\xf9\x7d\x5c\xef\xb3\x61\xfc\x71\x7b\x4f" "\x86\xf5\xef\xf9\xea\xb7\x7a\x8e\xff\xe9\xcf\x95\xcb\x9f\x79\x6b\xb9\xdc" "\x23\xa1\xc6\xed\xdf\x19\xbe\xdf\xf1\xd6\xe7\xe6\xdb\xf7\xd7\xa3\x8d\x23" "\x1d\xcf\xab\x78\x5b\xb9\x5c\xdc\xfe\xcc\x77\x7e\xbb\x75\x7f\x7c\xbc\xf8" "\xf8\xdd\xe3\x9f\x3c\x7c\xa9\x63\x7f\x74\xcf\x8f\x67\xfe\xb9\x7c\x9c\xe9" "\xae\xe5\xe3\xed\x71\x3b\xd1\x5f\x74\x6d\xbf\xf9\x38\xed\xf3\x33\x6e\xff" "\xa9\xdf\x7a\xa4\x63\x3f\x0f\xda\xfe\xd3\xef\x7d\xf6\x95\xcd\xc7\xed\xde" "\xfe\xdd\x5d\xcb\x6d\xe8\x5a\xbf\xfb\x13\x9b\xfe\xf0\xb3\x5f\xe8\xb9\xbd" "\x38\x9e\x43\x7f\x76\xa6\xe3\xf9\x1c\x7a\x4f\x38\x8e\xc3\xf6\x9f\xf8\x50" "\x98\x8f\xe1\xfe\xff\x7d\xfa\x0b\x1d\xdb\x8d\x1e\x79\x4f\xe7\xf9\x27\x2e" "\xff\xe5\xad\x17\x3a\x9e\x4f\xf4\xf6\x1f\x95\xdb\x7f\xfa\x8d\xc7\x5b\xf5" "\x3f\xa6\x7e\xfc\xfb\xd7\xbd\xe8\xfa\x17\x5f\x7c\x75\x73\xdf\x15\xc5\xb7" "\xdf\x57\x3e\xde\xa0\xed\x1f\xff\xa3\xd3\x1d\xe3\xff\xca\x4d\x77\xb5\x5e" "\x8f\x78\x7f\xcc\xe8\x77\x6f\x7f\x39\x71\xfb\x67\x3f\xbe\xf3\xd4\xe9\x85" "\xf3\xf3\xb3\x6d\x7b\xb5\xf5\xd9\x39\xef\x2c\xc7\xb3\x69\x72\xf3\x96\xe6" "\x78\x6f\x08\xe7\xd6\xee\xef\x0f\x9f\x3e\xf7\xe1\xb9\xb3\x53\x33\x53\x33" "\x45\x31\x55\xdf\x8f\xd0\xbb\x6a\x5f\x0d\xf5\x07\x65\xb9\x78\xa5\xeb\xdf" "\xf5\x70\x78\x3d\x6f\xf9\xbd\x6f\x6e\xb9\xe3\x9f\x3e\x1f\x6f\xff\x97\x87" "\xca\xdb\x2f\xbd\xa3\xfc\xb9\xf5\xda\xb0\xdc\x17\xc3\xed\x5b\xcb\xd7\x6f" "\xb1\xb1\xc2\xed\x3f\x71\xeb\x4d\xad\xe3\xbb\xf1\x4c\xf9\x7d\x47\x8e\x7d" "\x04\xb6\xef\xf8\xcf\x03\x43\x2d\x18\x9e\x7f\xf7\xfb\x82\x38\xdf\xcf\xbc" "\xfc\xc3\xad\xfd\xd0\xbc\xaf\xf5\x73\x23\x1e\xd7\x2b\x1c\xff\x77\x67\xcb" "\xc7\xf9\x46\xd8\xaf\x8b\xe1\x93\x99\x6f\xbb\xe9\xf2\xf6\xda\x97\x8f\x9f" "\x8d\x70\xe9\x7d\xe5\xf1\xbe\xe2\xfd\x17\x4e\x73\xf1\x75\xfd\x93\xf0\x7a" "\xbf\xeb\x7b\xe5\xe3\xc7\x71\xc5\xe7\xfb\xdd\xf0\x3e\xe6\x5b\xdb\x3a\xcf" "\x77\x71\x7e\x7c\xe3\xc2\x58\xf7\xe3\xb7\x3e\xc5\xe3\x62\x38\x9f\x14\x17" "\xcb\xfb\xe3\x52\x71\x7f\x5f\x7a\xfe\xa6\x9e\xc3\x8b\x9f\x43\x52\x5c\xbc" "\xb9\xf5\xfd\xef\xa4\xc7\xb9\xf9\x8a\x9e\xe6\x72\x16\x3e\xb1\x30\x7d\x62" "\xfe\xd4\xf9\x47\xa7\xcf\xcd\x2d\x9c\x9b\x5e\xf8\xc4\x27\x0f\x9f\x3c\x7d" "\xfe\xd4\xb9\xc3\xad\xcf\xf2\x3c\xfc\x91\x41\xeb\x5f\x3e\x3f\x6d\x69\x9d" "\x9f\x66\xe7\xf6\xed\x2d\x66\x36\x17\x45\x71\xba\x98\x59\x83\x13\xd6\xea" "\x8c\xbf\xf9\xd5\x70\xe3\x3f\xf3\xf0\xd1\xd9\xfd\x33\x77\xcc\xce\x1d\x3b" "\x72\xfe\xd8\xb9\x87\xcf\xcc\x9d\x3d\x7e\x74\x61\xe1\xe8\xdc\xec\xc2\x1d" "\x47\x8e\x1d\x9b\xfb\xf8\xa0\xf5\xe7\x67\xef\xdb\xb5\xfb\xe0\x9e\xfd\xbb" "\x77\x1e\x9f\x9f\xbd\xef\xc0\xc1\x83\x7b\x0e\xee\x9c\x3f\x75\xba\x39\x8c" "\x72\x50\x03\xec\x9b\xf9\xe8\xce\x53\x67\x0f\xb7\x56\x59\xb8\x6f\xef\xc1" "\x5d\xf7\xde\xbb\x77\x66\xe7\xc9\xd3\xb3\x73\xf7\xed\x9f\x99\xd9\x79\x7e" "\xd0\xfa\xad\x9f\x4d\x3b\x9b\x6b\xff\xfa\xce\xb3\x73\x27\x8e\x9c\x9b\x3f" "\x39\xb7\x73\x61\xfe\x93\x73\xf7\xed\x3a\xb8\x6f\xdf\xee\x81\x9f\x06\x78" "\xf2\xcc\xb1\x85\xa9\xe9\xb3\xe7\x4f\x4d\x9f\x5f\x98\x3b\x3b\x5d\x3e\x97" "\xa9\x73\xad\x9b\x9b\x3f\xfb\x06\xad\x4f\x3d\x2d\xfc\x5b\xf9\x7e\xb6\x5b" "\xa3\xfc\x20\xbe\xe2\xdd\x77\xef\x4b\x9f\xcf\xda\xf4\xe4\xa7\x97\x7d\xa8" "\x72\x91\xae\x0f\x10\x7d\x2e\x7c\x16\xcd\x3f\xbc\xe4\xcc\x81\x61\xbe\x8f" "\x7d\xff\x44\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\x1b\x43\x4d" "\xf4\xff\x00\x00\x00\x50\x1b\xb1\xef\xdf\x14\x6a\xa2\xff\x07\x00\x00\x80" "\xda\x88\x7d\xff\x64\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc\xff\x70\xf9\xff\xf2" "\xfe\x51\xe6\xff\x7b\xe5\xe7\x0b\xf9\xff\x4a\xe5\xff\xcf\x7c\xac\xcc\x95" "\xae\xf7\xfc\x7f\xcc\xcf\xcb\xff\xe7\xe1\x1a\xe7\xff\x57\xbc\x7d\xf9\x7f" "\xf9\xff\xfa\xe5\xff\x87\xcf\xcf\xaf\xf7\xf1\xcb\xff\xcb\xff\xb3\x54\xd5" "\xf2\xff\xb1\xef\xdf\x5c\x14\x59\xf6\xff\x00\x00\x00\x90\x83\xd8\xf7\x6f" "\x09\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff\xba\x50\x13\xfd\x3f\x00" "\x00\x00\xd4\x46\xec\xfb\x5f\x14\x6a\x92\x49\xff\x2f\xff\x3f\x54\xfe\x7f" "\xf7\xa0\xc0\x55\xfd\xf3\xff\xa3\xbf\xfe\xbf\xfc\xbf\xfc\xff\x9a\xe4\xff" "\xe3\x8b\x23\xff\x9f\x8d\x2b\xce\xdf\xbf\xff\xa1\x8e\x6f\xe5\xff\x03\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x56\x6c\x62\xd9\x7b\xae\x55\xfe\x3f" "\xf6\xfd\xd7\x87\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\xe2\x50" "\x13\xfd\x3f\x00\x00\x00\xd4\x46\xec\xfb\x6f\x08\x35\xd1\xff\x03\x00\x00" "\x40\x6d\xc4\xbe\x7f\x6b\xa8\x49\x26\xfd\xbf\xfc\xbf\xeb\xff\xcb\xff\xcb" "\xff\xd7\x3a\xff\xbf\xd2\xeb\xff\xb7\x0d\x46\xfe\x7f\x7d\x70\xfd\xff\xfe" "\xe4\xff\x07\xb8\xea\xfc\xff\xa4\xfc\xff\x7a\xcc\xff\x4f\x8c\x76\xfc\xd5" "\xce\xff\x0f\x1c\xbe\xfc\x3f\xab\xa2\x6a\xd7\xff\x8f\x7d\xff\x4b\x42\x4d" "\x32\xe9\xff\x01\x00\x00\x20\x07\xb1\xef\x7f\x69\xa8\x89\xfe\x1f\x00\x00" "\x00\x6a\x23\xf6\xfd\x2f\x0b\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff" "\xc6\x50\x93\x4c\xfa\xff\x95\xe4\xff\x63\xe6\x5a\xfe\x5f\xfe\x5f\xfe\xbf" "\x24\xff\x5f\xaa\x55\xfe\xbf\xef\xf5\xff\xcb\xaf\xe4\xff\xab\x45\xfe\xbf" "\x3f\xf9\xff\x01\x5c\xff\x3f\xaf\xfc\xff\x88\xc7\x5f\xed\xfc\xff\xa8\xaf" "\xff\x3f\xf1\x40\xf7\xfa\xf2\xff\xf4\x52\xb5\xfc\x7f\xec\xfb\x5f\x1e\x6a" "\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d\xff\x4d\xa1\x26\xfa\x7f\x00\x00" "\x00\xa8\x8d\xd8\xf7\xbf\x22\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe" "\x6d\xa1\x26\x99\xf4\xff\xae\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x7b" "\xfb\x83\xf3\xff\x25\xf9\xff\x6a\x91\xff\xef\x4f\xfe\x7f\x00\xf9\x7f\xf9" "\x7f\xf9\xff\xe1\xf2\xff\x3d\xde\xfc\xca\xff\xd3\x4b\xd5\xf2\xff\xb1\xef" "\xbf\x39\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x5b\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x1b\xb1\xef\xff\xa9\x50\x13\xfd\x3f\x00\x00\x00\xd4" "\x46\xec\xfb\xb7\x87\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xcb\xff\xe7\x95\xff" "\xbf\x7b\xa3\xfc\xbf\xfc\x7f\xbd\xc9\xff\xf7\x27\xff\x3f\x80\xfc\xbf\xfc" "\xbf\xfc\xff\x90\xd7\xff\x5f\xea\x4a\xf2\xff\x9b\x06\x3d\x18\xb5\x51\xb5" "\xfc\x7f\xec\xfb\x5f\x19\x6a\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d\xff" "\xab\x42\x4d\xf4\xff\x00\x00\x00\x50\x1b\xb1\xef\x7f\x75\xa8\x89\xfe\x1f" "\x00\x00\x00\x6a\x23\xf6\xfd\x53\xa1\x26\x99\xf4\xff\xf2\xff\xf5\xca\xff" "\xff\xe9\x5f\x3f\xf1\xea\x42\xfe\x5f\xfe\x7f\xc0\xf6\x2b\x9c\xff\x6f\xd5" "\xab\xcc\xff\xc7\x69\x20\xff\x9f\x39\xf9\xff\xfe\xe4\xff\x07\x90\xff\x97" "\xff\x97\xff\x5f\x93\xfc\x3f\xf9\xa8\x5a\xfe\x3f\xf6\xfd\xb7\x86\x9a\x64" "\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\x7f\x5b\xa8\x89\xfe\x1f\x00\x00\x00" "\x6a\x23\xf6\xfd\xb7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\xbf\x23" "\xd4\x24\x93\xfe\x5f\xfe\xbf\x5e\xf9\xff\x48\xfe\x5f\xfe\xbf\xdf\xf6\x2b" "\x9c\xff\x77\xfd\x7f\xf9\xff\x15\x93\xff\xef\xa1\xed\x20\x95\xff\x1f\x40" "\xfe\x5f\xfe\x3f\xfb\xfc\x7f\x7c\xf7\x2b\xff\xcf\x68\x54\x2d\xff\x1f\xfb" "\xfe\xd7\x84\x9a\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\x7f\x47\xa8\x89" "\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\xaf\x0d\x35\xd1\xff\x03\x00\x00\x40" "\x6d\xc4\xbe\xff\xce\x50\x93\x4c\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f" "\xf9\xff\xde\xdb\x97\xff\x5f\x9f\xd6\x57\xfe\x7f\xd3\x92\x5b\xaa\x76\xfd" "\xff\x8d\xf2\xff\xf2\xff\xf2\xff\x99\xe5\xff\x5d\xff\x9f\xd1\xaa\x5a\xfe" "\x3f\xf6\xfd\xaf\x0b\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4\xbe\xff\xae" "\x50\x13\xfd\x3f\x00\x00\x00\xd4\x46\xfc\x9f\x77\xe5\xff\x7b\xd5\xff\x03" "\x00\x00\x40\x1d\xc5\xbe\x7f\x67\xa8\x49\x26\xfd\xbf\xfc\xbf\xfc\x7f\x4e" "\xf9\xff\x86\xfc\xbf\xfc\xbf\xfc\x7f\xed\xad\xaf\xfc\xff\x52\x55\xcb\xff" "\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x2b\x51\xb5\xfc\x7f\xec\xfb" "\x5f\x1f\x6a\x92\x49\xff\x0f\x00\x00\x00\x39\x88\x7d\xff\x3d\xa1\x26\xfa" "\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\x4f\x87\x9a\xe8\xff\x01\x00\x00\xa0\x36" "\x62\xdf\x3f\x13\x6a\x92\x49\xff\x2f\xff\x2f\xff\x9f\x53\xfe\xdf\xf5\xff" "\xe5\xff\xe5\xff\xeb\x4f\xfe\xbf\x3f\xf9\xff\x01\xe4\xff\xe5\xff\xeb\x96" "\xff\x2f\x0a\xf9\x7f\xae\xa9\xaa\xe5\xff\x63\xdf\xbf\x2b\xd4\x24\x93\xfe" "\x1f\x00\x00\x00\x72\x10\xfb\xfe\xdd\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d" "\xd8\xf7\xef\x09\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\x7f\x6f\xa8\x49" "\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\x7f\x25\xf2\xff\xf1\x21\xe4\xff\xe5\xff" "\xe5\xff\x57\x48\xfe\xbf\x3f\xf9\xff\x01\xe4\xff\xd7\x26\x3f\xdf\xeb\x8d" "\xd3\x7a\x1a\xff\x32\x2a\x99\xff\x77\xfd\x7f\xae\xb1\xaa\xe5\xff\x63\xdf" "\x7f\x6f\xa8\x49\x26\xfd\x3f\x00\x00\x00\xe4\x20\xf6\xfd\xfb\x42\x4d\xf4" "\xff\x00\x00\x00\x50\x1b\xb1\xef\xdf\x1f\x6a\x12\xfa\xff\x55\xfa\xef\x49" "\x00\x00\x00\xc0\x1a\x8a\x7d\xff\x81\x50\x93\x4c\xfe\xfd\x5f\xfe\xbf\x26" "\xf9\xff\xdf\xfc\xfb\x8e\x6d\xcb\xff\xaf\xbb\xfc\xff\x3a\xbc\xfe\xff\x66" "\xf9\xff\x50\xe5\xff\xab\xa5\xa6\xf9\xff\xee\xc3\xe2\xaa\xc9\xff\x0f\x20" "\xff\xbf\x6a\xf9\xf9\x62\x6c\x24\x43\xbc\x66\xe3\x97\xff\x97\xff\xe7\xea" "\x54\x2d\xff\x1f\xfb\xfe\x83\xa1\x26\x99\xf4\xff\x00\x00\x00\x90\x83\xd8" "\xf7\xbf\x21\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\x9f\x0e\x35\xd1" "\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff\x67\x42\x4d\x32\xe9\xff\xe5\xff\x6b" "\x92\xff\xef\x22\xff\x2f\xff\xdf\x6f\xfb\xae\xff\x2f\xff\x5f\x67\x35\xcd" "\xff\x8f\x4c\xad\xf2\xff\x63\xf2\xff\xeb\x29\xff\x3f\x4c\x7e\x7e\xbd\x8f" "\x5f\xfe\x5f\xfe\x9f\xa5\x56\x3f\xff\x1f\xbf\x1a\x2e\xff\x1f\xfb\xfe\xfb" "\x42\x4d\x32\xe9\xff\x01\x00\x00\x20\x07\xb1\xef\xff\xd9\x50\x13\xfd\x3f" "\x00\x00\x00\xd4\x46\xec\xfb\xdf\x18\x6a\xa2\xff\x07\x00\x00\x80\xda\x88" "\x7d\xff\xa1\x50\x93\x4c\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xd5\xc9" "\xff\xbf\xb1\xe8\x56\xc5\xfc\x7f\x73\xf2\xc8\xff\xd7\x4b\x85\xf3\xff\x13" "\xc3\x6c\x5f\xfe\xdf\xf5\xff\xe5\xff\xd7\x64\xfc\xdd\x3f\x6a\x46\x32\x7e" "\xf9\x7f\xf9\x7f\x96\xaa\xda\xf5\xff\x63\xdf\xff\xa6\x50\x93\x4c\xfa\x7f" "\x00\x00\x00\xc8\x41\xec\xfb\xef\x0f\x35\xd1\xff\x03\x00\x00\x40\x6d\xc4" "\xbe\xff\xcd\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xbf\x25\xd4\x24" "\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\x7b\x6f\x5f\xfe\x7f" "\x7d\xaa\x70\xfe\x7f\x28\xf2\xff\xf2\xff\xf2\xff\xeb\x77\xfc\xf2\xff\xf2" "\xff\x2c\x55\xb5\xfc\x7f\xec\xfb\x1f\x08\x35\xc9\xa4\xff\x07\x00\x00\x80" "\x1c\xc4\xbe\xff\xad\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xbf\x2d" "\xd4\x44\xff\x0f\x00\x00\x00\xb5\x11\xfb\xfe\xb7\x87\x9a\x64\xd2\xff\xcb" "\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xf7\xde\xbe\xfc\xff\xfa\x24\xff\xdf" "\x9f\xfc\xff\x00\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x8c\x54\xd5\xf2\xff\xb1" "\xef\xff\xb9\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec\xfb\x1f\x0c\x35" "\xd1\xff\x03\x00\x00\x40\x6d\xc4\xbe\xff\x1d\xa1\x26\xfa\x7f\x00\x00\x00" "\xa8\x8d\xd8\xf7\xbf\x33\xd4\x24\x93\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe" "\x5f\xfe\xbf\xf7\xf6\xe5\xff\xd7\x27\xf9\xff\xfe\xe4\xff\x07\x90\xff\x97" "\xff\x97\xff\x97\xff\x67\xa4\xaa\x96\xff\x8f\x7d\xff\xbb\x42\x4d\x32\xe9" "\xff\x01\x00\x00\x20\x07\xb1\xef\xff\xf9\x50\x13\xfd\x3f\x00\x00\x00\xd4" "\x46\xec\xfb\xdf\x1d\x6a\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\x2f\x84" "\x9a\x64\xd2\xff\xcb\xff\xcb\xff\x57\x2b\xff\xbf\x78\xa1\x7d\x3d\xf9\x7f" "\xf9\xff\x62\x54\xf9\xff\xe6\x4a\xf2\xff\x59\x90\xff\xef\x4f\xfe\x7f\x80" "\x1e\xf9\xff\x4d\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x5c\xb5\xaa\xe5\xff\x63" "\xdf\xff\x9e\x50\x93\x4c\xfa\x7f\x00\x00\x00\xc8\x41\xec\xfb\xdf\x1b\x6a" "\xa2\xff\x07\x00\x00\x80\xda\x88\x7d\xff\xfb\x42\x4d\xf4\xff\x00\x00\x00" "\x50\x1b\xb1\xef\x7f\x28\xd4\x24\x93\xfe\x5f\xfe\x3f\xcb\xfc\x7f\x7a\xca" "\xd5\xcb\xff\xbb\xfe\xbf\xfc\xbf\xeb\xff\xcb\xff\xaf\x8c\xfc\x7f\x7f\xf2" "\xff\x03\xb8\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x23\x55\xb5\xfc\x7f\xec\xfb" "\x1f\x0e\x35\xc9\xa4\xff\x07\x00\x00\x80\x1c\xc4\xbe\xff\xfd\xa1\x26\xfa" "\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\xff\x62\xa8\x89\xfe\x1f\x00\x00\x00\x6a" "\x23\xf6\xfd\x1f\x08\x35\xc9\xa4\xff\x97\xff\xcf\x32\xff\x5f\xe1\xeb\xff" "\xd7\x2d\xff\x3f\xde\x31\x3f\x72\xca\xff\x4f\xb6\xbd\x9e\x69\x5e\xca\xff" "\xcb\xff\xaf\x01\xf9\xff\xfe\xe4\xff\x07\x90\xff\x97\xff\xaf\x72\xfe\x3f" "\xcc\xe6\xcd\xcb\xac\x2f\xff\x4f\x15\x55\x2d\xff\x1f\xfb\xfe\x0f\x86\x9a" "\x64\xd2\xff\x03\x00\x00\x40\x0e\x62\xdf\xff\x4b\xa1\x26\xfa\x7f\x00\x00" "\x00\xa8\x8d\xd8\xf7\xff\x72\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd" "\xbf\x12\x6a\x92\x49\xff\x5f\xc3\xfc\xff\xc5\x42\xfe\x5f\xfe\xbf\x32\xf9" "\xff\xce\xf9\x91\x53\xfe\xdf\xf5\xff\x97\x92\xff\x5f\x1b\xf2\xff\xfd\xc9" "\xff\x0f\x20\xff\x2f\xff\x5f\xe5\xfc\xff\x00\xf2\xff\x54\x51\xd5\xf2\xff" "\xb1\xef\xff\xd5\x50\x93\x65\x1b\xbf\x1f\xfc\xd7\x10\x4f\x13\x00\x00\x00" "\xa8\x90\xd8\xf7\x7f\x28\xd4\x24\x93\x7f\xff\x07\x00\x00\x80\x1c\xc4\xbe" "\xff\x70\xa8\x89\xfe\x1f\x00\x00\x00\x6a\x23\xf6\xfd\x8f\x84\x9a\x64\xd2" "\xff\xd7\x30\xff\xbf\xc2\xeb\xff\xc7\x2b\xaa\xca\xff\xcb\xff\x8f\x3a\xff" "\x3f\x26\xff\x2f\xff\x2f\xff\xbf\x06\x46\x97\xff\x7f\xc5\xf5\x45\x21\xff" "\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xcf\x4a\x54\x2d\xff\x1f\xfb\xfe" "\x23\xa1\x26\x99\xf4\xff\x00\x00\x00\x90\x83\xd8\xf7\xff\x5a\xa8\x89\xfe" "\x1f\x00\x00\x00\x6a\x23\xf6\xfd\x47\x43\x4d\xf4\xff\x00\x00\x00\x50\x79" "\xe3\x29\x11\xdc\x5f\xec\xfb\x67\x43\x4d\x32\xe9\xff\xaf\x61\xfe\x7f\xa2" "\x9a\xf9\xff\x6b\x77\xfd\xff\x2d\xab\x92\xff\x6f\x84\xb1\xad\x7e\xfe\xff" "\x27\xf2\xff\xae\xff\x1f\xc8\xff\xf7\x26\xff\xbf\x36\x5c\xff\xbf\x3f\xf9" "\xff\x01\xe4\xff\xe5\xff\xe5\xff\xe5\xff\x19\xa9\xaa\xe5\xff\x63\xdf\x3f" "\x17\x6a\x92\x49\xff\x0f\x00\x00\x00\x35\x96\x7e\x1d\x1c\xfb\xfe\x63\xa1" "\x26\xfa\x7f\x00\x00\x00\xa8\x8d\xd8\xf7\x1f\x0f\x35\xd1\xff\x03\x00\x00" "\x40\x6d\xc4\xbe\xff\xc3\xa1\x26\x99\xf4\xff\xae\xff\x5f\x9d\xfc\x7f\xe1" "\xfa\xff\x2d\x79\xe4\xff\xc7\x3b\x96\x97\xff\x2f\xc9\xff\xcb\xff\x8f\x82" "\xfc\x7f\x7f\xf2\xff\x03\xc8\xff\xcb\xff\xcb\xff\xcb\xff\x33\x52\x55\xcb" "\xff\xc7\xbe\x7f\x3e\xd4\x24\x93\xfe\x1f\x00\x00\x00\x72\x10\xfb\xfe\x8f" "\x84\x9a\xe8\xff\x01\x00\x00\xa0\x36\x62\xdf\xff\xd1\x50\x13\xfd\x3f\x00" "\x00\x00\xd4\x46\xec\xfb\x4f\x84\x9a\x64\xd2\xff\xcb\xff\xcb\xff\xe7\x9e" "\xff\x6f\x14\xc5\x45\xd7\xff\x97\xff\xef\xb5\x7d\xf9\xff\xf5\x49\xfe\xbf" "\x3f\xf9\xff\x01\xe4\xff\xe5\xff\xe5\xff\xe5\xff\x19\xa9\xaa\xe5\xff\x63" "\xdf\x7f\x32\xd4\x24\x93\xfe\x9f\xff\x67\xef\x3e\x9a\xe4\xba\xab\x3e\x8e" "\x5f\xfb\x51\x5c\x3d\xbc\x04\xd6\xac\x58\xc2\xca\xbc\x04\xb6\xec\xa8\x62" "\x4d\x36\x39\xc8\x22\x67\x30\x39\x07\x93\x31\x39\x63\x82\x4d\xce\x39\x67" "\x93\x73\x34\x36\x60\xa8\x12\x65\xcd\x39\x47\x9a\xe9\xd6\xbd\x1a\x4d\x6b" "\xfa\xde\xff\xff\xf3\xd9\x1c\x4b\xe5\x51\xf7\x58\x23\x51\x3f\xa6\xbe\x75" "\x01\x00\x00\xe8\x41\xee\xfe\xfb\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\xfd\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x01\x71\x4b\x27\xfb" "\x5f\xff\xaf\xff\xef\xbd\xff\x1f\xb6\xf2\xfc\xff\xdd\xff\xbe\xfe\x7f\x87" "\xfe\x5f\xff\xbf\x09\x2b\xfd\xfd\x91\xf5\xff\xde\x85\xa2\xf0\x0b\xf6\xff" "\x77\xbd\xdb\xd5\xf7\xd6\xff\xeb\xff\xf5\xff\xa3\xf4\xff\xfa\x7f\xfd\x3f" "\x7b\xcd\xad\xff\xcf\xdd\xff\xc0\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x70\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x5f\x1d\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xff\x22\xfa\xff\x2b\xf2\xd7\xb8\xec\xfd\xff\x4d\xfa\x7f\xfd\xff\xb2\x79" "\xfe\xff\x38\xfd\xff\x04\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\xe6\xd6\xff" "\xe7\xee\x7f\x48\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x68\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2c\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x1f\x1e\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x22\xfa\xff" "\x5b\x6f\x38\x75\xcc\xf3\xff\xf7\x7c\x3e\xfa\x7f\xfd\xff\x3a\xfa\xff\x71" "\xfa\xff\x09\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x46\xcd\xad\xff\xcf\xdd\xff" "\x88\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xc8\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x3f\x3a\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\x0d\xf6\xff\xa7\x87\x61" "\xb8\x6c\xfd\xff\xa0\xff\xdf\xf3\xf9\xe8\xff\xf5\xff\xeb\x5c\x37\x9c\xfb" "\x3b\x41\xff\xbf\x4a\xff\x3f\x61\xa2\xff\x1f\x06\xfd\xff\x98\x8b\xee\xe7" "\xd7\x7f\x7a\xcb\x79\xff\x17\xa0\xff\xd7\xff\xb3\x6a\x6e\xfd\x7f\xee\xfe" "\xc7\xc4\x2d\xf7\x18\x86\x63\x97\xfa\x49\x02\x00\x00\x00\xb3\x92\xbb\xff" "\xb1\x71\x4b\x27\xdf\xff\x07\x00\x00\x80\x1e\xe4\xee\x3f\x15\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xd7\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\x94\xe7\xff\xeb\xff\xf5\xff\xfa\xff\x8b\xe1\xf9\xff\xe3\x0e\xde\xff" "\xdf\xe5\x4e\xf7\xbd\x4f\xbf\xfd\xbf\xe7\xff\x8f\xf3\xfc\xff\x4d\xf7\xff" "\x77\x7c\x65\xe8\xff\x59\xb6\xb9\xf5\xff\xb9\xfb\x4f\xc7\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x09\x71\x4b\x27\xfb" "\x5f\xff\xdf\x5a\xff\xff\x7f\xbb\x3e\xee\xbc\xfe\xff\x6c\xed\xa2\xff\xd7" "\xff\x5f\x4a\xff\x7f\xb4\x7e\x25\xfd\xff\xfc\xfa\xff\x23\xd3\x2f\xdc\x19" "\xfd\xff\x38\xcf\xff\x9f\x70\xf6\xaf\xb9\x93\xf5\x43\xfd\xbf\xfe\xdf\xf3" "\xff\xf5\xff\x1c\xcc\xdc\xfa\xff\xdc\xfd\x4f\x8c\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x4f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x27" "\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x53\xe2\x96\x4e\xf6\xbf\xfe" "\xbf\xb5\xfe\x7f\xf7\xc7\x79\xfe\xbf\xfe\x7f\xdd\xeb\x7b\xfe\x7f\x4b\xfd" "\xff\xf4\xeb\xf6\x46\xff\x3f\x4e\xff\x3f\xa1\x95\xe7\xff\x5f\xe2\x57\xcd" "\xb6\xfb\xf9\x83\xda\xf6\xfb\xd7\xff\xeb\xff\x59\x35\xb7\xfe\x3f\x77\xff" "\x53\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xd3\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xe9\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\x8c\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x2f\xa3\xff\xcf\x57\xd0\xff\xeb" "\xff\x2f\x7f\xff\x9f\xf4\xff\xcb\xa4\xff\x1f\xa7\xff\x9f\xd0\x4a\xff\x7f" "\x89\xb6\xdd\xcf\x2f\xfd\xfd\xeb\xff\xf5\xff\xac\x9a\x5b\xff\x9f\xbb\xff" "\x99\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x59\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xec\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x4e\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x97\xd1\xff\x7b\xfe\x7f\x6b\xfd" "\xff\xce\xef\xdf\x3c\xfb\x7f\xcf\xff\x5f\x36\xfd\xff\x38\xfd\xff\x04\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\xe6\xd6\xff\xe7\xee\xbf\x36\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x37\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x9f\x17\xb7\xec\x67\xff\x1f\xdd\xf4\xbb\x02\x00\x00\x00\x36\x29" "\x77\xff\xf3\xe3\x96\x4e\xbe\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x9e\xff" "\xbf\xfe\xf5\xf5\xff\xcb\xa4\xff\x1f\xa7\xff\x9f\xd0\x79\xff\x3f\x5c\xa3" "\xff\xd7\xff\xeb\xff\xd9\xac\x19\xf5\xff\xe7\x7d\xd4\x89\xe1\x05\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xa2\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x71\xdc" "\xd2\xc9\xfe\x6f\xaf\xff\x3f\xbe\xd4\xfe\xff\x6c\xce\xd7\x56\xff\x7f\x72" "\x18\x86\xbe\xfb\xff\xa3\x7b\xbe\x3e\x7a\xea\xff\x4f\x9e\xf7\xfb\x59\x5f" "\x97\xfa\x7f\xfd\xff\x21\xd0\xff\x8f\x6b\xae\xff\x3f\x16\xff\xa0\xff\xdf" "\xd7\xa7\x79\x21\xdb\xee\xe7\x97\xfe\xfe\xf5\xff\xfa\x7f\x56\xcd\xa8\xff" "\x3f\xfb\xe3\xdc\xfd\x2f\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\x2f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x97\xc5\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xcb\xe3\x96\x4e\xf6\x7f\x7b\xfd\xbf\xe7\xff\x0f" "\xb3\xe9\xff\x3d\xff\x7f\xef\xd7\x47\x4f\xfd\xbf\xe7\xff\xaf\xd2\xff\x1f" "\x0e\xfd\xff\xb8\xe6\xfa\xff\xb8\x9e\xff\xaf\xff\x9f\xc3\xfb\xd7\xff\xeb" "\xff\x59\x35\xb7\xfe\x3f\x77\xff\x2b\xe2\xa6\x63\x47\x2f\xf9\x53\x04\x00" "\x00\x00\x66\x26\x77\xff\x2b\xe3\x96\x4e\xbe\xff\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xaa\xb8\xc5\xfe\x07\x00\x00\x80\x85\xba\x76\xe5\x67\x72\xf7\xbf" "\x3a\x6e\xe9\x64\xff\xeb\xff\x37\xdb\xff\x1f\x3b\xef\xe7\xf4\xff\xfa\xff" "\xbd\x5f\x1f\xfa\x7f\xfd\xbf\xfe\xff\xf2\xd3\xff\x8f\xd3\xff\x4f\x38\x60" "\xff\x7f\x5b\xf4\xa3\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x8e\xb9\xf5\xff\xb9" "\xfb\x5f\x13\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x8b\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xd7\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xeb\xe2\x96\x4e\xf6\xbf\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\xa9\xfe" "\xff\xdc\xe3\x50\xf5\xff\xfa\xff\xf9\xd3\xff\x8f\xd3\xff\x4f\xf0\xfc\x7f" "\xfd\xff\x76\xfb\xff\xe3\xe7\xfe\x51\xff\x4f\x1b\xf6\xd1\xff\x9f\x39\x73" "\xe6\xd4\x65\xef\xff\x73\xf7\xbf\x3e\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x18\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x8a\x5b\x3a\xd9\xff\xfa\xff\x4e\xfb" "\xff\xfc\x52\x5f\x56\xff\x7f\xcd\x30\xe8\xff\x3d\xff\x5f\xff\xaf\xff\x1f" "\xa7\xff\x1f\xa7\xff\x9f\xa0\xff\xd7\xff\x7b\xfe\xbf\xfe\x9f\x8d\x9a\xdb" "\xf3\xff\x73\xf7\xbf\x39\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf" "\x25\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xaf\x8f\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xb7\xc6\x2d\x9d\xec\x7f\xfd\x7f\xa7\xfd\xbf\xe7\xff" "\xeb\xff\xf5\xff\x87\xdd\xff\xdf\x3e\xe8\xff\x0f\xc5\x22\xfa\xff\x93\x17" "\x7e\xfd\xb9\xf7\xff\xa7\xf5\xff\xfa\xff\x11\xdd\xf5\xff\xf7\xbc\xfb\xae" "\x1f\xea\xff\xf5\xff\xac\x9a\x5b\xff\x9f\xbb\xff\x6d\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\xed\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\x8e\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x67\xdc\x74\xa4\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xf5\xaf\x7f\xc8\xcf\xff\x3f" "\x36\x0c\x83\xfe\x7f\x03\x16\xd1\xff\x8f\x98\x7b\xff\xbf\x99\xe7\xff\xef" "\xfd\x53\x7e\x8e\xfe\x5f\xff\xbf\xe4\xf7\xaf\xff\xd7\xff\xb3\x6a\x6e\xfd" "\x7f\xee\xfe\x77\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x77\xc7" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7b\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xbd\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x9b" "\xef\xff\x4f\x2f\xa2\xff\xf7\xfc\xff\x0d\xd1\xff\x8f\x9b\x47\xff\x7f\x61" "\x6d\xf4\xff\x47\x86\x41\xff\xaf\xff\xd7\xff\xeb\xff\x19\xb5\xad\xfe\x3f" "\x77\xff\xfb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xfb\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x03\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xc1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xef\xa7\xff\xcf\xf7\xa9" "\xff\xdf\x48\xff\x5f\x7f\x74\xb6\xdd\xff\x1f\x9f\x5d\xff\x7f\x62\xd7\xaf" "\xd7\xc9\xf3\xff\xf5\xff\x1b\xa2\xff\x1f\xa7\xff\x9f\xe0\xf9\xff\xfa\x7f" "\xfd\xff\xb5\xfa\x7f\x36\x69\x6e\xcf\xff\xcf\xdd\xff\xa1\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x43\xdc\xfa\xbf\x6e\xed\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x0f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x47\xe2" "\x96\x4e\xf6\xbf\xfe\x5f\xff\xef\xf9\xff\x9e\xff\xdf\xfc\xf3\xff\xf5\xff" "\x5d\x59\x56\xff\x7f\x7c\xe5\x67\xf4\xff\xfa\x7f\xfd\xff\x72\xdf\x7f\x23" "\xfd\xbf\xe7\xff\xb3\x51\x73\xeb\xff\x73\xf7\x7f\x34\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\x7f\x2c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9b\xe2\x96\x4e\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x7e\x0f\xf5\xff\x6d\x58\x56\xff" "\xbf\xaa\x8d\xfe\xff\xa4\xfe\x5f\xff\x5f\xfd\xfc\x15\xf1\xa7\x40\xff\xaf" "\xff\x9f\xfa\x78\xda\x34\xb7\xfe\x3f\x77\xff\xc7\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x27\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x93\x71\x8b\xfd\x0f\x00\x00\x00\x8b\x74\x64\xcd\xcf\xe5\xee\xff\x54\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\xd7\xd7\xff\x2f" "\xd3\x56\xfa\xff\xfc\xa2\x98\x55\xff\xbf\xee\x7f\x99\x3c\xff\x7f\x92\xfe" "\x7f\x9f\xfd\xfc\x9d\x77\xfd\x68\x69\xcf\xff\xdf\xfb\xa7\x44\xff\xaf\xff" "\x67\xf3\xe6\xd6\xff\xe7\xee\xff\x74\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\xff\x4c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x36\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x17\xb7\x74\xb2\xff\xf5\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xbf\xfe\xf5\xf5\xff\xcb\xe4\xf9\xff\xe3\xf4\xff\x13" "\xf4\xff\x5b\x7d\x7e\xfe\xd2\xdf\xbf\xfe\x5f\xff\xcf\xaa\xb9\xf5\xff\xb9" "\xfb\x3f\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x10\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00\x00\x68\xc6" "\xd9\xdd\x9f\x71\x59\x87\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb" "\x5f\x5f\xff\xbf\x4c\xfa\xff\x71\xfa\xff\x09\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\x46\xcd\xad\xff\xff\xd2\xd9\x8f\x3a\x31\x7c\x39\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\x7f\x25\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\xbf\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x8b\x5b\x3a\xd9\xff" "\xfa\x7f\xfd\xff\x32\xfa\xff\x33\x67\xce\x9c\xd2\xff\xeb\xff\x77\x7f\x3e" "\xe7\xfa\xff\x9b\xf5\xff\x14\xfd\xff\x38\xfd\xff\x04\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\xa3\xe6\xd6\xff\xe7\xee\xff\x7a\xdc\xd2\xc9\xfe\x07\x00\x00" "\x80\x1e\xe4\xee\xff\x46\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x33" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x15\xb7\x74\xb2\xff\xf5\xff" "\x33\xe8\xff\x4f\xe8\xff\x3d\xff\x5f\xff\x3f\x78\xfe\xff\x6a\xff\x7f\xe5" "\xce\x5f\xca\xfa\xff\xfd\xd1\xff\x8f\xd3\xff\x4f\x68\xb1\xff\x3f\x71\xf1" "\x9f\xfe\xb6\xfb\xf9\x83\xda\xf6\xfb\xd7\xff\xeb\xff\x59\x35\xb7\xfe\x3f" "\x77\xff\xb7\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x77\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xbb\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xbd\xb8\xa5\x93\xfd\xaf\xff\x3f\xbc\xfe\xff\x8e\xff\x76\xbd" "\x3c\xff\xff\xe4\xb0\xfe\xfd\xeb\xff\xf5\xff\xfa\x7f\xcf\xff\xbf\xdc\xf4" "\xff\xe3\xf4\xff\x13\x5a\xec\xff\xf7\x61\xdb\xfd\xfc\xd2\xdf\xbf\xfe\x5f" "\xff\xcf\xaa\xb9\xf5\xff\xb9\xfb\xbf\x1f\xb7\xec\x1e\x7e\x47\xf7\xf7\x59" "\x02\x00\x00\x00\x73\x92\xbb\xff\x07\x71\x4b\x27\xdf\xff\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x61\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x28\x6e" "\xe9\x64\xff\xeb\xff\x67\xf0\xfc\xff\x06\xfb\x7f\xcf\xff\x5f\xff\xf5\xa1" "\xff\x9f\x75\xff\x7f\xa5\xfe\xbf\x0d\xfa\xff\x71\xfa\xff\x09\xfa\x7f\xfd" "\xbf\xfe\x7f\x43\xfd\x7f\x7e\x35\xeb\xff\x7b\x37\xb7\xfe\x3f\x77\xff\x8f" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x4f\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\xa7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f" "\x73\xdc\x72\xde\xfe\x5f\xd7\x76\xb7\x42\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xeb\x5f\x5f\xff\xbf\x4c\xfa\xff\x71\x17\xdb\xff\x1f\x1f\x0e\xd6\xff" "\x27\xfd\xbf\xfe\x5f\xff\xdf\x6b\xff\xef\xf9\xff\xec\x98\x5b\xff\x9f\xbb" "\xff\x67\x71\x8b\xef\xff\x03\x00\x00\xc0\xe2\x1c\xbd\xc0\xcf\xe7\xee\xff" "\x79\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x22\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x7f\x19\xb7\xdc\x72\xe5\xb6\xde\xd2\xa1\xd2\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\xd7\xd7\xff\x2f\x93\xfe\x7f\xdc\x2c\x9f" "\xff\x7f\xfd\x8d\xf5\x8f\xfa\xff\x26\xfa\xff\xab\xf4\xff\x6d\xf4\xff\xc3" "\xa0\xff\xe7\xe0\xe6\xd6\xff\xe7\xee\xff\x55\xdc\xe2\xfb\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xbf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc4" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x6f\xe3\x96\x4e\xf6\xbf\xfe\x5f" "\xff\x7f\xc0\xfe\xff\x6c\x9a\xa9\xff\xdf\xa1\xff\xdf\xa1\xff\x5f\x4f\xff" "\x7f\x38\xf4\xff\xe3\x66\xd9\xff\x9f\x47\xff\xdf\x44\xff\xef\xf9\xff\x8d" "\xf4\xff\x9e\xff\xcf\x26\xcc\xad\xff\xcf\xdd\xff\xbb\xb8\xa5\x93\xfd\x0f" "\x00\x00\x00\x3d\xc8\xdd\xff\xfb\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\x43\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x31\x6e\xe9\x64\xff" "\x6f\xad\xff\x8f\xff\xd4\xfa\xff\xc5\xf7\xff\x9e\xff\xaf\xff\xd7\xff\xeb" "\xff\x67\x45\xff\x3f\x4e\xff\x3f\x41\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xa8" "\xb9\xf5\xff\xb9\xfb\xff\x14\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb" "\xff\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x89\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\xbf\xc6\x2d\x9d\xec\x7f\xcf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xf5\xaf\xaf\xff\x5f\x26\xfd\xff\x38\xfd\xff\x7a\xf5\x1b" "\xa5\xff\xd7\xff\xeb\xff\xf5\xff\x6c\xd4\xdc\xfa\xff\xdc\xfd\x7f\x8b\x5b" "\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x7f\x8f\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\x5f\x5f\xff\xbf" "\x4c\xfa\xff\x71\xdb\xec\xff\xef\xf5\xff\xd3\x2f\xeb\xf9\xff\x5b\xef\xff" "\xf3\x2d\xe8\xff\xf5\xff\xfa\x7f\x36\x62\x6e\xfd\x7f\xee\xfe\x5b\xe3\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xcf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x57\xdc" "\xd2\xc9\xfe\x9f\xe8\xff\x8f\xd7\xbf\xa8\xff\x1f\xa5\xff\xdf\xfd\xfe\xf5" "\xff\xeb\xbf\x3e\xf4\xff\xfa\x7f\xfd\xff\xe5\xa7\xff\x1f\xb7\x9c\xe7\xff" "\xc7\xc7\xeb\xff\x77\xf1\xfc\xff\x79\xbf\x7f\xfd\xbf\xfe\x9f\x55\x73\xeb" "\xff\x73\xf7\xff\x3b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf\x1e" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x89\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\xff\xc6\x2d\x9d\xec\x7f\xcf\xff\x5f\x52\xff\x7f\x95\xfe" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x27\xe8\xff\xc7\x2d\xa7\xff\xf7\xfc\xff" "\x75\xf4\xff\xf3\x7e\xff\xfa\x7f\xfd\x3f\xab\xe6\xd6\xff\xe7\xee\xff\x5f" "\x00\x00\x00\xff\xff\x3a\x74\x3f\xb3", 25137); syz_mount_image( /*fs=*/0x200000000080, /*dir=*/0x200000000140, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20108c0, /*opts=*/0x2000000008c0, /*chdir=*/0xfa, /*size=*/0x6231, /*img=*/0x200000000e80); // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x2 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x200000002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000002080ul, /*flags=*/2, /*mode=*/0); if (res != -1) r[0] = res; // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x80 (8 bytes) // opts: ptr[in, fuse_options] { // fuse_options { // fd: fs_opt["fd", fmt[hex, fd_fuse]] { // name: buffer: {66 64} (length 0x2) // eq: const = 0x3d (1 bytes) // val: fd_fuse (resource) // } // comma0: const = 0x2c (1 bytes) // rootmode: fs_opt["rootmode", fmt[oct, flags[fuse_mode]]] { // name: buffer: {72 6f 6f 74 6d 6f 64 65} (length 0x8) // eq: const = 0x3d (1 bytes) // val: fuse_mode = 0x4000 (23 bytes) // } // comma1: const = 0x2c (1 bytes) // user_id: fs_opt["user_id", fmt[dec, uid]] { // name: buffer: {75 73 65 72 5f 69 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // comma2: const = 0x2c (1 bytes) // group_id: fs_opt["group_id", fmt[dec, gid]] { // name: buffer: {67 72 6f 75 70 5f 69 64} (length 0x8) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // comma3: const = 0x2c (1 bytes) // opts: fs_options[fuse_opts] { // elems: array[fs_opt_elem[fuse_opts]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // } // ] memcpy((void*)0x2000000020c0, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x2000000002c0, "fd", 2); *(uint8_t*)0x2000000002c2 = 0x3d; sprintf((char*)0x2000000002c3, "0x%016llx", (long long)r[0]); *(uint8_t*)0x2000000002d5 = 0x2c; memcpy((void*)0x2000000002d6, "rootmode", 8); *(uint8_t*)0x2000000002de = 0x3d; sprintf((char*)0x2000000002df, "%023llo", (long long)0x4000); *(uint8_t*)0x2000000002f6 = 0x2c; memcpy((void*)0x2000000002f7, "user_id", 7); *(uint8_t*)0x2000000002fe = 0x3d; sprintf((char*)0x2000000002ff, "%020llu", (long long)0); *(uint8_t*)0x200000000313 = 0x2c; memcpy((void*)0x200000000314, "group_id", 8); *(uint8_t*)0x20000000031c = 0x3d; sprintf((char*)0x20000000031d, "%020llu", (long long)0); *(uint8_t*)0x200000000331 = 0x2c; *(uint8_t*)0x200000000332 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000002100ul, /*flags=MS_DIRSYNC*/ 0x80ul, /*opts=*/0x2000000002c0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); do_sandbox_none(); return 0; }