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