// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __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); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x301c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x11 (1 bytes) // size: len = 0x6077 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6077) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000400, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000000, "./file0\000", 8)); NONFAILING(memcpy( (void*)0x200000006480, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\x19\x07\xf0\x67\x5f\xbc\x76\x5c\x9a\x46" "\x15\xaa\x42\xc4\x45\x9a\x42\x69\x29\xcd\x7b\x02\xe5\xad\x29\x17\x5c\x00" "\x12\x48\x28\xd7\x24\x72\xdd\x2a\x90\x02\x4a\x02\xa2\x55\x44\x5c\xe5\x02" "\x71\xc1\xcb\x47\x80\x9b\xde\x70\xd1\x2f\x52\xbe\x02\xe2\x03\x10\x29\xe1" "\xaa\x12\x94\x41\xe3\x3d\x27\x19\x4f\xd6\x59\xa7\xb1\x77\x76\x7d\x7e\x3f" "\xc9\x99\x79\xf6\xcc\x78\xcf\xe4\xef\xf1\xec\x7a\x66\xf6\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xfb\xee\x8f\x4f\xf5\x22" "\xe2\xd2\xaf\xd3\x03\x87\x22\x3e\x13\x83\x88\x7e\xc4\x81\xba\x3e\x1a\xf5" "\xcc\x85\xbc\xfc\x30\x22\x0e\xc7\x66\x73\x3c\x17\x11\x83\xe5\x88\x7a\xfd" "\xcd\x7f\x9e\x89\x38\x1b\x11\x1f\x1d\x8c\xb8\x7b\xef\xe6\x5a\xfd\xf0\xe9" "\x1d\xf6\xe3\xdc\xc9\x1b\xd7\x3e\xf9\xfe\x77\xfe\xf1\xbb\x3f\xdd\x3e\xfc" "\xd3\x37\x7f\xf2\x41\xbb\xfd\x47\x9f\x3d\xf3\xe1\xef\x6f\x45\x1c\xfa\xe1" "\x6b\x1f\x7e\x72\x6b\x77\xb6\x1d\x00\x00\x00\x4a\x51\x55\x55\xd5\x4b\x6f" "\xf3\x8f\xa4\xf7\xf7\xfd\xae\x3b\x05\x00\xcc\x44\x3e\xfe\x57\x49\x7e\x5c" "\xad\x56\xab\xd5\xbb\x5a\xff\xb1\x3f\x5f\xfd\xd9\x79\xbd\x12\xf3\xd5\x1f" "\xf5\x13\xd5\x4d\xd5\x64\xb7\x9a\x45\x44\x6c\x34\xd7\xa9\x5f\x33\x38\x1d" "\x0f\x00\x0b\x66\x23\x3e\xee\xba\x0b\x74\x48\xfe\x45\x1b\x46\xc4\x53\x5d" "\x77\x02\x98\x6b\xbd\xae\x3b\xc0\x9e\xb8\x7b\xef\xe6\x5a\x2f\xe5\xdb\x6b" "\x1e\x0f\x8e\x8e\xdb\xf3\xdf\x29\xb7\xe4\xbf\xd1\xbb\x7f\x7f\xc7\x76\xd3" "\x69\xda\xd7\x98\xcc\xea\xe7\xeb\x76\x0c\xe2\xd9\x6d\xfa\x73\x60\x46\x7d" "\x98\x27\x39\xff\x7e\x3b\xff\x4b\xe3\xf6\x51\x5a\x6e\xaf\xf3\x9f\x95\xed" "\xf2\x1f\x8d\x6f\x7d\x2a\x4e\xce\x7f\xd0\xce\xbf\x65\x4b\xfe\x7f\x8e\x88" "\x85\xcd\xbf\x3f\x31\xff\x52\xe5\xfc\x87\x8f\x93\xff\xc6\x60\x81\xf7\x7f" "\xf9\x03\x00\x00\x00\x00\xb0\xff\xe5\xbf\xff\x1f\xea\xf8\xfc\xef\xf2\x93" "\x6f\xca\x8e\x3c\xea\xfc\xef\xd1\x19\xf5\x01\x00\x00\x00\x00\x00\x00\x00" "\x76\xdb\x93\x8e\xff\x77\x9f\xf1\xff\x00\x00\x00\x60\x6e\xd5\xef\xd5\x6b" "\x7f\x39\xf8\xe0\xb1\xe6\xb5\xfe\xed\xf9\x8b\xbd\x88\xa7\x5b\xcb\x03\x85" "\x49\x37\xcb\xac\x76\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28" "\xc9\x70\x7c\x0d\xef\xc5\x5e\xc4\x52\x44\x3c\xbd\xba\x5a\x55\x55\xfd\xd5" "\xd4\xae\x1f\xd7\x93\xae\xbf\xe8\x4a\xdf\x7e\x28\x59\xd7\xbf\xe4\x01\x00" "\x60\xec\xa3\x83\xad\x7b\xf9\x7b\x11\x2b\x11\x71\x31\x7d\xd6\xdf\xd2\xea" "\x6a\x1e\xaa\xaf\x3a\xb0\x9c\x5f\xcf\x8e\x96\x57\xaa\x03\x8d\xf7\xb5\x79" "\x5a\x3f\xb6\x3c\xda\xc1\x0b\xe2\xe1\xa8\xaa\xbf\xd9\x4a\x63\xbd\xa6\x69" "\xef\x97\xa7\xb5\xb7\xbf\x5f\xfd\x5c\xa3\x6a\xb0\x83\x8e\xcd\x46\x47\x61" "\x03\x40\x32\x3e\x1a\xdd\x75\x44\xda\x67\xaa\xea\x99\xe8\xfa\x55\x0e\x8b" "\xc1\xfe\xbf\xff\xd8\xff\xd9\x89\xae\x7f\x4e\x01\x00\x00\x80\xbd\x57\x55" "\x55\xd5\x4b\x1f\xe7\x7d\x24\x9d\xf3\xef\x77\xdd\x29\x00\x60\x16\x56\xf2" "\xf1\xbf\x7d\x5e\x40\xad\x56\xab\xd5\x6a\xf5\xfe\xab\x9b\xaa\xc9\x6e\x35" "\x8b\x88\xd8\x68\xae\x53\xbf\x66\x30\x1c\x3f\x00\x2c\x98\x8d\xf8\xb8\xeb" "\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x87\xbb\xee\x04\x30\xd7\x7a\x5d\x77\x80" "\x3d\x71\xf7\xde\xcd\xb5\x5e\xca\xb7\xd7\x3c\x1e\xa4\xf1\xdd\xf3\xb5\x20" "\x5b\xf2\xdf\xe8\x6d\xae\x97\xd7\x9f\x34\x9d\xa6\x7d\x8d\xc9\xac\x7e\xbe" "\x6e\xc7\x20\x9e\xdd\xa6\x3f\xcf\xcd\xa8\x0f\xf3\x24\xe7\xdf\x6f\xe7\x7f" "\x69\xdc\x3e\x4a\xcb\xed\x75\xfe\xb3\xb2\x5d\xfe\xf5\x76\x1e\xea\xa0\x3f" "\x5d\xcb\xf9\x0f\xda\xf9\xb7\xec\x9f\xfc\xfb\x13\xf3\x2f\x55\xce\x7f\xf8" "\x58\xf9\x0f\x9e\x38\xff\xae\xf6\x35\xf9\x03\x00\x00\x00\x00\x50\x82\xfc" "\xf7\xff\x43\xce\xff\xe6\x4d\x06\x00\x00\x00\x00\x00\x00\x80\x85\x73\xf7" "\xde\xcd\xb5\x7c\x2f\x5e\x3e\xff\xff\xf9\x09\xcb\xf5\x9a\x73\xee\xff\xdc" "\x37\x72\xfe\xbd\x1d\xe7\xef\xfe\xdf\xfd\x24\xe7\xdf\x6f\xe7\xdf\xba\x20" "\x67\xd0\x98\xbf\xf3\xc6\x83\xfc\xff\x7d\xef\xe6\xda\x07\x37\xfe\xf5\xb9" "\x3c\x9d\xfb\xfc\x97\x06\xa3\xfa\xb9\x97\x7a\xfd\xc1\x30\x5d\xf3\x53\x2d" "\xbd\x15\x57\xe2\x6a\xac\xc7\xc9\x87\x96\x1f\x6e\x69\x3f\xf5\x50\xfb\xd2" "\x96\xf6\xd3\x53\xda\xcf\x3c\xd4\x3e\xaa\xdb\x0f\xe4\xf6\xe3\xb1\x16\xbf" "\x88\xab\xf1\xe6\xfd\xf6\xe5\x29\x17\x46\xad\x4c\x69\xaf\xa6\xb4\xe7\xfc" "\x07\xf6\xff\x22\xe5\xfc\x87\x8d\xaf\x3a\xff\xd5\xd4\xde\x6b\x4d\x6b\x77" "\xde\xef\x3f\xb4\xdf\x37\xa7\x93\x9e\xe7\xc2\xdf\xfe\xfb\xe2\xc3\x7b\xd7" "\xec\xdd\x8e\xc1\xfd\x6d\x6b\xaa\xb7\xef\x58\x07\xfd\xd9\xfc\x3f\x79\x6a" "\x14\xbf\xba\xbe\x7e\xed\xf8\x6f\x2e\xdf\xb8\x71\xed\x54\xa4\xc9\x96\x47" "\x4f\x47\x9a\xec\xb2\x9c\xff\x52\xfa\xca\xf9\xbf\xf4\xc2\xb8\x3d\xff\xde" "\x6f\xee\xaf\x77\xde\x1f\x3d\x76\xfe\xf3\xe2\x76\x0c\xb7\xcd\xff\x85\xc6" "\x7c\xbd\xbd\x2f\xcf\xb8\x6f\x5d\xc8\xf9\x8f\xd2\x57\xce\x3f\x1f\x81\x26" "\xef\xff\x8b\x9c\xff\xf6\xfb\xff\x2b\x1d\xf4\x07\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x1e\xa5\xaa\xaa\xcd\x5b\x44\x2f\x44\xc4\xf9\x74" "\xff\x4f\x57\xf7\x66\x02\x00\x33\xf5\x87\x1f\xa4\x99\x2a\x09\xf5\xb8\xee" "\xc5\x7c\xf5\x47\xad\x56\xab\xd5\xea\x5d\xa8\x9b\xaa\xc9\x5e\x6f\x16\xb1" "\xb2\x75\x9d\xf3\x11\xf1\xdb\x49\xdf\x0c\x00\x98\x67\xff\x8b\x88\x7f\x76" "\xdd\x09\x3a\x23\xff\x82\xe5\xcf\xfb\xab\xa7\x5f\xe8\xba\x33\xc0\x4c\x5d" "\x7f\xf7\xbd\x9f\x5d\xbe\x7a\x75\xfd\xda\xf5\xae\x7b\x02\x00\x00\x00\x00" "\x00\x00\x00\x7c\x5a\x79\xfc\xcf\xa3\x8d\xf1\x9f\x37\xaf\x03\x6a\x8d\x1b" "\xbd\x65\xfc\xd7\x37\xe2\xe8\xc2\x8e\xff\xd9\x1f\x0d\x36\xc7\x3a\x4f\x1b" "\xf4\x7c\x3c\x7a\xfc\xef\x63\xf1\xe8\xf1\xbf\x87\x53\x9e\x6f\x69\x4a\xfb" "\x68\x4a\xfb\xf2\x94\xf6\x95\x29\xed\x13\x6f\xf4\x68\xc8\xf9\x3f\x9f\x32" "\xce\xf9\x1f\x49\x1b\x56\xd2\xf8\xaf\x2f\x75\xd0\x9f\xae\xe5\xfc\x8f\xa5" "\xb1\x9e\x73\xfe\x5f\x6a\x2d\xd7\xcc\xbf\xfa\xeb\x22\xe7\xdf\xdf\x92\xff" "\x89\x1b\xef\xfc\xf2\xc4\xf5\x77\xdf\x7b\xf5\xca\x3b\x97\xdf\x5e\x7f\x7b" "\xfd\xe7\xa7\x4e\x9e\x3f\x7b\xe6\xdc\xd9\x33\xe7\xce\x9d\x78\xeb\xca\xd5" "\xf5\x93\xe3\x7f\x3b\xec\xf1\xde\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c" "\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\xc5\x54\xcb" "\xbf\x2c\x39\xff\xfc\x7a\x4f\xfe\x65\xc9\xf9\xe7\xf7\x3e\xf2\x2f\x4b\xce" "\xff\xe5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a\xfe\x65\xc9\xf9\xbf\x92\x6a" "\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4" "\xfc\x8f\xa7\x5a\xfe\x65\xc9\xf9\x9f\x48\xb5\xfc\xcb\x92\xf3\xcf\x67\xb8" "\xe4\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65\xc9\xf9\x9f\x4e\xb5\xfc\xcb\x92" "\xf3\x3f\x93\x6a\xf9\x97\x25\xe7\x7f\x36\xd5\xf2\x2f\x4b\xce\xff\x5c\xaa" "\xe5\x5f\x96\x9c\xff\xf9\x54\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe\x65\xc9" "\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf\xa7" "\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59" "\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff\xeb" "\xa9\x96\x7f\x59\x1e\x7c\xfe\xbf\x99\x19\xcf\xfc\xe7\xef\x11\x73\xd0\x0d" "\x33\x66\x26\xcd\x74\xfd\x9b\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9b\xc5\xe5\xc4\x5d\x6f\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\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x7f\x76\xe0\x40\x00\x00\x00" "\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03" "\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x85\xbd\xbb\x8b\x91\xeb\xac\xef\x07\x7e\xf6\xd5\xeb\x24\x10\xff" "\x49\x08\x21\x18\xb2\x76\x9c\x60\xc8\xc6\xbb\xeb\xb7\xc4\x04\x83\x79\xfd" "\xa7\xa1\xa5\x69\x20\xb4\xb4\x50\xc7\xd8\xeb\x17\xf0\x5b\xbd\x6b\x48\x10" "\x6a\x96\x86\xb6\x20\x90\x1a\xb5\xbd\xa0\x17\xa5\x80\x28\x42\x6a\xab\x44" "\x08\xa9\x54\xa2\x28\x52\x91\xda\xbb\x72\x05\xca\x0d\x6a\x25\xa4\x5a\x6a" "\xa8\x4c\x04\x95\x68\x81\xad\xce\x9c\xe7\x79\x76\x66\x76\x76\x66\x77\xbd" "\x9b\x3d\x73\xce\xe7\x13\x25\xbf\x78\xe7\xcc\xcc\x33\x67\xce\xcc\xee\x77" "\xad\xef\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x9a\xed\x78\xdb\xcc\x1f\x0f\x64\x59\x96\xff\xdb" "\xf8\xcf\xb6\x2c\xbb\x21\xff\xff\xad\xd9\x91\xfc\x8f\xf3\x07\x37\x7b\x85" "\x00\x00\x00\xc0\xb5\xfa\x45\xe3\xbf\x7f\x7b\x63\xfa\xc2\x91\x15\x5c\xa9" "\x69\x9b\x7f\x7e\xcd\xbf\x7e\x63\x61\x61\x61\x21\xfb\xd0\x0b\x57\x7e\xf9" "\x67\x0b\x0b\xe9\x82\xf1\x2c\x1b\xda\x92\x65\x8d\xcb\xa2\x7f\xf9\xd9\x4f" "\x17\x9a\xb7\x09\x9e\xcc\xc6\x06\x06\x9b\xfe\x3c\xd8\xe3\xee\x87\x7a\x5c" "\x3e\xdc\xe3\xf2\x91\x1e\x97\x8f\xf6\xb8\x7c\x4b\x8f\xcb\xc7\x7a\x5c\xbe" "\x64\x07\x2c\xb1\xb5\xf8\x7d\x4c\xe3\xc6\x76\x35\xfe\x77\x5b\xb1\x4b\xb3" "\x9b\xb3\x91\xc6\x65\xbb\x3a\x5c\xeb\xc9\x81\x2d\x83\x83\xf1\x77\x39\x0d" "\x03\x8d\xeb\x2c\x8c\x9c\xcc\xce\x64\x67\xb3\x99\x6c\x6a\xc9\x75\x06\x1a" "\xff\x64\xd9\xb7\x76\xe4\xf7\xf5\x40\x16\xef\x6b\xb0\xe9\xbe\xb6\x67\x59" "\x76\xf5\xc7\x9f\x38\x1e\xd7\x30\x10\xf6\xf1\xae\xac\xe5\xce\x1a\x9a\x9f" "\xbb\x1f\xbd\x25\x1b\x7f\xe1\xc7\x9f\x38\xfe\xd5\xb9\xe7\x5f\xd9\x69\xf6" "\xdc\x0d\x4b\x56\x9a\x65\xbb\x77\xe6\xeb\xfc\x54\x96\x2d\xfe\xba\x2a\x1b" "\xc8\xb6\xa4\x7d\x12\xd7\x39\xd8\xb4\xce\xed\x1d\xd6\x39\xd4\xb2\xce\x81" "\xc6\xf5\xf2\xff\x6f\x5f\xe7\xd5\x15\xae\x33\x3e\xee\xb1\xb0\xce\xef\x76" "\x59\xe7\xf6\xf0\xb5\xc7\xee\xc8\xb2\x6c\x3e\x5b\x76\x9b\x76\x4f\x66\x83" "\xd9\x75\x6d\xf7\x9a\xf6\xf7\x58\x71\x44\xe4\xb7\x91\x3f\x95\x2f\xcb\x86" "\x57\x75\x9c\xec\x58\xc1\x71\x92\x5f\xe7\x87\x77\xb4\x1e\x27\xed\xc7\x64" "\xdc\xff\x3b\xc2\x3e\x19\x5e\x66\x0d\xcd\x4f\xc7\x8f\x3e\x39\xba\x64\xbf" "\xaf\xf5\x38\xc9\x1f\x75\x19\x8e\xd5\xfc\xb6\x1f\xca\xef\x74\x6c\xac\xf9" "\x57\xab\x2d\xc7\x6a\xbe\xcd\x27\xee\x5c\xfe\x18\xe8\xf8\xdc\x75\x38\x06" "\xd2\xb1\xdc\x74\x0c\xec\xec\x75\x0c\x0c\x8e\x0e\x35\x8e\x81\xc1\xc5\x35" "\xef\x6c\x39\x06\xa6\x97\x5c\x67\x30\x1b\x68\xdc\xd7\x95\x3b\xbb\x1f\x03" "\x93\x73\xe7\x2e\x4e\xce\x3e\xfe\xf1\x7b\xce\x9c\x3b\x76\x6a\xe6\xd4\xcc" "\xf9\xe9\xa9\x83\xfb\xf7\x1d\xd8\xbf\xef\xc0\x81\xc9\x93\x67\xce\xce\x4c" "\x15\xff\x5d\xdd\x2e\xed\x23\xd7\x65\x83\xe9\x18\xdc\x19\xde\x6b\xe2\x31" "\xf8\xda\xb6\x6d\x9b\x0f\xc9\x85\x2f\xad\xdf\xeb\x60\xac\x24\xaf\x83\xfc" "\xb1\xbf\xf7\xae\x7c\x41\x37\x0c\x66\xcb\x1c\xe3\xf9\x36\x9f\xda\x7d\xed" "\xaf\x83\xf4\x7d\xbf\xe9\x75\x30\xdc\xf4\x3a\xe8\xf8\x9e\xda\xe1\x75\x30" "\xbc\x82\xd7\x41\xbe\xcd\xd5\xdd\x2b\xfb\x9e\x39\xdc\xf4\x6f\xa7\x35\x6c" "\xd4\x7b\xe1\xb6\xa6\x63\x60\x33\xbf\x1f\xe6\xf7\xf9\x81\xd7\x2d\xff\x5e" "\xb8\x3d\xac\xeb\xd3\xaf\x5f\xed\xf7\xc3\xa1\x25\xc7\x40\x7c\x58\x03\xe1" "\xb5\x97\x7f\x25\xfd\xbc\x37\x76\x5f\xd8\x2f\x4b\x8f\x8b\xdb\xf2\x0b\xae" "\x1f\x6d\xfc\x6c\xb7\xe7\xb1\x63\x73\x73\x97\xa6\xb3\x30\x5e\x14\x37\x35" "\x3d\x57\xed\xc7\xcb\x75\x4d\x8f\x29\x5b\x72\xbc\x0c\xae\xfa\x78\x39\xf2" "\x37\x3f\xbf\xeb\xb6\x0e\x5f\xdf\x16\xf6\xd5\xd8\xdd\xdd\x9f\xab\x7c\x9b" "\xfd\x13\xdd\x9f\xab\xc6\xbb\xfb\xf5\xa3\xd9\xe5\xd9\x99\x4b\x61\x7f\x8e" "\x66\xc5\xfe\x6c\xf9\xea\xde\x2c\x8c\x75\xf6\x62\xef\xcf\x4e\xdf\xcd\xf2" "\xfd\x99\xb2\x44\x97\xfd\x99\x6f\xf3\xa9\x7b\xae\xfd\x67\xc1\x94\x4b\x9a" "\xde\xff\x46\x7a\xbd\xff\x0d\x8d\x0c\x17\xef\x7f\x43\x69\x6f\x8c\xb4\xbc" "\xff\x2d\x7d\x6a\x86\x1a\x2b\xcb\xb2\xab\xf7\xac\xec\xfd\x6f\x24\xfc\xfb" "\x62\xbf\xff\xdd\x5c\x92\xf7\xbf\x7c\x5f\x7d\x60\x4f\xf7\x63\x20\xdf\xe6" "\xd3\x93\xab\x3d\x06\x86\xbb\xbe\xff\xdd\x11\xe6\x40\x58\xcf\xeb\x42\x62" "\x18\x6b\xca\xfd\xbf\x6c\x5c\x3e\x5f\x1c\xa6\x4d\xcf\x65\xcf\xe3\x66\x78" "\x78\x24\x1c\x37\xc3\xf1\x1e\x5b\x8f\x9b\x7d\x4b\xae\x93\xdf\x5a\x7e\xdf" "\xbb\xa7\xd6\x76\xdc\xec\xbe\xa3\xf5\xb9\x6a\xf9\xb9\x65\xe5\xc7\x4d\xaf" "\x5f\x1f\x94\xe6\xb8\xc9\xf7\xd5\x9f\x4f\x75\x3f\x6e\xf2\x6d\x9e\x9d\xbe" "\xf6\xf7\x8e\xad\xf1\x7f\x9b\xde\x3b\x46\x7b\x1d\x03\x23\x43\xa3\xf9\x7a" "\x47\xd2\x41\x50\xbc\xdf\x2d\x6c\x8d\xc7\xc0\x9e\xec\x78\x76\x21\x3b\x9b" "\x9d\x48\xd7\xc9\x9f\xe5\xfc\xbe\x26\xf6\xae\xec\x18\x18\x0d\xff\xbe\xd8" "\xef\x1d\xb7\x96\xe4\x18\xc8\xf7\xd5\xe7\xf7\x76\x3f\x06\xf2\x6d\xbe\xb3" "\x6f\x7d\x7f\x76\xda\x1d\xbe\x92\xb6\x69\xfa\xd9\xa9\xfd\xf7\x0b\xcb\x65" "\xfe\xdb\x86\x17\x6f\xaf\x7d\xb7\xad\x77\xe6\xcf\xd7\xf9\xf6\xef\xbd\x3b" "\x7d\xad\x53\x86\xc8\xb7\x79\x7e\xff\x6a\x73\x46\xf7\xfd\x74\x77\xf8\xca" "\xf5\x1d\xf6\x53\xfb\xeb\x67\xb9\x63\xfa\x44\xf6\xe2\xec\xa7\x5b\xc3\x3a" "\xcf\x1e\xe8\xfe\xbb\xa9\x7c\x9b\x9b\x0f\xae\xf0\x78\x3a\x92\x65\xd9\x73" "\xd3\xcf\x35\x7e\xdf\x15\x7e\xbf\xfb\xf5\xcb\xdf\xfb\x46\xcb\xef\x7d\x3b" "\xfd\x4e\xf9\xb9\xe9\xe7\x1e\x9c\x7c\xf8\xfb\xab\x59\x3f\x00\x00\x6b\xf7" "\xcb\xc6\x7f\xe7\x47\x8b\x9f\x35\x9b\xfe\xc6\x7a\x25\x7f\xff\x0f\x00\x00" "\x00\xf4\x85\x98\xfb\x07\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87\xc3\x4c\x6a\x92\xff\x4f" "\xdf\x77\xe8\xe9\x5f\x3c\x91\xa5\x4f\x03\x5c\x08\xe2\xe5\x71\x37\x3c\xf4" "\xa6\x62\xbb\xd8\xf1\x9e\x0f\x7f\x1e\x5f\x58\x94\x7f\xfd\xad\x5f\x19\x79" "\xfa\x33\x4f\xac\xec\xbe\x07\xb3\x2c\xfb\xf9\x83\xaf\xea\xb8\xfd\xe9\x37" "\xc5\x75\x15\x2e\xc6\x75\xbe\xa1\xf5\xeb\x4b\xdc\x7a\xfb\x8a\xee\xff\xd1" "\x47\x16\xb7\x6b\xfe\xfc\x84\xab\x87\x8a\xdb\x8f\x8f\x67\xa5\x87\x41\xec" "\x2a\x7f\x6b\x72\x6f\xe3\x76\xc7\x1f\x9f\x6e\xcc\x67\x1f\xcc\x1a\xf3\xe1" "\xf9\x4f\x3f\x59\xdc\x7e\xf1\xe7\xb8\xfd\x95\x7d\xc5\xf6\x7f\x19\x3e\xb4" "\xe4\xc8\xc9\x81\x96\xeb\xef\x0e\xeb\xd9\x15\xe6\x78\xf8\x4c\x99\x87\x8e" "\x2c\xee\x87\x7c\xc6\xeb\x3d\xbd\xfd\x35\xff\x74\xd3\xfb\x16\xef\x2f\x5e" "\x6f\x60\xe7\x4b\x1b\x0f\xf3\xf3\xbf\x5f\xdc\x6e\xfc\x8c\xa8\xa7\x6e\x2a" "\xb6\x8f\x8f\x7b\xb9\xf5\xff\xe3\x67\xbf\xf6\x74\xbe\xfd\x63\x77\x76\x5e" "\xff\x13\x83\x9d\xd7\x7f\x25\xdc\xee\x0f\xc3\xfc\xd9\xe1\x62\xfb\xe6\x7d" "\xfe\x99\xa6\xf5\xff\x61\x58\x7f\xbc\xbf\x78\xbd\x3d\x5f\xfe\x76\xc7\xf5" "\x3f\xf3\x8a\x62\xfb\x67\xc2\x71\xf1\xc5\x30\xdb\xd7\xff\x96\x3f\x79\xf5" "\x2f\x3a\x3d\x5f\xf1\x7e\x8e\xdc\x5f\x5c\x2f\xde\xff\xd4\x7f\xef\x6f\x5c" "\x2f\xde\x5e\xbc\xfd\xf6\xf5\x8f\x3d\x31\xdd\xb2\x3f\xda\x6f\xff\xd9\x17" "\x8a\xdb\x39\xfc\xd1\x9f\x0c\x35\x6f\x1f\xbf\x1e\xef\x27\x7a\xf4\xfe\xd6" "\xe3\x7b\x20\x3c\xbf\x2d\x3d\xf2\x2c\xcb\xbe\xf6\x47\x59\xcb\x7e\xce\xde" "\x58\x5c\xef\x1f\xda\xd6\x1f\x6f\xef\xe2\xfd\x9d\xd7\x7f\x77\xdb\x3a\x2f" "\x0e\xdc\xde\xb8\xfe\xe2\xe3\xd9\xd6\xf2\xb8\xbe\xf0\xd7\x7b\x3b\x3e\xde" "\xb8\x9e\x23\x7f\xb7\xad\xe5\xf1\x3c\xf5\x8e\xb0\xff\x5e\x98\xfc\x4e\x7e" "\xbb\x57\x1e\x0e\xc7\x63\xb8\xfc\x7f\xbe\x5b\xdc\x5e\xfb\x87\x91\x3c\xf3" "\x8e\xd6\xf7\x9b\xb8\xfd\x17\xb7\x15\xaf\xdb\x78\x7b\x93\x6d\xeb\x7f\xaa" "\x6d\xfd\xf3\xb7\xe7\xfb\xae\xf7\xfa\x1f\x78\xa1\x58\xff\x33\x6f\xde\xd2" "\xb2\xfe\x23\xef\x0c\xc7\xd3\x03\xc5\xec\xb5\xfe\x53\x7f\x75\x63\xcb\xf5" "\xbf\xf4\xd5\xe2\xf9\xb8\xf4\xb1\x89\xf3\x17\x66\x2f\x9f\x39\xd1\xb4\x57" "\x9b\x5f\xc7\x5b\xc6\xb6\x5e\x77\xfd\x0d\x2f\x79\xe9\x8d\xe1\xbd\xb4\xfd" "\xcf\x47\x2f\xcc\x9d\x9e\xb9\x34\x3e\x35\x3e\x95\x65\xe3\x7d\xf8\x91\x81" "\x1b\xbd\xfe\x2f\x87\xf9\x5f\xc5\x98\x5f\xff\x7b\x28\x7c\xff\x27\xc5\x71" "\xf7\xb9\x77\x15\xdf\xb7\x5e\xfb\xd3\xe2\xcf\x4f\x85\xaf\x3f\x1a\x9e\xcf" "\xf8\xfd\xf1\x0b\x7f\x31\xd2\x72\xbc\xb6\x3f\xef\xf3\x6f\x2e\xe6\xb5\xae" "\xff\xf5\x61\x1d\x2b\xf5\x8a\xcf\xfe\xfb\xed\x2b\xda\xf0\xca\x07\xbf\x75" "\xf9\xef\xff\xe0\xf9\xf6\x9f\x0b\xe2\xe3\xb9\xf8\xf2\xb1\xc6\xe3\xfb\xfc" "\x8e\x5b\x1a\x97\x0d\x3c\x5b\x5c\xde\xfe\x7e\xd5\xcb\xbf\xbd\xbc\xf5\x75" "\xfd\x83\xe1\xa9\xc6\xfc\x66\xd8\xaf\x0b\xe1\x93\x99\x77\xde\x52\xdc\x5f" "\xfb\xed\xc7\xcf\x26\xf9\xdc\x7b\x8a\xd7\x6f\xfc\x49\x2e\x5e\x3f\x6b\xfb" "\x3c\x91\x6d\x43\xad\x8f\xe3\x5a\xd7\xff\x83\xf0\x73\xcc\xb7\x6f\x6d\x7d" "\xff\x8b\xc7\xc7\x37\x9f\x68\xfb\x34\xe7\x6d\xd9\x40\xbe\x84\xf9\xf0\xfe" "\x90\xcd\x17\x97\xc7\xad\xe2\xfe\xfe\xdc\xd5\x5b\x3a\xde\x5f\xfc\x1c\x9e" "\x6c\xfe\x95\xab\x59\xe6\xb2\x66\x1f\x9f\x9d\x3c\x7b\xe6\xfc\xe5\xc7\x26" "\xe7\x66\x66\xe7\x26\x67\x1f\xff\xf8\xd1\x73\x17\x2e\x9f\x9f\x3b\xda\xf8" "\xec\xd2\xa3\x1f\xee\x75\xfd\xc5\xd7\xf7\x75\x8d\xd7\xf7\x89\x99\x83\xfb" "\xb3\xc6\xab\xfd\x42\x31\x36\xd8\x66\xaf\xff\xe2\x23\xc7\x4f\xdc\x3b\x75" "\xd7\x89\x99\x93\xc7\x2e\x9f\x9c\x7b\xe4\xe2\xcc\xa5\x53\xc7\x67\x67\x8f" "\xcf\x9c\x98\xbd\xeb\xd8\xc9\x93\x33\x1f\xeb\x75\xfd\x33\x27\x0e\x4f\xef" "\x3d\xb4\xef\xde\xbd\x13\xa7\xce\x9c\x38\x7c\xdf\xa1\x43\xfb\x0e\x4d\x9c" "\x39\x7f\x21\x5f\x46\xb1\xa8\x1e\x0e\x4e\x7d\x64\xe2\xfc\xa5\xa3\x8d\xab" "\xcc\x1e\xde\x7f\x68\xfa\xc0\x81\xfd\x53\x13\xe7\x2e\x9c\x98\x39\x7c\xef" "\xd4\xd4\xc4\xe5\x5e\xd7\x6f\x7c\x6f\x9a\xc8\xaf\xfd\xd1\x89\x4b\x33\x67" "\x8f\xcd\x9d\x39\x37\x33\x31\x7b\xe6\xe3\x33\x87\xa7\x0f\x1d\x3c\xb8\xb7" "\xe7\xa7\x3f\x9e\xbb\x78\x72\x76\x7c\xf2\xd2\xe5\xf3\x93\x97\x67\x67\x2e" "\x4d\x16\x8f\x65\x7c\xae\xf1\xe5\xfc\x7b\x5f\xaf\xeb\x53\x0f\xb3\x17\xc2" "\xfb\x5d\x9b\x81\xf0\xd3\xf9\xfb\xef\x3e\x98\x3e\x1f\x37\xf7\x95\x4f\x2e" "\x7b\x53\xc5\x26\xad\x3f\x9e\x66\x3f\x0a\x9f\x05\x15\xbf\xbf\xf5\xfa\x73" "\xcc\xfd\x23\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x87\x0f\xfe" "\x5f\xbc\x40\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\x7f\x91\xfc\xc7\xd2\xe9\xdf\xeb\x92\xff\xd7\xab\xff" "\xff\x49\xfd\xff\x06\xfd\x7f\xfd\xff\x4c\xff\x3f\xd1\xff\xd7\xff\xcf\xf4" "\xff\xf5\xff\x7b\xd0\xff\x2f\x45\xff\xff\xb4\xfe\xbf\xfe\xbf\xfe\x3f\x1b" "\xa5\x6c\xfd\xff\x90\xfb\xb3\xad\x59\xe6\xef\xff\x01\x00\x00\xa0\xa2\x62" "\xee\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xfa\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x1b\xc2\x4c\x6a\x92\xff\x9d\xff\x5f\xff" "\x5f\xff\xbf\x5b\xff\x3f\x6e\x5b\xab\xfe\xff\xf0\xe2\x3d\xe9\xff\x97\xac" "\xff\xbf\xeb\x3f\xf5\xff\x97\xd0\xff\xd7\xff\xcf\xf4\xff\xd7\x6c\xb3\xfb" "\xf3\xfd\xbe\xfe\x12\xf6\xff\xb7\xea\xff\x53\x36\x65\xeb\xff\xc7\xdc\xff" "\x92\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x5f\x1a\x66\x22\xff" "\x03\x00\x00\x40\xa9\x6d\x59\xc5\xb6\x31\xf7\xdf\x18\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xbf\x2d\xcc\xa4\x26\xf9\x7f\xf3\xfa\xff\xa3\xfa\xff" "\xfa\xff\x0d\xe5\xee\xff\x3b\xff\x7f\x33\xfd\xff\x4d\xef\xff\x3b\xff\x7f" "\x07\xfa\xff\xfa\xff\x59\x6d\xfa\xff\xc5\x0f\x0b\xfa\xff\xe5\x59\xff\xc6" "\xf7\xff\xff\xb4\xeb\xf5\x9d\xff\x9f\x7e\x50\xb6\xfe\x7f\xcc\xfd\xff\x2f" "\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x97\x85\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x73\x98\x49\x4d\xf2\x7f\x3d\xcf\xff\xff\xc3\x2c\xcb\xf4\xff\x33\xfd" "\x7f\xfd\xff\xb6\x75\xea\xff\xeb\xff\x6f\x04\xfd\x7f\xfd\xff\x6e\x36\xb7" "\xff\x9f\xff\xec\xd3\x4f\xfd\x7f\xe7\xff\x2f\xdb\xfa\x4b\x78\xfe\x7f\xfd" "\x7f\x4a\xa7\x6c\xfd\xff\x98\xfb\x5f\x1e\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xaf\x08" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x35\xcc\xa4\x26\xf9\xbf\x9e" "\xfd\x7f\xe7\xff\xd7\xff\x2f\x6c\x40\xff\x7f\x60\x58\xff\x3f\xd1\xff\xd7" "\xff\xcf\xf4\xff\xf5\xff\x7b\x70\xfe\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe" "\x3f\xbd\x95\xad\xff\x1f\x73\xff\x2b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x55\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc3\x4c\x6a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\x9d\xff\x5f\xff\x5f\xff\x7f\x23\xf5\x57\xff\x7f\x70\xd9" "\x4b\xf4\xff\x0b\xfa\xff\xad\xd6\xaf\xff\x3f\xbf\xb8\x00\xfd\xff\xbe\x59" "\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\xab\xc3\x4c\x6a\x92\xff" "\x01\x00\x00\xa0\x0e\x62\xee\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xe3\x61\x26\x35" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x1b\xa9\xbf\xfa" "\xff\xcb\xd3\xff\x2f\xe8\xff\xb7\x72\xfe\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba" "\x2b\x5b\xff\x3f\xe6\xfe\x1d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x23\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\x7f\x57\x98\x49\x4d\xf2\x7f\x49\xfb\xff\x8f" "\xea\xff\xeb\xff\x67\xfa\xff\xfa\xff\x6d\xfb\x53\xff\x5f\xff\xbf\x13\xfd" "\x7f\xfd\xff\x4c\xff\x7f\xcd\x36\xbb\x3f\xdf\xef\xeb\xd7\xff\xd7\xff\xa7" "\xb7\xb2\xf5\xff\x63\xee\xbf\x33\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20" "\xe6\xfe\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x5f\x1b\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3b\xcc\xa4\x26\xf9\xbf\xa4\xfd\x7f" "\xe7\xff\xd7\xff\xd7\xff\x5f\x49\xff\x7f\x48\xff\x3f\xd3\xff\x2f\xbd\x1e" "\xeb\xff\xdf\xb6\x6f\x3b\xab\xa6\xff\xaf\xff\x9f\xe9\xff\xaf\xd9\x66\xf7" "\xe7\xfb\x7d\xfd\xfa\xff\xfa\xff\xf4\x56\xb6\xfe\x7f\xcc\xfd\xaf\x0b\x33" "\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xf5\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f" "\x84\x99\x54\x38\xff\x37\x57\x2a\x2a\xde\xff\x7f\xfe\x3f\x96\xd9\x4c\xff" "\xbf\xa0\xff\xdf\xe7\xfd\x7f\xe7\xff\x6f\x59\xbf\xfe\x7f\x39\x39\xff\xbf" "\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff" "\x3f\xe6\xfe\x7b\xc2\x4c\x2a\x9c\xff\x01\x00\x00\xa0\x6e\x62\xee\xdf\x13" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x19\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\x3f\x15\x66\x52\x93\xfc\x5f\xf1\xfe\xff\xb2\xf4\xff\x0b" "\xfa\xff\x5f\x7b\x7a\xe1\x46\xfd\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xaf\xff" "\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f" "\xb9\x7f\x3a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xbd\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\xf7\x87\x99\xd4\x24\xff\xf7\x49\xff\x7f\x4f\x2a\x40\xe9\xff" "\xeb\xff\x3b\xff\xbf\xfe\xbf\xfe\x7f\x5f\xd1\xff\xaf\x68\xff\x3f\x7f\x23" "\xd1\xff\xd7\xff\xbf\x30\x97\x76\xb0\xfe\xbf\xfe\xbf\xfe\x3f\x83\x1d\xbe" "\x56\xb6\xfe\x7f\xcc\xfd\x07\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6f\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x7d\x61\x26\x35\xc9\xff\x7d\xd2\xff\x77" "\xfe\x7f\xfd\x7f\xfd\xff\x26\xfa\xff\xfa\xff\xfd\x44\xff\xbf\xa2\xfd\x7f" "\xe7\xff\x6f\xd0\xff\x77\xfe\x7f\xfd\x7f\xfd\x7f\xba\x2b\x5b\xff\x3f\xe6" "\xfe\x43\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x21\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\xfa" "\x4a\xa7\xf3\x10\x46\x31\xf7\xbf\x31\xcc\xa4\x26\xf9\x5f\xff\xbf\xea\xfd" "\xff\x85\x2d\xfa\xff\xfa\xff\xfa\xff\xdd\xd7\xaf\xff\xbf\xb1\xf4\xff\xf5" "\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff" "\x31\xf7\x1f\x0e\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x4d\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x32\x62\xee\x3f\x12\x66\x52\x93\xfc\xaf\xff\x5f\xf5\xfe\xbf\xf3\xff" "\xeb\xff\xeb\xff\xf7\x5a\xbf\xfe\xff\xc6\xd2\xff\xd7\xff\xef\xa6\x92\xfd" "\xff\x2d\xd5\xef\xff\x87\x1f\x5b\xf4\xff\x4b\xd4\xff\xcf\x8f\x21\xfd\x7f" "\xca\xa8\x6c\xfd\xff\x98\xfb\xdf\x12\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x16\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xf6\x30\x93\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xbf\x61\xfd\xff\xc6" "\x5b\xa1\xfe\x7f\xa1\x54\xfd\x7f\xe7\xff\xd7\xff\x77\xfe\x7f\xfd\x7f\x92" "\xb2\xf5\xff\x63\xee\x7f\x47\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc" "\xfd\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xff\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x0f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x6f\x24\xfd\xff\x35\xf5\xff\xdb\xbf\x1d" "\x2f\x4b\xff\xbf\xa0\xff\xbf\x36\x9b\xdd\x9f\xef\xf7\xf5\xeb\xff\xeb\xff" "\xd3\x5b\xd9\xfa\xff\x31\xf7\xff\x4a\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4" "\x41\xcc\xfd\x0f\x86\x99\xac\x2a\xff\x0f\xae\xf3\xaa\x00\x00\x00\x80\xf5" "\x14\x73\xff\xbb\xc2\x4c\xfc\xfd\x3f\x00\x00\x00\xf4\x99\xd1\x65\x2f\x89" "\xb9\xff\x57\xc3\x4c\x6a\x92\xff\xfb\xaf\xff\x3f\xde\x97\xfd\xff\xc1\x74" "\xfb\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xeb\xa9\xa2\xfd\xff\x15\xd3" "\xff\x2f\xe8\xff\xaf\xcd\x66\xf7\xe7\xfb\x7d\xfd\xfa\xff\xfa\xff\xf4\x56" "\xb6\xfe\x7f\xcc\xfd\xbf\x16\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3d\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xa1\x30\x93\x9a\xe4\xff\xf5\xee\xff\xaf" "\xf8\x84\xc5\xce\xff\xdf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x6d" "\xf4\xff\xf5\xff\x33\xfd\xff\x35\xdb\xec\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff" "\x9f\xde\xca\xd6\xff\x8f\xb9\xff\x37\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\x92\x3a\xbd\xea\x6b\xc4" "\xdc\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x86\x99\xd4" "\x24\xff\xf7\xdf\xf9\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xfb\x89" "\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b" "\x5b\xff\x3f\xe6\xfe\x47\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6f\x86\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xff\x56\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x46\xd2\xff\x5f\xda\xff\xcf\xdf\xc3\xf4" "\xff\x0b\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f" "\xe6\xfe\xf7\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xdb\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x13\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\x81\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xef\xfc\xff\xdd\xe8\xff\xeb\xff\xf7\xf3" "\xfa\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\x3f\x18\x66\x52\x93\xfc" "\x0f\x00\x00\x00\x75\x10\x73\xff\xef\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x1f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x34\xcc\xa4" "\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x23\xe9\xff" "\xeb\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5" "\xff\x63\xee\x3f\x16\x66\x72\xa4\xf5\x6e\x00\x00\x00\x80\xfe\x15\x73\xff" "\x87\xc2\x4c\x6a\xf2\xf7\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0f\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x11\x66\x52\x93\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x91\xf4\xff\xf5\xff\xbb\xd1\xff\xd7" "\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff\x31\xf7\xcf\x84\x99" "\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x32\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x54\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xe9" "\x30\x93\x9a\xe4\x7f\xfd\xff\x9e\xfd\xff\x85\x95\x9c\x01\x52\xff\xbf\xf3" "\xfa\xf5\xff\x4b\xdd\xff\xff\xee\xd7\xdb\xd6\xa9\xff\xaf\xff\xbf\x11\xf4" "\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\x57\xb2\xff\x9f\x85\x03\x4d" "\xff\x9f\x75\x52\xb6\xfe\x7f\xcc\xfd\x67\xc2\x4c\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x62\xee\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x47" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xcf\x86\x99\xd4\x24\xff\xeb" "\xff\x3b\xff\xbf\xfe\xff\x8a\xfa\xff\xb1\x96\x5b\xa5\xfe\xff\xca\xce\xff" "\xbf\x75\xf1\x7e\xf5\xff\xf5\xff\xd7\x42\xff\x5f\xff\xbf\x1b\xfd\xff\x3e" "\xed\xff\xc7\xef\x0d\xfa\xff\xd5\xeb\xff\x3b\xff\x3f\xeb\xac\x6c\xfd\xff" "\x98\xfb\xcf\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x3e\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x42\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xc5\x30\x93\x9a\xe4\x7f\xfd\xff\xd5\xf5\xff\x07\x96\xe9" "\x06\xea\xff\x77\x5e\x7f\x85\xfa\xff\x55\x3c\xff\xff\xca\xfa\xff\x4d\xf4" "\xff\xf5\xff\xd7\x42\xff\x5f\xff\xbf\x1b\xfd\xff\x3e\xed\xff\x07\xce\xff" "\xaf\xff\xaf\xff\x4f\x2f\x65\xeb\xff\xc7\xdc\xff\x7b\x61\x26\x35\xc9\xff" "\x00\x00\x00\x50\x07\x31\xf7\x5f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xff\x3f\xf6\xee\x7b\xc9\xd2\xb2\xda\xe3\xf8\x66\x60\x86\x41\xcb\x7b" "\xe0\x16\xbc\x02\x2f\xc1\x6b\xb0\xca\x3b\x30\x47\xc4\x08\x66\xc5\x84\x39" "\x61\xc2\x84\x59\xc1\x9c\x73\xc6\x9c\x73\x40\x31\xc7\x2a\x2d\xba\xd7\x5a" "\x30\x3d\xd3\xef\xee\x9e\xde\x7b\xf6\xfb\x3e\xeb\xf3\xf9\xc3\x75\x68\xa1" "\xe6\x45\xd1\x73\x7e\xc5\xf9\xd6\xf3\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x70\xdc\xd2\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xdb\xa4\xff\xd7\xff\x4f\xd1\xff\xcf\xb4\xff\xbf\xf2\x68\x7f\xbc" "\xfe\x5f\xff\xaf\xff\x67\x9d\xb9\xf5\xff\xb9\xfb\x1f\x12\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x87\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\xc3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe1\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x36\xe9\xff\x17\xda\xff" "\xaf\x56\xfa\xff\x23\x18\xb6\xff\xf7\xfe\xbf\xfe\x5f\xff\xcf\x86\x9c\xd7" "\xff\xc7\x7f\xe1\xed\xaa\xff\xcf\xdd\xff\x88\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\x3f\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x15" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x8f\x8e\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\x49\xff\xbf\xd0\xfe\xdf\xfb\xff" "\x47\xa2\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x3b\xaf\xff\x0f\xbb\xea\xff\x73" "\xf7\x3f\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8d\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x6b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x71\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x17\xd8\xff\x5f\xa1" "\xff\xd7\xff\x2f\x87\xfe\x5f\xff\x3f\x45\xff\x9f\xfd\xff\xe5\xf5\xeb\xeb" "\xff\x97\xf3\xfd\xfa\x7f\xfd\x3f\xeb\xcd\xad\xff\xcf\xdd\x7f\x6d\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x27\xc6\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x60\xff\xef\xfd\x7f\xfd\xff\x82\xe8" "\xff\xf5\xff\x53\xf4\xff\xde\xff\x5f\xf2\xf7\xeb\xff\xf5\xff\xac\xb7\xc5" "\xfe\x7f\xef\xbf\x0e\x8f\xdb\xff\xe7\xee\x7f\x52\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x9f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f" "\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xeb\xe2\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x6d\xd2\xff\xeb\xff\xa7\xe8\xff" "\xf5\xff\x4b\xfe\x7e\xfd\xbf\xfe\x9f\xf5\xb6\xfe\xfe\xff\xfd\xaf\xdf\xbb" "\x47\xed\xff\x73\xf7\x5f\x1f\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\xa7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xe9\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xdf\xdd\xff" "\xff\xef\x32\xfd\xbf\xfe\x5f\xff\x7f\xf7\xcf\xf5\xff\x9b\xa1\xff\xd7\xff" "\x4f\xd1\xff\xeb\xff\x97\xfc\xfd\xfa\x7f\xfd\x3f\xeb\x6d\xbd\xff\x5f\xd3" "\xfb\x1f\xfc\xed\xdc\xfd\xcf\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x33\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x59\x71\x8b\xfd\x0f" "\x00\x00\x00\xb3\x77\xf6\x88\xbf\x5f\xee\xfe\x67\x1f\xfc\xa3\x9a\xec\x7f" "\xfd\xbf\xfe\xdf\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9b\xf4\xff\xb3\xed\xff" "\x0f\xfe\x47\xef\x5c\xdb\xeb\xff\xcf\xdc\xf3\x37\x96\xdc\xff\xdf\x7c\xfb" "\xfe\xbf\x36\xfa\x7f\xfd\xff\x85\xfa\xff\xfb\x1d\xe1\xfb\xf5\xff\x74\x30" "\xb7\xfe\x3f\x77\xff\x73\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xdc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x7f\x6e\xff\x7f\xaa\x65\xff\x7f\xd7\xcf\xf4\xff\xdb\xa1\xff\x9f\x6d\xff" "\x3f\xcd\xfb\xff\x47\xe2\xfd\x7f\xfd\xbf\xf7\xff\xf5\xff\x4c\x9b\x5b\xff" "\x9f\xbb\xff\xf9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x41\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x5f\x14\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xa2" "\xf7\xff\x2f\x1f\xa3\xff\xf7\xfe\xff\xf6\xe8\xff\xf5\xff\x53\xf4\xff\xfa" "\xff\x25\x7f\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\xdf\x18\xb7\x34" "\xd9\xff\x00\x00\x00\x30\xbc\x53\xab\xda\xfd\x2f\x8e\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4b" "\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x4f\xd4\xff\x0f\xf2\xfe" "\xbf\xfe\x7f\x7b\xf4\xff\xfa\xff\x29\x47\xed\xff\x57\xfa\xff\xfa\x73\xd9" "\x6d\xff\x7f\xfa\x9c\xdf\xd2\xff\xeb\xff\xf5\xff\xac\x33\xb7\xfe\x3f\x77" "\xff\xcb\xe2\x96\x26\xfb\x1f\x00\x00\x00\xc6\x73\xdd\x79\x3f\xc9\xdd\xff" "\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x32\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xdf\x26\xfd\xbf\xfe\x7f\x8a\xf7\xff\x97\xd6\xff\x9f\x4b" "\xff\xaf\xff\xd7\xff\xb3\xce\xdc\xfa\xff\xdc\xfd\xaf\x8a\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xda\xb8\xe5\xe0\xfe" "\x3f\x75\x29\xbf\xea\xd2\xd9\x69\xff\x9f\xed\x86\xfe\x5f\xff\xaf\xff\xdf" "\xa3\xff\x8f\x7f\x5f\xf5\xff\xfa\xff\x63\xd0\xff\xeb\xff\x57\x03\xf6\xff" "\x67\x0f\xf9\xf5\xf4\xff\xf3\xfa\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7" "\xee\xbf\x29\x6e\xf1\xf7\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x17\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x37\xc4\x2d\x4d\xf6\xff\x61\xfd\xff\x9d\xf7\xde\xff\xe7\xbd\xff" "\x7f\x34\xfa\xff\x0b\x7f\xbf\xfe\x7f\x16\xfd\xff\x5d\xbf\xb6\xfe\x5f\xff" "\xbf\x33\xfa\xff\x75\xfd\xff\x65\x47\xfe\xfe\x0b\xfd\xaf\x37\xfd\xff\xbe" "\xd1\xfa\x7f\xef\xff\x2f\xe3\xfb\xf5\xff\xfa\x7f\xd6\x9b\x5b\xff\x9f\xbb" "\xff\x8d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x53\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xdf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x6f\x8e\x5b\x9a\xec\xff\xcd\xbf\xff\x7f\xf5\x2e\xfa\xff\xbb\xe3\x3a" "\xfd\xbf\xfe\x5f\xff\xef\xfd\xff\xf8\xf9\x61\xfd\xff\x41\xfa\xff\xed\xd2" "\xff\xef\xf0\xfd\xff\x2b\xce\xff\x91\xfe\xff\xdc\x3f\x0f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xbb\xe6\xd6\xff\xe7\xee\x7f\x4b\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xdf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f" "\x8b\x5b\xec\x7f\x00\x00\x00\x98\xad\xb3\xc7\xfc\xfd\x73\xf7\xbf\xfd\xe0" "\x1f\xdd\x64\xff\x6f\xbe\xff\xf7\xfe\xbf\xfe\xff\x98\xfd\xff\x29\xfd\x7f" "\xd2\xff\xc7\xbf\xaf\xde\xff\xd7\xff\x1f\x83\xfe\xdf\xfb\xff\x2b\xfd\xff" "\x45\xdb\x75\x3f\xbf\xf4\xef\xd7\xff\xeb\xff\x59\x6f\x6e\xfd\x7f\xee\xfe" "\x5b\xf6\xa6\x5e\xbf\xfd\x0f\x00\x00\x00\x1d\xdc\xb2\xf7\x8f\x67\x57\xef" "\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xbb\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xdf\x79\xff\xef" "\xfd\xff\x72\xa1\xfe\xff\xc6\x53\xfa\x7f\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff" "\xbf\xd2\xff\x5f\xb4\x5d\xf7\xf3\x4b\xff\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6" "\xff\xe7\xee\x7f\x77\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x13" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xd8\xfd\xfb\xff\xcf\xef\xf6\x3f\x00\x00" "\x00\x0c\xe9\xbd\x7b\xff\x78\x76\xf5\xbe\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f" "\x7d\xd2\xfe\xff\xaa\x7b\xfc\xcf\xfa\xff\x0b\x7f\xbf\xfe\x7f\x23\xef\xff" "\xdf\x72\xf0\xaf\x3d\xfd\xff\x82\xfa\xff\x6b\xf4\xff\xfa\x7f\xfd\xff\x14" "\xfd\xbf\xfe\x7f\xc9\xdf\x3f\x9f\xfe\x7f\xff\xb7\xf3\xff\x36\xd5\xff\x33" "\x27\x73\xeb\xff\x73\xf7\xbf\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x1f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5b\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xb6\xb8\xa5\xc9\xfe\x6f\xdc\xff\x0f\xf2\xfe" "\xff\x03\xee\x88\x2f\xd0\xff\x8f\xdb\xff\x7b\xff\x3f\xee\x22\xfb\x7f\xef" "\xff\xeb\xff\xf5\xff\x93\xf4\xff\xfa\xff\x25\x7f\xff\x7c\xfa\x7f\xef\xff" "\x33\x5f\x73\xeb\xff\x73\xf7\x7f\x30\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x47\xe2\x96\x26\xfb\x5f\xff\xbf\xf4\xfe" "\xdf\xfb\xff\xfa\x7f\xfd\xff\x60\xfd\xff\x6d\xfa\xff\xe3\xd1\xff\xeb\xff" "\x57\xfa\xff\x8b\xb6\xeb\x7e\x7e\xe9\xdf\xaf\xff\xd7\xff\xb3\xde\xdc\xfa" "\xff\xdc\xfd\x1f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xc7\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe3\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\x89\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xb7\xd5\xff\xdf\xf5" "\x8b\xe8\xff\x9b\xf4\xff\xd7\xea\xff\x57\xde\xff\x3f\x94\xfe\x5f\xff\x3f" "\x45\xff\xaf\xff\x5f\xf2\xf7\x6f\xac\xff\xbf\x97\xfe\x9f\x71\xcd\xad\xff" "\xcf\xdd\xff\xc9\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2a\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1d\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x9f\x89\x1b\xee\x7b\x9f\xdd\x7d\xd2\x66\x9d\x3e\xe4\xe7\xd1" "\x9b\xeb\xff\xf5\xff\xde\xff\xd7\xff\x7b\xff\x5f\xff\xbf\x4d\xfa\x7f\xfd" "\xff\x14\xfd\x7f\xe3\xfe\xff\xb2\x93\xff\xc7\x75\x98\xfe\xdf\xfb\xff\x0c" "\x6c\x6e\xfd\x7f\xee\xfe\xcf\xc6\x2d\xfe\xfe\x3f\x00\x00\x00\x0c\x23\x77" "\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xf3\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\x85\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\x8b\xed\xff\xaf\xd2\xff\x9f\xfb\xfd\xfa\xff\x79\xd2\xff\xeb\xff\xa7\xe8" "\xff\x1b\xf7\xff\x03\x7c\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\x7f" "\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x2f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x57\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x2f\xb6\xff\xf7\xfe\xff\x81" "\xef\xd7\xff\xcf\x93\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf2\xf7\xeb\xff" "\xf5\xff\xac\x37\xb7\xfe\x3f\x77\xff\x57\xe3\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7a\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x23\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xa6\x4b\xde\xff\x9f\xda\xfc\xaf\xb1" "\xd2\xff\xeb\xff\x0f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x9b\x5b\xff\x9f" "\xbb\xff\x9b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x3d\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xdf\x8e\x5b\x9a\xec\xff\x91\xfb\xff\xa9\xdf\x4d\xff\xbf\x4f\xff" "\xaf\xff\x5f\xe9\xff\x0f\xf6\xff\x67\xf2\xe7\xfa\xff\xcd\xf0\xfe\xbf\xfe" "\x7f\x8a\xfe\x7f\xe0\xfe\xff\xcc\x46\x3e\x71\x77\xdf\xaf\xff\xd7\xff\xb3" "\x11\x73\xeb\xff\x73\xf7\x7f\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc5\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xf7\xe3\x96\x26\xfb\x7f\xe4\xfe\x7f\x8a\xfe" "\x7f\x9f\xfe\x5f\xff\xbf\xd2\xff\x7b\xff\x7f\xcb\xf4\xff\xfa\xff\x29\xfa" "\xff\x81\xfb\x7f\xef\xff\xeb\xff\x61\x77\xfd\xff\xe9\xd5\x21\xfd\x7f\xee" "\xfe\x1f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x87\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x71\xdc\x32\xce\xfe\x7f\xe0\xad\x13\xff\xa4\xfe\x7f\xe3\xfd\xff" "\xde\x5f\x44\xfa\x7f\xfd\xff\x4a\xff\xaf\xff\xd7\xff\xef\xd1\xff\xeb\xff" "\xa7\xe8\xff\xf5\xff\x4b\xfe\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xf6\xfe\x7f\xee" "\xfe\x9f\xc4\x2d\xe3\xec\x7f\x00\x00\x00\x68\x2f\x77\xff\x4f\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xf3\xb8\xa5\xc9\xfe\xd7\xff\x7b\xff\x5f\xff\xdf\xaa\xff\xbf\x7c" "\x75\xa4\xfe\x3f\xff\x15\xd6\xff\xeb\xff\x4f\x4e\xff\xaf\xff\x9f\xa2\xff" "\xd7\xff\x2f\xf9\xfb\xf5\xff\xfa\x7f\xd6\x9b\x5b\xff\x9f\xbb\xff\x17\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x65\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x2a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1d" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\xbf\x55\xff\xef\xfd\x7f\xfd\xff\x25" "\xa7\xff\xd7\xff\x4f\xd1\xff\xeb\xff\x97\xfc\xfd\xd9\xff\xe7\x5f\x77\xfa" "\x7f\xfd\x3f\xe7\x9b\x5b\xff\x9f\xbb\xff\x37\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\xff\x6d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x2e" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1f\xb7\x34\xd9\xff\xfa\xff" "\x59\xf7\xff\x99\xb9\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x10\xfa\x7f" "\xfd\xff\x4a\xff\x7f\xd1\x76\xdd\xcf\x2f\xfd\xfb\xbd\xff\xaf\xff\x67\xbd" "\xb9\xf5\xff\xb9\xfb\xef\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x1f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x8f\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\x7f\x67\xdc\xd2\x64\xff\xeb\xff\x67\xdd\xff\x7b\xff" "\xff\x62\xfb\xff\x2b\xf5\xff\xfa\x7f\xfd\xff\x5c\xe8\xff\xf5\xff\x53\xf4" "\xff\xfa\xff\x25\x7f\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\xff\x29" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8e\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5f" "\xe3\x96\x26\xfb\x5f\xff\xaf\xff\x3f\x7e\xff\x7f\xba\xfe\xbc\x67\xdb\xff" "\x7b\xff\xff\x1e\xfd\xff\x99\xd5\x6a\xa5\xff\x9f\xfa\x7e\xfd\xff\x76\x8d" "\xdb\xff\x9f\xd1\xff\xeb\xff\x4f\xdc\xff\xdf\x70\xd3\xfe\x8f\xf5\xff\xcb" "\xfc\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee\xff\x5b\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\xff\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xff\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\xc6\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\x3f\xe4\xfb\xff\xfa\x7f\xef\xff\xeb\xff\x67\x63\xdc\xfe" "\xdf\xfb\xff\xfa\x7f\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x99\x5b\xff\x9f" "\xbb\xff\x5f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x77\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x27\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xff\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x6f\x93\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf2\xf7\xeb\xff\xf5\xff" "\xac\x37\xb7\xfe\x3f\x77\xff\xff\x03\x00\x00\xff\xff\x61\x6d\x2e\x1e", 24695)); NONFAILING(syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_REC|MS_STRICTATIME|MS_SILENT|MS_NOSUID|0x800*/ 0x301c802, /*opts=*/0x200000000f80, /*chdir=*/0x11, /*size=*/0x6077, /*img=*/0x200000006480)); // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {62 6c 6b 69 6f 2e 62 66 71 2e 67 72 6f 75 70 5f 77 61 69 74 // 5f 74 69 6d 65 00} (length 0x1a) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd NONFAILING( memcpy((void*)0x200000000200, "blkio.bfq.group_wait_time\000", 26)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000200ul, /*flags=*/0x275a, /*mode=*/0); if (res != -1) r[0] = res; // write$UHID_INPUT arguments: [ // fd: fd_uhid (resource) // data: ptr[in, uhid_req[UHID_INPUT, uhid_input_req]] { // uhid_req[UHID_INPUT, uhid_input_req] { // type: const = 0x8 (4 bytes) // data: uhid_input_req { // data: buffer: {7f 96 54 d6 36 ab 18 b7 93 8a 28 04 50 5c 72 e9 99 // 4c a2 24 04 fc 20 33 34 cc 21 ed 3d 6a 77 6f d1 2d 13 f9 60 2b 29 // 80 f9 83 c3 1a 5d 1e 43 1d b7 78 09 9c e3 af 3f b2 0e 1e e1 f4 fd // b7 7c bb 36 15 49 82 a9 3c 19 82 5d 6f d2 73 ab 1e b5 bc d4 7a da // d5 0d e8 a6 79 14 86 e4 82 e2 9e cc 94 28 49 21 f3 3b 94 1c fc 10 // 00 c9 78 1d 9a 82 8c 5e c7 a2 c7 7b 4e 62 4a 5a a0 e9 e3 97 82 ba // d7 33 ed a8 1b a4 7e 1c 61 16 e4 17 0e 65 87 dd 62 10 a5 7a be 91 // f1 f8 0c 4e 31 13 9d 8b 73 fe 35 ac 1f 99 ea 82 dd 6a a9 c9 aa 67 // de 88 ae 3e 14 10 20 e1 a8 76 bb c4 49 d2 d8 43 aa 7e 6d 90 b9 48 // b7 e2 87 70 e6 ac 71 01 0c 63 f1 7e 90 fd 20 80 6a 9f 8d 9f 41 8e // e3 af 74 aa c6 4b 04 a2 7c 4f 5e 36 26 ca 2d a5 46 c7 9d 24 ac ad // d1 1e 8d 27 2a 22 fc 54 07 8f d5 e6 44 75 99 36 68 98 0a 9f 95 af // f9 64 de e6 74 35 6a f4 92 b8 37 7a 75 9d 8c cf 1a cc b9 a1 8e f7 // ad 16 f4 38 dd e6 9c d0 20 d7 15 52 b0 81 06 88 c8 82 a2 6a 22 b2 // 3f 4b 35 47 1b 08 b3 79 19 3d b1 cd 79 34 a4 04 9f f1 b0 0d 97 95 // cd a6 e7 39 51 64 1d 5e 23 65 c2 4f ac d5 af d0 9e d1 d0 96 d7 58 // b4 fe f6 6f e1 aa 22 39 5d 67 b7 e1 db 62 3d 4a 60 a7 dc 93 89 3d // 6c 4a 91 df 79 53 5a 85 58 68 c5 dc 00 33 d5 c4 28 cd 25 b8 5c 5d // eb 6e 81 06 85 53 bc 84 ce ad 4d 1e ba 8a a5 7e 2b 35 4a 68 99 e4 // 4a cb d3 83 44 91 21 9b 3e 23 1c d5 5d 82 f1 61 77 4a 68 9e fe 19 // 7c c1 93 ac 01 24 c6 77 38 a0 a1 d5 f1 6a 67 68 c2 c2 ba 73 86 c8 // c9 5c a0 8c 55 11 7f 34 4f 5a 2b ca 0d 09 e7 9e a3 fc 49 49 1f 2c // 7a dc 51 3c 27 79 c1 bf 62 b1 a8 64 3d 23 e9 e8 b2 ae 41 d4 a5 9f // 1b 82 b8 2e 09 2b 36 eb 85 1b 84 56 da 87 1b 40 57 ae c3 25 a9 d4 // cc ca fd e6 1f 2a bc 85 e3 ca be ab b8 56 f6 ff bf e2 3d 69 21 9e // c8 fa e6 be b5 4a be 78 70 db ae 82 3d 49 80 6a 96 7a 1c 7f 25 29 // 99 80 4f 10 67 45 f2 04 90 bb 33 47 b5 93 21 dc 69 76 55 67 ab cb // d8 9d e0 4d 89 62 21 70 00 5d f5 87 1e d0 fb 72 34 5a 11 da 07 40 // 60 d7 d4 ee 2e 43 7f 71 a4 57 23 fb 6b 02 de 56 06 7e 54 f5 4c 52 // d1 0f 78 74 a1 3c bf b3 bd 65 ce 54 f9 d6 71 9e a2 10 e0 cf 79 e4 // e2 15 77 36 ec 07 ac 59 15 68 2a b8 1b ce d6 65 c1 e7 2f ab 8d 8c // fe 50 9d e0 f2 1f e3 74 b9 57 b3 79 fd 59 18 06 1e 21 c2 e9 69 85 // cc 13 54 b2 de 85 9b 0f 1a 46 3a b0 46 83 b1 25 3e da 67 1c 23 53 // b5 c2 08 ac a6 52 f5 41 9f fc 49 49 a7 fa 90 9b 95 65 3f 42 d9 73 // 90 c4 00 b4 a1 c3 08 b1 1e 73 e9 a0 6d 3b 16 4d 33 61 e7 55 84 d7 // 0e 6b c6 1d 57 0a 7e 0c 7d a3 30 f6 43 19 4c 18 93 fc d6 48 9f ac // 60 5e ea d6 1b 53 df f1 8c af 52 6e cc cc 9b bd 91 46 bc 3c 3b b6 // 76 77 69 5e 6f dd aa b0 81 78 6e 90 84 01 4e 60 f5 c0 3a e5 a9 08 // 77 26 b0 5e 17 40 2c d2 fb b8 0d 77 3b 8a 41 47 0b 1f 90 1a 8c 2b // 2d 57 45 01 81 f4 fc 5b c5 3c 7c b3 dc 03 2b 84 56 74 92 60 7c b0 // 88 32 ec a9 f7 9d a9 21 0d 19 78 63 e5 db 5a 74 a9 82 3d c0 cc 8b // d9 f3 a9 b6 ff 5a 7d 15 d4 74 7a 9b 26 e0 88 f4 fa d9 6d 81 cd 12 // 14 22 6b 1c 45 85 d4 18 d5 93 22 0f cb b9 ad 94 92 66 cc 48 16 3e // 34 98 b4 6e bc df 7b 2b 5e cf e6 75 39 a6 1e d9 e3 9b 02 d5 b3 5a // c0 d0 e7 fa 83 00 34 ca 2d a8 a7 dd f0 4b cf 2c ee 93 99 94 36 9f // eb 77 02 3e 0e 3d e0 4b 21 db 7a 64 0a 92 c1 77 48 24 50 05 cd 75 // a7 de ba 4f f0 e4 c1 04 a9 db 2d 9a 98 ec 8e db 35 62 05 0a 3b ac // 5f 32 22 90 e3 d8 b6 fb 21 77 0a c4 36 d4 cb 12 b9 7f c8 f7 6d 7b // b9 ee ed 85 66 3e b0 62 6f 1a d1 71 9e e4 b0 7f 7d e2 c1 d1 a3 1c // 27 c6 87 9f 4f a3 db df b2 bf c0 89 8b ea ba fb ec a9 f1 30 50 e6 // b2 f6 c4 32 e4 23 cd 5c b6 b8 fa 56 fe 32 c3 e5 01 04 e4 44 62 c0 // a5 c6 9d e6 a7 ac 5a e3 d9 f0 7c ee d6 4d bf fa 42 e4 66 38 38 bf // cd e9 2f 0f cb 89 5f 3b 93 c5 9b 0e 48 c0 98 90 df c3 64 36 db 56 // b7 08 f6 e7 cb bd 2a 63 05 f5 73 ce e0 99 db cd 26 3c b9 6d 9f b6 // 9c bc 3c b0 6d 8f 5e 37 89 69 8a 17 e7 1d 22 b4 66 5f f5 44 7f cc // 17 a3 1b b1 36 c8 bb 4b 98 45 73 bc af 1c b6 50 19 8c 12 66 e6 dd // fd 42 d4 4f 9d e0 2c b9 d9 15 c5 33 4c 55 0f ac 3f ce e5 67 90 ae // b0 9d 81 e7 69 0a 32 d8 b0 cc 47 7b 23 f1 52 57 82 0d e2 27 be 1f // fa ec 2f 63 f3 26 6b 8f 5d d7 89 47 dc ee 35 5f e5 9b fb 10 0e 52 // 44 42 55 32 bb 1d 11 5a cd 21 1b 8c 16 b0 ec 0a ae 00 fc a5 d4 51 // 1a 05 c3 ff 02 7a 1c ac 56 21 0a 10 d8 1c 01 b9 0e 15 6c c7 b3 3d // e0 fa c8 25 dc 51 6d 39 81 66 09 60 13 e0 68 db 93 54 83 c9 3b a9 // 5d a3 9b 5a e4 08 7d 84 47 9a 4c 48 09 f2 8f 93 79 0d c2 79 63 7b // d6 f3 dc 44 1d 31 5c f6 bd 7b 0e 3d 92 07 0a 45 ba f4 44 5c e0 63 // fd 12 69 0e b0 02 f5 ca 06 8a 25 6b c5 41 00 c9 9a 02 a3 46 be ca // 39 07 21 63 c4 b2 97 d1 17 f1 ed 9f ef 42 e3 db c1 1d 36 a0 a0 db // 52 e8 44 61 c6 fb b4 aa d6 2c d6 c8 dc 9a e6 a3 39 0a 5e 87 73 ac // 59 9e 67 43 62 20 c8 d5 41 a9 03 97 62 bf fa a7 f4 90 e3 1d dd bc // 36 2f b4 ff 68 6c da 90 5f 3b 02 a1 db 76 d4 d5 70 d9 70 43 49 21 // ca 8a 47 65 af 6d 5c 8b 88 1e 1f 4f fa 7e 2d 9e f5 f5 51 1b 94 f8 // 84 74 67 4e c7 90 bb 51 86 c7 34 46 a2 27 bf 1f fd 19 b6 05 73 3a // bd 1b d4 1e 42 1a ea f2 ed 46 17 08 8c 7c ee f8 54 51 22 50 56 43 // 59 93 e8 9e 4b cc d2 c2 e4 b3 9a f9 9f ee f1 1f ea 64 5e eb 5c f9 // f7 7b 1e 19 a7 2d 3e fb 61 31 00 96 9b 84 30 27 89 71 4b ca 65 bc // bc 96 76 2b 40 12 a5 70 0c 62 ae d7 06 43 3b 9f 14 2b 73 02 44 2b // 6a 99 58 b0 e2 8e 8b 1c fa 9e eb 4a c0 d7 1f 49 7b 23 ba bf 9f 02 // 21 dc b6 58 d9 f4 db 5d 45 be e3 0d 2a d7 c9 7d 6a 56 2e 01 4a 77 // 01 c1 53 25 ec 5d 42 ab 73 2b 37 71 4a 77 a9 5c 03 fb 15 bb fb a6 // fa de 32 bf 50 f9 85 a1 df 36 2c a7 21 6c c1 52 90 7d d9 31 ac b5 // 8a 63 92 0f 58 1e 82 b5 90 c0 d6 a0 03 30 09 f8 e5 0c 32 63 d3 f5 // 85 96 b6 3d 50 7c ad bc 80 9a 66 90 56 1f 74 d0 77 2b f9 2d 04 e0 // 6c 47 a3 50 72 4b 10 6f 5e 83 f7 e7 1c 4b 2a 98 3b f5 ad 7d 86 84 // e7 b8 b5 dc 12 73 d0 fa 58 79 b8 e6 1b de 33 d6 02 bc 8f f0 91 3b // 6d 32 dc ac 36 6d 56 8d c7 cf 82 bb fc 40 5c be 41 8a 26 44 c2 65 // 92 b3 2c a1 a6 32 fc 95 12 3e fb 78 4c fb 69 53 a9 4e be cc d2 4f // ba 38 9a 0e 56 b0 43 df 07 d9 a2 dd 38 a1 19 6e 5e 55 57 6b 25 f8 // 5c b9 6f 65 60 80 2a 4a 58 b7 a6 85 7e 84 54 fa a2 c8 80 bf 32 d4 // 64 56 2b 2b dc 5f 0d f2 2b 66 3f 2c 01 fc 94 4f 1c fd 19 08 f6 17 // f8 29 5a 54 40 bb 79 ae 17 8e a4 6a 95 ba ee a4 83 22 10 51 46 ac // 3e d2 de 7d 37 96 dd dd cc 84 8a 8e cf 4a 00 dd 05 57 33 b4 f5 92 // 11 f5 a4 0d ee a4 4e 74 b3 bc 57 95 3b 26 ed 61 e6 fd 67 88 9e df // e8 d0 90 23 85 e3 76 66 aa ce c0 72 73 56 30 ec c4 41 c3 cc 6b 09 // bb 2f 63 aa 4e 33 2c 6d f7 28 dc 74 07 8a 83 ce 20 45 4d fd 61 6d // 11 62 70 66 6d dc 09 c5 fe a2 e8 44 2b c4 34 55 d0 25 7f ac 92 f3 // 78 00 61 17 8f 94 20 bf 8e 46 3f 29 89 6c 12 38 3d bb 9a 81 bc 5c // 87 37 6e 64 7c 8a 79 86 cb 51 4f b9 69 6d 9c 0a 8d 30 3c 5c 4b 5b // 7c 5f 60 1c 01 fa 19 32 3e 02 f6 75 c3 71 bc 44 fb c1 ac 57 04 d4 // 1a 89 a2 a4 cc ec 6a c8 44 0c 53 2f 07 da 25 aa 2d ce 6a 5d 2e be // 69 4e b4 01 7d 17 8b 22 12 13 bf e2 a0 1d 9c fe 68 9b d1 90 77 6b // ca 6c 03 2f 44 6e b8 86 25 87 a7 82 6e 35 f3 f6 91 76 32 12 ee e6 // af 2e 49 bb eb 0a 27 e0 7c 57 14 b7 4e 37 37 98 c7 be bc e2 65 f7 // eb ef 3a 1e a6 40 78 cf 1e 8a 9d 43 3a f3 2c 53 09 0c 97 2f fe db // ad af b5 0b 9a 6e 54 0a bd 84 f8 e9 38 58 3e a7 25 95 4b e3 b2 36 // c5 d8 ac a7 d4 86 d2 19 02 a2 90 2f 25 a7 c0 2d be 83 c3 9b d0 b8 // 15 13 f9 ef 19 8c 49 d5 60 e9 30 ae 22 4f f4 7f 92 e4 85 1e 1f 7a // b5 bb 40 6a bc f6 59 65 69 26 1e 6b 0c 67 bb 3b 85 4e 9c 6d e6 0b // fb 60 fc f2 92 41 ff 23 71 51 31 0e cd 19 f8 b2 cf e7 64 c1 df 1a // 2d e9 d8 40 ec a4 7a a1 69 ba 9a 41 59 01 20 4e c3 1c cd fd 76 e9 // 08 02 9a e3 4f b1 2d c2 86 75 8c 64 fd 6d 42 bc 82 b1 4e 07 e4 21 // f4 b4 2b 18 0c d6 ef 40 ca c8 06 29 28 b4 a4 20 a4 57 7f 24 29 5f // 54 de 90 48 ac 9d 34 30 7b f9 3e 46 3c ea 49 67 cf 48 80 16 6f 68 // ed 1e b9 65 db 2e 4f b9 f5 f0 b1 c6 95 d6 21 e4 27 cc b9 a3 18 80 // 73 ee 6f de 72 9c 66 98 34 6e fa 1c 0b a6 43 c1 ef d2 08 58 96 55 // 11 da 75 00 60 d5 51 c4 4c 43 5a 5f 16 03 fa e7 35 7e 0b c7 8e 92 // aa d3 d8 87 90 ec 2a a1 a4 2d 6f e7 e0 ff c5 7f 35 99 e4 06 db 63 // be 7d d3 26 92 df 32 ce 33 de e0 a2 be cd b0 2d 6e 43 5e 09 de 3d // 35 64 97 54 3d b2 3f 53 da 25 64 3f 9c 58 5e 27 52 97 80 0d 8b ee // d4 7f 0e 62 2f 86 fc 25 d2 e8 70 36 fd ce eb fe 72 57 cb 6d e0 c0 // 24 12 d1 c0 75 8a cf cd 08 62 e9 9a d1 7a 11 8f 46 f6 35 a8 74 77 // e8 b8 25 42 3d 94 ad a3 5b f0 b5 44 4a a7 d3 de 4b b7 ee c7 ae 51 // 29 fc c2 cb a6 51 cc 97 2f 55 00 fc 51 61 14 9d 29 f4 52 96 2a fb // 10 2a 01 ae 76 82 5c b4 47 74 60 be 0b 85 d7 50 58 59 5c 27 e9 b7 // fa e3 49 2e c3 92 5c 67 1b ee 5f 4c a5 34 d5 a2 94 f7 83 d6 cc 07 // 3c 99 21 39 b6 1d 21 fd 98 29 7b 04 c0 57 8d af d5 f7 eb ca f8 d4 // d9 18 5a ea 3d 76 e8 13 42 1f 45 73 b3 8c 25 09 3c 01 5a 65 e4 4f // b2 97 f0 f6 ac 2d 02 c4 23 7b 37 a3 bf ca 24 06 c5 c9 5a e5 81 28 // 16 ba ca d5 9b a7 c6 f7 2d 7c 64 4f f2 5b 59 2e d1 e8 9b 27 6e 05 // 86 6c 01 a4 ce d7 fc 6d d9 f1 90 c2 0d 42 0d 7c 8a 1f e9 08 83 3a // 24 c5 e5 bd 7a 95 a2 a6 fb f1 47 fc 4b 29 a1 79 71 81 66 dd 0f ba // e2 fc 6b 8c 8a ac 61 94 fa 6b af 0d 3e dc 36 b2 31 6c 56 c4 41 ba // 53 e3 e7 aa af 0a 14 05 56 6f f5 84 f7 3a 63 7b 74 dd e9 bc b4 d4 // 1d a2 be 6c 9d f5 d5 33 fb ac 54 f5 fb 52 a8 a7 93 75 7c fe 19 aa // 90 04 8c 6d 07 e3 47 41 36 ae 1b e2 45 5b 0d 0d 02 eb 4b 59 61 ba // 88 32 09 35 5c 0d d2 af 4a ad 98 e7 b9 71 e3 58 a7 d9 b5 5f e1 7c // d6 09 5f 25 73 55 d9 b9 9e 5e a5 28 48 f1 7b 35 a8 07 92 d9 ed 0f // ef 6f e3 ee f9 a3 24 90 24 09 96 98 23 be 20 bb e0 e8 db a9 c7 47 // cd 1a 14 d3 64 2d 87 7b 86 27 1f 3f 0c 32 2a 14 2c 4f f6 35 b3 7d // 54 2c 32 65 b5 fe 85 89 a7 32 bb 1a 55 01 0b 93 0d d0 19 6c d4 3a // c3 63 4c 01 b4 a4 4c 51 71 97 d0 3a 3d 89 c6 7f 5c 09 aa b4 09 e8 // 4c 0a f4 66 bf bd 0c 96 d2 40 10 1a 25 42 c6 6b 4b 4b 8e f6 5b 41 // b0 07 99 95 c5 2c c9 72 0d 2c 1d 7c 12 8c 6f 17 a6 5c c7 98 c1 98 // 6c fb d8 88 84 60 c5 44 38 ed c4 f9 1f 35 80 39 1c 8b 57 d9 ae e2 // 09 a5 9a 11 6c 1c 44 77 54 37 e9 c3 0e 6d 87 e8 2c e8 4e 28 53 2b // 19 44 1e 32 ab 9a ea 22 17 7b ac 9d aa d2 5a 6c 88 39 5e 93 48 d6 // 78 0d e6 30 cd db 26 6c 41 10 11 17 5b db 62 55 a3 65 35 18 08 18 // 44 7d 43 ff ba 37 58 d3 11 53 9f e9 f6 81 1f a4 70 bf 37 67 b4 c2 // d4 cd f3 78 54 c7 ee 28 73 0b b1 d3 9d 5c 0d ff fc db f3 53 cc a3 // e1 30 79 f3 ae 66 b8 39 c7 dd 36 91 40 22 a0 e7 5b ca 5b 62 2f 52 // 14 20 b7 32 49 ef 47 f0 3c 1f b0 3e cf 75 57 88 2a fc aa 7c f4 54 // a6 8a d2 37 d4 ce 86 0b d6 b1 53 1c 1c af e2 cf b7 6b c4 18 82 71 // ef 6b df b3 04 ee 0e 69 32 46 3a 19 09 f0 3d 6e 8a 27 b5 f1 37 d6 // b3 42 84 1d 61 38 63 df df 37 d5 ec 3a 98 d6 67 81 0f b6 f8 2d 67 // 62 0b de fe d8 b3 ff 98 42 0a 6c 7e e5 77 c3 ba 68 b9 5a 20 40 36 // 08 a7 ba 65 26 ec 9e 86 62 c6 e1 5a b0 9b 1a 90 19 d4 95 8a f0 4c // b2 e4 89 0e e6 b1 07 7f ca a5 cc 08 17 f3 88 46 1b 23 0f e6 31 e7 // 5f 18 ab 39 2a 5c a5 de 4a 02 4c a1 6d d0 5f cf df 92 11 4e 43 a5 // c4 a1 69 d4 62 ff 0d ba 57 de ea f5 ea af d8 92 f8 cc bd 72 ac 56 // 47 11 62 e1 41 6b ca 39 85 9b 41 84 ba 0d 1b 3f 7e c0 5d b4 ef 4c // f0 14 28 67 fa 9b e3 28 a0 be 8a a7 4c 71 6a ad 94 11 00 86 07 98 // 08 61 f4 f7 2e 9b fa 60 19 5e 2f 93 9d 3f 6a 44 a6 ce c0 7d d3 76 // d1 bc ca a1 26 68 6f 31 3d 5f 79 18 ec d1 21 50 26 98 2c 82 ed 19 // 22 ef 70 e3 6e 8e d5 9b 2d 5c ea b3 b4 aa d7 e5 30 49 06 2d d5 ba // 0e 87 f7 00 5c 3f 4d 2b 78 82 45 cd c2 f3 5e f2 57 2b ea 5e a9 2d // fa d4 06 ad e6 d5 ad 18 be 8e eb 4c 65 2e 52 77 b2 44 64 5c 68 c0 // c0 f5 a6 8d 42 e0 0d 59 b7 59 41 91 7b 2c df 31 fd f8 09 f2 07 8c // a9 7f d5 be ba 65 b3 4e 06 21 13 8e a0 e9 4f eb 87 16 6b 2d ac 22 // 32 eb ca 57 5e 5c 0a 4d 56 5d 99 92 f7 33 bb fb e6 8a 63 d9 9e e9 // 33 98 60 40 65 d5 51 7c 33 ed 0e 06 7b db 64 3e 73 10 2f 16 13 7a // fd 7d 4b f2 1e 80 65 ea 02 8c 39 2a 6d ce fb e6 42 dc 3f b0 3a 23 // 9d 9c 8b 17 02 3e ac c8 e1 9f ea 11 c3 4a 10 64 4a f1 b7 86 fc 0f // 45 04 03 8c 2e e5 9c 1b 35 3f 3d 7b 93 13 df 02 5b 4b 58 74 ca 63 // ec 16 4a 3f e3 5b f3 90 d2 66 f5 3d cd a6 a8 e1 90 e6 3a 56 ff df // 4f 7c 5c 02 aa 22 d3 76 db 06 d4 d2 b9 6b e5 b3 31 f8 97 d1 ec fd // 25 c1 3a 1c 19 4c 26 5d d9 5a 57 24 a6 43 5b c8 13 82 24 d9 db 28 // b6 89 b9 ce a5 13 2c d1 96 01 db c4 a4 3e 70 c7 1e 27 e8 fd 06 89 // d0 94 84 97 4e 8a 46 05 f8 55 37 35 ff fa f5 65 4a 08 7e 32 3c a1 // 4e 02 b6 81 b9 bb e5 92 bd 6b 71 9a e2 e8 6b df 91 8b 27 c7 9d 52 // dd 33 4d 1a a7 eb c1 bf f7 6e 97 57 2f aa d0 92 01 0a 10 22 f7 d3 // 30 89 04 91 07 a8 9c 36 4a e7 dd 02 2d 11 9e 8f 6a b7 95 fd 71 d7 // 6a 90 e8 20 23 39 40 1f f9 e9 91 8e a8 c8 e1 2f 7b 0b a1 0d 9e bd // e5 d1 bc 59 88 f2 d0 7b 34 57 9d 8c 28 26 28 20 4f 29 78 d8 b0 cf // 95 dc 41 f3 77 5a 40 53 f8 33 26 7c 64 b4 23 36 d7 c8 50 f2 91 8e // f0 dd 6d 62 e4 3f cc 17 32 54 eb 34 74 8e fd 47 54 60 9c e2 5a fd // 64 8e e5 a8 fc 5c 64 34 66 03 f8 25 85 92 d6 7b 96 13 e8 f7 ac 0d // ef 09 58 f1 34 36 58 1d 72 9e 0b 3e 06 27 38 eb 06 b2 11 6a be 83 // 75 29 69 0a 61 4f c5 d3 f5 3b 4d 46 02 e5 70 60 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00} (length 0x1000) size: len = 0x1000 (2 // bytes) // } // } // } // len: len = 0x1006 (8 bytes) // ] NONFAILING(*(uint32_t*)0x200000010140 = 8); NONFAILING(memcpy( (void*)0x200000010144, "\x7f\x96\x54\xd6\x36\xab\x18\xb7\x93\x8a\x28\x04\x50\x5c\x72\xe9\x99\x4c" "\xa2\x24\x04\xfc\x20\x33\x34\xcc\x21\xed\x3d\x6a\x77\x6f\xd1\x2d\x13\xf9" "\x60\x2b\x29\x80\xf9\x83\xc3\x1a\x5d\x1e\x43\x1d\xb7\x78\x09\x9c\xe3\xaf" "\x3f\xb2\x0e\x1e\xe1\xf4\xfd\xb7\x7c\xbb\x36\x15\x49\x82\xa9\x3c\x19\x82" "\x5d\x6f\xd2\x73\xab\x1e\xb5\xbc\xd4\x7a\xda\xd5\x0d\xe8\xa6\x79\x14\x86" "\xe4\x82\xe2\x9e\xcc\x94\x28\x49\x21\xf3\x3b\x94\x1c\xfc\x10\x00\xc9\x78" "\x1d\x9a\x82\x8c\x5e\xc7\xa2\xc7\x7b\x4e\x62\x4a\x5a\xa0\xe9\xe3\x97\x82" "\xba\xd7\x33\xed\xa8\x1b\xa4\x7e\x1c\x61\x16\xe4\x17\x0e\x65\x87\xdd\x62" "\x10\xa5\x7a\xbe\x91\xf1\xf8\x0c\x4e\x31\x13\x9d\x8b\x73\xfe\x35\xac\x1f" "\x99\xea\x82\xdd\x6a\xa9\xc9\xaa\x67\xde\x88\xae\x3e\x14\x10\x20\xe1\xa8" "\x76\xbb\xc4\x49\xd2\xd8\x43\xaa\x7e\x6d\x90\xb9\x48\xb7\xe2\x87\x70\xe6" "\xac\x71\x01\x0c\x63\xf1\x7e\x90\xfd\x20\x80\x6a\x9f\x8d\x9f\x41\x8e\xe3" "\xaf\x74\xaa\xc6\x4b\x04\xa2\x7c\x4f\x5e\x36\x26\xca\x2d\xa5\x46\xc7\x9d" "\x24\xac\xad\xd1\x1e\x8d\x27\x2a\x22\xfc\x54\x07\x8f\xd5\xe6\x44\x75\x99" "\x36\x68\x98\x0a\x9f\x95\xaf\xf9\x64\xde\xe6\x74\x35\x6a\xf4\x92\xb8\x37" "\x7a\x75\x9d\x8c\xcf\x1a\xcc\xb9\xa1\x8e\xf7\xad\x16\xf4\x38\xdd\xe6\x9c" "\xd0\x20\xd7\x15\x52\xb0\x81\x06\x88\xc8\x82\xa2\x6a\x22\xb2\x3f\x4b\x35" "\x47\x1b\x08\xb3\x79\x19\x3d\xb1\xcd\x79\x34\xa4\x04\x9f\xf1\xb0\x0d\x97" "\x95\xcd\xa6\xe7\x39\x51\x64\x1d\x5e\x23\x65\xc2\x4f\xac\xd5\xaf\xd0\x9e" "\xd1\xd0\x96\xd7\x58\xb4\xfe\xf6\x6f\xe1\xaa\x22\x39\x5d\x67\xb7\xe1\xdb" "\x62\x3d\x4a\x60\xa7\xdc\x93\x89\x3d\x6c\x4a\x91\xdf\x79\x53\x5a\x85\x58" "\x68\xc5\xdc\x00\x33\xd5\xc4\x28\xcd\x25\xb8\x5c\x5d\xeb\x6e\x81\x06\x85" "\x53\xbc\x84\xce\xad\x4d\x1e\xba\x8a\xa5\x7e\x2b\x35\x4a\x68\x99\xe4\x4a" "\xcb\xd3\x83\x44\x91\x21\x9b\x3e\x23\x1c\xd5\x5d\x82\xf1\x61\x77\x4a\x68" "\x9e\xfe\x19\x7c\xc1\x93\xac\x01\x24\xc6\x77\x38\xa0\xa1\xd5\xf1\x6a\x67" "\x68\xc2\xc2\xba\x73\x86\xc8\xc9\x5c\xa0\x8c\x55\x11\x7f\x34\x4f\x5a\x2b" "\xca\x0d\x09\xe7\x9e\xa3\xfc\x49\x49\x1f\x2c\x7a\xdc\x51\x3c\x27\x79\xc1" "\xbf\x62\xb1\xa8\x64\x3d\x23\xe9\xe8\xb2\xae\x41\xd4\xa5\x9f\x1b\x82\xb8" "\x2e\x09\x2b\x36\xeb\x85\x1b\x84\x56\xda\x87\x1b\x40\x57\xae\xc3\x25\xa9" "\xd4\xcc\xca\xfd\xe6\x1f\x2a\xbc\x85\xe3\xca\xbe\xab\xb8\x56\xf6\xff\xbf" "\xe2\x3d\x69\x21\x9e\xc8\xfa\xe6\xbe\xb5\x4a\xbe\x78\x70\xdb\xae\x82\x3d" "\x49\x80\x6a\x96\x7a\x1c\x7f\x25\x29\x99\x80\x4f\x10\x67\x45\xf2\x04\x90" "\xbb\x33\x47\xb5\x93\x21\xdc\x69\x76\x55\x67\xab\xcb\xd8\x9d\xe0\x4d\x89" "\x62\x21\x70\x00\x5d\xf5\x87\x1e\xd0\xfb\x72\x34\x5a\x11\xda\x07\x40\x60" "\xd7\xd4\xee\x2e\x43\x7f\x71\xa4\x57\x23\xfb\x6b\x02\xde\x56\x06\x7e\x54" "\xf5\x4c\x52\xd1\x0f\x78\x74\xa1\x3c\xbf\xb3\xbd\x65\xce\x54\xf9\xd6\x71" "\x9e\xa2\x10\xe0\xcf\x79\xe4\xe2\x15\x77\x36\xec\x07\xac\x59\x15\x68\x2a" "\xb8\x1b\xce\xd6\x65\xc1\xe7\x2f\xab\x8d\x8c\xfe\x50\x9d\xe0\xf2\x1f\xe3" "\x74\xb9\x57\xb3\x79\xfd\x59\x18\x06\x1e\x21\xc2\xe9\x69\x85\xcc\x13\x54" "\xb2\xde\x85\x9b\x0f\x1a\x46\x3a\xb0\x46\x83\xb1\x25\x3e\xda\x67\x1c\x23" "\x53\xb5\xc2\x08\xac\xa6\x52\xf5\x41\x9f\xfc\x49\x49\xa7\xfa\x90\x9b\x95" "\x65\x3f\x42\xd9\x73\x90\xc4\x00\xb4\xa1\xc3\x08\xb1\x1e\x73\xe9\xa0\x6d" "\x3b\x16\x4d\x33\x61\xe7\x55\x84\xd7\x0e\x6b\xc6\x1d\x57\x0a\x7e\x0c\x7d" "\xa3\x30\xf6\x43\x19\x4c\x18\x93\xfc\xd6\x48\x9f\xac\x60\x5e\xea\xd6\x1b" "\x53\xdf\xf1\x8c\xaf\x52\x6e\xcc\xcc\x9b\xbd\x91\x46\xbc\x3c\x3b\xb6\x76" "\x77\x69\x5e\x6f\xdd\xaa\xb0\x81\x78\x6e\x90\x84\x01\x4e\x60\xf5\xc0\x3a" "\xe5\xa9\x08\x77\x26\xb0\x5e\x17\x40\x2c\xd2\xfb\xb8\x0d\x77\x3b\x8a\x41" "\x47\x0b\x1f\x90\x1a\x8c\x2b\x2d\x57\x45\x01\x81\xf4\xfc\x5b\xc5\x3c\x7c" "\xb3\xdc\x03\x2b\x84\x56\x74\x92\x60\x7c\xb0\x88\x32\xec\xa9\xf7\x9d\xa9" "\x21\x0d\x19\x78\x63\xe5\xdb\x5a\x74\xa9\x82\x3d\xc0\xcc\x8b\xd9\xf3\xa9" "\xb6\xff\x5a\x7d\x15\xd4\x74\x7a\x9b\x26\xe0\x88\xf4\xfa\xd9\x6d\x81\xcd" "\x12\x14\x22\x6b\x1c\x45\x85\xd4\x18\xd5\x93\x22\x0f\xcb\xb9\xad\x94\x92" "\x66\xcc\x48\x16\x3e\x34\x98\xb4\x6e\xbc\xdf\x7b\x2b\x5e\xcf\xe6\x75\x39" "\xa6\x1e\xd9\xe3\x9b\x02\xd5\xb3\x5a\xc0\xd0\xe7\xfa\x83\x00\x34\xca\x2d" "\xa8\xa7\xdd\xf0\x4b\xcf\x2c\xee\x93\x99\x94\x36\x9f\xeb\x77\x02\x3e\x0e" "\x3d\xe0\x4b\x21\xdb\x7a\x64\x0a\x92\xc1\x77\x48\x24\x50\x05\xcd\x75\xa7" "\xde\xba\x4f\xf0\xe4\xc1\x04\xa9\xdb\x2d\x9a\x98\xec\x8e\xdb\x35\x62\x05" "\x0a\x3b\xac\x5f\x32\x22\x90\xe3\xd8\xb6\xfb\x21\x77\x0a\xc4\x36\xd4\xcb" "\x12\xb9\x7f\xc8\xf7\x6d\x7b\xb9\xee\xed\x85\x66\x3e\xb0\x62\x6f\x1a\xd1" "\x71\x9e\xe4\xb0\x7f\x7d\xe2\xc1\xd1\xa3\x1c\x27\xc6\x87\x9f\x4f\xa3\xdb" "\xdf\xb2\xbf\xc0\x89\x8b\xea\xba\xfb\xec\xa9\xf1\x30\x50\xe6\xb2\xf6\xc4" "\x32\xe4\x23\xcd\x5c\xb6\xb8\xfa\x56\xfe\x32\xc3\xe5\x01\x04\xe4\x44\x62" "\xc0\xa5\xc6\x9d\xe6\xa7\xac\x5a\xe3\xd9\xf0\x7c\xee\xd6\x4d\xbf\xfa\x42" "\xe4\x66\x38\x38\xbf\xcd\xe9\x2f\x0f\xcb\x89\x5f\x3b\x93\xc5\x9b\x0e\x48" "\xc0\x98\x90\xdf\xc3\x64\x36\xdb\x56\xb7\x08\xf6\xe7\xcb\xbd\x2a\x63\x05" "\xf5\x73\xce\xe0\x99\xdb\xcd\x26\x3c\xb9\x6d\x9f\xb6\x9c\xbc\x3c\xb0\x6d" "\x8f\x5e\x37\x89\x69\x8a\x17\xe7\x1d\x22\xb4\x66\x5f\xf5\x44\x7f\xcc\x17" "\xa3\x1b\xb1\x36\xc8\xbb\x4b\x98\x45\x73\xbc\xaf\x1c\xb6\x50\x19\x8c\x12" "\x66\xe6\xdd\xfd\x42\xd4\x4f\x9d\xe0\x2c\xb9\xd9\x15\xc5\x33\x4c\x55\x0f" "\xac\x3f\xce\xe5\x67\x90\xae\xb0\x9d\x81\xe7\x69\x0a\x32\xd8\xb0\xcc\x47" "\x7b\x23\xf1\x52\x57\x82\x0d\xe2\x27\xbe\x1f\xfa\xec\x2f\x63\xf3\x26\x6b" "\x8f\x5d\xd7\x89\x47\xdc\xee\x35\x5f\xe5\x9b\xfb\x10\x0e\x52\x44\x42\x55" "\x32\xbb\x1d\x11\x5a\xcd\x21\x1b\x8c\x16\xb0\xec\x0a\xae\x00\xfc\xa5\xd4" "\x51\x1a\x05\xc3\xff\x02\x7a\x1c\xac\x56\x21\x0a\x10\xd8\x1c\x01\xb9\x0e" "\x15\x6c\xc7\xb3\x3d\xe0\xfa\xc8\x25\xdc\x51\x6d\x39\x81\x66\x09\x60\x13" "\xe0\x68\xdb\x93\x54\x83\xc9\x3b\xa9\x5d\xa3\x9b\x5a\xe4\x08\x7d\x84\x47" "\x9a\x4c\x48\x09\xf2\x8f\x93\x79\x0d\xc2\x79\x63\x7b\xd6\xf3\xdc\x44\x1d" "\x31\x5c\xf6\xbd\x7b\x0e\x3d\x92\x07\x0a\x45\xba\xf4\x44\x5c\xe0\x63\xfd" "\x12\x69\x0e\xb0\x02\xf5\xca\x06\x8a\x25\x6b\xc5\x41\x00\xc9\x9a\x02\xa3" "\x46\xbe\xca\x39\x07\x21\x63\xc4\xb2\x97\xd1\x17\xf1\xed\x9f\xef\x42\xe3" "\xdb\xc1\x1d\x36\xa0\xa0\xdb\x52\xe8\x44\x61\xc6\xfb\xb4\xaa\xd6\x2c\xd6" "\xc8\xdc\x9a\xe6\xa3\x39\x0a\x5e\x87\x73\xac\x59\x9e\x67\x43\x62\x20\xc8" "\xd5\x41\xa9\x03\x97\x62\xbf\xfa\xa7\xf4\x90\xe3\x1d\xdd\xbc\x36\x2f\xb4" "\xff\x68\x6c\xda\x90\x5f\x3b\x02\xa1\xdb\x76\xd4\xd5\x70\xd9\x70\x43\x49" "\x21\xca\x8a\x47\x65\xaf\x6d\x5c\x8b\x88\x1e\x1f\x4f\xfa\x7e\x2d\x9e\xf5" "\xf5\x51\x1b\x94\xf8\x84\x74\x67\x4e\xc7\x90\xbb\x51\x86\xc7\x34\x46\xa2" "\x27\xbf\x1f\xfd\x19\xb6\x05\x73\x3a\xbd\x1b\xd4\x1e\x42\x1a\xea\xf2\xed" "\x46\x17\x08\x8c\x7c\xee\xf8\x54\x51\x22\x50\x56\x43\x59\x93\xe8\x9e\x4b" "\xcc\xd2\xc2\xe4\xb3\x9a\xf9\x9f\xee\xf1\x1f\xea\x64\x5e\xeb\x5c\xf9\xf7" "\x7b\x1e\x19\xa7\x2d\x3e\xfb\x61\x31\x00\x96\x9b\x84\x30\x27\x89\x71\x4b" "\xca\x65\xbc\xbc\x96\x76\x2b\x40\x12\xa5\x70\x0c\x62\xae\xd7\x06\x43\x3b" "\x9f\x14\x2b\x73\x02\x44\x2b\x6a\x99\x58\xb0\xe2\x8e\x8b\x1c\xfa\x9e\xeb" "\x4a\xc0\xd7\x1f\x49\x7b\x23\xba\xbf\x9f\x02\x21\xdc\xb6\x58\xd9\xf4\xdb" "\x5d\x45\xbe\xe3\x0d\x2a\xd7\xc9\x7d\x6a\x56\x2e\x01\x4a\x77\x01\xc1\x53" "\x25\xec\x5d\x42\xab\x73\x2b\x37\x71\x4a\x77\xa9\x5c\x03\xfb\x15\xbb\xfb" "\xa6\xfa\xde\x32\xbf\x50\xf9\x85\xa1\xdf\x36\x2c\xa7\x21\x6c\xc1\x52\x90" "\x7d\xd9\x31\xac\xb5\x8a\x63\x92\x0f\x58\x1e\x82\xb5\x90\xc0\xd6\xa0\x03" "\x30\x09\xf8\xe5\x0c\x32\x63\xd3\xf5\x85\x96\xb6\x3d\x50\x7c\xad\xbc\x80" "\x9a\x66\x90\x56\x1f\x74\xd0\x77\x2b\xf9\x2d\x04\xe0\x6c\x47\xa3\x50\x72" "\x4b\x10\x6f\x5e\x83\xf7\xe7\x1c\x4b\x2a\x98\x3b\xf5\xad\x7d\x86\x84\xe7" "\xb8\xb5\xdc\x12\x73\xd0\xfa\x58\x79\xb8\xe6\x1b\xde\x33\xd6\x02\xbc\x8f" "\xf0\x91\x3b\x6d\x32\xdc\xac\x36\x6d\x56\x8d\xc7\xcf\x82\xbb\xfc\x40\x5c" "\xbe\x41\x8a\x26\x44\xc2\x65\x92\xb3\x2c\xa1\xa6\x32\xfc\x95\x12\x3e\xfb" "\x78\x4c\xfb\x69\x53\xa9\x4e\xbe\xcc\xd2\x4f\xba\x38\x9a\x0e\x56\xb0\x43" "\xdf\x07\xd9\xa2\xdd\x38\xa1\x19\x6e\x5e\x55\x57\x6b\x25\xf8\x5c\xb9\x6f" "\x65\x60\x80\x2a\x4a\x58\xb7\xa6\x85\x7e\x84\x54\xfa\xa2\xc8\x80\xbf\x32" "\xd4\x64\x56\x2b\x2b\xdc\x5f\x0d\xf2\x2b\x66\x3f\x2c\x01\xfc\x94\x4f\x1c" "\xfd\x19\x08\xf6\x17\xf8\x29\x5a\x54\x40\xbb\x79\xae\x17\x8e\xa4\x6a\x95" "\xba\xee\xa4\x83\x22\x10\x51\x46\xac\x3e\xd2\xde\x7d\x37\x96\xdd\xdd\xcc" "\x84\x8a\x8e\xcf\x4a\x00\xdd\x05\x57\x33\xb4\xf5\x92\x11\xf5\xa4\x0d\xee" "\xa4\x4e\x74\xb3\xbc\x57\x95\x3b\x26\xed\x61\xe6\xfd\x67\x88\x9e\xdf\xe8" "\xd0\x90\x23\x85\xe3\x76\x66\xaa\xce\xc0\x72\x73\x56\x30\xec\xc4\x41\xc3" "\xcc\x6b\x09\xbb\x2f\x63\xaa\x4e\x33\x2c\x6d\xf7\x28\xdc\x74\x07\x8a\x83" "\xce\x20\x45\x4d\xfd\x61\x6d\x11\x62\x70\x66\x6d\xdc\x09\xc5\xfe\xa2\xe8" "\x44\x2b\xc4\x34\x55\xd0\x25\x7f\xac\x92\xf3\x78\x00\x61\x17\x8f\x94\x20" "\xbf\x8e\x46\x3f\x29\x89\x6c\x12\x38\x3d\xbb\x9a\x81\xbc\x5c\x87\x37\x6e" "\x64\x7c\x8a\x79\x86\xcb\x51\x4f\xb9\x69\x6d\x9c\x0a\x8d\x30\x3c\x5c\x4b" "\x5b\x7c\x5f\x60\x1c\x01\xfa\x19\x32\x3e\x02\xf6\x75\xc3\x71\xbc\x44\xfb" "\xc1\xac\x57\x04\xd4\x1a\x89\xa2\xa4\xcc\xec\x6a\xc8\x44\x0c\x53\x2f\x07" "\xda\x25\xaa\x2d\xce\x6a\x5d\x2e\xbe\x69\x4e\xb4\x01\x7d\x17\x8b\x22\x12" "\x13\xbf\xe2\xa0\x1d\x9c\xfe\x68\x9b\xd1\x90\x77\x6b\xca\x6c\x03\x2f\x44" "\x6e\xb8\x86\x25\x87\xa7\x82\x6e\x35\xf3\xf6\x91\x76\x32\x12\xee\xe6\xaf" "\x2e\x49\xbb\xeb\x0a\x27\xe0\x7c\x57\x14\xb7\x4e\x37\x37\x98\xc7\xbe\xbc" "\xe2\x65\xf7\xeb\xef\x3a\x1e\xa6\x40\x78\xcf\x1e\x8a\x9d\x43\x3a\xf3\x2c" "\x53\x09\x0c\x97\x2f\xfe\xdb\xad\xaf\xb5\x0b\x9a\x6e\x54\x0a\xbd\x84\xf8" "\xe9\x38\x58\x3e\xa7\x25\x95\x4b\xe3\xb2\x36\xc5\xd8\xac\xa7\xd4\x86\xd2" "\x19\x02\xa2\x90\x2f\x25\xa7\xc0\x2d\xbe\x83\xc3\x9b\xd0\xb8\x15\x13\xf9" "\xef\x19\x8c\x49\xd5\x60\xe9\x30\xae\x22\x4f\xf4\x7f\x92\xe4\x85\x1e\x1f" "\x7a\xb5\xbb\x40\x6a\xbc\xf6\x59\x65\x69\x26\x1e\x6b\x0c\x67\xbb\x3b\x85" "\x4e\x9c\x6d\xe6\x0b\xfb\x60\xfc\xf2\x92\x41\xff\x23\x71\x51\x31\x0e\xcd" "\x19\xf8\xb2\xcf\xe7\x64\xc1\xdf\x1a\x2d\xe9\xd8\x40\xec\xa4\x7a\xa1\x69" "\xba\x9a\x41\x59\x01\x20\x4e\xc3\x1c\xcd\xfd\x76\xe9\x08\x02\x9a\xe3\x4f" "\xb1\x2d\xc2\x86\x75\x8c\x64\xfd\x6d\x42\xbc\x82\xb1\x4e\x07\xe4\x21\xf4" "\xb4\x2b\x18\x0c\xd6\xef\x40\xca\xc8\x06\x29\x28\xb4\xa4\x20\xa4\x57\x7f" "\x24\x29\x5f\x54\xde\x90\x48\xac\x9d\x34\x30\x7b\xf9\x3e\x46\x3c\xea\x49" "\x67\xcf\x48\x80\x16\x6f\x68\xed\x1e\xb9\x65\xdb\x2e\x4f\xb9\xf5\xf0\xb1" "\xc6\x95\xd6\x21\xe4\x27\xcc\xb9\xa3\x18\x80\x73\xee\x6f\xde\x72\x9c\x66" "\x98\x34\x6e\xfa\x1c\x0b\xa6\x43\xc1\xef\xd2\x08\x58\x96\x55\x11\xda\x75" "\x00\x60\xd5\x51\xc4\x4c\x43\x5a\x5f\x16\x03\xfa\xe7\x35\x7e\x0b\xc7\x8e" "\x92\xaa\xd3\xd8\x87\x90\xec\x2a\xa1\xa4\x2d\x6f\xe7\xe0\xff\xc5\x7f\x35" "\x99\xe4\x06\xdb\x63\xbe\x7d\xd3\x26\x92\xdf\x32\xce\x33\xde\xe0\xa2\xbe" "\xcd\xb0\x2d\x6e\x43\x5e\x09\xde\x3d\x35\x64\x97\x54\x3d\xb2\x3f\x53\xda" "\x25\x64\x3f\x9c\x58\x5e\x27\x52\x97\x80\x0d\x8b\xee\xd4\x7f\x0e\x62\x2f" "\x86\xfc\x25\xd2\xe8\x70\x36\xfd\xce\xeb\xfe\x72\x57\xcb\x6d\xe0\xc0\x24" "\x12\xd1\xc0\x75\x8a\xcf\xcd\x08\x62\xe9\x9a\xd1\x7a\x11\x8f\x46\xf6\x35" "\xa8\x74\x77\xe8\xb8\x25\x42\x3d\x94\xad\xa3\x5b\xf0\xb5\x44\x4a\xa7\xd3" "\xde\x4b\xb7\xee\xc7\xae\x51\x29\xfc\xc2\xcb\xa6\x51\xcc\x97\x2f\x55\x00" "\xfc\x51\x61\x14\x9d\x29\xf4\x52\x96\x2a\xfb\x10\x2a\x01\xae\x76\x82\x5c" "\xb4\x47\x74\x60\xbe\x0b\x85\xd7\x50\x58\x59\x5c\x27\xe9\xb7\xfa\xe3\x49" "\x2e\xc3\x92\x5c\x67\x1b\xee\x5f\x4c\xa5\x34\xd5\xa2\x94\xf7\x83\xd6\xcc" "\x07\x3c\x99\x21\x39\xb6\x1d\x21\xfd\x98\x29\x7b\x04\xc0\x57\x8d\xaf\xd5" "\xf7\xeb\xca\xf8\xd4\xd9\x18\x5a\xea\x3d\x76\xe8\x13\x42\x1f\x45\x73\xb3" "\x8c\x25\x09\x3c\x01\x5a\x65\xe4\x4f\xb2\x97\xf0\xf6\xac\x2d\x02\xc4\x23" "\x7b\x37\xa3\xbf\xca\x24\x06\xc5\xc9\x5a\xe5\x81\x28\x16\xba\xca\xd5\x9b" "\xa7\xc6\xf7\x2d\x7c\x64\x4f\xf2\x5b\x59\x2e\xd1\xe8\x9b\x27\x6e\x05\x86" "\x6c\x01\xa4\xce\xd7\xfc\x6d\xd9\xf1\x90\xc2\x0d\x42\x0d\x7c\x8a\x1f\xe9" "\x08\x83\x3a\x24\xc5\xe5\xbd\x7a\x95\xa2\xa6\xfb\xf1\x47\xfc\x4b\x29\xa1" "\x79\x71\x81\x66\xdd\x0f\xba\xe2\xfc\x6b\x8c\x8a\xac\x61\x94\xfa\x6b\xaf" "\x0d\x3e\xdc\x36\xb2\x31\x6c\x56\xc4\x41\xba\x53\xe3\xe7\xaa\xaf\x0a\x14" "\x05\x56\x6f\xf5\x84\xf7\x3a\x63\x7b\x74\xdd\xe9\xbc\xb4\xd4\x1d\xa2\xbe" "\x6c\x9d\xf5\xd5\x33\xfb\xac\x54\xf5\xfb\x52\xa8\xa7\x93\x75\x7c\xfe\x19" "\xaa\x90\x04\x8c\x6d\x07\xe3\x47\x41\x36\xae\x1b\xe2\x45\x5b\x0d\x0d\x02" "\xeb\x4b\x59\x61\xba\x88\x32\x09\x35\x5c\x0d\xd2\xaf\x4a\xad\x98\xe7\xb9" "\x71\xe3\x58\xa7\xd9\xb5\x5f\xe1\x7c\xd6\x09\x5f\x25\x73\x55\xd9\xb9\x9e" "\x5e\xa5\x28\x48\xf1\x7b\x35\xa8\x07\x92\xd9\xed\x0f\xef\x6f\xe3\xee\xf9" "\xa3\x24\x90\x24\x09\x96\x98\x23\xbe\x20\xbb\xe0\xe8\xdb\xa9\xc7\x47\xcd" "\x1a\x14\xd3\x64\x2d\x87\x7b\x86\x27\x1f\x3f\x0c\x32\x2a\x14\x2c\x4f\xf6" "\x35\xb3\x7d\x54\x2c\x32\x65\xb5\xfe\x85\x89\xa7\x32\xbb\x1a\x55\x01\x0b" "\x93\x0d\xd0\x19\x6c\xd4\x3a\xc3\x63\x4c\x01\xb4\xa4\x4c\x51\x71\x97\xd0" "\x3a\x3d\x89\xc6\x7f\x5c\x09\xaa\xb4\x09\xe8\x4c\x0a\xf4\x66\xbf\xbd\x0c" "\x96\xd2\x40\x10\x1a\x25\x42\xc6\x6b\x4b\x4b\x8e\xf6\x5b\x41\xb0\x07\x99" "\x95\xc5\x2c\xc9\x72\x0d\x2c\x1d\x7c\x12\x8c\x6f\x17\xa6\x5c\xc7\x98\xc1" "\x98\x6c\xfb\xd8\x88\x84\x60\xc5\x44\x38\xed\xc4\xf9\x1f\x35\x80\x39\x1c" "\x8b\x57\xd9\xae\xe2\x09\xa5\x9a\x11\x6c\x1c\x44\x77\x54\x37\xe9\xc3\x0e" "\x6d\x87\xe8\x2c\xe8\x4e\x28\x53\x2b\x19\x44\x1e\x32\xab\x9a\xea\x22\x17" "\x7b\xac\x9d\xaa\xd2\x5a\x6c\x88\x39\x5e\x93\x48\xd6\x78\x0d\xe6\x30\xcd" "\xdb\x26\x6c\x41\x10\x11\x17\x5b\xdb\x62\x55\xa3\x65\x35\x18\x08\x18\x44" "\x7d\x43\xff\xba\x37\x58\xd3\x11\x53\x9f\xe9\xf6\x81\x1f\xa4\x70\xbf\x37" "\x67\xb4\xc2\xd4\xcd\xf3\x78\x54\xc7\xee\x28\x73\x0b\xb1\xd3\x9d\x5c\x0d" "\xff\xfc\xdb\xf3\x53\xcc\xa3\xe1\x30\x79\xf3\xae\x66\xb8\x39\xc7\xdd\x36" "\x91\x40\x22\xa0\xe7\x5b\xca\x5b\x62\x2f\x52\x14\x20\xb7\x32\x49\xef\x47" "\xf0\x3c\x1f\xb0\x3e\xcf\x75\x57\x88\x2a\xfc\xaa\x7c\xf4\x54\xa6\x8a\xd2" "\x37\xd4\xce\x86\x0b\xd6\xb1\x53\x1c\x1c\xaf\xe2\xcf\xb7\x6b\xc4\x18\x82" "\x71\xef\x6b\xdf\xb3\x04\xee\x0e\x69\x32\x46\x3a\x19\x09\xf0\x3d\x6e\x8a" "\x27\xb5\xf1\x37\xd6\xb3\x42\x84\x1d\x61\x38\x63\xdf\xdf\x37\xd5\xec\x3a" "\x98\xd6\x67\x81\x0f\xb6\xf8\x2d\x67\x62\x0b\xde\xfe\xd8\xb3\xff\x98\x42" "\x0a\x6c\x7e\xe5\x77\xc3\xba\x68\xb9\x5a\x20\x40\x36\x08\xa7\xba\x65\x26" "\xec\x9e\x86\x62\xc6\xe1\x5a\xb0\x9b\x1a\x90\x19\xd4\x95\x8a\xf0\x4c\xb2" "\xe4\x89\x0e\xe6\xb1\x07\x7f\xca\xa5\xcc\x08\x17\xf3\x88\x46\x1b\x23\x0f" "\xe6\x31\xe7\x5f\x18\xab\x39\x2a\x5c\xa5\xde\x4a\x02\x4c\xa1\x6d\xd0\x5f" "\xcf\xdf\x92\x11\x4e\x43\xa5\xc4\xa1\x69\xd4\x62\xff\x0d\xba\x57\xde\xea" "\xf5\xea\xaf\xd8\x92\xf8\xcc\xbd\x72\xac\x56\x47\x11\x62\xe1\x41\x6b\xca" "\x39\x85\x9b\x41\x84\xba\x0d\x1b\x3f\x7e\xc0\x5d\xb4\xef\x4c\xf0\x14\x28" "\x67\xfa\x9b\xe3\x28\xa0\xbe\x8a\xa7\x4c\x71\x6a\xad\x94\x11\x00\x86\x07" "\x98\x08\x61\xf4\xf7\x2e\x9b\xfa\x60\x19\x5e\x2f\x93\x9d\x3f\x6a\x44\xa6" "\xce\xc0\x7d\xd3\x76\xd1\xbc\xca\xa1\x26\x68\x6f\x31\x3d\x5f\x79\x18\xec" "\xd1\x21\x50\x26\x98\x2c\x82\xed\x19\x22\xef\x70\xe3\x6e\x8e\xd5\x9b\x2d" "\x5c\xea\xb3\xb4\xaa\xd7\xe5\x30\x49\x06\x2d\xd5\xba\x0e\x87\xf7\x00\x5c" "\x3f\x4d\x2b\x78\x82\x45\xcd\xc2\xf3\x5e\xf2\x57\x2b\xea\x5e\xa9\x2d\xfa" "\xd4\x06\xad\xe6\xd5\xad\x18\xbe\x8e\xeb\x4c\x65\x2e\x52\x77\xb2\x44\x64" "\x5c\x68\xc0\xc0\xf5\xa6\x8d\x42\xe0\x0d\x59\xb7\x59\x41\x91\x7b\x2c\xdf" "\x31\xfd\xf8\x09\xf2\x07\x8c\xa9\x7f\xd5\xbe\xba\x65\xb3\x4e\x06\x21\x13" "\x8e\xa0\xe9\x4f\xeb\x87\x16\x6b\x2d\xac\x22\x32\xeb\xca\x57\x5e\x5c\x0a" "\x4d\x56\x5d\x99\x92\xf7\x33\xbb\xfb\xe6\x8a\x63\xd9\x9e\xe9\x33\x98\x60" "\x40\x65\xd5\x51\x7c\x33\xed\x0e\x06\x7b\xdb\x64\x3e\x73\x10\x2f\x16\x13" "\x7a\xfd\x7d\x4b\xf2\x1e\x80\x65\xea\x02\x8c\x39\x2a\x6d\xce\xfb\xe6\x42" "\xdc\x3f\xb0\x3a\x23\x9d\x9c\x8b\x17\x02\x3e\xac\xc8\xe1\x9f\xea\x11\xc3" "\x4a\x10\x64\x4a\xf1\xb7\x86\xfc\x0f\x45\x04\x03\x8c\x2e\xe5\x9c\x1b\x35" "\x3f\x3d\x7b\x93\x13\xdf\x02\x5b\x4b\x58\x74\xca\x63\xec\x16\x4a\x3f\xe3" "\x5b\xf3\x90\xd2\x66\xf5\x3d\xcd\xa6\xa8\xe1\x90\xe6\x3a\x56\xff\xdf\x4f" "\x7c\x5c\x02\xaa\x22\xd3\x76\xdb\x06\xd4\xd2\xb9\x6b\xe5\xb3\x31\xf8\x97" "\xd1\xec\xfd\x25\xc1\x3a\x1c\x19\x4c\x26\x5d\xd9\x5a\x57\x24\xa6\x43\x5b" "\xc8\x13\x82\x24\xd9\xdb\x28\xb6\x89\xb9\xce\xa5\x13\x2c\xd1\x96\x01\xdb" "\xc4\xa4\x3e\x70\xc7\x1e\x27\xe8\xfd\x06\x89\xd0\x94\x84\x97\x4e\x8a\x46" "\x05\xf8\x55\x37\x35\xff\xfa\xf5\x65\x4a\x08\x7e\x32\x3c\xa1\x4e\x02\xb6" "\x81\xb9\xbb\xe5\x92\xbd\x6b\x71\x9a\xe2\xe8\x6b\xdf\x91\x8b\x27\xc7\x9d" "\x52\xdd\x33\x4d\x1a\xa7\xeb\xc1\xbf\xf7\x6e\x97\x57\x2f\xaa\xd0\x92\x01" "\x0a\x10\x22\xf7\xd3\x30\x89\x04\x91\x07\xa8\x9c\x36\x4a\xe7\xdd\x02\x2d" "\x11\x9e\x8f\x6a\xb7\x95\xfd\x71\xd7\x6a\x90\xe8\x20\x23\x39\x40\x1f\xf9" "\xe9\x91\x8e\xa8\xc8\xe1\x2f\x7b\x0b\xa1\x0d\x9e\xbd\xe5\xd1\xbc\x59\x88" "\xf2\xd0\x7b\x34\x57\x9d\x8c\x28\x26\x28\x20\x4f\x29\x78\xd8\xb0\xcf\x95" "\xdc\x41\xf3\x77\x5a\x40\x53\xf8\x33\x26\x7c\x64\xb4\x23\x36\xd7\xc8\x50" "\xf2\x91\x8e\xf0\xdd\x6d\x62\xe4\x3f\xcc\x17\x32\x54\xeb\x34\x74\x8e\xfd" "\x47\x54\x60\x9c\xe2\x5a\xfd\x64\x8e\xe5\xa8\xfc\x5c\x64\x34\x66\x03\xf8" "\x25\x85\x92\xd6\x7b\x96\x13\xe8\xf7\xac\x0d\xef\x09\x58\xf1\x34\x36\x58" "\x1d\x72\x9e\x0b\x3e\x06\x27\x38\xeb\x06\xb2\x11\x6a\xbe\x83\x75\x29\x69" "\x0a\x61\x4f\xc5\xd3\xf5\x3b\x4d\x46\x02\xe5\x70\x60\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 4096)); NONFAILING(*(uint16_t*)0x200000011144 = 0x1000); syscall(__NR_write, /*fd=*/r[0], /*data=*/0x200000010140ul, /*len=*/0x1006ul); // mmap arguments: [ // addr: VMA[0x400000] // len: len = 0x400000 (8 bytes) // prot: mmap_prot = 0x1 (8 bytes) // flags: mmap_flags = 0x10012 (8 bytes) // fd: fd (resource) // offset: intptr = 0x0 (8 bytes) // ] syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x400000ul, /*prot=PROT_READ*/ 1ul, /*flags=MAP_NONBLOCK|MAP_FIXED|MAP_PRIVATE*/ 0x10012ul, /*fd=*/r[0], /*offset=*/0ul); // mknodat$loop arguments: [ // dirfd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // mode: mknod_mode = 0x6000 (8 bytes) // dev: proc = 0x0 (4 bytes) // ] NONFAILING(memcpy((void*)0x200000000180, "./file2\000", 8)); syscall(__NR_mknodat, /*dirfd=*/0xffffff9c, /*file=*/0x200000000180ul, /*mode=S_IFBLK*/ 0x6000ul, /*dev=*/0x700); } 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(); use_temporary_dir(); loop(); return 0; }