// https://syzkaller.appspot.com/bug?id=de3f8ed467b7ff2e84cb3f1fe82bbf32ec7b687d // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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); } //% 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 FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; struct fuse_out_header* statx; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } 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(); if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$ext4 arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 74 34 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x30000c6 (8 bytes) // opts: ptr[in, fs_options[ext4_options]] { // fs_options[ext4_options] { // elems: array[fs_opt_elem[ext4_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x561 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x561) // } // ] // returns fd_dir memcpy((void*)0x200000000040, "ext4\000", 5); memcpy((void*)0x200000000140, "./file1\000", 8); *(uint8_t*)0x200000000080 = 0; memcpy( (void*)0x200000000f80, "\x78\x9c\xec\xdd\x4d\x6b\x1b\x47\x1f\x00\xf0\xff\xca\x56\xde\x9f\x27\x0e" "\x84\xd0\x96\x52\x0c\x3d\x34\x25\x8d\x1c\xdb\x7d\x49\xa1\x87\xf4\xdc\x86" "\x06\xda\x7b\x2a\xec\x8d\x09\x96\xa3\x60\xc9\x21\x76\x03\x4d\x0e\xcd\xb9" "\x84\x5e\x4a\x03\xa5\xf7\xd2\x73\x8f\xa1\x5f\xa0\x87\x7e\x86\x40\x1b\x08" "\x25\x98\xf6\xd0\x8b\xcb\xca\x2b\xc5\x2f\x92\x2d\x27\xb2\xad\x54\xbf\x1f" "\xac\x99\xd9\x5d\x69\x76\x34\xfb\x1f\xcf\x68\x24\x14\xc0\xc0\x1a\xcd\xfe" "\x14\x22\x5e\x8e\x88\xaf\x93\x88\xe3\x11\x91\xe4\xc7\x86\x23\x3f\x38\xba" "\x7a\xde\xf2\x93\x5b\x53\xd9\x96\xc4\xca\xca\xa7\x7f\x26\x8d\xf3\xb2\x7c" "\xf3\xb9\x9a\x8f\x3b\x9a\x67\x5e\x8a\x88\x5f\xbe\x8a\x38\x53\xd8\x5c\x6e" "\x6d\x71\x69\xb6\x5c\xa9\xa4\xf3\x79\x7e\xac\x3e\x77\x7d\xac\xb6\xb8\x74" "\xf6\xea\x5c\x79\x26\x9d\x49\xaf\x4d\x4c\x4e\x9e\x7f\x67\x72\xe2\xfd\xf7" "\xde\xed\x59\x5d\xdf\xbc\xf4\xf7\xb7\x9f\x3c\x18\xca\x73\x27\xee\x25\x71" "\x21\x8e\xe5\xb9\xb5\xf5\x78\x0e\xb7\xd7\x66\x46\x63\x34\x7f\x4d\x8a\x71" "\x61\xc3\x89\xe3\x3d\x28\xac\x9f\x24\x6d\xf7\xfe\xb4\xe7\xd7\xc1\xce\x0c" "\xe5\x71\x5e\x8c\xac\x0f\x38\x1e\x43\x79\xd4\x03\xff\x7d\x5f\x46\xc4\x0a" "\x30\xa0\x92\x1d\xc7\xff\x6f\xc5\xdd\xb9\x12\x60\x6f\x35\xc7\x01\xcd\xb9" "\x7d\x8f\xe6\xc1\x2f\x8c\xc7\x1f\xae\x4e\x80\x36\xd7\x7f\x78\xf5\xbd\x91" "\x38\xd4\x98\x1b\x1d\x59\x4e\xd6\xcd\x8c\xb2\xf9\xee\x48\x0f\xca\xcf\xca" "\xf8\xf9\x8f\xfb\xf7\xb2\x2d\x7a\xf7\x3e\x04\xc0\xb6\x6e\xdf\x89\x88\x73" "\xc3\xc3\x9b\xfb\xbf\x24\xef\xff\x9e\xdd\xb9\x2e\xce\xd9\x58\x86\xfe\x0f" "\xf6\xce\x83\x6c\xfc\xf3\x56\xbb\xf1\x4f\xa1\x35\xfe\x89\x36\xe3\x9f\xa3" "\x6d\x62\xf7\x59\x6c\x1f\xff\x85\x47\x3d\x28\xa6\xa3\x6c\xfc\xf7\x41\xdb" "\xf1\x6f\x6b\xd1\x6a\x64\x28\xcf\xfd\xaf\x31\xe6\x2b\x26\x57\xae\x56\xd2" "\xac\x6f\xfb\x7f\x44\x9c\x8e\xe2\xc1\x2c\xbf\xd5\x7a\xce\xf9\xe5\x87\x2b" "\x9d\x8e\xad\x1d\xff\x65\x5b\x56\x7e\x73\x2c\x98\x5f\xc7\xa3\xe1\x83\xeb" "\x1f\x33\x5d\xae\x97\x9f\xa7\xce\x6b\x3d\xbe\x13\xf1\x4a\xdb\xf1\x6f\xd2" "\x6a\xff\xa4\x4d\xfb\x67\xaf\xc7\xa5\x2e\xcb\x38\x95\xde\x7f\xad\xd3\xb1" "\xed\xeb\xbf\xbb\x56\x7e\x88\x78\xa3\x6d\xfb\x3f\x5d\xd1\x4a\xb6\x5e\x9f" "\x1c\x6b\xdc\x0f\x63\xcd\xbb\x62\xb3\xbf\xee\x9e\xfa\xb5\x53\xf9\xfb\x5d" "\xff\xac\xfd\x8f\x6c\x5d\xff\x91\x64\xed\x7a\x6d\x6d\xe7\x65\x7c\x7f\xe8" "\x9f\x34\x5a\xeb\xc9\xeb\xad\xab\x7f\x74\x7f\xff\x1f\x48\x3e\x6b\xa4\x0f" "\xe4\xfb\x6e\x96\xeb\xf5\xf9\xf1\x88\x03\xc9\xc7\xad\xfd\x85\xe6\xfe\x89" "\xa7\x8f\x6d\xe6\x9b\xe7\x67\xf5\x3f\xfd\xfa\xd6\xfd\x5f\xbb\xfb\xff\x70" "\x44\x7c\xde\x65\xfd\xef\x9e\xfc\xf1\xd5\x4e\xc7\xfa\xa1\xfd\xa7\xdb\xb6" "\x7f\x6b\x76\xbb\xa1\xfd\x77\x9e\x78\xf8\xd1\x17\xdf\x75\x2a\xbf\xbb\xfe" "\xef\xed\x46\xea\x74\xbe\xa7\x9b\xfe\xaf\xdb\x0b\x7c\x9e\xd7\x0e\x00\x00" "\x00\x00\x00\x00\xfa\x4d\x21\x22\x8e\x45\x52\x28\xb5\xd2\x85\x42\xa9\xb4" "\xfa\xf9\x8e\x93\x71\xa4\x50\xa9\xd6\xea\x67\xae\x54\x17\xae\x4d\x47\xe3" "\xbb\xb2\x23\x51\x2c\x34\x57\xba\x8f\xaf\xf9\x3c\xc4\x78\xbe\x62\xd8\xcc" "\x4f\x6c\xc8\x4f\x46\xc4\x89\x88\xf8\x66\xe8\x70\x23\x5f\x9a\xaa\x56\xa6" "\xf7\xbb\xf2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x27\x8e\x76\xf8\xfe\x7f\xe6\xf7\xa1\xfd\xbe\x3a\x60\xd7\xf9\xc9\x6f" "\x18\x5c\xdb\xc6\x7f\x2f\x7e\xe9\x09\xe8\x4b\xfe\xff\xc3\xe0\x12\xff\x30" "\xb8\xc4\x3f\x0c\x2e\xf1\x0f\x83\x4b\xfc\xc3\xe0\x12\xff\x30\xb8\xc4\x3f" "\x0c\x2e\xf1\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x3d\x75\xe9\xe2\xc5\x6c\x5b\x59\x7e\x72\x6b" "\x2a\xcb\x4f\xdf\x58\x5c\x98\xad\xde\x38\x3b\x9d\xd6\x66\x4b\x73\x0b\x53" "\xa5\xa9\xea\xfc\xf5\xd2\x4c\xb5\x3a\x53\x49\x4b\x53\xd5\xb9\xed\x9e\xaf" "\x52\xad\x5e\x1f\x9f\x88\x85\x9b\x63\xf5\xb4\x56\x1f\xab\x2d\x2e\x5d\x9e" "\xab\x2e\x5c\xab\x5f\xbe\x3a\x57\x9e\x49\x2f\xa7\xc5\x3d\xa9\x15\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x58\x6a\x8b\x4b" "\xb3\xe5\x4a\x25\x9d\x97\x90\x78\xa6\xc4\x70\x7f\x5c\x86\x44\x8f\x13\xfb" "\xdd\x33\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x53\xff" "\x06\x00\x00\xff\xff\x6a\xeb\x33\x01", 1377); syz_mount_image( /*fs=*/0x200000000040, /*dir=*/0x200000000140, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_NOSUID|MS_NODEV|MS_MANDLOCK|0x80*/ 0x30000c6, /*opts=*/0x200000000080, /*chdir=*/1, /*size=*/0x561, /*img=*/0x200000000f80); // setxattr$trusted_overlay_upper arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // name: ptr[in, buffer] { // buffer: {74 72 75 73 74 65 64 2e 6f 76 65 72 6c 61 79 2e 75 70 70 65 // 72 00} (length 0x16) // } // val: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // size: len = 0x841 (8 bytes) // flags: setxattr_flags = 0x1 (8 bytes) // ] memcpy((void*)0x200000000000, "./file1\000", 8); memcpy((void*)0x2000000001c0, "trusted.overlay.upper\000", 22); syscall(__NR_setxattr, /*path=*/0x200000000000ul, /*name=*/0x2000000001c0ul, /*val=*/0x200000000140ul, /*size=*/0x841ul, /*flags=XATTR_CREATE*/ 1ul); // setxattr$trusted_overlay_upper arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // name: ptr[in, buffer] { // buffer: {74 72 75 73 74 65 64 2e 6f 76 65 72 6c 61 79 2e 75 70 70 65 // 72 00} (length 0x16) // } // val: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // size: len = 0x381 (8 bytes) // flags: setxattr_flags = 0x2 (8 bytes) // ] memcpy((void*)0x2000000000c0, "./file1\000", 8); memcpy((void*)0x200000000100, "trusted.overlay.upper\000", 22); syscall(__NR_setxattr, /*path=*/0x2000000000c0ul, /*name=*/0x200000000100ul, /*val=*/0x200000000340ul, /*size=*/0x381ul, /*flags=XATTR_REPLACE*/ 2ul); // lsetxattr$trusted_overlay_upper arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // name: ptr[in, buffer] { // buffer: {74 72 75 73 74 65 64 2e 6f 76 65 72 6c 61 79 2e 75 70 70 65 // 72 00} (length 0x16) // } // val: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // size: len = 0x361 (8 bytes) // flags: setxattr_flags = 0x0 (8 bytes) // ] memcpy((void*)0x2000000001c0, "./file1\000", 8); memcpy((void*)0x200000000180, "trusted.overlay.upper\000", 22); syscall(__NR_lsetxattr, /*path=*/0x2000000001c0ul, /*name=*/0x200000000180ul, /*val=*/0x200000000800ul, /*size=*/0x361ul, /*flags=*/0ul); // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {ba 5b 8e a6 14 89 f0 f3 83 00 fd 70 1e b5 16 b4 c6 0b be 2f // f4 82 3e 46 06 fb 2b b2 64 19 22 17 c6 fa 28 b3 32 cf 26 b9 1e 1d 91 // 64 bd 55 19 45 a8 35 ae 0d 1c bd 61 c6 83 a3 2f cf c1 5e 84 e9 15 26 // d1 4a 8f 3a 5e 20 42 6d b6 5c d5 22 92 75 7c 75 33 15 dc fc 61 0c c8 // fe c0 68 94 84 ec 08 3e c9 b5 ab b9 fa e2 bf 0a 3b 61 5f 0d ea 06 21 // 69 cf 61 a9 f0 cb 3f 29 a6 c2 87 52 f8 0c 08 27 28 c3 00 e1 ec ca 8a // 70 b8 e5 00 de a6 d9 15 2b c6 62 7b fd 30 18 cf b6 24 a1 b5 41 de fe // 58 da 6d f0 80 27 d6 74 34 aa a6 04 68 d9 fc 37 72 25 18 14 26 23 13 // bc 9f 87 95 61 d5 47 93 79 d0 bc c9 73 6e fe b8 b2 92 77 51 c8 3c 2b // eb 3c eb e9 a4 4b 89 62 33 2c 62 98 09 5d d6 86 e9 6a 86 ff 0e a7 ad // d2 7a d2 01 b6 4b 73 40 ce 6d fa 43 46 4a 82 70 f0 f1 1b 14 85 38 9f // 8b 4e 85 75 6b e2 eb cc 8a 56 0a 2e df 06 e4 4c c4 3d 25 65 01 a1 e4 // 42 83 fc 4c 14 cd 5a 17 a8 53 8c 60 2d e6 ea a0 db 28 eb 73 34 38 25 // ef 7d 29 5c f1 af 0d 4a 31 54 db 22 4d 31 9f 1c 10 9a 09 bf 3a 72 3e // 5b f7 c6 9a a8 2c e7 15 0d e7 71 3a c2 05 e7 39 45 a7 f9 4b 1c df b1 // 37 6f 2e 41 a7 0f b7 d3 9c c4 e3 8e 60 c2 ca 1a b7 93 7d ef ac 79 ab // e4 48 ae d5 be 52 80 5b 47 f4 81 17 29 cc cc 36 3b 0d d8 84 72 95 0c // e5 af ed f7 e3 ee 53 e5 67 54 06 74 d4 85 28 c0 dd 9c 34 1b a6 3f e2 // 13 d5 c9 07 88 9e 1a 04 8e 7c 23 93 06 ef 73 a0 3c dd 8c 26 36 83 19 // 49 41 8b c4 b6 51 e5 23 f7 81 f3 58 8c e0 69 c1 74 e7 19 5d 6a 15 a1 // 4f 09 d1 4b 1f 7b b2 b3 3d 37 42 1e 63 dd fa 26 9a b8 b6 2a 0e e3 d9 // 7d 51 6a 5b b0 0b 81 25 e3 8e b3 a5 36 a0 b1 7b 54 62 1f eb b2 93 6d // bb a1 07 91 39 47 4a fc bd b0 ce 42 81 1d 1e 4c 34 5e dd f2 78 b1 6d // e9 ef 06 1a fa 84 2c 45 96 f9 3d 7f 4b 25 a1 e0 4e fa 93 3b 7c 3c 9f // 69 a6 e9 98 ac c6 8e 22 b1 1b b9 35 fa 87 15 13 40 28 a6 cd ae ce c5 // 40 89 c2 a0 c6 89 db b9 b5 41 14 b0 38 89 ff c4 23 0b e9 29 a2 b2 7b // 04 f8 db 25 c5 2f 0e 99 4d 55 19 7c f4 a0 35 a0 60 a5 d0 a5 bb 70 2b // b1 c5 c4 cd 87 62 cf a2 bd 55 44 09 60 be 8f a8 a2 11 93 ce fb 0e a9 // fd 71 85 4f 82 01 12 9e a9 8e 89 22 4f 80 b5 0d 32 80 b2 ca 46 75 71 // 9b 12 be 15 44 eb 3d 1c 9a a6 d0 b8 fb 3b bc 76 89 5d 9b b8 36 68 3f // 84 fd d2 2f e0 8a dd 2f 5b 05 af dc 35 c1 ca 94 64 ff 38 c5 02 3c 6e // 83 c0 8d 47 82 05 6c fa 79 f5 af cb 6a 64 b3 58 86 11 d7 28 a2 01 dd // 53 47 a4 76 b4 1e 23 0c a9 d4 95 df 26 79 5e 8f 3f 3a aa 3b f9 4f 9b // 74 80 c2 a6 c6 99 cf 91 a4 8f 7b 1f 6c d4 89 f6 5f e7 3e 13 c0 09 e1 // 8d 70 ba 6f 14 d2 d6 f1 55 3e bd a5 e1 95 34 24 86 f1 82 29 b2 62 74 // 18 b3 36 be bc e7 c2 7a ab 37 61 8d c9 f2 45 1d 9e b0 68 01 01 af 46 // 6f 33 af f9 a8 b1 29 61 e2 cd 01 e8 15 f6 73 19 0e 7c 3c bf 84 cf 0d // 23 36 79 cd d5 ca c7 4c 4f c4 d7 84 39 8f ed d4 f5 2c 09 86 32 d8 e1 // 0a 12 f3 4c bf b2 56 ba 61 36 24 32 ec 74 73 2a bc 64 c3 b7 11 f2 aa // b8 27 3e f8 8e 31 89 7d 2e 50 3b b8 04 93 c0 a1 18 2d 63 84 20 be b6 // ef 9e 11 ac a8 68 c9 fc 61 aa 78 7c a8 db ac 99 df 54 5c e2 d5 d5 c4 // fc 7e 31 e4 15 e5 c2 b0 6a 32 ab ea b7 30 6c 52 8b d2 2c 23 13 5e 94 // fa fa 42 71 ad 4b b2 29 87 19 09 78 6a 22 52 b8 21 4a 30 f0 9b ea 59 // 13 b8 40 79 d2 fe 68 45 d7 50 13 a1 50 69 00 2b 0e 09 56 e4 c8 1c 2a // 9f 75 fc c0 40 c4 7a d4 c2 3a 4f 27 97 c8 d9 c4 3f 87 cb be 07 86 b1 // 19 67 d5 ad 1d cb c5 fe 39 b6 16 15 ba 16 39 23 37 b7 8b d5 e5 fc 9a // d9 d6 46 be 0a b3 a8 d2 46 30 9e 05 6f a6 6d 34 dd ef 99 b7 37 17 13 // b9 e2 82 7a 30 d5 46 45 66 47 43 af 79 4e bb e9 27 e4 3d f9 14 69 50 // aa 24 05 8b 81 ce 7f 95 55 d1 98 7b aa 47 c4 86 bc 41 80 db 65 b8 97 // eb 21 ff 25 29 42 3c 88 f2 22 7e f4 ee f0 b0 35 cc c9 d1 1f 89 5d 18 // ed 9f 00 50 4d 9d b2 60 d1 56 1a 5c c3 69 2a 52 da c2 0d 64 ed 22 c5 // 0d a1 71 b2 23 fc fe 0a 7e 45 1c 83 41 de b6 3e 3e d6 ff ca 9f d7 9a // ac 6c 8c d4 e5 8a 4c 2a f8 ac d4 87 be a4 84 6b 7c 22 2a dd 78 72 d2 // 1a b6 45 67 80 0f ee 1b 16 69 f6 31 20 13 35 fb c5 d1 b3 d9 04 5b 00 // 00 55 ed c3 bd 55 15 18 21 68 93 d7 08 a4 4b 43 8e 44 79 e3 35 08 c1 // 2f e0 31 e8 f7 a1 96 89 12 eb 7c be 40 53 f5 94 00 63 c2 fb 57 70 38 // 7d b7 4d d8 70 7a 71 b7 67 1c c5 ab f4 20 12 a9 ee 63 8c 60 f5 9d 96 // 78 b2 2f c5 36 ff b9 53 84 3e d6 c6 6a b9 bc f7 cf 5f f2 49 a4 40 aa // 72 63 39 b9 a9 6f d3 a0 e3 c3 ed 11 ab 91 0e bd c3 e0 eb a9 98 09 fb // d8 bf 15 80 f0 a1 40 92 4b ed ce 7e 90 ee 7e 0d 8b b9 f8 cb c9 90 da // 15 77 2e 67 d3 69 91 a2 5c 38 b7 7e f6 d0 13 57 cc bb f6 54 91 03 95 // 5a 4d c8 2e 0b 1c d5 e1 69 07 a4 e7 f4 88 b0 94 99 34 94 7a 7b 69 f3 // 95 6b 3b 62 c9 d3 57 c9 a3 32 9d da 4b 82 74 37 c6 d0 ef c7 f5 b7 67 // 25 3c 0a 7b 46 3e c9 ec 90 64 14 2f 0b 14 a1 c6 17 ef 9b 71 30 a5 1c // c2 b9 80 79 33 7e df ac 68 c8 b7 77 b7 3b d5 80 97 da a9 f6 4c a3 b9 // da ab cc 53 df ce 7b e8 dc d8 3b 73 f4 53 02 3d 57 32 ab 3b b9 5a 80 // 84 5e 6e 42 7b a6 88 51 8e f7 42 5c f0 36 ad 42 df 97 b3 39 ab 88 0c // 94 90 81 eb e5 f4 c0 51 82 3c d1 26 79 16 49 84 ab c2 a2 e3 67 6e 7e // 44 c2 06 43 e4 8a 2f 24 40 ef 1b 54 1b 9b af 3e 8a 7d b7 a0 f0 1c 52 // 17 ef 20 03 84 74 d9 c1 20 7e 72 fd 71 a2 5d 5a 8f 7b 91 be 13 b3 a3 // b9 d5 7e dc f7 c8 8b 0a 3b 4a 06 0a 7e 03 a5 66 7e 5b 44 4b 00 57 dd // 5a b4 e1 c8 5e 09 f5 55 2f aa 56 54 bb a8 84 bd ca 02 47 f1 2b 32 44 // a0 f7 a0 49 2e 32 1e b4 18 cf a7 59 15 d7 6e 9e 26 d7 34 34 5f bd 6e // 9b 40 f9 c4 7b 20 3e bb fb ad 6b 33 0e c9 0a da c0 e1 b0 37 45 e4 8a // 1e b3 fa 3c 07 9d 47 06 2b f5 a7 79 c3 47 9e 6f 5c 4b 88 00 a1 e7 51 // 3f cd fa 0a 6c 6b ca cc c6 f7 36 a0 ec 40 31 d7 fa 23 c8 9b b6 a8 70 // 2a 69 4a a8 7e 88 52 14 90 a5 db d5 d0 e5 77 5b 56 1e f9 d4 37 6e 36 // 7e 31 a8 3d f6 41 c5 5d 38 01 f5 73 ef 7a 2e a9 45 37 9f 9d 07 a0 4c // f8 ba e5 5e 51 59 97 19 f7 9c a3 39 17 c4 21 ff 63 a3 35 e1 1b 4f 26 // 6f 51 71 e2 7b 60 b5 44 f8 93 cc 8f ec 2b d1 91 ff 7e d8 74 76 e3 19 // 79 df 4f 01 d7 1a f3 76 54 1b f0 9c 01 47 d3 cc b9 12 85 e6 ef f7 c4 // 4f c8 03 1e 3a 03 b4 7a be a0 82 8e 42 86 1d 27 47 25 9e 1f 78 15 d1 // d1 8b c8 ef cc 36 a2 76 43 fb bb f3 3e ee d6 b5 03 67 73 a3 05 a9 01 // da 08 f8 58 e1 90 9f f3 ea 33 5b b4 82 00 02 00 44 b0 71 1b 67 61 5a // 06 26 01 7d a6 62 74 e8 04 88 3a a8 58 d0 47 07 d4 43 80 5c ac eb 8b // d2 39 e3 1e a7 a4 46 75 2f e7 89 20 5b b0 83 f1 ca 90 d1 58 9c 43 e8 // bb 15 28 01 ff f7 bf 38 53 d8 bf cd d6 30 b4 1a a3 fe 1f 09 bd c4 cb // 1e c3 38 85 c2 1b 88 39 35 46 8d fa 05 06 3f 9d 7c 1f af 14 11 5e d3 // 59 12 21 87 a9 0b 20 45 c9 66 50 b2 be 20 f1 51 9e da a1 d3 59 7d 2b // b2 2e 08 95 4d 00 f7 ad db 14 b6 39 25 8c 75 69 8a 98 04 60 28 c6 f9 // ff 18 70 86 b5 69 cd 48 56 d9 7e a1 79 97 22 15 8e 84 18 dd e7 09 ac // b7 fc f8 90 ed ee df 6f 49 c7 d7 9e e5 df 4c 53 5d 53 bb 54 ec d4 a3 // 03 14 71 26 21 90 d4 4b 1d 86 a5 41 0f 34 b8 0e 38 7e ee 07 ac b8 3a // cb 7d e2 4b 2d f7 4b 0b 9b d6 17 9e 13 2d 1a 5e 70 fb 52 a2 f7 04 df // 38 51 e2 64 19 26 63 29 71 83 b1 dc f9 e7 f1 a2 c7 46 99 1c 2f 23 93 // 08 20 1a 1d aa 8b 24 78 07 9a f0 22 04 c8 24 4a dc 87 df cc 03 97 a4 // db 01 f1 f0 79 c3 9b ed 4b 12 a5 c5 e4 cc 0b 0c 66 e8 36 91 dd b7 e7 // c3 0d 23 a1 b9 7a e7 e0 fd b5 65 64 ba 29 99 c7 ae cc ed 3e 0f d1 d1 // 85 bd c1 c2 7f 44 04 f1 11 77 27 55 63 d1 30 3d bd d6 94 72 77 d9 0f // f4 61 42 5f 6e 6a a6 4a 69 a1 46 38 61 f8 3f ed d0 0d 0c 3f 8c 21 eb // 91 84 cc 02 f5 01 ab 35 3c dc d3 ec 8d a6 77 e8 da 84 72 d2 2b f1 4f // 34 bd 5c 43 35 dc b5 9d 8a 64 5a 70 74 f6 04 cf 2d ef bd 2f a0 05 b0 // b8 8d 64 f0 10 f1 90 26 12 a3 00 6d bd 0c 0c 6a f1 78 ae 88 8d cd dd // 07 48 45 fd 69 1d fe 45 d5 63 11 f4 91 54 95 81 b2 25 d6 99 77 03 eb // 55 cb d6 0b ea bb 8d 46 8d 07 ef 9e 6d 8a d7 85 21 a4 55 dd 05 95 a6 // 6c 2d 5b ef 40 7c f2 66 c4 83 7e 8b 41 ec 5b 08 e7 f0 97 ab c7 3e 0e // 36 ab 26 e1 01 e5 f9 94 f6 72 c7 41 a4 9e 60 8d 93 84 3e 84 a4 21 62 // f0 77 44 36 fd ed 89 e7 e7 53 90 28 69 17 8a 93 46 c2 37 26 69 43 78 // 0d a1 0a c1 8b 6a 8a bb 97 b5 58 d4 fb 33 1f d9 08 20 b2 a3 b6 4b 11 // 77 6e 7d 4f 53 a1 bb 0f 66 95 31 91 20 90 5d 8d 32 f9 04 2c 3a 40 c2 // c4 7f 89 b4 62 2c de 88 af 69 f7 32 bb 64 38 08 5a 7c 61 4a 9c b9 13 // a7 75 3f ea cb c5 4e 32 c3 34 31 23 0c 78 b2 52 b4 bc 08 74 b1 e0 7d // 85 e7 cb 3b 07 95 79 16 d4 48 bb a0 e9 d9 7c 32 0a 7f ca 0e 01 94 8c // f7 50 7f b3 bd 94 22 1e 3b 92 ba 3c 55 f0 0a 45 69 d6 4c 3e b3 93 6a // 2f ae 6d b0 d5 27 b5 5e 40 17 1f 2d f1 9b 84 cf cd 57 33 2e ba 07 65 // ee ba bb d9 e6 a9 bc 8e 1f 43 82 9d 17 00 25 cd 46 53 18 a2 8e f0 62 // 81 54 45 26 4a ee 30 b5 97 6d a2 48 0c d7 0d 23 25 5b 6f 24 0e a6 f2 // 11 56 0b 76 7e a1 6b 87 38 f8 e8 53 98 d4 df 77 1b 10 05 e5 d5 90 06 // 2d 55 43 4d 50 4b 5e 9b e5 a8 b3 d2 b3 b4 14 13 cf c2 a8 08 31 86 79 // ef 0b 26 07 d6 ef 00 49 62 34 95 6c df 74 ba 83 32 05 1a 8f ac b4 38 // dc ea da 86 0d 3a ad 5c b3 33 85 02 3d 22 47 15 cc 28 ce c3 54 68 65 // 41 f6 69 02 a8 83 c4 55 25 28 b0 78 aa dc 85 28 a4 42 da b2 e6 84 51 // d9 ad 09 66 68 7c 6d 8f d6 96 65 2a f8 d4 3f fd 37 e7 cc b9 6d 5a 0b // f6 d7 2c 37 68 55 12 e9 0b d0 85 d5 f4 6d 36 ef 55 af 96 e2 ea a1 f5 // d5 ce 44 46 04 13 57 8d 71 6f 96 3d f4 8a c4 ce 00 13 0b b4 4d b3 51 // e4 fb 52 f8 b2 ae 0a 94 4c 49 51 4d a5 d7 40 f3 89 1c 34 b0 68 10 66 // f0 c2 f7 c2 6a 80 a4 40 18 83 20 51 d2 c3 58 df 63 f6 e3 39 da 47 61 // 50 cf 83 41 00 f2 6e 73 ed 4b bd 82 10 7c 2f cd 40 19 55 bc f1 c8 3c // 2a 1a 1b 1f 72 c6 0d a8 f9 c5 64 71 13 36 4c ff 4a 20 4a f2 7f 13 18 // 83 e9 93 e4 36 c1 86 b5 31 9f 1d 24 75 84 2d 03 2b aa f4 17 22 e6 97 // e2 d1 fe 83 71 7e 1f b6 be 09 7f ea 1f ba 7d 35 4e bf 8d 68 8d 78 b0 // df 5c 11 a4 9f 3f 3a 2a 13 4b a1 15 73 72 82 0c f6 71 38 b7 67 2b c6 // e1 15 21 9d f4 5f fb c3 10 74 cd 6e f7 ce 0e c8 57 4b da 2c 83 9a 08 // 63 35 16 48 94 a9 cc d2 da 9b 53 c9 5e a1 2f 64 99 ce d7 e2 01 17 20 // f0 fc c3 2f c6 fd 00 a8 a2 06 75 4a be c3 52 56 74 04 0f 63 ca d3 60 // 56 42 5d 32 9c ae 87 d1 e7 6c dc b4 3f a9 51 51 f2 50 36 26 66 ee d4 // a3 92 45 51 91 9d a9 d6 ff b8 09 4d 83 63 40 ea 3c fd 1d 49 16 b6 b6 // 31 bb 08 86 f6 96 e6 0b 60 4c 4d 7f dd 55 e2 82 e2 2c 54 98 14 ce 6f // 75 bd 34 60 48 8d 35 00 ce 58 aa 24 1a 6a 8c 5d 50 af 90 1d f1 b8 5d // bd 32 fc ed 3d fc 4d 51 0f 08 cc af 81 fd ae 78 db 2d 5b f7 67 6f 0b // 2a b7 2f e3 f4 38 78 f7 dc 43 e4 ba b0 20 47 ff 51 c0 2b 37 b1 db 2f // 68 06 8f de e9 5f 59 24 8a 63 3e e9 dd 11 53 b0 a5 41 29 19 7f e8 fe // a9 3f c4 73 ce 60 97 70 4d a0 0f c2 5c 99 ad bd 1e 24 e5 53 28 68 e8 // b1 c2 64 96 99 38 5a 48 07 85 c8 8d 83 75 13 a3 3e a0 24 af 35 ad f5 // 7c 6c 7a 0b c8 f5 49 5d 74 24 23 51 16 a7 97 39 c8 68 42 bb 35 e9 ca // 5d a7 79 8f 7a e3 cc d9 43 4d ad 56 6b 70 be d8 2c 64 4c b6 5d db 37 // e9 4a 2f 06 c3 32 b3 2a 82 9a ad 2d dc 81 3e bc c0 7e 07 e5 58 7f 7f // 7a b2 7b af a0 aa c1 44 1a 80 9f ba 54 9b d3 fa 7b 8c 16 85 1c 3d 22 // d7 ba 41 eb b1 b1 9f 8e 9f 5d 11 49 50 a5 79 8a d8 ed 4d 1b 5b b4 dd // c6 f3 ce cd d7 19 ba a7 8a d3 2d 0f b9 4b 81 56 81 1f 9e f5 4a b2 a2 // 97 38 e2 e5 96 b1 42 4b 19 ef 39 d0 a3 54 c3 e8 aa 62 27 f4 fb 27 87 // b1 0c fc 61 5d c3 56 80 00 66 f8 00 71 8e db 65 8b b3 b8 5d 77 5c 07 // 24 e7 c2 94 2c 8c ac f4 20 a0 e2 3f c2 bc 40 d0 78 ca 5f 4f b9 d9 52 // 36 c8 c3 50 08 c4 3e 86 4b 2e e0 d7 f2 a6 34 97 8c 6c 34 bc 2b 50 40 // a2 9c a1 b1 c6 0a 92 d7 ff 86 b3 c9 dd 90 eb f3 fb 21 2d 4c 23 d6 9b // e3 99 83 7b 92 fa 04 dc a5 07 5e a7 87 75 61 ab 64 66 4d 12 a1 e1 ff // 39 cc 20 f4 51 8b 46 0a e9 f8 79 95 bd 3a e6 62 72 f3 f2 4a 47 c6 34 // 0c b0 31 8b 67 ac db 26 06 4b cc cf 7c cb a3 86 e0 71 27 d9 ff bd a2 // 88 cf 29 24 62 39 02 d9 f4 be 97 60 5a b5 dd 02 a9 69 f4 4d e8 a9 4a // bd 68 02 0c 1f 47 03 3a c2 b7 d0 e9 43 10 35 e3 58 f7 d8 76 a1 19 e3 // 1b 15 4b 6e 66 81 5f 28 6a 41 a2 3c ba 9f ea 4d c4 fe bb 52 10 b2 91 // 20 2e 8d be b6 ee 9e 00 6f 10 8d df 89 1e ce 25 c7 31 1e 7f 4c 78 8c // 37 e8 a3 93 82 40 56 27 a5 47 e6 09 39 3c ff d1 cb fa df 90 ff 90 60 // a1 47 00 53 9d 49 7d af b6 a2 49 e4 ec 81 4a 9e 68 d7 a9 54 a3 c5 17 // 76 af 6f d8 39 b9 b4 b1 af 37 79 74 31 c1 57 94 50 87 31 fd 5b e3 2e // dc 65 14 ee 16 68 1f 99 34 b0 d8 31 85 ca 69 82 0d 3a 59 0d 51 1e 9f // 5f 3e e5 bf 33 f6 ed 22 d5 07 48 1b d7 f0 5a a6 44 ff 19 80 9d 49 a3 // c2 92 4c c4 08 dd b8 39 d6 f0 7c f0 89 4e c6 a6 37 2c 45 3d 23 aa 32 // 48 02 30 88 33 02 78 61 94 66 79 ab d5 40 54 8a bb 95 67 43 cf 0c cb // 39 25 ca ff 0c 59 73 34 b7 2e 8d 08 1c 7a a9 82 22 07 42 6b 16 53 9e // 37 06 78 a2 fd a3 f3 45 55 d7 21 57 0e 72 5e 3e ab 5c ce 6e 0f 7f aa // a3 58 0f 6c 7d 7e ed ba b4 a0 b7 af 72 d3 da a4 50 e4 67 91 71 81 bb // 2c 3e ae c3 74 20 9f 7e 74 a4 e9 19 54 87 31 6e 7c 93 4d 3f 4d 0a 0f // fd 73 ae 1c 08 55 69 0d 5f 03 d0 4a d5 67 dc df c3 66 f9 2b f1 3c 3e // 66 7d bc e2 3e 2b 64 23 2c 11 f6 41 bd 7c ac 7f 1f 9e ee 72 eb 98 a5 // cc 28 22 6a fc d1 fe fe c1 b2 75 18 6c 48 f0 63 fc 2e 99 44 85 69 bb // 5a 90 3a d4 50 a5 81 2b 17 c8 fa 3a 7a e6 39 73 49 74 d3 68 ad 09 68 // b2 ff 13 81 c1 28 ab 00 b8 37 d7 65 e3 6b fd af 8d 52 84 97 5f af 73 // 9b 98 82 a0 db 32 7e a5 22 fb d7 1c 3a 70 8c c6 74 be e9 86 02 54 08 // 04 d8 56 82 98 26 a9 55 43 c0 16 8a f6 3f f0 84 c4 6e d8 13 20 f5 d6 // bc ca 8f e5 95 50 91 ca eb 78 dd f5 3b 81 9f f9 1b ce 93 7e 02 02 5b // ea ff 55 94 62 04 52 63 a3 ff 13 2d fd b5 02 47 47 bb 5a fc df 8d ee // 04 a8 08 5a 92 68 79 02 56 48 3e 7f 33 fd e7 14 78 f8 77 23 39 15 49 // 52 df f0 e1 ac ff e8 7e e3 7f 83 0c 30 b8 90 42 b7 78 cc 87 fb bb 79 // 67 fb 01 10 a5 4e a4 a7 bb dc 57 5a 93 df cd 4f 18 41 c9 a7 5d ce 63 // f9 0a fe d2 02 ac eb 7a 95 93 d0 de ec e3 ad fd 66 b4 f4 0f 50 c0 cc // 18 22 83 5b fb a2 b2 0f 25 d9 91 f8 ed 85 20 4e 9b 56 da 47 09 e3 c1 // 54 4a 96 fc b9 14 c3 27 aa 8d 6e 7e 22 b2 1c 37 45 f5 79 48 3a 19 59 // a2 76 6c b3 4a 96 15 72 c6 b1 ce dc 06 cb b4 29 90 53 51 4f bb 38 4f // 81 92 f4 a5 e0 48 36 67 c6 85 b3 fd 03 2a 9c 01 47 16 51 bd 7f 85 03 // eb 7a 9b 56 4f 77 9f 9d 33 b1 20 fb 9e ae 77 9e 37 b2 8c 82 79 09 17 // da 2d 76 31 86 40 1b f9 b9 d3 a5 05 72 db d7 f7 ac 54 a5 af ed 50 59 // 4e 17 5e cb 23 f9 c9 fb 94 9b bf 84 b9 4e c5 80 a1 d7 0a a4 05 d6 45 // ee 08 48 51 7d 23 9d 5d d0 c0 47 4e 0b 50 99 12 36 b5 7d 6a f5 32 56 // 21 39 9f a6 47 94 6b e8 b2 7b ff 17 9d ab fb f0 84 cd 7b c3 fd b5 31 // 36 36 ba 7e e5 26 4e 90 d7 6a dd 5b 41 c3 d2 3f bc b2 e9 06 6f 18 7b // ba 27 70 ab ea 27 f2 aa f8 cb e5 45 f2 16 e5 bd ec b3 a5 84 51 19 70 // 31 40 58 47 48 03 a2 4f 88 90 3b bd 69 e3 33 e2 c9 04 61 83 c7 94 57 // 36 a0 f3 96 76 b6 4b 12 b3 19 c3 ce 11 10 76 79 c6 7d 87 ab 6e 9e 1d // 2d 28 90 56 74 e9 da 79 8e 20 26 cb 54 4d 4a e3 56 99 1d 29 ed 4b d3 // 8f 2a 5a 7c 6c f2 a3 0b 1b 6d 48 70 0c ce 7e b5 73 e8 4a 46 c2 50 70 // 52 5f 67 d4 55 38 70 4c a3 cf 53 be 6c 44 e8 4f bb 40 38 78 03 e6 db // 47 b3 73 cd 36 78 36 89 b7 f9 3e b2 72 87 57 0d ae 90 d2 12 14 a8 5d // 6b fa 89 8f cc 21 81 af 6e 25 da ea 78 6d 7d 50 af a5 87 31 b4 fa c9 // c9 d2 86 1c 80 2c fa 6e f8 54 e7 47 21 7c 0a 89 4a 28 d2 1d 0a 43 b9 // de 43 98 5c 47 56 c2 9b 56 10 29 ef 95 cf dc 27 bf 38 f2 6d ac 2f df // 97 cc 58 d9 c1 c5 9b f4 ee 59 76 8a d5 1a 1d 0d 8d e9 2d 0e 2c 72 3b // 1d df 41 1d 23 56 6c e0 b7 2c c2 27 d4 1f b6 3b 6a 13 18 8f e7 25 25 // ad 31 6f ae 05 f5 aa 72 33 f7 bf ed 18 7f 1b 1f 87 a8 61 af b1 73 55 // 2f 5d 7c 9b c7 ac c9 51 07 bb c3 23 c3 76 04 4a 01 ab 13 da 42 d1 ab // 27 b8 6d c3 de 3b 15 7e 47 79 0b 78 89 6b cb 2c 53 2a 7b 74 87 bb 6f // 24 c4 02 1c 42 35 7d f5 2e 4d 58 48 b5 58 46 09 a4 82 de a4 6d 17 3d // 2a 69 59 58 00 2a bd 09 3c 25 f0 02 11 6f 8a fc 55 e7 29 02 4a 4d ed // f5 a4 d3 c6 26 eb d9 36 7f c1 8e 7e 4c 75 54 fb a0 ad 73 49 c5 d5 26 // ea 6d bd 2c 03 ff 33 58 0b 15 fe c3 c1 f8 27 e8 85 db 59 2b 47 01 55 // 44 f6 b1 d4 00 bd e1 13 3a fa 00 71 f6 8f ee bd 98 7a 80 7c c6 d5 b1 // b8 82 74 10 c0 b6 d4 6c 4b 0c f6 a5 df 99 9f 71 ba 3e f4 d9 da e2 46 // d3 e5 8e 74 28 d9 8a 33 07 6f fc 52 59 46 78 0d 01 00 00 00 00 00 00 // 00 b8 72 f0 99 9d 47 c6 e4 24 31 7b d8 b0 e2 f7 0a c1 0d fa a1 99 90 // e2 a3 f7 44 ea 5b 32 99 6d c2 28 ff 8d e8 36 b5 ec b7 e5 6c fb 3d bf // 48 17 2b 5f f0 9e ec f1 44 39 b8 bb c5 cf 3c cc 98 63 ef 55 47 fa 28 // 96 b7 31 96 cd ca b9 79 54 f9 ac be c8 e7 d2 62 6b 1a 3b 89 83 fa 31 // 96 1e f8 c8 68 4e e8 24 f3 43 93 3c d7 3d 51 6e 1f 80 86 55 6a b7 18 // 01 00 22 31 9a b3 9f 72 b9 e7 98 9e 50 ec 86 81 f3 f6 a7 78 e7 d2 3c // 8b e2 f4 c2 6b c0 ed 85 59 47 10 7e 93 cc 9e 75 15 fe 67 b0 c3 b6 e4 // 3d 9f b1 57 be 2b 2f 2d 9c 79 9d e5 52 14 97 4e c2 54 f5 4c b6 c2 0a // 76 e6 56 cd 75 35 02 49 97 50 23 81 64 f1 ce fc 37 63 6e 9e b4 03 80 // 53 b6 31 c9 5d 80 bc 50 e2 48 ef 56 92 ee b3 f0 c8 6a a5 04 76 ee b8 // f8 0f 71 15 a4 c4 10 dd 80 26 4c 12 3f f0 b6 2b 62 91 db 85 86 58 16 // cc 36 87 1b 06 19 84 a4 af c4 40 02 9c 33 86 84 33 0a 64 0e 9b 31 e0 // 6e ea 4d ed 4e 15 d9 2c 44 a2 83 68 13 8a ed 08 69 9a ee 77 2a c5 73 // 4e 74 a6 5a 6b 8a cd 6c b8 6b 2b cf 12 33 0e a8 08 52 4e e8 38 ad fa // 3c 18 5d 24 e3 b2 e5 e8 9a 5c 9b 95 a6 59 29 8a 49 35 54 9e 21 8d 4b // b4 da 58 a2 a6 63 25 1f fa e5 c6 13 7f 8e 70 a8 6a 3a 26 f4 bd f2 18 // 7f a4 b9 fb 3c 82 2a b9 61 84 6f c0 1d 24 75 30 c8 9d ae d7 ef 18 a1 // 4c ba 3b 47 d3 69 98 0c f4 80 49 02 1c ba a2 71 ca ee 8e 00 ae a5 6a // c7 b5 c2 98 99 34 8a e1 29 ba 84 0c 39 f3 3a 7c 2f 0b 2f ef b5 29 1d // 23 ea 7e 5a a9 11 01 58 55 76 d9 99 6a 05 89 73 41 e4 10 63 bf 9c ae // 13 7e d9 85 28 3b be 3a be 8e 5a 27 54 37 8e 2c a7 f1 28 70 56 c8 a0 // 54 59 d6 a4 7a e4 93 3c 43 87 92 87 b7 ee 55 7f 3a f6 b0 47 77 5c e7 // 6a a0 64 be 50 ca ec 22 38 2a 5e 73 57 65 91 0f dd 92 6d 14 8f f7 7f // 42 ee 9f 60 fe db 0c 41 58 e0 2a 38 59 34 c8 45 21 d5 2b e0 e0 e0 dd // db 0b ae 54 ac c1 68 59 19 cc 0d 62 19 29 50 c2 e4 76 d1 69 f3 53 3f // f9 dd 44 0c 60 92 45 0e 15 e5 19 9d 1d 30 2b d8 1c 3f 1d f7 8e 71 a3 // 9d f0 19 4b eb 1f f8 da c9 56 12 9b 7b e3 d3 9b 65 05 b1 7d 2f b3 09 // 85 9d 6d e6 2c f5 87 60 a4 62 32 67 ec 54 96 58 8d 2a b5 40 7e 31 a1 // 32 f2 6f e2 9e ce 80 ad 80 65 3c a1 90 b8 3c 9a c8 34 52 59 08 7f 0a // 84 a0 01 fb fb 49 c7 44 2a b3 71 d3 08 97 b9 47 79 03 9f 17 85 7e a9 // 6a fb 9f a4 1d b3 3d 7f 3d cf 12 32 44 97 5a 17 14 a9 6d b0 5f c1 bc // ac 17 30 81 df aa e0 90 b1 6c 05 ac a4 dc 98 af d5 79 83 47 b2 cf c6 // 0b a9 2e b5 e2 37 75 2d 64 df 19 82 ef 13 b1 16 f6 b0 10 b0 d2 ec a2 // 43 f0 f9 91 a3 f3 4a 48 6b f5 8e 06 d6 f9 22 e0 74 13 d5 84 4f f2 79 // 55 9f 8c 40 17 85 e0 20 7e ce 4c e7 dc 53 c7 70 5e 26 47 a3 c3 52 90 // 2e fb 13 6f b0 f6 95 2e b8 ac eb f9 0e 7e 56 e8 31 c2 28 cc 31 9e 9d // 07 9d 89 d2 ff 1d 43 fc 1a 11 39 c2 d7 89 3a e2 46 74 7a 8c 0c 1c 34 // c2 8c f5 d6 ea 9b 6c 71 b3 e9 66 b3 f3 22 59 a1 9c 3e 35 e4 a0 8d 4d // d2 70 52 03 3f d7 f1 43 7c e9 cd 20 88 b3 1b 8b a9 74 55 8d ed b1 f8 // d4 35 5e 22 4e 1b 8d f8 da 3b c9 3c b3 f9 b5 82 ac 37 9d cd 01 04 a3 // f1 46 d6 d3 fb 69 9d e9 9c cc d0 99 be ab e6 38 41 a2 db a6 1a 46 5b // 25 86 92 fd 98 c9 d4 ff 1f bc 72 12 ea 20 66 c5 36 7f 64 70 7e 7b 2e // 14 c5 1d 78 a5 32 8d 04 4a c3 3b 13 13 50 2b 98 6a c0 46 2c 6c 34 55 // f6 0f 72 7e 3e 89 5b 1e 4d f1 96 d4 f7 a9 e2 1c 53 a6 50 0f 0d c6 e9 // 57 53 01 64 bc 64 8e bf ed b6 c9 73 ae 8f e4 9a 92 fc a7 27 4f 29 ed // cb 20 23 56 77 5b aa b7 23 f9 e3 a0 3a 1d 24 d6 dd a5 68 53 ef 0a 91 // ca 8b c7 c5 30 e2 8e e8 96 ef d1 a1 f5 86 62 06 dd 82 e0 eb 55 4f 4a // fe dd 9e 87 56 29 03 b4 99 63 d7 2d 8c ac a7 bb 09 75 25 2f 8f 55 78 // 28 7e 58 3a ac 61 89 95 a9 41 29 9f a0 97 3e 67 ae 44 46 93 36 e4 5b // 68 f9 78 fe df c8 78 5e 33 36 10 f8 02 9b 19 42 26 f8 6e 77 0a c9 87 // cb 84 f9 c7 6e 5c ca ae fe 64 bf ca df 56 35 be e6 07 7e 05 36 4e 88 // 72 10 00 03 c9 44 2e 1c 7c ad d6 f9 8e 0d c9 e2 db 17 ea bc 8e 63 07 // ff d4 85 dd 06 93 5a 42 3d 5c 9c ff 83 2c c1 d4 81 e4 9d 6d c0 01 76 // d0 34 2f da b1 9c ec 25 1b 6f be d3 ab 63 74 ec d0 22 de 61 7c b2 72 // 0f fe bf b8 b9 8b 42 6c b4 45 43 9b 7b 08 8f c7 d9 ed 9a 91 98 9f 2b // ba d8 51 90 70 a6 f9 16 df 7c 49 e3 18 4f ef 17 53 38 7a 5a 2b 5b 99 // 1e 04 de 91 5e 05 3c 47 1d 19 8b 84 3f b0 af e5 a6 8c f8 ff fe 65 ba // b0 8f 6f 54 25 d4 58 a5 5d e6 35 55 58 bc 50 49 e3 a1 76 97 76 30 a4 // 5d e0 b7 07 6c dd a2 a1 67 00 30 90 bb bf ba 56 18 ba 2f 64 81 cd b1 // 38 6d 1f b3 c4 4a 35 c4 d0 cf 9c a1 4d ad 69 70 78 fa 4a 06 2e 55 51 // 5c 8c d6 9c 6b 2e 91 1b 19 f6 37 cb a7 c6 ca 26 b3 b4 b2 a7 4f d5 cb // c6 4f 26 9f a5 d6 f9 62 88 30 96 2d b2 d7 ee 04 a6 c3 76 73 c5 93 77 // 1e 56 8e 8d d6 cb 96 5e 67 e6 f4 be 91 e6 25 c1 01 51 60 c2 34 e8 89 // 3e ac 8b a3 97 08 b9 f3 2e 51 9a bf b9 c5 b2 56 2e 42 4d 6e b2 c8 a7 // 37 a8 30 99 78 21 fc 29 4c 55 9d 14 d7 c0 bc 8f b0 3c eb 44 f1 bc e3 // f6 3c 46 60 7b a9 5d 70 cb 80 98 d3 0e 1e 3e 6c 59 57 ed 3b 4b b1 b9 // 6d 3c 38 79 09 82 47 48 3e 6c 4f 66 9b d5 56 38 7b 34 6b fc 54 97 fd // 76 a8 e8 9b f1 85 96 8f 3e 3d d5 82 14 ec 02 4f 5a 4a 18 0b 31 ee fe // f8 23 3b bc ac 8d 97 06 b3 54 76 cd 5d 4c be 86 03 49 28 f5 c4 a3 c0 // 7f bd 3e 19 ec 89 53 6a aa 4f cb c2 c7 21 2a d2 b5 c3 21 3a 32 d7 60 // e9 88 31 49 f1 77 0e f7 7a 13 13 bc bb d4 1e be 24 6e 84 7a ac 1b af // 97 5f dd 32 6b f8 1f c6 8e 19 ce 8c c7 f0 56 f5 be 52 4f 35 fd c7 f4 // c0 42 0c 36 84 6c e5 41 5c 72 52 91 eb e4 96 40 90 e5 c5 9d 68 44 ad // 02 ac b3 7c 43 74 86 e6 77 b0 b4 8c 8b fc ed 79 27 5f f6 4f 4b e3 3b // 34 92 d4 0b 84 96 75 4a 36 b9 65 7e fb ae b2 e9 58 de 29 b2 de 4c 23 // 46 de 00 00 39 c2 87 7e 1a 21 bf 2b 55 0d 0a c6 cc e5 fe b7 2f aa cc // b3 ba 47 f4 98 c4 60 66 9c a3 45 b5 56 1f 99 b5 f2 f0 20 a2 c0 1b 9d // 95 39 90 64 ee d1 b7 e7 5b 80 2f 3e 70 23 9b 1c 58 c7 5f 90 67 ca 45 // 43 ec 5d 5e 32 fb fb b3 6d 9b a9 db 16 82 c7 c6 3e 91 f3 99 75 2c 15 // 5d c5 07 7a 2d ac fd d6 f9 e5 20 31 29 0b e7 04 31 4d 5e bd cc cf 9f // 30 98 5d ba e5 14 d0 28 3f 6c 4b 7e 3e bd d4 6b 62 79 e8 03 1b 38 47 // a8 b4 62 40 05 3c e7 6b ee 81 fa 7b 62 26 6a 1b 50 11 53 aa cd a0 80 // 38 09 cb 46 71 d5 3f 6e 55 da d8 fd 50 83 73 c1 c2 c9 35 3a 1c 9f 8d // e2 50 9e ac be 8e 17 33 47 78 80 c5 49 e3 27 a8 db 5a ae 29 16 9a c8 // 86 cd 50 86 b7 f4 e8 82 35 49 c4 4e 48 fc c3 68 3f d0 45 dd 93 67 73 // 36 99 8c 40 16 dc 31 82 3e c3 6a 0d 2c ec a9 2c 13 1c b3 d8 d5 e0 82 // 75 f4 0f 70 94 3d e8 bb cf 58 3a 89 85 c3 0d ba ce f8 42 5a ac a5 7d // c8 60 75 3c 31 c1 71 94 f7 1c 5d 31 65 72 bc f8 1a b8 db 62 e0 6c 1e // e3 9c 6a 24 dd 0f 68 d8 2c 75 76 28 42 c9 bb b7 01 27 02 91 54 cb 76 // 8a af d3 08 47 1e b5 18 c8 ae cf 27 c0 ef d0 18 83 96 1c e0 02 a6 23 // 11 89 29 3d 00 dc 4d 71 82 4d 2a f8 60 b7 b3 ef c3 c2 82 b2 71 9d c7 // 37 bc 5c 3a c2 3d d7 dd 14 20 47 2d 64 ac f6 bb 2d 97 50 38 04 a6 7c // f9 51 6e 28 16 7a b8 fd 38 ac f9 0c e5 6c fb 30 4b 59 a5 96 0f 4f 38 // 96 3d b7 1b d7 ea d6 91 78 d8 ce 52 b7 42 97 ea 3a 0c dd 55 bb 1e b8 // 49 c0 2f 8a 87 61 0b c7 fc 48 a7 af 7d 6e 56 cc 41 cf f3 03 af ad eb // 6b 45 92 60 5c 3c 3c 23 85 c9 a1 65 c1 c7 e3 01 94 c0 e9 94 49 94 72 // b0 8a aa ac a3 70 7b 9b af 31 85 f5 b1 31 48 53 d5 0d 7b 86 f2 55 61 // 5f d4 00 9f 07 b8 70 85 bc c4 4c 86 5f 7e 14 d2 9e 64 f9 50 01 bc 00 // c6 8a fc 3a 0a 05 55 02 7d 46 05 19 f1 52 64 28 9c 09 18 cf 59 4b 5a // d3 72 52 57 5a 94 84 a1 de 68 1f 70 74 5d 2c 62 48 58 1c d3 70 27 67 // 11 56 37 c7 cf 7b c1 5a 63 77 5b 90 c2 85 be 77 db 8b 85 dc 08 ab 81 // bb 30 76 94 41 7a 8d 1c 4a a1 ed 87 16 bc 58 a3 5e 1d c8 e2 3c de 37 // 48 c6 a9 33 70 39 7d d5 c4 13 71 fb e4 5b 86 e3 18 0e 41 0d ec 13 7b // d4 77 30 c7 fd b7 e0 62 ca fa e6 86 20 1b 69 07 1f 60 27 ac 38 c1 91 // c3 33 d2 7f 5c c8 14 c4 52 28 59 59 8e 7e 54 a0 4a 7d ea e2 72 53 3a // e3 9e 29 67 85 12 4e fb 67 14 08 9e 65 67 b8 db 2c b4 03 d8 7b ea 3a // 71 8b 92 58 25 b9 14 76 4e ad 06 b4 87 27 e4 c4 2b ee 1a 36 e9 84 4f // 35 c7 9f b5 0c 89 e4 d9 ad 6a 7b 46 42 99 fc d1 00 37 16 6c 2c ec d0 // 17 bf c1 84 ef 59 fe 25 75 e9 3a 13 9a 47 e2 ba f5 48 2f 3a 5d 24 84 // 13 c8 7a 39 ba f7 e1 eb 14 41 ce b3 7f 5d f2 11 84 48 34 80 8c d4 df // 62 b2 e0 b0 b0 a7 5d a0 e2 77 20 b5 ae 54 fe 00 51 8e 95 1e 21 ba 4e // 1b c2 d4 54 e7 bb fb 86 e3 aa f7 b9 a2 5e 35 4e 56 ae eb d1 1e 83 24 // 71 fc 8e dd 0d 3b 4d 3c 12 37 79 ce e8 70 c8 6d 97 d7 03 bc 44 b6 39 // a2 fc 49 85 5f a5 4e 93 04 de 1d ce df 90 df 39 77 33 fa 94 79 2c 1b // f0 68 53 35 b0 27 f3 de 1a c8 f7 f0 07 f6 1e a9 e5 19 88 f1 fc ba f9 // 82 b5 b8 08 64 5c 4e b2 fc aa ca 3c 10 66 7e dd c4 00 70 61 ea f3 c2 // 50 74 4b aa e0 33 2b ff 7c 9f 07 7e de 4b 59 38 53 f4 a1 65 dc fe e1 // 1b 75 d5 10 7d 1a 86 a6 66 9c 23 14 15 ee f1 db b5 8f 0b 82 9e f0 3f // 4e e0 e6 ac c7 87 b1 ad 31 80 78 52 ec 42 69 d2 33 22 30 48 42 ac 0c // b1 3c d5 3e 7e 44 79 cb 7f d9 d7 b4 ec d7 22 ec fe a4 c5 9f 69 76 03 // 23 d9 93 0b 03 cb a5 58 cb e3 07 11 44 7c a9 3a 01 59 6d 2b c2 45 e9 // 90 87 38 b1 de 17 f0 7c 9e ea a2 84 72 e0 85 70 a3 12 9e 81 c8 74 a8 // 94 b2 3b 1d 8a 77 c1 b4 27 5f de a8 ad f5 ff 10 ba d0 eb d4 10 73 05 // 9c 3a 90 08 01 69 9d 4c 1b 02 33 36 ed 5d 67 5b 57 db 47 70 f8 5b 0c // f1 e0 da b1 35 63 39 36 ce af fb c4 a8 a1 dd 58 be c1 fd 3f bc ee 9b // e9 87 41 58 ab d4 37 69 28 b2 02 31 91 d2 c8 7f 36 57 94 3a 60 dc b1 // 62 12 70 4c fb ee 38 1e 58 19 4c 56 71 b5 94 49 4c 60 32 55 12 77 3d // c7 dc 38 da 37 d8 b2 75 be cb 97 f4 72 06 7b fd 7d 35 94 af d7 8a 08 // 03 83 92 48 c7 5f dc e6 b6 27 11 02 6c c3 2e 1e 3a a0 11 52 17 5a 30 // 96 60 33 94 e7 73 88 37 90 e9 66 22 a2 b3 47 eb e5 69 eb 26 d4 01 01 // 15 cf a6 11 d4 de b8 3a e4 b0 75 3b 52 8f ea 44 0c 95 d5 65 0a cb 53 // 93 1f 8e f6 b6 61 4b 2a ef d0 75 4c 54 84 b6 13 9a d1 8a 0c c2 3e fb // c3 de f8 59 5c a4 5e f2 4c b6 08 3c 93 26 13 81 a1 11 f2 ef 45 0f 5f // 95 a3 43 de 96 d4 d4 26 d3 a7 a7 25 26 b0 9b 82 5a 75 df 24 db f4 d5 // 1a 5b 77 f8 cb 94 8b cb 78 c4 b4 c0 9d a9 2a ea f9 85 5d 40 b0 d5 d8 // ea bc 5f e5 7c 55 5f 58 ba 01 25 e2 95 12 d2 29 5b 0c 9d db a4 5f 37 // a3 46 e7 82 6a 4e 3b cf a4 0a 54 be 09 6f 69 5a df 9e 66 bc 9f 36 95 // 56 ac 26 c6 fe 46 d4 bd 80 ac 94 9c d3 1e 13 90 c1 43 87 a8 1c b5 cf // 81 49 44 e6 0a 29 37} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: nil // ] memcpy( (void*)0x200000004280, "\xba\x5b\x8e\xa6\x14\x89\xf0\xf3\x83\x00\xfd\x70\x1e\xb5\x16\xb4\xc6\x0b" "\xbe\x2f\xf4\x82\x3e\x46\x06\xfb\x2b\xb2\x64\x19\x22\x17\xc6\xfa\x28\xb3" "\x32\xcf\x26\xb9\x1e\x1d\x91\x64\xbd\x55\x19\x45\xa8\x35\xae\x0d\x1c\xbd" "\x61\xc6\x83\xa3\x2f\xcf\xc1\x5e\x84\xe9\x15\x26\xd1\x4a\x8f\x3a\x5e\x20" "\x42\x6d\xb6\x5c\xd5\x22\x92\x75\x7c\x75\x33\x15\xdc\xfc\x61\x0c\xc8\xfe" "\xc0\x68\x94\x84\xec\x08\x3e\xc9\xb5\xab\xb9\xfa\xe2\xbf\x0a\x3b\x61\x5f" "\x0d\xea\x06\x21\x69\xcf\x61\xa9\xf0\xcb\x3f\x29\xa6\xc2\x87\x52\xf8\x0c" "\x08\x27\x28\xc3\x00\xe1\xec\xca\x8a\x70\xb8\xe5\x00\xde\xa6\xd9\x15\x2b" "\xc6\x62\x7b\xfd\x30\x18\xcf\xb6\x24\xa1\xb5\x41\xde\xfe\x58\xda\x6d\xf0" "\x80\x27\xd6\x74\x34\xaa\xa6\x04\x68\xd9\xfc\x37\x72\x25\x18\x14\x26\x23" "\x13\xbc\x9f\x87\x95\x61\xd5\x47\x93\x79\xd0\xbc\xc9\x73\x6e\xfe\xb8\xb2" "\x92\x77\x51\xc8\x3c\x2b\xeb\x3c\xeb\xe9\xa4\x4b\x89\x62\x33\x2c\x62\x98" "\x09\x5d\xd6\x86\xe9\x6a\x86\xff\x0e\xa7\xad\xd2\x7a\xd2\x01\xb6\x4b\x73" "\x40\xce\x6d\xfa\x43\x46\x4a\x82\x70\xf0\xf1\x1b\x14\x85\x38\x9f\x8b\x4e" "\x85\x75\x6b\xe2\xeb\xcc\x8a\x56\x0a\x2e\xdf\x06\xe4\x4c\xc4\x3d\x25\x65" "\x01\xa1\xe4\x42\x83\xfc\x4c\x14\xcd\x5a\x17\xa8\x53\x8c\x60\x2d\xe6\xea" "\xa0\xdb\x28\xeb\x73\x34\x38\x25\xef\x7d\x29\x5c\xf1\xaf\x0d\x4a\x31\x54" "\xdb\x22\x4d\x31\x9f\x1c\x10\x9a\x09\xbf\x3a\x72\x3e\x5b\xf7\xc6\x9a\xa8" "\x2c\xe7\x15\x0d\xe7\x71\x3a\xc2\x05\xe7\x39\x45\xa7\xf9\x4b\x1c\xdf\xb1" "\x37\x6f\x2e\x41\xa7\x0f\xb7\xd3\x9c\xc4\xe3\x8e\x60\xc2\xca\x1a\xb7\x93" "\x7d\xef\xac\x79\xab\xe4\x48\xae\xd5\xbe\x52\x80\x5b\x47\xf4\x81\x17\x29" "\xcc\xcc\x36\x3b\x0d\xd8\x84\x72\x95\x0c\xe5\xaf\xed\xf7\xe3\xee\x53\xe5" "\x67\x54\x06\x74\xd4\x85\x28\xc0\xdd\x9c\x34\x1b\xa6\x3f\xe2\x13\xd5\xc9" "\x07\x88\x9e\x1a\x04\x8e\x7c\x23\x93\x06\xef\x73\xa0\x3c\xdd\x8c\x26\x36" "\x83\x19\x49\x41\x8b\xc4\xb6\x51\xe5\x23\xf7\x81\xf3\x58\x8c\xe0\x69\xc1" "\x74\xe7\x19\x5d\x6a\x15\xa1\x4f\x09\xd1\x4b\x1f\x7b\xb2\xb3\x3d\x37\x42" "\x1e\x63\xdd\xfa\x26\x9a\xb8\xb6\x2a\x0e\xe3\xd9\x7d\x51\x6a\x5b\xb0\x0b" "\x81\x25\xe3\x8e\xb3\xa5\x36\xa0\xb1\x7b\x54\x62\x1f\xeb\xb2\x93\x6d\xbb" "\xa1\x07\x91\x39\x47\x4a\xfc\xbd\xb0\xce\x42\x81\x1d\x1e\x4c\x34\x5e\xdd" "\xf2\x78\xb1\x6d\xe9\xef\x06\x1a\xfa\x84\x2c\x45\x96\xf9\x3d\x7f\x4b\x25" "\xa1\xe0\x4e\xfa\x93\x3b\x7c\x3c\x9f\x69\xa6\xe9\x98\xac\xc6\x8e\x22\xb1" "\x1b\xb9\x35\xfa\x87\x15\x13\x40\x28\xa6\xcd\xae\xce\xc5\x40\x89\xc2\xa0" "\xc6\x89\xdb\xb9\xb5\x41\x14\xb0\x38\x89\xff\xc4\x23\x0b\xe9\x29\xa2\xb2" "\x7b\x04\xf8\xdb\x25\xc5\x2f\x0e\x99\x4d\x55\x19\x7c\xf4\xa0\x35\xa0\x60" "\xa5\xd0\xa5\xbb\x70\x2b\xb1\xc5\xc4\xcd\x87\x62\xcf\xa2\xbd\x55\x44\x09" "\x60\xbe\x8f\xa8\xa2\x11\x93\xce\xfb\x0e\xa9\xfd\x71\x85\x4f\x82\x01\x12" "\x9e\xa9\x8e\x89\x22\x4f\x80\xb5\x0d\x32\x80\xb2\xca\x46\x75\x71\x9b\x12" "\xbe\x15\x44\xeb\x3d\x1c\x9a\xa6\xd0\xb8\xfb\x3b\xbc\x76\x89\x5d\x9b\xb8" "\x36\x68\x3f\x84\xfd\xd2\x2f\xe0\x8a\xdd\x2f\x5b\x05\xaf\xdc\x35\xc1\xca" "\x94\x64\xff\x38\xc5\x02\x3c\x6e\x83\xc0\x8d\x47\x82\x05\x6c\xfa\x79\xf5" "\xaf\xcb\x6a\x64\xb3\x58\x86\x11\xd7\x28\xa2\x01\xdd\x53\x47\xa4\x76\xb4" "\x1e\x23\x0c\xa9\xd4\x95\xdf\x26\x79\x5e\x8f\x3f\x3a\xaa\x3b\xf9\x4f\x9b" "\x74\x80\xc2\xa6\xc6\x99\xcf\x91\xa4\x8f\x7b\x1f\x6c\xd4\x89\xf6\x5f\xe7" "\x3e\x13\xc0\x09\xe1\x8d\x70\xba\x6f\x14\xd2\xd6\xf1\x55\x3e\xbd\xa5\xe1" "\x95\x34\x24\x86\xf1\x82\x29\xb2\x62\x74\x18\xb3\x36\xbe\xbc\xe7\xc2\x7a" "\xab\x37\x61\x8d\xc9\xf2\x45\x1d\x9e\xb0\x68\x01\x01\xaf\x46\x6f\x33\xaf" "\xf9\xa8\xb1\x29\x61\xe2\xcd\x01\xe8\x15\xf6\x73\x19\x0e\x7c\x3c\xbf\x84" "\xcf\x0d\x23\x36\x79\xcd\xd5\xca\xc7\x4c\x4f\xc4\xd7\x84\x39\x8f\xed\xd4" "\xf5\x2c\x09\x86\x32\xd8\xe1\x0a\x12\xf3\x4c\xbf\xb2\x56\xba\x61\x36\x24" "\x32\xec\x74\x73\x2a\xbc\x64\xc3\xb7\x11\xf2\xaa\xb8\x27\x3e\xf8\x8e\x31" "\x89\x7d\x2e\x50\x3b\xb8\x04\x93\xc0\xa1\x18\x2d\x63\x84\x20\xbe\xb6\xef" "\x9e\x11\xac\xa8\x68\xc9\xfc\x61\xaa\x78\x7c\xa8\xdb\xac\x99\xdf\x54\x5c" "\xe2\xd5\xd5\xc4\xfc\x7e\x31\xe4\x15\xe5\xc2\xb0\x6a\x32\xab\xea\xb7\x30" "\x6c\x52\x8b\xd2\x2c\x23\x13\x5e\x94\xfa\xfa\x42\x71\xad\x4b\xb2\x29\x87" "\x19\x09\x78\x6a\x22\x52\xb8\x21\x4a\x30\xf0\x9b\xea\x59\x13\xb8\x40\x79" "\xd2\xfe\x68\x45\xd7\x50\x13\xa1\x50\x69\x00\x2b\x0e\x09\x56\xe4\xc8\x1c" "\x2a\x9f\x75\xfc\xc0\x40\xc4\x7a\xd4\xc2\x3a\x4f\x27\x97\xc8\xd9\xc4\x3f" "\x87\xcb\xbe\x07\x86\xb1\x19\x67\xd5\xad\x1d\xcb\xc5\xfe\x39\xb6\x16\x15" "\xba\x16\x39\x23\x37\xb7\x8b\xd5\xe5\xfc\x9a\xd9\xd6\x46\xbe\x0a\xb3\xa8" "\xd2\x46\x30\x9e\x05\x6f\xa6\x6d\x34\xdd\xef\x99\xb7\x37\x17\x13\xb9\xe2" "\x82\x7a\x30\xd5\x46\x45\x66\x47\x43\xaf\x79\x4e\xbb\xe9\x27\xe4\x3d\xf9" "\x14\x69\x50\xaa\x24\x05\x8b\x81\xce\x7f\x95\x55\xd1\x98\x7b\xaa\x47\xc4" "\x86\xbc\x41\x80\xdb\x65\xb8\x97\xeb\x21\xff\x25\x29\x42\x3c\x88\xf2\x22" "\x7e\xf4\xee\xf0\xb0\x35\xcc\xc9\xd1\x1f\x89\x5d\x18\xed\x9f\x00\x50\x4d" "\x9d\xb2\x60\xd1\x56\x1a\x5c\xc3\x69\x2a\x52\xda\xc2\x0d\x64\xed\x22\xc5" "\x0d\xa1\x71\xb2\x23\xfc\xfe\x0a\x7e\x45\x1c\x83\x41\xde\xb6\x3e\x3e\xd6" "\xff\xca\x9f\xd7\x9a\xac\x6c\x8c\xd4\xe5\x8a\x4c\x2a\xf8\xac\xd4\x87\xbe" "\xa4\x84\x6b\x7c\x22\x2a\xdd\x78\x72\xd2\x1a\xb6\x45\x67\x80\x0f\xee\x1b" "\x16\x69\xf6\x31\x20\x13\x35\xfb\xc5\xd1\xb3\xd9\x04\x5b\x00\x00\x55\xed" "\xc3\xbd\x55\x15\x18\x21\x68\x93\xd7\x08\xa4\x4b\x43\x8e\x44\x79\xe3\x35" "\x08\xc1\x2f\xe0\x31\xe8\xf7\xa1\x96\x89\x12\xeb\x7c\xbe\x40\x53\xf5\x94" "\x00\x63\xc2\xfb\x57\x70\x38\x7d\xb7\x4d\xd8\x70\x7a\x71\xb7\x67\x1c\xc5" "\xab\xf4\x20\x12\xa9\xee\x63\x8c\x60\xf5\x9d\x96\x78\xb2\x2f\xc5\x36\xff" "\xb9\x53\x84\x3e\xd6\xc6\x6a\xb9\xbc\xf7\xcf\x5f\xf2\x49\xa4\x40\xaa\x72" "\x63\x39\xb9\xa9\x6f\xd3\xa0\xe3\xc3\xed\x11\xab\x91\x0e\xbd\xc3\xe0\xeb" "\xa9\x98\x09\xfb\xd8\xbf\x15\x80\xf0\xa1\x40\x92\x4b\xed\xce\x7e\x90\xee" "\x7e\x0d\x8b\xb9\xf8\xcb\xc9\x90\xda\x15\x77\x2e\x67\xd3\x69\x91\xa2\x5c" "\x38\xb7\x7e\xf6\xd0\x13\x57\xcc\xbb\xf6\x54\x91\x03\x95\x5a\x4d\xc8\x2e" "\x0b\x1c\xd5\xe1\x69\x07\xa4\xe7\xf4\x88\xb0\x94\x99\x34\x94\x7a\x7b\x69" "\xf3\x95\x6b\x3b\x62\xc9\xd3\x57\xc9\xa3\x32\x9d\xda\x4b\x82\x74\x37\xc6" "\xd0\xef\xc7\xf5\xb7\x67\x25\x3c\x0a\x7b\x46\x3e\xc9\xec\x90\x64\x14\x2f" "\x0b\x14\xa1\xc6\x17\xef\x9b\x71\x30\xa5\x1c\xc2\xb9\x80\x79\x33\x7e\xdf" "\xac\x68\xc8\xb7\x77\xb7\x3b\xd5\x80\x97\xda\xa9\xf6\x4c\xa3\xb9\xda\xab" "\xcc\x53\xdf\xce\x7b\xe8\xdc\xd8\x3b\x73\xf4\x53\x02\x3d\x57\x32\xab\x3b" "\xb9\x5a\x80\x84\x5e\x6e\x42\x7b\xa6\x88\x51\x8e\xf7\x42\x5c\xf0\x36\xad" "\x42\xdf\x97\xb3\x39\xab\x88\x0c\x94\x90\x81\xeb\xe5\xf4\xc0\x51\x82\x3c" "\xd1\x26\x79\x16\x49\x84\xab\xc2\xa2\xe3\x67\x6e\x7e\x44\xc2\x06\x43\xe4" "\x8a\x2f\x24\x40\xef\x1b\x54\x1b\x9b\xaf\x3e\x8a\x7d\xb7\xa0\xf0\x1c\x52" "\x17\xef\x20\x03\x84\x74\xd9\xc1\x20\x7e\x72\xfd\x71\xa2\x5d\x5a\x8f\x7b" "\x91\xbe\x13\xb3\xa3\xb9\xd5\x7e\xdc\xf7\xc8\x8b\x0a\x3b\x4a\x06\x0a\x7e" "\x03\xa5\x66\x7e\x5b\x44\x4b\x00\x57\xdd\x5a\xb4\xe1\xc8\x5e\x09\xf5\x55" "\x2f\xaa\x56\x54\xbb\xa8\x84\xbd\xca\x02\x47\xf1\x2b\x32\x44\xa0\xf7\xa0" "\x49\x2e\x32\x1e\xb4\x18\xcf\xa7\x59\x15\xd7\x6e\x9e\x26\xd7\x34\x34\x5f" "\xbd\x6e\x9b\x40\xf9\xc4\x7b\x20\x3e\xbb\xfb\xad\x6b\x33\x0e\xc9\x0a\xda" "\xc0\xe1\xb0\x37\x45\xe4\x8a\x1e\xb3\xfa\x3c\x07\x9d\x47\x06\x2b\xf5\xa7" "\x79\xc3\x47\x9e\x6f\x5c\x4b\x88\x00\xa1\xe7\x51\x3f\xcd\xfa\x0a\x6c\x6b" "\xca\xcc\xc6\xf7\x36\xa0\xec\x40\x31\xd7\xfa\x23\xc8\x9b\xb6\xa8\x70\x2a" "\x69\x4a\xa8\x7e\x88\x52\x14\x90\xa5\xdb\xd5\xd0\xe5\x77\x5b\x56\x1e\xf9" "\xd4\x37\x6e\x36\x7e\x31\xa8\x3d\xf6\x41\xc5\x5d\x38\x01\xf5\x73\xef\x7a" "\x2e\xa9\x45\x37\x9f\x9d\x07\xa0\x4c\xf8\xba\xe5\x5e\x51\x59\x97\x19\xf7" "\x9c\xa3\x39\x17\xc4\x21\xff\x63\xa3\x35\xe1\x1b\x4f\x26\x6f\x51\x71\xe2" "\x7b\x60\xb5\x44\xf8\x93\xcc\x8f\xec\x2b\xd1\x91\xff\x7e\xd8\x74\x76\xe3" "\x19\x79\xdf\x4f\x01\xd7\x1a\xf3\x76\x54\x1b\xf0\x9c\x01\x47\xd3\xcc\xb9" "\x12\x85\xe6\xef\xf7\xc4\x4f\xc8\x03\x1e\x3a\x03\xb4\x7a\xbe\xa0\x82\x8e" "\x42\x86\x1d\x27\x47\x25\x9e\x1f\x78\x15\xd1\xd1\x8b\xc8\xef\xcc\x36\xa2" "\x76\x43\xfb\xbb\xf3\x3e\xee\xd6\xb5\x03\x67\x73\xa3\x05\xa9\x01\xda\x08" "\xf8\x58\xe1\x90\x9f\xf3\xea\x33\x5b\xb4\x82\x00\x02\x00\x44\xb0\x71\x1b" "\x67\x61\x5a\x06\x26\x01\x7d\xa6\x62\x74\xe8\x04\x88\x3a\xa8\x58\xd0\x47" "\x07\xd4\x43\x80\x5c\xac\xeb\x8b\xd2\x39\xe3\x1e\xa7\xa4\x46\x75\x2f\xe7" "\x89\x20\x5b\xb0\x83\xf1\xca\x90\xd1\x58\x9c\x43\xe8\xbb\x15\x28\x01\xff" "\xf7\xbf\x38\x53\xd8\xbf\xcd\xd6\x30\xb4\x1a\xa3\xfe\x1f\x09\xbd\xc4\xcb" "\x1e\xc3\x38\x85\xc2\x1b\x88\x39\x35\x46\x8d\xfa\x05\x06\x3f\x9d\x7c\x1f" "\xaf\x14\x11\x5e\xd3\x59\x12\x21\x87\xa9\x0b\x20\x45\xc9\x66\x50\xb2\xbe" "\x20\xf1\x51\x9e\xda\xa1\xd3\x59\x7d\x2b\xb2\x2e\x08\x95\x4d\x00\xf7\xad" "\xdb\x14\xb6\x39\x25\x8c\x75\x69\x8a\x98\x04\x60\x28\xc6\xf9\xff\x18\x70" "\x86\xb5\x69\xcd\x48\x56\xd9\x7e\xa1\x79\x97\x22\x15\x8e\x84\x18\xdd\xe7" "\x09\xac\xb7\xfc\xf8\x90\xed\xee\xdf\x6f\x49\xc7\xd7\x9e\xe5\xdf\x4c\x53" "\x5d\x53\xbb\x54\xec\xd4\xa3\x03\x14\x71\x26\x21\x90\xd4\x4b\x1d\x86\xa5" "\x41\x0f\x34\xb8\x0e\x38\x7e\xee\x07\xac\xb8\x3a\xcb\x7d\xe2\x4b\x2d\xf7" "\x4b\x0b\x9b\xd6\x17\x9e\x13\x2d\x1a\x5e\x70\xfb\x52\xa2\xf7\x04\xdf\x38" "\x51\xe2\x64\x19\x26\x63\x29\x71\x83\xb1\xdc\xf9\xe7\xf1\xa2\xc7\x46\x99" "\x1c\x2f\x23\x93\x08\x20\x1a\x1d\xaa\x8b\x24\x78\x07\x9a\xf0\x22\x04\xc8" "\x24\x4a\xdc\x87\xdf\xcc\x03\x97\xa4\xdb\x01\xf1\xf0\x79\xc3\x9b\xed\x4b" "\x12\xa5\xc5\xe4\xcc\x0b\x0c\x66\xe8\x36\x91\xdd\xb7\xe7\xc3\x0d\x23\xa1" "\xb9\x7a\xe7\xe0\xfd\xb5\x65\x64\xba\x29\x99\xc7\xae\xcc\xed\x3e\x0f\xd1" "\xd1\x85\xbd\xc1\xc2\x7f\x44\x04\xf1\x11\x77\x27\x55\x63\xd1\x30\x3d\xbd" "\xd6\x94\x72\x77\xd9\x0f\xf4\x61\x42\x5f\x6e\x6a\xa6\x4a\x69\xa1\x46\x38" "\x61\xf8\x3f\xed\xd0\x0d\x0c\x3f\x8c\x21\xeb\x91\x84\xcc\x02\xf5\x01\xab" "\x35\x3c\xdc\xd3\xec\x8d\xa6\x77\xe8\xda\x84\x72\xd2\x2b\xf1\x4f\x34\xbd" "\x5c\x43\x35\xdc\xb5\x9d\x8a\x64\x5a\x70\x74\xf6\x04\xcf\x2d\xef\xbd\x2f" "\xa0\x05\xb0\xb8\x8d\x64\xf0\x10\xf1\x90\x26\x12\xa3\x00\x6d\xbd\x0c\x0c" "\x6a\xf1\x78\xae\x88\x8d\xcd\xdd\x07\x48\x45\xfd\x69\x1d\xfe\x45\xd5\x63" "\x11\xf4\x91\x54\x95\x81\xb2\x25\xd6\x99\x77\x03\xeb\x55\xcb\xd6\x0b\xea" "\xbb\x8d\x46\x8d\x07\xef\x9e\x6d\x8a\xd7\x85\x21\xa4\x55\xdd\x05\x95\xa6" "\x6c\x2d\x5b\xef\x40\x7c\xf2\x66\xc4\x83\x7e\x8b\x41\xec\x5b\x08\xe7\xf0" "\x97\xab\xc7\x3e\x0e\x36\xab\x26\xe1\x01\xe5\xf9\x94\xf6\x72\xc7\x41\xa4" "\x9e\x60\x8d\x93\x84\x3e\x84\xa4\x21\x62\xf0\x77\x44\x36\xfd\xed\x89\xe7" "\xe7\x53\x90\x28\x69\x17\x8a\x93\x46\xc2\x37\x26\x69\x43\x78\x0d\xa1\x0a" "\xc1\x8b\x6a\x8a\xbb\x97\xb5\x58\xd4\xfb\x33\x1f\xd9\x08\x20\xb2\xa3\xb6" "\x4b\x11\x77\x6e\x7d\x4f\x53\xa1\xbb\x0f\x66\x95\x31\x91\x20\x90\x5d\x8d" "\x32\xf9\x04\x2c\x3a\x40\xc2\xc4\x7f\x89\xb4\x62\x2c\xde\x88\xaf\x69\xf7" "\x32\xbb\x64\x38\x08\x5a\x7c\x61\x4a\x9c\xb9\x13\xa7\x75\x3f\xea\xcb\xc5" "\x4e\x32\xc3\x34\x31\x23\x0c\x78\xb2\x52\xb4\xbc\x08\x74\xb1\xe0\x7d\x85" "\xe7\xcb\x3b\x07\x95\x79\x16\xd4\x48\xbb\xa0\xe9\xd9\x7c\x32\x0a\x7f\xca" "\x0e\x01\x94\x8c\xf7\x50\x7f\xb3\xbd\x94\x22\x1e\x3b\x92\xba\x3c\x55\xf0" "\x0a\x45\x69\xd6\x4c\x3e\xb3\x93\x6a\x2f\xae\x6d\xb0\xd5\x27\xb5\x5e\x40" "\x17\x1f\x2d\xf1\x9b\x84\xcf\xcd\x57\x33\x2e\xba\x07\x65\xee\xba\xbb\xd9" "\xe6\xa9\xbc\x8e\x1f\x43\x82\x9d\x17\x00\x25\xcd\x46\x53\x18\xa2\x8e\xf0" "\x62\x81\x54\x45\x26\x4a\xee\x30\xb5\x97\x6d\xa2\x48\x0c\xd7\x0d\x23\x25" "\x5b\x6f\x24\x0e\xa6\xf2\x11\x56\x0b\x76\x7e\xa1\x6b\x87\x38\xf8\xe8\x53" "\x98\xd4\xdf\x77\x1b\x10\x05\xe5\xd5\x90\x06\x2d\x55\x43\x4d\x50\x4b\x5e" "\x9b\xe5\xa8\xb3\xd2\xb3\xb4\x14\x13\xcf\xc2\xa8\x08\x31\x86\x79\xef\x0b" "\x26\x07\xd6\xef\x00\x49\x62\x34\x95\x6c\xdf\x74\xba\x83\x32\x05\x1a\x8f" "\xac\xb4\x38\xdc\xea\xda\x86\x0d\x3a\xad\x5c\xb3\x33\x85\x02\x3d\x22\x47" "\x15\xcc\x28\xce\xc3\x54\x68\x65\x41\xf6\x69\x02\xa8\x83\xc4\x55\x25\x28" "\xb0\x78\xaa\xdc\x85\x28\xa4\x42\xda\xb2\xe6\x84\x51\xd9\xad\x09\x66\x68" "\x7c\x6d\x8f\xd6\x96\x65\x2a\xf8\xd4\x3f\xfd\x37\xe7\xcc\xb9\x6d\x5a\x0b" "\xf6\xd7\x2c\x37\x68\x55\x12\xe9\x0b\xd0\x85\xd5\xf4\x6d\x36\xef\x55\xaf" "\x96\xe2\xea\xa1\xf5\xd5\xce\x44\x46\x04\x13\x57\x8d\x71\x6f\x96\x3d\xf4" "\x8a\xc4\xce\x00\x13\x0b\xb4\x4d\xb3\x51\xe4\xfb\x52\xf8\xb2\xae\x0a\x94" "\x4c\x49\x51\x4d\xa5\xd7\x40\xf3\x89\x1c\x34\xb0\x68\x10\x66\xf0\xc2\xf7" "\xc2\x6a\x80\xa4\x40\x18\x83\x20\x51\xd2\xc3\x58\xdf\x63\xf6\xe3\x39\xda" "\x47\x61\x50\xcf\x83\x41\x00\xf2\x6e\x73\xed\x4b\xbd\x82\x10\x7c\x2f\xcd" "\x40\x19\x55\xbc\xf1\xc8\x3c\x2a\x1a\x1b\x1f\x72\xc6\x0d\xa8\xf9\xc5\x64" "\x71\x13\x36\x4c\xff\x4a\x20\x4a\xf2\x7f\x13\x18\x83\xe9\x93\xe4\x36\xc1" "\x86\xb5\x31\x9f\x1d\x24\x75\x84\x2d\x03\x2b\xaa\xf4\x17\x22\xe6\x97\xe2" "\xd1\xfe\x83\x71\x7e\x1f\xb6\xbe\x09\x7f\xea\x1f\xba\x7d\x35\x4e\xbf\x8d" "\x68\x8d\x78\xb0\xdf\x5c\x11\xa4\x9f\x3f\x3a\x2a\x13\x4b\xa1\x15\x73\x72" "\x82\x0c\xf6\x71\x38\xb7\x67\x2b\xc6\xe1\x15\x21\x9d\xf4\x5f\xfb\xc3\x10" "\x74\xcd\x6e\xf7\xce\x0e\xc8\x57\x4b\xda\x2c\x83\x9a\x08\x63\x35\x16\x48" "\x94\xa9\xcc\xd2\xda\x9b\x53\xc9\x5e\xa1\x2f\x64\x99\xce\xd7\xe2\x01\x17" "\x20\xf0\xfc\xc3\x2f\xc6\xfd\x00\xa8\xa2\x06\x75\x4a\xbe\xc3\x52\x56\x74" "\x04\x0f\x63\xca\xd3\x60\x56\x42\x5d\x32\x9c\xae\x87\xd1\xe7\x6c\xdc\xb4" "\x3f\xa9\x51\x51\xf2\x50\x36\x26\x66\xee\xd4\xa3\x92\x45\x51\x91\x9d\xa9" "\xd6\xff\xb8\x09\x4d\x83\x63\x40\xea\x3c\xfd\x1d\x49\x16\xb6\xb6\x31\xbb" "\x08\x86\xf6\x96\xe6\x0b\x60\x4c\x4d\x7f\xdd\x55\xe2\x82\xe2\x2c\x54\x98" "\x14\xce\x6f\x75\xbd\x34\x60\x48\x8d\x35\x00\xce\x58\xaa\x24\x1a\x6a\x8c" "\x5d\x50\xaf\x90\x1d\xf1\xb8\x5d\xbd\x32\xfc\xed\x3d\xfc\x4d\x51\x0f\x08" "\xcc\xaf\x81\xfd\xae\x78\xdb\x2d\x5b\xf7\x67\x6f\x0b\x2a\xb7\x2f\xe3\xf4" "\x38\x78\xf7\xdc\x43\xe4\xba\xb0\x20\x47\xff\x51\xc0\x2b\x37\xb1\xdb\x2f" "\x68\x06\x8f\xde\xe9\x5f\x59\x24\x8a\x63\x3e\xe9\xdd\x11\x53\xb0\xa5\x41" "\x29\x19\x7f\xe8\xfe\xa9\x3f\xc4\x73\xce\x60\x97\x70\x4d\xa0\x0f\xc2\x5c" "\x99\xad\xbd\x1e\x24\xe5\x53\x28\x68\xe8\xb1\xc2\x64\x96\x99\x38\x5a\x48" "\x07\x85\xc8\x8d\x83\x75\x13\xa3\x3e\xa0\x24\xaf\x35\xad\xf5\x7c\x6c\x7a" "\x0b\xc8\xf5\x49\x5d\x74\x24\x23\x51\x16\xa7\x97\x39\xc8\x68\x42\xbb\x35" "\xe9\xca\x5d\xa7\x79\x8f\x7a\xe3\xcc\xd9\x43\x4d\xad\x56\x6b\x70\xbe\xd8" "\x2c\x64\x4c\xb6\x5d\xdb\x37\xe9\x4a\x2f\x06\xc3\x32\xb3\x2a\x82\x9a\xad" "\x2d\xdc\x81\x3e\xbc\xc0\x7e\x07\xe5\x58\x7f\x7f\x7a\xb2\x7b\xaf\xa0\xaa" "\xc1\x44\x1a\x80\x9f\xba\x54\x9b\xd3\xfa\x7b\x8c\x16\x85\x1c\x3d\x22\xd7" "\xba\x41\xeb\xb1\xb1\x9f\x8e\x9f\x5d\x11\x49\x50\xa5\x79\x8a\xd8\xed\x4d" "\x1b\x5b\xb4\xdd\xc6\xf3\xce\xcd\xd7\x19\xba\xa7\x8a\xd3\x2d\x0f\xb9\x4b" "\x81\x56\x81\x1f\x9e\xf5\x4a\xb2\xa2\x97\x38\xe2\xe5\x96\xb1\x42\x4b\x19" "\xef\x39\xd0\xa3\x54\xc3\xe8\xaa\x62\x27\xf4\xfb\x27\x87\xb1\x0c\xfc\x61" "\x5d\xc3\x56\x80\x00\x66\xf8\x00\x71\x8e\xdb\x65\x8b\xb3\xb8\x5d\x77\x5c" "\x07\x24\xe7\xc2\x94\x2c\x8c\xac\xf4\x20\xa0\xe2\x3f\xc2\xbc\x40\xd0\x78" "\xca\x5f\x4f\xb9\xd9\x52\x36\xc8\xc3\x50\x08\xc4\x3e\x86\x4b\x2e\xe0\xd7" "\xf2\xa6\x34\x97\x8c\x6c\x34\xbc\x2b\x50\x40\xa2\x9c\xa1\xb1\xc6\x0a\x92" "\xd7\xff\x86\xb3\xc9\xdd\x90\xeb\xf3\xfb\x21\x2d\x4c\x23\xd6\x9b\xe3\x99" "\x83\x7b\x92\xfa\x04\xdc\xa5\x07\x5e\xa7\x87\x75\x61\xab\x64\x66\x4d\x12" "\xa1\xe1\xff\x39\xcc\x20\xf4\x51\x8b\x46\x0a\xe9\xf8\x79\x95\xbd\x3a\xe6" "\x62\x72\xf3\xf2\x4a\x47\xc6\x34\x0c\xb0\x31\x8b\x67\xac\xdb\x26\x06\x4b" "\xcc\xcf\x7c\xcb\xa3\x86\xe0\x71\x27\xd9\xff\xbd\xa2\x88\xcf\x29\x24\x62" "\x39\x02\xd9\xf4\xbe\x97\x60\x5a\xb5\xdd\x02\xa9\x69\xf4\x4d\xe8\xa9\x4a" "\xbd\x68\x02\x0c\x1f\x47\x03\x3a\xc2\xb7\xd0\xe9\x43\x10\x35\xe3\x58\xf7" "\xd8\x76\xa1\x19\xe3\x1b\x15\x4b\x6e\x66\x81\x5f\x28\x6a\x41\xa2\x3c\xba" "\x9f\xea\x4d\xc4\xfe\xbb\x52\x10\xb2\x91\x20\x2e\x8d\xbe\xb6\xee\x9e\x00" "\x6f\x10\x8d\xdf\x89\x1e\xce\x25\xc7\x31\x1e\x7f\x4c\x78\x8c\x37\xe8\xa3" "\x93\x82\x40\x56\x27\xa5\x47\xe6\x09\x39\x3c\xff\xd1\xcb\xfa\xdf\x90\xff" "\x90\x60\xa1\x47\x00\x53\x9d\x49\x7d\xaf\xb6\xa2\x49\xe4\xec\x81\x4a\x9e" "\x68\xd7\xa9\x54\xa3\xc5\x17\x76\xaf\x6f\xd8\x39\xb9\xb4\xb1\xaf\x37\x79" "\x74\x31\xc1\x57\x94\x50\x87\x31\xfd\x5b\xe3\x2e\xdc\x65\x14\xee\x16\x68" "\x1f\x99\x34\xb0\xd8\x31\x85\xca\x69\x82\x0d\x3a\x59\x0d\x51\x1e\x9f\x5f" "\x3e\xe5\xbf\x33\xf6\xed\x22\xd5\x07\x48\x1b\xd7\xf0\x5a\xa6\x44\xff\x19" "\x80\x9d\x49\xa3\xc2\x92\x4c\xc4\x08\xdd\xb8\x39\xd6\xf0\x7c\xf0\x89\x4e" "\xc6\xa6\x37\x2c\x45\x3d\x23\xaa\x32\x48\x02\x30\x88\x33\x02\x78\x61\x94" "\x66\x79\xab\xd5\x40\x54\x8a\xbb\x95\x67\x43\xcf\x0c\xcb\x39\x25\xca\xff" "\x0c\x59\x73\x34\xb7\x2e\x8d\x08\x1c\x7a\xa9\x82\x22\x07\x42\x6b\x16\x53" "\x9e\x37\x06\x78\xa2\xfd\xa3\xf3\x45\x55\xd7\x21\x57\x0e\x72\x5e\x3e\xab" "\x5c\xce\x6e\x0f\x7f\xaa\xa3\x58\x0f\x6c\x7d\x7e\xed\xba\xb4\xa0\xb7\xaf" "\x72\xd3\xda\xa4\x50\xe4\x67\x91\x71\x81\xbb\x2c\x3e\xae\xc3\x74\x20\x9f" "\x7e\x74\xa4\xe9\x19\x54\x87\x31\x6e\x7c\x93\x4d\x3f\x4d\x0a\x0f\xfd\x73" "\xae\x1c\x08\x55\x69\x0d\x5f\x03\xd0\x4a\xd5\x67\xdc\xdf\xc3\x66\xf9\x2b" "\xf1\x3c\x3e\x66\x7d\xbc\xe2\x3e\x2b\x64\x23\x2c\x11\xf6\x41\xbd\x7c\xac" "\x7f\x1f\x9e\xee\x72\xeb\x98\xa5\xcc\x28\x22\x6a\xfc\xd1\xfe\xfe\xc1\xb2" "\x75\x18\x6c\x48\xf0\x63\xfc\x2e\x99\x44\x85\x69\xbb\x5a\x90\x3a\xd4\x50" "\xa5\x81\x2b\x17\xc8\xfa\x3a\x7a\xe6\x39\x73\x49\x74\xd3\x68\xad\x09\x68" "\xb2\xff\x13\x81\xc1\x28\xab\x00\xb8\x37\xd7\x65\xe3\x6b\xfd\xaf\x8d\x52" "\x84\x97\x5f\xaf\x73\x9b\x98\x82\xa0\xdb\x32\x7e\xa5\x22\xfb\xd7\x1c\x3a" "\x70\x8c\xc6\x74\xbe\xe9\x86\x02\x54\x08\x04\xd8\x56\x82\x98\x26\xa9\x55" "\x43\xc0\x16\x8a\xf6\x3f\xf0\x84\xc4\x6e\xd8\x13\x20\xf5\xd6\xbc\xca\x8f" "\xe5\x95\x50\x91\xca\xeb\x78\xdd\xf5\x3b\x81\x9f\xf9\x1b\xce\x93\x7e\x02" "\x02\x5b\xea\xff\x55\x94\x62\x04\x52\x63\xa3\xff\x13\x2d\xfd\xb5\x02\x47" "\x47\xbb\x5a\xfc\xdf\x8d\xee\x04\xa8\x08\x5a\x92\x68\x79\x02\x56\x48\x3e" "\x7f\x33\xfd\xe7\x14\x78\xf8\x77\x23\x39\x15\x49\x52\xdf\xf0\xe1\xac\xff" "\xe8\x7e\xe3\x7f\x83\x0c\x30\xb8\x90\x42\xb7\x78\xcc\x87\xfb\xbb\x79\x67" "\xfb\x01\x10\xa5\x4e\xa4\xa7\xbb\xdc\x57\x5a\x93\xdf\xcd\x4f\x18\x41\xc9" "\xa7\x5d\xce\x63\xf9\x0a\xfe\xd2\x02\xac\xeb\x7a\x95\x93\xd0\xde\xec\xe3" "\xad\xfd\x66\xb4\xf4\x0f\x50\xc0\xcc\x18\x22\x83\x5b\xfb\xa2\xb2\x0f\x25" "\xd9\x91\xf8\xed\x85\x20\x4e\x9b\x56\xda\x47\x09\xe3\xc1\x54\x4a\x96\xfc" "\xb9\x14\xc3\x27\xaa\x8d\x6e\x7e\x22\xb2\x1c\x37\x45\xf5\x79\x48\x3a\x19" "\x59\xa2\x76\x6c\xb3\x4a\x96\x15\x72\xc6\xb1\xce\xdc\x06\xcb\xb4\x29\x90" "\x53\x51\x4f\xbb\x38\x4f\x81\x92\xf4\xa5\xe0\x48\x36\x67\xc6\x85\xb3\xfd" "\x03\x2a\x9c\x01\x47\x16\x51\xbd\x7f\x85\x03\xeb\x7a\x9b\x56\x4f\x77\x9f" "\x9d\x33\xb1\x20\xfb\x9e\xae\x77\x9e\x37\xb2\x8c\x82\x79\x09\x17\xda\x2d" "\x76\x31\x86\x40\x1b\xf9\xb9\xd3\xa5\x05\x72\xdb\xd7\xf7\xac\x54\xa5\xaf" "\xed\x50\x59\x4e\x17\x5e\xcb\x23\xf9\xc9\xfb\x94\x9b\xbf\x84\xb9\x4e\xc5" "\x80\xa1\xd7\x0a\xa4\x05\xd6\x45\xee\x08\x48\x51\x7d\x23\x9d\x5d\xd0\xc0" "\x47\x4e\x0b\x50\x99\x12\x36\xb5\x7d\x6a\xf5\x32\x56\x21\x39\x9f\xa6\x47" "\x94\x6b\xe8\xb2\x7b\xff\x17\x9d\xab\xfb\xf0\x84\xcd\x7b\xc3\xfd\xb5\x31" "\x36\x36\xba\x7e\xe5\x26\x4e\x90\xd7\x6a\xdd\x5b\x41\xc3\xd2\x3f\xbc\xb2" "\xe9\x06\x6f\x18\x7b\xba\x27\x70\xab\xea\x27\xf2\xaa\xf8\xcb\xe5\x45\xf2" "\x16\xe5\xbd\xec\xb3\xa5\x84\x51\x19\x70\x31\x40\x58\x47\x48\x03\xa2\x4f" "\x88\x90\x3b\xbd\x69\xe3\x33\xe2\xc9\x04\x61\x83\xc7\x94\x57\x36\xa0\xf3" "\x96\x76\xb6\x4b\x12\xb3\x19\xc3\xce\x11\x10\x76\x79\xc6\x7d\x87\xab\x6e" "\x9e\x1d\x2d\x28\x90\x56\x74\xe9\xda\x79\x8e\x20\x26\xcb\x54\x4d\x4a\xe3" "\x56\x99\x1d\x29\xed\x4b\xd3\x8f\x2a\x5a\x7c\x6c\xf2\xa3\x0b\x1b\x6d\x48" "\x70\x0c\xce\x7e\xb5\x73\xe8\x4a\x46\xc2\x50\x70\x52\x5f\x67\xd4\x55\x38" "\x70\x4c\xa3\xcf\x53\xbe\x6c\x44\xe8\x4f\xbb\x40\x38\x78\x03\xe6\xdb\x47" "\xb3\x73\xcd\x36\x78\x36\x89\xb7\xf9\x3e\xb2\x72\x87\x57\x0d\xae\x90\xd2" "\x12\x14\xa8\x5d\x6b\xfa\x89\x8f\xcc\x21\x81\xaf\x6e\x25\xda\xea\x78\x6d" "\x7d\x50\xaf\xa5\x87\x31\xb4\xfa\xc9\xc9\xd2\x86\x1c\x80\x2c\xfa\x6e\xf8" "\x54\xe7\x47\x21\x7c\x0a\x89\x4a\x28\xd2\x1d\x0a\x43\xb9\xde\x43\x98\x5c" "\x47\x56\xc2\x9b\x56\x10\x29\xef\x95\xcf\xdc\x27\xbf\x38\xf2\x6d\xac\x2f" "\xdf\x97\xcc\x58\xd9\xc1\xc5\x9b\xf4\xee\x59\x76\x8a\xd5\x1a\x1d\x0d\x8d" "\xe9\x2d\x0e\x2c\x72\x3b\x1d\xdf\x41\x1d\x23\x56\x6c\xe0\xb7\x2c\xc2\x27" "\xd4\x1f\xb6\x3b\x6a\x13\x18\x8f\xe7\x25\x25\xad\x31\x6f\xae\x05\xf5\xaa" "\x72\x33\xf7\xbf\xed\x18\x7f\x1b\x1f\x87\xa8\x61\xaf\xb1\x73\x55\x2f\x5d" "\x7c\x9b\xc7\xac\xc9\x51\x07\xbb\xc3\x23\xc3\x76\x04\x4a\x01\xab\x13\xda" "\x42\xd1\xab\x27\xb8\x6d\xc3\xde\x3b\x15\x7e\x47\x79\x0b\x78\x89\x6b\xcb" "\x2c\x53\x2a\x7b\x74\x87\xbb\x6f\x24\xc4\x02\x1c\x42\x35\x7d\xf5\x2e\x4d" "\x58\x48\xb5\x58\x46\x09\xa4\x82\xde\xa4\x6d\x17\x3d\x2a\x69\x59\x58\x00" "\x2a\xbd\x09\x3c\x25\xf0\x02\x11\x6f\x8a\xfc\x55\xe7\x29\x02\x4a\x4d\xed" "\xf5\xa4\xd3\xc6\x26\xeb\xd9\x36\x7f\xc1\x8e\x7e\x4c\x75\x54\xfb\xa0\xad" "\x73\x49\xc5\xd5\x26\xea\x6d\xbd\x2c\x03\xff\x33\x58\x0b\x15\xfe\xc3\xc1" "\xf8\x27\xe8\x85\xdb\x59\x2b\x47\x01\x55\x44\xf6\xb1\xd4\x00\xbd\xe1\x13" "\x3a\xfa\x00\x71\xf6\x8f\xee\xbd\x98\x7a\x80\x7c\xc6\xd5\xb1\xb8\x82\x74" "\x10\xc0\xb6\xd4\x6c\x4b\x0c\xf6\xa5\xdf\x99\x9f\x71\xba\x3e\xf4\xd9\xda" "\xe2\x46\xd3\xe5\x8e\x74\x28\xd9\x8a\x33\x07\x6f\xfc\x52\x59\x46\x78\x0d" "\x01\x00\x00\x00\x00\x00\x00\x00\xb8\x72\xf0\x99\x9d\x47\xc6\xe4\x24\x31" "\x7b\xd8\xb0\xe2\xf7\x0a\xc1\x0d\xfa\xa1\x99\x90\xe2\xa3\xf7\x44\xea\x5b" "\x32\x99\x6d\xc2\x28\xff\x8d\xe8\x36\xb5\xec\xb7\xe5\x6c\xfb\x3d\xbf\x48" "\x17\x2b\x5f\xf0\x9e\xec\xf1\x44\x39\xb8\xbb\xc5\xcf\x3c\xcc\x98\x63\xef" "\x55\x47\xfa\x28\x96\xb7\x31\x96\xcd\xca\xb9\x79\x54\xf9\xac\xbe\xc8\xe7" "\xd2\x62\x6b\x1a\x3b\x89\x83\xfa\x31\x96\x1e\xf8\xc8\x68\x4e\xe8\x24\xf3" "\x43\x93\x3c\xd7\x3d\x51\x6e\x1f\x80\x86\x55\x6a\xb7\x18\x01\x00\x22\x31" "\x9a\xb3\x9f\x72\xb9\xe7\x98\x9e\x50\xec\x86\x81\xf3\xf6\xa7\x78\xe7\xd2" "\x3c\x8b\xe2\xf4\xc2\x6b\xc0\xed\x85\x59\x47\x10\x7e\x93\xcc\x9e\x75\x15" "\xfe\x67\xb0\xc3\xb6\xe4\x3d\x9f\xb1\x57\xbe\x2b\x2f\x2d\x9c\x79\x9d\xe5" "\x52\x14\x97\x4e\xc2\x54\xf5\x4c\xb6\xc2\x0a\x76\xe6\x56\xcd\x75\x35\x02" "\x49\x97\x50\x23\x81\x64\xf1\xce\xfc\x37\x63\x6e\x9e\xb4\x03\x80\x53\xb6" "\x31\xc9\x5d\x80\xbc\x50\xe2\x48\xef\x56\x92\xee\xb3\xf0\xc8\x6a\xa5\x04" "\x76\xee\xb8\xf8\x0f\x71\x15\xa4\xc4\x10\xdd\x80\x26\x4c\x12\x3f\xf0\xb6" "\x2b\x62\x91\xdb\x85\x86\x58\x16\xcc\x36\x87\x1b\x06\x19\x84\xa4\xaf\xc4" "\x40\x02\x9c\x33\x86\x84\x33\x0a\x64\x0e\x9b\x31\xe0\x6e\xea\x4d\xed\x4e" "\x15\xd9\x2c\x44\xa2\x83\x68\x13\x8a\xed\x08\x69\x9a\xee\x77\x2a\xc5\x73" "\x4e\x74\xa6\x5a\x6b\x8a\xcd\x6c\xb8\x6b\x2b\xcf\x12\x33\x0e\xa8\x08\x52" "\x4e\xe8\x38\xad\xfa\x3c\x18\x5d\x24\xe3\xb2\xe5\xe8\x9a\x5c\x9b\x95\xa6" "\x59\x29\x8a\x49\x35\x54\x9e\x21\x8d\x4b\xb4\xda\x58\xa2\xa6\x63\x25\x1f" "\xfa\xe5\xc6\x13\x7f\x8e\x70\xa8\x6a\x3a\x26\xf4\xbd\xf2\x18\x7f\xa4\xb9" "\xfb\x3c\x82\x2a\xb9\x61\x84\x6f\xc0\x1d\x24\x75\x30\xc8\x9d\xae\xd7\xef" "\x18\xa1\x4c\xba\x3b\x47\xd3\x69\x98\x0c\xf4\x80\x49\x02\x1c\xba\xa2\x71" "\xca\xee\x8e\x00\xae\xa5\x6a\xc7\xb5\xc2\x98\x99\x34\x8a\xe1\x29\xba\x84" "\x0c\x39\xf3\x3a\x7c\x2f\x0b\x2f\xef\xb5\x29\x1d\x23\xea\x7e\x5a\xa9\x11" "\x01\x58\x55\x76\xd9\x99\x6a\x05\x89\x73\x41\xe4\x10\x63\xbf\x9c\xae\x13" "\x7e\xd9\x85\x28\x3b\xbe\x3a\xbe\x8e\x5a\x27\x54\x37\x8e\x2c\xa7\xf1\x28" "\x70\x56\xc8\xa0\x54\x59\xd6\xa4\x7a\xe4\x93\x3c\x43\x87\x92\x87\xb7\xee" "\x55\x7f\x3a\xf6\xb0\x47\x77\x5c\xe7\x6a\xa0\x64\xbe\x50\xca\xec\x22\x38" "\x2a\x5e\x73\x57\x65\x91\x0f\xdd\x92\x6d\x14\x8f\xf7\x7f\x42\xee\x9f\x60" "\xfe\xdb\x0c\x41\x58\xe0\x2a\x38\x59\x34\xc8\x45\x21\xd5\x2b\xe0\xe0\xe0" "\xdd\xdb\x0b\xae\x54\xac\xc1\x68\x59\x19\xcc\x0d\x62\x19\x29\x50\xc2\xe4" "\x76\xd1\x69\xf3\x53\x3f\xf9\xdd\x44\x0c\x60\x92\x45\x0e\x15\xe5\x19\x9d" "\x1d\x30\x2b\xd8\x1c\x3f\x1d\xf7\x8e\x71\xa3\x9d\xf0\x19\x4b\xeb\x1f\xf8" "\xda\xc9\x56\x12\x9b\x7b\xe3\xd3\x9b\x65\x05\xb1\x7d\x2f\xb3\x09\x85\x9d" "\x6d\xe6\x2c\xf5\x87\x60\xa4\x62\x32\x67\xec\x54\x96\x58\x8d\x2a\xb5\x40" "\x7e\x31\xa1\x32\xf2\x6f\xe2\x9e\xce\x80\xad\x80\x65\x3c\xa1\x90\xb8\x3c" "\x9a\xc8\x34\x52\x59\x08\x7f\x0a\x84\xa0\x01\xfb\xfb\x49\xc7\x44\x2a\xb3" "\x71\xd3\x08\x97\xb9\x47\x79\x03\x9f\x17\x85\x7e\xa9\x6a\xfb\x9f\xa4\x1d" "\xb3\x3d\x7f\x3d\xcf\x12\x32\x44\x97\x5a\x17\x14\xa9\x6d\xb0\x5f\xc1\xbc" "\xac\x17\x30\x81\xdf\xaa\xe0\x90\xb1\x6c\x05\xac\xa4\xdc\x98\xaf\xd5\x79" "\x83\x47\xb2\xcf\xc6\x0b\xa9\x2e\xb5\xe2\x37\x75\x2d\x64\xdf\x19\x82\xef" "\x13\xb1\x16\xf6\xb0\x10\xb0\xd2\xec\xa2\x43\xf0\xf9\x91\xa3\xf3\x4a\x48" "\x6b\xf5\x8e\x06\xd6\xf9\x22\xe0\x74\x13\xd5\x84\x4f\xf2\x79\x55\x9f\x8c" "\x40\x17\x85\xe0\x20\x7e\xce\x4c\xe7\xdc\x53\xc7\x70\x5e\x26\x47\xa3\xc3" "\x52\x90\x2e\xfb\x13\x6f\xb0\xf6\x95\x2e\xb8\xac\xeb\xf9\x0e\x7e\x56\xe8" "\x31\xc2\x28\xcc\x31\x9e\x9d\x07\x9d\x89\xd2\xff\x1d\x43\xfc\x1a\x11\x39" "\xc2\xd7\x89\x3a\xe2\x46\x74\x7a\x8c\x0c\x1c\x34\xc2\x8c\xf5\xd6\xea\x9b" "\x6c\x71\xb3\xe9\x66\xb3\xf3\x22\x59\xa1\x9c\x3e\x35\xe4\xa0\x8d\x4d\xd2" "\x70\x52\x03\x3f\xd7\xf1\x43\x7c\xe9\xcd\x20\x88\xb3\x1b\x8b\xa9\x74\x55" "\x8d\xed\xb1\xf8\xd4\x35\x5e\x22\x4e\x1b\x8d\xf8\xda\x3b\xc9\x3c\xb3\xf9" "\xb5\x82\xac\x37\x9d\xcd\x01\x04\xa3\xf1\x46\xd6\xd3\xfb\x69\x9d\xe9\x9c" "\xcc\xd0\x99\xbe\xab\xe6\x38\x41\xa2\xdb\xa6\x1a\x46\x5b\x25\x86\x92\xfd" "\x98\xc9\xd4\xff\x1f\xbc\x72\x12\xea\x20\x66\xc5\x36\x7f\x64\x70\x7e\x7b" "\x2e\x14\xc5\x1d\x78\xa5\x32\x8d\x04\x4a\xc3\x3b\x13\x13\x50\x2b\x98\x6a" "\xc0\x46\x2c\x6c\x34\x55\xf6\x0f\x72\x7e\x3e\x89\x5b\x1e\x4d\xf1\x96\xd4" "\xf7\xa9\xe2\x1c\x53\xa6\x50\x0f\x0d\xc6\xe9\x57\x53\x01\x64\xbc\x64\x8e" "\xbf\xed\xb6\xc9\x73\xae\x8f\xe4\x9a\x92\xfc\xa7\x27\x4f\x29\xed\xcb\x20" "\x23\x56\x77\x5b\xaa\xb7\x23\xf9\xe3\xa0\x3a\x1d\x24\xd6\xdd\xa5\x68\x53" "\xef\x0a\x91\xca\x8b\xc7\xc5\x30\xe2\x8e\xe8\x96\xef\xd1\xa1\xf5\x86\x62" "\x06\xdd\x82\xe0\xeb\x55\x4f\x4a\xfe\xdd\x9e\x87\x56\x29\x03\xb4\x99\x63" "\xd7\x2d\x8c\xac\xa7\xbb\x09\x75\x25\x2f\x8f\x55\x78\x28\x7e\x58\x3a\xac" "\x61\x89\x95\xa9\x41\x29\x9f\xa0\x97\x3e\x67\xae\x44\x46\x93\x36\xe4\x5b" "\x68\xf9\x78\xfe\xdf\xc8\x78\x5e\x33\x36\x10\xf8\x02\x9b\x19\x42\x26\xf8" "\x6e\x77\x0a\xc9\x87\xcb\x84\xf9\xc7\x6e\x5c\xca\xae\xfe\x64\xbf\xca\xdf" "\x56\x35\xbe\xe6\x07\x7e\x05\x36\x4e\x88\x72\x10\x00\x03\xc9\x44\x2e\x1c" "\x7c\xad\xd6\xf9\x8e\x0d\xc9\xe2\xdb\x17\xea\xbc\x8e\x63\x07\xff\xd4\x85" "\xdd\x06\x93\x5a\x42\x3d\x5c\x9c\xff\x83\x2c\xc1\xd4\x81\xe4\x9d\x6d\xc0" "\x01\x76\xd0\x34\x2f\xda\xb1\x9c\xec\x25\x1b\x6f\xbe\xd3\xab\x63\x74\xec" "\xd0\x22\xde\x61\x7c\xb2\x72\x0f\xfe\xbf\xb8\xb9\x8b\x42\x6c\xb4\x45\x43" "\x9b\x7b\x08\x8f\xc7\xd9\xed\x9a\x91\x98\x9f\x2b\xba\xd8\x51\x90\x70\xa6" "\xf9\x16\xdf\x7c\x49\xe3\x18\x4f\xef\x17\x53\x38\x7a\x5a\x2b\x5b\x99\x1e" "\x04\xde\x91\x5e\x05\x3c\x47\x1d\x19\x8b\x84\x3f\xb0\xaf\xe5\xa6\x8c\xf8" "\xff\xfe\x65\xba\xb0\x8f\x6f\x54\x25\xd4\x58\xa5\x5d\xe6\x35\x55\x58\xbc" "\x50\x49\xe3\xa1\x76\x97\x76\x30\xa4\x5d\xe0\xb7\x07\x6c\xdd\xa2\xa1\x67" "\x00\x30\x90\xbb\xbf\xba\x56\x18\xba\x2f\x64\x81\xcd\xb1\x38\x6d\x1f\xb3" "\xc4\x4a\x35\xc4\xd0\xcf\x9c\xa1\x4d\xad\x69\x70\x78\xfa\x4a\x06\x2e\x55" "\x51\x5c\x8c\xd6\x9c\x6b\x2e\x91\x1b\x19\xf6\x37\xcb\xa7\xc6\xca\x26\xb3" "\xb4\xb2\xa7\x4f\xd5\xcb\xc6\x4f\x26\x9f\xa5\xd6\xf9\x62\x88\x30\x96\x2d" "\xb2\xd7\xee\x04\xa6\xc3\x76\x73\xc5\x93\x77\x1e\x56\x8e\x8d\xd6\xcb\x96" "\x5e\x67\xe6\xf4\xbe\x91\xe6\x25\xc1\x01\x51\x60\xc2\x34\xe8\x89\x3e\xac" "\x8b\xa3\x97\x08\xb9\xf3\x2e\x51\x9a\xbf\xb9\xc5\xb2\x56\x2e\x42\x4d\x6e" "\xb2\xc8\xa7\x37\xa8\x30\x99\x78\x21\xfc\x29\x4c\x55\x9d\x14\xd7\xc0\xbc" "\x8f\xb0\x3c\xeb\x44\xf1\xbc\xe3\xf6\x3c\x46\x60\x7b\xa9\x5d\x70\xcb\x80" "\x98\xd3\x0e\x1e\x3e\x6c\x59\x57\xed\x3b\x4b\xb1\xb9\x6d\x3c\x38\x79\x09" "\x82\x47\x48\x3e\x6c\x4f\x66\x9b\xd5\x56\x38\x7b\x34\x6b\xfc\x54\x97\xfd" "\x76\xa8\xe8\x9b\xf1\x85\x96\x8f\x3e\x3d\xd5\x82\x14\xec\x02\x4f\x5a\x4a" "\x18\x0b\x31\xee\xfe\xf8\x23\x3b\xbc\xac\x8d\x97\x06\xb3\x54\x76\xcd\x5d" "\x4c\xbe\x86\x03\x49\x28\xf5\xc4\xa3\xc0\x7f\xbd\x3e\x19\xec\x89\x53\x6a" "\xaa\x4f\xcb\xc2\xc7\x21\x2a\xd2\xb5\xc3\x21\x3a\x32\xd7\x60\xe9\x88\x31" "\x49\xf1\x77\x0e\xf7\x7a\x13\x13\xbc\xbb\xd4\x1e\xbe\x24\x6e\x84\x7a\xac" "\x1b\xaf\x97\x5f\xdd\x32\x6b\xf8\x1f\xc6\x8e\x19\xce\x8c\xc7\xf0\x56\xf5" "\xbe\x52\x4f\x35\xfd\xc7\xf4\xc0\x42\x0c\x36\x84\x6c\xe5\x41\x5c\x72\x52" "\x91\xeb\xe4\x96\x40\x90\xe5\xc5\x9d\x68\x44\xad\x02\xac\xb3\x7c\x43\x74" "\x86\xe6\x77\xb0\xb4\x8c\x8b\xfc\xed\x79\x27\x5f\xf6\x4f\x4b\xe3\x3b\x34" "\x92\xd4\x0b\x84\x96\x75\x4a\x36\xb9\x65\x7e\xfb\xae\xb2\xe9\x58\xde\x29" "\xb2\xde\x4c\x23\x46\xde\x00\x00\x39\xc2\x87\x7e\x1a\x21\xbf\x2b\x55\x0d" "\x0a\xc6\xcc\xe5\xfe\xb7\x2f\xaa\xcc\xb3\xba\x47\xf4\x98\xc4\x60\x66\x9c" "\xa3\x45\xb5\x56\x1f\x99\xb5\xf2\xf0\x20\xa2\xc0\x1b\x9d\x95\x39\x90\x64" "\xee\xd1\xb7\xe7\x5b\x80\x2f\x3e\x70\x23\x9b\x1c\x58\xc7\x5f\x90\x67\xca" "\x45\x43\xec\x5d\x5e\x32\xfb\xfb\xb3\x6d\x9b\xa9\xdb\x16\x82\xc7\xc6\x3e" "\x91\xf3\x99\x75\x2c\x15\x5d\xc5\x07\x7a\x2d\xac\xfd\xd6\xf9\xe5\x20\x31" "\x29\x0b\xe7\x04\x31\x4d\x5e\xbd\xcc\xcf\x9f\x30\x98\x5d\xba\xe5\x14\xd0" "\x28\x3f\x6c\x4b\x7e\x3e\xbd\xd4\x6b\x62\x79\xe8\x03\x1b\x38\x47\xa8\xb4" "\x62\x40\x05\x3c\xe7\x6b\xee\x81\xfa\x7b\x62\x26\x6a\x1b\x50\x11\x53\xaa" "\xcd\xa0\x80\x38\x09\xcb\x46\x71\xd5\x3f\x6e\x55\xda\xd8\xfd\x50\x83\x73" "\xc1\xc2\xc9\x35\x3a\x1c\x9f\x8d\xe2\x50\x9e\xac\xbe\x8e\x17\x33\x47\x78" "\x80\xc5\x49\xe3\x27\xa8\xdb\x5a\xae\x29\x16\x9a\xc8\x86\xcd\x50\x86\xb7" "\xf4\xe8\x82\x35\x49\xc4\x4e\x48\xfc\xc3\x68\x3f\xd0\x45\xdd\x93\x67\x73" "\x36\x99\x8c\x40\x16\xdc\x31\x82\x3e\xc3\x6a\x0d\x2c\xec\xa9\x2c\x13\x1c" "\xb3\xd8\xd5\xe0\x82\x75\xf4\x0f\x70\x94\x3d\xe8\xbb\xcf\x58\x3a\x89\x85" "\xc3\x0d\xba\xce\xf8\x42\x5a\xac\xa5\x7d\xc8\x60\x75\x3c\x31\xc1\x71\x94" "\xf7\x1c\x5d\x31\x65\x72\xbc\xf8\x1a\xb8\xdb\x62\xe0\x6c\x1e\xe3\x9c\x6a" "\x24\xdd\x0f\x68\xd8\x2c\x75\x76\x28\x42\xc9\xbb\xb7\x01\x27\x02\x91\x54" "\xcb\x76\x8a\xaf\xd3\x08\x47\x1e\xb5\x18\xc8\xae\xcf\x27\xc0\xef\xd0\x18" "\x83\x96\x1c\xe0\x02\xa6\x23\x11\x89\x29\x3d\x00\xdc\x4d\x71\x82\x4d\x2a" "\xf8\x60\xb7\xb3\xef\xc3\xc2\x82\xb2\x71\x9d\xc7\x37\xbc\x5c\x3a\xc2\x3d" "\xd7\xdd\x14\x20\x47\x2d\x64\xac\xf6\xbb\x2d\x97\x50\x38\x04\xa6\x7c\xf9" "\x51\x6e\x28\x16\x7a\xb8\xfd\x38\xac\xf9\x0c\xe5\x6c\xfb\x30\x4b\x59\xa5" "\x96\x0f\x4f\x38\x96\x3d\xb7\x1b\xd7\xea\xd6\x91\x78\xd8\xce\x52\xb7\x42" "\x97\xea\x3a\x0c\xdd\x55\xbb\x1e\xb8\x49\xc0\x2f\x8a\x87\x61\x0b\xc7\xfc" "\x48\xa7\xaf\x7d\x6e\x56\xcc\x41\xcf\xf3\x03\xaf\xad\xeb\x6b\x45\x92\x60" "\x5c\x3c\x3c\x23\x85\xc9\xa1\x65\xc1\xc7\xe3\x01\x94\xc0\xe9\x94\x49\x94" "\x72\xb0\x8a\xaa\xac\xa3\x70\x7b\x9b\xaf\x31\x85\xf5\xb1\x31\x48\x53\xd5" "\x0d\x7b\x86\xf2\x55\x61\x5f\xd4\x00\x9f\x07\xb8\x70\x85\xbc\xc4\x4c\x86" "\x5f\x7e\x14\xd2\x9e\x64\xf9\x50\x01\xbc\x00\xc6\x8a\xfc\x3a\x0a\x05\x55" "\x02\x7d\x46\x05\x19\xf1\x52\x64\x28\x9c\x09\x18\xcf\x59\x4b\x5a\xd3\x72" "\x52\x57\x5a\x94\x84\xa1\xde\x68\x1f\x70\x74\x5d\x2c\x62\x48\x58\x1c\xd3" "\x70\x27\x67\x11\x56\x37\xc7\xcf\x7b\xc1\x5a\x63\x77\x5b\x90\xc2\x85\xbe" "\x77\xdb\x8b\x85\xdc\x08\xab\x81\xbb\x30\x76\x94\x41\x7a\x8d\x1c\x4a\xa1" "\xed\x87\x16\xbc\x58\xa3\x5e\x1d\xc8\xe2\x3c\xde\x37\x48\xc6\xa9\x33\x70" "\x39\x7d\xd5\xc4\x13\x71\xfb\xe4\x5b\x86\xe3\x18\x0e\x41\x0d\xec\x13\x7b" "\xd4\x77\x30\xc7\xfd\xb7\xe0\x62\xca\xfa\xe6\x86\x20\x1b\x69\x07\x1f\x60" "\x27\xac\x38\xc1\x91\xc3\x33\xd2\x7f\x5c\xc8\x14\xc4\x52\x28\x59\x59\x8e" "\x7e\x54\xa0\x4a\x7d\xea\xe2\x72\x53\x3a\xe3\x9e\x29\x67\x85\x12\x4e\xfb" "\x67\x14\x08\x9e\x65\x67\xb8\xdb\x2c\xb4\x03\xd8\x7b\xea\x3a\x71\x8b\x92" "\x58\x25\xb9\x14\x76\x4e\xad\x06\xb4\x87\x27\xe4\xc4\x2b\xee\x1a\x36\xe9" "\x84\x4f\x35\xc7\x9f\xb5\x0c\x89\xe4\xd9\xad\x6a\x7b\x46\x42\x99\xfc\xd1" "\x00\x37\x16\x6c\x2c\xec\xd0\x17\xbf\xc1\x84\xef\x59\xfe\x25\x75\xe9\x3a" "\x13\x9a\x47\xe2\xba\xf5\x48\x2f\x3a\x5d\x24\x84\x13\xc8\x7a\x39\xba\xf7" "\xe1\xeb\x14\x41\xce\xb3\x7f\x5d\xf2\x11\x84\x48\x34\x80\x8c\xd4\xdf\x62" "\xb2\xe0\xb0\xb0\xa7\x5d\xa0\xe2\x77\x20\xb5\xae\x54\xfe\x00\x51\x8e\x95" "\x1e\x21\xba\x4e\x1b\xc2\xd4\x54\xe7\xbb\xfb\x86\xe3\xaa\xf7\xb9\xa2\x5e" "\x35\x4e\x56\xae\xeb\xd1\x1e\x83\x24\x71\xfc\x8e\xdd\x0d\x3b\x4d\x3c\x12" "\x37\x79\xce\xe8\x70\xc8\x6d\x97\xd7\x03\xbc\x44\xb6\x39\xa2\xfc\x49\x85" "\x5f\xa5\x4e\x93\x04\xde\x1d\xce\xdf\x90\xdf\x39\x77\x33\xfa\x94\x79\x2c" "\x1b\xf0\x68\x53\x35\xb0\x27\xf3\xde\x1a\xc8\xf7\xf0\x07\xf6\x1e\xa9\xe5" "\x19\x88\xf1\xfc\xba\xf9\x82\xb5\xb8\x08\x64\x5c\x4e\xb2\xfc\xaa\xca\x3c" "\x10\x66\x7e\xdd\xc4\x00\x70\x61\xea\xf3\xc2\x50\x74\x4b\xaa\xe0\x33\x2b" "\xff\x7c\x9f\x07\x7e\xde\x4b\x59\x38\x53\xf4\xa1\x65\xdc\xfe\xe1\x1b\x75" "\xd5\x10\x7d\x1a\x86\xa6\x66\x9c\x23\x14\x15\xee\xf1\xdb\xb5\x8f\x0b\x82" "\x9e\xf0\x3f\x4e\xe0\xe6\xac\xc7\x87\xb1\xad\x31\x80\x78\x52\xec\x42\x69" "\xd2\x33\x22\x30\x48\x42\xac\x0c\xb1\x3c\xd5\x3e\x7e\x44\x79\xcb\x7f\xd9" "\xd7\xb4\xec\xd7\x22\xec\xfe\xa4\xc5\x9f\x69\x76\x03\x23\xd9\x93\x0b\x03" "\xcb\xa5\x58\xcb\xe3\x07\x11\x44\x7c\xa9\x3a\x01\x59\x6d\x2b\xc2\x45\xe9" "\x90\x87\x38\xb1\xde\x17\xf0\x7c\x9e\xea\xa2\x84\x72\xe0\x85\x70\xa3\x12" "\x9e\x81\xc8\x74\xa8\x94\xb2\x3b\x1d\x8a\x77\xc1\xb4\x27\x5f\xde\xa8\xad" "\xf5\xff\x10\xba\xd0\xeb\xd4\x10\x73\x05\x9c\x3a\x90\x08\x01\x69\x9d\x4c" "\x1b\x02\x33\x36\xed\x5d\x67\x5b\x57\xdb\x47\x70\xf8\x5b\x0c\xf1\xe0\xda" "\xb1\x35\x63\x39\x36\xce\xaf\xfb\xc4\xa8\xa1\xdd\x58\xbe\xc1\xfd\x3f\xbc" "\xee\x9b\xe9\x87\x41\x58\xab\xd4\x37\x69\x28\xb2\x02\x31\x91\xd2\xc8\x7f" "\x36\x57\x94\x3a\x60\xdc\xb1\x62\x12\x70\x4c\xfb\xee\x38\x1e\x58\x19\x4c" "\x56\x71\xb5\x94\x49\x4c\x60\x32\x55\x12\x77\x3d\xc7\xdc\x38\xda\x37\xd8" "\xb2\x75\xbe\xcb\x97\xf4\x72\x06\x7b\xfd\x7d\x35\x94\xaf\xd7\x8a\x08\x03" "\x83\x92\x48\xc7\x5f\xdc\xe6\xb6\x27\x11\x02\x6c\xc3\x2e\x1e\x3a\xa0\x11" "\x52\x17\x5a\x30\x96\x60\x33\x94\xe7\x73\x88\x37\x90\xe9\x66\x22\xa2\xb3" "\x47\xeb\xe5\x69\xeb\x26\xd4\x01\x01\x15\xcf\xa6\x11\xd4\xde\xb8\x3a\xe4" "\xb0\x75\x3b\x52\x8f\xea\x44\x0c\x95\xd5\x65\x0a\xcb\x53\x93\x1f\x8e\xf6" "\xb6\x61\x4b\x2a\xef\xd0\x75\x4c\x54\x84\xb6\x13\x9a\xd1\x8a\x0c\xc2\x3e" "\xfb\xc3\xde\xf8\x59\x5c\xa4\x5e\xf2\x4c\xb6\x08\x3c\x93\x26\x13\x81\xa1" "\x11\xf2\xef\x45\x0f\x5f\x95\xa3\x43\xde\x96\xd4\xd4\x26\xd3\xa7\xa7\x25" "\x26\xb0\x9b\x82\x5a\x75\xdf\x24\xdb\xf4\xd5\x1a\x5b\x77\xf8\xcb\x94\x8b" "\xcb\x78\xc4\xb4\xc0\x9d\xa9\x2a\xea\xf9\x85\x5d\x40\xb0\xd5\xd8\xea\xbc" "\x5f\xe5\x7c\x55\x5f\x58\xba\x01\x25\xe2\x95\x12\xd2\x29\x5b\x0c\x9d\xdb" "\xa4\x5f\x37\xa3\x46\xe7\x82\x6a\x4e\x3b\xcf\xa4\x0a\x54\xbe\x09\x6f\x69" "\x5a\xdf\x9e\x66\xbc\x9f\x36\x95\x56\xac\x26\xc6\xfe\x46\xd4\xbd\x80\xac" "\x94\x9c\xd3\x1e\x13\x90\xc1\x43\x87\xa8\x1c\xb5\xcf\x81\x49\x44\xe6\x0a" "\x29\x37", 8192); syz_fuse_handle_req(/*fd=*/-1, /*buf=*/0x200000004280, /*len=*/0x2000, /*res=*/0); // lsetxattr$trusted_overlay_upper arguments: [ // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // name: ptr[in, buffer] { // buffer: {74 72 75 73 74 65 64 2e 6f 76 65 72 6c 61 79 2e 75 70 70 65 // 72 00} (length 0x16) // } // val: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // size: len = 0xfe37 (8 bytes) // flags: setxattr_flags = 0x0 (8 bytes) // ] memcpy((void*)0x200000000100, "./file1\000", 8); memcpy((void*)0x2000000000c0, "trusted.overlay.upper\000", 22); syscall(__NR_lsetxattr, /*path=*/0x200000000100ul, /*name=*/0x2000000000c0ul, /*val=*/0x200000000480ul, /*size=*/0xfe37ul, /*flags=*/0ul); return 0; }