// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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; } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { unsigned long nb = a1; char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(nb % 10); nb /= 10; } return open(buf, a2 & ~O_CREAT, 0); } } //% 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")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 2 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_open_dev$dri arguments: [ // dev: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 64 72 69 2f 63 61 72 64 23 00} (length 0xf) // } // id: intptr = 0x1ff (8 bytes) // flags: open_flags = 0x0 (8 bytes) // ] // returns fd_dri memcpy((void*)0x2000000000c0, "/dev/dri/card#\000", 15); syz_open_dev(/*dev=*/0x2000000000c0, /*id=*/0x1ff, /*flags=*/0); break; case 1: // sched_setscheduler arguments: [ // pid: pid (resource) // policy: sched_policy = 0x1 (8 bytes) // prio: ptr[in, int32] { // int32 = 0x7 (4 bytes) // } // ] *(uint32_t*)0x200000000080 = 7; syscall(__NR_sched_setscheduler, /*pid=*/0, /*policy=SCHED_FIFO*/ 1ul, /*prio=*/0x200000000080ul); break; case 2: // 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 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 // 61 61 61 61 61 61 00} (length 0x101) // } // flags: mount_flags = 0x10000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xff (1 bytes) // size: len = 0x6355 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6355) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "jfs\000", 4); memcpy((void*)0x200000000480, "./" "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000", 257); memcpy( (void*)0x2000000082c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\xdb" "\xa8\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01" "\x0e\x5c\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11" "\x57\xbe\x70\xe0\x8f\x00\x21\x71\x41\x42\x88\x23\x27\xc4\xb9\x07\xae" "\xdc\xf8\x03\x88\x94\x20\x81\x2a\x0e\x1d\xb4\xde\xe7\x71\xc6\xd3\xb5" "\xd7\x4e\xba\x33\x6b\xcf\xe7\x23\x39\x33\xbf\x79\x66\x3d\xcf\xe4\xbb" "\xe3\xdd\xf5\xcc\xf8\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x20\xbe\xff\xbd\x1f\x9e\x2b\x22\xe2\xca\x2f\xd2\x82\x13" "\x11\x9f\x89\x7e\x44\x2f\x62\x65\x5c\xaf\x45\xc4\xca\xda\x89\xbc\xfe" "\x20\x22\x9e\x8b\xed\xe6\x78\x36\x22\x86\x4b\x11\x45\x6e\x7c\x3a\xe2" "\xd5\x88\xf8\xf0\xa9\x88\xfb\x0f\xee\xac\x8f\x17\x9d\x3f\x60\x3f\xbe" "\xfb\xa7\x7f\xfc\xee\x47\x4f\xfc\xe0\xef\x7f\x1c\x9e\xf9\xef\x9f\x6f" "\xf5\x5f\xdb\x6b\xbd\xdb\xb7\x7f\xfd\x9f\xbf\xdc\x7d\xf4\xfd\x05\x00" "\x00\x80\x2e\x2a\xcb\xb2\x2c\xd2\xc7\xfc\x93\xe9\xf3\x7d\xaf\xed\x4e" "\x01\x00\x8d\xc8\xaf\xff\x65\x92\x97\xab\x17\xae\xde\x3c\xe4\xfa\xff" "\x5b\xb0\xfe\xab\xd5\x6a\xb5\x7a\x01\xea\xaa\x72\xba\xbb\xd5\x22\x22" "\x36\xab\x8f\x19\xbf\x67\x70\x3a\x1e\x00\x8e\x98\xcd\xf8\xa8\xed\x2e" "\xd0\x22\xf9\x77\xda\x20\x22\x9e\x68\xbb\x13\xc0\x42\x2b\xda\xee\x00" "\x73\x71\xff\xc1\x9d\xf5\x22\xe5\x5b\x54\x5f\x0f\xd6\x26\xed\xf9\x5a" "\x90\x5d\xf9\x6f\x16\x3b\xf7\x77\xec\x35\x9d\xa5\x7e\x8d\x49\x53\xcf" "\xaf\xad\xe8\xc7\x33\x7b\xf4\x67\xa5\xa1\x3e\x2c\x92\x9c\x7f\xaf\x9e" "\xff\x95\x49\xfb\x28\xad\x37\xef\xfc\x9b\xb2\x57\xfe\xa3\xc9\xad\x4f" "\x9d\x93\xf3\xef\xd7\xf3\xaf\x39\x3e\xf9\xf7\xa6\xe6\xdf\x55\x39\xff" "\xc1\xa1\xf2\xef\xcb\x1f\x00\x00\x00\x00\x00\x16\x58\xfe\xfd\xff\x89" "\x96\xcf\xff\x2e\x3d\xfe\xae\x1c\xc8\x7e\xe7\x7f\xd7\x1a\xea\x03\x00" "\x00\x00\x00\x00\x00\x00\x7c\xda\x1e\x77\xfc\xbf\x1d\x85\xf1\xff\x00" "\x00\x00\x60\x51\x8d\x3f\xab\x8f\xfd\xe6\xa9\x87\xcb\xaa\xd7\xfa\x8f" "\x62\xf7\xf2\xcb\x45\xc4\x93\xb5\xf5\x81\xe3\xe5\x6f\xb3\x6e\xc8\x49" "\x37\xcb\xac\x36\xd1\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60" "\x62\x30\xb9\x86\xf7\x72\x11\x31\x8c\x88\x27\x57\x57\xcb\xb2\x1c\x7f" "\x55\xd5\xeb\xc3\x7a\xdc\xc7\x1f\x75\x5d\xdf\x7f\xe8\xb2\xb6\x7f\xc8" "\x03\x00\xc0\xc4\x87\x4f\xd5\xee\xe5\x2f\x22\x96\x23\xe2\x72\xfa\x5b" "\x7f\xc3\xd5\xd5\xd5\xb2\x5c\x5e\x59\x2d\x57\xcb\x95\xa5\xfc\x7e\x76" "\xb4\xb4\x5c\xae\x54\x3e\xd7\xe6\xe9\x78\xd9\xd2\xe8\x00\x6f\x88\x07" "\xa3\x72\xfc\xcd\x96\x2b\x8f\xab\x9a\xf5\x79\x79\x56\x7b\xfd\xfb\x8d" "\xb7\x35\x2a\xfb\x07\xe8\x58\x33\x5a\x0c\x1c\x00\x22\x62\xf2\x6a\x74" "\xdf\x2b\xd2\x31\x53\x96\x4f\x47\xdb\xef\x72\x38\x1a\x1c\xff\xc7\x8f" "\xe3\x9f\x83\x68\xfb\x79\x0a\x00\x00\x00\xcc\x5f\x59\x96\x65\x91\xfe" "\x9c\xf7\xc9\x74\xce\xbf\xd7\x76\xa7\x00\x80\x46\xe4\xd7\xff\xfa\x79" "\x01\xb5\x5a\xad\x56\xab\xd5\x0d\xd7\xcb\x0f\x17\xcc\x6b\x7b\x55\xe5" "\x74\x77\xab\x45\x44\x6c\x56\x1f\x33\x7e\xcf\x60\x38\x7e\x00\x38\x62" "\x36\xe3\xa3\xb6\xbb\x40\x8b\xe4\xdf\x69\x83\x88\x78\xae\xed\x4e\x00" "\x0b\xad\x68\xbb\x03\xcc\xc5\xfd\x07\x77\xd6\x8b\x94\x6f\x51\x7d\x3d" "\x48\xe3\xbb\xe7\x6b\x41\x76\xe5\xbf\x59\x6c\x3f\x2e\x3f\x7e\xda\x74" "\x96\xfa\x35\x26\x4d\x3d\xbf\xb6\xa2\x1f\xcf\xec\xd1\x9f\x67\x1b\xea" "\xc3\x22\xc9\xf9\xf7\xea\xf9\x5f\x99\xb4\x8f\xd2\x7a\xf3\xce\xbf\x29" "\x7b\xe5\x3f\xde\xcf\x13\x2d\xf4\xa7\x6d\x39\xff\x7e\x3d\xff\x9a\xe3" "\x93\x7f\x6f\x6a\xfe\x5d\x95\xf3\x1f\x1c\x2a\xff\xbe\xfc\x01\x00\x00" "\x00\x00\x60\x81\xe5\xdf\xff\x9f\x58\xa8\xf3\xbf\xa3\x47\xdd\x9d\x99" "\xf6\x3b\xff\xbb\x36\xb7\xad\x02\x00\x00\x00\x00\x00\x00\xc0\x7c\xdd" "\x7f\x70\x67\x3d\xdf\xf7\x9a\xcf\xff\x7f\x6e\xca\x7a\xee\xff\x3c\x9e" "\x72\xfe\x85\xfc\x3b\x29\xe7\xdf\xab\xe5\xff\xe5\xda\x7a\xfd\xca\xfc" "\xbd\x37\x1f\xe6\xff\xef\x07\x77\xd6\x7f\x7f\xeb\x5f\x9f\xcd\xd3\x83" "\xe6\xbf\x94\x67\x8a\xf4\xcc\x2a\xd2\x33\xa2\x48\x5b\x2a\x06\x69\xfa" "\x38\x7b\xf7\x49\x5b\xc3\xfe\x68\xbc\xa5\x61\xd1\xeb\x0f\xd2\x35\x3f" "\xe5\xf0\xed\xb8\x16\xd7\x63\x23\xce\xee\x5a\xb7\x97\xfe\x3f\x1e\xb6" "\x9f\xdb\xd5\x3e\xee\xe9\x70\xbb\xbd\xec\x4f\xda\xcf\xef\x6a\x1f\xec" "\xb4\xe7\xc7\x5f\xd8\xd5\x3e\x4c\x57\x3a\x95\x2b\xb9\xfd\x74\xac\xc7" "\x4f\xe3\x7a\xbc\xb5\xdd\x3e\x6e\x5b\x9a\xb1\xff\xcb\x33\xda\xcb\x29" "\xed\x95\x45\xa3\x9c\x7f\xdf\xf1\xdf\x49\x39\xff\x41\xe5\x6b\x9c\xff" "\x6a\x6a\x2f\x6a\xd3\xb1\x7b\x1f\xf4\x3e\x71\xdc\x57\xa7\xd3\xb6\xf3" "\xc6\xb5\xcf\xff\xea\xec\xfc\x77\x67\xa6\xad\xe8\xef\xec\x5b\xd5\x78" "\xff\x5e\x68\xa1\x3f\xdb\xff\x27\x4f\x8c\xe2\xe7\x37\x37\x6e\x9c\xbe" "\x7d\xf5\xd6\xad\x1b\xe7\x22\x4d\x76\x2d\x3d\x1f\x69\xf2\x29\xcb\xf9" "\x0f\xd3\xd7\xce\xcf\xff\x17\x27\xed\xf9\xe7\x7e\xf5\x78\xbd\xf7\xc1" "\xe8\xd0\xf9\x2f\x8a\xad\x18\xec\x99\xff\x8b\x95\xf9\xf1\xfe\xbe\xd4" "\x70\xdf\xda\x90\xf3\x1f\xa5\xaf\x9c\xff\x5b\xa9\x7d\xfa\xf1\x7f\x88" "\xfc\x7b\x7f\x68\x6c\x5f\x0e\x62\xbf\xe3\xff\xe5\x16\xfa\x03\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfb\x29\xcb\x72\xfb\x16\xd1" "\x37\x22\xe2\x62\xba\xff\xa7\xad\x7b\x33\x01\x80\x66\xe5\xd7\xff\x32" "\xc9\xcb\x9b\xaa\xfb\x0d\x6f\x4f\xad\x3e\xe2\x75\xb1\x60\xfd\x69\xb4" "\xfe\xb8\x5c\xac\xfe\xa8\xd5\x47\xb1\xae\x2a\xa7\x7b\xbd\x5a\x44\xc4" "\x5f\xab\x8f\x19\xbf\x67\xf8\xe5\xb4\x6f\x06\x00\x2c\xb2\x8f\x23\xe2" "\x9f\x6d\x77\x82\xd6\xc8\xbf\xc3\xf2\xdf\xfb\x1b\x4f\x4f\xb5\xdd\x19" "\xa0\x51\x37\xdf\x7b\xff\xc7\x57\xaf\x5f\xdf\xb8\x71\xb3\xed\x9e\x00" "\x00\x00\x00\x00\x00\x00\x00\x8f\x2a\x8f\xff\xb9\x56\x19\xff\xf9\x54" "\x59\x96\x77\x6b\xeb\xed\x1a\xff\xf5\xcd\x58\x7b\xdc\xf1\x5f\x07\x79" "\x66\x67\x80\xd1\x3d\x06\xb2\xee\x1f\x7e\x9f\xf6\xb3\xd5\x1b\xf5\x7b" "\x95\xe1\xc6\x9f\x8f\xbd\xc6\xff\x1e\xee\xcc\xed\x37\xfe\xf7\x60\xc6" "\xf6\x86\x33\xda\x47\x33\xda\x97\x66\xb4\x2f\xcf\x68\x9f\x7a\xa3\x47" "\x45\xce\xff\xf9\xca\x78\xe7\xa7\x22\xe2\x64\x6d\xf8\xf5\x47\x1e\xff" "\x75\xc1\xec\x37\xfe\x6b\x7d\xcc\xfb\x2e\xc8\xf9\xbf\x50\x79\x3e\x8f" "\xf3\xff\x52\x6d\xbd\x6a\xfe\xe5\x6f\x8f\x72\xfe\xbd\x5d\xf9\x9f\xb9" "\xf5\xee\xcf\xce\xdc\x7c\xef\xfd\x57\xae\xbd\x7b\xf5\x9d\x8d\x77\x36" "\x7e\x72\xe1\xdc\xb9\xb3\x17\x2e\x5e\xbc\x74\xe9\xd2\x99\xb7\xaf\x5d" "\xdf\x38\x3b\xf9\xb7\xc5\x1e\xcf\x57\xce\x3f\x8f\x7d\xed\x3a\xd0\x6e" "\xc9\xf9\xe7\xcc\xe5\xdf\x2d\x39\xff\x2f\xa4\x5a\xfe\xdd\x92\xf3\xff" "\x62\xaa\xe5\xdf\x2d\x39\xff\xfc\x7e\x4f\xfe\xdd\x92\xf3\xcf\x9f\x7d" "\xe4\xdf\x2d\x39\xff\x97\x52\x2d\xff\x6e\xc9\xf9\x7f\x25\xd5\xf2\xef" "\x96\x9c\xff\xcb\xa9\x96\x7f\xb7\xe4\xfc\xbf\x9a\x6a\xf9\x77\x4b\xce" "\xff\x95\x54\xcb\xbf\x5b\x72\xfe\xa7\x53\x2d\xff\x6e\xc9\xf9\x9f\x49" "\xf5\x01\xf3\x5f\x99\x77\xbf\x68\x46\xce\x3f\x9f\xe1\x72\xfc\x77\x4b" "\xce\x3f\x5f\xd9\x20\xff\x6e\xc9\xf9\x9f\x4f\xb5\xfc\xbb\x25\xe7\x7f" "\x21\xd5\xf2\xef\x96\x9c\xff\xab\xa9\x96\x7f\xb7\xe4\xfc\xbf\x96\x6a" "\xf9\x77\x4b\xce\xff\x62\xaa\xe5\xdf\x2d\x39\xff\xaf\xa7\x5a\xfe\xdd" "\x92\xf3\xbf\x94\x6a\xf9\x77\x4b\xce\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc" "\xbf\x99\x6a\xf9\x77\x4b\xce\xff\xb5\x54\xcb\xbf\x5b\x72\xfe\xdf\x4a" "\xb5\xfc\xbb\x25\xe7\xff\xed\x54\xcb\xbf\x5b\x72\xfe\xdf\x49\xb5\xfc" "\xbb\x25\xe7\xff\x7a\xaa\xe5\xdf\x2d\x0f\xff\xfe\xbf\x19\x33\x66\xcc" "\xe4\x99\xb6\x7f\x32\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x75" "\x4d\x5c\x4e\xdc\xf6\x3e\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x66" "\xdf\xbc\x76\x42\x62\x20\xe4\xef\xe4\x6f\xc2\xc6\x31\x21\x24\x9b\xec" "\xda\x4e\xfc\x42\xeb\x62\xc2\x6b\xc3\x5b\x49\x08\x05\xda\x62\xbb\xde" "\xb5\x59\xea\x37\xbc\x76\x09\x34\xaa\x1d\x05\x4a\x24\x8c\x8a\x2a\xda" "\x86\x8b\xb6\x80\x50\x9b\x9b\x0a\xab\xa2\x12\xad\x00\xe5\x02\xb5\xaa" "\x54\x09\xda\x0b\x7a\x83\xa8\x50\xb9\x88\xaa\x80\x02\x52\xa5\xb6\x82" "\x6c\x35\x73\x9e\xe7\xd9\x99\xd9\xd9\x99\x5d\xef\x78\xf7\xcc\x39\x9f" "\x8f\x64\xff\xbc\x33\x67\xe6\x3c\xe7\xcc\x73\xce\xec\x6f\xd7\xdf\x39" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\xb3\xdb\xdf\x38\xfb\xe9\x5a\x96\x65\xb5\x5a\x2d\xbf" "\x61\x6b\x96\x5d\x5f\xaf\x9b\x27\xb6\x36\x6e\x79\xdd\xc6\x8e\x0f\x00" "\x00\x00\x58\xbb\x5f\x34\xfe\x7e\xe1\xc6\x74\xc3\xa1\x15\x3c\xa8\x69" "\x99\x7f\xbc\xed\x3b\x5f\x5b\x58\x58\x58\xc8\xde\x3f\xfc\xc7\xa3\x9f" "\x5f\x58\x88\xb7\xff\x60\x73\x96\x8d\x6e\xca\xb2\xc6\x7d\xd1\x95\x1f" "\x7e\xa0\xd6\xb4\x4c\xf4\x64\x36\x5e\x1b\x6a\xfa\x7a\xa8\xc7\xea\x87" "\x7b\xdc\x3f\xd2\xe3\xfe\xd1\x1e\xf7\x8f\xf5\xb8\x7f\x53\x8f\xfb\xc7" "\x7b\xdc\xbf\x64\x07\x2c\xb1\x39\xab\xa5\x27\xdb\xd9\xf8\xe7\xd6\x2c" "\xcb\x26\xb2\x2c\xbb\x29\x1b\x6d\xdc\xb7\xb3\xc3\xa3\x9e\xac\x6d\x1a" "\xaa\xef\xbb\xf4\xd8\xac\xd6\x78\xcc\xc2\xe8\xf1\x6c\x2e\x3b\x99\xcd" "\x66\xd3\x2d\xcb\xe7\xcb\xd6\x1a\xcb\x7f\xe3\xf6\xfa\xba\xde\x96\xc5" "\x75\x0d\x35\xad\x6b\x7b\x7d\x86\xfc\xf4\xf1\x63\x71\x0c\xb5\xb0\x8f" "\x77\xb6\xac\x6b\xf1\x39\xa3\x1f\xbf\x21\x9b\xf8\xd9\x4f\x1f\x3f\xf6" "\x97\xe7\x9f\xbf\xa5\x53\xed\xb9\x1b\x5a\x9e\x2f\x1f\xe7\x5d\x3b\xea" "\xe3\xfc\x64\xb8\x25\x1f\x6b\x2d\xdb\x94\xf6\x49\x1c\xe7\x50\xd3\x38" "\xb7\x77\x78\x4d\x86\x5b\xc6\x59\x6b\x3c\xae\xfe\xef\xf6\x71\xbe\xb0" "\xc2\x71\x0e\x2f\x0e\x73\x5d\xb5\xbf\xe6\xe3\xd9\x50\xe3\xdf\xdf\x6d" "\xec\xa7\x91\x5a\xd6\x61\x3f\x6d\x0f\xb7\xfd\xf7\x1d\x59\x96\x5d\x5a" "\x1c\x76\xfb\x32\x4b\xd6\x95\x0d\x65\x5b\x5a\x6e\x19\x5a\x7c\x7d\xc6" "\xf3\x19\x59\x7f\x8e\xfa\x54\x7a\x59\x36\xd2\x7d\x9e\x2e\xd4\x5a\xe6" "\xe9\xed\x2b\x98\xa7\xf5\x3a\xb3\xb3\x75\x9e\xb6\x1f\x13\xf1\xf5\xbf" "\x3d\x3c\x6e\x64\x99\x31\x34\xbf\x4c\x3f\x7e\x62\xac\xe9\x75\xff\xf9" "\xc2\xd5\xcc\xd3\xa8\xbe\xd5\xcb\x1d\x2b\xed\x73\xb0\xdf\xc7\x4a\x51" "\xe6\x60\x9c\x17\xdf\x6d\x6c\xf4\x53\x1d\xe7\xe0\xce\xb0\xfd\x8f\xdf" "\xb9\xfc\x1c\xec\x38\x77\x3a\xcc\xc1\xb4\xdd\x4d\x73\x70\x47\xaf\x39" "\x38\x34\x36\xdc\x18\x73\x7a\x11\x6a\x8d\xc7\x2c\xce\xc1\x5d\x2d\xcb" "\x0f\x37\xd6\x54\x6b\xd4\xe7\xee\xec\x3e\x07\xa7\xce\x9f\x3a\x3b\x35" "\xff\xf1\x4f\xdc\x3b\x77\xea\xe8\x89\xd9\x13\xb3\xa7\xf7\xec\xda\x35" "\xbd\x67\xef\xde\xfd\xfb\xf7\x4f\x1d\x9f\x3b\x39\x3b\x9d\xff\x7d\x95" "\x7b\xbb\xf8\xb6\x64\x43\xe9\x18\xd8\x11\xf6\x5d\x3c\x06\x5e\xd3\xb6" "\x6c\xf3\x54\x5d\xf8\xd2\xd8\x92\xf3\xef\xd5\x1e\x87\xe3\x5d\x8e\xc3" "\xad\x6d\xcb\xf6\xfb\x38\x1c\x69\xdf\xb8\xda\xfa\x1c\x90\x4b\xe7\x74" "\x7e\x6c\xbc\xb7\xbe\xd3\xc7\x2f\x0f\x65\xcb\x1c\x63\x8d\xd7\xe7\xee" "\xb5\x1f\x87\x69\xbb\x9b\x8e\xc3\x91\xa6\xe3\xb0\xe3\x7b\x4a\x87\xe3" "\x70\x64\x05\xc7\x61\x7d\x99\xb3\x77\xaf\xec\x7b\x96\x91\xa6\x3f\x9d" "\xc6\xb0\xfc\x7b\xc1\xda\xe6\xe0\xd6\xa6\x39\xd8\xfe\xfd\x48\xfb\x1c" "\xec\xf7\xf7\x23\x45\x99\x83\xe3\x61\x5e\x7c\xff\xee\xe5\xdf\x0b\xb6" "\x87\xf1\x3e\x35\xb9\xda\xef\x47\x86\x97\xcc\xc1\xb4\xb9\xe1\xdc\x53" "\xbf\x25\xff\x7e\xff\xc4\xf5\xd9\xf8\xfe\xc6\xbf\x3a\xcd\xcb\x5b\xeb" "\x77\x5c\x37\x96\x5d\x98\x9f\x3d\x77\xdf\x63\x47\xcf\x9f\x3f\xb7\x2b" "\x0b\x65\x5d\xbc\xbc\x69\xae\xb4\xcf\xd7\x2d\x4d\xdb\x94\x2d\x99\xaf" "\x43\xab\x9e\xaf\x87\xe6\x6e\x7b\xea\xd6\x0e\xb7\x6f\x0d\xfb\x6a\xfc" "\xde\xfa\x5f\xe3\xcb\xbe\x56\xf5\x65\xee\xbf\xaf\xfb\x6b\xd5\x78\x77" "\xeb\xbc\x3f\x5b\x6e\xdd\x9d\x85\xd2\x67\x61\x7f\x2e\x6c\x5a\xa7\xfd" "\xd9\xe9\xdd\xbc\xbe\x3f\xc7\xb2\xec\x0b\xdf\x7e\xe2\xe1\x6f\x3e\xfe" "\x85\x37\x2e\xbb\x3f\xeb\xfd\xe6\x27\xa7\xd6\xfe\xbd\x78\xea\x4b\x9b" "\xce\xbf\xa3\xcb\x9c\x7f\x63\xdf\xff\x62\xbe\xbe\xf4\x54\x4f\x0e\x8f" "\x8e\xe4\xc7\xef\x70\xda\x3b\xa3\x2d\xe7\xe3\xd6\x97\x6a\xa4\x71\xee" "\xaa\x35\xd6\xfd\xc2\xd4\xca\xce\xc7\xa3\xe1\xcf\x7a\x9f\x8f\x6f\xea" "\x72\x3e\xde\xd6\xb6\x6c\xbf\xcf\xc7\xa3\xed\x1b\x17\xcf\xc7\xb5\x5e" "\x3f\xed\x58\x9b\xf6\xd7\x73\x3c\xcc\x93\x93\xd3\xdd\xcf\xc7\xf5\x65" "\xb6\xed\x5e\xed\x9c\x1c\xe9\x7a\x3e\xbe\x23\xd4\x5a\xd8\xff\xaf\x0d" "\x9d\x42\xea\x8b\x9a\xe6\xce\x72\xf3\x36\xad\x6b\x64\x64\x34\x6c\xd7" "\x48\x5c\x43\xeb\x3c\xdd\xd3\xb2\xfc\x68\xe8\xcd\xea\xeb\x7a\x66\xf7" "\xd5\xcd\xd3\xbb\xee\xc8\x9f\x6b\x38\x6d\xdd\xa2\xf5\x9a\xa7\x13\x6d" "\xcb\xf6\x7b\x9e\xa6\x9f\x7d\x2d\x37\x4f\x6b\xbd\x7e\xfa\x76\x75\xda" "\x5f\xcf\xf1\x30\x2f\x6e\xda\xd3\x7d\x9e\xd6\x97\x79\xf6\xfe\xb5\x9f" "\x3b\x37\xc7\x7f\x36\x9d\x3b\xc7\x7a\xcd\xc1\xd1\xe1\xb1\xfa\x98\x47" "\xd3\x24\x6c\x9c\xef\xb3\x85\xcd\x71\x0e\xde\x97\x1d\xcb\xce\x64\x27" "\xb3\x99\xc6\xbd\x63\x8d\xf9\x54\x6b\xac\x6b\xf2\x81\x95\xcd\xc1\xb1" "\xf0\x67\xbd\xcf\x95\xdb\xba\xcc\xc1\xbb\xda\x96\xed\xf7\x1c\x4c\xef" "\x63\xcb\xcd\xbd\xda\xc8\xd2\x8d\xef\x83\xf6\xd7\x73\x3c\xcc\x8b\xa7" "\x1f\xe8\x3e\x07\xeb\xcb\xbc\x69\x5f\x7f\xbf\x77\xbd\x2b\xdc\x92\x96" "\x69\xfa\xde\xb5\xfd\xe7\x6b\xcb\xfd\xcc\xeb\xd6\xb6\xdd\x74\xad\xe6" "\xca\x48\x18\xe7\xb7\xf7\x75\xff\xd9\x6c\x7d\x99\x93\xfb\x57\xdb\x67" "\x76\xdf\x4f\xf7\x84\x5b\xae\xeb\xb0\x9f\xda\x8f\xdf\xe5\x8e\xa9\x99" "\x6c\x7d\xf6\xd3\xb6\x30\xce\xe7\xf7\x2f\xbf\x9f\xea\xe3\xa9\x2f\xf3" "\xf9\x03\x2b\x9c\x4f\x87\xb2\x2c\xbb\xf8\xd1\x07\x1b\x3f\xef\x0d\xbf" "\x5f\xf9\x9b\x0b\xdf\xfb\x5a\xcb\xef\x5d\x3a\xfd\x4e\xe7\xe2\x47\x1f" "\xfc\xc9\x4b\x8e\xff\xc3\x6a\xc6\x0f\xc0\xe0\x7b\x31\x2f\x5b\xf2\xf7" "\xba\xa6\xdf\x4c\xad\xe4\xf7\xff\x00\x00\x00\xc0\x40\x88\x7d\xff\x50" "\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xf1\x7f\x85\x27\xfa\x7f" "\x00\x00\x00\x28\x8d\xd8\xf7\x8f\x84\x9a\x54\xa4\xff\xdf\xf6\xa6\xe7" "\xe7\x5e\xbc\x98\xa5\x64\xfe\x42\x10\xef\x4f\xbb\xe1\xa1\x7c\xb9\x98" "\x71\x9d\x0e\x5f\x4f\x2c\x2c\xaa\xdf\xfe\xe0\x57\x66\xff\xeb\xef\x2f" "\xae\x6c\xdd\x43\x59\x96\xfd\xfc\xa1\xdf\xeb\xb8\xfc\xb6\x87\xe2\xb8" "\x72\x13\x61\x9c\x57\xde\xdc\x7a\xfb\x12\x5f\xbb\x77\x45\xeb\x3e\xf2" "\xe8\xc5\xb4\xde\xe6\xfc\xfa\x17\xc3\xf3\xc7\xed\x59\xe9\x34\xe8\x14" "\xc1\x9d\xce\xb2\xec\x1b\x37\x7e\xb6\xb1\x9e\x89\x0f\x5c\x6e\xd4\x67" "\x1f\x3a\xd2\xa8\x0f\x5f\x7a\xea\xc9\xfa\x32\x2f\x1c\xc8\xbf\x8e\x8f" "\x7f\xee\xe5\xf9\xf2\x7f\x16\xc2\xbf\x87\x8e\x1f\x6d\x79\xfc\x73\x61" "\x3f\xfc\x28\xd4\xe9\xb7\x77\xde\x1f\xf1\x71\x5f\xbd\xfc\xda\xed\xfb" "\xde\xb7\xb8\xbe\xf8\xb8\xda\x8e\x1b\x1a\x9b\xfd\xf4\x87\xf2\xe7\x8d" "\x9f\x93\xf3\xb9\x27\xf3\xe5\xe3\x7e\x5e\x6e\xfc\xdf\xfc\xcc\x33\x5f" "\xad\x2f\xff\xd8\xab\x3b\x8f\xff\xe2\x50\xe7\xf1\x3f\x13\x9e\xf7\x2b" "\xa1\xfe\xcf\x2b\xf3\xe5\x9b\x5f\x83\xfa\xd7\xf1\x71\x9f\x0a\xe3\x8f" "\xeb\x8b\x8f\xbb\xef\xcb\xdf\xea\x38\xfe\x2b\x9f\xce\x97\x3f\xfb\x96" "\x7c\xb9\x23\xa1\xc6\xf5\xdf\x15\xbe\xde\xf9\x96\xe7\xe7\x9a\xf7\xd7" "\x63\xb5\xa3\x2d\xdb\x95\xbd\x35\x5f\x2e\xae\x7f\xfa\x7b\x7f\xd8\xb8" "\x3f\x3e\x5f\x7c\xfe\xf6\xf1\x8f\x1f\xbe\xdc\xb2\x3f\xda\xe7\xc7\xb3" "\xff\x9a\x3f\xcf\x54\xdb\xf2\xf1\xf6\xb8\x9e\xe8\xef\xda\xd6\x5f\x7f" "\x9e\xe6\xf9\x19\xd7\xff\xcc\x1f\x1c\x69\xd9\xcf\xbd\xd6\x7f\xe5\xe1" "\xe7\x5e\x59\x7f\xde\xf6\xf5\xdf\xd3\xb6\xdc\xd9\x8f\xde\xdd\x58\xff" "\xe2\xf3\xb5\x7e\x62\xd3\x9f\x7f\xea\xb3\x1d\xd7\x17\xc7\x73\xe8\xaf" "\xcf\xb6\x6c\xcf\xa1\xf7\x84\xe3\x38\xac\xff\xe9\x0f\x85\xf9\x18\xee" "\xff\xdf\x2b\xf9\xf3\xb5\x7f\xba\xc2\x91\xf7\xb4\x9e\x7f\xe2\xf2\x5f" "\xdc\x7a\xb1\x65\x7b\xa2\xb7\xfd\x2c\x5f\xff\x95\xd7\x9f\x68\xd4\x4d" "\xe3\x9b\xb7\x5c\x77\xfd\x4b\x6e\xb8\xf4\xaa\xfa\xbe\xcb\xb2\xef\x6e" "\xca\x9f\xaf\xd7\xfa\x4f\xfc\xc5\x99\x96\xf1\x7f\xe9\xe6\x7c\x7f\xc4" "\xfb\x63\x46\xbf\x7d\xfd\xcb\x89\xeb\x3f\xf7\xb1\xc9\xd3\x67\xe6\x2f" "\xcc\xcd\xa4\xbd\xfa\xf8\x8d\x8d\xcf\xce\x79\x47\x3e\x9e\x38\xde\x1b" "\xc3\xb9\xb5\xfd\xeb\xc3\x67\xce\x7f\x78\xf6\xdc\xc4\xf4\xc4\x74\x96" "\x4d\x94\xf7\x23\xf4\xae\xda\x97\x43\xfd\x49\x5e\x2e\x75\x5f\x7a\x61" "\xc9\x19\xf4\xee\x47\xc3\xeb\x79\xeb\x9f\x7e\x63\xcb\x9d\xff\xf2\x99" "\x78\xfb\xbf\xbd\x37\xbf\xfd\xf2\xdb\xf3\xf7\xad\xd7\x84\xe5\x3e\x17" "\x6e\xdf\x1a\x5e\xbf\xd5\xad\x7f\xa9\xa7\x6f\xbf\xb9\x71\x7c\xd7\x9e" "\x0d\x23\x5c\x58\xfa\x79\xc1\x6b\xb1\x7d\xe7\x7f\xee\x5f\xd1\x82\x61" "\xfb\xdb\xbf\x2f\x88\xf3\xfd\xec\x2b\x3e\xdc\xd8\x0f\xf5\xfb\x1a\xef" "\x1b\xf1\xb8\x5e\xe3\xf8\x7f\x30\x93\x3f\xcf\xd7\xc3\x7e\x5d\x08\x9f" "\xcc\xbc\xe3\xe6\xc5\xf5\x35\x2f\x1f\x3f\x1b\xe1\xf2\x23\xf9\xf1\xbe" "\xe6\xfd\x17\x4e\x73\xf1\x75\xfd\xab\xf0\x7a\xbf\xf3\x47\xf9\xf3\xc7" "\x71\xc5\xed\xfd\x41\xf8\x3e\xe6\x5b\xdb\x5a\xcf\x77\x71\x7e\x7c\xfd" "\x62\x7a\x87\x8b\x43\x69\x7c\x8a\xc7\xa5\x70\x3e\xc9\x2e\xe5\xf7\x0f" "\x35\x2d\x54\x77\xf9\x85\x9b\x3b\x0e\x2f\x7e\x0e\x49\x76\xe9\x96\xc6" "\xd7\x7f\x94\x9e\xe7\x96\x55\x6d\xe6\x72\xe6\x3f\x3e\x3f\x75\x72\xee" "\xf4\x85\xc7\xa6\xce\xcf\xce\x9f\x9f\x9a\xff\xf8\x27\x0e\x9f\x3a\x73" "\xe1\xf4\xf9\xc3\x8d\xcf\xf2\x3c\xfc\x91\x5e\x8f\x5f\x3c\x3f\x6d\x69" "\x9c\x9f\x66\x66\xf7\xde\x9f\x35\xce\x56\x67\xf2\x72\x8d\x6d\xf4\xf8" "\xcf\x3e\x7a\x6c\x66\xdf\xf4\x9d\x33\xb3\xc7\x8f\x5e\x38\x7e\xfe\xd1" "\xb3\xb3\xe7\x4e\x1c\x9b\x9f\x3f\x36\x3b\x33\x7f\xe7\xd1\xe3\xc7\x67" "\x3f\xd6\xeb\xf1\x73\x33\x07\x77\xed\x3e\xb0\x67\xdf\xee\xc9\x13\x73" "\x33\x07\xf7\x1f\x38\xb0\xe7\xc0\xe4\xdc\xe9\x33\xf5\x61\xe4\x83\xea" "\x61\xef\xf4\xef\x4c\x9e\x3e\x77\xb8\xf1\x90\xf9\x83\xf7\x1f\xd8\xf5" "\xc0\x03\xf7\x4f\x4f\x9e\x3a\x33\x33\x7b\x70\xdf\xf4\xf4\xe4\x85\x5e" "\x8f\x6f\xbc\x37\x4d\xd6\x1f\xfd\xbb\x93\xe7\x66\x4f\x1e\x3d\x3f\x77" "\x6a\x76\x72\x7e\xee\x13\xb3\x07\x77\x1d\xd8\xbb\x77\x77\xcf\x4f\x03" "\x3c\x75\xf6\xf8\xfc\xc4\xd4\xb9\x0b\xa7\xa7\x2e\xcc\xcf\x9e\x9b\xca" "\xb7\x65\xe2\x7c\xe3\xe6\xfa\x7b\x5f\xaf\xc7\x53\x4e\xf3\xff\x9e\x7f" "\x3f\xdb\xae\x96\x7f\x10\x5f\xf6\xee\x7b\xf6\xa6\xcf\x67\xad\xfb\xca" "\x13\xcb\x3e\x55\xbe\x48\xdb\x07\x88\x3e\x1f\x3e\x8b\xe6\x9f\x5e\x7a" "\x76\xff\x4a\xbe\x8e\x7d\xff\x68\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8" "\x82\xd8\xf7\x8f\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x29" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf1\x50\x93\x8a\xf4\xff" "\xa5\xcb\xff\x6f\xbb\xb8\xa2\xf5\xcb\xff\xcb\xff\x37\xef\x2f\xf9\xff" "\x8a\xe5\xff\x1f\x29\x5a\xfe\x3f\x3f\x5f\xc8\xff\xf7\xc7\x5a\xf3\xf7" "\xf2\xff\x81\xfc\x7f\xbf\xf3\xff\xf1\xf9\xe5\xff\xaf\xa1\x8d\x1e\xff" "\x46\xe5\xff\x17\xc2\x1b\x92\xfc\x3f\x45\x54\xb4\xfc\x7f\xec\xfb\x37" "\x67\x59\x25\xfb\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x6f\x09\x35\xd1\xff" "\x03\x00\x00\x40\x69\xc4\xbe\xff\xba\x50\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\xaf\x0f\x35\xa9\x48\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff" "\x2f\xff\xdf\x79\xfd\xf2\xff\x83\x49\xfe\xbf\x3b\xf9\xff\x1e\xe4\xff" "\xa7\xb2\x6a\xe5\xff\x2f\xf5\x73\xfc\xae\xff\x2f\xff\xcf\x52\x45\xcb" "\xff\xc7\xbe\xff\x25\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf" "\x7f\x43\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x37\x86\x9a\xe8" "\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x35\xd4\xa4\x22\xfd\xbf\xfc\xbf" "\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xf5\xcb\xff\x0f\x26\xf9\xff\xee" "\xe4\xff\x7b\x90\xff\x77\xfd\x7f\xf9\x7f\xf9\x7f\xfa\xaa\x68\xf9\xff" "\xd8\xf7\xbf\x34\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x5f" "\x16\x6a\xa2\xff\x07\x00\x00\x80\xe2\x19\xb9\xba\x87\xc5\xbe\xff\xe5" "\xa1\x26\x4b\xfa\xff\xab\x5c\x01\x00\x00\x00\xb0\xe1\x62\xdf\x7f\x53" "\xd6\x16\x04\xaf\xc8\xef\xff\xe5\xff\xe5\xff\x8b\x9f\xff\xdf\x94\xee" "\x93\xff\x97\xff\xcf\x0a\x99\xff\x1f\xce\xe4\xff\x8b\x43\xfe\xbf\x3b" "\xf9\xff\x1e\xe4\xff\xe5\xff\xe5\xff\xe5\xff\xe9\xab\xa2\xe5\xff\x1b" "\x7d\x7f\x36\x9e\xbd\x22\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec" "\xfb\x6f\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xff\x85\x9a" "\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x2d\xd4\xa4\x22\xfd\xbf\xfc" "\xbf\xfc\xff\x46\xe7\xff\x47\xdb\xc6\xee\xfa\xff\x8b\x8f\x93\xff\xcf" "\x15\x3f\xff\xef\xfa\xff\x45\x22\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2" "\xff\xf2\xff\xf2\xff\xf4\x55\xd1\xf2\xff\xb1\xef\xbf\x25\xd4\xa4\x22" "\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x6f\x0d\x35\xd1\xff\x03\x00\x00" "\x40\x69\xc4\xbe\xff\xff\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf" "\xbf\x3d\xd4\xa4\x22\xfd\xbf\xfc\x7f\xc1\xf3\xff\x31\x39\x5a\xe2\xfc" "\x7f\xef\xeb\xff\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xaf\x9c\xfc\x7f\x77" "\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xd3\x57\x45\xcb\xff\xc7" "\xbe\xff\x95\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\x7f\x5b" "\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xaf\x0a\x35\xd1\xff\x03" "\x00\x00\x40\x69\xc4\xbe\x7f\x22\xd4\xa4\x22\xfd\xbf\xfc\x7f\xc1\xf3" "\xff\x79\x0e\x7e\xac\xcc\xd7\xff\x97\xff\x97\xff\x97\xff\x97\xff\xef" "\x27\xf9\xff\xee\xe4\xff\x7b\x08\xa7\xb9\x1f\x67\x59\x26\xff\x3f\xa8" "\xf9\xff\xf8\x95\xfc\xbf\xfc\x3f\x45\x50\xb4\xfc\x7f\xec\xfb\x6f\x0f" "\x35\x59\x45\xff\x5f\x1b\x59\xf9\xb2\x00\x00\x00\xc0\xfa\x8b\x7d\xff" "\x8e\x50\x93\x8a\xfc\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x77\x84\x9a" "\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x33\xd4\xa4\x22\xfd\xbf\xfc" "\xff\x40\xe4\xff\x33\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\x95\x91" "\xff\xef\x4e\xfe\xbf\x07\xd7\xff\x2f\x41\xfe\xdf\xf5\xff\x9b\xf2\xff" "\xf5\xa9\x25\xff\xcf\x86\x2a\x5a\xfe\x3f\xf6\xfd\xaf\x0e\x35\xa9\x48" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x3b\x43\x4d\xf4\xff\x00\x00\x00" "\x50\x1a\xb1\xef\x7f\x4d\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd" "\x77\x85\x9a\x54\xa4\xff\x97\xff\x97\xff\x97\xff\xef\x9c\xff\xaf\x85" "\xdc\xae\xfc\xbf\xfc\x7f\x24\xff\x3f\x18\xe4\xff\xbb\x93\xff\xef\x41" "\xfe\x5f\xfe\xbf\x5c\xf9\x7f\xd7\xff\x67\xc3\x15\x2d\xff\x1f\xfb\xfe" "\xd7\x86\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\xdd\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x13\x6a\xa2\xff\x07\x00\x00" "\x80\xd2\x88\x7d\xff\x64\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f" "\xd7\xff\x97\xff\xef\xbc\x7e\xf9\xff\xc1\x24\xff\xdf\x9d\xfc\x7f\x0f" "\xf2\xff\xf2\xff\xf2\xff\xd7\x26\xff\x3f\x24\xff\x5f\x55\x45\xcb\xff" "\xc7\xbe\xff\xde\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xbf" "\x2f\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xa9\x50\x13\xfd\x3f" "\x00\x00\x00\x94\x46\xec\xfb\xa7\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff" "\xcb\xff\xcb\xff\xaf\x2a\xff\xff\xaa\xc5\xe7\x95\xff\xcf\xc9\xff\x17" "\x8b\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\x6f\x78\xfe\x7f\xb4\x9c" "\xf9\x7f\xd7\xff\xaf\xac\xa2\xe5\xff\x63\xdf\xbf\x2b\xd4\x24\x35\x7e" "\x63\x57\xb1\x95\x00\x00\x00\x40\x91\xc4\xbe\x7f\x77\xa8\x49\x45\x7e" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x3d\xa1\x26\xfa\x7f\x00\x00\x00" "\x28\x8d\xd8\xf7\xdf\x1f\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f" "\xfe\xdf\xf5\xff\x3b\xaf\x5f\xfe\x7f\x30\xc9\xff\x77\xd7\xff\xfc\x7f" "\xdc\x44\xf9\x7f\xf9\x7f\xf9\x7f\xd7\xff\x97\xff\x67\xa9\xa2\xe5\xff" "\x63\xdf\xff\x40\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xef" "\x0d\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x5f\xa8\x89\xfe\x1f" "\x00\x00\x00\x4a\x23\xf6\xfd\xfb\x43\x4d\x2a\xd2\xff\xcb\xff\xcb\xff" "\xcb\xff\xcb\xff\xc7\xdb\x47\xdb\x96\x93\xff\x97\xff\x1f\x44\xf2\xff" "\xdd\xb9\xfe\x7f\x0f\xc5\xcb\xff\xbf\xbe\xf9\xe1\xeb\x99\xff\xaf\xaf" "\x4b\xfe\x5f\xfe\x5f\xfe\x9f\xd5\x7b\xe4\xf7\x9b\xbf\x2a\x5a\xfe\x3f" "\xf6\xfd\x07\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x75" "\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\x52\xa8\x49\xf7\xfe" "\x7f\xd3\xb5\x1d\x15\x00\x00\x00\xd0\x4f\xb1\xef\xff\xe5\x50\x93\x8a" "\xfc\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\x3b\xaf\x5f\xfe" "\x7f\x30\xc9\xff\x77\x27\xff\xdf\x43\xf1\xf2\xff\x2d\x5c\xff\xbf\xd8" "\xe3\x97\xff\x97\xff\x67\xa9\xa2\xe5\xff\x63\xdf\x7f\x30\xd4\xa4\x22" "\xfd\x3f\x00\x00\x00\x54\x41\xec\xfb\x7f\x25\xd4\x44\xff\x0f\x00\x00" "\x00\xa5\x11\xfb\xfe\xd7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf" "\x7f\x28\xd4\xa0\x53\x9c\x7b\x50\xfc\xed\xd6\x55\x2c\x2c\xff\x2f\xff" "\xbf\xc2\xfc\x7f\x5c\xa4\x20\xf9\xff\x71\xf9\x7f\xf9\xff\xd2\xe5\xff" "\xc7\xe2\xf3\xca\xff\xaf\x89\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff" "\xcb\xff\xcb\xff\xd3\x57\x45\xcb\xff\xc7\xbe\xff\x0d\xa1\x26\x7e\xff" "\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x07\x43\x4d\xf4\xff\x00\x00\x00\x50" "\x1a\xb1\xef\x7f\x63\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x6f" "\x0a\x35\xa9\x48\xff\x2f\xff\x2f\xff\xef\xfa\xff\xf2\xff\xf2\xff\x9d" "\xd7\xef\xfa\xff\x83\x49\xfe\xbf\x3b\xf9\xff\x1e\xe4\xff\xe5\xff\xe5" "\xff\xe5\xff\xe9\xab\xa2\xe5\xff\x63\xdf\xff\xe6\x50\x93\x8a\xf4\xff" "\x00\x00\x00\x50\x05\xb1\xef\x7f\x4b\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x23\xf6\xfd\x6f\x0d\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x6d" "\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\x37\x32\xff\x9f\xbb\x24\xff\x2f" "\xff\xdf\x20\xff\x2f\xff\xdf\x0f\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f" "\xff\x2f\xff\x2f\xff\x4f\x5f\x15\x2d\xff\x1f\xfb\xfe\x5f\x0d\x35\xa9" "\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x87\x42\x4d\xf4\xff\x00\x00" "\x00\x50\x1a\xb1\xef\x7f\x7b\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6" "\xfd\xef\x08\x35\xa9\x48\xff\x2f\xff\x2f\xff\xef\xfa\xff\x85\xc9\xff" "\xd7\x17\x93\xff\x97\xff\x97\xff\x5f\x23\xf9\xff\xee\x06\x2c\xff\xff" "\x8b\x1b\xc2\xed\xf2\xff\x39\xf9\xff\x62\x8f\x7f\xb5\xf9\xff\x91\xb6" "\xaf\xaf\x49\xfe\xff\x87\xcb\xe5\xff\x17\x36\xb5\x3f\x5e\xfe\x9f\x6b" "\xa1\x68\xf9\xff\xd8\xf7\xbf\x33\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54" "\x41\xec\xfb\xdf\x15\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xbb" "\x43\x4d\x9a\xfa\xff\xbe\xfe\xc7\x3b\x00\x00\x00\x60\xdd\xc5\xbe\xff" "\xd7\x42\x4d\x2a\xf2\xfb\x7f\xf9\xff\xfa\x38\x16\xd3\xcb\xf2\xff\xf2" "\xff\x8d\x1b\x5c\xff\x5f\xfe\x5f\xfe\x7f\x60\xc9\xff\x77\x37\x60\xf9" "\x7f\xd7\xff\x6f\x23\xff\x5f\xec\xf1\xbb\xfe\xbf\xfc\x3f\x4b\x15\x2d" "\xff\x1f\xfb\xfe\xf7\x84\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d" "\xff\xc3\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x3f\x12\x6a\xa2" "\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x7b\x43\x4d\x2a\xd2\xff\xcb\xff" "\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xf5\xcb\xff\x0f\x26\xf9\xff" "\xee\xe4\xff\x7b\x90\xff\x97\xff\x2f\x5a\xfe\xff\x3f\xe4\xff\x19\x6c" "\x45\xcb\xff\xc7\xbe\xff\xd1\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05" "\xb1\xef\x7f\x5f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xbf\x1e" "\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xfb\x43\x4d\x2a\xd2\xff" "\xcb\xff\x0f\x4a\xfe\x7f\x62\x40\xf3\xff\x4f\xc8\xff\x5f\xc3\xfc\xff" "\x6d\x37\xe4\xcb\xc9\xff\xcb\xff\xb3\x48\xfe\xbf\x3b\xf9\xff\x1e\xe4" "\xff\xe5\xff\x8b\x96\xff\x77\xfd\x7f\x06\x5c\xd1\xf2\xff\xb1\xef\xff" "\x40\xa8\xc9\xca\xfb\xff\xf1\x15\x2f\x09\x00\x00\x00\x5c\x43\x23\xcb" "\xde\x13\xfb\xfe\x0f\x86\x9a\x54\xe4\xf7\xff\x00\x00\x00\x50\x05\xb1" "\xef\xff\x8d\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x7f\x33\xd4" "\xa4\x22\xfd\xbf\xfc\xff\xa0\xe4\xff\x5d\xff\x3f\x93\xff\x77\xfd\xff" "\xb6\xed\x91\xff\x97\xff\xef\x64\xfd\xf2\xff\xf1\xcc\x23\xff\x2f\xff" "\x5f\xac\xfc\xff\xd6\x55\x6d\x70\xab\x8d\xce\xcf\xaf\xd5\x46\x8f\xbf" "\xba\xf9\xff\xfc\x9d\x51\xfe\x9f\x4e\x8a\x96\xff\x8f\x7d\xff\x6f\x85" "\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x87\x42\x4d\xf4\xff" "\x00\x00\x00\x30\x10\x3a\xfd\x9f\xec\x76\xb1\xef\x3f\x1c\x6a\xa2\xff" "\x07\x00\x00\x80\xd2\x88\x7d\xff\x91\x50\x93\x8a\xf4\xff\xf2\xff\xf2" "\xff\xf2\xff\x05\xcd\xff\xff\xc9\x8e\x7f\xfe\xfe\x77\xde\x75\x64\x97" "\xfc\xff\xaa\xf2\xff\xe7\x3e\x28\xff\x5f\x75\xeb\x7a\xfd\xff\xfa\xc1" "\xef\xfa\xff\xf2\xff\x05\xcb\xff\xaf\xc5\x46\xe7\xe7\xd7\x6b\xfc\xb5" "\x65\x2e\x0d\x26\xff\xef\xfa\xff\xf4\x5f\xd1\xf2\xff\xb1\xef\x3f\x1a" "\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xbf\x1d\x6a\xa2\xff" "\x07\x00\x00\x80\xd2\x88\x7d\xff\xb1\x50\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\x67\x42\x4d\x2a\xd2\xff\xcb\xff\xcb\xff\xcb\xff\x17\x34" "\xff\x3f\xc0\xd7\xff\x8f\xfb\xc3\xf5\xff\x5b\xf5\x2d\xff\x1f\x4f\xba" "\xf2\xff\x1d\xad\x6b\xfe\xff\x7d\x8b\x39\x71\xf9\xff\xd5\xe6\xff\xc7" "\x3a\xde\x2a\xff\x2f\xff\x3f\xc8\xe3\x97\xff\x97\xff\x67\xa9\xa2\xe5" "\xff\x63\xdf\x3f\x1b\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf4\xfd" "\x43\xc7\xf3\xba\x78\x87\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x27\x42" "\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xff\x70\xa8\x49\x45\xfa\x7f" "\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\x32\x5d\xff\x3f\x5b\xa7\xfc\x7f\x6d" "\xc4\xf5\xff\x8b\x4a\xfe\xbf\xbb\xe2\xe4\xff\x3b\x93\xff\x97\xff\x1f" "\xe4\xf1\xcb\xff\xcb\xff\xb3\x54\xd1\xf2\xff\xb1\xef\x9f\x0b\x35\xa9" "\x48\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x8f\x84\x9a\xe8\xff\x01\x00" "\x00\xe0\xff\xd8\xbb\x93\x27\xcb\xd2\xb2\x8e\xe3\x27\xbb\xab\xab\xb2" "\xa2\x0d\xc3\x9d\x0b\x37\x46\xb8\xf4\x4f\x60\x21\x6b\xdd\xe3\xc2\x85" "\x2e\x34\xc2\x11\x54\x54\x9c\xe9\x76\x1e\xd1\x56\x71\xd6\x56\x54\x9c" "\xc0\x01\x04\x5b\x54\x54\x9c\x01\x07\x14\x67\x50\x51\x71\x1e\x71\x42" "\x54\x8a\x20\xf3\x79\x9e\x9c\xce\xbd\x37\x33\xeb\x0e\xef\x79\xdf\xcf" "\x67\xd1\x8f\x95\x5d\x59\xf7\x5a\x51\x54\xf7\xaf\xaa\xbe\x7d\xba\x91" "\xbb\xff\x13\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x13\xe3\x96" "\x41\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xe7\x5f\xbf\xd9\xe7" "\xff\xeb\xff\xd7\xd2\xff\xaf\xa7\xff\xdf\x40\xff\xaf\xff\xd7\xff\xeb" "\xff\xd9\xaa\xd6\xfa\xff\xdc\xfd\x9f\x14\xb7\x0c\xb2\xff\x01\x00\x00" "\x60\x04\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xcf" "\x8b\x5b\xec\x7f\x00\x00\x00\x68\xdd\xbd\xeb\x7e\xc5\xdc\xfd\x9f\x1c" "\xb7\x0c\xb2\xff\xf5\xff\xfa\xff\x6e\xfb\xff\x0f\xd1\xff\xaf\x7a\x7d" "\xfd\xbf\xfe\xbf\x67\xfb\xe9\xff\x1f\xaf\xaf\xaf\xff\xd7\xff\xeb\xff" "\xcf\xe8\xff\xaf\xd3\xff\xbf\x7b\xe5\x8f\x49\xfd\x3f\x3d\x6a\xad\xff" "\xcf\xdd\xff\x29\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\x53" "\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xf9\x71\x8b\xfd\x0f\x00" "\x00\x00\xdd\xc8\xdd\xff\x69\x71\xcb\x20\xfb\xff\x52\xff\x7f\x34\x8d" "\xd9\xff\xd7\x7f\x2f\x42\xff\xdf\x51\xff\xef\xf9\xff\x2b\x5f\x5f\xff" "\xff\x10\xfd\xff\xa3\xfa\xff\xd6\xed\xf7\xf9\xff\x4f\xbe\xf7\x67\x3e" "\xfd\xbf\xfe\x5f\xff\x1f\xf4\xff\xd7\x7a\xfe\xff\xca\xff\x4e\x99\xfe" "\x9f\x1e\xb5\xd6\xff\xe7\xee\xff\xf4\xb8\x65\x90\xfd\x0f\x00\x00\x00" "\x23\xc8\xdd\xff\x19\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x82" "\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\xcc\xb8\x65\x90\xfd\xbf" "\xbd\xe7\xff\xdf\x3f\xf9\xf8\x42\xfb\xff\xb2\xb0\xfe\xff\xae\xfe\x5f" "\xff\xaf\xff\xdf\x73\xff\x7f\xe7\xec\xcb\xfa\xff\x36\xed\xb7\xff\xef" "\xe6\xf9\xff\x8f\x5c\xf9\x48\x07\xfd\xff\xf3\xdf\xfc\xf8\x73\xdf\xf1" "\xea\x0f\x78\xe6\x26\xaf\xaf\xff\xd7\xff\xef\xa1\xff\x5f\x49\xff\x4f" "\x8f\x5a\xeb\xff\x73\xf7\x7f\x56\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11" "\xe4\xee\xff\xec\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x9c\xb8" "\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\xdc\xb8\x65\x90\xfd\xbf\xbd" "\xfe\x7f\xd1\xcf\xff\x2f\x0b\xeb\xff\x3d\xff\x5f\xff\xaf\xff\xdf\x77" "\xff\xff\x1c\xcf\xff\x6f\x9d\xfe\x7f\xbd\x9d\x3f\xff\xff\xd1\x76\xfa" "\xff\xdb\xbc\xbe\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x5d\x87\xee\xff\xf3" "\x1b\xce\x2f\xe7\xee\xff\xbc\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8" "\xdd\xff\xf9\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xc2\xb8\xc5" "\xfe\x07\x00\x00\x80\x6e\xe4\xee\x7f\x22\x6e\x19\x64\xff\xeb\xff\x77" "\xdf\xff\xff\xbf\xfe\x5f\xff\x1f\x57\xff\xaf\xff\xd7\xff\xef\x9e\xfe" "\x7f\xbd\x9d\xf7\xff\x0d\x3d\xff\xff\x36\xaf\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\x6c\xd7\xa1\xfb\xff\xcb\x5f\xce\xdd\xff\x64\xdc\x32\xc8\xfe" "\x07\x00\x00\x80\x11\xe4\xee\xff\x82\xb8\xc5\xfe\x07\x00\x00\x80\x6e" "\xe4\xee\xff\xc2\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\xa2\xb8" "\x65\x90\xfd\xaf\xff\xf7\xfc\x7f\xfd\xbf\xfe\x5f\xff\x3f\xff\xfa\xfa" "\xff\x65\xd2\xff\xaf\xa7\xff\xdf\x40\xff\xff\xb0\xfd\xfc\x63\xfa\xff" "\x05\xf6\xff\xf1\x2f\x52\xfa\x7f\x76\xe1\x86\xfd\xff\xbb\xd6\xfc\xb4" "\xbd\x95\xfe\x3f\x77\xff\x17\xc7\x2d\x83\xec\x7f\x00\x00\x00\x18\x41" "\xee\xfe\x2f\x89\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x2f\x8d\x5b" "\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x2f\x8b\x5b\x06\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x7f\xeb\xfe\xff\xea\x0f\xbd\x13\xfa\xff\x79\xfa" "\xff\xfd\xd0\xff\xaf\xd7\x4c\xff\x7f\x74\x67\xf6\xc3\xfa\xff\xc5\xf7" "\xff\x9e\xff\xbf\xc4\xfe\x3f\xe8\xff\xd9\x85\xd6\x9e\xff\x9f\xbb\xff" "\xcb\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x57\xc4\x2d\x6b" "\xf6\xff\x8d\x7f\x31\x1f\x00\x00\x00\x38\xa8\xdc\xfd\x5f\x19\xb7\xf8" "\xfd\x7f\x00\x00\x00\x58\xbc\xac\xce\x72\xf7\x7f\x55\xdc\x32\xc8\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xcf\xff\x9f\x7f\xfd\x75\xfd\xff\x33" "\xe7\xde\x9f\xfe\xbf\x2d\xfa\xff\xf5\x9a\xe9\xff\x57\xd0\xff\xeb\xff" "\x97\xfc\xfe\xf5\xff\xfa\x7f\xae\x6a\xad\xff\xcf\xdd\xff\xd5\x71\xcb" "\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\x45\x71\x8b\xfd\x0f\x00\x00" "\x00\xdd\xc8\xdd\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff" "\xb5\x71\xcb\x20\xfb\x7f\xbe\xff\x3f\xfb\xfb\xfa\xff\xeb\xd1\xff\x5f" "\x7c\xff\xfa\xff\xf9\x1f\x1f\xdb\xea\xff\xf3\x5b\xd4\xff\xaf\xed\xff" "\x9f\xed\xf9\xff\x63\xd2\xff\xaf\xb7\xff\xfe\xff\x9e\xfe\xff\xe2\xb7" "\xaf\xff\xdf\xa1\x43\xbf\xff\xce\xfb\xff\xfb\x9b\x3e\x5f\xff\xcf\x9c" "\xd6\xfa\xff\xdc\xfd\x4f\xc5\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee" "\xfe\xaf\x8b\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\xaf\x8f\x5b\xec" "\x7f\x00\x00\x00\xe8\x46\xee\xfe\x6f\x88\x5b\x06\xd9\xff\x07\x7e\xfe" "\xff\x93\x77\x57\xbd\x2f\xfd\xff\x09\xfd\xbf\xfe\xdf\xf3\xff\xdb\x7c" "\xfe\xff\xb4\xf7\xfe\xff\x8e\xfe\xff\x9a\xf4\xff\xeb\x79\xfe\xff\x06" "\xfa\x7f\xfd\xbf\xfe\xdf\xf3\xff\xd9\xaa\xd6\xfa\xff\xdc\xfd\x2f\x8e" "\x5b\x06\xd9\xff\x00\x00\x00\x30\x82\x17\xbf\x73\x3a\xd9\xfd\xdf\x38" "\x4d\xf6\x3f\x00\x00\x00\x2c\xd1\xf9\x3f\x3b\x70\xf9\x0f\x94\x86\xdc" "\xfd\xdf\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xdf\x1c\xb7\x0c" "\xb2\xff\x0f\xdc\xff\xef\xea\xf9\xff\x8f\x6d\x7a\x6d\xfd\xbf\xfe\xff" "\xfc\xf7\x97\xfe\x5f\xff\x3f\xf7\xfa\x6d\xf5\xff\x9e\xff\x7f\x5d\xfa" "\xff\xf5\xf4\xff\x1b\xe8\xff\x77\xd1\xcf\xdf\xe9\xac\xff\x7f\x7a\xd5" "\xe7\xb7\xd0\xff\xbf\x50\xff\x4f\x63\x2e\xf4\xff\xaf\x3d\xfb\xf8\xa1" "\xfa\xff\xdc\xfd\xdf\x12\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb" "\xbf\x35\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xbf\x2d\x6e\xb1\xff" "\x01\x00\x00\xa0\x1b\xb9\xfb\xbf\x3d\x6e\x19\x64\xff\xef\xbc\xff\xbf" "\x1f\xf7\x8d\x1f\x77\xe5\xb5\x77\xd8\xff\x6f\xa4\xff\xd7\xff\x9f\xff" "\xfe\xd2\xff\xeb\xff\xe7\x5e\x5f\xff\xbf\x4c\xfa\xff\xf5\xf4\xff\x1b" "\xe8\xff\x3d\xff\xdf\xf3\xff\xf5\xff\x6c\xd5\x85\xfe\xff\x9c\x43\xf5" "\xff\xb9\xfb\xbf\x23\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\x7f" "\x67\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x3f\x1d\xb7\xd8\xff\x00" "\x00\x00\xd0\x8d\xdc\xfd\xdf\x15\xb7\x0c\xb2\xff\x3b\x7d\xfe\xff\x46" "\xfa\x7f\xfd\xff\xf9\xef\x2f\xfd\xbf\xfe\x7f\xee\xf5\xf5\xff\xcb\xa4" "\xff\x5f\x4f\xff\xbf\x81\xfe\x5f\xff\xaf\xff\xdf\xdc\xff\x5f\xfe\x07" "\x75\xd0\xff\x33\xa7\xb5\xfe\x3f\x77\xff\x77\xc7\x2d\x83\xec\x7f\x00" "\x00\x00\x18\x41\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77" "\xff\xf7\xc4\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\xf7\xc6\x2d\x83" "\xec\x7f\xfd\xff\x6e\xfb\xff\xfc\xb8\xfe\x5f\xff\x3f\xdd\xa4\xff\x8f" "\x4f\xd0\xff\x9f\xd2\xff\xeb\xff\x6f\x62\x69\xfd\xff\xe5\xff\xfd\xdc" "\xba\x5f\x3f\x9a\xfb\x27\xd1\x55\x2b\xfa\xff\x37\x7c\xec\x13\x1f\x76" "\xf1\x23\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\x6c\x41\x13\xfd\xff" "\x83\xb3\x7f\xbb\xcc\xdd\xff\x7d\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46" "\x90\xbb\xff\xa5\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xfd\x71" "\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x03\x71\xcb\x0d\xf7\xff\xfb" "\x6d\xf5\x5d\xed\x8f\xfe\xdf\xf3\xff\xf5\xff\x0d\xf6\xff\x41\xff\x7f" "\x4a\xff\xaf\xff\xbf\x89\xa5\xf5\xff\x97\x79\xfe\xbf\xfe\x5f\xff\xbf" "\xdc\xf7\xaf\xff\xd7\xff\x73\x55\x13\xfd\xff\xb9\x2f\xe7\xee\xff\xc1" "\xb8\xc5\xef\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x50\xdc\x62\xff\x03" "\x00\x00\x40\x37\x72\xf7\xff\x70\xdc\x62\xff\x03\x00\x00\x40\x37\x72" "\xf7\xbf\x2c\x6e\x19\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xfe\xf5\x6f\xdb\xff\x1f\x4f\xf3\xf4\xff\xfb\xa1\xff\x5f\x4f\xff\xbf" "\x81\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x55\xad\xf5\xff\xb9\xfb\x5f\x1e" "\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\x7f\x24\x6e\xb1\xff\x01" "\x00\x00\xa0\x1b\xb9\xfb\x7f\x34\x6e\xb1\xff\x01\x00\x00\x60\x49\x32" "\x1d\x9b\x95\xbb\xff\xc7\xe2\x96\x41\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f" "\x42\xff\xff\xbe\xf5\xed\xe8\xff\xdb\xef\xff\x57\xd1\xff\xef\xc7\x42" "\xfb\xff\xfa\x69\x70\xa9\xfd\xff\xa3\x4b\xea\xff\x5f\xb1\xe6\x0d\xcc" "\xf5\xff\x0f\xee\xe9\xff\xf5\xff\xfa\x7f\xfd\x3f\xb7\xd4\x5a\xff\x9f" "\xbb\xff\xc7\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x2b\xe2" "\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x95\x71\x8b\xfd\x0f\x00\x00" "\x00\xdd\xc8\xdd\xff\x13\x71\xcb\x20\xfb\x5f\xff\xaf\xff\xd7\xff\x2f" "\xa1\xff\xf7\xfc\xff\x45\xf7\xff\xa7\x3f\xbd\xea\xff\xf7\x64\xa1\xfd" "\x7f\x59\x6a\xff\xef\xf9\xff\xfa\xff\x49\xff\xaf\xff\xd7\xff\x33\xa3" "\xb5\xfe\x3f\x77\xff\xab\xe2\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77" "\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x27\xe3\x16\xfb" "\x1f\x00\x00\x00\xba\x91\xbb\xff\x99\xb8\x65\x90\xfd\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xfa\xff\xf9\xd7\xf7\xfc\xff\x65\xda\x5d\xff\x3f\x1d" "\xae\xff\x7f\xfb\x23\x37\xfd\x66\x56\xd2\xff\x6f\xa0\xff\xd7\xff\xeb" "\xff\xf5\xff\x6c\x55\x6b\xfd\x7f\xee\xfe\x9f\x8a\x5b\x06\xd9\xff\x00" "\x00\x00\x30\x82\xdc\xfd\xaf\x89\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee" "\xfe\x9f\x8e\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x9f\x89\x5b\x06" "\xd9\xff\x63\xf6\xff\x77\xf5\xff\x8b\xef\xff\x9f\x3a\x9e\x7b\xff\xfa" "\x7f\xfd\xff\xa4\xff\x1f\x9e\xe7\xff\xaf\xa7\xff\xdf\x40\xff\xaf\xff" "\xd7\xff\xeb\xff\xd9\xaa\xd6\xfa\xff\xdc\xfd\x3f\x1b\xb7\x0c\xb2\xff" "\x01\x00\x00\x60\x04\xb9\xfb\x5f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8d" "\xdc\xfd\x3f\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x3f\x1f\xb7" "\x0c\xb2\xff\xc7\xec\xff\x3d\xff\x7f\x75\xff\x3f\x4d\xcb\xe8\xff\x3d" "\xff\x7f\xd2\xff\xf7\xd0\xff\x1f\x4f\xfa\xff\xad\xd3\xff\xaf\x77\xbd" "\xfe\xff\xd9\x97\xfb\xff\xbb\xf9\x77\xda\xee\xff\xcf\x7e\xf6\xd0\xff" "\xdf\xce\xa1\xfb\xf9\x9d\xbd\xff\x47\xa6\x8e\xfa\xff\xfb\x2b\x3f\x5f" "\xff\x4f\x8b\x5a\xeb\xff\x73\xf7\xff\x42\xdc\x32\xc8\xfe\x07\x00\x00" "\x80\x11\xe4\xee\x7f\xdd\xc9\x2f\xa7\xda\xff\x00\x00\x00\xd0\x97\xd3" "\x3f\x3b\xf3\xba\x93\xbf\x1e\x4f\xbf\x18\xb7\xd8\xff\x00\x00\x00\xd0" "\xb2\x3b\x37\xf9\xca\xb9\xfb\x7f\x29\x6e\x19\x64\xff\x2f\xbf\xff\xbf" "\x77\xe9\x13\xf5\xff\xd3\x34\xbd\xe5\x05\xdd\x3f\xff\x5f\xff\x3f\xe9" "\xff\x7b\xe8\xff\xeb\x7b\x55\xff\xbf\x3d\xfa\xff\xf5\x3c\xff\x7f\x03" "\xfd\x7f\x9f\xfd\xbf\xe7\xff\xeb\xff\x39\x98\xd6\xfa\xff\xdc\xfd\xbf" "\x1c\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\x7f\x25\x6e\xb1\xff" "\x01\x00\x00\xa0\x1b\xb9\xfb\x7f\x35\x6e\xb1\xff\x01\x00\x00\xa0\x1b" "\xb9\xfb\x7f\x2d\x6e\x19\x64\xff\x2f\xbf\xff\xbf\xfc\x89\xfa\xff\xe9" "\xa1\x9e\xff\xaf\xff\x3f\xf9\x80\xfe\x5f\xff\xaf\xff\x5f\x2c\xfd\xff" "\x7a\xfa\xff\x0d\xf4\xff\x1b\xfb\xf9\xa3\x15\xff\xde\x33\xe9\xff\xf5" "\xff\xfa\x7f\x66\xb4\xd6\xff\xe7\xee\xff\xf5\xb8\x65\x90\xfd\x0f\x00" "\x00\x00\x23\xc8\xdd\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee" "\x7f\x43\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xbf\x31\x6e\x19\x64" "\xff\xeb\xff\xf5\xff\xfa\xff\x65\xf6\xff\xc7\x23\xf5\xff\xef\x7e\xf0" "\xe0\x81\xfe\x5f\xff\x7f\x4d\xad\xf4\xff\xcf\x7a\xd6\x87\xbe\x49\xff" "\xaf\xff\xef\xb1\xff\x5f\x47\xff\xaf\xff\xd7\xff\x73\x59\x6b\xfd\x7f" "\xee\xfe\xdf\x88\x5b\x06\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\xbf\x19" "\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xbf\x15\xb7\xd8\xff\x00\x00" "\x00\xd0\x8d\xdc\xfd\xbf\x1d\xb7\x0c\xb2\xff\xaf\xf6\xff\x8f\x4d\xa7" "\x85\xea\xa9\xb9\xfe\x3f\x1a\x35\xfd\xff\x39\xfa\xff\x8b\xef\x5f\xff" "\x3f\xff\xe3\xc3\xf3\xff\x3d\xff\x5f\xff\xbf\x7b\xad\xf4\xff\x9e\xff" "\x7f\xbb\xf7\xaf\xff\xd7\xff\x2f\xf9\xfd\xdf\xa8\xff\xff\xc0\xab\x9f" "\xaf\xff\xa7\x47\xad\xf5\xff\xb9\xfb\xdf\x14\xb7\x0c\xb2\xff\x01\x00" "\x00\x60\x04\xb9\xfb\x7f\x27\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb" "\x7f\x37\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xdf\x1c\xb7\x0c\xb2" "\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xe7\x5f\x5f\xff\xbf\x4c" "\xfa\xff\xf5\xf4\xff\x1b\xe8\xff\xf5\xff\x9e\xff\xff\xbc\x8f\x7e\x54" "\xff\xcf\xf6\xb4\xd6\xff\xe7\xee\xff\xbd\xb8\xe5\x64\xf8\x7d\xd0\xfb" "\xdc\xf2\xff\x4d\x00\x00\x00\xa0\x21\xb9\xfb\x7f\x3f\x6e\x19\xe4\xf7" "\xff\x01\x00\x00\x60\x04\xb9\xfb\xff\x20\x6e\xb1\xff\x01\x00\x00\xa0" "\x1b\xb9\xfb\xff\x30\x6e\x19\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\xfe\xf5\xf5\xff\xcb\xa4\xff\x5f\x4f\xff\xbf\xc1\x38\xfd\xff" "\xf1\xc5\x2f\x9e\x26\xaf\x87\xee\xe7\x1f\xd6\xa1\xdf\x7f\x37\xfd\xbf" "\xe7\xff\xb3\x45\xad\xf5\xff\xb9\xfb\xff\x28\x6e\x19\x64\xff\x03\x00" "\x00\xc0\x08\x72\xf7\xff\x71\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7" "\xff\x49\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xbf\x25\x6e\x19\x64" "\xff\xeb\xff\xf5\xff\xfd\xf7\xff\x1f\xa5\xff\xbf\xf4\xfa\xfa\x7f\xfd" "\x7f\xcf\xf4\xff\xf9\x4f\xf4\x79\xfa\xff\x0d\xc6\xe9\xff\x67\x1d\xba" "\x9f\x5f\xfa\xfb\x6f\xa4\xff\x7f\xe9\x47\xea\xff\x69\x48\x6b\xfd\x7f" "\xee\xfe\xb7\xc6\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x3f\x8d" "\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x3f\x8b\x5b\xec\x7f\x00\x00" "\x00\xe8\x46\xee\xfe\x3f\x8f\x5b\x06\xd9\xff\x07\xe9\xff\xa3\x86\xd4" "\xff\xef\xbf\xff\x3f\x9a\x46\xec\xff\x3d\xff\x5f\xff\xaf\xff\x1f\xc9" "\x72\xfa\xff\x97\xdc\x99\xfb\xa8\xe7\xff\xeb\xff\xf5\xff\xcb\x7d\xff" "\x8d\xf4\xff\x9e\xff\x4f\x53\x5a\xeb\xff\x73\xf7\xbf\xed\xe8\xce\x90" "\xfb\x1f\x00\x00\x00\x96\xea\xc3\x3f\xf8\xe3\xdf\x7a\xdd\xaf\xfb\xb6" "\x93\xbf\x1e\x4f\x7f\x11\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x7f" "\x19\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x7f\x15\xb7\x0c\xb2\xff" "\x3d\xff\x7f\xac\xfe\x7f\xcc\xe7\xff\xeb\xff\xf5\xff\xfa\xff\x91\x2c" "\xa7\xff\x9f\xa7\xff\xd7\xff\xeb\xff\x97\xfb\xfe\xf5\xff\xfa\x7f\xae" "\x6a\xad\xff\xcf\xdd\xff\xf6\xb8\xe5\xdc\xf0\x9b\xfd\x0f\xf4\x00\x00" "\x00\x00\x8b\x91\xbb\xff\xaf\xe3\x96\x41\x7e\xff\x1f\x00\x00\x00\x46" "\x90\xbb\xff\x6f\xe2\x96\x2b\xfb\xff\xc1\x35\xff\x54\x3b\x00\x00\x00" "\xd0\x9a\xdc\xfd\x7f\x1b\xb7\x0c\xf2\xfb\xff\xfa\xff\xc6\xfb\xff\x69" "\x47\xfd\x7f\x7c\x3d\xfd\xff\x29\xfd\xbf\xfe\x7f\xee\xf5\xf5\xff\xcb" "\xd4\x5b\xff\x7f\x6f\x6a\xaa\xff\x7f\x70\xa4\xff\xd7\xff\xaf\xa1\xff" "\xd7\xff\xeb\xff\xb9\xac\xb5\xfe\x3f\x77\xff\x6b\x5e\x35\x0d\xb9\xff" "\x01\x00\x00\xa0\x53\x17\x7e\x45\xe1\xef\x4e\xfe\x7a\x3c\xfd\x7d\xdc" "\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x43\xdc\x62\xff\x03\x00\x00" "\x40\x37\x72\xf7\xff\x63\xdc\x32\xc8\xfe\xd7\xff\x37\xde\xff\xdf\xea" "\xf9\xff\xf7\xeb\xff\xf2\xfc\xff\xc1\xfb\xff\x17\x1d\xcf\xbe\xbe\xfe" "\x5f\xff\xdf\xb3\x93\xfe\xfe\xec\x27\x95\xc5\xf7\xff\x9e\xff\x7f\xfa" "\x71\xfd\xff\x29\xfd\x7f\xdb\xef\x5f\xff\xaf\xff\xe7\xaa\x1b\xf4\xff" "\x27\x83\x74\xd7\xfd\x7f\xee\xfe\x7f\x8a\x5b\x06\xd9\xff\x00\x00\x00" "\x30\x82\xdc\xfd\xff\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xff" "\x12\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xff\x1a\xb7\x0c\xb2\xff" "\xf5\xff\x07\xe8\xff\x9f\xba\x37\x4d\x3b\xed\xff\xaf\xf1\xfc\xff\xf5" "\xfd\xff\xd1\x34\xe9\xff\xbb\xe8\xff\x57\xbc\x7e\x3f\xfd\xff\xfb\x3f" "\xfe\xc4\xeb\x3f\xe2\x63\x5e\xf9\x72\xfd\x3f\x67\xf6\xf9\xfc\xff\xfc" "\xb1\xa0\xff\xd7\xff\x1f\xa0\xff\x7f\x59\xfc\xf8\xd3\xff\x37\xf4\xfe" "\xf5\xff\xfa\x7f\xae\x6a\xed\xf9\xff\xb9\xfb\xff\x2d\x6e\xb9\xd1\xfe" "\x7f\xfa\xce\x4d\xbe\x36\x00\x00\x00\xb0\x5f\xb9\xfb\xdf\x11\xf7\x6e" "\xfe\x8d\x41\x7e\xff\x1f\x00\x00\x00\x46\x90\xbb\xff\xdf\xe3\x16\xfb" "\x1f\x00\x00\x00\xba\x91\xbb\xff\x3f\xe2\x96\x41\xf6\xbf\xfe\xbf\xc7" "\xe7\xff\x3f\x74\xff\x7f\x90\xe7\xff\xe7\xf7\xf5\x01\xfa\xff\x27\x96" "\xd7\xff\x67\x53\x3c\x7a\xff\xef\xf9\xff\xfa\xff\xab\xf6\xd9\xff\x7b" "\xfe\xbf\xfe\xdf\xf3\xff\x2f\xd2\xff\xeb\xff\xf5\xff\x5c\xd6\x5a\xff" "\x9f\xbb\xff\x3f\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x7f" "\xc5\x2d\xb9\xff\x8f\x6e\xfc\x4b\xf7\x00\x00\x00\x40\x63\x72\xf7\xff" "\x77\xdc\xe2\xf7\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xdf\x19\xb7\x2c\x7b" "\xff\x3f\x67\x63\x20\x14\xf4\xff\xfa\xff\x56\xfa\xff\xe4\xf9\xff\x67" "\x9f\xe7\xf9\xff\xa7\xf4\xff\xfa\xff\x9b\xd0\xff\xaf\xa7\xff\xdf\x40" "\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xaa\xd6\xfa\xff\xdc\xfd\xff\x13\xb7" "\x2c\x7b\xff\x03\x00\x00\x00\xe7\xe4\xee\x7f\x57\xdc\x62\xff\x03\x00" "\x00\x40\x37\x72\xf7\xff\x6f\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7" "\xff\x5f\xdc\x32\xc8\xfe\xd7\xff\x6f\xa5\xff\xbf\xaf\xff\xbf\xf8\xfe" "\xf5\xff\x17\xe9\xff\xe3\xc7\x83\xfe\x5f\xff\xbf\x07\xfa\xff\xf5\xf4" "\xff\xef\x75\x77\xf5\x1b\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xb6\xaa\xb5" "\xfe\x3f\x77\xff\x7b\x02\x00\x00\xff\xff\x61\x5f\x58\xa3", 25429); syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x200000000480, /*flags=MS_POSIXACL*/ 0x10000, /*opts=*/0x200000000340, /*chdir=*/-1, /*size=*/0x6355, /*img=*/0x2000000082c0); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }