// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000400, "jfs\000", 4); memcpy((void*)0x20000080, "./file0\000", 8); memcpy( (void*)0x20004b80, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\xfd\x07\xf0\xdf\x3e\x78\xfd\xd0\x7f\xd3" "\xa8\xfa\xab\x0a\x11\x17\x69\x0a\xa5\xa5\x34\xcf\x09\x94\xa7\xa6\x5c\x70" "\x01\x17\x20\xa1\x5c\x93\xc8\x75\xab\x40\x0a\x28\x09\x88\x56\x11\x71\x95" "\x0b\xc4\x0d\xf0\x12\xe0\xa6\x37\x5c\xf4\x8d\x94\xb7\x80\x78\x01\x44\x8a" "\xb9\xaa\x04\x65\xd0\xd8\xe7\x38\xe3\xf1\x3a\xeb\x90\x78\x67\xd7\xe7\xf3" "\x91\x9c\x99\xdf\x9e\x19\xef\x99\x7c\x3d\x9e\x5d\xcf\xcc\x9e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x7b\xdf\xfd\xd1\xd9\x5e" "\x44\x5c\xfd\x55\x7a\xe0\x68\xc4\xff\xc5\x20\xa2\x1f\xb1\x5c\xd7\x27\xa2" "\x9e\xb9\x9c\x97\x1f\x46\xc4\xb1\xd8\x6c\x8e\x17\x22\x62\xb0\x18\x51\xaf" "\xbf\xf9\xcf\x73\x11\x17\x22\xe2\x93\x23\x11\x0f\x36\xee\xac\xd6\x0f\x9f" "\xdb\x67\x3f\x2e\x9e\xb9\x7d\xf3\xb3\xef\x7f\xe7\x6f\xbf\xfd\xc3\xbd\x63" "\x3f\x79\xfb\xc7\x1f\xb5\xdb\x7f\xf8\xff\xe7\x3f\xfe\xdd\xdd\x88\xa3\x3f" "\x78\xe3\xe3\xcf\xee\x3e\x9d\x6d\x07\x00\x00\x80\x52\x54\x55\x55\xf5\xd2" "\xdb\xfc\xe3\xe9\xfd\x7d\xbf\xeb\x4e\x01\x00\x53\x91\x8f\xff\x55\x92\x1f" "\x57\xab\xd5\x6a\xf5\x53\xad\x7f\xdf\x9f\xad\xfe\xa8\x0b\xad\x9b\xaa\xf1" "\xee\x36\x8b\x88\x58\x6f\xae\x53\xbf\x66\x70\x3a\x1e\x00\xe6\xcc\x7a\x7c" "\xda\x75\x17\xe8\x90\xfc\x8b\x36\x8c\x88\x67\xba\xee\x04\x30\xd3\x7a\x5d" "\x77\x80\x03\xf1\x60\xe3\xce\x6a\x2f\xe5\xdb\x6b\x1e\x0f\x4e\x6c\xb5\xe7" "\xbf\x53\xee\xc8\x7f\xbd\xb7\x7d\x7f\xc7\x5e\xd3\x49\xda\xd7\x98\x4c\xeb" "\xe7\xeb\x5e\x0c\xe2\xf9\x3d\xfa\xb3\x3c\xa5\x3e\xcc\x92\x9c\x7f\xbf\x9d" "\xff\xd5\xad\xf6\x51\x5a\xee\xa0\xf3\x9f\x96\xbd\xf2\x1f\x6d\xdd\xfa\x54" "\x9c\x9c\xff\xa0\x9d\x7f\xcb\x8e\xfc\xff\x18\x11\x73\x9b\x7f\x7f\x6c\xfe" "\xa5\xca\xf9\x0f\x1f\x27\xff\xf5\xc1\x1c\xef\xff\xf2\x07\x00\x00\x00\x00" "\xe0\xf0\xcb\x7f\xff\x3f\xda\xf1\xf9\xdf\xc5\x27\xdf\x94\x7d\x79\xd4\xf9" "\xdf\x13\x53\xea\x03\x00\x00\x00\x00\x00\x00\x00\x3c\x6d\x4f\x3a\xfe\xdf" "\x36\xe3\xff\x01\x00\x00\xc0\xcc\xaa\xdf\xab\xd7\xfe\x74\xe4\xe1\x63\x7b" "\x7d\x16\x5b\xfd\xf8\x95\x5e\xc4\xb3\xad\xe5\x81\xc2\xa4\x9b\x65\x56\xba" "\xee\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x94\x64\xb8\x75\x0d\xef" "\x95\x5e\xc4\x42\x44\x3c\xbb\xb2\x52\x55\x55\xfd\xd5\xd4\xae\x1f\xd7\x93" "\xae\x3f\xef\x4a\xdf\x7e\x28\x59\xd7\xbf\xe4\x01\x00\x60\xcb\x27\x47\x5a" "\xf7\xf2\xf7\x22\x96\x22\xe2\x4a\xfa\xac\xbf\x85\x95\x95\x95\xaa\x5a\x5a" "\x5e\xa9\x56\xaa\xe5\xc5\xfc\x7a\x76\xb4\xb8\x54\x2d\x37\xde\xd7\xe6\x69" "\xfd\xd8\xe2\x68\x1f\x2f\x88\x87\xa3\xaa\xfe\x66\x4b\x8d\xf5\x9a\x26\xbd" "\x5f\x9e\xd4\xde\xfe\x7e\xf5\x73\x8d\xaa\xc1\x3e\x3a\x36\x1d\x1d\x06\x0e" "\x00\x11\xb1\x75\x34\x7a\xe0\x88\x74\xc8\x54\xd5\x73\xd1\xf5\xab\x1c\xe6" "\x83\xfd\xff\xf0\xb1\xff\xb3\x1f\x5d\xff\x9c\x02\x00\x00\x00\x07\xaf\xaa" "\xaa\xaa\x97\x3e\xce\xfb\x78\x3a\xe7\xdf\xef\xba\x53\x00\xc0\x34\x2c\xe5" "\xe3\x7f\xfb\xbc\x80\x5a\xad\x56\xab\xd5\xea\xc3\x57\x37\x55\xe3\xdd\x6d" "\x16\x11\xb1\xde\x5c\xa7\x7e\xcd\x60\x38\x7e\x00\x98\x33\xeb\xf1\x69\xd7" "\x5d\xa0\x43\xf2\x2f\xda\x30\x22\x8e\x75\xdd\x09\x60\xa6\xf5\xba\xee\x00" "\x07\xe2\xc1\xc6\x9d\xd5\x5e\xca\xb7\xd7\x3c\x1e\xa4\xf1\xdd\xf3\xb5\x20" "\x3b\xf2\x5f\xef\x6d\xae\x97\xd7\x1f\x37\x9d\xa4\x7d\x8d\xc9\xb4\x7e\xbe" "\xee\xc5\x20\x9e\xdf\xa3\x3f\x2f\x4c\xa9\x0f\xb3\x24\xe7\xdf\x6f\xe7\x7f" "\x75\xab\x7d\x94\x96\x3b\xe8\xfc\xa7\x65\xaf\xfc\xeb\xed\x3c\xda\x41\x7f" "\xba\x96\xf3\x1f\xb4\xf3\x6f\x39\x3c\xf9\xf7\xc7\xe6\x5f\xaa\x9c\xff\xf0" "\xb1\xf2\x1f\xc8\x1f\x00\x00\x00\x00\x00\x66\x58\xfe\xfb\xff\x51\xe7\x7f" "\xf3\x26\x03\x00\x00\x00\x00\x00\x00\xc0\xdc\x79\xb0\x71\x67\x35\xdf\xf7" "\x9a\xcf\xff\x7f\x7e\xcc\x72\xbd\xe6\x9c\xfb\x3f\x0f\x8d\x9c\x7f\x6f\xdf" "\xf9\xbb\xff\xf7\x30\xc9\xf9\xf7\xdb\xf9\xb7\x2e\xc8\x19\x34\xe6\xef\xbf" "\xf5\x30\xff\x7f\x6e\xdc\x59\xfd\xe8\xf6\x3f\x3e\x97\xa7\x33\x9f\xff\xc2" "\x60\x54\x3f\xf7\x42\xaf\x3f\x18\xa6\x6b\x7e\xaa\x85\x77\xe2\x7a\xdc\x88" "\xb5\x38\xb3\x6b\xf9\xe1\x8e\xf6\xb3\xbb\xda\x17\x76\xb4\x9f\x9b\xd0\x7e" "\x7e\x57\xfb\xa8\x6e\x5f\xce\xed\xa7\x62\x35\x7e\x1e\x37\xe2\xed\xed\xf6" "\xc5\x09\x17\x46\x2d\x4d\x68\xaf\x26\xb4\xe7\xfc\x07\xf6\xff\x22\xe5\xfc" "\x87\x8d\xaf\x3a\xff\x95\xd4\xde\x6b\x4d\x6b\xf7\x3f\xec\xef\xda\xef\x9b" "\xd3\x71\xcf\x73\xf9\x2f\xff\x7e\x79\xf7\xde\x35\x7d\xf7\x62\xb0\xbd\x6d" "\x4d\xf5\xf6\x9d\xec\xa0\x3f\x9b\xff\x27\xcf\x8c\xe2\x97\xb7\xd6\x6e\x9e" "\xfa\xf5\xb5\xdb\xb7\x6f\x9e\x8d\x34\xd9\xf1\xe8\xb9\x48\x93\xa7\x2c\xe7" "\xbf\x90\xbe\x72\xfe\xaf\xbc\xb4\xd5\x9e\x7f\xef\x37\xf7\xd7\xfb\x1f\x8e" "\x1e\x3b\xff\x59\x71\x2f\x86\x7b\xe6\xff\x52\x63\xbe\xde\xde\x57\xa7\xdc" "\xb7\x2e\xe4\xfc\x47\xe9\x2b\xe7\x9f\x8f\x40\xe3\xf7\xff\x79\xce\x7f\xef" "\xfd\xff\xb5\x0e\xfa\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x8f\x52\x55\xd5\xe6\x2d\xa2\x97\x23\xe2\x52\xba\xff\xa7\xab\x7b\x33\x01" "\x80\xa9\x1a\xe5\x99\x2a\x51\xab\xd5\x6a\xb5\x5a\x7d\x78\xeb\xa6\x6a\xbc" "\x37\x9b\x45\x2c\xed\x5c\xe7\x52\x44\xfc\x66\xdc\x37\x03\x00\x66\xd9\x7f" "\x22\xe2\xef\x5d\x77\x82\xce\xc8\xbf\x60\xf9\xf3\xfe\xea\xe9\x17\xba\xee" "\x0c\x30\x55\xb7\xde\xff\xe0\xa7\xd7\x6e\xdc\x58\xbb\x79\xab\xeb\x9e\x00" "\x00\x00\x00\x00\x00\x00\x00\xff\xab\x3c\xfe\xe7\x89\xc6\xf8\xcf\x9b\xd7" "\x01\xb5\xc6\x8d\xde\x31\xfe\xeb\x5b\x71\x62\x6e\xc7\xff\xec\x8f\x06\x9b" "\x63\x9d\xa7\x0d\x7a\x31\x1e\x3d\xfe\xf7\xc9\x78\xf4\xf8\xdf\xc3\x09\xcf" "\xb7\x30\xa1\x7d\x34\xa1\x7d\x71\x42\xfb\xd2\x84\xf6\xb1\x37\x7a\x34\xe4" "\xfc\x5f\x4c\x19\xe7\xfc\x8f\xa7\x0d\x2b\x69\xfc\xd7\x57\x3a\xe8\x4f\xd7" "\x72\xfe\x27\xd3\x58\xcf\x39\xff\x2f\xb5\x96\x6b\xe6\x5f\xfd\x79\x9e\xf3" "\xef\xef\xc8\xff\xf4\xed\xf7\x7e\x71\xfa\xd6\xfb\x1f\xbc\x7e\xfd\xbd\x6b" "\xef\xae\xbd\xbb\xf6\xb3\xb3\x67\x2e\x5d\x38\x7f\xf1\xc2\xf9\x8b\x17\x4f" "\xbf\x73\xfd\xc6\xda\x99\xad\x7f\x3b\xec\xf1\xc1\xca\xf9\xe7\xb1\xaf\x5d" "\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x31\xd5\xf2\x2f\x4b\xce" "\xff\xe5\x54\xcb\xbf\x2c\x39\xff\xfc\x7a\x4f\xfe\x65\xd9\xcc\xbf\x5a\xdc" "\x7e\xef\x23\xff\xb2\xe4\xfd\xff\xd5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a" "\xfe\x65\xc9\xf9\xbf\x96\x6a\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39" "\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\x4f\xa5\x5a\xfe\x65\xc9\xf9\x9f\x4e\xb5" "\xfc\xcb\x92\xf3\xcf\x67\xb8\xe4\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65\xc9" "\xf9\x9f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x9f\x6a\xf9\x97\x25\xe7\x7f\x21\xd5" "\xf2\x2f\x4b\xce\xff\x62\xaa\xe5\x5f\x96\x9c\xff\xa5\x54\xcb\xbf\x2c\x39" "\xff\xaf\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\x8d\x54" "\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b" "\xce\xff\x9b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76" "\xaa\xe5\x5f\x96\x9c\xff\x9b\xa9\x96\x7f\x59\x1e\x7e\xfe\xbf\x99\x29\xcf" "\xfc\xeb\xaf\x11\x33\xd0\x0d\x33\x66\xc6\xcd\x74\xfd\x9b\x09\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x68\x9b\xc6\xe5\xc4\x5d\x6f\x23\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x5f\x76\xe0\x40\x00\x00\x00\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xb0\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\xbd\xbb\x8b\x91\xeb\xac\xef\x07" "\x7e\xf6\xcd\x5e\x3b\x81\xf8\x4f\x42\x08\xc1\x90\xb5\xe3\x04\x43\x36\xde" "\x5d\xbf\x25\x26\x18\xcc\xeb\x3f\x0d\x2d\x4d\x03\xa1\xa5\x85\x3a\xc6\x5e" "\x3b\x06\xbf\xd5\xbb\x86\x04\xa1\x66\x69\x68\x0b\x02\xa9\x91\xda\x0b\x7a" "\x51\x0a\x88\x22\xa4\x16\x25\x42\x48\xa5\x12\x45\x91\x8a\xd4\xde\x95\x2b" "\x50\x6e\x50\x2b\x71\x61\xa9\x50\x99\x08\x2a\x51\x01\x5b\x9d\x39\xcf\xf3" "\xec\xcc\xec\xec\xcc\x7a\xed\xb5\xcf\xcb\xe7\x13\xc5\x3f\xef\xcc\x99\x99" "\x67\xce\x9c\x99\xdd\xef\x5a\xdf\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda\x6d\x7b\xdb\xec\x9f" "\x0f\x65\x59\x96\xff\xdf\xfa\x63\x4b\x96\xdd\x98\xff\x7d\x53\x76\x28\xff" "\x72\x61\xff\xf5\x5e\x21\x00\x00\x00\x70\xa5\x7e\xd5\xfa\xf3\x1f\x6e\x4a" "\x27\x1c\x5a\xc5\x85\xda\xb6\xf9\xd7\xd7\xfc\xfb\x37\x17\x17\x17\x17\xb3" "\x0f\xbd\x78\xf1\xd7\x7f\xb9\xb8\x98\xce\x98\xc8\xb2\x91\x8d\x59\xd6\x3a" "\x2f\xfa\xb7\x5f\xfc\x7c\xb1\x7d\x9b\xe0\xe9\x6c\x7c\x68\xb8\xed\xeb\xe1" "\x01\x37\x3f\x32\xe0\xfc\xd1\x01\xe7\x8f\x0d\x38\x7f\xc3\x80\xf3\x37\x0e" "\x38\x7f\x7c\xc0\xf9\xcb\x76\xc0\x32\x9b\x8a\xdf\xc7\xb4\xae\x6c\x47\xeb" "\xaf\x5b\x8a\x5d\x9a\xdd\x92\x8d\xb5\xce\xdb\xd1\xe3\x52\x4f\x0f\x6d\x1c" "\x1e\x8e\xbf\xcb\x69\x19\x6a\x5d\x66\x71\xec\x78\x76\x32\x3b\x95\xcd\x66" "\xd3\xcb\x2e\x33\xd4\xfa\x2f\xcb\xbe\xbd\x2d\xbf\xad\x07\xb3\x78\x5b\xc3" "\x6d\xb7\xb5\x35\xcb\xb2\x4b\x3f\xfd\xc4\xd1\xb8\x86\xa1\xb0\x8f\x77\x64" "\x1d\x37\xd6\xd2\xfe\xd8\xfd\xe4\x2d\xd9\xc4\x8b\x3f\xfd\xc4\xd1\xaf\xce" "\xff\xf8\x95\xbd\xe6\xc0\xdd\xb0\x6c\xa5\x59\xb6\x73\x7b\xbe\xce\x4f\x65" "\xd9\xd2\xaf\xab\xb2\xa1\x6c\x63\xda\x27\x71\x9d\xc3\x6d\xeb\xdc\xda\x63" "\x9d\x23\x1d\xeb\x1c\x6a\x5d\x2e\xff\x7b\xf7\x3a\x2f\xad\x72\x9d\xf1\x7e" "\x8f\x87\x75\x7e\xaf\xcf\x3a\xb7\x86\xd3\x9e\xb8\x33\xcb\xb2\x85\x6c\xc5" "\x6d\xba\x3d\x9d\x0d\x67\x9b\x3b\x8e\xbf\xe1\xa5\xfd\x3d\x5e\x1c\x11\xf9" "\x75\xe4\x0f\xe5\xcb\xb2\xd1\xcb\x3a\x4e\xb6\xad\xe2\x38\xc9\x2f\xf3\xa3" "\x3b\x3b\x8f\x93\xee\x63\x32\xee\xff\x6d\x61\x9f\x8c\xae\xb0\x86\xf6\x87" "\xe3\x27\x9f\xdc\xb0\x6c\xbf\xaf\xf5\x38\xc9\xef\x75\x19\x8e\xd5\xfc\xba" "\x1f\xce\x6f\x74\x7c\xbc\xfd\x57\xab\x1d\xc7\x6a\xbe\xcd\x27\xee\x5a\xf9" "\x18\xe8\xf9\xd8\x85\x63\xa0\xfd\x5e\xa4\x63\xb9\xed\x18\xd8\x3e\xe8\x18" "\x18\xde\x30\xd2\x3a\x06\x86\x97\xd6\xbc\xbd\xe3\x18\x98\x59\x76\x99\xe1" "\x6c\xa8\x75\x5b\x17\xef\xea\x7f\x0c\x4c\xcd\x9f\x3e\x37\x35\xf7\xe4\xc7" "\xef\x3d\x79\xfa\xc8\x89\xd9\x13\xb3\x67\x66\xa6\xf7\xef\xdd\xb3\x6f\xef" "\x9e\x7d\xfb\xa6\x8e\x9f\x3c\x35\x3b\x5d\xfc\x79\x79\xbb\xb4\x42\x36\x67" "\xc3\xe9\x18\xdc\x1e\x5e\x6b\xe2\x31\xf8\xda\xae\x6d\xdb\x0f\xc9\xc5\x2f" "\x5d\xbd\xe7\xc1\x78\x49\x9e\x07\xf9\x7d\x7f\xef\xdd\xf9\x82\x6e\x1c\xce" "\x56\x38\xc6\xf3\x6d\x3e\xb5\xf3\xca\x9f\x07\xe9\xfb\x7e\xdb\xf3\x60\xb4" "\xed\x79\xd0\xf3\x35\xb5\xc7\xf3\x60\x74\x15\xcf\x83\x7c\x9b\x4b\x3b\x57" "\xf7\x3d\x73\xb4\xed\xff\x5e\x6b\x58\xaf\xd7\xc2\x2d\x6d\xc7\xc0\xf5\xfc" "\x7e\x98\xdf\xe6\x07\x5e\xb7\xf2\x6b\xe1\xd6\xb0\xae\x4f\xbf\xfe\x72\xbf" "\x1f\x8e\x2c\x3b\x06\xe2\xdd\x1a\x0a\xcf\xbd\xfc\x94\xf4\xf3\xde\xf8\xfd" "\x61\xbf\x2c\x3f\x2e\x6e\xcf\xcf\xb8\x61\x43\x76\x61\x6e\xf6\xfc\xae\x27" "\x8e\xcc\xcf\x9f\x9f\xc9\xc2\xb8\x26\x6e\x6e\x7b\xac\xba\x8f\x97\xcd\x6d" "\xf7\x29\x5b\x76\xbc\x0c\x5f\xf6\xf1\x72\xe8\xef\x7f\x79\xf7\xed\x3d\x4e" "\xdf\x12\xf6\xd5\xf8\x3d\xfd\x1f\xab\x7c\x9b\xbd\x93\xfd\x1f\xab\xd6\xab" "\x7b\xe7\xfe\xdc\x90\x15\xfb\xb3\xe3\xd4\xdd\x59\x18\x57\xd9\xb5\xde\x9f" "\xbd\xbe\x9b\xe5\xfb\x33\x65\x89\x3e\xfb\x33\xdf\xe6\x53\xf7\xae\xed\x67" "\xc1\x25\xc3\x4b\x3f\x17\xb6\xbd\xfe\x8d\x0d\x7a\xfd\x1b\x19\x1b\x2d\x5e" "\xff\x46\xd2\xde\x18\xeb\x78\xfd\x5b\xfe\xd0\x8c\xb4\x56\x96\x65\x97\xee" "\x5d\xdd\xeb\xdf\x58\xf8\xff\x5a\xbf\xfe\xdd\x52\x92\xd7\xbf\x7c\x5f\x7d" "\x60\x57\xff\x63\x20\xdf\xe6\xd3\x53\x97\x7b\x0c\x8c\xf6\x7d\xfd\xbb\x33" "\xcc\xa1\xb0\x9e\xd7\x85\xc4\x30\xde\x96\xfb\x7f\xdd\x3a\x7f\xa1\x38\x4c" "\xdb\x1e\xcb\x81\xc7\xcd\xe8\xe8\x58\x38\x6e\x46\xe3\x2d\x76\x1e\x37\x7b" "\x96\x5d\x26\xbf\xb6\xfc\xb6\x77\x4e\xaf\xed\xb8\xd9\x79\x67\xe7\x63\xd5" "\xf1\x73\x4b\x0d\x8f\x9b\x7c\x5f\xfd\xd5\x74\xff\xe3\x26\xdf\xe6\xf9\x99" "\x2b\x7f\xed\xd8\x14\xff\xda\xf6\xda\xb1\x61\xd0\x31\x30\x36\xb2\x21\x5f" "\xef\x58\x3a\x08\x8a\xd7\xbb\xc5\x4d\xf1\x18\xd8\x95\x1d\xcd\xce\x66\xa7" "\xb2\x63\xe9\x32\xf9\xa3\x9c\xdf\xd6\xe4\xee\xd5\x1d\x03\x1b\xc2\xff\xd7" "\xfa\xb5\xe3\xb6\x92\x1c\x03\xf9\xbe\xfa\xfc\xee\xfe\xc7\x40\xbe\xcd\x77" "\xf7\x5c\xdd\x9f\x9d\x76\x86\x53\xd2\x36\x6d\x3f\x3b\x75\xff\x7e\x61\xa5" "\xcc\x7f\xfb\xe8\xd2\xf5\x75\xef\xb6\xab\x9d\xf9\xf3\x75\xbe\xfd\xfb\xef" "\x4e\xa7\xf5\xca\x10\xf9\x36\x3f\xde\x7b\xb9\x39\xa3\xff\x7e\xba\x27\x9c" "\x72\x43\x8f\xfd\xd4\xfd\xfc\x59\xe9\x98\x3e\x96\x5d\x9b\xfd\x74\x5b\x58" "\xe7\xa9\x7d\xfd\x7f\x37\x95\x6f\x73\xcb\xfe\x55\x1e\x4f\x87\xb2\x2c\x7b" "\x61\xe6\x85\xd6\xef\xbb\xc2\xef\x77\xbf\x71\xe1\xfb\xdf\xec\xf8\xbd\x6f" "\xaf\xdf\x29\xbf\x30\xf3\xc2\x43\x53\x8f\xfc\xe0\x72\xd6\x0f\x00\xc0\xda" "\xfd\xba\xf5\xe7\xc2\x86\xe2\x67\xcd\xb6\x7f\xb1\x5e\xcd\xbf\xff\x03\x00" "\x00\x00\x95\x10\x73\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff" "\x48\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x68\x98\x49\x43\xf2\xff" "\xe3\xf7\x1f\x78\xf6\x57\x4f\x65\xe9\xdd\x00\x17\x83\x78\x7e\xdc\x0d\x0f" "\xbf\xa9\xd8\x2e\x76\xbc\x17\xc2\xd7\x13\x8b\x4b\xf2\xd3\xdf\xfa\x95\xb1" "\x67\x3f\xf3\xd4\xea\x6e\x7b\x38\xcb\xb2\x5f\x3e\xf4\xaa\x9e\xdb\x3f\xfe" "\xa6\xb8\xae\xc2\xb9\xb8\xce\x37\x74\x9e\xbe\xcc\x6d\x77\xac\xea\xf6\x1f" "\x7b\x74\x69\xbb\xf6\xf7\x4f\xb8\x74\xa0\xb8\xfe\x78\x7f\x56\x7b\x18\xc4" "\xae\xf2\xb7\xa7\x76\xb7\xae\x77\xe2\xc9\x99\xd6\x7c\xfe\xa1\xac\x35\x1f" "\x59\xf8\xf4\xd3\xc5\xf5\x17\x5f\xc7\xed\x2f\xee\x29\xb6\xff\x9b\xf0\xa6" "\x25\x87\x8e\x0f\x75\x5c\x7e\x67\x58\xcf\x8e\x30\x27\xc2\x7b\xca\x3c\x7c" "\x68\x69\x3f\xe4\x33\x5e\xee\xd9\xad\xaf\xf9\x97\x9b\xdf\xb7\x74\x7b\xf1" "\x72\x43\xdb\x5f\xda\xba\x9b\x9f\xff\xe3\xe2\x7a\xe3\x7b\x44\x3d\x73\x73" "\xb1\x7d\xbc\xdf\x2b\xad\xff\x9f\x3f\xfb\xb5\x67\xf3\xed\x9f\xb8\xab\xf7" "\xfa\x9f\x1a\xee\xbd\xfe\x8b\xe1\x7a\x7f\x14\xe6\x2f\x0e\x16\xdb\xb7\xef" "\xf3\xcf\xb4\xad\xff\x4f\xc3\xfa\xe3\xed\xc5\xcb\xed\xfa\xf2\x77\x7a\xae" "\xff\xb9\x57\x14\xdb\x3f\x17\x8e\x8b\x2f\x86\xd9\xbd\xfe\xb7\xfc\xc5\xab" "\x7f\xd5\xeb\xf1\x8a\xb7\x73\xe8\x81\xe2\x72\xf1\xf6\xa7\xff\x67\x6f\xeb" "\x72\xf1\xfa\xe2\xf5\x77\xaf\x7f\xfc\xa9\x99\x8e\xfd\xd1\x7d\xfd\xcf\xbf" "\x58\x5c\xcf\xc1\x8f\xfe\x6c\xa4\x7d\xfb\x78\x7a\xbc\x9d\xe8\xb1\x07\x3a" "\x8f\xef\xa1\xf0\xf8\x76\xf4\xc8\xb3\x2c\xfb\xda\x9f\x65\x1d\xfb\x39\x7b" "\x63\x71\xb9\x7f\xea\x5a\x7f\xbc\xbe\x73\x0f\xf4\x5e\xff\x3d\x5d\xeb\x3c" "\x37\x74\x47\xeb\xf2\x4b\xf7\x67\x4b\xc7\xfd\xfa\xc2\xdf\xed\xee\x79\x7f" "\xe3\x7a\x0e\x7d\x7d\x4b\xc7\xfd\x79\xe6\x1d\x61\xff\xbd\x38\xf5\xdd\xfc" "\x7a\x2f\x3e\x12\x8e\xc7\x70\xfe\xff\x7e\xaf\xb8\xbe\xee\xf7\x32\x7d\xee" "\x1d\x9d\xaf\x37\x71\xfb\x2f\x6e\x29\x9e\xb7\xf1\xfa\xa6\xba\xd6\xff\x4c" "\xd7\xfa\x17\xee\xc8\xf7\xdd\xe0\xf5\x3f\xf8\x62\xb1\xfe\xe7\xde\xbc\xb1" "\x63\xfd\x87\xde\x19\x8e\xa7\x07\x8b\x39\x68\xfd\x27\xfe\xf6\xa6\x8e\xcb" "\x7f\xe9\xab\xc5\xe3\x71\xfe\x63\x93\x67\xce\xce\x5d\x38\x79\xac\x6d\xaf" "\xb6\x3f\x8f\x37\x8e\x6f\xda\x7c\xc3\x8d\x2f\x79\xe9\x4d\xe1\xb5\xb4\xfb" "\xeb\xc3\x67\xe7\x1f\x9f\x3d\x3f\x31\x3d\x31\x9d\x65\x13\x15\x7c\xcb\xc0" "\xf5\x5e\xff\x97\xc3\xfc\xef\x62\x2c\x5c\xfd\x5b\x28\xfc\xe0\x67\xc5\x71" "\xf7\xb9\x77\x15\xdf\xb7\x5e\xfb\xf3\xe2\xeb\x67\xc2\xe9\x8f\x85\xc7\x33" "\x7e\x7f\xfc\xc2\x5f\x8f\x75\x1c\xaf\xdd\x8f\xfb\xc2\x9b\x8b\x79\xa5\xeb" "\x7f\x7d\x58\xc7\x6a\xbd\xe2\xb3\xff\x79\xc7\xaa\x36\xbc\xf8\xc1\x6f\x5f" "\xf8\xc7\x3f\xf9\x71\xf7\xcf\x05\xf1\xfe\x9c\x7b\xf9\x78\xeb\xfe\x7d\x7e" "\xdb\xad\xad\xf3\x86\x9e\x2f\xce\xef\x7e\xbd\x1a\xe4\x3f\x5e\xde\xf9\xbc" "\xfe\xe1\xe8\x74\x6b\x7e\x2b\xec\xd7\xc5\xf0\xce\xcc\xdb\x6f\x2d\x6e\xaf" "\xfb\xfa\xe3\x7b\x93\x7c\xee\x3d\xc5\xf3\x37\xfe\x24\x17\x2f\x9f\x75\xbd" "\x9f\xc8\x96\x91\xce\xfb\x71\xa5\xeb\xff\x61\xf8\x39\xe6\x3b\xb7\x75\xbe" "\xfe\xc5\xe3\xe3\x5b\x4f\x75\xbd\x9b\xf3\x96\x6c\x28\x5f\xc2\x42\x78\x7d" "\xc8\x16\x8a\xf3\xe3\x56\x71\x7f\x7f\xee\xd2\xad\x3d\x6f\x2f\xbe\x0f\x4f" "\xb6\xf0\xca\xcb\x59\xe6\x8a\xe6\x9e\x9c\x9b\x3a\x75\xf2\xcc\x85\x27\xa6" "\xe6\x67\xe7\xe6\xa7\xe6\x9e\xfc\xf8\xe1\xd3\x67\x2f\x9c\x99\x3f\xdc\x7a" "\xef\xd2\xc3\x1f\x1e\x74\xf9\xa5\xe7\xf7\xe6\xd6\xf3\xfb\xd8\xec\xfe\xbd" "\x59\xeb\xd9\x7e\xb6\x18\xeb\xec\x7a\xaf\xff\xdc\xa3\x47\x8f\xdd\x37\x7d" "\xf7\xb1\xd9\xe3\x47\x2e\x1c\x9f\x7f\xf4\xdc\xec\xf9\x13\x47\xe7\xe6\x8e" "\xce\x1e\x9b\xbb\xfb\xc8\xf1\xe3\xb3\x1f\x1b\x74\xf9\x93\xc7\x0e\xce\xec" "\x3e\xb0\xe7\xbe\xdd\x93\x27\x4e\x1e\x3b\x78\xff\x81\x03\x7b\x0e\x4c\x9e" "\x3c\x73\x36\x5f\x46\xb1\xa8\x01\xf6\x4f\x7f\x64\xf2\xcc\xf9\xc3\xad\x8b" "\xcc\x1d\xdc\x7b\x60\x66\xdf\xbe\xbd\xd3\x93\xa7\xcf\x1e\x9b\x3d\x78\xdf" "\xf4\xf4\xe4\x85\x41\x97\x6f\x7d\x6f\x9a\xcc\x2f\xfd\xd1\xc9\xf3\xb3\xa7" "\x8e\xcc\x9f\x3c\x3d\x3b\x39\x77\xf2\xe3\xb3\x07\x67\x0e\xec\xdf\xbf\x7b" "\xe0\xbb\x3f\x9e\x3e\x77\x7c\x6e\x62\xea\xfc\x85\x33\x53\x17\xe6\x66\xcf" "\x4f\x15\xf7\x65\x62\xbe\x75\x72\xfe\xbd\x6f\xd0\xe5\x69\x86\xb9\xb3\xe1" "\xf5\xae\xcb\x50\xf8\xe9\xfc\xfd\xf7\xec\x4f\xef\x8f\x9b\xfb\xca\x27\x57" "\xbc\xaa\x62\x93\xce\x1f\x4f\xb3\x9f\x84\xf7\x82\x8a\xdf\xdf\x06\x7d\x1d" "\x73\xff\x58\x98\x49\x43\xf2\x3f\x00\x00\x00\x34\x41\xcc\xfd\xe1\x8d\xff" "\x97\xce\x90\xff\x01\x00\x00\xa0\x36\x62\xee\xdf\x18\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\x5f\x24\xff\xf1\xf4\xf1\xef\x4d\xc9\xff\x57\xab\xff" "\xff\x49\xfd\xff\x16\xfd\x7f\xfd\xff\x4c\xff\x3f\xd1\xff\xd7\xff\xcf\xf4" "\xff\xf5\xff\x07\xd0\xff\xd7\xff\xaf\xf2\xfa\xf5\xff\xf5\xff\x19\xac\x6c" "\xfd\xff\x90\xfb\xb3\x4d\x59\xe6\xdf\xff\x01\x00\x00\xa0\xa6\x62\xee\xdf" "\x1c\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x43\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\x8d\x61\x26\x0d\xc9\xff\x3e\xff\x5f\xff\x5f\xff" "\xbf\x5f\xff\x3f\x6e\xab\xff\x9f\xe9\xff\x97\xa1\xff\xbf\xe3\xbf\xf4\xff" "\x97\xd1\xff\xd7\xff\xcf\xf4\xff\xd7\xec\x7a\xf7\xe7\xab\xbe\xfe\x12\xf6" "\xff\x37\xe9\xff\x53\x36\x65\xeb\xff\xc7\xdc\xff\x92\x30\x93\x86\xe4\x7f" "\x00\x00\x00\x68\x82\x98\xfb\x5f\x1a\x66\x22\xff\x03\x00\x00\x40\x6d\xc4" "\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x96\x30\x93\x86" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\x5f\x99\xfe\xbf\xcf\xff" "\xef\x41\xff\x5f\xff\x3f\xd3\xff\x5f\xb3\xeb\xdd\x9f\xaf\xfa\xfa\x4b\xd8" "\xff\xf7\xf9\xff\x94\x4e\xd9\xfa\xff\x31\xf7\xff\xbf\x30\x93\x86\xe4\x7f" "\x00\x00\x00\x68\x82\x98\xfb\x5f\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4" "\xdc\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x2d\x61\x26\x0d" "\xc9\xff\xcd\xec\xff\xff\x28\xcb\x32\xfd\xff\x4c\xff\x5f\xff\xbf\x6b\x9d" "\xfa\xff\x57\xd2\xff\x1f\xce\x32\xfd\xff\x9e\xf4\xff\xf5\xff\xfb\xd1\xff" "\xd7\xff\xaf\xf2\xfa\xf5\xff\xf5\xff\x19\xac\x6c\xfd\xff\x98\xfb\x5f\x1e" "\x66\xd2\x90\xfc\x0f\x00\x00\x00\x4d\x10\x73\xff\xad\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\xaf\x08\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee" "\xbf\x2d\xcc\xa4\x21\xf9\xbf\x99\xfd\x7f\x9f\xff\xaf\xff\x5f\xd0\xff\xef" "\x5c\xa7\xfe\xbf\xcf\xff\x5f\x0f\xfa\xff\xfa\xff\xfd\xe8\xff\xeb\xff\x57" "\x79\xfd\xfa\xff\xfa\xff\x0c\x56\xb6\xfe\x7f\xcc\xfd\xaf\x0c\x33\x69\x48" "\xfe\x07\x00\x00\x80\x26\x88\xb9\xff\xf6\x30\x13\xf9\x1f\x00\x00\x00\x6a" "\x23\xe6\xfe\x57\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x6f\x0d\x33" "\x69\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x4f\xd5" "\xea\xff\x0f\xaf\x78\x8e\xfe\x7f\x41\xff\xbf\xd3\xd5\xeb\xff\x2f\x2c\x2d" "\x40\xff\xbf\x32\xeb\xd7\xff\xd7\xff\x67\xb0\xb2\xf5\xff\x63\xee\x7f\x75" "\x98\x49\x43\xf2\x3f\x00\x00\x00\x34\x41\xcc\xfd\xaf\x09\x33\x91\xff\x01" "\x00\x00\xa0\x36\x62\xee\xbf\x23\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\x7f\x22\xcc\xa4\x21\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x7f\x3d\x55\xab\xff\xbf\x32\xfd\xff\x82\xfe\x7f\x27\x9f\xff\xaf\xff\xaf" "\xff\xaf\xff\x4f\x7f\x65\xeb\xff\xc7\xdc\xbf\x2d\xcc\xa4\x21\xf9\x1f\x00" "\x00\x00\x9a\x20\xe6\xfe\xed\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd" "\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xef\x08\x33\x69\x48\xfe" "\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x4f\xfa\xff\xfa\xff" "\xfd\xe8\xff\xeb\xff\x57\x79\xfd\xfa\xff\xfa\xff\x0c\x56\xb6\xfe\x7f\xcc" "\xfd\x77\x85\x99\x34\x24\xff\x03\x00\x00\x40\x13\xc4\xdc\x7f\x77\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8d\x98\xfb\x77\x86\x99\x34\x24\xff\xeb\xff\xeb\xff\xeb\xff\x57\xb8\xff" "\x3f\xa2\xff\x9f\xe9\xff\x97\x9e\xfe\xbf\xfe\x7f\x3f\xfa\xff\xfa\xff\x55" "\x5e\xbf\xfe\xbf\xfe\x3f\x83\x95\xad\xff\x1f\x73\xff\xeb\xc2\x4c\x1a\x92" "\xff\x01\x00\x00\xa0\x09\x62\xee\x7f\x7d\x98\x89\xfc\x0f\x00\x00\x00\xb5" "\x11\x73\xff\x3d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x93\x61\x26" "\x0d\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x15\xee\xff\xfb\xfc\xff\x8e\xf5\xeb" "\xff\x97\x93\xfe\xbf\xfe\x7f\x3f\xfa\xff\xfa\xff\x55\x5e\xbf\xfe\xbf\xfe" "\x3f\x83\x95\xad\xff\x1f\x73\xff\xbd\x61\x26\x0d\xc9\xff\x00\x00\x00\xd0" "\x04\x31\xf7\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x9f\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x9f\x0e\x33\x69\x48\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x4f\xfa\xff\xfa\xff\xfd\xe8\xff" "\xeb\xff\x57\x79\xfd\xfa\xff\xfa\xff\x0c\x56\xb6\xfe\x7f\xcc\xfd\x33\x61" "\x26\x0d\xc9\xff\x00\x00\x00\xd0\x04\x31\xf7\xef\x0e\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\xdf\x13\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf" "\x37\xcc\xa4\x21\xf9\xbf\x22\xfd\xff\x5d\xa9\x00\xa5\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\x5f\x29\xfa\xff\xfa\xff\xfd\xe8\xff\xeb\xff\x57\x79\xfd" "\xfa\xff\xfa\xff\x74\x1a\xee\x71\x5a\xd9\xfa\xff\x31\xf7\xef\x0b\x33\x69" "\x48\xfe\x07\x00\x00\x80\x26\x88\xb9\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00" "\xb5\x11\x73\xff\x7d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xf7\x87" "\x99\x34\x24\xff\x57\xa4\xff\xef\xf3\xff\xf5\xff\xf5\xff\xdb\xe8\xff\xeb" "\xff\x57\x89\xfe\xbf\xfe\x7f\x3f\xfa\xff\xfa\xff\x55\x5e\xbf\xfe\xbf\xfe" "\x3f\xc9\x8a\xb1\xa9\x6c\xfd\xff\x98\xfb\x0f\x84\x39\xf8\x1e\x00\x00\x00" "\x00\x55\x13\x73\xff\x1b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x1f" "\x08\x33\x91\xff\x01\x00\x00\xa0\x52\x7a\x7d\x0e\x61\x14\x73\xff\x1b\xc3" "\x4c\x1a\x92\xff\xf5\xff\xeb\xde\xff\x5f\xdc\xa8\xff\xaf\xff\xaf\xff\xdf" "\x7f\xfd\xfa\xff\xeb\x4b\xff\x5f\xff\xbf\x1f\xfd\x7f\xfd\xff\x2a\xaf\x5f" "\xff\x5f\xff\x9f\xc1\xca\xd6\xff\x8f\xb9\xff\x60\x98\x49\x43\xf2\x3f\x00" "\x00\x00\x34\x41\xcc\xfd\x6f\x0a\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee" "\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xa1\x30\x93\x86\xe4" "\x7f\xfd\xff\xba\xf7\xff\x7d\xfe\xbf\xfe\xbf\xfe\xff\xa0\xf5\xeb\xff\xaf" "\x2f\xfd\x7f\xfd\xff\x7e\xf4\xff\xab\xd9\xff\x0f\x3f\xb6\xe8\xff\x97\xa8" "\xff\x9f\x1f\x43\xfa\xff\x94\x51\xd9\xfa\xff\x31\xf7\xbf\x25\xcc\xa4\x21" "\xf9\x1f\x00\x00\x00\x9a\x20\xe6\xfe\xb7\x86\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xed\x61" "\x26\x0d\xc9\xff\xfa\xff\x95\xef\xff\x6f\xca\xf4\xff\xf5\xff\xf5\xff\xf5" "\xff\x4b\x4c\xff\x7f\xdd\xfa\xff\xad\x97\x42\xfd\xff\x82\xfe\xff\xda\x5c" "\xef\xfe\x7c\xd5\xd7\x5f\xa6\xfe\xbf\xcf\xff\xa7\xac\xca\xd6\xff\x8f\xb9" "\xff\x1d\x61\x26\x0d\xc9\xff\x00\x00\x00\xd0\x04\x31\xf7\xbf\x33\xcc\x44" "\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xff\x87\x99\xc8\xff\x00\x00\x00\x50" "\x1b\x31\xf7\x3f\x18\x66\xd2\x90\xfc\xaf\xff\x5f\xf9\xfe\xbf\xcf\xff\xd7" "\xff\xd7\xff\xd7\xff\x2f\x35\xfd\x7f\x9f\xff\xdf\x8f\xfe\xbf\xfe\x7f\x95" "\xd7\xaf\xff\xaf\xff\xcf\x60\x65\xeb\xff\xc7\xdc\xff\x1b\x61\x26\x0d\xc9" "\xff\x00\x00\x00\xd0\x04\x31\xf7\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x6d" "\xc4\xdc\xff\xae\x30\x13\xf9\x1f\x00\x00\x00\x2a\x66\xc3\x8a\xe7\xc4\xdc" "\xff\x9b\x61\x26\x0d\xc9\xff\xd5\xeb\xff\x4f\x54\xb2\xff\x3f\x9c\xae\x5f" "\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xff\x6a\x5a\x4b\x7f\xfe\xeb\x6b\xb8" "\x1d\xfd\xff\x82\xfe\x7f\x27\xfd\xff\x2a\xf7\xff\xe3\xd1\xa2\xff\xaf\xff" "\xcf\x7a\x2a\x5b\xff\x3f\xe6\xfe\xdf\x0a\x33\x69\x48\xfe\x07\x00\x00\x80" "\x26\x88\xb9\xff\xdd\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xbf\x1d" "\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\x70\x98\x49\x43\xf2\xff\xd5" "\xee\xff\x77\x5f\xbe\x1f\x9f\xff\xaf\xff\x9f\xe9\xff\xeb\xff\xeb\xff\xeb" "\xff\x5f\x21\x9f\xff\xaf\xff\x9f\xe9\xff\xaf\x59\xb3\xfb\xff\x3e\xff\x5f" "\xff\x9f\x6b\xa1\x6c\xfd\xff\x98\xfb\x7f\x27\xcc\xa4\x21\xf9\x1f\x00\x00" "\x00\x9a\x20\xe6\xfe\x47\xc2\x4c\xe4\x7f\x00\x00\x00\x28\xa9\xc7\x2f\xfb" "\x12\x31\xf7\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xbd\x61" "\x26\x0d\xc9\xff\xd5\xfb\xfc\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\x2a\xd1\xff\xd7\xff\xef\x47\xff\x5f\xff\xbf\xca\xeb\xd7\xff\xd7\xff\x67" "\xb0\xb2\xf5\xff\x63\xee\x7f\x34\xcc\xa4\x21\xf9\x1f\x00\x00\x00\x9a\x20" "\xe6\xfe\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xff\x6e\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xef\x85\x99\x34\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x27\xfd\xff\xe5\xfd\xff\xfc\x35" "\x4c\xff\xbf\xa0\xff\xaf\xff\x5f\xe5\xf5\xeb\xff\xeb\xff\x33\x58\xd9\xfa" "\xff\x31\xf7\xbf\x3f\xcc\xa4\x21\xf9\x1f\x00\x00\x00\x9a\x20\xe6\xfe\xdf" "\x0f\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\x83\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\x0f\x84\x99\x34\x24\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xaf\xa7\x72\xf6\xff\x87\x46\x2f\xf7\x76\x7c\xfe" "\x7f\xa1\xe2\xfd\xff\x45\xfd\xff\x4e\xd7\xbb\x3f\x5f\xf5\xf5\xeb\xff\xeb" "\xff\x33\x58\xd9\xfa\xff\x31\xf7\x7f\x30\xcc\xa4\x21\xf9\x1f\x00\x00\x00" "\x9a\x20\xe6\xfe\x3f\x0c\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x3f\x1c" "\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\x58\x98\x49\x43\xf2\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x99\xfb\xff\xf9\x15\xea\xff\xf7\x53" "\xc5\xcf\xff\xd7\xff\x5f\xe2\xf3\xff\xf5\xff\xab\xbc\x7e\xfd\x7f\xfd\x7f" "\x06\x2b\x5b\xff\x3f\xe6\xfe\x23\x61\x26\x87\x3a\x6f\x06\x00\x00\x00\xa8" "\xae\x98\xfb\x3f\x14\x66\xd2\x90\x7f\xff\x07\x00\x00\x80\x26\x88\xb9\xff" "\x68\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xb1\x30\x93\x86\xe4\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x32\xf7\xff\x7d\xfe\xff\x20\xfa" "\xff\xfa\xff\x99\xfe\xff\x9a\x5d\xef\xfe\x7c\xd5\xd7\xaf\xff\xaf\xff\xcf" "\x60\x65\xeb\xff\xc7\xdc\x3f\x1b\x66\xd2\x90\xfc\x0f\x00\x00\x00\x4d\x10" "\x73\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x13\x61\x26\xf2" "\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x8f\x87\x99\x34\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\x37\xb6\xff\xff\xbd\x6f\x74\xad\x53\xff\x5f\xff\x7f\x3d\xe8\xff" "\xeb\xff\xf7\xa3\xff\xaf\xff\x5f\xe5\xf5\xeb\xff\xeb\xff\x33\x58\xd9\xfa" "\xff\x31\xf7\x9f\x0c\x33\x69\x48\xfe\x07\x00\x00\x80\x26\x88\xb9\xff\xc3" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x1f\x09\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\x3f\x15\x66\xd2\x90\xfc\xaf\xff\xaf\xff\xaf\xff\xdf" "\xd8\xfe\xff\xea\x3e\xff\x7f\xd3\xd2\xed\xea\xff\xeb\xff\xaf\x85\xfe\xbf" "\xfe\x7f\x3f\xfa\xff\xfa\xff\x55\x5e\xbf\xfe\xbf\xfe\x3f\x83\x95\xad\xff" "\x1f\x73\xff\xe9\x30\x93\x86\xe4\x7f\x00\x00\x00\x68\x82\x98\xfb\xcf\x84" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x9f\x0d\x33\x91\xff\x01\x00\x00" "\xa0\x36\x62\xee\x3f\x17\x66\xd2\x90\xfc\xaf\xff\x7f\x79\xfd\xff\xa1\x15" "\xba\x81\xfa\xff\xbd\xd7\xaf\xff\x5f\x83\xfe\x7f\x1b\xfd\x7f\xfd\xff\xb5" "\xd0\xff\xd7\xff\xef\x47\xff\x5f\xff\xbf\xca\xeb\xd7\xff\xd7\xff\x67\xb0" "\xb2\xf5\xff\x63\xee\xff\xa3\x30\x93\x86\xe4\x7f\x00\x00\x00\x68\x82\x98" "\xfb\xcf\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xcf\x85\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xcf\x87\x99\x34\x24\xff\xeb\xff\xfb\xfc\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xf5\xa4\xff\xaf\xff\xdf\x8f\xfe\xbf\xfe" "\x7f\x95\xd7\xaf\xff\xaf\xff\xff\x7f\xec\xdd\xe7\x8e\x5e\x67\xd5\xc7\xe1" "\x27\xce\xeb\xc4\xd6\x2b\xce\x21\xa7\xc0\x01\x20\x0e\x81\x23\xe0\x03\x12" "\xa7\x40\x0b\xcd\xa1\x87\x0e\xa1\xf7\x16\x7a\x33\x3d\x84\xde\x7b\xef\xbd" "\xf7\x40\xe8\xa1\x48\xa0\xcc\xac\xb5\x8c\xc7\x33\x7b\xcf\xd8\xf3\x78\xf6" "\xbe\xd7\x75\x7d\xc8\x02\x87\x24\xb7\x15\xf3\xe1\xaf\xe4\xa7\xcd\xbc\xa5" "\xf5\xff\xb9\xfb\x1f\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x07" "\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x83\xe2\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\xc1\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\x36\xe9\xff\xf5\xff\x53\x0e\xea\xff\xcf\x6e\x36\x1b\xfd" "\xff\xa5\xf4\xff\xcb\x7a\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x1f" "\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x1b\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xa1\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xb0\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9b" "\xf4\xff\xfa\xff\x29\xbe\xff\xaf\xff\x5f\xf3\xfb\xf5\xff\xfa\x7f\xe6\x2d" "\xad\xff\xcf\xdd\xff\xf0\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f" "\x22\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x19\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\xe7\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\xb0" "\xff\xff\x3f\xfd\xbf\xfe\x7f\x3d\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a" "\xdf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x9b\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xa8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\x7f\x74\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x26\x6e\x69\xb2\xff" "\xf5\xff\xfa\x7f\xfd\xff\x0a\xfb\x7f\xdf\xff\xd7\xff\xaf\x88\xfe\x5f\xff" "\x3f\x45\xff\xaf\xff\x5f\xf3\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd" "\xff\xd8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2e\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x4f\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xb7\x49\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xfd\xfa\x7f\xfd\x3f\xf3" "\xb6\xde\xff\xdf\xe7\xe6\x9d\x7b\xd8\xfe\x3f\x77\xff\xcd\x71\x4b\x93\xfd" "\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x62\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x1c\xb7\x34\xd9" "\xff\xfa\x7f\xfd\xff\x85\xfe\xff\x3f\xd7\xe8\xff\xf5\xff\xfa\xff\x0b\x3f" "\xae\xff\x3f\x1e\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xef\xd7\xff\xeb" "\xff\x99\xb7\xf5\xfe\x7f\xa6\xf7\xdf\xfb\xdf\x73\xf7\x3f\x25\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x4f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\xa7\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd3\xe3\x96\x26" "\xfb\x5f\xff\xaf\xff\xf7\xfd\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4d\xfa\xff\xc5" "\xf6\xff\x7b\xff\xaf\x77\x31\xfd\xff\xa1\xe8\xff\xf5\xff\x07\xf5\xff\xf7" "\x3e\xc4\xfb\xf5\xff\x74\xb0\xb4\xfe\x3f\x77\xff\x33\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x15\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\x71\xff\x7f\xaa\x65\xff\x7f\xf7\x8f\xe9" "\xff\xb7\x43\xff\xbf\xd8\xfe\x7f\x9a\xfe\xff\x50\xf4\xff\xfa\x7f\xdf\xff" "\xd7\xff\x33\x6d\x69\xfd\x7f\xee\xfe\x67\xc7\x2d\x4d\xf6\x3f\x00\x00\x00" "\x74\x90\xbb\xff\x39\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xdc\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5e\xdc\xd2\x64\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xff\x15\x7d\xff\xff\xda\x31\xfa\x7f\xdf\xff\xdf\x1e\xfd" "\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xf7\xeb\xff\xf5\xff\xcc\x5b\x5a\xff" "\x9f\xbb\xff\xf9\x71\x4b\x93\xfd\x0f\x00\x00\x00\xc3\x3b\xb5\xa9\xdd\xff" "\x82\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x61\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x28\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xff\x8a\xfa\xff\x41\xbe\xff\xaf\xff\xdf\x1e\xfd\xbf\xfe\x7f\xca\x61\xfb" "\xff\x8d\xfe\xbf\x7e\x2e\xfa\xff\xe5\xbc\x5f\xff\xaf\xff\x67\xde\xd2\xfa" "\xff\xdc\xfd\x2f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x4b\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xa5\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xb2\xb8\xa5\xc9\xfe\xd7\xff\x1f\x67\xff\x7f\x8d\xfe\x5f" "\xff\x7f\xd1\x9f\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\x7c\xff\x5f" "\xff\xbf\xe6\xf7\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\xe5\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\xbf\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x15\xb7" "\xec\xdd\xff\xa7\xae\xe6\xab\xae\x1e\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\x36\xe9\xff\xf5\xff\x53\xf4\xff\xfb\xf7\xff\x67\x0e\xf8\xeb" "\xe9\xff\x97\xf5\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xdf\x1a\xb7" "\xf8\xe7\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8e\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x6b\xe3" "\x96\x26\xfb\xff\xa0\xfe\xff\xce\xff\xdf\xfd\xfd\xfa\xff\xc3\xd1\xff\xef" "\xff\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7\xe8\xff\x7d\xff" "\x7f\xcd\xef\xef\xd3\xff\x9f\xde\xf7\x8f\xd7\xff\x73\x18\x4b\xeb\xff\x73" "\xf7\xbf\x2e\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xaf\x8f\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x37\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x1b\xe3\x96\x26\xfb\xff\xf8\xbf\xff\x7f\x83\xfe\x5f\xff\xaf\xff" "\x8f\xab\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x69\xfa\x7f\xfd\xff\x9a\xdf" "\xdf\xa7\xff\xdf\x9f\xfe\x9f\xc3\x58\x5a\xff\x9f\xbb\xff\x4d\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x73\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1a\xb7\x34" "\xd9\xff\xc7\xdf\xff\xfb\xfe\xbf\xfe\xff\x88\xfd\xff\x29\xfd\x7f\xd2\xff" "\xc7\xdf\x57\xfd\xbf\xfe\xff\x08\xf4\xff\xfa\xff\x8d\xfe\xff\xb2\x9d\x74" "\x3f\xbf\xf6\xf7\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\xfc\xce\xd4" "\xeb\xb7\xff\x01\x00\x00\xa0\x83\xf3\x3b\xbf\x3d\xb3\x79\x5b\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x3d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\xdf\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x89\xf7\xff\xbe\xff\x5f\xf4" "\xff\xf1\xf7\x55\xff\xaf\xff\x3f\x02\xfd\xbf\xfe\x7f\xa3\xff\xbf\x6c\x27" "\xdd\xcf\xaf\xfd\xfd\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee\x7f\x67\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x15\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xd8\xfd\xbb\xff\xf2\xbb\xfd\x0f\x00\x00\x00\x43\x7a\xf7\xce\x6f" "\xcf\x6c\xde\x13\xb7\x34\xd9\xff\x8d\xfb\xff\x1b\xae\xb4\xff\x3f\xfb\x3f" "\xff\x59\xff\xbf\xff\xfb\xf5\xff\xc7\xd2\xff\x9f\xdf\xfb\x6b\x4f\xff\xaf" "\xff\x5f\x13\xfd\xbf\xfe\x7f\x8a\xfe\xff\xe4\xfb\xff\x73\x1b\xfd\xff\xfa" "\xfb\xff\xf8\x81\x73\xfa\x7f\x96\x67\x69\xfd\x7f\xee\xfe\xdb\xe2\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xde\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xbf\x3d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x17\xb7\x34" "\xd9\xff\x8d\xfb\xff\x41\xbe\xff\x7f\xbf\x3b\xe2\x05\xfa\xff\x71\xfb\x7f" "\xdf\xff\x8f\xab\xff\xd7\xff\xef\x47\xff\xaf\xff\xdf\xe8\xff\x2f\xdb\x49" "\xf7\xf3\x6b\x7f\xff\x72\xfa\x7f\xdf\xff\x67\xb9\x96\xd6\xff\xe7\xee\x7f" "\x7f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x10\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\x1f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\x0f\xc5\x2d\x4d\xf6\xbf\xfe\x7f\xed\xfd\xbf\xef\xff\xeb\xff\xf5\xff\xfa" "\xff\x65\xd3\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\xbf\xfe\x5f\xff\xcf" "\xbc\xa5\xf5\xff\xb9\xfb\x3f\x1c\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee" "\xfe\x8f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x47\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\x63\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x6f\xab" "\xff\xbf\xfb\x2f\xa2\xff\x6f\xd2\xff\xdf\xa4\xff\xdf\xe8\xff\x0f\xa4\xff" "\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff" "\x73\xf7\x7f\x3c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x9f\x88\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xa7\xe2\x86\x7b\xde\xe3\xe4\x9e\x74\xbc\x4e\x1f\xf0\xe3\xd1" "\x9b\xeb\xff\xf5\xff\xbe\xff\xaf\xff\xf7\xfd\x7f\xfd\xff\x36\xe9\xff\xf5" "\xff\x53\xf4\xff\xfa\xff\x35\xbf\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc" "\xfd\x9f\x8e\x5b\xfc\xf3\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc4\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x67\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x73\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x57\xdb\xff\x9f\xd5" "\xff\x5f\xfc\x7e\xfd\xff\x32\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\xbf" "\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x9f\x8f\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x17\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\x8b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa5\xb8\xa5\xc9\xfe\xd7" "\xff\xeb\xff\xf5\xff\xab\xed\xff\x7d\xff\x7f\xcf\xfb\xf5\xff\xcb\xa4\xff" "\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff" "\x73\xf7\x7f\x39\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x89\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\xd7\xe2\x96\x26\xfb\x5f\xff\x7f\x5c\xfd\xff\x5d\x3b\x57\xff" "\xaf\xff\xdf\x8c\xde\xff\xdf\x78\xfd\x66\x2f\xfd\xff\x2e\xfd\xff\xfe\xf4" "\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\xdf\xaf\xff\xd7\xff\x33\x6f\x69\xfd" "\x7f\xee\xfe\xaf\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x1b\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcd\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\xff\x56\xdc\xd2\x64\xff\x8f\xdc\xff\x4f\xfd\xcf\x7c\xff\x7f" "\xd7\x09\xf6\xff\xf7\xba\x2d\xfe\x1c\xfa\xff\x0b\x7f\xdc\x2a\xfa\x7f\xdf" "\xff\xd7\xff\x1f\x91\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xfb\xf5\xff" "\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\xed\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\x7f\x27\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x1b\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xdf\x8b\x5b\x9a\xec\xff\x91\xfb\xff" "\x29\xfa\xff\x5d\xbe\xff\xaf\xff\xdf\xe8\xff\xf5\xff\x5b\xa6\xff\xd7\xff" "\x4f\xd1\xff\xeb\xff\xd7\xfc\x7e\xfd\xbf\xfe\x9f\x79\x27\xd4\xff\x9f\xde" "\x1c\xd0\xff\xe7\xee\xff\x7e\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x7f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x8c\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x1f\xc5\x2d\xe3\xec\xff\xfb\xdf\x3e\xf1\x3b\xf5" "\xff\xc7\xde\xff\xef\xfc\x22\xd2\xff\xeb\xff\x37\xfa\x7f\xfd\xbf\xfe\x7f" "\x87\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xfb\xf5\xff\xfa\x7f\xe6\x2d" "\xed\xfb\xff\xb9\xfb\x7f\x1c\xb7\x8c\xb3\xff\x01\x00\x00\xa0\xbd\xdc\xfd" "\x3f\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x9f\xc6\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\xcf\xe2\x96\x26\xfb\x5f\xff\xef\xfb\xff\xfa\xff" "\x56\xfd\xff\xb5\x1b\xfd\xbf\xfe\xff\x2a\xd3\xff\xeb\xff\xa7\xe8\xff\xf5" "\xff\x6b\x7e\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x7f\x1e\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x5f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x2f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x57\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x5b\xf5\xff\xbe\xff\xaf\xff\xbf\xea\xf4" "\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\xdf\x9f\xfd\x7f\xfe\xba\xd3\xff\xeb" "\xff\xb9\xd4\xd2\xfa\xff\xdc\xfd\xbf\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x6f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb7\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xbb\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9b\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff" "\x9a\xdf\xef\xfb\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\x7f\x47\xdc\xd2\x64" "\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x3b\xe3\x96\x26" "\xfb\x5f\xff\x3f\xd5\xff\x9f\x3d\xdc\x4f\x44\xff\xbf\xbc\xfe\xff\x7a\xfd" "\xbf\xfe\x5f\xff\xbf\x14\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xef\xd7" "\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x1f\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xa7\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x73" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x25\x6e\x69\xb2\xff\xf5\xff" "\xbe\xff\x7f\xf4\xfe\xff\x74\xfd\xbc\x17\xdb\xff\xfb\xfe\xbf\xfe\x5f\xff" "\xbf\x18\xe3\xf6\xff\xd7\xe9\xff\xf5\xff\x57\xdc\xff\xdf\x72\xeb\xee\x0f" "\xeb\xff\xd7\xf9\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xff\x35\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8b\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xbf\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5d\x71" "\x4b\x93\xfd\xaf\xff\xd7\xff\x5f\xd2\xff\xdf\xf7\xba\xcd\x66\xed\xdf\xff" "\xd7\xff\xeb\xff\xf5\xff\x8b\x31\x6e\xff\xef\xfb\xff\xfa\x7f\xdf\xff\xd7" "\xff\xeb\xff\xf5\xff\xcc\x59\x5a\xff\x9f\xbb\xff\x1f\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xff\x67\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\xff\x2b\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x1d\xb7\x34\xd9\xff" "\xfa\x7f\xfd\xff\xd1\xbf\xff\xaf\xff\xd7\xff\x5f\x4c\xff\xbf\x4b\xff\xbf" "\x3f\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xf7\xeb\xff\xf5\xff\xcc\x5b" "\x5a\xff\x9f\xbb\xff\xbf\x01\x00\x00\xff\xff\x07\xd3\x2d\x2e", 24477); syz_mount_image( /*fs=*/0x20000400, /*dir=*/0x20000080, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x20002740, /*chdir=*/1, /*size=*/0x5f9d, /*img=*/0x20004b80); memcpy((void*)0x20000040, "cpu.stat\000", 9); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0x275aul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint32_t*)0x20000940 = 8; memcpy( (void*)0x20000944, "\x85\xf0\x80\xa4\x93\x3d\x55\x26\x6e\x07\xe7\x99\xaa\x0c\xc4\x21\x38\x82" "\x42\xdf\x2a\x3c\x6b\x63\x1b\x65\xb1\xc0\x61\xed\xd2\xaa\x10\x8c\x35\x28" "\xfe\x9b\x0b\xb3\xa5\x3a\xb1\x20\x0f\x5d\x01\xa6\x8a\x4a\xcd\xec\x8f\xee" "\x09\x64\x82\x22\xf9\x08\xc1\xfe\xdc\x30\x00\x34\x2e\x61\x39\xde\x28\x36" "\x6c\x13\x50\x93\x06\xd0\x0e\xbc\xc6\x74\x97\x18\x1a\xc9\x16\xdb\x98\xaf" "\x9d\x36\x6b\x76\xe4\x27\xd9\xab\x5b\xb6\x80\x95\xf0\xfb\x24\x6d\xf3\x2b" "\x8a\xf0\x78\x36\x53\x13\x6f\x8a\x04\xc0\x36\x90\x31\x21\x25\xc7\xde\xd6" "\xa2\x4f\xda\x86\x85\x34\x0c\x57\x5e\xad\x69\x51\x9e\x35\x83\xf8\x9d\x46" "\x7e\xc2\x32\xd6\xa1\xff\xd0\x46\x3b\xa4\xea\x3c\xba\xe5\xda\xe6\x65\x4b" "\x55\x47\xb5\x45\x8f\x02\xac\x30\x77\x29\xe5\x7b\x09\xe1\x34\xf6\x8b\xe4" "\x4f\x88\xd7\x25\x17\xb2\x30\xb0\x66\xf6\x31\x5b\x5f\xb8\x02\x06\x39\x7b" "\xbf\xf8\xcb\xc2\xa3\x6e\x01\xc2\xe7\xb3\xaa\xdb\x32\xbd\x3d\xd5\x28\x8a" "\x69\xa9\x91\xd9\xc6\x74\x71\x7e\x3a\xbb\xa7\x16\x72\x80\xb2\xdb\x3b\x1b" "\x85\x02\xaf\xa4\xf3\xf2\x96\xc5\x32\x51\x0c\x9d\x2d\xd7\x9b\xb5\xee\xb2" "\x5a\xdb\x5e\xdd\xdb\xdd\x06\x9c\x09\xd1\x4d\x15\xc2\xe7\xe1\xe2\xbd\x6c" "\x10\x8f\xab\x35\x90\xbb\x22\xe9\x7d\x69\x92\x23\x6d\x22\x73\xc8\xbb\x95" "\x53\x6f\x71\x18\xd0\x07\x96\x50\x08\xb1\x25\xc7\xda\xac\x28\x14\xe6\xbb" "\xe1\xad\xbf\xa3\x57\x2a\xd0\xb7\xad\x5c\x26\xc8\x01\x41\x18\xd8\x37\x4c" "\xa9\xf2\x85\x77\x9d\xfe\xe7\x71\x5a\x40\x39\x08\x14\x6a\x74\xde\x61\xb3" "\x85\x39\x14\xc8\x9f\x44\x4c\x12\xe7\xa3\x8b\xdd\x46\xc4\xed\x36\xeb\x80" "\x6e\xa5\x98\xf4\x4d\x1d\xec\x9e\xff\x9e\x24\x76\xf4\x38\x02\x21\x1f\x07" "\x62\xb6\x66\x73\xb4\x5d\x23\x6b\x23\x91\xce\x32\x2e\x30\xfb\x9c\x69\xfe" "\x0d\x51\x4d\xc1\xf8\xb6\xe3\x97\x9c\x12\x05\xfd\x52\x24\xb0\x7d\x18\xa4" "\x4f\xec\x4f\x6f\x1a\x6f\x65\x15\x8b\xb6\xad\xcc\x29\x5b\xf2\xdd\x7d\xea" "\x10\x7f\x59\xd7\xe0\x3c\x61\xfe\x58\x22\x29\x2e\x45\x96\x89\x56\xb9\x31" "\xbd\xc4\xd6\x44\x5f\xf1\x63\x1e\x0b\x98\xe4\xb4\x44\x87\x74\xdd\x4b\x9c" "\xd5\x3a\x45\x89\x6f\xdb\x3f\x03\x70\x27\x78\x74\x1a\xe2\xb4\x5a\x25\xbf" "\x9a\x23\xfc\x02\xfb\x97\xa6\x30\xf1\x32\xbf\x9d\xef\x6c\x6d\x08\x00\x00" "\x00\x00\x00\x00\x00\x14\xf6\xf2\x37\x7b\xcf\xc7\x8e\x2e\x86\x36\x8c\x13" "\x85\x10\xa0\x4c\xed\xf7\x17\x5a\xf8\xc2\x03\x4f\xae\x74\x13\xe3\xac\xe8" "\xc7\x1a\xb9\xa0\xaf\x1c\xa7\x04\x20\x11\xa6\xed\x02\x8e\x20\x56\x48\x53" "\x5d\xab\xf3\xb2\xf8\x51\x96\xae\x18\xd3\x6b\x83\x9e\x3c\xd5\x4a\xe4\x93" "\x3a\xd5\x29\x88\x8f\xda\xc7\xbb\x8a\x70\xc7\x2b\xc0\xfc\x81\xba\x06\x50" "\x6f\x2d\x5b\xc7\x68\x6e\x21\x9b\xbe\x52\x83\x95\x9c\xbe\xf9\x95\x0e\x07" "\x1c\xb6\xd9\xf3\x41\xfc\x62\x4a\x51\x10\x34\x1f\x26\xce\xbd\x71\x00\x59" "\x9a\x06\xe6\x1f\x66\xfa\xe1\x20\xc7\xfc\x2b\x34\xc6\x22\x12\x00\xeb\xa7" "\x5b\xdd\x27\x71\x14\x67\x1a\x3f\xa8\xf0\x58\xb2\x7f\xd8\x97\xb0\x52\xf4" "\xa5\x2a\xfc\xea\x81\x4d\xf5\x26\x18\x1c\x75\xc4\x49\x72\x10\xa2\xb8\xb7" "\x4e\x26\x60\x15\x61\xe7\x87\x35\x38\x7c\xf1\x23\x65\x4b\x02\x95\xd1\xd6" "\x05\x56\x95\x6b\x36\xd9\x6d\xd0\x38\x86\x6c\x4b\x4d\xb3\x1e\xbd\xcd\xdd" "\x48\x29\xbb\xc2\x85\x0c\xd4\x90\x13\x89\xe6\xea\x6e\x86\x04\x1e\x0e\xfa" "\x11\x58\xf3\x34\xe7\xaf\xda\x0e\x11\xc2\xfb\x0e\x6d\xf6\x36\x4c\xb9\x56" "\x59\xf5\x06\xd5\xc7\xe6\x3f\xb6\x7c\x81\x16\x57\x7d\x15\xe4\xa4\xb1\xfc" "\x4c\x27\xde\x2e\x52\x58\x6c\xb1\xf5\x2b\xe9\xc3\x60\x1f\x50\x66\x54\x9d" "\xe8\xbd\xc3\xec\x07\xd1\xa8\x4c\xaf\x19\x61\x32\x3e\xc2\x48\x7a\x37\xb7" "\x51\xae\xab\xaf\x18\x64\x7c\xe2\xda\xe5\xd9\x49\x9c\x0f\x96\x94\x67\xe6" "\xca\xba\xd1\x98\x66\x9a\xc9\x6b\xd1\x48\x89\x54\xef\xf0\x85\x4e\xe0\xc8" "\x3d\x7b\x59\x6d\x27\x36\x25\xbd\xb1\x62\x70\x78\x23\x21\x07\x1f\xda\x5d" "\x98\x0d\xed\x78\xff\xa9\xdc\x2b\x56\x03\x7d\x7c\xbf\x94\x25\x47\xf4\x8a" "\x51\x31\xf1\x99\x1f\x6c\x17\xae\x1e\xd5\x12\x0c\xa6\x87\x8f\x98\xe6\x8e" "\x79\x97\xa9\xa2\xb7\x0b\xe6\x40\xa7\x0a\x34\xad\xb8\x0d\xe2\x86\xc6\x69" "\x2a\xbb\x5f\x09\x2e\x4e\x3a\x15\x28\x32\x17\xe0\x3d\x02\xa4\x05\x4f\x34" "\xaf\x3a\x65\xef\x6b\x36\xf3\x95\xb7\x6a\x05\x79\xcf\xfa\xfd\x5d\x3b\xb0" "\xe7\x04\xc9\x35\xca\xec\xf3\xa7\xab\x75\x6c\x23\xfd\x60\xc9\xfe\x3f\x4f" "\xb2\xbe\x75\x04\xf5\xba\xe2\x2b\x11\x6f\xf1\x58\x8d\xcf\x02\xb3\x27\xd3" "\x1b\xf0\x48\x8d\xba\x8a\xf5\xb3\x3c\xcf\x2d\x7d\x87\xf4\x3b\xbc\x48\xfc" "\xd4\xf1\x91\xad\x6a\xf9\x31\x3a\xd3\x8b\x8b\x29\x67\x4b\xfa\xbd\x66\x51" "\xbc\x1f\x6c\xe5\xab\xb4\xa2\xf1\x41\x31\x94\xf9\x6b\x26\xd7\xd6\xed\xc4" "\xe0\x13\xfb\xa5\x49\x07\x5c\x97\xee\xf5\x08\xaf\x5c\xa7\x87\x36\x64\xb0" "\x58\xb7\xbc\xf4\x55\xa8\xa0\x4b\x59\x1d\x29\xfa\xb6\x36\x6c\x84\x4b\xb7" "\x55\x76\xba\xc2\xd5\x23\x23\xe7\x47\x30\x3d\x00\xa5\x73\x6c\x98\x12\x92" "\x2b\x0e\x17\xbc\xec\x91\x35\x55\x07\x36\xb5\x4c\xf6\x40\x7d\x61\xe2\x2e" "\x62\xd7\xbb\x75\xf6\x29\x35\xb6\x65\xac\xf3\x3e\x75\xf6\x88\xc3\x6e\xf4" "\x16\xf1\xb8\x90\xd0\xf0\xc8\xad\x1d\xf0\x0e\x02\xec\x45\x96\x78\x34\xd5" "\x64\x9c\x8e\x71\x43\x97\x86\x22\xfa\x37\x04\x67\x29\x70\xb7\x99\x3a\x87" "\xe9\x7d\x3d\x92\x6a\x14\x26\x56\x47\xbc\x8b\x8c\x9e\x6f\x83\xe2\x95\x72" "\x60\x8d\x24\xb4\x2c\x26\x35\xef\x4a\xbb\xd0\xaf\x83\x86\x0e\x99\xc9\x0d" "\x74\x71\xcf\x6e\x8c\xe9\x95\x07\xf5\xec\x2b\xc5\x72\x21\x2f\xa9\xee\x3f" "\x5a\x9d\xfa\x38\x15\xfe\x55\xf0\xbb\xb1\x19\xac\xce\x06\x2a\xe3\x7f\x2f" "\xf9\x21\x70\x7a\xbb\xa1\x39\xbc\xcd\xf4\x2b\xfd\x17\x4d\x29\xb5\x40\x16" "\x1b\x41\x13\xc4\xe1\xa1\x3f\x3a\x62\xbc\x09\x3e\x23\xec\x0d\x06\x71\xb4" "\x6b\x41\xdc\x8b\x42\xd9\x50\xc8\x61\x5b\xa5\xee\x87\xf4\x9b\x5d\x09\x10" "\xff\xa4\x87\x12\x07\x99\x50\x01\x92\x0d\xb0\x5a\x95\x19\x99\x67\xf0\x97" "\xba\x7b\x55\xbb\xd2\x71\xd8\x18\x69\x0c\x42\x38\x40\x6b\x40\xa3\xdf\xc4" "\x2f\xa5\x6a\x67\x17\x3b\x53\xa9\x6b\x54\x33\x26\xc5\x67\x38\xb6\xd0\x43" "\x19\x59\x34\x01\x86\x96\xf5\xab\x49\x34\x7e\x51\x48\xa7\x8f\x2d\x13\x69" "\xa7\x1a\xfa\xb8\x33\x02\x73\xd4\x6e\xcf\xba\x4e\xe0\x58\x02\xa5\x38\x56" "\x49\x85\x1d\xb9\x49\xdb\xfb\x39\xe2\x90\x94\x16\x41\xc5\x0b\x1a\xc2\x0f" "\xb3\x10\x27\x54\xa7\x60\xb0\x97\xf4\x64\xdd\xb0\xb8\x3f\x81\x68\xba\xdf" "\xa7\x1d\xb6\x62\x1d\xcf\x22\xfb\x08\x1e\x34\x03\xf3\xba\xc5\xc7\xe6\x59" "\x05\xac\xa5\x28\x85\xc8\x07\xf8\xdd\xab\x18\xbb\x2f\x12\xef\x95\x2c\x50" "\x48\x3c\x0e\x25\x19\x68\xbc\x70\xff\x0d\x42\xa6\x38\xca\x74\x4d\xea\x4c" "\x7e\xbb\x4f\xea\x77\x7c\xf6\x63\xbb\x4f\x15\x05\xed\x79\x73\x0c\x45\xbc" "\x86\xe4\x88\xa1\x3f\x92\x43\x77\xa8\xe2\xee\x66\x70\xa0\x2c\xa5\x28\x74" "\xae\x1c\x42\xa3\x5d\x55\xb9\x76\x57\x57\x04\x7b\x2c\xc3\x74\x2a\xa5\x1f" "\xa3\xe4\x3f\xb2\xc1\x13\xc9\x2a\xd2\x13\xba\xd2\x52\xc1\xa8\x29\x66\xdd" "\x01\x6f\x12\xa7\xf1\xc3\x90\x0c\x0f\x1a\xb4\x55\x03\x51\x63\xf3\x18\x99" "\xbd\xd3\x0f\x3f\xf4\x3a\xd1\x7d\x9e\x45\xbb\x74\x38\xc1\xc9\x86\x71\x27" "\x36\xf2\x4b\xe1\x4f\x71\xab\x1b\xfe\x92\xa2\x5e\xc0\x7f\x08\x6e\xe8\xc7" "\x97\x1b\x80\x77\xa1\x3e\x58\xa8\xe8\xbe\xa3\x9c\x8e\x06\xb2\x51\x90\x9f" "\x02\xcb\x00\x80\xab\xf0\x20\xf2\x7c\xa1\x60\xeb\x26\xc0\x82\xdd\xa1\xfa" "\x54\xea\x40\x94\xdf\xdb\xcb\x2f\xa7\xbd\xdc\xcb\x67\xa8\x44\xe8\x07\x5f" "\x4c\xc0\x8d\xad\x35\x75\x70\x06\xd0\x51\xe1\x83\xdc\xed\x33\x6b\xc0\xc2" "\x50\x2f\x93\xff\xc8\x7d\xca\x62\x22\x86\xba\x17\x4c\x24\xe1\xf5\x3f\x27" "\xdc\x27\x77\xba\xaf\xe1\x70\x34\x8b\x0e\x8d\x3e\x74\x3b\x3a\xa9\x06\xbc" "\x07\x64\xbb\xe7\xda\x08\xff\x40\x3e\xfe\x22\x12\x62\x7d\x67\x22\x50\x65" "\x8b\xb5\x13\xb7\x31\x25\x17\xd1\xf8\x8c\x61\xc7\xba\x5f\x96\x47\xcd\x61" "\x92\x81\xc5\xb3\x91\xb4\x86\x06\xee\x39\xfb\x41\x71\x10\x3d\xf2\xe0\x9d" "\x7c\xfd\x56\xc0\x6c\x72\x1f\x7c\x24\xad\x8c\xce\x38\x36\x23\xfc\x2d\xcb" "\x15\xac\x56\x43\x8e\xa3\x31\x82\x0a\xe5\x9c\x8c\x47\x4e\x36\xfc\x73\xf7" "\xb1\xb3\xb8\x6d\xf1\xb4\x24\x90\x81\x55\x01\x68\x1a\xaf\xbf\x7e\x87\x1b" "\x4b\x96\x86\xef\xae\x6c\x45\xec\xfc\xa6\x0a\x64\x0a\x6f\x07\x1d\xfd\x31" "\xf9\x43\x7c\x3d\x03\x08\x61\x64\xb4\x8c\x1e\xd8\x02\x98\x68\x64\xbf\xe0" "\xd4\x9b\xdd\x77\x09\x66\x22\x62\x36\x8d\xbc\x3e\xcc\x05\xeb\x24\x0e\xcc" "\x41\x90\x4c\x76\xd7\x8a\xb5\xc5\x2b\x66\xaf\x5a\x72\x0f\xdd\x6a\x92\xf5" "\x2b\xe0\x67\x64\x27\xa5\x6e\x32\xe5\xbc\x50\x85\xb2\x5f\x90\xad\xd3\x8a" "\x76\xf2\xfc\xe6\xf8\xf0\xef\x74\xf4\x65\x96\x98\x54\x96\x46\xbd\x63\x17" "\x5a\xdf\x77\xb5\xcd\xcf\xe6\x76\xe1\xb1\xa9\xaf\x15\x10\x29\x46\x55\x4b" "\xa6\x13\x6c\xbc\x83\xc6\x26\x8e\xe4\x03\x18\xf3\xc9\xd4\x71\x80\x25\x68" "\x8b\x35\xd2\x26\x5b\xf6\x0b\xf8\x89\x58\x1c\x75\x0c\x34\x58\x6e\xf4\x6e" "\xab\x7a\x91\x76\x33\x75\x36\xbb\x60\x01\xe6\x76\x54\x6b\x98\x7f\x36\xb1" "\xfe\x4b\x9f\x6e\x46\xa8\xce\x73\xeb\x22\xeb\xbb\x9c\x14\xd8\xe2\xb4\x3e" "\xa7\x7e\xf8\x87\xe5\xa2\x64\x48\xf4\x08\x6f\xa8\x19\xa2\x5e\x27\x72\x5a" "\xc1\x02\x98\x85\x1c\x8b\xc4\x5f\x2c\xe4\x43\x0b\x07\x91\x7a\xde\x5e\xa8" "\xc4\x34\xc3\xf2\x57\x6e\xff\xbe\xb5\x21\x17\x37\x36\xe5\xc9\x55\x74\x50" "\x64\x30\x68\xb0\xc0\xfb\x13\x2a\x7e\x99\xde\x6c\xa2\x92\x24\x6a\x99\x37" "\xfa\x7d\x7e\x06\xe5\x9c\xf5\x9c\xe5\xb9\xf8\x42\x62\x90\x49\x93\x11\x46" "\xaf\x40\xa8\xa1\x25\x6b\xa3\x73\xa8\x8d\x09\xdc\x00\xcd\xf4\x45\x3c\xc6" "\xba\x78\x57\x2b\xf3\xe1\xf2\x35\x2a\x97\x8c\xdb\xad\x60\x22\x0c\xb8\xac" "\x37\xd7\xf6\x14\xa3\x06\x49\x2a\x4b\x5e\xee\x92\x44\xb0\xca\x84\xb6\xcf" "\x2e\x23\x01\x3b\xfb\x1c\xb9\x2b\xf6\xd1\x26\xfe\x55\x0e\x58\xc1\x9f\x84" "\xe7\xa4\x08\x14\x37\xb7\x5b\x31\xb2\xb9\xfb\x65\x8d\xcd\x8b\xa0\x77\x96" "\x2e\x0f\x33\x59\x72\x1a\x14\x8d\x4f\xef\xe5\xc9\x79\x41\xca\x96\x88\xcb" "\x85\xad\xf3\x8f\xd1\x0f\x58\x11\xcd\xd8\xe0\x74\xa2\x1b\xbf\xc9\x54\x1c" "\x71\x46\x5b\x08\xd7\x32\x12\x81\xb6\x8e\xd5\x2b\xfa\xb7\x89\xb9\xc8\x38" "\x49\xc0\x9d\x52\x37\x6d\x41\x9b\x1e\x7b\xa3\x67\x60\x32\x36\xe1\x19\xcd" "\xf4\xa7\xb7\xcf\x9d\x81\xf2\x22\x96\x01\xde\xac\xe5\x3c\xea\x2f\x14\xa0" "\x5f\x7f\xa0\xca\x04\xb3\x9e\x31\xc6\x45\x3e\x33\x2f\x4b\xd0\x91\x5c\x0e" "\x09\xe2\x8f\x4d\x11\x25\xc3\x90\xc6\xff\x08\x33\xa0\x4b\x6f\xc3\x78\x55" "\xe6\x5d\xe9\x03\x33\xe5\x05\xb9\xeb\x66\xe0\x06\x86\xa3\xed\x49\x9c\xfb" "\x7b\x8b\x21\x5d\xbd\xc9\x78\x7b\x5b\xaa\x72\x4c\xfa\x71\xee\x67\x45\xb4" "\x1e\x20\x3d\xe8\xb7\x00\x47\x57\xac\x32\x8e\xc5\x56\x75\x40\xb9\x51\xb5" "\x05\x30\xc3\xd4\xee\x34\x70\x5e\xa1\xc6\x6f\xd6\x59\x1e\x88\x56\x10\x83" "\xe8\x6d\x48\xc4\x5e\xf3\xb8\x3a\x30\x29\x31\x9d\x8f\x3d\x8e\x65\xce\x14" "\xc1\xdc\x3c\xb9\x2d\x0a\x7d\xbe\xb6\x09\xa8\xd2\x79\x39\x28\xca\xa0\x79" "\xf0\xfb\xbb\x2b\xc9\x0b\x9f\x05\x8c\xc0\x48\xf4\x03\x20\x41\xd1\x4c\x5b" "\xca\x00\xe9\x9b\x30\x27\xec\x3a\x50\xc4\x95\x71\x99\xcf\x01\x6a\x45\x94" "\x06\x9a\xf8\x65\x9d\xf0\x97\x3f\x20\xff\xb1\x5d\xbc\x26\x5a\xc5\xb8\xa2" "\x20\x3e\x90\xb1\x14\xa3\xe9\x44\x1e\x35\x7c\x60\xce\x0b\x55\x0a\x7f\xe6" "\x6f\xc3\x4f\x57\x02\xac\x8e\x89\x92\xa2\x2e\x89\x19\x4c\x1d\xf6\x9e\x81" "\xa9\xb7\xad\x3d\x26\x34\xea\x8c\x03\x88\x58\x81\x92\xfd\x47\xd8\xe8\x03" "\xb1\x00\x44\xd5\x58\x61\x7f\xb2\x92\x1b\x69\xeb\x4d\x85\xc0\x51\xf8\x6e" "\xf6\x3a\x2f\x43\x82\xb9\xbe\xcd\x87\x0f\xb2\xec\xad\xca\x69\x02\x71\x2b" "\x88\x68\x07\x92\xe2\xf2\xec\x89\x59\x1c\xfe\xbb\x6d\xb3\xad\x31\xc2\xa3" "\x39\xaf\x10\x46\x5f\xcf\x79\x88\x51\x9d\x38\x22\x18\xdf\x52\x26\x12\x34" "\xf2\x6a\x6f\x66\xad\x0d\x18\x59\xde\x50\x5d\x0f\xe8\x19\xca\xf2\xf8\xd3" "\x0a\xa9\xfd\x12\x28\xac\x91\xd1\x1c\x39\xd6\xfd\xcf\x59\x26\xd6\xad\x5c" "\x44\x15\x14\x32\x15\x07\xdf\xf6\xc6\xea\x3c\xff\x6f\x34\x0a\x1c\x11\xe0" "\xc4\x0f\x41\x9e\x8e\x60\xfc\x94\xd8\x82\x8f\xa4\x7a\x96\xcd\xf7\xee\x4f" "\x61\xe2\x3f\x40\x75\x1b\x25\xcf\x9c\xa1\x29\x50\x41\xa3\x50\xf8\x3f\x0e" "\x67\x95\x15\xd6\xb4\xb4\x6e\x2c\x9c\xe8\x99\x9e\x07\xf8\x35\xab\xc1\x66" "\x3c\xef\xcf\x72\x8d\xf3\x78\x31\xf4\xe1\x7f\x8c\x8a\x4f\xea\xf1\xfb\xf4" "\x4c\x38\xc9\x31\x32\x84\x40\x4a\x50\xba\x4c\xd8\xab\xe8\x35\xb3\x3b\xfe" "\xcb\x02\xcd\x6c\x9d\x7f\x43\x58\x53\xb4\xc8\xd5\x05\xab\x83\xcf\x46\x51" "\x27\x39\x11\x66\x94\x76\x56\x58\xba\xe6\x4b\x31\x27\x15\x2d\x21\x60\x55" "\xae\xf9\xb2\x5c\x70\xa8\xa3\xb3\x02\x75\x2d\x7b\x1e\x87\x91\xc6\x57\xb9" "\xf3\xfc\x90\x01\xef\x29\x9f\xd1\xa3\x49\x49\x1a\xe6\xee\x99\x40\x14\x91" "\x60\x50\x7f\xc4\x13\x0f\xb8\x25\xd4\x7d\x97\xdc\x2c\x24\x32\x09\xd2\x40" "\x35\x83\xac\x3e\xf6\xdd\xbe\xdc\xaa\x76\x43\x22\x55\x48\x7c\x0a\x06\xe5" "\x9e\x04\x3e\x57\x2a\xb3\xae\xc0\x02\xaf\x6a\x6b\x6a\x2d\xc9\xcf\xae\xef" "\xa7\x05\x57\x88\x6c\x4d\x12\x92\x4a\x03\x88\x13\xf2\xbc\x8e\x89\xe4\xcf" "\xa6\x97\x05\xd1\xef\x3c\x46\x58\xf8\x61\x62\x78\xb5\x88\x01\x1d\x9d\xd9" "\x14\xbe\xec\x0b\x15\x1d\x65\xb6\x52\x4f\xba\x3e\x3f\x23\x5d\x58\x37\x3e" "\x02\x16\x99\xb0\x76\x22\xa5\x15\x04\xea\xde\x74\x7e\x0b\x2f\x9c\xf3\x8b" "\xc1\x67\xca\xbc\x8c\xb1\x8c\x70\x8d\x13\x37\xe2\x56\x48\x70\x7e\x8c\x08" "\x72\x87\x65\x14\xc7\xa4\x9c\x0b\x2a\xae\xe5\xed\x9e\x9e\xcf\xcb\xcc\x23" "\xe0\x32\xc4\xde\xb6\x3e\x48\xe7\x12\x01\x88\x05\x64\x68\xfa\xd3\x14\x48" "\xe4\xb4\x2e\x7d\x62\xfb\xcf\xc1\xc2\xcf\xb0\x1f\xcf\x0d\xb5\xe8\xa1\x62" "\xbd\xb9\xbd\x82\x0c\x76\x3f\x17\xb9\x6c\x23\xf3\x2d\xb9\xd1\xc1\xd7\x4d" "\xdb\xe6\x57\xb4\xf9\x59\x5a\x97\x96\x98\x2a\x07\x42\x15\x31\x11\xb1\x5e" "\x48\x4d\x8f\xfe\xbe\x47\xce\x0a\x78\xa4\x1e\x47\x0a\x34\x16\x16\xec\x2e" "\xb6\xee\xf8\x13\xfb\x41\x5f\xab\x50\xfa\x96\x5b\xec\x6a\x59\x77\xa0\xad" "\xe4\xfe\xd6\x7f\x86\xfc\x24\xe1\x1b\x0e\x2f\x53\x64\x07\x9f\x7c\x7c\x35" "\xb5\x60\xca\xc7\x26\xdb\xc8\x0f\x29\xdb\xd2\x48\xf7\xec\xda\x02\x86\xa2" "\x3e\xf1\x72\xa2\x8c\x96\xd9\xbd\xb1\xf5\x98\xea\xb3\x1c\x6b\xaf\x03\x21" "\x31\x2d\xa2\x39\x20\xc0\x74\xb9\xd2\xd2\xe4\x42\x71\x7f\x2c\x21\x00\x11" "\x42\xa3\x9c\x2d\xa6\xb8\xbd\x9d\x06\xb0\x5a\x6a\x8d\xea\xe1\xbd\x1b\xe4" "\x10\x8a\x63\x6d\xdb\xeb\xc6\x82\xd1\x13\xe7\x15\xf2\xf3\xee\x50\x6a\xbc" "\x28\xb1\xc6\x54\xb3\xd2\xd2\x8e\x02\xf7\x3b\x17\x1e\xd0\xde\xed\x71\xdd" "\xa9\x0c\xe4\xa0\xb7\x28\xcc\x75\xcb\x57\x63\x85\xe7\x41\x8b\x54\x5b\x99" "\x2b\x1d\xd9\x8e\x2e\xe5\x33\x55\xf4\x64\xf9\x25\x0a\x2a\x03\xb3\xd1\xe4" "\xd2\xac\x1a\xa7\x1d\x01\xde\x25\x73\x53\x03\x24\xe1\x4d\x15\xa5\x07\x88" "\x34\x11\xdd\xbd\x37\xbe\x21\xdc\x92\x9d\xb9\xb1\x1f\x11\x01\x0e\x4d\x2a" "\x04\xc7\x32\x5a\x5a\xe6\xd2\x4d\x19\x90\x0f\xf9\x7a\x8a\x89\x43\x8f\x86" "\x76\x45\x7a\x78\xcf\xf0\x52\x01\x52\x8f\x43\x58\xfe\x67\xf6\x12\x88\xbf" "\x04\x2a\x8f\x3c\x2e\x0f\x8b\x49\x97\xb8\xfb\x74\x99\x6b\x80\xd4\x65\x48" "\x9b\x2d\x78\x07\xa9\x45\xeb\xa7\x2a\x94\x5e\x8c\xf8\x62\x5d\xba\xd6\xf6" "\xf6\xe3\x05\x37\xb2\x9e\x55\x8c\xa8\xa8\xb0\x62\x5f\x57\x8c\x76\x6d\x34" "\xf2\xd2\x8d\x70\x47\x15\xf9\x4d\xf1\xf6\x31\x8a\x30\x80\x42\xaa\x49\x4b" "\xaa\x50\x0a\x00\x00\x00\x00\x00\x00\x6a\x83\x08\xaf\x8c\xe6\x44\x1d\x5a" "\xd8\xa2\xf3\xd4\x77\xeb\x53\x07\xaf\x0d\xfa\xe6\x64\x44\x93\xf1\x43\x40" "\x30\xb8\x36\x16\x21\x34\x0a\xd3\xdc\xef\xa6\xd8\xf0\x90\xed\x39\x29\xd8" "\x9a\xd9\xc0\xba\x01\xa6\x90\x30\x33\x42\x8d\xd8\xf9\x86\x19\x30\x4b\x18" "\x03\x18\x7d\x2a\x61\x30\xbf\x1e\x00\x9b\x5e\xb0\xe7\xe2\x1c\x75\x59\x4b" "\x3b\x84\x70\xf3\x10\x6c\x92\xa9\xe5\x5b\xfe\xb0\x26\x09\x1c\xed\x12\x7a" "\x90\xa1\xf1\x24\x7f\x3c\x07\xe3\x6d\x35\x72\x92\x3e\x0d\xe3\xf7\x35\x18" "\xd0\x36\x9a\x25\xfc\xd4\xe6\x5d\x24\x3b\x7e\xab\x91\x06\x3a\x7b\xfd\x8b" "\xc8\xac\x9e\x39\xfb\xbb\x32\xb5\xc9\x51\x78\x86\x28\x7a\x18\xea\xcd\x8d" "\xbf\xda\x9b\x91\xdb\x69\x3c\xb1\x2e\x42\xcb\xa5\x98\x82\x80\xe0\x9e\x51" "\xe7\x2b\x91\xa0\xf3\x60\x65\x6d\x8f\x21\xcc\x1e\xb3\x24\x8a\xc3\x45\xad" "\x51\xd1\xa6\x17\x2b\x18\x41\x92\x77\x85\x1d\xab\x01\xe0\x28\xc7\xe8\xe2" "\xcf\x34\x09\x5e\xfd\x28\x26\x78\x52\xa0\x8f\xcc\xf6\x1c\x45\xb5\xe4\x69" "\x30\x16\x0d\xaf\x50\x28\x2b\xe0\x58\x27\x4e\x7f\xf5\x8c\x48\xb6\x0b\x86" "\xd0\xc8\xcc\x88\x6a\xb8\x77\x8a\x2a\x2b\x5f\xa2\x55\x7a\xd7\xbf\x7f\x01" "\xf2\x17\x55\x23\xce\x75\x88\x71\xd3\x34\xc2\x0a\x98\x39\xf7\xa8\x9f\xe2" "\x86\x7c\x06\x28\x9c\x8a\x2f\x64\x56\xac\x7e\x4f\xba\xde\xe5\x3a\xc4\x1a" "\xee\x68\x21\x4b\xc7\x66\x69\x85\x3b\xaa\x4f\x58\x25\x5b\x39\xba\x58\x14" "\x14\xf2\xe8\xc4\xb4\x93\x03\xf8\x93\x6a\x33\xba\xe5\xcb\xc9\x6b\x29\xa5" "\xc7\x24\xd5\xb5\x0e\x16\x14\x14\x4c\x2a\xcd\x03\xbd\x90\xde\x89\x1c\x3d" "\x36\xce\x04\x0d\x57\x54\x36\x82\xec\xbf\xca\xe6\x6c\x41\x53\xc3\x37\xc3" "\xa5\xd0\x18\x96\x52\x4c\x8e\x0c\x27\xe9\xa0\x89\x19\x82\x1c\xa2\x7b\xbf" "\xe3\xfc\x9b\xa2\x4a\x82\x3a\xee\xc8\xd4\xad\x8e\xf8\xa6\x5c\x58\x5b\xee" "\x4d\xcf\x1a\xca\xa3\xda\x50\x1a\x8c\x11\xa2\x3b\x2e\x22\x92\x0c\x1a\xd0" "\x12\x9a\x03\x8b\x31\xfe\x16\xc2\xab\xc8\x05\x89\xdb\xf7\xc3\x72\x11\xaf" "\xc5\xd1\xa6\xdb\x90\x8b\xc5\xfe\x8a\x69\x20\x60\x06\x9f\xcb\xcd\xcb\xa7" "\xc5\x23\xd3\xc4\x24\xaa\x3b\x0c\x65\x56\x38\x7e\x0e\x51\xbc\xde\x9e\x5f" "\x85\x0a\xbf\x62\xd2\xc2\x10\x1c\x3a\x27\x86\xa0\xcb\x94\x93\x28\x77\xa0" "\x9c\xb6\xb6\x4a\xa6\x1d\xa8\xca\xb3\xb4\x23\xe7\xad\xc4\xc4\x70\x04\x18" "\xa6\x5e\x87\x22\x57\x10\xe1\x69\x1f\x6d\x9c\xb2\xeb\x63\xcc\xe5\xb6\x05" "\xce\x0a\x4a\x89\xcf\x51\x97\x67\xe0\x08\x45\x39\x7c\x5e\x38\x11\x41\xa0" "\xed\x8a\x89\xb0\x10\x64\xb4\x95\xec\x8d\x1e\x2d\xa3\x74\x33\xbf\x15\x97" "\xd9\x19\xa6\x96\x10\xd2\xad\x26\xbd\xf6\xfc\xa8\xde\x42\x2b\xb2\xcb\x80" "\xd0\x51\x62\x06\xe8\x19\x4e\xe5\x14\x45\xa3\xdc\xb5\xde\xe3\x3c\x0c\x31" "\x0b\x47\x51\xe6\x8e\x58\xbe\xbd\xa2\xfb\x58\x69\x85\xa5\xa5\xb0\x64\x56" "\x75\x6f\x44\xe6\xdb\xfe\xf4\xbb\x99\xca\x73\x2f\x00\xfb\x9e\xa3\x57\x75" "\xf7\x41\x96\x81\xbf\xbe\x6f\x43\xdc\x7c\x46\x50\xc1\x3b\x63\xd9\x3c\x1d" "\x49\x0b\xf0\x17\x3f\x28\x7a\x43\x09\x53\x1f\x13\xec\xb1\xa7\x75\xd0\xbd" "\x88\x1a\x00\x00\x00\x00\x00\x00\x00\x00", 4096); *(uint16_t*)0x20001944 = 0xfe43; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000940ul, /*len=*/0x1006ul); memcpy((void*)0x20000000, "./bus\000", 6); syscall(__NR_mkdir, /*path=*/0x20000000ul, /*mode=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }