// https://syzkaller.appspot.com/bug?id=4308b6a0f9164417bfb13c0c054bf9992a32eb5d // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } 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$ocfs2 arguments: [ // fs: ptr[in, buffer] { // buffer: {6f 63 66 73 32 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x8c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {61 63 6c 2c 68 65 61 72 74 62 65 61 74 3d 6e 6f // 6e 65 2c 64 69 72 5f 72 65 73 76 5f 6c 65 76 65 6c 3d 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 33 2c 72 65 73 76 5f // 6c 65 76 65 6c 3d 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 // 30 30 30 36 2c 63 6f 68 65 72 65 6e 63 79 3d 66 75 6c 6c 2c 6c 6f // 63 61 6c 66 6c 6f 63 6b 73 2c 63 6f 68 65 72 65 6e 63 79 3d 66 75 // 6c 6c 2c 6e 6f 61 63 6c 2c 00 4c 98 06 5b 85 e5 b1 37 d6 3b 22 11 // c6 2c 40 20 45 08 3d a9 bd dc 3b 0d 88 d4 4e cd 24 ba 52 88 d4 28 // 19 72 84 f3 32 85 8b 83 34 9a f2 c7 64 6f 1e 07 e9 11 20 d7 f2 3c // e2 03 89 bb c0 31 d8 1d 65 4f 1c a0 8f 61 c9 2d 90 e6 ea 47 88 43 // c1 ad 94 2c 7c 25 7f 9f f5 34 8d d0 38 e9 47 77 59 91 ad 90 f8 86 // 1d ad a2 1d 5f a2 de 70 42 b5 e2 cb bc d1 ad a2 b5 68 e3 75 81 2e // b0 bc 44 8e 68 ed a4 c7 0c f1 d5 ad f5 66 14 2e d4 59 24 fe 72 a1 // eb 1a 91 4f af 75 4b 9d 94 bf 0f dc 1f 98 c7 08 bd 89 94 0b 5e f9 // 6e 32 82 40 c3 95 59 b3 5b c8 3c 15 c1 51 04 f3 b3 fe 19 45 f0 27 // 8c 34 e2 39 9d ad cd 97 76 ac 65 9a fc bb 23 95 69 14 0a b4 08 ad // 87 f1 5b 35 39 41} (length 0x160) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x442d (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x442d) // } // ] // returns fd_dir memcpy((void*)0x200000004440, "ocfs2\000", 6); memcpy((void*)0x200000000040, "./file1\000", 8); memcpy( (void*)0x200000000600, "\x61\x63\x6c\x2c\x68\x65\x61\x72\x74\x62\x65\x61\x74\x3d\x6e\x6f\x6e\x65" "\x2c\x64\x69\x72\x5f\x72\x65\x73\x76\x5f\x6c\x65\x76\x65\x6c\x3d\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33" "\x2c\x72\x65\x73\x76\x5f\x6c\x65\x76\x65\x6c\x3d\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x36\x2c\x63\x6f\x68" "\x65\x72\x65\x6e\x63\x79\x3d\x66\x75\x6c\x6c\x2c\x6c\x6f\x63\x61\x6c\x66" "\x6c\x6f\x63\x6b\x73\x2c\x63\x6f\x68\x65\x72\x65\x6e\x63\x79\x3d\x66\x75" "\x6c\x6c\x2c\x6e\x6f\x61\x63\x6c\x2c\x00\x4c\x98\x06\x5b\x85\xe5\xb1\x37" "\xd6\x3b\x22\x11\xc6\x2c\x40\x20\x45\x08\x3d\xa9\xbd\xdc\x3b\x0d\x88\xd4" "\x4e\xcd\x24\xba\x52\x88\xd4\x28\x19\x72\x84\xf3\x32\x85\x8b\x83\x34\x9a" "\xf2\xc7\x64\x6f\x1e\x07\xe9\x11\x20\xd7\xf2\x3c\xe2\x03\x89\xbb\xc0\x31" "\xd8\x1d\x65\x4f\x1c\xa0\x8f\x61\xc9\x2d\x90\xe6\xea\x47\x88\x43\xc1\xad" "\x94\x2c\x7c\x25\x7f\x9f\xf5\x34\x8d\xd0\x38\xe9\x47\x77\x59\x91\xad\x90" "\xf8\x86\x1d\xad\xa2\x1d\x5f\xa2\xde\x70\x42\xb5\xe2\xcb\xbc\xd1\xad\xa2" "\xb5\x68\xe3\x75\x81\x2e\xb0\xbc\x44\x8e\x68\xed\xa4\xc7\x0c\xf1\xd5\xad" "\xf5\x66\x14\x2e\xd4\x59\x24\xfe\x72\xa1\xeb\x1a\x91\x4f\xaf\x75\x4b\x9d" "\x94\xbf\x0f\xdc\x1f\x98\xc7\x08\xbd\x89\x94\x0b\x5e\xf9\x6e\x32\x82\x40" "\xc3\x95\x59\xb3\x5b\xc8\x3c\x15\xc1\x51\x04\xf3\xb3\xfe\x19\x45\xf0\x27" "\x8c\x34\xe2\x39\x9d\xad\xcd\x97\x76\xac\x65\x9a\xfc\xbb\x23\x95\x69\x14" "\x0a\xb4\x08\xad\x87\xf1\x5b\x35\x39\x41", 352); memcpy( (void*)0x200000004480, "\x78\x9c\xec\xdd\xcf\x6b\x54\xd7\x1e\x00\xf0\x73\x6f\xf2\x9e\x89\x4f\x7d" "\xf1\xc7\xc2\x07\x0f\xde\xc0\x13\xde\xa3\x2d\x21\x71\xd5\x36\x42\x35\x46" "\x63\xa2\xa9\xc5\x56\x29\xdd\x8c\x93\x64\xd4\xb4\x93\x8c\x24\x93\xd2\x85" "\x8b\x74\x27\x74\x55\xe8\x42\xba\x90\x16\xba\xcb\x4a\xb2\xe8\xd6\xfe\x09" "\xdd\x74\x69\xd7\x42\xbb\xe8\xa6\x50\x90\xa6\xcc\xcc\x9d\x38\xf7\x66\x86" "\x4c\x25\xd7\x54\xf9\x7c\xc0\x9c\xdc\xf3\x3b\xf3\x9d\x7b\xe6\xcc\xe2\x7a" "\xe2\x44\xed\xd6\xc2\x4a\x61\x61\xa5\x50\x5a\x2a\x54\xe7\x6e\xac\x9c\x2c" "\x7c\x5c\xad\xac\x2e\x96\x43\xfc\x9c\xec\xf5\xf8\xf4\x26\x8f\x38\x89\xfd" "\xde\xb9\x7c\xf6\xfc\xbb\xd7\x4e\x86\xf0\xdd\xfc\x0f\x8f\x37\x37\x37\x37" "\x43\x5d\x7f\xe8\x68\xb4\xed\xf7\x5f\x7f\xb9\x33\xd7\x9e\xb6\xc4\x99\x36" "\xf5\x7e\x3b\xf7\xb6\x5b\x3e\x08\x21\x1c\xdb\x36\xaf\xba\xbe\x10\xc2\xfb" "\xdf\x86\x10\x85\x10\xce\x24\x79\xe3\x49\x3a\x18\x42\x38\x14\x9a\x65\xd7" "\xee\x7c\x76\xbd\xb0\x4b\xb3\x79\xf0\xa8\x7c\xaa\xf8\x64\xe6\xee\xc6\xd8" "\x89\xe9\xf5\xfb\x1b\xdd\xff\xf6\x28\x84\x2f\x2b\xff\x7a\xed\xe6\xe2\x4f" "\xff\xed\x1b\xfb\xf1\x95\x5d\x1a\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x17\xdc\xe4\x95\xcb\x57\xdf\x19\x19\x0d\x0f\xa3\xd0" "\xbf\x1e\x6d\x7f\x5e\x77\x32\x49\xbb\x3d\x1f\xbb\xb9\x6b\xfe\x93\xff\x1f" "\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x51" "\x4f\x9f\xff\x2f\x44\x47\x3a\x3c\xff\x3f\x91\xa4\xa7\xbb\xb4\xdf\x7c\x2b" "\xff\x39\x92\x9f\xa9\xb7\x2f\x4f\x9c\x1b\x19\x4d\xce\x7f\x8f\xb6\x95\xbf" "\x9e\x64\xfd\x7c\xa6\x2f\x1c\xee\x70\xee\x7b\xf6\xfc\xf7\x33\x99\xf6\x9d" "\xcf\x7f\xdf\x3e\xce\xb3\x6a\xcd\xaf\x35\xee\x50\x88\xe2\xe1\xd4\x75\x1c" "\x0f\x0f\x87\xf0\x75\x72\xf0\xfb\xf1\x68\x7f\x5c\xa9\xae\xd4\x5e\xbd\x51" "\x5d\x5d\x9a\xdf\xb5\x69\xbc\xb0\xd2\xf1\x6f\x9e\xde\x9f\x8a\x4e\x72\xa0" "\x7f\xaf\xf1\x1f\xcf\xf4\x9f\xff\xf9\xff\x47\xb7\xbd\x9b\xea\xd7\xd7\x77" "\xef\x2d\xf6\x52\x4b\xc7\xbf\xaf\x6b\xbd\x6f\x3e\x8d\x7a\x8a\xff\xd9\x74" "\xb3\x7b\x39\x4d\xbb\xcd\xd1\xfc\x87\x78\x89\xa5\xe3\xdf\xdf\xc8\x1b\x6c" "\xaf\xb0\xaf\x99\xd4\xe3\xff\x79\xff\xce\xf1\x9f\xc8\xf4\x9f\xd7\xfd\x7f" "\x28\x84\x50\x88\xea\x73\x2d\xa4\x56\x80\xfa\x1e\xa6\x9e\xdf\x6d\xbf\x42" "\x5a\x3a\xfe\x7f\x6b\xe4\xa5\x96\xce\xe4\x85\xec\x76\xff\xff\x96\x89\xff" "\xb9\x4c\xff\x7b\xb5\xfe\xaf\x65\x3f\x88\xe8\x28\x1d\xff\xbf\x37\xf2\x06" "\x52\x35\x9a\x1b\x80\x46\xfc\xe3\x9d\xef\xff\xf3\x99\xfe\xf7\x22\xfe\xf5" "\xf9\xaf\xf9\xfc\xef\x49\x3a\xfe\xc9\x62\xdf\x9f\xaa\xd2\x78\x25\x7b\x5d" "\xff\x27\x33\xfd\xe7\x15\xff\xab\x71\x32\xcf\x43\x51\xea\x1d\xb0\x1e\x35" "\xf3\xbb\xfd\x7f\x75\xa4\xa5\xe3\x3f\xb0\xad\xfc\xe9\xf7\xbf\xb8\xa7\xfd" "\xdf\x85\x4c\xfb\xe7\xf5\xfd\xaf\x35\x6e\xeb\xfb\x5f\x6b\xf9\xff\x7f\xd4" "\xfc\xfe\x47\x67\xe9\xf8\x0f\x76\xad\xd7\xeb\xfd\x3f\x95\x69\x97\xf7\xfa" "\x7f\xba\xb1\xff\xe3\x59\xa5\xe3\xbf\xbf\x91\x97\xde\x3b\x0f\x35\x7e\xf6" "\x1a\xff\xe9\x4c\xff\x79\xc5\xbf\xb1\x2b\x19\x68\xc5\xff\xe9\x7a\xf2\xfb" "\xbe\x66\xfe\x57\xf6\x7f\x3d\x49\xc7\xff\x1f\xcd\xcc\xb8\xbd\xc6\x5a\xe3" "\x67\x63\xff\x17\xed\xbc\xff\xbf\x98\xe9\x7f\x2f\xf6\x7f\xf5\xf9\xaf\xc5" "\xf9\x8e\xfa\xb2\x48\xc7\xff\x40\xd7\x7a\xf5\xf8\x7f\xdf\xc3\xe7\xff\xa5" "\x4c\xbb\xfc\xe3\x1f\xc2\x88\xbd\xfe\x33\x4b\xc7\xff\x60\xd7\x7a\x8d\xfb" "\x7f\x60\xe7\xf8\xcf\x64\xda\xe5\x1d\xff\xff\xe5\xd9\x39\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x0b\x60\x3c\x49\x87\x42\x14\x0f\xa7\xae\xe3\x78" "\x78\x38\x84\xb3\xc9\xf5\xf1\xb0\x3f\x9a\x2d\xcd\x17\x67\x2b\xd5\xb9\x8f" "\x56\x42\x98\x48\xf2\x0b\xe1\x48\x74\xb3\x52\x9d\x2d\x55\x8a\x0b\x4b\xd5" "\xf9\x72\xb1\x54\xa9\x54\xe7\x42\x38\x97\x94\x1f\x0b\x03\xd1\x4a\xa5\x5a" "\x2b\x2e\x96\x6e\x9f\xdf\xea\x6b\x30\xba\x55\x2e\x2d\xd7\x66\xcb\xa5\x5a" "\x08\x61\x32\xc9\xff\x77\x38\xd8\xea\x6b\x76\xa1\xb6\x58\xba\x1d\x42\xb8" "\xb0\x55\xf6\xcf\xb8\xba\x7c\xfb\x56\x69\xa9\x38\xbf\xb0\xfc\xe6\xc8\xc8" "\xc8\x48\x98\xda\x9a\xc3\xe1\xa8\xfc\x49\xad\xbc\x54\x6b\x8e\xde\x2c\x0d" "\x61\x7a\xab\xed\x50\xd4\x36\xb9\x46\xf1\xc5\xad\xb9\x1c\x88\x3e\xac\xae" "\x2e\x2f\x95\x2a\x8d\xfc\x4b\x6d\x6d\x2a\xd5\xb9\x52\xa5\xad\xcd\x4c\x52" "\xf6\x45\x38\x1c\xd5\x96\x57\x97\xe6\x4a\xb5\x72\xb1\x52\xbd\xd9\x1a\x6f" "\x2f\x9d\x4e\xd2\x89\xa9\x2b\xef\x5d\xb9\x34\xba\xad\xfc\x7a\xd4\x4c\xc7" "\x9f\xef\xb4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf8\x93\x1e\x8e\xbd\x71\x2f\x84\xd0\xdf\xbc\x8a\x43\x08\x85\x28\xf9" "\x25\x4a\xfe\xa5\x3c\x78\x54\x3e\x55\x7c\x32\x73\x77\x63\xec\xc4\xf4\xfa" "\xfd\x8d\xc7\x9d\xea\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x1f\xec\xc0\x81\x00\x00\x00\x00\x00" "\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\x97\xfe\x51" "\x22\x06\xa2\x38\x00\xbf\x19\x05\x2d\x3d\x86\x55\x48\x3a\xdb\x88\x22\x5a" "\x18\x11\x3c\x81\x1e\xc3\xc3\xe8\x51\xbc\x84\x77\xb0\xb0\xb0\xb5\x58\x16" "\x76\x27\xb0\xe4\x0f\x84\xc0\x76\xdf\xd7\x3c\x98\x1f\x6f\xde\xc0\x3c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xb9\xbb\xe7\xee\xe5\xa9" "\x6e\x22\x52\x9c\x6f\xce\x22\xbe\xde\xbe\x7f\x0e\xf3\x87\x52\x3f\xae\xa7" "\xfb\x4f\x56\xcc\x3c\x5d\xd1\xc3\x71\xdc\x3f\x76\x37\xb7\x75\x53\xfe\x3d" "\x8d\xf2\xab\x72\xf4\xdb\xe6\x5d\xfa\xff\xf7\xfe\x1a\x13\xb5\xf7\x39\xd8" "\x93\xe1\x3e\xed\x8d\xe7\x0c\xcd\xed\xdb\xdc\xfb\xfa\xb9\x17\x91\x72\x15" "\x11\x6d\xc9\x2f\x53\xce\x55\xb5\xec\x2e\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x60\xcb\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\x58\x00\x00\x00\x00\x40" "\x98\xbf\x75\x14\x7d\x1b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\x0a\x00\x00\xff\xff\x8c\x37\x1c\xcf", 17453); syz_mount_image(/*fs=*/0x200000004440, /*dir=*/0x200000000040, /*flags=MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x8c0, /*opts=*/0x200000000600, /*chdir=*/1, /*size=*/0x442d, /*img=*/0x200000004480); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x2000000002c0, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000002c0ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0); if (res != -1) r[0] = res; // pwritev2 arguments: [ // fd: fd (resource) // vec: ptr[in, array[iovec[in, array[int8]]]] { // array[iovec[in, array[int8]]] { // iovec[in, array[int8]] { // addr: ptr[in, buffer] { // buffer: {a4 4f 98 25 35 8c 01 34 12 7e da fb 7a 84 58 d5 69 fd // 57 53 5d 76 f9 66 a9 1b dd 00 10 fa ad db 1d 1f b9 10 6e 47 4c // 12 e8 e6 b5 94 5e 12 71 c9 84 a9 fe 5d a8 2e 24 e6 a7 0b 5e 72 // 8f 83 0e 3a 85 44 22 83 67 f8 25 68 ef ce e4 70 ef 23 31 50 46 // 6b 1b 01 4a 5a fd 01 04 68 6a 6b f1 1e 33 02 23 4f e1 46 37 43 // d5 b0 45 5f 92 21 78 b1 27 c5 cc a9 ac 4d 1c 33 8a 09 cc 00 13 // 8b 6b 84 68 cf ab d8 fe e4 55 81 0c 69 4d 83 3e 7a 99 b3 e4 52 // 8a c1 d8 46 06 fa 6b 72 4a e3 43 1e b1 8e 94 15 70 f4 19 0b 74 // 9f 13 88 87 e9 f2 17 5d 3d e0 a1 15 7d 00 d4 b4 26 1d 5f a0 51 // e7 0c a8 e1 2d 0c 01 55 c4 2c 1e 85 6f 98 b3 c4 45 82 f9 eb 6f // 99 5e b8 69 ff 5b 8f 88 28 6f 96 77 a8 3b bb 10 b7 65 6b be 49 // 8e 90 e3 36 7e 4d 5f 11 31 22 a6 cd ae 0a 0c 7f a1 56 2d 92 4a // a8 13 29 2d 6d 97 c8 e2 4a 58 c4 44 62 9f 33 64 82 11 fe 29 b1 // e7 85 bc 39 ce 44 23 b6 9d 11 a4 5b 9c 0c 22 6d 9b c4 d2 13 97 // bd b7 a2 22 2f 9e da 6b d5 df cc 2b 53 e1 9a 3f 7b 35 d9 d0 9b // 00 51 de 94 e8 64 c0 4e ce d2 31 7b 6a b9 9c b3 45 6f 27 fe 60 // a0 85 ed 6a 33 df af 6c 42 4e 27 5a 76 e3 91 6c 04 6a c0 a1 b6 // 82 4f fd 0a d6 f0 32 7d b9 21 90 b9 50 fb 64 59 28 99 b4 60 7d // 56 85 52 4e 4f 84 47 91 bf 0c a1 96 3b b9 90 8f b2 8a 98 bd 00 // 9f be 8d b3 61 39 a2 b0 ca a3 d8 5a 61 1b 07 99 5d 87 c2 13 fb // 9e 8d 9c 82 96 34 b3 f0 9c 9a f6 77 dc 32 88 4e ba 89 a7 14 e1 // bb 5b 54 78 44 2b 50 31 e6 12 a2 20 95 6c 21 fd a6 b2 ef 21 57 // 8f 99 1f f3 30 ce 9d bb 13 97 39 88 76 9a 51 93 d0 05 ac 53 9c // 8f 14 16 7e 97 c0 1b 6d ec ea 52 42 3c 9b 35 54 47 d3 d6 ad 26 // 52 c7 cb 66 51 e2 2e c3 25 34 cc 59 9a 32 e8 c9 d4 c4 1d e8 d2 // b0 b4 ec 5f d0 12 fb 80 8c 63 3e ba cb c9 62 88 c3 1e 5e bf 58 // 47 d0 6f de c7 8c fe 54 c4 7e 98 40 b1 69 a5 62 ca ac 61 53 2f // df 77 5e 17 76 3e 58 df de e6 22 2d a8 39 a6 4e d8 ee 02 df eb // 72 fa 6b 4b ed 6e cb 74 aa 5b 70 bc 88 76 73 32 5c 2d e5 21 e6 // 57 2a 3d 02 58 14 3c 6e 77 61 a6 34 71 5d 15 c4 da d3 be f8 09 // e0 c5 f7 70 80 0b 10 7e ca 1b 3e 95 6e 1a 1e 6a 96 e1 00 73 66 // 3c 3a e7 ac 62 f6 11 15 69 0b ff 3e 6a dd 77 37 be e9 0b 4d 83 // ae f9 12 f7 83 bc 0a a9 ef 0c c7 29 46 8c f7 bc 8e d8 08 7f 16 // 9f d7 f7 80 98 39 1b 5a 07 8c 15 aa df 56 d7 2f 00 c1 eb e9 92 // 01 bb e7 9a bd dc 78 f7 b3 bc 4f 6d b1 9f ac 07 72 b2 02 ad c2 // 13 02 ef 9e 09 cc 81 10 95 a3 a3 d5 f9 d9 cc 2d 83 e9 fe de 5e // 67 5b 1d 79 02 32 65 51 2f 08 03 d0 d1 b1 a5 48 61 de 4a 4d 3a // da 4f b4 59 69 3f 6c a3 c6 49 49 59 6e e7 0f e6 33 64 6e d0 df // 58 95 1a 6b d1 67 c0 ad ab e9 ad 53 7e 8e a8 0a bd 09 cd 58 b6 // ff 39 6e 39 57 15 26 c3 5b f6 40 7c 6d 7a 5d c7 35 6a ab e2 c0 // c3 ad dc 65 d6 50 89 02 85 b4 d0 37 b5 b8 48 a4 05 80 4d 87 fe // 9c 27 d9 e2 b6 51 16 cd 6e 9f d2 5b bb db f5 44 5a 56 96 09 6c // 14 64 0b 46 7c ca d9 80 1c bc 42 41 94 cb b1 89 ad e7 55 b6 c1 // 82 e8 26 0e 5b 77 e5 5d 97 46 92 76 08 5a 99 9f 70 b1 9b 73 b7 // 1b cf d0 11 22 44 e0 e8 9b 87 69 f8 06 90 bc a6 e5 e8 6b ed 09 // 9c 63 45 d7 33 29 4c f8 16 66 3e 0c d7 f8 fc 26 4f 79 be 01 66 // 9d e2 ce 70 cb b7 d5 7b 97 46 65 a6 44 af ff c9 b5 21 69 3f 17 // 54 09 37 1e 05 6e 38 04 54 52 8a 27 41 2f 5e 92 0b 70 03 4c 81 // a0 b5 50 d8 ab 7d 4c b4 6d fe 04 f1 01 72 29 b4 45 fd f9 7c eb // 04 de b3 ad b5 23 02 ec 26 7f e0 02 59 00 60 d2 09 f2 2c 08 96 // 2f c7 f9 85 b9 71 53 b5 69 69 de c6 90 e5 b5 99 23 86 c6 60 79 // 78 88 4b 3a 6f 23 d3 44 e4 71 24 ed d0 21 78 10 69 5d 6a e7 cb // 16 b7 06 fa 72 82 12 ad ad 38 7d 18 a2 ce a5 9a 0c 17 d2 34 87 // 8e 14 2d 47 05 14 ae 36 51 0d 6a 6a 9e 81 1c 68 23 69 20 38 b3 // 89 86 a9 f5 b1 d2 a3 30 ad 59 9d 24 1d 63 b9 62 b8 15 ee 50 3c // 83 42 d2 d3 7a 1f 9d fe b4 fc f4 ab 3a 2d 7b 35 0f 3b 85 96 38 // e0 ff 9d 4c b3 56 c4 44 b9 74 3a af af a9 71 8e 72 91 86 e6 b1 // 87 1a bd 80 ee b9 8a 44 0b 43 f1 6f 7a c3 19 d3 cb 09 51 45 33 // d9 66 9e eb 6f 97 c4 59 bc 9b af 6a ed bc d7 fa 0d 72 c8 e2 2b // 94 52 4e 7c db 35 9f 96 d5 db d4 c1 62 19 96 ab b5 95 cf 7c 52 // 3b b6 9a 14 16 83 a1 0f 54 91 f5 05 b8 66 1c 7b 16 bd 86 fb 7a // b3 ad d4 94 b5 27 3b c0 34 27 4a 7d f9 2e b8 8c 4e 7c 10 1c c3 // fb 5e 4b e6 d1 7d 09 78 3c 2a c0 58 31 2f 60 93 f5 dc be 09 51 // 17 61 b7 62 31 69 06 72 b8 d7 8f 65 3c ec 28 4c 26 33 89 74 7b // 68 27 54 07 f1 34 68 e7 87 47 1e c6 9c 4f fc fa 67 3b c8 4e 26 // 33 30 08 2d d8 d4 42 b6 b1 08 4e c9 48 17 07 79 57 64 0c 0f d7 // 43 6d 96 86 71 b7 74 80 9b 67 d9 51 ae 68 50 cd 91 3a ff 90 49 // a4 f2 7b 5d 72 7f 4e 19 5b ad 1c b3 c6 6e 77 6c 86 6e a5 50 75 // f2 7c 29 e8 a0 e2 f9 f5 f5 79 61 25 98 f4 b1 a0 ba 1d 45 59 e6 // bd 64 74 9d 3c 59 49 f9 8a ab f0 67 f7 4d 76 0e c0 19 85 82 d8 // 60 fd 73 d1 04 86 f9 e3 de 9e ac 4a 70 07 74 2a 61 12 be 59 97 // e4 ad 1a b6 48 17 e0 15 ff dc 44 35 9e 46 84 e2 62 28 89 65 13 // ba 60 a9 f3 c1 93 36 dd 67 51 dc 1c fc b8 06 5c 51 08 87 97 21 // 0b c7 bc 59 f7 6c 3c 96 bd 8a fc 95 75 0d 02 63 82 aa 8f 97 de // f9 84 07 bd 02 1f 52 27 72 34 21 76 f5 55 07 05 0d 7e 76 b9 a5 // c9 ce 16 9e a7 f9 a1 be a1 d0 04 08 31 f9 15 b5 5e 1b d6 5d 5b // 4e 80 bc d0 6a 6d 5b c4 43 fe d1 95 9b 7f 33 bc 29 80 0a 15 30 // b8 ff ff 85 3d e9 d5 e5 8c 38 1f 39 c5 03 41 f7 61 b8 b4 53 05 // e7 de be 50 da c0 69 36 91 0b a8 c9 a8 ea 10 6b 83 6d a2 3f 9e // 3c f3 50 f8 c4 6d de ea 79 2d 69 36 63 01 73 53 58 9a 78 09 d1 // ef 2d ea 81 45 c3 33 8a 7f 9a ec d5 3e 7e e0 ca f1 55 71 67 2d // f8 76 9c 6b b3 90 a7 2d 72 91 03 f4 3d 8f bd b8 8c 52 cd e7 fb // ea ac 79 b1 ea 8f 9b 06 f5 16 8e e8 13 b6 9a 78 e0 51 38 0c 5f // 0a f2 25 a3 a7 b7 a6 3d 7c c3 ca ae 2a 6a 2d 3f 50 63 fa dc d9 // b7 80 95 d5 e6 16 94 12 f3 88 7e 62 19 7b 93 1d e8 be c2 45 13 // 58 ad 5c 4a 85 d7 f0 51 a2 00 8c c5 6d 46 79 ed d8 ef 39 1f 3c // c8 48 ab 13 81 b0 48 da af f9 77 58 8f e1 ce 6d d3 f0 c3 70 44 // 98 70 76 55 c7 79 0e c2 22 9e 0e 33 cc 50 14 77 d6 60 a1 4e f7 // 17 4b f2 d3 46 8f 77 99 75 92 66 21 c8 a4 cb 4a 2e 98 28 98 11 // e9 95 d3 54 0b 7d b0 56 38 03 8a fc b8 fa 49 79 af 7b 84 c8 dd // 8d 94 b5 ad 78 aa 0a 0d d6 b6 19 68 7d 90 90 73 71 d5 77 4e 63 // 33 c5 8f ce e4 38 a6 61 51 64 da f9 09 7d 05 47 42 76 f4 56 00 // f4 55 82 61 cb df 97 c1 09 93 a6 23 8c 4d 99 86 e1 0e f4 71 f9 // 43 35 dc b5 ae ab bb d1 9d 61 88 24 3a 78 48 06 ba a4 98 9a 5e // 00 a3 75 3f f6 47 58 36 c0 5b 4b 0c 44 08 15 1d 99 61 a4 2a 69 // 81 32 eb 69 5f 10 36 6d ce 67 3c 51 64 83 2b b2 e0 e2 81 b0 51 // 85 4f 97 23 f6 d0 01 ea 98 76 90 1c a1 d7 b3 ad f6 b4 70 ce 55 // e0 68 35 b8 df 0b 8a 8b 54 ad 17 57 ca 1c 4e 3b 2d 18 a8 03 78 // cc 4a 98 a3 cf d1 7b fd 92 68 83 12 e4 55 3a 06 5d 72 11 7f 39 // 3c 19 b0 9a 7a 94 27 78 5c 44 e7 60 03 0b 2f 80 92 49 5b 54 f1 // b2 27 be 6d a7 8e 0d 9f 67 d3 ad 79 51 32 77 a0 5f c5 b5 09 57 // c1 3e b4 67 7d 6d de eb 52 ae 62 da cf 01 1d 53 b5 30 4a a3 d9 // a6 ef ca c0 48 14 6d e0 35 99 00 09 bb 5e cb 24 3f 12 62 c2 62 // 94 52 b8 cc ca d1 7d 41 f8 2d 0e bd 85 95 9e f1 e7 8f 1d 17 32 // 4a 63 37 c7 85 f7 47 32 55 6c 0b f3 1f 33 63 63 18 d3 4f a5 80 // b1 25 ec cf 27 a4 da c0 db 28 41 a2 bf 0a c2 07 eb 23 24 2a f9 // 43 ba 19 9f 84 91 47 0a bd 9a 4e 27 7c 70 a9 be 6e f7 9d 82 3c // bf f4 50 ff 60 7d e9 41 69 24 f4 f6 55 74 99 8a 3b a0 43 67 5c // d1 2b b0 d7 3d fa af 9b 38 9e a0 53 d7 d6 84 4d 59 eb 53 9f 7f // 70 d0 dd e7 29 5b 81 85 85 4b cf 9b 82 a1 a5 03 67 1c 9d c6 cc // 7d d4 e9 49 86 39 fc 1d 58 a2 54 e7 88 d4 db 8d fb ff a3 ed 24 // 46 fc 82 33 6a d7 70 13 21 50 97 c8 7e cd 1b 58 96 7e 71 89 2b // 61 bd 57 51 21 d1 a3 3c 26 f2 12 ca 30 4b 80 e4 8d 26 34 0b 71 // 47 fc a4 84 3c a1 01 27 e6 36 c6 f4 e5 50 60 5f 22 0b c9 61 04 // 1e 89 39 3f 6e bf 81 eb de 73 d0 20 49 ef f5 42 ee 4f 86 6c 22 // 51 02 4c 71 90 ee 1c da ac f2 8f ea 89 cb 9f 14 03 83 a6 5a d2 // 0a a7 7f 45 d9 94 a0 df 07 60 db 0d 9a 0d 74 52 89 dd 14 2f 7d // 3c 37 7d 56 fc 91 bd c4 bc 8d d4 97 ea 7d 92 fb 40 6c 61 8e 16 // 84 79 f7 4c d7 fb 13 c4 65 24 fa 9d 09 83 72 83 70 ec 02 b7 8d // f9 67 92 49 8e 9e 1e c1 d6 02 cc b7 0d e3 1a 93 e6 46 00 b5 02 // 4f c2 35 38 06 de 3b a5 43 1e fd 74 5a bc db 01 2f f7 43 5b b1 // 53 8c 7c b7 d4 bc b9 2e de c1 2c a1 71 5d 65 5b 4d 5c 4d e3 b4 // 4c 86 8b 92 e4 2d 1e e6 0e 6f 0a 14 ca a7 5f a8 00 b6 fc c7 70 // f3 13 e0 90 df 6f bd 78 a4 ae 99 f0 9d f2 74 ef 9f 2a 0c 6f 57 // 31 65 e2 43 a0 45 3f 7b 5d a2 fb 4b aa 80 fb 3a 18 2f c3 0f 7b // f9 e0 4e 22 23 bc 3c b2 b7 0e b4 a1 e4 f9 77 98 fd f5 8a ec da // 7d b5 84 8f c6 2d 55 d4 fd 8d 91 11 33 8c 8e 77 cb 0e 41 2e 4f // b6 2c 09 10 e9 bc 14 53 62 85 b5 76 83 f5 53 b5 00 ce bf a8 3b // 01 9d c7 05 b7 67 78 1e 94 52 93 f6 b9 4b 32 5e 5e d8 98 0d f9 // c9 15 27 d4 e7 33 07 b3 b5 d9 2d 40 11 ae d4 18 3f e6 6c f1 bc // f0 9f fb c4 db 7c 10 72 1f 67 a4 99 08 d1 48 2b 8a 10 3b 34 05 // 4f 39 40 61 45 db 48 5d 65 2e b5 fb d5 a7 b2 96 d3 ae 65 4b df // b1 34 5d 1b 0c e0 17 ee e5 c0 51 4d ab d5 02 23 03 5e 33 ff 66 // 86 89 ba 30 4e 10 91 12 4f 11 1c a7 be 20 f3 d5 7f 9c c4 0d d6 // 3f 5b a3 5b af 7c 94 57 20 64 eb ab 34 64 51 7f 72 87 46 26 6f // 66 25 0f 24 2c 37 dc 81 5d 97 86 84 74 66 cd 9f 9d 39 39 87 64 // 44 13 40 0e c9 b0 26 9d 98 a4 ef 64 36 7c b0 8f e3 92 69 41 82 // e1 3d 1f 3e 50 e1 78 19 fe f5 d3 22 2f cd 55 25 6c ce 42 80 4c // d6 c7 77 7d a4 42 c1 fe 87 a9 36 43 89 fc df b4 9b bc 57 6a ae // 67 ff 0b c8 c3 4a ae 77 51 74 19 e5 0e 1a 89 77 6f fc 66 74 4c // 39 5f 74 e8 5a d0 35 a4 f9 4e 34 44 9e 4d ea 33 71 58 eb 0a f9 // 59 ee e8 d7 5b a3 9f 10 a6 1d c3 41 3a 2f bf 84 93 e4 09 55 f6 // 6e 99 64 76 e9 5a ed e9 7b ce 12 91 72 0d f6 23 08 48 71 0f 45 // 2a de 69 83 5d 67 ef e5 f0 88 ed 88 fe 14 37 7a 11 7c 5d 86 08 // 9c aa d0 4f 62 b6 f5 50 f5 19 3e c7 74 bc b6 19 7a 09 38 56 87 // 31 7a 37 af ac bf 1f 4e c1 ce ec 5b 1f 28 8c 00 18 8d b0 3b 9d // 03 e0 b7 c1 0c d4 4e a0 23 a9 07 25 51 1b 34 41 e0 2b da 92 4f // 37 a8 7b 56 c3 41 f9 7c 1a 01 f5 2e a7 e7 c1 6b 75 3f d3 1f d7 // f8 6f 9e c3 4a f9 b3 84 29 4f 94 68 8e fa b4 e5 9e ee 3b d6 27 // 79 4c 47 ed 04 56 6a bb 95 18 49 21 11 7d e0 87 26 ee 1a 94 0f // 5d f4 f4 fb 09 0f 57 db 2a 96 44 7f 94 29 a2 82 b9 b2 f6 cd d2 // 62 5a 5c aa c3 28 d0 6e 91 be 01 eb e8 a4 df 6b 97 84 c7 5e c2 // 47 8f ea 37 80 c3 52 25 eb 65 b6 d8 83 09 29 a1 7c 6c be a5 b1 // 1b a3 14 2d 9a 4c 93 47 f5 9a df c5 9a 87 03 62 34 68 66 04 d9 // a7 11 0b 93 97 56 57 1f 5b bf a8 3a b1 c8 bc 7a 1d d1 e4 d2 ac // f2 29 2b a3 3e 2f ea 77 0c df 46 1d 00 84 c1 32 4a 76 c1 c6 71 // 34 ee 53 40 71 bb 51 6b a6 ff 71 7e 52 c9 37 49 d0 25 99 87 a5 // 63 b0 88 b7 db d4 89 a3 88 0f f8 13 a6 1a 14 f1 12 16 31 1f 9c // 59 4f 1e e2 b4 73 d4 28 ee 0f fd 0a f4 40 cb e7 85 7f 6d 2c 3c // ff a4 93 3d 1c 47 6d 08 c7 42 0f f6 99 47 bf 52 1c 5f e0 e1 89 // 78 09 c1 32 0c 9f 5f ab cf fd ca d5 59 7e 95 1a da 8b b3 d1 0b // 55 8a aa a3 61 e7 98 44 7b 9d 3f 3d 91 1d b7 43 d1 ed a1 5c b1 // 33 7c 95 fe 96 68 b9 cd b1 c0 08 41 05 53 5f 23 eb fb f0 d4 6a // 01 4f a4 78 9d 67 77 3f 16 41 78 e4 e6 a8 14 0a ff d8 65 33 f8 // 71 7e 88 e2 9f aa 2d 05 18 42 75 51 b6 44 7c a4 d0 0b 2c a2 d5 // 88 9e b3 e8 a7 60 ea ca da c9 ec 54 33 99 0c 34 e5 ad 40 86 ef // 3b e2 65 0f 13 65 91 3c c8 bc 0e 92 ef ad 6f 31 77 e8 b2 da a1 // 1f 8f b0 d5 59 55 de c9 92 02 31 37 90 7d 57 36 75 3b 93 3a ab // fd f2 ee ee ed a6 3c ec 25 c5 55 38 89 fb 30 2f b0 eb 0d ff d1 // a8 d7 ae 11 a6 60 4b b9 da 43 10 cb 3c fd a9 a2 bb 30 92 e1 94 // 4b 87 e3 5b 7b e5 30 c1 4c 50 32 43 66 9f a7 d6 1c 6b 28 8d 36 // bd c5 07 3d a2 5c 4f f6 01 a0 70 17 ea 64 d4 2f f7 8e b2 57 1b // 69 28 f0 a5 0c 2c 5e 91 b5 cb 0d 0a d0 c2 d0 ce 79 e6 e8 7d 34 // 48 59 24 e8 01 ef 55 c4 0e c4 3f 91 10 97 0f 23 12 e1 3a 03 86 // 8c 39 57 63 80 36 59 13 67 f8 5f 65 1e 1e d0 d1 82 29 3f 60 91 // eb 3d a2 d3 e4 08 dd 77 b9 e5 59 5d 3a 94 40 4f c6 8d 40 0c 13 // 7d a6 67 b9 97 e4 91 40 0b 6f 1f cc a8 14 89 49 d3 f8 3d 2c 67 // 0f 41 d2 db 52 2f 56 54 ac aa 04 4c 6a 29 1b 93 0b e1 54 1b 21 // cf 8b b8 3f 11 1c 80 e3 24 ea fe d2 13 20 33 22 ff 42 50 e4 e3 // 2f dd 6f 1f 6a 40 bb d3 0c 3c a3 bc 92 2f 29 e3 6d b5 85 3d fc // 7b 39 73 fe 29 c3 70 87 93 ed 19 db 6f e9 ee ba 3c 9a 55 81 3b // e7 2a 6f b1 3f cc 28 51 dc 9d d8 41 b3 9d ac 9b 6e 90 bf 1b 75 // bd 05 49 5d 39 a7 40 54 ba 09 aa 53 3f 5f de 0a 22 34 6c 89 a5 // 57 1b 7b b1 d2 05 8c 80 f4 8a e3 0b 22 19 c5 a7 00 3e d4 80 5f // e9 69 46 6c 8d d3 5c d5 47 be 70 9c ac 96 1e a6 b8 54 24 8b 0a // bd 68 61 61 5d 98 04 90 26 49 5f d4 08 0c a1 f4 12 6e 8d e1 e4 // d0 10 ff bd 8b 92 de d3 06 d7 e6 ac 24 89 21 3a 44 01 d6 5d d5 // ab 1b 0b d6 55 5e 48 22 65 02 53 a5 e9 05 56 50 ef 56 7c 5f 36 // 7e 7b be 1a 52 11 a5 ba c8 db f2 a4 f9 e6 5c af a6 6f c9 84 1c // 3f d9 73 58 f7 8f 61 3d d6 45 79 4a 3d 2e 64 d4 86 c9 48 81 f1 // ba e5 34 c3 eb 74 d2 f2 ec e8 96 69 22 6d ed 80 ad 3d 05 4f 9e // 65 89 4e a8 cb e9 32 a3 2c 2b 03 25 73 44 1e 1e f0 16 ba e5 32 // d3 55 0c 86 e1 80 d2 14 85 20 89 64 a6 39 28 bc d3 e9 7d ae 7a // 03 1c 13 a9 56 c9 88 ca 09 3f d0 20 ec 8e bf c5 69 3c 2a 09 d9 // 9b 12 17 11 29 96 03 1a c9 f2 0c db bf d1 91 48 af 17 ae 56 57 // 22 14 5c c3} (length 0x1000) // } // len: len = 0x1000 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // iovec[in, array[int8]] { // addr: nil // len: len = 0x0 (8 bytes) // } // } // } // vlen: len = 0x9 (8 bytes) // off_low: int32 = 0x7 (4 bytes) // off_high: int32 = 0x0 (4 bytes) // flags: rwf_flags = 0x15 (8 bytes) // ] *(uint64_t*)0x200000001c40 = 0x200000000780; memcpy( (void*)0x200000000780, "\xa4\x4f\x98\x25\x35\x8c\x01\x34\x12\x7e\xda\xfb\x7a\x84\x58\xd5\x69\xfd" "\x57\x53\x5d\x76\xf9\x66\xa9\x1b\xdd\x00\x10\xfa\xad\xdb\x1d\x1f\xb9\x10" "\x6e\x47\x4c\x12\xe8\xe6\xb5\x94\x5e\x12\x71\xc9\x84\xa9\xfe\x5d\xa8\x2e" "\x24\xe6\xa7\x0b\x5e\x72\x8f\x83\x0e\x3a\x85\x44\x22\x83\x67\xf8\x25\x68" "\xef\xce\xe4\x70\xef\x23\x31\x50\x46\x6b\x1b\x01\x4a\x5a\xfd\x01\x04\x68" "\x6a\x6b\xf1\x1e\x33\x02\x23\x4f\xe1\x46\x37\x43\xd5\xb0\x45\x5f\x92\x21" "\x78\xb1\x27\xc5\xcc\xa9\xac\x4d\x1c\x33\x8a\x09\xcc\x00\x13\x8b\x6b\x84" "\x68\xcf\xab\xd8\xfe\xe4\x55\x81\x0c\x69\x4d\x83\x3e\x7a\x99\xb3\xe4\x52" "\x8a\xc1\xd8\x46\x06\xfa\x6b\x72\x4a\xe3\x43\x1e\xb1\x8e\x94\x15\x70\xf4" "\x19\x0b\x74\x9f\x13\x88\x87\xe9\xf2\x17\x5d\x3d\xe0\xa1\x15\x7d\x00\xd4" "\xb4\x26\x1d\x5f\xa0\x51\xe7\x0c\xa8\xe1\x2d\x0c\x01\x55\xc4\x2c\x1e\x85" "\x6f\x98\xb3\xc4\x45\x82\xf9\xeb\x6f\x99\x5e\xb8\x69\xff\x5b\x8f\x88\x28" "\x6f\x96\x77\xa8\x3b\xbb\x10\xb7\x65\x6b\xbe\x49\x8e\x90\xe3\x36\x7e\x4d" "\x5f\x11\x31\x22\xa6\xcd\xae\x0a\x0c\x7f\xa1\x56\x2d\x92\x4a\xa8\x13\x29" "\x2d\x6d\x97\xc8\xe2\x4a\x58\xc4\x44\x62\x9f\x33\x64\x82\x11\xfe\x29\xb1" "\xe7\x85\xbc\x39\xce\x44\x23\xb6\x9d\x11\xa4\x5b\x9c\x0c\x22\x6d\x9b\xc4" "\xd2\x13\x97\xbd\xb7\xa2\x22\x2f\x9e\xda\x6b\xd5\xdf\xcc\x2b\x53\xe1\x9a" "\x3f\x7b\x35\xd9\xd0\x9b\x00\x51\xde\x94\xe8\x64\xc0\x4e\xce\xd2\x31\x7b" "\x6a\xb9\x9c\xb3\x45\x6f\x27\xfe\x60\xa0\x85\xed\x6a\x33\xdf\xaf\x6c\x42" "\x4e\x27\x5a\x76\xe3\x91\x6c\x04\x6a\xc0\xa1\xb6\x82\x4f\xfd\x0a\xd6\xf0" "\x32\x7d\xb9\x21\x90\xb9\x50\xfb\x64\x59\x28\x99\xb4\x60\x7d\x56\x85\x52" "\x4e\x4f\x84\x47\x91\xbf\x0c\xa1\x96\x3b\xb9\x90\x8f\xb2\x8a\x98\xbd\x00" "\x9f\xbe\x8d\xb3\x61\x39\xa2\xb0\xca\xa3\xd8\x5a\x61\x1b\x07\x99\x5d\x87" "\xc2\x13\xfb\x9e\x8d\x9c\x82\x96\x34\xb3\xf0\x9c\x9a\xf6\x77\xdc\x32\x88" "\x4e\xba\x89\xa7\x14\xe1\xbb\x5b\x54\x78\x44\x2b\x50\x31\xe6\x12\xa2\x20" "\x95\x6c\x21\xfd\xa6\xb2\xef\x21\x57\x8f\x99\x1f\xf3\x30\xce\x9d\xbb\x13" "\x97\x39\x88\x76\x9a\x51\x93\xd0\x05\xac\x53\x9c\x8f\x14\x16\x7e\x97\xc0" "\x1b\x6d\xec\xea\x52\x42\x3c\x9b\x35\x54\x47\xd3\xd6\xad\x26\x52\xc7\xcb" "\x66\x51\xe2\x2e\xc3\x25\x34\xcc\x59\x9a\x32\xe8\xc9\xd4\xc4\x1d\xe8\xd2" "\xb0\xb4\xec\x5f\xd0\x12\xfb\x80\x8c\x63\x3e\xba\xcb\xc9\x62\x88\xc3\x1e" "\x5e\xbf\x58\x47\xd0\x6f\xde\xc7\x8c\xfe\x54\xc4\x7e\x98\x40\xb1\x69\xa5" "\x62\xca\xac\x61\x53\x2f\xdf\x77\x5e\x17\x76\x3e\x58\xdf\xde\xe6\x22\x2d" "\xa8\x39\xa6\x4e\xd8\xee\x02\xdf\xeb\x72\xfa\x6b\x4b\xed\x6e\xcb\x74\xaa" "\x5b\x70\xbc\x88\x76\x73\x32\x5c\x2d\xe5\x21\xe6\x57\x2a\x3d\x02\x58\x14" "\x3c\x6e\x77\x61\xa6\x34\x71\x5d\x15\xc4\xda\xd3\xbe\xf8\x09\xe0\xc5\xf7" "\x70\x80\x0b\x10\x7e\xca\x1b\x3e\x95\x6e\x1a\x1e\x6a\x96\xe1\x00\x73\x66" "\x3c\x3a\xe7\xac\x62\xf6\x11\x15\x69\x0b\xff\x3e\x6a\xdd\x77\x37\xbe\xe9" "\x0b\x4d\x83\xae\xf9\x12\xf7\x83\xbc\x0a\xa9\xef\x0c\xc7\x29\x46\x8c\xf7" "\xbc\x8e\xd8\x08\x7f\x16\x9f\xd7\xf7\x80\x98\x39\x1b\x5a\x07\x8c\x15\xaa" "\xdf\x56\xd7\x2f\x00\xc1\xeb\xe9\x92\x01\xbb\xe7\x9a\xbd\xdc\x78\xf7\xb3" "\xbc\x4f\x6d\xb1\x9f\xac\x07\x72\xb2\x02\xad\xc2\x13\x02\xef\x9e\x09\xcc" "\x81\x10\x95\xa3\xa3\xd5\xf9\xd9\xcc\x2d\x83\xe9\xfe\xde\x5e\x67\x5b\x1d" "\x79\x02\x32\x65\x51\x2f\x08\x03\xd0\xd1\xb1\xa5\x48\x61\xde\x4a\x4d\x3a" "\xda\x4f\xb4\x59\x69\x3f\x6c\xa3\xc6\x49\x49\x59\x6e\xe7\x0f\xe6\x33\x64" "\x6e\xd0\xdf\x58\x95\x1a\x6b\xd1\x67\xc0\xad\xab\xe9\xad\x53\x7e\x8e\xa8" "\x0a\xbd\x09\xcd\x58\xb6\xff\x39\x6e\x39\x57\x15\x26\xc3\x5b\xf6\x40\x7c" "\x6d\x7a\x5d\xc7\x35\x6a\xab\xe2\xc0\xc3\xad\xdc\x65\xd6\x50\x89\x02\x85" "\xb4\xd0\x37\xb5\xb8\x48\xa4\x05\x80\x4d\x87\xfe\x9c\x27\xd9\xe2\xb6\x51" "\x16\xcd\x6e\x9f\xd2\x5b\xbb\xdb\xf5\x44\x5a\x56\x96\x09\x6c\x14\x64\x0b" "\x46\x7c\xca\xd9\x80\x1c\xbc\x42\x41\x94\xcb\xb1\x89\xad\xe7\x55\xb6\xc1" "\x82\xe8\x26\x0e\x5b\x77\xe5\x5d\x97\x46\x92\x76\x08\x5a\x99\x9f\x70\xb1" "\x9b\x73\xb7\x1b\xcf\xd0\x11\x22\x44\xe0\xe8\x9b\x87\x69\xf8\x06\x90\xbc" "\xa6\xe5\xe8\x6b\xed\x09\x9c\x63\x45\xd7\x33\x29\x4c\xf8\x16\x66\x3e\x0c" "\xd7\xf8\xfc\x26\x4f\x79\xbe\x01\x66\x9d\xe2\xce\x70\xcb\xb7\xd5\x7b\x97" "\x46\x65\xa6\x44\xaf\xff\xc9\xb5\x21\x69\x3f\x17\x54\x09\x37\x1e\x05\x6e" "\x38\x04\x54\x52\x8a\x27\x41\x2f\x5e\x92\x0b\x70\x03\x4c\x81\xa0\xb5\x50" "\xd8\xab\x7d\x4c\xb4\x6d\xfe\x04\xf1\x01\x72\x29\xb4\x45\xfd\xf9\x7c\xeb" "\x04\xde\xb3\xad\xb5\x23\x02\xec\x26\x7f\xe0\x02\x59\x00\x60\xd2\x09\xf2" "\x2c\x08\x96\x2f\xc7\xf9\x85\xb9\x71\x53\xb5\x69\x69\xde\xc6\x90\xe5\xb5" "\x99\x23\x86\xc6\x60\x79\x78\x88\x4b\x3a\x6f\x23\xd3\x44\xe4\x71\x24\xed" "\xd0\x21\x78\x10\x69\x5d\x6a\xe7\xcb\x16\xb7\x06\xfa\x72\x82\x12\xad\xad" "\x38\x7d\x18\xa2\xce\xa5\x9a\x0c\x17\xd2\x34\x87\x8e\x14\x2d\x47\x05\x14" "\xae\x36\x51\x0d\x6a\x6a\x9e\x81\x1c\x68\x23\x69\x20\x38\xb3\x89\x86\xa9" "\xf5\xb1\xd2\xa3\x30\xad\x59\x9d\x24\x1d\x63\xb9\x62\xb8\x15\xee\x50\x3c" "\x83\x42\xd2\xd3\x7a\x1f\x9d\xfe\xb4\xfc\xf4\xab\x3a\x2d\x7b\x35\x0f\x3b" "\x85\x96\x38\xe0\xff\x9d\x4c\xb3\x56\xc4\x44\xb9\x74\x3a\xaf\xaf\xa9\x71" "\x8e\x72\x91\x86\xe6\xb1\x87\x1a\xbd\x80\xee\xb9\x8a\x44\x0b\x43\xf1\x6f" "\x7a\xc3\x19\xd3\xcb\x09\x51\x45\x33\xd9\x66\x9e\xeb\x6f\x97\xc4\x59\xbc" "\x9b\xaf\x6a\xed\xbc\xd7\xfa\x0d\x72\xc8\xe2\x2b\x94\x52\x4e\x7c\xdb\x35" "\x9f\x96\xd5\xdb\xd4\xc1\x62\x19\x96\xab\xb5\x95\xcf\x7c\x52\x3b\xb6\x9a" "\x14\x16\x83\xa1\x0f\x54\x91\xf5\x05\xb8\x66\x1c\x7b\x16\xbd\x86\xfb\x7a" "\xb3\xad\xd4\x94\xb5\x27\x3b\xc0\x34\x27\x4a\x7d\xf9\x2e\xb8\x8c\x4e\x7c" "\x10\x1c\xc3\xfb\x5e\x4b\xe6\xd1\x7d\x09\x78\x3c\x2a\xc0\x58\x31\x2f\x60" "\x93\xf5\xdc\xbe\x09\x51\x17\x61\xb7\x62\x31\x69\x06\x72\xb8\xd7\x8f\x65" "\x3c\xec\x28\x4c\x26\x33\x89\x74\x7b\x68\x27\x54\x07\xf1\x34\x68\xe7\x87" "\x47\x1e\xc6\x9c\x4f\xfc\xfa\x67\x3b\xc8\x4e\x26\x33\x30\x08\x2d\xd8\xd4" "\x42\xb6\xb1\x08\x4e\xc9\x48\x17\x07\x79\x57\x64\x0c\x0f\xd7\x43\x6d\x96" "\x86\x71\xb7\x74\x80\x9b\x67\xd9\x51\xae\x68\x50\xcd\x91\x3a\xff\x90\x49" "\xa4\xf2\x7b\x5d\x72\x7f\x4e\x19\x5b\xad\x1c\xb3\xc6\x6e\x77\x6c\x86\x6e" "\xa5\x50\x75\xf2\x7c\x29\xe8\xa0\xe2\xf9\xf5\xf5\x79\x61\x25\x98\xf4\xb1" "\xa0\xba\x1d\x45\x59\xe6\xbd\x64\x74\x9d\x3c\x59\x49\xf9\x8a\xab\xf0\x67" "\xf7\x4d\x76\x0e\xc0\x19\x85\x82\xd8\x60\xfd\x73\xd1\x04\x86\xf9\xe3\xde" "\x9e\xac\x4a\x70\x07\x74\x2a\x61\x12\xbe\x59\x97\xe4\xad\x1a\xb6\x48\x17" "\xe0\x15\xff\xdc\x44\x35\x9e\x46\x84\xe2\x62\x28\x89\x65\x13\xba\x60\xa9" "\xf3\xc1\x93\x36\xdd\x67\x51\xdc\x1c\xfc\xb8\x06\x5c\x51\x08\x87\x97\x21" "\x0b\xc7\xbc\x59\xf7\x6c\x3c\x96\xbd\x8a\xfc\x95\x75\x0d\x02\x63\x82\xaa" "\x8f\x97\xde\xf9\x84\x07\xbd\x02\x1f\x52\x27\x72\x34\x21\x76\xf5\x55\x07" "\x05\x0d\x7e\x76\xb9\xa5\xc9\xce\x16\x9e\xa7\xf9\xa1\xbe\xa1\xd0\x04\x08" "\x31\xf9\x15\xb5\x5e\x1b\xd6\x5d\x5b\x4e\x80\xbc\xd0\x6a\x6d\x5b\xc4\x43" "\xfe\xd1\x95\x9b\x7f\x33\xbc\x29\x80\x0a\x15\x30\xb8\xff\xff\x85\x3d\xe9" "\xd5\xe5\x8c\x38\x1f\x39\xc5\x03\x41\xf7\x61\xb8\xb4\x53\x05\xe7\xde\xbe" "\x50\xda\xc0\x69\x36\x91\x0b\xa8\xc9\xa8\xea\x10\x6b\x83\x6d\xa2\x3f\x9e" "\x3c\xf3\x50\xf8\xc4\x6d\xde\xea\x79\x2d\x69\x36\x63\x01\x73\x53\x58\x9a" "\x78\x09\xd1\xef\x2d\xea\x81\x45\xc3\x33\x8a\x7f\x9a\xec\xd5\x3e\x7e\xe0" "\xca\xf1\x55\x71\x67\x2d\xf8\x76\x9c\x6b\xb3\x90\xa7\x2d\x72\x91\x03\xf4" "\x3d\x8f\xbd\xb8\x8c\x52\xcd\xe7\xfb\xea\xac\x79\xb1\xea\x8f\x9b\x06\xf5" "\x16\x8e\xe8\x13\xb6\x9a\x78\xe0\x51\x38\x0c\x5f\x0a\xf2\x25\xa3\xa7\xb7" "\xa6\x3d\x7c\xc3\xca\xae\x2a\x6a\x2d\x3f\x50\x63\xfa\xdc\xd9\xb7\x80\x95" "\xd5\xe6\x16\x94\x12\xf3\x88\x7e\x62\x19\x7b\x93\x1d\xe8\xbe\xc2\x45\x13" "\x58\xad\x5c\x4a\x85\xd7\xf0\x51\xa2\x00\x8c\xc5\x6d\x46\x79\xed\xd8\xef" "\x39\x1f\x3c\xc8\x48\xab\x13\x81\xb0\x48\xda\xaf\xf9\x77\x58\x8f\xe1\xce" "\x6d\xd3\xf0\xc3\x70\x44\x98\x70\x76\x55\xc7\x79\x0e\xc2\x22\x9e\x0e\x33" "\xcc\x50\x14\x77\xd6\x60\xa1\x4e\xf7\x17\x4b\xf2\xd3\x46\x8f\x77\x99\x75" "\x92\x66\x21\xc8\xa4\xcb\x4a\x2e\x98\x28\x98\x11\xe9\x95\xd3\x54\x0b\x7d" "\xb0\x56\x38\x03\x8a\xfc\xb8\xfa\x49\x79\xaf\x7b\x84\xc8\xdd\x8d\x94\xb5" "\xad\x78\xaa\x0a\x0d\xd6\xb6\x19\x68\x7d\x90\x90\x73\x71\xd5\x77\x4e\x63" "\x33\xc5\x8f\xce\xe4\x38\xa6\x61\x51\x64\xda\xf9\x09\x7d\x05\x47\x42\x76" "\xf4\x56\x00\xf4\x55\x82\x61\xcb\xdf\x97\xc1\x09\x93\xa6\x23\x8c\x4d\x99" "\x86\xe1\x0e\xf4\x71\xf9\x43\x35\xdc\xb5\xae\xab\xbb\xd1\x9d\x61\x88\x24" "\x3a\x78\x48\x06\xba\xa4\x98\x9a\x5e\x00\xa3\x75\x3f\xf6\x47\x58\x36\xc0" "\x5b\x4b\x0c\x44\x08\x15\x1d\x99\x61\xa4\x2a\x69\x81\x32\xeb\x69\x5f\x10" "\x36\x6d\xce\x67\x3c\x51\x64\x83\x2b\xb2\xe0\xe2\x81\xb0\x51\x85\x4f\x97" "\x23\xf6\xd0\x01\xea\x98\x76\x90\x1c\xa1\xd7\xb3\xad\xf6\xb4\x70\xce\x55" "\xe0\x68\x35\xb8\xdf\x0b\x8a\x8b\x54\xad\x17\x57\xca\x1c\x4e\x3b\x2d\x18" "\xa8\x03\x78\xcc\x4a\x98\xa3\xcf\xd1\x7b\xfd\x92\x68\x83\x12\xe4\x55\x3a" "\x06\x5d\x72\x11\x7f\x39\x3c\x19\xb0\x9a\x7a\x94\x27\x78\x5c\x44\xe7\x60" "\x03\x0b\x2f\x80\x92\x49\x5b\x54\xf1\xb2\x27\xbe\x6d\xa7\x8e\x0d\x9f\x67" "\xd3\xad\x79\x51\x32\x77\xa0\x5f\xc5\xb5\x09\x57\xc1\x3e\xb4\x67\x7d\x6d" "\xde\xeb\x52\xae\x62\xda\xcf\x01\x1d\x53\xb5\x30\x4a\xa3\xd9\xa6\xef\xca" "\xc0\x48\x14\x6d\xe0\x35\x99\x00\x09\xbb\x5e\xcb\x24\x3f\x12\x62\xc2\x62" "\x94\x52\xb8\xcc\xca\xd1\x7d\x41\xf8\x2d\x0e\xbd\x85\x95\x9e\xf1\xe7\x8f" "\x1d\x17\x32\x4a\x63\x37\xc7\x85\xf7\x47\x32\x55\x6c\x0b\xf3\x1f\x33\x63" "\x63\x18\xd3\x4f\xa5\x80\xb1\x25\xec\xcf\x27\xa4\xda\xc0\xdb\x28\x41\xa2" "\xbf\x0a\xc2\x07\xeb\x23\x24\x2a\xf9\x43\xba\x19\x9f\x84\x91\x47\x0a\xbd" "\x9a\x4e\x27\x7c\x70\xa9\xbe\x6e\xf7\x9d\x82\x3c\xbf\xf4\x50\xff\x60\x7d" "\xe9\x41\x69\x24\xf4\xf6\x55\x74\x99\x8a\x3b\xa0\x43\x67\x5c\xd1\x2b\xb0" "\xd7\x3d\xfa\xaf\x9b\x38\x9e\xa0\x53\xd7\xd6\x84\x4d\x59\xeb\x53\x9f\x7f" "\x70\xd0\xdd\xe7\x29\x5b\x81\x85\x85\x4b\xcf\x9b\x82\xa1\xa5\x03\x67\x1c" "\x9d\xc6\xcc\x7d\xd4\xe9\x49\x86\x39\xfc\x1d\x58\xa2\x54\xe7\x88\xd4\xdb" "\x8d\xfb\xff\xa3\xed\x24\x46\xfc\x82\x33\x6a\xd7\x70\x13\x21\x50\x97\xc8" "\x7e\xcd\x1b\x58\x96\x7e\x71\x89\x2b\x61\xbd\x57\x51\x21\xd1\xa3\x3c\x26" "\xf2\x12\xca\x30\x4b\x80\xe4\x8d\x26\x34\x0b\x71\x47\xfc\xa4\x84\x3c\xa1" "\x01\x27\xe6\x36\xc6\xf4\xe5\x50\x60\x5f\x22\x0b\xc9\x61\x04\x1e\x89\x39" "\x3f\x6e\xbf\x81\xeb\xde\x73\xd0\x20\x49\xef\xf5\x42\xee\x4f\x86\x6c\x22" "\x51\x02\x4c\x71\x90\xee\x1c\xda\xac\xf2\x8f\xea\x89\xcb\x9f\x14\x03\x83" "\xa6\x5a\xd2\x0a\xa7\x7f\x45\xd9\x94\xa0\xdf\x07\x60\xdb\x0d\x9a\x0d\x74" "\x52\x89\xdd\x14\x2f\x7d\x3c\x37\x7d\x56\xfc\x91\xbd\xc4\xbc\x8d\xd4\x97" "\xea\x7d\x92\xfb\x40\x6c\x61\x8e\x16\x84\x79\xf7\x4c\xd7\xfb\x13\xc4\x65" "\x24\xfa\x9d\x09\x83\x72\x83\x70\xec\x02\xb7\x8d\xf9\x67\x92\x49\x8e\x9e" "\x1e\xc1\xd6\x02\xcc\xb7\x0d\xe3\x1a\x93\xe6\x46\x00\xb5\x02\x4f\xc2\x35" "\x38\x06\xde\x3b\xa5\x43\x1e\xfd\x74\x5a\xbc\xdb\x01\x2f\xf7\x43\x5b\xb1" "\x53\x8c\x7c\xb7\xd4\xbc\xb9\x2e\xde\xc1\x2c\xa1\x71\x5d\x65\x5b\x4d\x5c" "\x4d\xe3\xb4\x4c\x86\x8b\x92\xe4\x2d\x1e\xe6\x0e\x6f\x0a\x14\xca\xa7\x5f" "\xa8\x00\xb6\xfc\xc7\x70\xf3\x13\xe0\x90\xdf\x6f\xbd\x78\xa4\xae\x99\xf0" "\x9d\xf2\x74\xef\x9f\x2a\x0c\x6f\x57\x31\x65\xe2\x43\xa0\x45\x3f\x7b\x5d" "\xa2\xfb\x4b\xaa\x80\xfb\x3a\x18\x2f\xc3\x0f\x7b\xf9\xe0\x4e\x22\x23\xbc" "\x3c\xb2\xb7\x0e\xb4\xa1\xe4\xf9\x77\x98\xfd\xf5\x8a\xec\xda\x7d\xb5\x84" "\x8f\xc6\x2d\x55\xd4\xfd\x8d\x91\x11\x33\x8c\x8e\x77\xcb\x0e\x41\x2e\x4f" "\xb6\x2c\x09\x10\xe9\xbc\x14\x53\x62\x85\xb5\x76\x83\xf5\x53\xb5\x00\xce" "\xbf\xa8\x3b\x01\x9d\xc7\x05\xb7\x67\x78\x1e\x94\x52\x93\xf6\xb9\x4b\x32" "\x5e\x5e\xd8\x98\x0d\xf9\xc9\x15\x27\xd4\xe7\x33\x07\xb3\xb5\xd9\x2d\x40" "\x11\xae\xd4\x18\x3f\xe6\x6c\xf1\xbc\xf0\x9f\xfb\xc4\xdb\x7c\x10\x72\x1f" "\x67\xa4\x99\x08\xd1\x48\x2b\x8a\x10\x3b\x34\x05\x4f\x39\x40\x61\x45\xdb" "\x48\x5d\x65\x2e\xb5\xfb\xd5\xa7\xb2\x96\xd3\xae\x65\x4b\xdf\xb1\x34\x5d" "\x1b\x0c\xe0\x17\xee\xe5\xc0\x51\x4d\xab\xd5\x02\x23\x03\x5e\x33\xff\x66" "\x86\x89\xba\x30\x4e\x10\x91\x12\x4f\x11\x1c\xa7\xbe\x20\xf3\xd5\x7f\x9c" "\xc4\x0d\xd6\x3f\x5b\xa3\x5b\xaf\x7c\x94\x57\x20\x64\xeb\xab\x34\x64\x51" "\x7f\x72\x87\x46\x26\x6f\x66\x25\x0f\x24\x2c\x37\xdc\x81\x5d\x97\x86\x84" "\x74\x66\xcd\x9f\x9d\x39\x39\x87\x64\x44\x13\x40\x0e\xc9\xb0\x26\x9d\x98" "\xa4\xef\x64\x36\x7c\xb0\x8f\xe3\x92\x69\x41\x82\xe1\x3d\x1f\x3e\x50\xe1" "\x78\x19\xfe\xf5\xd3\x22\x2f\xcd\x55\x25\x6c\xce\x42\x80\x4c\xd6\xc7\x77" "\x7d\xa4\x42\xc1\xfe\x87\xa9\x36\x43\x89\xfc\xdf\xb4\x9b\xbc\x57\x6a\xae" "\x67\xff\x0b\xc8\xc3\x4a\xae\x77\x51\x74\x19\xe5\x0e\x1a\x89\x77\x6f\xfc" "\x66\x74\x4c\x39\x5f\x74\xe8\x5a\xd0\x35\xa4\xf9\x4e\x34\x44\x9e\x4d\xea" "\x33\x71\x58\xeb\x0a\xf9\x59\xee\xe8\xd7\x5b\xa3\x9f\x10\xa6\x1d\xc3\x41" "\x3a\x2f\xbf\x84\x93\xe4\x09\x55\xf6\x6e\x99\x64\x76\xe9\x5a\xed\xe9\x7b" "\xce\x12\x91\x72\x0d\xf6\x23\x08\x48\x71\x0f\x45\x2a\xde\x69\x83\x5d\x67" "\xef\xe5\xf0\x88\xed\x88\xfe\x14\x37\x7a\x11\x7c\x5d\x86\x08\x9c\xaa\xd0" "\x4f\x62\xb6\xf5\x50\xf5\x19\x3e\xc7\x74\xbc\xb6\x19\x7a\x09\x38\x56\x87" "\x31\x7a\x37\xaf\xac\xbf\x1f\x4e\xc1\xce\xec\x5b\x1f\x28\x8c\x00\x18\x8d" "\xb0\x3b\x9d\x03\xe0\xb7\xc1\x0c\xd4\x4e\xa0\x23\xa9\x07\x25\x51\x1b\x34" "\x41\xe0\x2b\xda\x92\x4f\x37\xa8\x7b\x56\xc3\x41\xf9\x7c\x1a\x01\xf5\x2e" "\xa7\xe7\xc1\x6b\x75\x3f\xd3\x1f\xd7\xf8\x6f\x9e\xc3\x4a\xf9\xb3\x84\x29" "\x4f\x94\x68\x8e\xfa\xb4\xe5\x9e\xee\x3b\xd6\x27\x79\x4c\x47\xed\x04\x56" "\x6a\xbb\x95\x18\x49\x21\x11\x7d\xe0\x87\x26\xee\x1a\x94\x0f\x5d\xf4\xf4" "\xfb\x09\x0f\x57\xdb\x2a\x96\x44\x7f\x94\x29\xa2\x82\xb9\xb2\xf6\xcd\xd2" "\x62\x5a\x5c\xaa\xc3\x28\xd0\x6e\x91\xbe\x01\xeb\xe8\xa4\xdf\x6b\x97\x84" "\xc7\x5e\xc2\x47\x8f\xea\x37\x80\xc3\x52\x25\xeb\x65\xb6\xd8\x83\x09\x29" "\xa1\x7c\x6c\xbe\xa5\xb1\x1b\xa3\x14\x2d\x9a\x4c\x93\x47\xf5\x9a\xdf\xc5" "\x9a\x87\x03\x62\x34\x68\x66\x04\xd9\xa7\x11\x0b\x93\x97\x56\x57\x1f\x5b" "\xbf\xa8\x3a\xb1\xc8\xbc\x7a\x1d\xd1\xe4\xd2\xac\xf2\x29\x2b\xa3\x3e\x2f" "\xea\x77\x0c\xdf\x46\x1d\x00\x84\xc1\x32\x4a\x76\xc1\xc6\x71\x34\xee\x53" "\x40\x71\xbb\x51\x6b\xa6\xff\x71\x7e\x52\xc9\x37\x49\xd0\x25\x99\x87\xa5" "\x63\xb0\x88\xb7\xdb\xd4\x89\xa3\x88\x0f\xf8\x13\xa6\x1a\x14\xf1\x12\x16" "\x31\x1f\x9c\x59\x4f\x1e\xe2\xb4\x73\xd4\x28\xee\x0f\xfd\x0a\xf4\x40\xcb" "\xe7\x85\x7f\x6d\x2c\x3c\xff\xa4\x93\x3d\x1c\x47\x6d\x08\xc7\x42\x0f\xf6" "\x99\x47\xbf\x52\x1c\x5f\xe0\xe1\x89\x78\x09\xc1\x32\x0c\x9f\x5f\xab\xcf" "\xfd\xca\xd5\x59\x7e\x95\x1a\xda\x8b\xb3\xd1\x0b\x55\x8a\xaa\xa3\x61\xe7" "\x98\x44\x7b\x9d\x3f\x3d\x91\x1d\xb7\x43\xd1\xed\xa1\x5c\xb1\x33\x7c\x95" "\xfe\x96\x68\xb9\xcd\xb1\xc0\x08\x41\x05\x53\x5f\x23\xeb\xfb\xf0\xd4\x6a" "\x01\x4f\xa4\x78\x9d\x67\x77\x3f\x16\x41\x78\xe4\xe6\xa8\x14\x0a\xff\xd8" "\x65\x33\xf8\x71\x7e\x88\xe2\x9f\xaa\x2d\x05\x18\x42\x75\x51\xb6\x44\x7c" "\xa4\xd0\x0b\x2c\xa2\xd5\x88\x9e\xb3\xe8\xa7\x60\xea\xca\xda\xc9\xec\x54" "\x33\x99\x0c\x34\xe5\xad\x40\x86\xef\x3b\xe2\x65\x0f\x13\x65\x91\x3c\xc8" "\xbc\x0e\x92\xef\xad\x6f\x31\x77\xe8\xb2\xda\xa1\x1f\x8f\xb0\xd5\x59\x55" "\xde\xc9\x92\x02\x31\x37\x90\x7d\x57\x36\x75\x3b\x93\x3a\xab\xfd\xf2\xee" "\xee\xed\xa6\x3c\xec\x25\xc5\x55\x38\x89\xfb\x30\x2f\xb0\xeb\x0d\xff\xd1" "\xa8\xd7\xae\x11\xa6\x60\x4b\xb9\xda\x43\x10\xcb\x3c\xfd\xa9\xa2\xbb\x30" "\x92\xe1\x94\x4b\x87\xe3\x5b\x7b\xe5\x30\xc1\x4c\x50\x32\x43\x66\x9f\xa7" "\xd6\x1c\x6b\x28\x8d\x36\xbd\xc5\x07\x3d\xa2\x5c\x4f\xf6\x01\xa0\x70\x17" "\xea\x64\xd4\x2f\xf7\x8e\xb2\x57\x1b\x69\x28\xf0\xa5\x0c\x2c\x5e\x91\xb5" "\xcb\x0d\x0a\xd0\xc2\xd0\xce\x79\xe6\xe8\x7d\x34\x48\x59\x24\xe8\x01\xef" "\x55\xc4\x0e\xc4\x3f\x91\x10\x97\x0f\x23\x12\xe1\x3a\x03\x86\x8c\x39\x57" "\x63\x80\x36\x59\x13\x67\xf8\x5f\x65\x1e\x1e\xd0\xd1\x82\x29\x3f\x60\x91" "\xeb\x3d\xa2\xd3\xe4\x08\xdd\x77\xb9\xe5\x59\x5d\x3a\x94\x40\x4f\xc6\x8d" "\x40\x0c\x13\x7d\xa6\x67\xb9\x97\xe4\x91\x40\x0b\x6f\x1f\xcc\xa8\x14\x89" "\x49\xd3\xf8\x3d\x2c\x67\x0f\x41\xd2\xdb\x52\x2f\x56\x54\xac\xaa\x04\x4c" "\x6a\x29\x1b\x93\x0b\xe1\x54\x1b\x21\xcf\x8b\xb8\x3f\x11\x1c\x80\xe3\x24" "\xea\xfe\xd2\x13\x20\x33\x22\xff\x42\x50\xe4\xe3\x2f\xdd\x6f\x1f\x6a\x40" "\xbb\xd3\x0c\x3c\xa3\xbc\x92\x2f\x29\xe3\x6d\xb5\x85\x3d\xfc\x7b\x39\x73" "\xfe\x29\xc3\x70\x87\x93\xed\x19\xdb\x6f\xe9\xee\xba\x3c\x9a\x55\x81\x3b" "\xe7\x2a\x6f\xb1\x3f\xcc\x28\x51\xdc\x9d\xd8\x41\xb3\x9d\xac\x9b\x6e\x90" "\xbf\x1b\x75\xbd\x05\x49\x5d\x39\xa7\x40\x54\xba\x09\xaa\x53\x3f\x5f\xde" "\x0a\x22\x34\x6c\x89\xa5\x57\x1b\x7b\xb1\xd2\x05\x8c\x80\xf4\x8a\xe3\x0b" "\x22\x19\xc5\xa7\x00\x3e\xd4\x80\x5f\xe9\x69\x46\x6c\x8d\xd3\x5c\xd5\x47" "\xbe\x70\x9c\xac\x96\x1e\xa6\xb8\x54\x24\x8b\x0a\xbd\x68\x61\x61\x5d\x98" "\x04\x90\x26\x49\x5f\xd4\x08\x0c\xa1\xf4\x12\x6e\x8d\xe1\xe4\xd0\x10\xff" "\xbd\x8b\x92\xde\xd3\x06\xd7\xe6\xac\x24\x89\x21\x3a\x44\x01\xd6\x5d\xd5" "\xab\x1b\x0b\xd6\x55\x5e\x48\x22\x65\x02\x53\xa5\xe9\x05\x56\x50\xef\x56" "\x7c\x5f\x36\x7e\x7b\xbe\x1a\x52\x11\xa5\xba\xc8\xdb\xf2\xa4\xf9\xe6\x5c" "\xaf\xa6\x6f\xc9\x84\x1c\x3f\xd9\x73\x58\xf7\x8f\x61\x3d\xd6\x45\x79\x4a" "\x3d\x2e\x64\xd4\x86\xc9\x48\x81\xf1\xba\xe5\x34\xc3\xeb\x74\xd2\xf2\xec" "\xe8\x96\x69\x22\x6d\xed\x80\xad\x3d\x05\x4f\x9e\x65\x89\x4e\xa8\xcb\xe9" "\x32\xa3\x2c\x2b\x03\x25\x73\x44\x1e\x1e\xf0\x16\xba\xe5\x32\xd3\x55\x0c" "\x86\xe1\x80\xd2\x14\x85\x20\x89\x64\xa6\x39\x28\xbc\xd3\xe9\x7d\xae\x7a" "\x03\x1c\x13\xa9\x56\xc9\x88\xca\x09\x3f\xd0\x20\xec\x8e\xbf\xc5\x69\x3c" "\x2a\x09\xd9\x9b\x12\x17\x11\x29\x96\x03\x1a\xc9\xf2\x0c\xdb\xbf\xd1\x91" "\x48\xaf\x17\xae\x56\x57\x22\x14\x5c\xc3", 4096); *(uint64_t*)0x200000001c48 = 0x1000; *(uint64_t*)0x200000001c50 = 0; *(uint64_t*)0x200000001c58 = 0; *(uint64_t*)0x200000001c60 = 0; *(uint64_t*)0x200000001c68 = 0; *(uint64_t*)0x200000001c70 = 0; *(uint64_t*)0x200000001c78 = 0; *(uint64_t*)0x200000001c80 = 0; *(uint64_t*)0x200000001c88 = 0; *(uint64_t*)0x200000001c90 = 0; *(uint64_t*)0x200000001c98 = 0; *(uint64_t*)0x200000001ca0 = 0; *(uint64_t*)0x200000001ca8 = 0; *(uint64_t*)0x200000001cb0 = 0; *(uint64_t*)0x200000001cb8 = 0; *(uint64_t*)0x200000001cc0 = 0; *(uint64_t*)0x200000001cc8 = 0; syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x200000001c40ul, /*vlen=*/9ul, /*off_low=*/7, /*off_high=*/0, /*flags=RWF_APPEND|RWF_SYNC|RWF_HIPRI*/ 0x15ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }