// https://syzkaller.appspot.com/bug?id=16d67548870e2a55046efe2db946239f1e4e6891 // 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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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); } #define BITMASK(bf_off, bf_len) (((1ull << (bf_len)) - 1) << (bf_off)) #define STORE_BY_BITMASK(type, htobe, addr, val, bf_off, bf_len) \ *(type*)(addr) = \ htobe((htobe(*(type*)(addr)) & ~BITMASK((bf_off), (bf_len))) | \ (((type)(val) << (bf_off)) & BITMASK((bf_off), (bf_len)))) 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; } const int kInitNetNsFd = 201; #define MAX_FDS 30 static long syz_open_procfs(volatile long a0, volatile long a1) { char buf[128]; memset(buf, 0, sizeof(buf)); if (a0 == 0) { snprintf(buf, sizeof(buf), "/proc/self/%s", (char*)a1); } else if (a0 == -1) { snprintf(buf, sizeof(buf), "/proc/thread-self/%s", (char*)a1); } else { snprintf(buf, sizeof(buf), "/proc/self/task/%d/%s", (int)a0, (char*)a1); } int fd = open(buf, O_RDWR); if (fd == -1) fd = open(buf, O_RDONLY); return fd; } static long syz_init_net_socket(volatile long domain, volatile long type, volatile long proto) { int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) return netns; if (setns(kInitNetNsFd, 0)) return -1; int sock = syscall(__NR_socket, domain, type, proto); int err = errno; if (setns(netns, 0)) { exit(1); } close(netns); errno = err; return sock; } //% 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); int netns = open("/proc/self/ns/net", O_RDONLY); if (netns == -1) exit(1); if (dup2(netns, kInitNetNsFd) < 0) exit(1); close(netns); 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); } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { __atomic_store_n(&clone_ongoing, 0, __ATOMIC_RELAXED); return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } static long syz_clone(volatile long flags, volatile long stack, volatile long stack_len, volatile long ptid, volatile long ctid, volatile long tls) { long sp = (stack + stack_len) & ~15; __atomic_store_n(&clone_ongoing, 1, __ATOMIC_RELAXED); long ret = (long)syscall(__NR_clone, flags & ~CLONE_VM, sp, ptid, ctid, tls); return handle_clone_ret(ret); } 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)) { } // open arguments: [ // file: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: open_flags = 0x0 (8 bytes) // mode: open_mode = 0x0 (8 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000280, ".\000", 2)); syscall(__NR_open, /*file=*/0x200000000280ul, /*flags=*/0ul, /*mode=*/0ul); // modify_ldt$write arguments: [ // func: const = 0x1 (8 bytes) // buf: ptr[in, user_desc] { // user_desc { // entry_number: int32 = 0x4 (4 bytes) // base_addr: user_desc_bases = 0x1000 (4 bytes) // limit: user_desc_limits = 0x2000 (4 bytes) // seg_32bit: int32 = 0x0 (0 bytes) // contents: int32 = 0x0 (0 bytes) // read_exec_only: int32 = 0x0 (0 bytes) // limit_in_pages: int32 = 0x0 (0 bytes) // seg_not_present: int32 = 0x0 (0 bytes) // useable: int32 = 0x0 (0 bytes) // lm: int32 = 0x0 (1 bytes) // pad = 0x0 (3 bytes) // } // } // len: len = 0x10 (8 bytes) // ] NONFAILING(*(uint32_t*)0x200000000040 = 4); NONFAILING(*(uint32_t*)0x200000000044 = 0x1000); NONFAILING(*(uint32_t*)0x200000000048 = 0x2000); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 0, 1)); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 1, 2)); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 3, 1)); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 4, 1)); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 5, 1)); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 6, 1)); NONFAILING(STORE_BY_BITMASK(uint32_t, , 0x20000000004c, 0, 7, 1)); syscall(__NR_modify_ldt, /*func=*/1ul, /*buf=*/0x200000000040ul, /*len=*/0x10ul); // syz_clone arguments: [ // flags: clone_flags = 0x5400 (8 bytes) // stack: nil // stack_len: bytesize = 0x0 (8 bytes) // parentid: nil // childtid: nil // tls: nil // ] // returns pid NONFAILING(syz_clone(/*flags=CLONE_PIDFD|CLONE_VFORK|CLONE_FILES*/ 0x5400, /*stack=*/0, /*stack_len=*/0, /*parentid=*/0, /*childtid=*/0, /*tls=*/0)); // openat$audio arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: nil // flags: open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_dsp res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; // ioctl$SNDCTL_DSP_SETFRAGMENT arguments: [ // fd: fd_dsp (resource) // cmd: const = 0xc004500a (4 bytes) // arg: nil // ] syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc004500a, /*arg=*/0ul); // ioctl$SNDCTL_DSP_SETFMT arguments: [ // fd: fd_dsp (resource) // cmd: const = 0xc0045005 (4 bytes) // arg: ptr[in, int32] { // int32 = 0xe (4 bytes) // } // ] NONFAILING(*(uint32_t*)0x200000000580 = 0xe); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0045005, /*arg=*/0x200000000580ul); // prlimit64 arguments: [ // pid: pid (resource) // res: rlimit_type = 0xe (8 bytes) // new: ptr[in, rlimit] { // rlimit { // soft: intptr = 0x8 (8 bytes) // hard: intptr = 0x248 (8 bytes) // } // } // old: nil // ] NONFAILING(*(uint64_t*)0x200000000000 = 8); NONFAILING(*(uint64_t*)0x200000000008 = 0x248); syscall(__NR_prlimit64, /*pid=*/0, /*res=RLIMIT_RTPRIO*/ 0xeul, /*new=*/0x200000000000ul, /*old=*/0ul); // sendmmsg$inet6 arguments: [ // fd: sock_in6 (resource) // mmsg: ptr[in, array[mmsghdr_inet6]] { // array[mmsghdr_inet6] { // mmsghdr_inet6 { // msg_hdr: msghdr_inet6 { // msg_name: nil // msg_namelen: len = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // msg_iov: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {a9 cf f3} (length 0x3) // } // len: len = 0x3 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // } // } // msg_iovlen: len = 0x2 (8 bytes) // msg_control: nil // msg_controllen: bytesize = 0x0 (8 bytes) // msg_flags: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // msg_len: const = 0x0 (4 bytes) // pad = 0x0 (4 bytes) // } // } // } // vlen: len = 0x1 (8 bytes) // f: send_flags = 0x0 (8 bytes) // ] NONFAILING(*(uint64_t*)0x200000007bc0 = 0); NONFAILING(*(uint32_t*)0x200000007bc8 = 0); NONFAILING(*(uint64_t*)0x200000007bd0 = 0x200000001d80); NONFAILING(*(uint64_t*)0x200000001d80 = 0x200000000180); NONFAILING(memcpy((void*)0x200000000180, "\xa9\xcf\xf3", 3)); NONFAILING(*(uint64_t*)0x200000001d88 = 3); NONFAILING(*(uint64_t*)0x200000001d90 = 0); NONFAILING(*(uint64_t*)0x200000001d98 = 0); NONFAILING(*(uint64_t*)0x200000007bd8 = 2); NONFAILING(*(uint64_t*)0x200000007be0 = 0); NONFAILING(*(uint64_t*)0x200000007be8 = 0); NONFAILING(*(uint32_t*)0x200000007bf0 = 0); NONFAILING(*(uint32_t*)0x200000007bf8 = 0); syscall(__NR_sendmmsg, /*fd=*/(intptr_t)-1, /*mmsg=*/0x200000007bc0ul, /*vlen=*/1ul, /*f=*/0ul); // syz_init_net_socket$bt_l2cap arguments: [ // fam: const = 0x1f (8 bytes) // type: bt_l2cap_type = 0x5 (8 bytes) // proto: const = 0x0 (8 bytes) // ] // returns sock_bt_l2cap NONFAILING(syz_init_net_socket(/*fam=*/0x1f, /*type=SOCK_SEQPACKET*/ 5, /*proto=*/0)); // sched_setscheduler arguments: [ // pid: pid (resource) // policy: sched_policy = 0x2 (8 bytes) // prio: ptr[in, int32] { // int32 = 0x7 (4 bytes) // } // ] NONFAILING(*(uint32_t*)0x200000000180 = 7); syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_RR*/ 2ul, /*prio=*/0x200000000180ul); // 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 = 0x2800080 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x632a (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x632a) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x2000000000c0, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000440, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000013cc0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x41\x42\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20" "\x52\x82\x04\xea\xa9\x83\xc6\x7e\x1e\x67\x3c\x5d\x67\xed\x24\x9e\x59\x7b" "\x3e\x1f\xc9\x99\xf9\xed\x33\xeb\x7d\x26\xdf\x9d\xdd\x59\xcf\xcc\x3e\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc4\x0f\x7f\xf0\xe3" "\x73\x45\x44\x5c\xf9\x55\xba\xe1\x44\xc4\xe7\x62\x18\x31\x88\x58\xaa\xea" "\x95\x88\x58\x5a\x39\x91\x97\x1f\x45\xc4\x0b\xb1\xd9\x1c\xcf\x47\xc4\x78" "\x21\xa2\xc8\x8d\xcf\x46\xbc\x1e\x11\x1f\x1f\x8f\xb8\xff\xe0\xce\x6a\x75" "\xd3\xf9\x3d\xf6\xe3\xfb\x7f\xf9\xe7\x1f\x7e\x72\xec\x47\xff\xf8\xf3\xf8" "\xcc\xff\xfe\x7a\x6b\xf8\xc6\x6e\xcb\xdd\xbe\xfd\xdb\xff\xfe\xed\xee\xe3" "\xaf\x2f\x00\x00\x00\xf4\x51\x59\x96\x65\x91\x3e\xe6\x9f\x4c\x9f\xef\x07" "\x5d\x77\x0a\x00\x68\x45\x7e\xff\x2f\x93\x7c\xbb\x7a\xee\xea\xf5\x39\xeb" "\x8f\x5a\xad\x56\xab\x0f\x61\x5d\x57\x4e\x77\xb7\x5e\x44\xc4\x7a\xfd\x3e" "\xd5\x3e\x83\xc3\xf1\x00\x70\xc8\xac\xc7\x27\x5d\x77\x81\x0e\xc9\xbf\xd7" "\x46\x11\x71\xac\xeb\x4e\x00\x73\xad\xe8\xba\x03\x1c\x88\xfb\x0f\xee\xac" "\x16\x29\xdf\xa2\xfe\x7e\xb0\xb2\xd5\x9e\xcf\x05\xd9\x91\xff\x7a\xb1\x7d" "\x7d\xc7\x6e\xd3\x59\x9a\xe7\x98\xb4\xf5\xfc\xda\x88\x61\x3c\xb7\x4b\x7f" "\x96\x5a\xea\xc3\x3c\xc9\xf9\x0f\x9a\xf9\x5f\xd9\x6a\x9f\xa4\xe5\x0e\x3a" "\xff\xb6\xec\x96\xff\x64\xeb\xd2\xa7\xde\xc9\xf9\x0f\x9b\xf9\x37\x1c\x9d" "\xfc\x07\x53\xf3\xef\xab\x9c\xff\x68\x5f\xf9\x0f\xe5\x0f\x00\x00\x00\x00" "\x00\x73\x2c\xff\xfd\xff\x44\xc7\xc7\x7f\x17\x9e\x7c\x55\xf6\xe4\x51\xc7" "\x7f\x57\x5a\xea\x03\x00\x00\x00\x00\x00\x00\x00\x3c\x6d\x4f\x3a\xfe\xdf" "\xb6\xc2\xf8\x7f\x00\x00\x00\x30\xaf\xaa\xcf\xea\x95\xdf\x1d\x7f\x78\x5b" "\xfd\x5c\xff\x49\xec\xbc\xfd\x72\x11\xf1\x4c\x63\x79\xa0\x67\xd2\xc5\x32" "\xcb\x5d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfa\x64\xb4\x75" "\x0e\xef\xe5\x22\x62\x1c\x11\xcf\x2c\x2f\x97\x65\x59\xfd\xd4\x35\xeb\xfd" "\x7a\xd2\xfb\x1f\x76\x7d\x5f\x7f\xe8\xb3\xae\x5f\xe4\x01\x00\x60\xcb\xc7" "\xc7\x1b\xd7\xf2\x17\x11\x8b\x11\x71\x39\x7d\xd7\xdf\x78\x79\x79\xb9\x2c" "\x17\x97\x96\xcb\xe5\x72\x69\x21\xef\xcf\x4e\x16\x16\xcb\xa5\xda\xe7\xda" "\x3c\xad\x6e\x5b\x98\xec\x61\x87\x78\x34\x29\xab\x5f\xb6\x58\xbb\x5f\xdd" "\xac\xcf\xcb\xb3\xda\x9b\xbf\xaf\x7a\xac\x49\x39\xdc\x43\xc7\xda\xd1\x61" "\xe0\x00\x10\x11\x5b\xef\x46\xf7\xbd\x23\x1d\x31\x65\xf9\x6c\x74\xbd\x97" "\xc3\xe1\x60\xfb\x3f\x7a\x6c\xff\xec\x45\xd7\xcf\x53\x00\x00\x00\xe0\xe0" "\x95\x65\x59\x16\xe9\xeb\xbc\x4f\xa6\x63\xfe\x83\xae\x3b\x05\x00\xb4\x22" "\xbf\xff\x37\x8f\x0b\xa8\x8f\x5e\x1d\x35\xf3\xd0\x1f\xb5\x5a\xad\x56\xb7" "\x5f\xd7\x95\xd3\xdd\xad\x17\x11\xb1\x5e\xbf\x4f\xb5\xcf\x60\x38\x7e\x00" "\x38\x64\xd6\xe3\x93\xae\xbb\x40\x87\xe4\xdf\x6b\xa3\x88\x78\xa1\xeb\x4e" "\x00\x73\xad\xe8\xba\x03\x1c\x88\xfb\x0f\xee\xac\x16\x29\xdf\xa2\xfe\x7e" "\x90\xc6\x77\xcf\xe7\x82\xec\xc8\x7f\xbd\xd8\xbc\x5f\xbe\xff\xb4\xe9\x2c" "\xcd\x73\x4c\xda\x7a\x7e\x6d\xc4\x30\x9e\xdb\xa5\x3f\xcf\xb7\xd4\x87\x79" "\x92\xf3\x1f\x34\xf3\xbf\xb2\xd5\x3e\x49\xcb\x1d\x74\xfe\x6d\xd9\x2d\xff" "\x6a\x3d\x4f\x74\xd0\x9f\xae\xe5\xfc\x87\xcd\xfc\x1b\x8e\x4e\xfe\x83\xa9" "\xf9\xf7\x55\xce\x7f\xb4\xaf\xfc\x87\xf2\x07\x00\x00\x00\x00\x80\x39\x96" "\xff\xfe\x7f\x62\xae\x8e\xff\x4e\x1e\x77\x75\x66\x7a\xd4\xf1\xdf\x95\x03" "\x7b\x54\x00\x00\x00\x00\x00\x00\x00\x38\x58\xf7\x1f\xdc\x59\xcd\xd7\xbd" "\xe6\xe3\xff\x5f\x98\xb2\x9c\xeb\x3f\x8f\xa6\x9c\x7f\x21\xff\x5e\xca\xf9" "\x0f\x1a\xf9\x7f\xb5\xb1\xdc\xb0\x36\x7f\xef\xed\x87\xf9\xff\xe7\xc1\x9d" "\xd5\x3f\xde\xfa\xf7\xe7\xf3\x74\xaf\xf9\x2f\xe4\x99\x22\x3d\xb3\x8a\xf4" "\x8c\x28\xd2\x23\x15\xa3\x34\x7d\x92\xb5\xfb\xac\x8d\xf1\x70\x52\x3d\xd2" "\xb8\x18\x0c\x47\xe9\x9c\x9f\x72\xfc\x6e\x5c\x8b\xeb\xb1\x16\x67\x77\x2c" "\x3b\x48\xff\x1f\x0f\xdb\xcf\xed\x68\xaf\x7a\x3a\xde\x6c\x2f\x87\x5b\xed" "\xe7\x77\xb4\x8f\xb6\xdb\xf3\xfd\x2f\xec\x68\x1f\xa7\x33\x9d\xca\xa5\xdc" "\x7e\x3a\x56\xe3\xe7\x71\x3d\xde\xd9\x6c\xaf\xda\x16\x66\xac\xff\xe2\x8c" "\xf6\x72\x46\x7b\xce\x7f\xf8\xd4\xb6\xff\xbd\x7d\x1b\xac\xed\x7f\x3e\xe4" "\xfc\x47\xb5\x9f\x2a\xff\xe5\xd4\x5e\x34\xa6\x95\x7b\x1f\x0d\x3e\xb3\xdd" "\xd7\xa7\xd3\x1e\xe7\xad\x6b\x5f\xfc\xcd\xd9\x83\x5f\x9d\x99\x36\x62\xb8" "\xbd\x6e\x75\xd5\xfa\xbd\xd4\x41\x7f\x36\xff\x4f\x8e\x4d\xe2\x97\x37\xd7" "\x6e\x9c\xbe\x7d\xf5\xd6\xad\x1b\xe7\x22\x4d\x76\xdc\x7a\x3e\xd2\xe4\x29" "\xcb\xf9\x8f\xd3\xcf\xf6\xeb\xff\xcb\x5b\xed\xf9\x75\xbf\xbe\xbd\xde\xfb" "\x68\xb2\xef\xfc\xe7\xc5\x46\x8c\x76\xcd\xff\xe5\xda\x7c\xb5\xbe\xaf\xb4" "\xdc\xb7\x2e\xe4\xfc\x27\xe9\x27\xe7\xff\x4e\x6a\x9f\xbe\xfd\xef\x23\xff" "\xc1\x9f\x5a\x5b\x97\x59\xf2\xae\xc6\x6e\xf9\xbf\xda\x76\x87\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x86\xb2\x2c\x37\x2f\x11\x7d\x2b" "\x22\x2e\xa6\xeb\x7f\xba\xba\x36\x13\x00\x68\x57\x7e\xff\x2f\x93\x7c\x7b" "\x5b\xf5\xb0\xe5\xc7\x53\xab\x0f\x79\x5d\xcc\x59\x7f\x5a\xad\x3f\x2d\xe7" "\xab\x3f\x6a\xf5\x61\xac\xeb\xca\xe9\xde\xac\x17\x11\xf1\xf7\xfa\x7d\xaa" "\x7d\x86\x5f\x4f\xfb\x65\x00\xc0\x3c\xfb\x34\x22\xfe\xd5\x75\x27\xe8\x8c" "\xfc\x7b\x2c\x7f\xdf\x5f\x35\x3d\xd5\x75\x67\x80\x56\xdd\xfc\xe0\xc3\x9f" "\x5e\xbd\x7e\x7d\xed\xc6\xcd\xae\x7b\x02\x00\x00\x00\x00\x00\x00\x00\x3c" "\xae\x3c\xfe\xe7\x4a\x6d\xfc\xe7\x53\x65\x59\x36\x47\x71\xde\x31\xfe\xeb" "\xdb\xb1\xf2\xa4\xe3\xbf\x8e\xf2\xcc\xf6\x00\xa3\xbb\x0c\x54\x3d\xdc\xff" "\x3a\x3d\xca\xc6\x60\x32\x1c\xd4\x86\x1b\x7f\x31\x76\x1b\xff\x7b\xbc\x3d" "\xf7\xa8\xf1\xbf\x47\x33\x1e\x6f\x3c\xa3\x7d\x32\xa3\x7d\x61\x46\xfb\xe2" "\x8c\xf6\xa9\x17\x7a\xd4\xe4\xfc\x5f\xac\x8d\x77\x7e\x2a\x22\x4e\x36\x86" "\x5f\x7f\xec\xf1\x5f\xe7\xcc\xa3\xc6\x7f\x6e\x8e\x79\xdf\x07\x39\xff\x97" "\x6a\xcf\xe7\x2a\xff\xaf\x34\x96\xab\xe7\x5f\xfe\xfe\x30\xe7\x3f\xd8\x91" "\xff\x99\x5b\xef\xff\xe2\xcc\xcd\x0f\x3e\x7c\xed\xda\xfb\x57\xdf\x5b\x7b" "\x6f\xed\x67\x17\xce\x9d\x3b\x7b\xe1\xe2\xc5\x4b\x97\x2e\x9d\x79\xf7\xda" "\xf5\xb5\xb3\x5b\xff\x76\xd8\xe3\x83\x95\xf3\xcf\x63\x5f\x3b\x0f\xb4\x5f" "\x72\xfe\x39\x73\xf9\xf7\x4b\xce\xff\x4b\xa9\x96\x7f\xbf\xe4\xfc\xbf\x9c" "\x6a\xf9\xf7\x4b\xce\x3f\xef\xef\xc9\xbf\x5f\x72\xfe\xf9\xb3\x8f\xfc\xfb" "\x25\xe7\xff\x4a\xaa\xe5\xdf\x2f\x39\xff\xaf\xa5\x5a\xfe\xfd\x92\xf3\x7f" "\x35\xd5\xf2\xef\x97\x9c\xff\xd7\x53\x2d\xff\x7e\xc9\xf9\xbf\x96\x6a\xf9" "\xf7\x4b\xce\xff\x74\xaa\xe5\xdf\x2f\x39\xff\x33\xa9\xde\x63\xfe\x4b\x07" "\xdd\x2f\xda\x91\xf3\xcf\x47\xb8\x6c\xff\xfd\x92\xf3\xcf\x67\x36\xc8\xbf" "\x5f\x72\xfe\xe7\x53\x2d\xff\x7e\xc9\xf9\x5f\x48\xb5\xfc\xfb\x25\xe7\xff" "\x7a\xaa\xe5\xdf\x2f\x39\xff\x6f\xa4\x5a\xfe\xfd\x92\xf3\xbf\x98\x6a\xf9" "\xf7\x4b\xce\xff\x9b\xa9\x96\x7f\xbf\xe4\xfc\x2f\xa5\x5a\xfe\xfd\x92\xf3" "\xff\x56\xaa\xe5\xdf\x2f\x39\xff\x6f\xa7\x5a\xfe\xfd\x92\xf3\x7f\x23\xd5" "\xf2\xef\x97\x9c\xff\x77\x52\x2d\xff\x7e\xc9\xf9\x7f\x37\xd5\xf2\xef\x97" "\x9c\xff\xf7\x52\x2d\xff\x7e\xc9\xf9\xbf\x99\x6a\xf9\xf7\xcb\xc3\xef\xff" "\x37\x63\xc6\x8c\x99\x3c\xd3\xf5\x2b\x13\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd0\xd4\xc6\xe9\xc4\x5d\xaf\x23\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\x9f\x1d\x38\x10\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xc0\x81\x00\x00\x00\x00\x00\x90\xff\x6b" "\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xef\xee\x62\xe4\x3a\xcb" "\x3b\x80\x9f\xd9\x2f\x6f\x9c\x90\x18\x08\xa9\x93\x9a\xb0\x71\x4c\x08\xc9" "\x26\xbb\xb6\x13\x7f\xd0\xa6\x98\xf0\xd9\xf0\x55\x12\x42\xa1\x1f\xd8\xae" "\x77\x6d\x96\x3a\xb6\xf1\xda\x25\xd0\xa8\x76\x14\x28\x91\x30\x2a\xad\x68" "\x1b\x2e\xda\x02\x42\x6d\x6e\x2a\xa2\x8a\x0b\x5a\x01\xca\x05\x6a\x55\xa9" "\x12\xb4\x17\xf4\x06\x51\xa1\x72\x11\x55\x01\x05\xa4\x4a\x6d\x05\xd9\x6a" "\xe6\xbc\xef\xbb\x33\xb3\xf3\xb1\xeb\x9d\x5d\x9f\x39\xe7\xf7\x93\xec\xc7" "\x3b\x73\xe6\x9c\xf7\x9c\x79\xe7\xcc\x3e\xbb\xfe\xcf\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x66\xb7\xbc\x71\xfe\x53\xb5\x2c" "\xcb\x6a\xb5\x5a\x7e\xc3\xb6\x2c\xbb\xa6\x5e\xaf\x9a\xda\xd6\xb8\xe5\x75" "\x57\x76\x7c\x00\x00\x00\xc0\xfa\xfd\xbc\xf1\xf7\x0b\xd7\xa5\x1b\x0e\xad" "\xe2\x41\x4d\xcb\xfc\xd3\xcd\xdf\xfe\xea\xd2\xd2\xd2\x52\xf6\xfe\xd1\x3f" "\x1d\xff\xdc\xd2\x52\xba\x63\x2a\xcb\xc6\xb7\x64\x59\xe3\xbe\xe8\x99\x1f" "\x7c\xa0\xd6\xbc\x4c\xf0\x44\x36\x59\x1b\x69\xfa\x7a\xa4\xcf\xe6\x47\xfb" "\xdc\x3f\xd6\xe7\xfe\xf1\x3e\xf7\x4f\xf4\xb9\x7f\x4b\x9f\xfb\x27\xfb\xdc" "\xbf\xe2\x00\xac\x70\x55\x56\x4b\x2b\xdb\xd5\xf8\xe7\xb6\xfc\x90\x66\xd7" "\x67\xe3\x8d\xfb\x76\x75\x78\xd4\x13\xb5\x2d\x23\xf5\x63\x97\x1e\x9b\xd5" "\x1a\x8f\x59\x1a\x3f\x9e\x2d\x64\x27\xb3\xf9\x6c\xb6\x65\xf9\x7c\xd9\x5a" "\x63\xf9\xaf\xdf\x52\xdf\xd6\xdb\xb2\xb8\xad\x91\xa6\x6d\xed\xa8\xcf\x90" "\x9f\x3c\x76\x2c\x8e\xa1\x16\x8e\xf1\xae\x96\x6d\x2d\xaf\x33\xfa\xd1\x1b" "\xb2\xa9\x9f\xfe\xe4\xb1\x63\x7f\x7d\xee\xf9\x1b\x3b\xd5\xbe\x87\xa1\x65" "\x7d\xf9\x38\x6f\xdf\x59\x1f\xe7\x27\xc2\x2d\xf9\x58\x6b\xd9\x96\x74\x4c" "\xe2\x38\x47\x9a\xc6\xb9\xa3\xc3\x73\x32\xda\x32\xce\x5a\xe3\x71\xf5\x7f" "\xb7\x8f\xf3\x85\x55\x8e\x73\x74\x79\x98\x9b\xaa\xfd\x39\x9f\xcc\x46\x1a" "\xff\xfe\x4e\xe3\x38\x8d\xd5\xb2\x0e\xc7\x69\x47\xb8\xed\x7f\x6e\xcd\xb2" "\xec\xe2\xf2\xb0\xdb\x97\x59\xb1\xad\x6c\x24\xdb\xda\x72\xcb\xc8\xf2\xf3" "\x33\x99\xcf\xc8\xfa\x3a\xea\x53\xe9\x65\xd9\x58\xef\x79\xba\x54\x6b\x99" "\xa7\xb7\xac\x62\x9e\xd6\xeb\xdc\xae\xd6\x79\xda\xfe\x9a\x88\xcf\xff\x2d" "\xe1\x71\x63\x5d\xc6\xd0\xfc\x34\xfd\xe8\xf1\x89\xa6\xe7\xfd\x67\x4b\x97" "\x33\x4f\xa3\xfa\x5e\x77\x7b\xad\xb4\xcf\xc1\x41\xbf\x56\x8a\x32\x07\xe3" "\xbc\xf8\x4e\x63\xa7\x9f\xec\x38\x07\x77\x85\xfd\x7f\xec\xb6\xee\x73\xb0" "\xe3\xdc\xe9\x30\x07\xd3\x7e\x37\xcd\xc1\x9d\xfd\xe6\xe0\xc8\xc4\x68\x63" "\xcc\xe9\x49\xa8\x35\x1e\xb3\x3c\x07\x77\xb7\x2c\x3f\xda\xd8\x52\xad\x51" "\x9f\xbb\xad\xf7\x1c\x9c\x39\xf7\xc8\x99\x99\xc5\x8f\x7d\xfc\xae\x85\x47" "\x8e\x9e\x98\x3f\x31\x7f\x6a\xef\xee\xdd\xb3\x7b\xf7\xed\x3b\x70\xe0\xc0" "\xcc\xf1\x85\x93\xf3\xb3\xf9\xdf\x97\x79\xb4\x8b\x6f\x6b\x36\x92\x5e\x03" "\x3b\xc3\xb1\x8b\xaf\x81\xd7\xb4\x2d\xdb\x3c\x55\x97\xbe\x38\xb1\xe2\xfc" "\x7b\xb9\xaf\xc3\xc9\x1e\xaf\xc3\x6d\x6d\xcb\x0e\xfa\x75\x38\xd6\xbe\x73" "\xb5\xcd\x79\x41\xae\x9c\xd3\xf9\x6b\xe3\xbd\xf5\x83\x3e\x79\x69\x24\xeb" "\xf2\x1a\x6b\x3c\x3f\x77\xac\xff\x75\x98\xf6\xbb\xe9\x75\x38\xd6\xf4\x3a" "\xec\xf8\x9e\xd2\xe1\x75\x38\xb6\x8a\xd7\x61\x7d\x99\x33\x77\xac\xee\x7b" "\x96\xb1\xa6\x3f\x9d\xc6\xd0\xfd\xbd\x60\x7d\x73\x70\x5b\xd3\x1c\x6c\xff" "\x7e\xa4\x7d\x0e\x0e\xfa\xfb\x91\xa2\xcc\xc1\xc9\x30\x2f\xbe\x77\x47\xf7" "\xf7\x82\x1d\x61\xbc\x4f\x4e\xaf\xf5\xfb\x91\xd1\x15\x73\x30\xed\x6e\x38" "\xf7\xd4\x6f\x49\xdf\xef\x4f\x1e\x68\x94\x4e\xf3\xf2\xa6\xfa\x1d\x57\x4f" "\x64\xe7\x17\xe7\xcf\xde\xfd\xe8\xd1\x73\xe7\xce\xee\xce\x42\xd9\x14\x2f" "\x6f\x9a\x2b\xed\xf3\x75\x6b\xd3\x3e\x65\x2b\xe6\xeb\xc8\x9a\xe7\xeb\xa1" "\x85\x9b\x9f\xbc\xa9\xc3\xed\xdb\xc2\xb1\x9a\xbc\xab\xfe\xd7\x64\xd7\xe7" "\xaa\xbe\xcc\x3d\x77\xf7\x7e\xae\x1a\xef\x6e\x9d\x8f\x67\xcb\xad\x7b\xb2" "\x50\x06\x2c\x1c\xcf\xa5\x2d\x9b\x74\x3c\x3b\xbd\x9b\xd7\x8f\xe7\x44\x96" "\x7d\xfe\x5b\x8f\x3f\xf8\x8d\xc7\x3e\xff\xc6\xae\xc7\xb3\xde\x6f\x7e\x62" "\x66\xfd\xdf\x8b\xa7\xbe\xb4\xe9\xfc\x3b\xde\xe5\xfc\x1b\xfb\xfe\x17\xf3" "\xed\xa5\x55\x3d\x31\x3a\x3e\x96\xbf\x7e\x47\xd3\xd1\x19\x6f\x39\x1f\xb7" "\x3e\x55\x63\x8d\x73\x57\xad\xb1\xed\x17\x66\x56\x77\x3e\x1e\x0f\x7f\x36" "\xfb\x7c\x7c\x7d\x8f\xf3\xf1\xf6\xb6\x65\x07\x7d\x3e\x1e\x6f\xdf\xb9\x78" "\x3e\xae\xf5\xfb\x69\xc7\xfa\xb4\x3f\x9f\x93\x61\x9e\x9c\x9c\xed\x7d\x3e" "\xae\x2f\xb3\x7d\xcf\x5a\xe7\xe4\x58\xcf\xf3\xf1\xad\xa1\xd6\xc2\xf1\x7f" "\x6d\xe8\x14\x52\x5f\xd4\x34\x77\xba\xcd\xdb\xb4\xad\xb1\xb1\xf1\xb0\x5f" "\x63\x71\x0b\xad\xf3\x74\x6f\xcb\xf2\xe3\xa1\x37\xab\x6f\xeb\xe9\x3d\x97" "\x37\x4f\x6f\xbf\x35\x5f\xd7\x68\xda\xbb\x65\x9b\x35\x4f\xa7\xda\x96\x1d" "\xf4\x3c\x4d\x3f\xfb\xea\x36\x4f\x6b\xfd\x7e\xfa\x76\x79\xda\x9f\xcf\xc9" "\x30\x2f\xae\xdf\xdb\x7b\x9e\xd6\x97\x79\xf6\x9e\xf5\x9f\x3b\xaf\x8a\xff" "\x6c\x3a\x77\x4e\xf4\x9b\x83\xe3\xa3\x13\xf5\x31\x8f\xa7\x49\xd8\x38\xdf" "\x67\x4b\x57\xc5\x39\x78\x77\x76\x2c\x3b\x9d\x9d\xcc\xe6\x1a\xf7\x4e\x34" "\xe6\x53\xad\xb1\xad\xe9\x7b\x57\x37\x07\x27\xc2\x9f\xcd\x3e\x57\x6e\xef" "\x31\x07\x6f\x6f\x5b\x76\xd0\x73\x30\xbd\x8f\x75\x9b\x7b\xb5\xb1\x95\x3b" "\x3f\x00\xed\xcf\xe7\x64\x98\x17\x4f\xdd\xdb\x7b\x0e\xd6\x97\x79\xd3\xfe" "\xc1\x7e\xef\x7a\x7b\xb8\x25\x2d\xd3\xf4\xbd\x6b\xfb\xcf\xd7\xba\xfd\xcc" "\xeb\xa6\xb6\xc3\xb4\x51\x73\x65\x2c\x8c\xf3\x5b\xfb\x7b\xff\x6c\xb6\xbe" "\xcc\xc9\x03\x6b\xed\x33\x7b\x1f\xa7\x3b\xc3\x2d\x57\x77\x38\x4e\xed\xaf" "\xdf\x6e\xaf\xa9\xb9\x6c\x73\x8e\xd3\xf6\x30\xce\xe7\x0f\x74\x3f\x4e\xf5" "\xf1\xd4\x97\xf9\xdc\xc1\x55\xce\xa7\x43\x59\x96\x5d\xf8\xc8\xfd\x8d\x9f" "\xf7\x86\xdf\xaf\xfc\xdd\xf9\xef\x7e\xb5\xe5\xf7\x2e\x9d\x7e\xa7\x73\xe1" "\x23\xf7\xff\xf8\x25\xc7\xff\x71\x2d\xe3\x07\x60\xf8\xbd\x98\x97\xad\xf9" "\x7b\x5d\xd3\x6f\xa6\x56\xf3\xfb\x7f\x00\x00\x00\x60\x28\xc4\xbe\x7f\x24" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf8\xbf\xc2\x13\xfd\x3f\x00" "\x00\x00\x94\x46\xec\xfb\xc7\x42\x4d\x2a\xd2\xff\x6f\x7f\xd3\xf3\x0b\x2f" "\x5e\xc8\x52\x32\x7f\x29\x88\xf7\xa7\xc3\xf0\x40\xbe\x5c\xcc\xb8\xce\x86" "\xaf\xa7\x96\x96\xd5\x6f\xbf\xff\xcb\xf3\xff\xfd\x0f\x17\x56\xb7\xed\x91" "\x2c\xcb\x7e\xf6\xc0\xef\x77\x5c\x7e\xfb\x03\x71\x5c\xb9\xa9\x30\xce\x67" "\xde\xdc\x7a\xfb\x0a\x5f\xbd\x6b\x55\xdb\x3e\xf2\xf0\x85\xb4\xdd\xe6\xfc" "\xfa\x17\xc2\xfa\xe3\xfe\xac\x76\x1a\x74\x8a\xe0\xce\x66\x59\xf6\xf5\xeb" "\x3e\xd3\xd8\xce\xd4\x07\x2e\x35\xea\xb3\x0f\x1c\x69\xd4\x07\x2f\x3e\xf9" "\x44\x7d\x99\x17\x0e\xe6\x5f\xc7\xc7\x3f\xf7\xf2\x7c\xf9\xbf\x08\xe1\xdf" "\x43\xc7\x8f\xb6\x3c\xfe\xb9\x70\x1c\x7e\x18\xea\xec\xdb\x3b\x1f\x8f\xf8" "\xb8\xaf\x5c\x7a\xed\x8e\xfd\xef\x5b\xde\x5e\x7c\x5c\x6d\xe7\xb5\x8d\xdd" "\x7e\xea\x83\xf9\x7a\xe3\xe7\xe4\x7c\xf6\x89\x7c\xf9\x78\x9c\xbb\x8d\xff" "\x1b\x9f\x7e\xfa\x2b\xf5\xe5\x1f\x7d\x75\xe7\xf1\x5f\x18\xe9\x3c\xfe\xa7" "\xc3\x7a\xbf\x1c\xea\xff\xbe\x32\x5f\xbe\xf9\x39\xa8\x7f\x1d\x1f\xf7\xc9" "\x30\xfe\xb8\xbd\xf8\xb8\xbb\xbf\xf4\xcd\x8e\xe3\x7f\xe6\x53\xf9\xf2\x67" "\xde\x92\x2f\x77\x24\xd4\xb8\xfd\xdb\xc3\xd7\xbb\xde\xf2\xfc\x42\xf3\xf1" "\x7a\xb4\x76\xb4\x65\xbf\xb2\xb7\xe6\xcb\xc5\xed\xcf\x7e\xf7\x8f\x1a\xf7" "\xc7\xf5\xc5\xf5\xb7\x8f\x7f\xf2\xf0\xa5\x96\xe3\xd1\x3e\x3f\x9e\xfd\xb7" "\x7c\x3d\x33\x6d\xcb\xc7\xdb\xe3\x76\xa2\xbf\x6f\xdb\x7e\x7d\x3d\xcd\xf3" "\x33\x6e\xff\xe9\x3f\x3c\xd2\x72\x9c\xfb\x6d\xff\x99\x07\x9f\x7b\x65\x7d" "\xbd\xed\xdb\xbf\xb3\x6d\xb9\x33\x1f\xb9\xa3\xb1\xfd\xe5\xf5\xb5\x7e\x62" "\xd3\x5f\x7e\xf2\x33\x1d\xb7\x17\xc7\x73\xe8\x6f\xcf\xb4\xec\xcf\xa1\xf7" "\x84\xd7\x71\xd8\xfe\x53\x1f\x0c\xf3\x31\xdc\xff\x7f\xcf\xe4\xeb\x6b\xff" "\x74\x85\x23\xef\x69\x3d\xff\xc4\xe5\xbf\xb0\xed\x42\xcb\xfe\x44\x6f\xfb" "\x69\xbe\xfd\x67\x5e\x7f\xa2\x51\xb7\x4c\x5e\xb5\xf5\xea\x6b\x5e\x72\xed" "\xc5\x57\xd5\x8f\x5d\x96\x7d\x67\x4b\xbe\xbe\x7e\xdb\x3f\xf1\x57\xa7\x5b" "\xc6\xff\xc5\x1b\xf2\xe3\x11\xef\x8f\x19\xfd\xf6\xed\x77\x13\xb7\x7f\xf6" "\xa3\xd3\xa7\x4e\x2f\x9e\x5f\x98\x4b\x47\xf5\xb1\xeb\x1a\x9f\x9d\xf3\x8e" "\x7c\x3c\x71\xbc\xd7\x85\x73\x6b\xfb\xd7\x87\x4f\x9f\xfb\xd0\xfc\xd9\xa9" "\xd9\xa9\xd9\x2c\x9b\x2a\xef\x47\xe8\x5d\xb6\x2f\x85\xfa\xe3\xbc\x5c\xec" "\xbd\xf4\xd2\x8a\x33\xe8\x1d\x0f\x87\xe7\xf3\xa6\x3f\xff\xfa\xd6\xdb\xfe" "\xf5\xd3\xf1\xf6\x7f\x7f\x6f\x7e\xfb\xa5\xb7\xe7\xef\x5b\xaf\x09\xcb\x7d" "\x36\xdc\xbe\x2d\x3c\x7f\x6b\xdb\xfe\x4a\x4f\xdd\x72\x43\xe3\xf5\x5d\x7b" "\x36\x8c\x70\x69\xe5\xe7\x05\xaf\xc7\x8e\x5d\xff\x75\x60\x55\x0b\x86\xfd" "\x6f\xff\xbe\x20\xce\xf7\x33\xaf\xf8\x50\xe3\x38\xd4\xef\x6b\xbc\x6f\xc4" "\xd7\xf5\x3a\xc7\xff\xfd\xb9\x7c\x3d\x5f\x0b\xc7\x75\x29\x7c\x32\xf3\xce" "\x1b\x96\xb7\xd7\xbc\x7c\xfc\x6c\x84\x4b\x0f\xe5\xaf\xf7\x75\x1f\xbf\x70" "\x9a\x8b\xcf\xeb\xdf\x84\xe7\xfb\x9d\x3f\xcc\xd7\x1f\xc7\x15\xf7\xf7\xfb" "\xe1\xfb\x98\x6f\x6e\x6f\x3d\xdf\xc5\xf9\xf1\xb5\x0b\x23\xed\xeb\x6f\x7c" "\x8a\xc7\xc5\x70\x3e\xc9\x2e\xe6\xf7\xc7\xa5\xe2\xf1\xbe\xf4\xc2\x0d\x1d" "\x87\x17\x3f\x87\x24\xbb\x78\x63\xe3\xeb\x3f\x49\xeb\xb9\x71\x4d\xbb\xd9" "\xcd\xe2\xc7\x16\x67\x4e\x2e\x9c\x3a\xff\xe8\xcc\xb9\xf9\xc5\x73\x33\x8b" "\x1f\xfb\xf8\xe1\x47\x4e\x9f\x3f\x75\xee\x70\xe3\xb3\x3c\x0f\x7f\xb8\xdf" "\xe3\x97\xcf\x4f\x5b\x1b\xe7\xa7\xb9\xf9\x7d\xf7\x64\x8d\xb3\xd5\xe9\xbc" "\x6c\xb0\x2b\x3d\xfe\x33\x0f\x1f\x9b\xdb\x3f\x7b\xdb\xdc\xfc\xf1\xa3\xe7" "\x8f\x9f\x7b\xf8\xcc\xfc\xd9\x13\xc7\x16\x17\x8f\xcd\xcf\x2d\xde\x76\xf4" "\xf8\xf1\xf9\x8f\xf6\x7b\xfc\xc2\xdc\x7d\xbb\xf7\x1c\xdc\xbb\x7f\xcf\xf4" "\x89\x85\xb9\xfb\x0e\x1c\x3c\xb8\xf7\xe0\xf4\xc2\xa9\xd3\xf5\x61\xe4\x83" "\xea\x63\xdf\xec\xef\x4e\x9f\x3a\x7b\xb8\xf1\x90\xc5\xfb\xee\x39\xb8\xfb" "\xde\x7b\xef\x99\x9d\x7e\xe4\xf4\xdc\xfc\x7d\xfb\x67\x67\xa7\xcf\xf7\x7b" "\x7c\xe3\xbd\x69\xba\xfe\xe8\xdf\x9b\x3e\x3b\x7f\xf2\xe8\xb9\x85\x47\xe6" "\xa7\x17\x17\x3e\x3e\x7f\xdf\xee\x83\xfb\xf6\xed\xe9\xfb\x69\x80\x8f\x9c" "\x39\xbe\x38\x35\x73\xf6\xfc\xa9\x99\xf3\x8b\xf3\x67\x67\xf2\x7d\x99\x3a" "\xd7\xb8\xb9\xfe\xde\xd7\xef\xf1\x94\xd3\xe2\x7f\xe4\xdf\xcf\xb6\xab\xe5" "\x1f\xc4\x97\xbd\xfb\xce\x7d\xe9\xf3\x59\xeb\xbe\xfc\x78\xd7\x55\xe5\x8b" "\xb4\x7d\x80\xe8\xf3\xe1\xb3\x68\xfe\xf9\xa5\x67\x0e\xac\xe6\xeb\xd8\xf7" "\x8f\x87\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x44\xa8\x89\xfe" "\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x5b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a" "\xb1\xef\x9f\x0c\x35\xa9\x48\xff\x5f\xba\xfc\xff\xf6\x0b\xcd\xeb\x9b\xec" "\xb6\x98\xfc\xbf\xfc\x7f\xf3\xf1\x92\xff\xaf\x58\xfe\xff\xa1\xa2\xe5\xff" "\xf3\xf3\x85\xfc\xff\x60\xac\x37\x7f\x2f\xff\x1f\xc8\xff\xcb\xff\xcb\xff" "\x5f\xa1\xfc\xff\xd5\x6b\xce\xff\x2f\x85\x37\x24\xf9\x7f\x8a\xa8\x68\xf9" "\xff\xd8\xf7\x5f\x95\x65\x95\xec\xff\x01\x00\x00\xa0\x0a\x62\xdf\xbf\x35" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xab\x43\x4d\xf4\xff\x00\x00" "\x00\x50\x1a\xb1\xef\xbf\x26\xd4\xa4\x22\xfd\xff\x6a\xf3\xff\x63\xc3\x99" "\xff\xef\x4a\xfe\x5f\xfe\xbf\xf9\x78\xc9\xff\xcb\xff\x77\xda\xbe\xfc\xff" "\x70\x92\xff\xef\x4d\xfe\xbf\x0f\xf9\xff\x99\xac\x5a\xf9\xff\x8b\x83\x1c" "\xbf\xeb\xff\xcb\xff\xb3\x52\xd1\xf2\xff\xb1\xef\x7f\x49\xa8\x49\x45\xfa" "\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x5f\x1b\x6a\xa2\xff\x07\x00\x00\x80\xd2" "\x88\x7d\xff\x75\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x0b\x35" "\xa9\x48\xff\x5f\xf2\xeb\xff\x77\x25\xff\x2f\xff\xdf\x7c\xbc\xe4\xff\xe5" "\xff\x3b\x6d\x5f\xfe\x7f\x38\x15\x25\xff\x9f\x5d\xe6\xf6\xe5\xff\xe5\xff" "\xaf\x74\xfe\xdf\xf5\xff\xe5\xff\xe5\xff\x19\xa4\xa2\xe5\xff\x63\xdf\xff" "\xd2\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x59\xa8\x89\xfe" "\x1f\x00\x00\x00\x8a\x67\xec\xf2\x1e\x16\xfb\xfe\x97\x87\x9a\xac\xe8\xff" "\x2f\x73\x03\x00\x00\x00\xc0\x15\x17\xfb\xfe\xeb\xb3\xb6\x20\x78\x45\x7e" "\xff\x5f\xbe\xfc\xff\x35\xab\xda\xb6\xfc\xff\x30\xe5\xff\xb7\xa4\xfb\xe4" "\xff\xe5\xff\xb3\x42\xe6\xff\x47\x33\xf9\xff\xe2\x28\x4a\xfe\xdf\xf5\xff" "\x2f\x6f\xfc\xf2\xff\xf2\xff\xc3\x3c\x7e\xf9\x7f\xf9\x7f\x56\x2a\x5a\xfe" "\xbf\xd1\xf7\x67\x93\xd9\x2b\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4" "\xbe\xff\x86\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x7f\x21\xd4\x44" "\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xed\xa1\x26\x15\xe9\xff\xcb\x97\xff" "\x77\xfd\xff\x6c\xc8\xf2\xff\xe3\x6d\x63\x77\xfd\xff\xe5\xc7\xc9\xff\xe7" "\x8a\x9f\xff\x77\xfd\xff\x22\x91\xff\xef\x4d\xfe\xbf\x0f\xf9\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\x06\xaa\x68\xf9\xff\xd8\xf7\xdf\x18\x6a\x52\x91\xfe\x1f" "\x00\x00\x00\xaa\x20\xf6\xfd\x37\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62" "\xdf\xff\x8b\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xef\x08\x35\xa9" "\x48\xff\x2f\xff\x5f\xf0\xfc\x7f\x4c\x8e\x96\x38\xff\xdf\xff\xfa\xff\xf2" "\xff\xf2\xff\xf2\xff\xf2\xff\xab\x27\xff\xdf\x9b\xfc\x7f\x1f\xf2\xff\xf2" "\xff\xf2\xff\xf2\xff\x0c\x54\xd1\xf2\xff\xb1\xef\x7f\x65\xa8\x49\x45\xfa" "\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xdf\x1c\x6a\xa2\xff\x07\x00\x00\x80\xd2" "\x88\x7d\xff\xab\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x9f\x0a\x35" "\xa9\x48\xff\x2f\xff\x5f\xf0\xfc\x7f\x9e\x83\x9f\x28\xf3\xf5\xff\xe5\xff" "\xe5\xff\xe5\xff\xe5\xff\x07\x49\xfe\xbf\x37\xf9\xff\x3e\xc2\x69\xee\x47" "\x59\x96\xc9\xff\xcb\xff\xcb\xff\xcb\xff\xb3\x7e\x45\xcb\xff\xc7\xbe\xff" "\x96\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xdf\x19\x6a\xa2\xff" "\x07\x00\x00\x80\xd2\x88\x7d\xff\xad\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d" "\xd8\xf7\xef\x0a\x35\xa9\x48\xff\x2f\xff\x3f\x14\xf9\xff\x4c\xfe\x5f\xfe" "\x5f\xfe\xbf\x3c\xf9\xff\x3f\xbe\x3a\xff\x7a\x2e\xcb\x96\x2e\xc8\xff\x0f" "\x9c\xfc\x7f\x6f\xf2\xff\x7d\xb8\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x3f\x03\x55" "\xb4\xfc\x7f\xec\xfb\x5f\x1d\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6" "\xfd\xb7\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\x9a\x50\x13\xfd" "\x3f\x00\x00\x00\x94\x46\xec\xfb\x6f\x0f\x35\xa9\x48\xff\x2f\xff\x2f\xff" "\x5f\xb0\xfc\xff\x48\xf3\xe3\x8a\x93\xff\xaf\xd5\xe4\xff\x33\xf9\x7f\xd7" "\xff\x1f\x0a\xf2\xff\xbd\xc9\xff\xf7\x21\xff\x2f\xff\x2f\xff\x2f\xff\xcf" "\x40\x15\x2d\xff\x1f\xfb\xfe\xd7\x86\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a" "\x88\x7d\xff\x1d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x19\x6a" "\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x74\xa8\x49\x45\xfa\x7f\xf9\x7f" "\xf9\xff\x82\xe5\xff\x5d\xff\x5f\xfe\x5f\xfe\x5f\xfe\x7f\x5d\xe4\xff\x7b" "\x93\xff\xef\x43\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x81\x2a\x5a\xfe\x3f\xf6" "\xfd\x77\x85\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\xdd\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xcf\x84\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\x3f\x1b\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x7f" "\x4d\xf9\xff\x57\x2d\xaf\x57\xfe\x3f\x27\xff\x5f\x2c\xf2\xff\xbd\xc9\xff" "\xf7\x21\xff\x2f\xff\x7f\xc5\xf3\xff\xe3\xf2\xff\x94\x4a\xd1\xf2\xff\xb1" "\xef\xdf\x1d\x6a\x92\x1a\xbf\x89\xcb\xd8\x4b\x00\x00\x00\xa0\x48\x62\xdf" "\xbf\x27\xd4\xa4\x22\xbf\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\xde\x50\x13" "\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xef\x09\x35\xa9\x48\xff\x2f\xff\x2f" "\xff\x2f\xff\x2f\xff\xef\xfa\xff\x9d\xb7\x2f\xff\x3f\x9c\xe4\xff\x7b\x1b" "\x7c\xfe\x3f\xee\xa2\xfc\xbf\xfc\xbf\xfc\xbf\xeb\xff\xcb\xff\xb3\x52\xd1" "\xf2\xff\xb1\xef\xbf\x37\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb" "\xf7\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x3f\xd4\x44\xff\x0f" "\x00\x00\x00\xa5\x11\xfb\xfe\x03\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5" "\xff\xe5\xff\xe5\xff\x3b\x6f\x5f\xfe\x7f\x38\xc9\xff\xf7\xe6\xfa\xff\x7d" "\x14\x2f\xff\xff\xfa\xe6\x87\x6f\x66\xfe\xbf\xbe\x2d\xf9\x7f\xf9\x7f\xf9" "\x7f\xd6\xee\xa1\x3f\x68\xfe\xaa\x68\xf9\xff\xd8\xf7\x1f\x0c\x35\xa9\x48" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\xd7\x85\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\xff\x4b\xa1\x26\xbd\xfb\xff\x2d\x1b\x3b\x2a\x00\x00\x00\x60" "\x90\x62\xdf\xff\xcb\xa1\x26\x15\xf9\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc" "\xbf\xfc\x7f\xe7\xed\xcb\xff\x0f\x27\xf9\xff\xde\xe4\xff\xfb\x28\x5e\xfe" "\xbf\x85\xeb\xff\x17\x7b\xfc\xf2\xff\xf2\xff\xac\x54\xb4\xfc\x7f\xec\xfb" "\xef\x0b\x35\xa9\x48\xff\x0f\x00\x00\x00\x43\xae\xfd\x57\x48\x1d\xc5\xbe" "\xff\x57\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x7d\xa8\x89\xfe" "\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x87\x42\x0d\x3a\xc5\xb9\x4b\x49\xfe\x5f" "\xfe\x7f\x38\xf3\xff\x93\xf2\xff\xf2\xff\xa5\xcb\xff\x4f\xc4\xf5\xca\xff" "\xaf\x8b\xfc\x7f\x6f\xf2\xff\x7d\x6c\x44\xfe\x7f\xb2\x65\xfd\xf2\xff\x1b" "\xe8\x4a\x8f\x5f\xfe\x5f\xfe\x9f\x95\x8a\x96\xff\x8f\x7d\xff\x1b\x42\x4d" "\xfc\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xf7\x87\x9a\xe8\xff\x01\x00\x00" "\xa0\x34\x62\xdf\xff\xc6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xdf" "\x14\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x7f\x38\xf3\xff\xae\xff\x9f\xc9\xff" "\x97\x2e\xff\xef\xfa\xff\x83\x21\xff\xdf\x9b\xfc\x7f\x1f\xae\xff\x2f\xff" "\xbf\x71\xf9\xff\xbe\xef\x14\xf2\xff\x94\x51\xd1\xf2\xff\xb1\xef\x7f\x73" "\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xbf\x25\xd4\x44\xff\x0f" "\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62" "\xdf\xff\xb6\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\x57\x32\xff\x9f\xbb\x28" "\xff\x2f\xff\xdf\xb0\x21\xf9\xff\x8b\xf5\x03\x2d\xff\x5f\x25\xf2\xff\xbd" "\xc9\xff\xf7\x21\xff\x2f\xff\xef\xfa\xff\xf2\xff\x0c\x54\xd1\xf2\xff\xb1" "\xef\xff\xd5\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x20\xd4" "\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xb7\x87\x9a\xe8\xff\x01\x00\x00" "\xa0\x34\x62\xdf\xff\x8e\x50\x93\x8a\xf4\xff\xf2\xff\xf2\xff\xae\xff\x2f" "\xff\x5f\xea\xfc\xbf\xeb\xff\x57\x8e\xfc\x7f\x6f\x43\x96\xff\xff\xf9\xb5" "\xe1\x76\xf9\xff\x9c\xfc\x7f\xb1\xc7\xbf\xd6\xfc\xff\x58\xdb\xd7\x1b\x92" "\xff\xff\x41\xb7\xfc\xff\xd2\x96\xf6\xc7\xcb\xff\xb3\x11\x8a\x96\xff\x8f" "\x7d\xff\x3b\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x5d\xa1" "\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xbf\x3b\xd4\xa4\xa9\xff\x1f\xe8" "\x7f\xbc\x03\x00\x00\x00\x36\x5d\xec\xfb\x7f\x2d\xd4\xa4\x22\xbf\xff\x97" "\xff\xaf\x8f\x63\x39\xbd\x2c\xff\x2f\xff\xdf\xb8\x41\xfe\x5f\xfe\x5f\xfe" "\x7f\x68\xc9\xff\xf7\x36\x64\xf9\x7f\xd7\xff\x6f\x23\xff\x5f\xec\xf1\xbb" "\xfe\xbf\xfc\x3f\x2b\x15\x2d\xff\x1f\xfb\xfe\xf7\x84\x9a\x54\xa4\xff\x07" "\x00\x00\x80\x2a\x88\x7d\xff\x83\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8" "\xf7\x3f\x14\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x7b\x43\x4d\x2a" "\xd2\xff\xcb\xff\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xed\xcb\xff\x0f" "\x27\xf9\xff\xde\xe4\xff\xfb\x90\xff\x97\xff\x2f\x5a\xfe\xff\x3f\xe5\xff" "\x19\x6e\x45\xcb\xff\xc7\xbe\xff\xe1\x50\x93\x8a\xf4\xff\x00\x00\x00\x50" "\x05\xb1\xef\x7f\x5f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xbf\x1e" "\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xfb\x43\x4d\x2a\xd2\xff\xcb" "\xff\x0f\x4b\xfe\x7f\x6a\x48\xf3\xff\x8f\xcb\xff\x6f\x60\xfe\xff\xe6\x6b" "\xf3\xe5\xe4\xff\xe5\xff\x59\x26\xff\xdf\x9b\xfc\x7f\x1f\xf2\xff\xf2\xff" "\x45\xcb\xff\xbb\xfe\x3f\x43\xae\x68\xf9\xff\xd8\xf7\x7f\x20\xd4\x64\xf5" "\xfd\xff\xe4\xaa\x97\x04\x00\x00\x00\x36\xd0\x58\xd7\x7b\x62\xdf\xff\x1b" "\xa1\x26\x15\xf9\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x7f\x33\xd4\x44\xff" "\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xdf\x0a\x35\xa9\x48\xff\x2f\xff\x3f\x2c" "\xf9\x7f\xd7\xff\xcf\xe4\xff\x5d\xff\xbf\x6d\x7f\xe4\xff\xe5\xff\x3b\xd9" "\xbc\xfc\x7f\x3c\xf3\xc8\xff\xcb\xff\x17\x2b\xff\xbf\x6d\x4d\x3b\xdc\xea" "\x4a\xe7\xe7\xd7\xeb\x4a\x8f\xbf\xba\xf9\xff\xfc\x9d\x51\xfe\x9f\x4e\x8a" "\x96\xff\x8f\x7d\xff\x6f\x87\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d" "\xff\x07\x43\x4d\xf4\xff\x00\x00\x00\x30\x14\x3a\xfd\x9f\xec\x76\xb1\xef" "\x3f\x1c\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x91\x50\x93\x8a\xf4" "\xff\xf2\xff\xf2\xff\x6b\xcb\xff\xc7\x23\x22\xff\xbf\xe1\xf9\xff\x3f\xdb" "\xf9\x2f\xdf\xfb\xf6\xbb\x8e\xec\x96\xff\x97\xff\x97\xff\x5f\x93\x4d\xbd" "\xfe\x7f\xfd\xc5\xef\xfa\xff\xf2\xff\x05\xcb\xff\xaf\xc7\x95\xce\xcf\x6f" "\xd6\xf8\x6b\x5d\x2e\x0d\x26\xff\xef\xfa\xff\x0c\x5e\xd1\xf2\xff\xb1\xef" "\x3f\x1a\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xbf\x13\x6a\xa2" "\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xb1\x50\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\xe7\x42\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xbb\xfe\x7f\x41\xf3" "\xff\x43\x7c\xfd\xff\x78\x3c\xe4\xff\x5b\x0d\x2c\xff\x1f\x4f\xba\xf2\xff" "\x1d\x6d\x6a\xfe\xff\x7d\xcb\x39\x71\xf9\xff\xb5\xe6\xff\x27\x3a\xde\x2a" "\xff\x2f\xff\x3f\xcc\xe3\x97\xff\x97\xff\x67\xa5\xa2\xe5\xff\x63\xdf\x3f" "\x1f\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf4\xfd\x23\xc7\xf3\xba\x7c" "\x87\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x27\x42\x4d\xf4\xff\x00\x00\x00" "\x50\x1a\xb1\xef\xff\x50\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9" "\x7f\xd7\xff\xef\xbc\xfd\x5e\xf9\xff\xda\xd8\xaa\xf2\xff\x2d\xbb\xe2\xfa" "\xff\x9b\x43\xfe\xbf\xb7\xe2\xe4\xff\x3b\x93\xff\x97\xff\x1f\xe6\xf1\xcb" "\xff\xcb\xff\xb3\x52\xd1\xf2\xff\xb1\xef\x5f\x08\x35\xa9\x48\xff\x0f\x00" "\x00\x00\x55\x10\xfb\xfe\x0f\x87\x9a\xe8\xff\x01\x00\x00\xf8\x7f\xf6\xee" "\xe4\x49\xb2\x72\xad\xe3\x78\x16\x74\xd3\x55\x81\x0b\x77\x46\xe8\xc6\x08" "\x97\xfe\x09\x2c\x64\xad\x7b\x5d\xb8\xd0\x8d\x11\x86\x03\xa8\xa0\x38\xd3" "\x38\x8f\x28\x2a\xce\x8a\xe2\x2c\xe0\x00\x82\x88\x8a\xf3\x04\x4e\x28\xce" "\xa0\xa2\x97\x3b\x8f\xdc\x89\xcb\xbd\x37\xfa\x06\x55\xcf\xf3\x74\x55\xe5" "\xc9\x93\x55\x4d\x66\xe7\x39\xef\xfb\xf9\x2c\x78\xec\x92\xaa\x4c\x3b\x9a" "\xa6\x7f\x74\x7f\x3d\x34\x23\x77\xff\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x97\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x0f\xbf\xfe\x64\x9f\xff\xaf\xff\x1f\xa5\xff\x1f\xa7\xff\x5f\x43\xff\xaf" "\xff\xd7\xff\xeb\xff\xd9\xa8\xa9\xf5\xff\xb9\xfb\xbf\x3c\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\xdf\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x57\xc4\x2d\x9d\xec" "\x7f\xfd\xbf\xfe\xbf\xd9\xfe\xff\xb3\xf4\xff\xab\x5e\x5f\xff\xaf\xff\x6f" "\x99\xfe\x7f\x9c\xfe\x7f\x0d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\xa6\xd6" "\xff\xe7\xee\xff\xca\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x55" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x47\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xdf\x19\xb7\x74\xb2\xff\x4f\xf5\xff\x7b\x8b\x3e\xfb\xff" "\xcc\x78\xf5\xff\x2d\xf5\xff\x9e\xff\xbf\xf2\xf5\xf5\xff\x6f\xa0\xff\xbf" "\x51\xff\x3f\x75\xd7\xb7\xff\xbf\xe7\xf5\x9f\xf9\xf4\xff\xfa\x7f\xfd\x7f" "\xd0\xff\x9f\xa9\xff\xbf\xb4\xea\xf3\xf5\xff\xb4\x68\x6a\xfd\x7f\xee\xfe" "\xaf\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\xd7\xc6\x2d\x9d\xec\xff\xcd\x3d\xff\xff\xe0\xf0\xe3\x33\xed\xff\x8b" "\xfe\x5f\xff\x7f\xf8\x01\xfd\xbf\xfe\x7f\x55\xff\x7f\xe1\xea\xb7\xf5\xff" "\xd3\xe4\xf9\xff\xe3\x7a\xea\xff\xef\x78\xfe\xe6\xdb\x5e\x79\xe2\xd3\x9e" "\x3c\xcf\xeb\xeb\xff\xf5\xff\x9e\xff\xaf\xff\x67\xb3\xa6\xd6\xff\xe7\xee" "\xff\xba\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xf5\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\x8d\x71\x4b\x27\xfb\x7f\x73\xfd\xff\xac\x9f\xff\x5f\xf4\xff\xfa" "\xff\xc3\x0f\xe8\xff\xf5\xff\xab\xfa\xff\xcf\xf5\xfc\xff\xa9\xd3\xff\x8f" "\xeb\xa9\xff\xbf\x96\xd7\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6b\xd7\xfd" "\x7f\x7e\xe1\xfc\x76\xee\xfe\x6f\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\xdf\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x77\xc7\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\xe5\xb8\xa5\x93\xfd\xaf\xff\xdf\x7e\xff" "\xff\x71\xfd\xbf\xfe\x3f\xae\xfe\x5f\xff\xaf\xff\xdf\x3e\xfd\xff\x38\xfd" "\xff\x1a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x46\xed\xba\xff\x3f\xfd\xed\xdc" "\xfd\xf7\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x6f\x89\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x6f\x8b\x5b\x3a\xd9\xff\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\xf5\xff" "\xc3\xaf\xaf\xff\x9f\x27\xfd\xff\x38\xfd\xff\x1a\xfa\xff\x33\xf5\xf3\x17" "\x57\x7c\xfe\x17\xdc\x7e\xe7\x45\xfd\xff\x0c\xfb\xff\xf8\x85\x94\xfe\x9f" "\x6d\x38\x67\xff\xff\xda\xc8\x4f\xdb\xd7\xda\xff\x5f\x3a\xfe\xed\xdc\xfd" "\xdf\x1e\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x23\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x33\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xbf\x2b\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x35\xf7\xff" "\xcb\x3f\xf4\x0e\xe9\xff\x87\xe9\xff\xaf\x0f\xfd\xff\xb8\xc9\xf4\xff\x7b" "\x17\x06\x3f\xac\xff\x9f\x47\xff\xbf\x8a\xe7\xff\xcf\xb4\xff\x0f\xfa\x7f" "\xb6\x61\x6a\xcf\xff\xcf\xdd\xff\xdd\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x7b\xe2\x96\x91\xfd\x7f\xee\xff\x98\x0f\x00\x00\x00\xec\x54" "\xee\xfe\xef\x8d\x5b\xfc\xfe\x3f\x00\x00\x00\xcc\x5e\x56\x67\xb9\xfb\xbf" "\x2f\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xe7\xff\x0f\xbf\xfe" "\x58\xff\xff\xe4\xb1\xf7\xa7\xff\x9f\x16\xfd\xff\xb8\xc9\xf4\xff\x2b\xe8" "\xff\xf5\xff\x73\x7e\xff\xfa\x7f\xfd\x3f\xcb\xa6\xd6\xff\xe7\xee\xff\xfe" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x6f\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x40\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff" "\x60\xdc\xd2\xc9\xfe\x1f\xee\xff\xaf\xfe\xef\xf5\xff\x67\xa3\xff\x3f\xf9" "\xfe\xf5\xff\xc3\x3f\x3e\x36\xd5\xff\xe7\x57\xd4\xff\x8f\xf6\xff\xb7\x7a" "\xfe\x7f\x9f\xf4\xff\xe3\xae\x7f\xff\x7f\x49\xff\x7f\xf2\xeb\xeb\xff\xb7" "\x68\xd7\xef\xbf\xf1\xfe\xff\x60\xdd\xe7\xeb\xff\x19\x32\xb5\xfe\x3f\x77" "\xff\x7d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x87\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\x47\xe2\x96\x4e\xf6\xff\x8e\x9f\xff\x7f\xcf\x4d\xab\xde\x97\xfe" "\xff\x90\xfe\x5f\xff\xef\xf9\xff\xd3\x7c\xfe\xff\xe2\xba\xf7\xff\x17\xf4" "\xff\x67\xa4\xff\x1f\xe7\xf9\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xcf\xff\x67" "\xa3\xa6\xd6\xff\xe7\xee\xbf\x3f\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\xee" "\x7f\x75\x71\xb8\xfb\x7f\x74\xb1\xb0\xff\x01\x00\x00\x60\x8e\x8e\xff\xd9" "\x81\xd3\x7f\xa0\x34\xe4\xee\xff\xb1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\xf1\xb8\xa5\x93\xfd\xbf\xe3\xfe\x7f\x5b\xcf\xff\xbf\xb8\xee\xb5" "\xf5\xff\xfa\xff\xe3\xdf\x5f\xfa\x7f\xfd\xff\xd0\xeb\x4f\xab\xff\xf7\xfc" "\xff\xb3\xd2\xff\x8f\xd3\xff\xaf\xa1\xff\xdf\x46\x3f\x7f\xa1\xb1\xfe\xff" "\x81\x55\x9f\x3f\x85\xfe\xff\x6e\xfd\x3f\x13\x73\xa2\xff\x7f\xfa\xea\xc7" "\x77\xd5\xff\xe7\xee\xff\x89\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd" "\xff\x93\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x53\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xd3\x71\x4b\x27\xfb\x7f\xeb\xfd\xff\xc1\xea" "\xd7\xde\x62\xff\xbf\x96\xfe\x5f\xff\x7f\xfc\xfb\x4b\xff\xaf\xff\x1f\x7a" "\x7d\xfd\xff\x3c\xe9\xff\xc7\xe9\xff\xd7\xd0\xff\x7b\xfe\xbf\xe7\xff\xeb" "\xff\xd9\xa8\x13\xfd\xff\x31\xbb\xea\xff\x73\xf7\xff\x4c\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x2e\x6e\xe9\x64" "\xff\x37\xfa\xfc\xff\xb5\xf4\xff\xfa\xff\xe3\xdf\x5f\xfa\x7f\xfd\xff\xd0" "\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf\xf4\x53\xcc\x49\xfa\x7f\xfd\xbf" "\xfe\x7f\x7d\xff\xbf\xe2\x9f\x22\xfd\x3f\x43\xa6\xd6\xff\xe7\xee\xff\xf9" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x60\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\xff\x42\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff" "\x62\xdc\xd2\xc9\xfe\xd7\xff\x6f\xb7\xff\xcf\x8f\xeb\xff\xf5\xff\x8b\xf3" "\xf4\xff\xf1\x09\xfa\xff\x23\xfa\x7f\xfd\xff\x79\xcc\xad\xff\x3f\xfd\xcf" "\xcf\x35\xf7\xf3\x7b\x43\xff\x26\x5a\xb6\xa2\xff\x7f\xf6\x8b\x2f\x7f\xce" "\xc9\x8f\xb4\xdb\xff\x8f\xd3\xff\x77\xd0\xff\x1f\x6c\xed\xfd\x77\xd3\xff" "\xaf\xa0\xff\x67\xc8\x24\xfa\xff\x2b\x57\x7f\x75\x99\xbb\xff\x97\xe2\x96" "\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x2f\xc7\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xaf\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xaf\xc6" "\x2d\xe7\xdc\xff\x9f\xbc\xd1\x77\x75\xfd\xe8\xff\x3d\xff\x5f\xff\x3f\xc1" "\xfe\x3f\xe8\xff\x8f\xe8\xff\xf5\xff\xe7\x31\xb7\xfe\xff\x34\xcf\xff\xd7" "\xff\xeb\xff\xe7\xfb\xfe\xf5\xff\xfa\x7f\x96\x4d\xa2\xff\x3f\xf6\xed\xdc" "\xfd\xbf\x16\xb7\xf8\xfd\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\x8f\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x87\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xe1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x2d\xf7\xff" "\x07\x3b\xe8\xff\xf7\x17\xc3\xf4\xff\xd7\x87\xfe\x7f\x9c\xfe\x7f\x0d\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\xa6\xd6\xff\xe7\xee\x7f\x24\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x46\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xff\x66\xdc\x62\xff\x03\x00\x00\xc0\x9c\x64\x3a\x36\x28\x77\xff" "\x6f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x6f\xb9\xff\xf7\xfc" "\xff\xfe\xcc\xb4\xff\xaf\x9f\x06\xe7\xda\xff\xdf\x38\xa7\xfe\xff\xd1\x91" "\x37\x30\xd4\xff\x5f\xb9\xa4\xff\x6f\xb9\xff\x3f\xd8\xdc\xfb\xd7\xff\xeb" "\xff\x59\x36\xb5\xfe\x3f\x77\xff\x6f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\x47\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xb1\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x9d\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\xcf\xd3\x4c\xfb\xff\x32\xd7\xfe" "\xdf\xf3\xff\xf5\xff\x8b\xb9\xf6\xff\x1b\x7c\xff\xfa\x7f\xfd\x3f\xcb\xa6" "\xd6\xff\xe7\xee\x7f\x3c\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f" "\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x1b\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x4f\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x0f\xbf\xbe\xfe\x7f\x9e\xb6\xd7\xff\x2f\x76\xd7\xff\xbf\x7c\xc3" "\x79\xbf\xcc\x4a\xfa\xff\x35\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x8d\x9a\x5a" "\xff\x9f\xbb\xff\xf7\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x53" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xfb\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\x07\x71\x4b\x27\xfb\x5f\xff\xaf\xff\x9f\x67\xff\x7f" "\xdf\xfe\xd0\xfb\xd7\xff\xeb\xff\x17\xfa\xff\xee\x79\xfe\xff\x38\xfd\xff" "\x1a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x46\x4d\xad\xff\xcf\xdd\xff\x87\x71" "\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xe9\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xe3" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x9f\xec\xff\x17\x8b\x79\xf4\xff\x9e\xff" "\xbf\xd0\xff\xb7\xd0\xff\xef\x2f\xf4\xff\x1b\xa7\xff\x1f\x77\xb6\xfe\xff" "\x56\xfd\xff\xc4\xfb\xff\x87\x0e\x8e\xbe\xad\xff\x3f\xe3\xfb\xbf\x61\xd1" "\x50\xff\x7f\xb0\xf2\xf3\xf5\xff\x4c\xd1\xd4\xfa\xff\xdc\xfd\x7f\x12\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xff\x34\x6e\xb1\xff\x01\x00\x00" "\xa0\x01\x47\x7f\x76\x26\x77\xff\x9f\xc5\x2d\xf6\x3f\x00\x00\x00\x4c\xd9" "\x85\xf3\xfc\xcd\xb9\xfb\xff\x3c\x6e\xe9\x64\xff\xcf\xbf\xff\xbf\x74\xea" "\x13\xf5\xff\x8b\xc5\xe2\x85\xbb\x9a\x7f\xfe\xbf\xfe\x7f\xa1\xff\x6f\xa1" "\xff\xaf\xef\x55\xfd\xff\xe6\xec\xb2\xff\xff\xd4\x63\x5f\x67\xde\xfd\xbf" "\xe7\xff\x4f\xbd\xff\xf7\xfc\xff\x69\xbe\x7f\xcf\xff\xd7\xff\xb3\x6c\x6a" "\xfd\x7f\xee\xfe\xbf\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x7f" "\x19\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x15\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x7f\x1d\xb7\x74\xb2\xff\xe7\xdf\xff\x9f\xfe\x44\xfd" "\xff\xe2\x0d\x3d\xff\x5f\xff\x7f\xf8\x01\xfd\xbf\xfe\x5f\xff\x3f\x5b\x9e" "\xff\x3f\x4e\xff\xbf\x86\xfe\x7f\x6d\x3f\xbf\xb7\xe2\xd7\x3d\x0b\xfd\xbf" "\xfe\x5f\xff\xcf\x80\xa9\xf5\xff\xb9\xfb\xff\x26\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x0f\x72\xf7\x3f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf" "\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xdf\xc6\x2d\x9d\xec\x7f\xfd" "\xbf\xfe\x5f\xff\x3f\xcf\xfe\x7f\x5f\xff\xaf\xff\xd7\xff\x0f\x9a\x4a\xff" "\x7f\xcb\x2d\x9f\xfd\x9c\xfe\x5f\xff\xdf\x62\xff\x3f\x46\xff\xaf\xff\xd7" "\xff\x73\xda\xd4\xfa\xff\xdc\xfd\x7f\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\xff\x3e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x21\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x31\x6e\xe9\x64\xff\x2f\xf7\xff" "\x17\x17\x47\x85\xea\x91\xa1\xfe\x3f\x1a\x35\xfd\xff\x31\xfa\xff\x93\xef" "\x5f\xff\x3f\xfc\xe3\xc3\xf3\xff\xf5\xff\xfa\xff\xed\x9b\x4a\xff\xef\xf9" "\xff\xd7\xf6\xfe\xf5\xff\xfa\xff\x39\xbf\xff\x73\xf5\xff\x9f\xbe\xfc\xf9" "\xfa\x7f\x5a\x34\xb5\xfe\x3f\x77\xff\x73\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\x9f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x9f\xe3" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf9\xb8\xa5\x93\xfd\xef\xf9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\x79\xd2\xff\x8f\x1b\xeb" "\xff\x4f\x94\xea\xfa\x7f\xfd\xbf\xfe\xbf\xdf\xe7\xff\xdf\xa8\xff\x67\x73" "\xa6\xd6\xff\xe7\xee\xff\x97\xb8\xe5\x70\xf8\x7d\xc6\x27\x5d\xe3\xff\x99" "\x00\x00\x00\xc0\x84\xe4\xee\xff\xd7\xb8\xa5\x93\xdf\xff\x07\x00\x00\x80" "\x1e\xe4\xee\xff\xb7\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xf7\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\xcf" "\x93\xfe\x7f\x9c\xe7\xff\xaf\xd1\x4f\xff\xbf\x3f\xf4\xc1\x5d\xf7\xf3\x6f" "\xd4\xae\xdf\x7f\x33\xfd\xbf\xe7\xff\xb3\x41\x53\xeb\xff\x73\xf7\xff\x47" "\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xcf\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\xff\xaf\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x21\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xed\xf7\xff\x5f\xa8\xff\x3f\xf5\xfa" "\xfa\x7f\xfd\x7f\xcb\xf4\xff\xf9\x6f\xf4\x61\xfa\xff\x35\xfa\xe9\xff\x07" "\xed\xba\x9f\x9f\xfb\xfb\xd7\xff\xeb\xff\x59\x36\xb5\xfe\x3f\x77\xff\x8b" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xbf\xe3\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\x7f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x7f\xe3\x96\x4e\xf6\xbf\xfe\xbf\xaf\xfe\x7f\x6f\xd1\x63\xff\xef\xf9\xff" "\xfa\x7f\xfd\x7f\x4f\xe6\xd3\xff\x3f\x78\x61\xe8\xa3\x9e\xff\xaf\xff\xd7" "\xff\xcf\xf7\xfd\xeb\xff\xf5\xff\x2c\x9b\x5a\xff\x9f\xbb\xff\xa5\xbd\x0b" "\x5d\xee\x7f\x00\x00\x00\x98\xab\xcf\xfb\xcc\x2f\x79\x71\xe9\x83\x37\x0d" "\xff\xbd\x2f\x1d\xfe\x75\x7f\xf1\x7f\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xff\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa6\xb8\xa5\x93" "\xfd\xaf\xff\xef\xab\xff\xef\xf3\xf9\xff\xfa\x7f\xfd\xbf\xfe\xbf\x27\xf3" "\xe9\xff\x87\xe9\xff\xf5\xff\xfa\xff\xf9\xbe\x7f\xfd\xbf\xfe\x9f\x65\x53" "\xeb\xff\x73\xf7\xbf\x1c\xb7\x1c\x1b\x7e\x83\xff\x0f\x7a\x00\x00\x00\x80" "\xd9\xc8\xdd\xff\xe6\xb8\xa5\x93\xdf\xff\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x4b\xdc\xb2\xb4\xff\xaf\x9c\xf1\x4f\xb5\x03\x00\x00\x00\x53\x93\xbb\xff" "\xad\x71\x4b\x27\xbf\xff\xaf\xff\x9f\x78\xff\xbf\xd8\x52\xff\x1f\x7f\x9f" "\xfe\xff\x88\xfe\x5f\xff\x3f\xf4\xfa\xfa\xff\x79\x6a\xad\xff\xbf\xb4\x98" "\x54\xff\x7f\x65\x4f\xff\xaf\xff\x1f\xa1\xff\xd7\xff\xeb\xff\x39\x6d\x6a" "\xfd\x7f\xee\xfe\xa7\x1e\x5f\x74\xb9\xff\x01\x00\x00\xa0\x51\x27\xfe\x8b" "\xc2\xdb\x0e\xff\xba\xbf\x78\x7b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\xbf\x23\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x19\xb7\x74\xb2\xff" "\xf5\xff\x13\xef\xff\xaf\xe9\xf9\xff\x07\xf5\x3f\x79\xfe\xff\xe9\xfe\xff" "\xe8\xc7\x79\x37\xfd\xff\xbd\xfb\x83\xaf\xaf\xff\xd7\xff\xb7\xac\xb5\xfe" "\xdf\xf3\xff\x8f\x3e\xae\xff\x3f\xa2\xff\x9f\xf6\xfb\xd7\xff\xeb\xff\x59" "\x76\x8e\xfe\xff\xf0\x17\xea\xdb\xee\xff\x73\xf7\xbf\x2b\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xdf\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8d\x5b\x3a\xd9" "\xff\xfa\xff\x1d\xf4\xff\xf7\x5d\x5a\x2c\xb6\xda\xff\x9f\xe1\xf9\xff\xdd" "\xf6\xff\x9e\xff\xdf\x56\xff\xff\x29\x37\x5f\x7e\xe6\xf3\xbf\xe8\xb1\x47" "\xf4\xff\x5c\x75\x3d\xfb\xff\xfc\xb1\xa0\xff\xd7\xff\xef\xa0\xff\x7f\x38" "\x7e\xfc\xe9\xff\x27\xf4\xfe\xf5\xff\xfa\x7f\x96\x4d\xed\xf9\xff\xb9\xfb" "\xdf\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x89\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\xf7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\x07\xe2\x96\x4e\xf6\xbf\xfe\xbf\xc5\xe7\xff\xcf\xb3\xff\xcf\xef\xeb" "\x1d\xf4\xff\x97\xe7\xd7\xff\x67\x53\xdc\x7b\xff\xef\xf9\xff\xfa\xff\x65" "\x9e\xff\x3f\x4e\xff\xbf\xc6\x7c\xfa\xff\xc3\x6f\x7b\xfe\xff\xb4\xde\xbf" "\xfe\x5f\xff\xcf\xb2\xa9\xf5\xff\xb9\xfb\x3f\x18\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\x3f\x14\xb7\xe4\xfe\xdf\x3b\xf7\x7f\xba\x07\x00\x00" "\x00\x26\x26\x77\xff\x87\xe3\x16\xbf\xff\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\x6a\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xa7\xd2\xff\x27\xcf\xff\xbf\xfa\x79" "\x9e\xff\x7f\x44\xff\xaf\xff\x3f\x8f\x16\xfb\xff\x1b\xce\xfb\x45\x46\xe8" "\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x6a\xfd\x7f\xee\xfe\x8f" "\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xd7\xe2\x16\xfb\x1f\x00" "\x00\x00\x9a\x91\xbb\xff\xa3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xb1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7" "\xff\xcf\x53\x8b\xfd\xff\x79\xbf\xc6\x18\xfd\xff\xeb\x6e\x5a\xfd\x06\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x8d\x9a\x5a\xff\x9f\xbb\xff\x13\x01\x00\x00" "\xff\xff\x96\x23\x4b\xb2", 25386)); NONFAILING( syz_mount_image(/*fs=*/0x2000000000c0, /*dir=*/0x200000000440, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_DIRSYNC*/ 0x2800080, /*opts=*/0x200000000480, /*chdir=*/1, /*size=*/0x632a, /*img=*/0x200000013cc0)); // syz_mount_image$vfat arguments: [ // fs: ptr[in, buffer] { // buffer: {76 66 61 74 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x28180ff (8 bytes) // opts: nil // chdir: int8 = 0xfc (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "vfat\000", 5)); NONFAILING( memcpy((void*)0x200000000040, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78)); NONFAILING(syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_POSIXACL|MS_SYNCHRONOUS|MS_SILENT|MS_REMOUNT|0xcf*/ 0x28180ff, /*opts=*/0, /*chdir=*/0xfc, /*size=*/0, /*img=*/0x200000000400)); // unlinkat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: unlinkat_flags = 0x200 (8 bytes) // ] NONFAILING( memcpy((void*)0x200000000140, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78)); syscall(__NR_unlinkat, /*fd=*/0xffffff9c, /*path=*/0x200000000140ul, /*flags=AT_REMOVEDIR*/ 0x200ul); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {63 67 72 6f 75 70 2e 63 6f 6e 74 72 6f 6c 6c 65 72 73 00} // (length 0x13) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000080, "cgroup.controllers\000", 19)); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=*/0x275a, /*mode=*/0); // syz_open_procfs arguments: [ // pid: pid (resource) // file: ptr[in, buffer] { // buffer: {66 64 69 6e 66 6f 2f 33 00} (length 0x9) // } // ] // returns fd NONFAILING(memcpy((void*)0x2000000002c0, "fdinfo/3\000", 9)); NONFAILING(syz_open_procfs(/*pid=*/0, /*file=*/0x2000000002c0)); } 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; install_segv_handler(); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }