// 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 #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } #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); setup_sysctl(); const char* reason; (void)reason; install_segv_handler(); if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x200000000040, "ext4\000", 5)); NONFAILING(memcpy((void*)0x2000000001c0, "./file2\000", 8)); NONFAILING(memcpy((void*)0x200000000380, "auto_da_alloc", 13)); NONFAILING(*(uint8_t*)0x20000000038d = 0x3d); NONFAILING(sprintf((char*)0x20000000038e, "0x%016llx", (long long)6)); NONFAILING(*(uint8_t*)0x2000000003a0 = 0x2c); NONFAILING(memcpy((void*)0x2000000003a1, "jqfmt=vfsv0", 11)); NONFAILING(*(uint8_t*)0x2000000003ac = 0x2c); NONFAILING(memcpy((void*)0x2000000003ad, "debug_want_extra_isize", 22)); NONFAILING(*(uint8_t*)0x2000000003c3 = 0x3d); NONFAILING(sprintf((char*)0x2000000003c4, "0x%016llx", (long long)0x64)); NONFAILING(*(uint8_t*)0x2000000003d6 = 0x2c); NONFAILING(memcpy((void*)0x2000000003d7, "debug", 5)); NONFAILING(*(uint8_t*)0x2000000003dc = 0x2c); NONFAILING(memcpy((void*)0x2000000003dd, "i_version", 9)); NONFAILING(*(uint8_t*)0x2000000003e6 = 0x2c); NONFAILING(memcpy((void*)0x2000000003e7, "quota", 5)); NONFAILING(*(uint8_t*)0x2000000003ec = 0x2c); NONFAILING(memcpy((void*)0x2000000003ed, "grpid", 5)); NONFAILING(*(uint8_t*)0x2000000003f2 = 0x2c); NONFAILING(*(uint8_t*)0x2000000003f3 = 0); NONFAILING(memcpy( (void*)0x200000000940, "\x78\x9c\xec\xdb\xcf\x6b\x1c\x55\x1c\x00\xf0\xef\xcc\x26\xad\xfd\x65\x62" "\xa9\x3f\x9a\x56\x8d\x56\x31\xf8\x23\x69\xd2\x5a\x7b\xf0\xa2\x28\x78\x50" "\x10\xf4\x50\x8f\x31\x49\x4b\xec\xb6\x91\x26\x82\x2d\x41\xa3\x48\x3d\x4a" "\xc1\xbb\x78\x14\xfc\x0b\x3c\xe9\x45\xd4\x93\xe0\x55\xef\x52\x28\x92\x4b" "\xab\xa7\x95\xd9\x9d\x49\x76\x37\xbb\x69\x92\x6e\xb2\xd5\xfd\x7c\x60\x92" "\xf7\x66\xde\xf2\xde\x77\x67\xde\xee\x7b\xf3\x76\x02\xe8\x59\xc3\xd9\x9f" "\x24\x62\x7f\x44\xfc\x1e\x11\x03\xb5\x6c\x63\x81\xe1\xda\xbf\x5b\xcb\x8b" "\x53\x7f\x2f\x2f\x4e\x25\x51\xa9\xbc\xf5\x57\x52\x2d\x77\x73\x79\x71\xaa" "\x28\x5a\xbc\x6e\x5f\x91\xe9\x8b\x48\x3f\x4b\xe2\x48\x8b\x7a\xe7\x2f\x5f" "\x39\x3f\x59\x2e\xcf\x5c\xca\xf3\x63\x0b\x17\xde\x1f\x9b\xbf\x7c\xe5\xb9" "\xd9\x0b\x93\xe7\x66\xce\xcd\x5c\x9c\x38\x7d\xfa\xe4\x89\xf1\x17\x4e\x4d" "\x3c\xdf\x91\x38\xb3\xb8\x6e\x0e\x7d\x34\x77\xf4\xf0\x6b\xef\x5c\x7b\x63" "\xea\xcc\xb5\x77\x7f\xfe\x36\x29\xe2\x6f\x8a\xa3\x43\x86\xd7\x3b\xf8\x64" "\xa5\xd2\xe1\xea\xba\xeb\x40\x5d\x3a\xe9\xeb\x62\x43\xd8\x94\x52\xad\x9b" "\x46\x7f\xb5\xff\x0f\x44\x29\x56\x4f\xde\x40\xbc\xfa\x69\x57\x1b\x07\x6c" "\xab\x4a\xa5\x52\x79\xa0\xfd\xe1\xa5\x0a\xf0\x3f\x96\x44\xb7\x5b\x00\x74" "\x47\xf1\x45\x9f\xcd\x7f\x8b\x6d\x87\x86\x1e\x77\x85\x1b\x2f\xd5\x26\x40" "\x59\xdc\xb7\xf2\xad\x76\xa4\x2f\xd2\xbc\x4c\x7f\xd3\xfc\xb6\x93\x86\x23" "\xe2\xcc\xd2\x3f\x5f\x65\x5b\x6c\xcf\x7d\x08\x00\x80\x06\xdf\x67\xe3\x9f" "\x67\x5b\x8d\xff\xd2\xa8\xbf\x2f\x74\x6f\xbe\x86\x32\x18\x11\xf7\x45\xc4" "\xc1\x88\x38\x15\x11\x87\x22\xe2\xfe\x88\x6a\xd9\x07\x23\xe2\xa1\x4d\xd6" "\xdf\xbc\x48\xb2\x76\xfc\x93\x5e\xdf\x52\x60\x1b\x94\x8d\xff\x5e\xcc\xd7" "\xb6\x1a\xc7\x7f\xc5\xe8\x2f\x06\x4b\x79\xee\x40\x35\xfe\xfe\xe4\xec\x6c" "\x79\xe6\x78\xfe\x9e\x8c\x44\xff\xee\x2c\x3f\xbe\x4e\x1d\x3f\xbc\xf2\xdb" "\x17\xed\x8e\xd5\x8f\xff\xb2\x2d\xab\xbf\x18\x0b\xe6\xed\xb8\xde\xb7\xbb" "\xf1\x35\xd3\x93\x0b\x93\x77\x12\x73\xbd\x1b\x9f\x44\x0c\xf5\xb5\x8a\x3f" "\x59\x59\x09\x48\x22\xe2\x70\x44\x0c\x6d\xb1\x8e\xd9\xa7\xbf\x39\xda\xee" "\xd8\xed\xe3\x5f\x47\x07\xd6\x99\x2a\x5f\x47\x3c\x55\x3b\xff\x4b\xd1\x14" "\x7f\x21\x59\x7f\x7d\x72\xec\x9e\x28\xcf\x1c\x1f\x2b\xae\x8a\xb5\x7e\xf9" "\xf5\xea\x9b\xed\xea\xbf\xa3\xf8\x3b\x20\x3b\xff\x7b\x5b\x5e\xff\x2b\xf1" "\x0f\x26\xf5\xeb\xb5\xf3\x9b\xaf\xe3\xea\x1f\x9f\xb7\x9d\xd3\x6c\xf5\xfa" "\xdf\x95\xbc\xdd\xb0\xef\xc3\xc9\x85\x85\x4b\xe3\x11\xbb\x92\xd7\x6b\x8d" "\xae\xdf\x3f\xd1\x54\x6e\x62\xb5\x7c\x16\xff\xc8\xb1\xd6\xfd\xff\x60\xac" "\xbe\x13\x47\x22\x22\xbb\x88\x1f\x8e\x88\x47\x22\xe2\xd1\xbc\xed\x8f\x45" "\xc4\xe3\x11\x71\x6c\x9d\xf8\x7f\x7a\xf9\x89\xf7\xb6\x1e\xff\xf6\xca\xe2" "\x9f\xde\xd4\xf9\x5f\x4d\xec\x8a\xe6\x3d\xad\x13\xa5\xf3\x3f\x7e\xd7\x50" "\xe9\xe0\x66\xe2\xcf\xce\xff\xc9\x6a\x6a\x24\xdf\xb3\x91\xcf\xbf\x8d\xb4" "\x6b\x6b\x57\x33\x00\x00\x00\xfc\xf7\xa4\x11\xb1\x3f\x92\x74\x74\x25\x9d" "\xa6\xa3\xa3\xb5\xdf\xf0\x1f\x8a\xbd\x69\x79\x6e\x7e\xe1\x99\xb3\x73\x1f" "\x5c\x9c\xae\x3d\x23\x30\x18\xfd\x69\x71\xa7\x6b\xa0\xee\x7e\xe8\x78\x3e" "\xad\x2f\xf2\x13\x4d\xf9\x13\xf9\x7d\xe3\x2f\x4b\x7b\xaa\xf9\xd1\xa9\xb9" "\xf2\x74\xb7\x83\x87\x1e\xb7\xaf\x4d\xff\xcf\xfc\x59\xea\x76\xeb\x80\x6d" "\xe7\x79\x2d\xe8\x5d\xfa\x3f\xf4\x2e\xfd\x1f\x7a\x97\xfe\x0f\xbd\xab\x45" "\xff\xdf\xd3\x8d\x76\x00\x3b\xaf\xd5\xf7\xff\xc7\x5d\x68\x07\xb0\xf3\x9a" "\xfa\xbf\x65\x3f\xe8\x21\xe6\xff\xd0\xbb\xf4\x7f\xe8\x5d\xfa\x3f\xf4\xa4" "\xf9\x3d\x71\xfb\x87\xe4\x25\x24\xd6\x24\x22\xbd\x2b\x9a\x21\xb1\x4d\x89" "\x6e\x7f\x32\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\x74\xc6\xbf" "\x01\x00\x00\xff\xff\x50\x38\xe6\xd5", 1071)); NONFAILING(syz_mount_image(/*fs=*/0x200000000040, /*dir=*/0x2000000001c0, /*flags=MS_NODEV|MS_NOATIME*/ 0x404, /*opts=*/0x200000000380, /*chdir=*/-1, /*size=*/0x42f, /*img=*/0x200000000940)); NONFAILING(memcpy((void*)0x200000000000, "./file2\000", 8)); syscall(__NR_open, /*file=*/0x200000000000ul, /*flags=O_TRUNC|O_NONBLOCK|O_LARGEFILE|O_DIRECT|O_CLOEXEC|0x401*/ 0x8ce01ul, /*mode=S_IROTH*/ 4ul); NONFAILING(memcpy( (void*)0x200000004200, "\x0a\xca\x6c\x6a\x1b\xaf\xd2\x98\x96\x66\xa6\x01\x4b\xd5\xe9\xe6\x39\x45" "\xbd\xa6\x4c\x12\x39\xd9\x70\xf0\xd3\x49\x11\x0c\x18\xfe\x02\x9a\xc3\xe2" "\x9d\xc9\xff\x9e\xad\x2e\xd3\xce\xf0\xfe\x77\xef\x83\x48\xa8\x2d\x3d\xa1" "\x86\xce\x21\x40\xd5\x3d\xfe\xb3\x4d\xc1\xe1\x28\xdc\xa5\xa5\x22\x5d\xb8" "\x05\x2b\xd3\x48\xc2\xd1\xa3\xde\x22\x42\x33\x03\x2f\xff\x8b\x85\xc8\x58" "\x85\xc9\x0e\x9d\x0c\x20\x50\x01\xdb\x3d\xfc\x55\xd1\x7a\x7d\xab\x17\x61" "\xc1\x73\x3c\x46\x51\x13\xc0\x56\xd3\xbc\xba\xf6\xa5\x2d\xbd\xa8\x20\xa1" "\xdb\x5e\x7d\x77\x7f\x6c\x71\x6e\x5f\x60\xb0\x4c\xc1\xc6\xa3\x62\xd8\x91" "\xcb\x08\xfa\x10\x9c\x5a\x00\xe4\x27\xf8\x63\x60\x59\xd9\x34\xf2\x55\x02" "\x1c\xf1\x3d\x2b\xc9\xcf\xf9\x3f\x04\x90\x18\xb8\xe4\x8f\x64\x80\xd3\x24" "\xf0\x8e\xb8\x36\x55\xd3\xeb\x5a\x37\x9e\xc1\x8c\x86\x1f\x59\x6d\xb1\x7b" "\xcc\x23\xad\xa6\x5f\x26\xa0\x2c\x4c\x0c\x9e\x31\x67\xcc\x58\x2e\x93\x66" "\x1c\xdd\x0d\xc7\x58\x1a\xc1\x95\x8d\x9c\xd0\x81\x04\xaf\x25\x1d\x87\xd8" "\xb5\xd8\x21\x50\xb8\xcc\x4c\xa6\xd2\x34\x75\xf2\x59\xa8\xb7\xd6\x98\x39" "\xcf\x72\x8a\x6c\x47\x8e\xec\x56\x13\x5b\xdf\xc6\x42\x8a\x31\x8c\xf2\xb8" "\x38\xd1\x69\x84\xd0\x49\x8d\x33\xac\x41\xfe\x67\x36\x1b\xdf\x57\x52\xdb" "\x6a\x5a\xe3\x29\x79\x46\x3b\x60\xad\x6b\x99\x52\x7a\xff\xdc\xb2\xb4\xa0" "\xf2\x3b\x2f\x14\x0c\x98\x1b\x00\xc9\x9c\xd2\x5d\x56\x3f\xf6\xc3\x30\x8b" "\x04\x83\x71\xeb\x2e\x59\x98\x80\xa2\xb6\x7e\xf9\xa2\x28\x29\x47\xdb\xb2" "\x3a\x3f\x19\x44\x19\x3a\x80\x11\x87\xf2\x06\x58\x7a\x52\xee\x7a\x33\x03" "\x2a\x84\x2b\x31\xfc\xc0\xdb\x07\x9c\x55\x4c\x97\xa0\x9e\x38\x12\xae\xa4" "\x57\x02\x09\x9a\xb6\x48\x88\x8d\x08\xae\x48\xa1\x87\xa5\xac\xee\x7b\x9a" "\x2e\xdb\xc3\x20\xc6\x45\x14\x55\x4e\x54\x02\x86\x05\x3d\xd2\xac\xb9\xf9" "\xec\x83\x43\x5f\x43\x19\x3b\x45\xb3\x24\xc8\x40\x6c\xdf\x97\x6b\xc7\x60" "\x7c\xf9\x38\x5e\x99\xbf\x5f\x52\x05\x11\x0d\x0c\x27\xab\xca\xc4\x9e\x7e" "\xc7\xde\xef\x56\x0f\x95\x3d\x2c\x64\xbf\xd0\x14\xdd\xcb\x1b\x2c\xbc\xcb" "\xe4\x01\xa3\x12\x43\x67\x99\x23\x58\x07\xf4\xfd\xf5\x2a\x9f\x89\x46\x56" "\xfc\xbe\x1e\x97\x11\x63\xe8\xd7\x43\x45\x0c\x49\x87\x53\x79\x52\x2d\xf7" "\x7d\x5e\x89\x10\xdf\x83\x77\x01\xd1\x35\xf4\x58\x9d\x4d\x15\x35\x5e\x16" "\x38\xef\xf5\x68\xa1\x8a\x0d\x62\x17\xa1\x1a\xcf\x8f\xdf\x0f\xed\x02\x16" "\x63\x52\x15\xd2\x48\xaf\xf3\x7d\x85\xb6\x2e\xdb\xc9\x89\xbc\x6d\x47\x57" "\xe6\x34\x7e\xc9\x71\xae\x2b\x1e\x0d\x19\x4e\x6c\x11\xdd\x8f\x7c\x10\x82" "\x19\x56\x9e\x15\x7e\xce\xb7\xc1\x4a\x28\x8a\xad\x98\xa2\x4d\xe9\xa8\x1f" "\x9b\xa1\xdd\x52\x71\xc1\x7a\xdf\xdf\x41\xf3\x39\x37\x89\xc3\x0f\x93\x45" "\xf6\xad\x4a\xd1\xa6\xbf\x46\x64\x0f\x69\xf7\xc0\x38\xc4\xfe\xc6\x65\x28" "\x53\xa3\xf4\xfe\xce\x3c\x3d\x15\xbf\xde\xa1\x5f\x37\xe9\x61\xa0\x3d\xe5" "\x41\x81\x72\x48\x01\x80\x8a\x3a\x90\x30\xba\x46\x50\xce\x6f\xa9\xe6\x82" "\x2c\x79\x4d\x7b\x9d\xa5\x48\xa2\xea\xb9\x77\xab\x0c\x08\xb2\xd9\x85\x95" "\x7d\x5c\xd7\x0e\xc6\x77\x63\x72\x19\xc6\xca\x7c\x7c\x4d\x0a\x7a\x7c\xa3" "\x8c\x18\x62\x58\x37\x35\xb4\x6b\x3a\xdd\xfd\x1c\x72\xcf\x7f\x63\xf1\x1b" "\xd8\x5e\xd5\x9b\x9b\xa9\x4d\xb5\xc2\xfb\xd4\x84\x61\xab\x73\x5b\x43\x9a" "\x99\x2e\x3a\x44\x62\x54\x5e\x04\x2e\x3c\x86\x31\x99\xc0\x06\xef\x3a\x3b" "\xe4\x47\x3b\x24\xb7\x82\xf8\x6a\x3c\x1d\xca\x98\x48\x28\x3b\xc4\x7f\x43" "\x22\x27\x36\x81\xef\xa1\xc8\xc4\x13\xdc\x81\xa4\x59\xe4\xe7\x55\x84\x6a" "\x09\x49\x71\x70\x8e\xb7\xf4\x28\xaa\x67\xd0\xc8\x1c\xe7\xf3\x3d\x85\x6e" "\x13\xa3\x42\xb0\x5e\xb4\x03\xaf\x7b\x4c\xab\x19\x1c\x4a\xb9\xd6\x50\x15" "\x88\x08\xec\x74\xd0\x4f\x4b\x76\x5e\x51\x3b\x94\xf1\x03\x45\x32\x2e\x48" "\x48\x5d\x29\xeb\x8b\x14\x08\xd7\x77\x6f\x98\xe3\x62\x5a\x20\x22\x0e\x94" "\x78\x94\x76\xaf\xfd\xbd\x19\xb4\x4b\xac\x6b\xd2\xfa\x2b\x0b\xa1\x0e\x93" "\x58\x21\x78\xa3\xef\x49\x38\xdc\xda\x25\xbc\x62\x45\x62\x1b\x1c\xed\x78" "\x0c\xa0\x89\x01\x0e\x8e\x51\x49\x3c\x1a\xc7\x74\x7e\x94\x9b\x67\xfe\x6e" "\x38\x58\xe6\x0a\x1e\x45\xa6\x57\xc0\x80\xfd\xc0\xbc\xbf\xca\xc2\xba\x9d" "\x02\x7f\x02\xce\x30\xcc\x74\x40\xce\x71\xea\xc6\x6b\xb2\xeb\x26\x4d\xcb" "\x13\x06\xa6\x05\x4f\xde\x66\x40\xca\x51\xec\x4c\xca\xf5\x00\xa8\x7f\x07" "\x3b\x58\xab\x28\x6d\xae\xef\xd8\xd3\xec\x7e\xe8\x82\x55\x1f\x7b\x6a\x36" "\xab\x79\xa8\xe1\x0d\x1d\x3c\x23\x4f\xfa\xa3\x3e\x95\x02\x60\x25\xcc\x39" "\xa0\x57\xef\xe7\x82\x3d\xcb\x68\x91\x31\xb1\xe8\x35\x72\xb4\xdd\x1f\x49" "\x09\x75\x80\x97\x6c\x04\x64\x24\x61\x8f\xd6\x04\x7d\x46\x92\x80\x87\xd4" "\x83\xdf\x95\x27\x38\x44\x8d\x16\x4c\x92\x88\xb1\x5a\x49\x82\x49\x3b\xf7" "\xeb\xc1\x97\x6d\x09\x42\x84\x6c\x83\x10\x55\x67\x32\xb4\xca\xbf\xf9\x37" "\xa5\x1e\x92\x6c\xaa\x37\xae\x54\xde\xa3\x39\xc2\xa2\xa8\xd7\x3b\xe2\xca" "\x3a\x39\xed\xcb\x4e\xf8\xbd\x58\xa3\xc4\xc9\x8c\x48\xb9\xf3\x7a\x14\x24" "\xb6\xa5\x49\x19\x92\x1d\x44\x29\x61\x1d\x0d\xd5\x85\xd1\xd3\x57\xc3\xc1" "\xad\x1c\xf6\x8f\x36\x90\x7f\x8d\x9c\x28\xa1\x4e\xc2\xcf\x25\x10\xfe\x54" "\x51\x01\x11\xdd\xd7\xa6\x7f\xb8\xd2\xf4\x49\x22\x7d\xa3\x97\xc3\x2b\x8d" "\xca\x19\x97\x1a\xb9\xd7\x6e\x1f\x6c\xe0\xc5\x4c\x9d\xe1\xcb\x1d\xaa\x19" "\x36\xb6\x2f\x83\x81\x70\xb8\xb6\xe7\xf3\x41\x68\xa0\x99\x61\x9a\x11\x3c" "\x83\x34\x7c\xe2\xc0\xf6\x08\x68\x55\x38\x50\x62\xb6\xe0\x74\xb6\x83\x91" "\xe5\x94\x30\x23\x6f\x9e\xc6\x87\xa2\x65\x07\x2f\x7a\x40\xef\xbe\xf3\xcf" "\xe5\xbc\x1c\xfb\x36\x4d\x87\xa5\x97\x50\x78\x11\xd2\xbf\x6a\xf5\x9e\x20" "\xfc\xf4\x70\x3c\xaa\x63\x28\x5d\xec\xab\xcc\x36\x7c\xcf\xb8\xe2\x7e\xfe" "\xcb\x14\xdb\x8b\x11\x67\x93\x8f\x45\x7d\x41\x17\xc6\x2f\x44\x0d\x80\x7b" "\x54\x82\xbb\x22\x3b\x4b\x14\xe9\x52\x6f\x9e\xde\x33\x63\x1c\xdf\x9f\xca" "\xb5\x3b\x3f\xbe\xbc\x93\x44\xab\x13\x0d\x79\x3d\xad\x61\x0f\x2f\xe4\x1e" "\xf3\x88\xac\xae\xbd\x6c\xf2\x6a\xed\xf7\xc7\xc6\xaa\xee\x95\x6c\xf9\x2c" "\x14\x58\x3b\xd4\x5b\x18\x9d\x43\xf7\xb4\x44\x19\xdf\x1e\x0a\xde\xcc\x8f" "\xbe\xdb\x35\x76\x56\xb7\x64\x97\x21\xf8\x1c\x22\x07\xeb\xb3\x7e\x3a\xe2" "\x1b\xdc\xe8\xc9\x82\xcb\xbd\xec\x01\x2c\x7f\xe5\x87\x16\x1f\xf7\x41\x61" "\x0f\xb8\xea\x58\x83\xc7\x58\x52\x78\x73\xca\x21\x97\xb5\xf1\x05\x80\x83" "\xc4\x02\x03\xcc\x4d\xbd\xf7\xf4\xf1\x38\x8f\x23\x09\xd2\x2a\x6a\x17\x67" "\x13\x77\x03\x29\x6a\xd3\xae\xab\xdb\xb3\x52\x9a\x29\x0d\xa9\xc6\xcc\x56" "\x31\xb2\xf1\xad\x25\xc7\x66\xe3\xcb\xd8\xd9\xf5\x88\xba\xfd\x17\x49\x5f" "\x57\x2b\xf1\xcf\xe1\xe8\xb5\xbb\x22\x13\x09\x63\xcc\xa8\x83\x2f\x84\x63" "\x00\xbb\x6d\xc0\xba\xec\x85\xb5\x00\xe1\xa4\x8f\xdd\x14\xcf\x04\x42\xfe" "\x4d\x44\x18\x21\xd7\xe4\x6f\xb5\xe2\x22\x0c\x96\xbf\xb1\x6a\xb8\xca\x88" "\x3a\x44\x77\xbc\x75\x6d\xfc\x66\x22\xf3\x20\xa6\x48\xcf\xb5\x7f\x9d\xe9" "\xae\xf3\x3f\x99\x86\xc6\x51\x7d\x1a\x7e\xb5\x93\x48\x54\x1d\x6d\x34\x94" "\xeb\xe7\xbc\x1e\xd4\xa8\x6f\x06\x41\x14\x91\xd1\x76\xda\x36\xde\x8c\x8a" "\x8d\x8e\xa2\x89\x28\xbd\xa6\x3f\xe8\x63\x27\x7e\x43\x25\xb7\x56\x42\x1d" "\x4d\x20\x42\x42\x82\x50\xed\x52\x6e\x53\x8f\xb9\x30\x67\x1e\x9a\xd5\x17" "\xaa\xc4\x94\xa5\x8a\xec\xbc\x90\x8b\x51\x20\x16\xfe\x4d\x8f\x60\xb5\x76" "\xe2\x30\xb3\x20\x6a\x0c\x7b\xd4\xfe\xf7\x17\xa8\xcd\xa0\x02\x9d\x13\xec" "\xc3\xc8\xf8\x68\x6f\x71\x7a\xdc\x14\x40\x35\x3c\x23\x6a\xa7\x1f\x84\x28" "\x39\xc5\xce\x92\xc8\x3f\xbf\xb5\x7b\x22\x12\x71\xaa\x6f\x40\x29\x21\x9c" "\x3c\x2e\xd7\xa3\xa5\x3d\x8f\xf0\x65\xce\x30\xd4\x03\xc9\x5c\xf6\x9e\x79" "\x63\xd5\xbf\xb6\x3b\xcc\xb5\xb2\x8c\xa1\x25\xf0\xd7\x09\x40\x72\x27\x3c" "\xe3\x10\x80\x93\xd0\xff\x83\xab\x98\x39\x3b\x8e\x9a\x87\x11\x7f\x49\x33" "\xa8\xc8\xec\xf3\x53\x93\x1d\xa3\xb8\xda\xcb\x20\x68\x5a\x65\xdd\x86\x5b" "\xd6\x03\x1c\xd2\xb0\xb7\xe2\x37\x90\x1c\x78\x2c\x6e\x6e\xa8\x74\x2e\x89" "\xdb\xb0\x1e\xb9\x25\xdd\x6e\x74\xc5\x3b\xd2\x8d\x3c\x42\x4c\xee\x35\xeb" "\x29\x82\x3f\x21\x38\xb9\x25\x16\x07\x5e\x00\x34\x2f\xa4\xdb\xc5\xb2\x76" "\x75\xa6\x51\x03\x2c\x8f\xfb\x3d\xa6\xc5\x34\x9d\x0f\x9b\x27\x79\x77\x8d" "\x0c\xfa\x1c\x8d\x4c\xc3\x4d\x4f\xe9\x5f\xc4\x35\xe4\x76\x8e\x93\xd5\x6d" "\x2c\x14\x2f\x25\xdf\x1b\x9a\xfa\x7d\x10\x34\x86\x84\x23\x72\xb3\x62\x61" "\xb9\x6b\x7b\x3a\xcc\x0e\x78\xff\x20\xa5\x35\xed\x51\x5a\xce\x0c\xf3\x30" "\x01\x68\xa7\xef\x42\xd6\xbd\x51\x1c\x01\x9d\x0c\xcd\x75\x99\xba\x70\xcb" "\xab\xc9\x5f\x34\xa0\x52\xfe\x9d\x6f\x97\xb4\x9d\xc1\xcd\xe4\x0d\x5e\xbf" "\x30\x57\x97\xd7\xd5\x72\xa6\x1c\xd3\x8a\x0c\xf8\x5f\x28\xc5\xd0\x18\x64" "\x8b\x76\x93\x27\xbd\x95\x59\x72\x2d\x54\x22\x75\x4f\x26\xc9\xe5\x43\x9b" "\x42\xbe\xdf\x34\xe3\x1b\xbc\x84\x5b\x99\xce\x31\x5e\xee\xb0\x38\x3f\xb3" "\xae\x02\x10\x84\xce\xdc\xd8\x43\xb8\x68\x31\xc7\x84\x41\xcc\xc0\xd2\xc2" "\x3d\xe5\x28\xe5\x3c\xff\x78\x58\x16\xa3\xa3\xd9\x9b\x4a\x46\x84\xdf\x95" "\x46\xa2\x85\x20\x3b\xb6\x15\xeb\x48\x0f\xa8\x38\x5e\x90\x22\x6b\x27\xb3" "\x9a\x7d\x50\xc8\x3b\xab\xf5\xba\x89\x0d\xa1\xa8\x84\x8b\xa3\x72\x97\x13" "\x47\xdc\x34\xb7\x63\x70\x54\x4f\xeb\x18\x3b\x92\x92\x04\x3f\x2e\xf0\x72" "\xb6\x9b\xcf\xf4\x5b\x19\x17\xc0\x73\x22\x2d\x50\xbd\x58\x5f\x21\x73\xbd" "\xae\x67\x31\x98\xb9\x5b\x67\xf8\x38\x7f\x6d\x2b\x29\x34\x59\x7c\x5c\xe1" "\x65\xfd\x42\x0d\xdc\xc0\x1d\x29\xd7\x1d\x53\x2b\x5d\x12\x7a\xfc\x98\x65" "\x78\x45\x23\x0e\x36\x3c\xbb\x9e\xcc\x05\xb2\x47\x99\x6e\xcb\xfc\xe0\xe8" "\x21\x5e\xc7\xdc\x5e\x9b\xe1\x15\xde\x2e\x7e\xbe\x8f\xe3\xe1\x91\xf4\x55" "\xd2\x44\xad\x1c\xe7\x5c\x82\x8a\x2a\xdb\xbe\x50\x95\x89\xf3\x89\x93\x6e" "\x62\xdf\xd1\xec\xde\xf1\x05\x16\x2d\x35\x7c\xfb\x22\x41\x2b\x64\x57\x0d" "\xcb\x04\xfe\x18\xbb\xbe\x55\x18\x98\x5d\x73\x16\xa7\x5a\x19\xa1\x6a\x48" "\x21\x05\xb7\xfa\xc9\x23\xe1\xee\xfd\x78\x0d\x03\x6c\xcc\x39\xe3\xcc\x53" "\xd2\x00\x2c\xcd\x10\x00\x4b\xe1\x69\x4b\xe4\x11\x0f\xb0\x62\x11\x0e\x1a" "\x44\xba\x88\xac\xfa\x28\x2d\x9c\x7c\xda\xe0\xcb\x55\xf4\x8f\x7c\xaa\x3c" "\x32\x4d\x9f\x52\x26\x5d\x21\x60\x6a\x20\x77\x9a\xcc\xdc\x9f\x69\xdd\x0f" "\xc4\x9e\x4b\xc2\xc4\x98\x91\xe5\x26\x56\x15\x69\xab\xe5\x67\x35\x33\xc8" "\xa9\xb6\xa3\x00\x4c\x80\x9d\x3f\x74\x52\xb0\x27\x87\x04\x7d\x44\x42\xdf" "\x3f\x4c\xc5\xd4\x7e\x5a\xa7\x3b\x79\x94\xc1\x13\x54\x1e\xa3\x12\x97\x0f" "\x2e\x74\x1d\x4f\xd5\x0a\x83\xf5\xa0\x29\x3f\xbd\x56\xd6\x19\xaa\x4b\xb3" "\xb4\x91\x60\x66\x42\xfc\xb9\x22\xb5\xcc\xd6\xbe\xdb\x44\x2e\x45\x06\x09" "\x34\x3e\x18\xf6\x1a\xbb\x3a\x4b\x2f\xc6\x9e\x06\xa7\x2e\xdc\x7b\xcb\xa0" "\xda\x06\xda\x3e\x80\xf5\x9b\x73\x7f\x08\x8d\x01\xf0\xdb\xca\xd8\x90\x03" "\xb5\x05\xfe\x29\xbd\xc8\x11\x8e\x3f\xbc\xdb\x90\xa4\xf4\x64\xe0\xe7\x0d" "\x20\xf0\x93\x79\x0a\xe1\xb9\xf6\xf8\xa9\x04\xa2\x68\xcb\x4b\xb1\x16\x40" "\x4d\xe1\xbd\x4c\x3f\x95\x22\xc3\x68\x93\xa9\x02\xa3\xa9\x0f\x52\x67\x0b" "\x7f\xf2\x07\x48\x15\x32\x9f\x3f\xe2\xc8\xcc\xfa\xbe\x2d\x81\x23\x94\xe6" "\xb0\xe3\x47\x41\xab\xec\xe7\x1b\x7d\xb0\xfb\xf0\xa8\x0e\x6c\x13\xbc\x7b" "\xba\x89\xa4\xee\x01\xca\xd9\xdd\x76\xe4\x9c\xd9\x16\x90\xdb\x6f\xe4\x02" "\x64\x0d\xb8\xb3\x52\x3c\x49\xbc\xf6\x11\xa9\xda\x99\x11\x23\xed\xcb\x64" "\xef\x50\x59\x06\xd8\xab\x4b\x85\x86\xe6\x31\x82\x84\x02\x10\x5f\x04\x5c" "\xff\x36\x81\xf2\xf3\x6e\x37\x13\xbe\x5b\xcb\x6a\xf1\x57\x27\x8b\x19\x4a" "\x51\xf0\x4d\x04\x50\x72\x31\xaa\x6f\x4d\x77\xb4\x06\x5f\x2a\x97\x89\x4c" "\x20\x1b\x23\xf7\xb5\xf7\x9b\x02\x9c\x74\xfc\x4c\x57\xff\xf8\x7c\x03\xe0" "\x12\x10\x67\x44\x17\xc1\x29\x71\x55\xca\x7a\x7f\xbe\x85\x5f\xdc\xf6\x55" "\x61\x61\x9f\xfc\xa0\x09\x9f\xa0\x8d\xdc\x8d\xdd\x7f\x71\x3b\x2b\x0c\x6a" "\xf0\xfc\xc4\xbd\x4c\xba\x9e\x9f\x47\xde\xbd\xc6\xd9\xe6\xe2\xdc\xe6\x3f" "\xec\x20\xef\xc5\x1e\x15\xd0\x13\xfa\xdb\xa2\x70\x7a\x44\x9d\xbf\xd0\x25" "\xf1\xa7\xc3\x29\x28\x2c\x79\x7b\x20\x71\xaf\xb3\x7a\x89\xf8\xd5\x8c\x1e" "\x3b\x4f\x06\x58\x6f\x00\xa4\x33\x16\x13\x73\x54\x8b\x69\x9f\xab\xd9\x27" "\x71\x34\x6a\x25\xff\x10\x78\x9c\xa8\x9c\xbf\x00\xf9\x22\x48\xc6\xb8\x46" "\x8f\x22\xaa\x4c\xf7\xba\x90\xae\xa1\x6a\x3c\xc2\xb1\xee\x59\x86\x09\xdf" "\xbe\x75\xfb\x8e\x11\xc5\x00\x3a\xd0\xc9\xac\x72\x05\xcd\x35\x55\x2a\x53" "\x70\x3f\x06\xe4\x65\x63\x3f\x96\x53\xcd\x67\x09\x52\xfe\xb9\xe7\x7d\xb9" "\x60\xea\x18\x91\x42\x35\xaf\x75\x7e\x75\x20\x4d\x1f\x74\xde\x98\x29\xdf" "\xac\x21\x7d\x87\xae\xcc\x1c\x80\x06\x64\x26\xf1\x2e\x52\x88\x3b\xfc\xd9" "\x82\xe5\x4b\xfd\xae\x8e\xf5\x5f\x3b\x70\xf7\x8b\xae\x9e\x6a\x1e\x24\x38" "\x8c\x64\x2c\xba\x3b\x32\x15\x60\x22\x94\xbb\x7d\x68\xbb\x6f\x8e\x0b\x24" "\xc0\xb6\xe9\x9d\xf5\x04\xc3\x0b\xeb\x2a\x7f\x47\xb0\x2f\x9a\xf6\x51\x1e" "\xda\x25\x40\x7c\x30\xdf\xde\xe3\x9e\xc8\xdb\x32\xd9\x3e\x1e\x09\x47\x24" "\x74\x88\x3a\x87\xb7\xb4\x66\x4b\xef\x06\xd5\xc0\xa4\x37\x93\x23\x71\x87" "\xac\xaa\xa9\x65\x4f\x74\xe5\xd3\xbf\x1c\xe3\x89\xbe\xfc\x13\x9f\xba\x61" "\x37\x8e\x7b\x66\xb4\xb0\xd8\x73\x34\x73\x25\x92\xeb\xd0\xe4\x98\x93\x73" "\xca\x54\x1b\x92\xd0\x03\xe6\x7e\x02\x92\x25\x6c\x25\x63\x44\xdb\xf0\x3a" "\xd2\x45\x40\xf1\x1c\xdc\x17\x4b\x45\xd3\x78\x1c\x1d\xa7\x93\xa4\x60\xba" "\x67\x13\x73\xa0\xfa\x08\x2b\xa6\x3f\x54\x18\x73\x3c\x99\x07\xd3\x60\xc9" "\xbc\x54\xba\x0e\x2b\x37\x4d\xe7\x96\x5a\x87\x31\x6d\xf1\xc7\xaf\x17\x16" "\x4e\x1b\x6d\xfe\x32\xd7\x1f\xb5\xba\x64\x1b\xb8\xd6\xcd\x62\x99\x47\x3f" "\x37\xe4\x4a\x69\xe9\x0a\x87\xcd\x2f\x8a\x48\x6a\x0d\xb4\xeb\x10\x4b\xf8" "\x7d\x9f\x7c\xc8\x7d\xc2\x94\xe6\xde\xbe\xc7\xe5\x81\x9f\x3f\x26\xbd\xf4" "\xca\xc9\x1f\x8e\xe9\x4a\x82\x6d\xf9\x9d\xa3\x9a\x4b\xd6\xd4\x76\x94\x34" "\x28\xe3\xf5\x00\x95\x46\xee\x56\x9d\x62\x73\xf7\xec\xb1\x15\x53\x8c\x6c" "\xe8\xfe\x15\x02\x49\xc8\x94\x52\xc2\xf0\xcf\x07\x96\x20\x8a\x21\x6f\xc2" "\xcb\x55\xe1\xb6\xc8\x92\x77\x8f\x15\xe7\xf8\xb7\x8e\x6e\x97\x09\x35\x72" "\xa2\x9c\xa3\x60\x0c\x72\xfe\xb4\xe1\xef\x42\xa2\x25\xda\x69\x5b\x31\x11" "\x77\x7f\x38\x33\xe3\x06\xf2\xa9\x0b\x8e\xd6\x09\x51\x27\xb0\xf1\x3b\xe4" "\x95\xa3\x32\x1b\xf8\x20\x19\x55\xd4\x0f\x6b\x48\x69\x04\xa4\xe1\xf4\xc9" "\x96\x55\x63\xd3\x02\x77\xb3\x0c\xb0\xd1\xef\x37\x53\x38\xa2\x53\x14\xfc" "\x5a\xbc\xe4\x1f\x1e\x95\x11\x8e\x89\x45\x5a\xf9\xe7\x86\xcd\xc4\x60\xe4" "\xe4\x8f\xda\x5f\x21\xce\xce\x9b\x4e\x52\x76\x52\x3d\x69\x19\xe1\x65\xdf" "\x5e\xfe\x59\xaf\xf1\x30\x67\xd3\xef\x0e\x82\x25\x93\x05\x94\x2b\x5f\x25" "\xe8\x31\xdc\xb7\x2f\x5c\x7f\xa6\x7c\xeb\xa7\x67\x80\x78\xd8\x31\x1a\xef" "\xdc\x91\x91\x6f\x8c\x1d\xb2\xac\x61\x18\x8b\x46\x82\x57\x07\xdd\x26\xd2" "\x9a\xec\x73\x4d\xf8\xbe\xbd\x74\x74\x27\x79\x08\xb2\xba\x9e\x77\xda\xea" "\x20\xc3\x95\x25\x3b\x3c\xc8\x76\xe5\xdc\xac\x96\x05\x56\x07\x2b\xec\x36" "\xe1\x4d\xa2\x6c\x33\x5b\x50\x9a\x38\xdb\xf3\x03\x7d\x62\x0f\x47\x65\xe6" "\x3b\x94\x6e\xf8\xad\xa1\x72\x9b\x13\x23\xac\xc8\xb5\xe4\x36\xf3\x96\x7a" "\xb7\xcc\x03\x3c\xcb\x7d\x0c\x9c\xc7\x4d\x3a\x3f\xaa\x2f\xf2\xaf\xb1\xcd" "\x57\x1e\x37\x49\xcb\x02\x03\xe7\x07\x56\x27\x3f\xc6\xa4\xd8\x0c\xf6\x46" "\xd5\x51\xf3\xa8\x01\xca\x51\x3a\xc5\x87\xf0\xdd\xc8\xc5\x88\x70\xd8\x17" "\xea\x26\x71\xb2\xef\x30\xbe\x91\xa4\x5d\xc7\x30\xc6\x63\x6e\x7d\xe2\xec" "\x23\x50\x44\xb8\x37\xed\x98\x61\xdc\x89\xe4\xdf\x34\x2c\xff\x52\xa2\x9a" "\xe6\xb8\xd5\x81\x7f\xe3\x1b\xb3\xa7\x4d\x02\x02\xef\xca\x5d\x94\xb4\xd2" "\x32\xf3\xdf\xf8\x85\xbf\x52\xf8\xd4\x30\x97\xd0\x69\xce\x81\x22\x0e\x85" "\x78\xc6\x30\xd4\x96\xb0\x1f\xc6\x05\x62\xbf\xbf\xda\x22\xfc\xe6\xce\x68" "\x56\x4a\xb3\x1d\x1a\x3d\x38\xaf\x2d\x7b\x73\xa9\x70\xb9\xb3\x0f\x6c\x48" "\xdc\x38\x99\x1d\xa4\x02\x49\x1b\x2d\x64\x3e\x0f\x5e\x71\xbb\x9c\x0a\xa8" "\x34\x00\x6d\xdf\x24\xb7\xdb\xb1\x80\xf6\x87\x51\x53\x5d\x8c\xc3\x48\x23" "\xba\x3d\x1d\xdf\xbf\xeb\x6a\x15\x65\x51\x18\xd4\xe1\xe1\x1b\x25\x5b\x99" "\x80\x06\x90\x60\x17\xad\x99\x78\xd6\xcf\x4a\x45\xa6\x69\xea\xbf\x65\x33" "\x63\x39\x1e\x77\xa8\x2a\x9d\xa1\x4d\x18\x4a\x50\xf1\x42\x1e\xeb\x61\x41" "\x1e\x85\x9c\xf6\xf9\x8a\xb0\x84\x6e\xd5\x34\x5b\x63\xe3\xad\x00\x4d\x1f" "\xfd\x1e\x48\xe6\x57\x4b\xa7\xd8\x32\xf7\xad\x13\x45\xb8\xdf\x27\xf7\x70" "\x72\x45\xb3\x35\xdd\xff\x2e\x4c\xa1\x43\x0e\xc4\x4a\xf2\x08\xe6\x33\xc2" "\x56\x78\xb3\xcf\xee\x96\x42\x4c\xa0\x26\xb1\x59\xbb\x18\xc1\xbd\xc5\x1d" "\xb6\xc6\x6e\x87\x88\xe5\xaa\xdc\xe1\xd3\xe5\x31\xc9\xb0\x2e\xdc\x65\xb8" "\x46\x76\x3e\xe6\x41\x13\xc0\xcd\x0d\x23\x82\x4c\x4b\xaf\x35\x16\xe2\xc8" "\xe5\x19\x2a\xfb\x9f\xcd\x39\x0e\x51\xb3\xbc\xdc\xc0\xa4\x9f\x93\x2a\x69" "\x07\xb3\x87\x13\xe2\x22\x9a\xaa\x9a\xbc\x53\x05\x42\x0f\x50\xa2\x01\x64" "\x29\x01\x2e\x83\x54\x07\xde\xe7\xd8\xd0\xb8\x40\x46\x55\x62\x0c\x3d\xf4" "\x07\xe7\xbe\x2a\x5a\x1e\x66\x83\x41\xdd\x91\x22\x45\x09\xff\xd4\x8d\xb6" "\x86\x1f\x55\x8d\x09\x89\x54\xf8\x3a\xeb\x6e\x42\x60\x99\xcc\x42\x91\xda" "\x31\x1c\x37\xbd\x46\xc8\xd8\x0c\x3e\xa9\x75\xe0\xdb\x6c\xe1\x2d\xbd\xae" "\x91\x16\xbf\x08\x90\x94\x31\xfd\x54\x83\xf7\xcb\x30\x76\xd3\x3a\x90\x0d" "\x56\xc2\x6d\x6f\x15\x13\x86\xab\xb3\x2e\xa3\x35\xf5\x33\x76\x83\x20\x1a" "\x1c\xe5\xd9\xdf\x25\xc5\xdf\x29\xa3\x75\xd2\x68\x08\x27\xe1\x82\xb1\xaa" "\x08\x13\xee\x7f\x9d\x27\x3d\x7c\xe1\xb8\x61\x94\xa8\xcf\x48\xd6\x30\xa5" "\xbe\x0b\x94\x72\x45\xc1\xee\x0a\x06\x45\x50\x0c\xe2\xce\xd6\xda\xde\x1b" "\x63\xc0\xe7\x57\x22\x60\xcc\xe2\x56\x36\x77\x8d\x79\xef\x11\xed\x5e\x3c" "\x42\x83\x5c\x8e\x53\xa6\xd2\x6c\xf8\x52\x93\x05\x0c\xed\xee\x2a\x11\x6e" "\x5f\x38\xb9\xca\xe9\x1a\x50\x3e\xc9\xe0\xcf\x78\x4d\x9c\xfd\xcc\xed\xf9" "\x59\x71\x54\x0e\xc3\x79\x26\xeb\x43\xb2\x7c\xbf\xf1\xd9\x6b\x83\xf8\x00" "\x18\xe6\xaf\xec\x70\x52\x3b\x66\x72\x11\x1a\x47\xf9\x92\x2d\xb3\x4d\xa1" "\x5d\x7c\xa3\xcc\x3a\x77\xf1\xab\xe7\x22\x1b\x72\xd4\x3d\x2c\xb4\xc2\x3f" "\xd2\xbf\xf6\xcd\x5e\xf6\xb3\x1b\x6a\x4c\x65\xba\xbc\xdc\x91\x8b\x0d\x99" "\xfa\xd6\x56\xe4\x71\xa2\x0a\x8f\x4b\x66\xd6\xe3\x78\x77\xda\x1a\x8b\x7f" "\xb7\xa8\x69\x2d\x6d\x57\x8f\xf9\x53\xb1\x8d\xee\xbe\xa1\x35\x3f\x91\x51" "\x02\xe4\xd2\x06\x4d\xcf\x8e\xb0\x96\x5a\x2f\x4c\x2e\xed\xa7\x0b\x41\x77" "\xde\xdd\x75\x97\x79\x7e\xc7\x6b\xb7\x2e\xe4\x22\xec\x4d\x16\xe4\x94\xed" "\x77\xc9\xbd\x84\x3e\xe0\x18\x85\xcc\x3a\xba\x1f\x77\x80\x6e\x8f\x50\x1b" "\x85\x69\x35\x49\x49\x18\xef\x83\x37\x9a\xc5\xae\x1e\x06\x69\x76\x06\x05" "\x3a\x8c\x5c\x88\x09\x75\xd1\xf0\x85\xc9\x3f\x2a\xdb\x1b\xd2\xc6\xae\x07" "\xc2\x9b\xbb\x24\x5c\xac\x47\x26\xa2\x0a\x2f\x61\xde\xd0\x13\x72\x2e\xee" "\x88\x78\x93\x3a\x90\x31\x9c\xc8\xca\xb7\xa2\xbc\x69\xdb\xc7\x97\x67\xba" "\x18\xfc\xdd\x8f\x9b\xa7\xde\x44\xe9\xf0\x57\x59\x94\xb2\x8a\xa9\xe3\xe7" "\xb4\xc1\xf2\xce\x0e\xee\x26\x4d\xfe\xfe\x3e\x16\x00\xcd\x96\x96\x83\x55" "\x18\x94\xd2\x8b\x69\x01\x22\x09\x31\x05\x13\x3b\x22\xee\x04\xa5\x0f\x48" "\x83\x27\x4c\xb9\x29\xbe\xb1\xbb\x45\x44\x4c\xa5\xd4\x70\xc0\xac\x61\x1c" "\x49\x90\xee\xfe\xa2\x55\x26\xf5\x90\xb2\x69\xad\x40\xd2\x38\x42\xc5\xb5" "\x99\x6c\x1c\xb3\x93\xdb\xff\x28\xa7\xe2\xf7\xcf\x04\xac\x30\xfb\xc2\xd2" "\x9e\xce\x67\x08\xfa\xd8\x30\xbc\x52\x3f\xa5\x2d\x2e\xbb\xfd\xa2\x73\x79" "\xe8\xc4\x8d\x08\x5b\x26\x0a\x2d\xfc\x2e\x8d\x7e\x1a\x94\xa2\x45\xb5\x18" "\x61\x2b\xfc\x9c\xa0\x26\x0c\x8f\xde\xde\x52\x98\xbf\x58\x4e\x5d\x71\xfc" "\x13\x1f\x5e\xb6\xad\x2d\xd7\xbf\xd4\x2a\x77\xf5\x23\xeb\x0a\xaa\x78\x70" "\x03\xfb\x71\xb9\xa6\x4f\xa7\x83\xe9\x18\x59\x5a\xf0\x41\x3f\xcc\x0d\x78" "\x18\xa5\x14\xc0\x55\xa4\x8b\xa9\xb1\xbb\xc6\xc9\x74\xf7\xcb\x55\xc3\xaf" "\x3e\xdf\x11\x78\x35\xd1\x69\xe5\xe2\xb3\x1e\x42\x78\xd0\x41\x9b\x23\x62" "\x5a\xe0\x04\x17\x1e\xb2\xef\x8c\x23\x1a\x61\x33\x18\x86\x23\x4b\x40\x28" "\x86\xb4\x99\x3c\xa6\x37\x6f\x86\x64\x13\x4c\xea\xd1\xbe\xa1\x42\xbb\xed" "\x5d\x46\xe3\xbb\x71\xb0\xf8\xa4\xce\xc0\xc7\x9a\x9b\x5f\x6c\x82\x31\x28" "\xd0\x20\x63\x96\x7a\x53\x63\xb6\xbd\x6e\x24\x2f\xa3\xfd\x21\x95\x3f\xdb" "\x57\x72\x5f\x1e\xda\x22\x98\x4b\xcf\xf8\xe4\x0f\x20\x76\xfc\x0a\x46\x27" "\x06\xdc\x2b\xd9\x5d\xc4\x47\xa2\xae\xc2\xa8\xa4\x80\x8f\x29\x30\xff\x13" "\x53\x34\x89\x42\xe2\x82\x04\xaf\x42\x14\x1f\xa1\x20\xc8\xe5\xfa\x9c\x22" "\x5d\x16\xf3\x62\x4d\xeb\x2c\xe1\x78\xfd\xf5\x94\xdb\x50\x41\x59\xbb\xf4" "\x75\xe8\xbe\xe2\x81\xe3\xc8\xeb\xb2\x9b\x40\x4b\x3f\xbd\x13\xde\xa7\x6d" "\xf5\xae\xe0\x5a\xd6\xa8\x50\x54\xb8\x38\xe1\x49\xd0\xeb\xfa\xbe\x61\xdc" "\xbd\xa6\xc3\x49\x4e\x17\x0e\x75\x63\x38\x43\xa0\x1e\x24\x58\xb5\x26\xac" "\x54\x24\x17\x7d\x6b\xc4\x70\x6a\x09\x69\x4b\xe1\xc3\x72\xcc\x79\xcf\x7c" "\x4d\x82\xff\x4e\x62\x48\x9d\x1f\xc7\x81\x9d\x74\x97\x10\x03\x5a\x6f\xac" "\x23\x9d\x71\x6b\x57\xa1\xaf\x13\x46\xc1\xe8\x42\x0d\xc8\xae\x46\xfd\x18" "\x24\x51\x60\xd4\x3a\x40\xc5\x64\xbf\x11\xf0\x23\x2b\xfd\x1f\xed\x67\xba" "\x1a\xeb\xce\x12\x0e\xe9\x3a\x0a\x00\x05\x70\xb8\x08\xd9\xfc\xd6\x0b\x62" "\x2c\x59\xad\x53\xef\x53\x5c\x1d\xb7\xde\x15\xb5\x2e\xd2\x54\x07\x08\xeb" "\x5b\xaa\x71\x95\xe1\xa8\x69\x90\xb6\x61\x1a\xd5\xc5\x01\x27\xf7\xe8\x76" "\xf8\x03\x18\x56\xe9\xa2\xc0\x56\x6f\x35\x7d\x6c\x75\xe6\xca\x5f\x21\x7d" "\x42\x86\x02\xfa\x7c\x8f\x7f\xb9\xf3\xab\xbe\xfe\xe7\x6d\x88\xb3\xb0\x8c" "\x3b\xe2\xf0\xd0\x93\xce\x96\xc6\xa0\x0f\x3a\x15\x7d\xc0\xa0\x5e\x1f\xc5" "\xd8\xde\x58\x3c\x25\xe0\x9c\x77\x34\x8f\x58\x25\xfc\xd4\x63\x13\x96\xf3" "\xe8\xc2\x6f\x5c\x14\x32\x78\x4e\xb8\xc3\x77\xfb\x52\x0d\x28\xae\xdc\xaa" "\x5a\xdd\xfd\xa6\xee\xd1\x1d\xa4\xd2\xcc\x91\xc2\xe3\xc3\x72\x8c\x76\x3c" "\x9d\x58\x28\x3a\xf3\x2d\x00\xaa\x19\x10\x01\x1a\x55\x2a\xda\xbe\xe9\x9d" "\x13\x87\xd1\x4e\x58\x2c\xf6\x8f\xea\x46\xb7\x29\xed\xdd\x0d\x3a\xd8\xeb" "\x91\x25\xd5\xfb\x06\x0f\x4d\x6f\x70\xa1\x66\xcc\x3c\xe9\xb0\x2a\x7b\xc6" "\x52\x00\x39\x9f\xc2\xa4\x7b\x90\x03\x9a\xc2\x3a\xfb\x85\x39\x25\x19\x5e" "\x80\x79\xda\x20\xcb\xff\xea\x72\x36\x51\x58\xfb\xd9\x4a\x6e\x0a\x65\x4f" "\x6c\x09\xa8\x03\x2f\xb2\x6d\xf9\x99\x13\xc2\x30\x0e\x03\x42\x8a\xb3\xcd" "\x1b\x3f\x7a\xee\x15\x46\x07\x32\xd4\x45\xb4\x79\x76\x73\xb4\x7a\x93\xa3" "\x25\xb2\xe5\x15\x71\x06\xad\xe0\x95\x9b\xe9\xc4\x56\x2d\x5a\x42\x92\xa9" "\xac\x94\x94\x0c\x66\x37\x5e\x55\x9f\x34\xe5\x7a\x11\x58\xb5\xd7\x7a\x5d" "\xc9\x51\x5b\xda\xb6\x37\x99\x62\x73\x01\xf1\x93\x98\xd8\x4c\x7a\xfd\xe8" "\x12\x10\x0a\x65\xa1\x64\x2e\x95\x15\xa3\x04\x34\xd3\x44\xb3\x80\xa9\x2e" "\xeb\x20\x13\xa0\xf6\x3c\xba\x64\x8c\x37\x09\x5b\xfd\x98\x5c\x60\x7b\x12" "\x0f\x17\x69\xa7\x9f\x1f\xd7\xc0\x3f\x09\xf9\x66\xb7\x29\x45\x60\x6a\xde" "\x67\xf9\xaa\xa6\x31\x94\x8b\xb8\x2f\x9a\xe3\xf8\x9e\xcf\x6d\xb1\x2c\x02" "\xd1\x74\xf6\x2a\xd6\xe1\xb6\x0f\x48\x19\xae\x19\xf4\x97\x9e\x0f\x9d\xcf" "\x51\xbe\xdf\x4b\x1b\xd1\xde\x73\xbc\x2a\xdb\x19\x23\x54\x4e\xde\x6d\xbd" "\x40\xed\x4c\x55\x9c\xf1\xf0\x79\xf5\xdc\x89\x86\x69\x15\x40\xe1\x3f\x5a" "\x25\x05\xcc\x09\x23\xca\x8f\xe2\x60\x8e\xc9\x2b\x95\xdb\xb5\xfa\xcc\x32" "\x0e\x43\xb2\x04\x9b\x79\xeb\x02\x61\x8f\x6f\xab\x08\xb7\xe9\xdb\xe0\x0f" "\xcd\x69\xb3\x38\xb1\xbb\x6a\x9b\xea\xe5\x31\x97\x2e\x16\xa1\x9d\x94\xbd" "\x22\x73\xc4\xd0\x42\xec\xa3\x4d\xd7\xc5\xae\xbf\xbf\x16\x55\x26\x81\xad" "\x4e\x24\x38\x24\xa9\xc5\xd0\xd8\xb8\xd3\xab\xa4\xc1\x02\xfb\x76\xc2\x16" "\xc2\x30\xc2\xec\x34\x83\x8a\x08\x17\xb0\x3a\x04\x48\x0c\x61\xc8\x99\xb2" "\xe4\x42\xbc\xf2\x56\x7d\x4e\x73\x00\x0d\x9c\x9d\x4d\x0a\xcb\x71\x2d\xf0" "\x18\x3f\xc2\x88\x63\x4c\xfd\xe2\x34\xb9\x4f\xdb\xbc\x0b\x7e\x66\xea\x5b" "\x64\x37\xf3\x12\x16\x7b\x1e\xa9\x3e\x2a\x6b\x21\x05\x30\x8d\x81\x98\xa2" "\xd4\x05\x4b\xa2\xff\x28\x55\x25\x0e\x0e\x6c\x95\x23\x64\x05\x6e\x2d\x3d" "\x09\xe5\xa2\xc5\x78\x83\x7d\x65\x21\xff\xb8\x27\x80\xf1\x69\xd0\x7f\x2f" "\x03\x2b\x34\xd6\x2f\x27\x12\xa7\x7a\x56\x17\x50\x17\x25\x7e\xa1\xca\xea" "\x41\xac\xbb\xc5\x20\xb4\x29\xbd\x4e\x3e\xc3\xf9\xa6\xea\xfc\xe4\x67\x31" "\xdd\x33\x96\xf1\xce\x1a\x61\x98\x92\x7f\xd2\xdb\xef\xb3\xf7\x7c\x91\x73" "\xbe\x09\x34\x74\x7c\xa4\x7b\x98\xc6\x54\x8c\x8c\xd0\x72\x49\xd9\x71\x54" "\x14\xb8\xa8\xdd\xc8\x43\x05\x75\xd8\xb8\x90\x3d\x39\x23\x08\x92\x82\xa3" "\xcc\xea\xd6\xe1\x10\x44\xc6\x7f\x3d\x5d\x8e\xd8\xcc\x0c\x03\x31\xf2\xdc" "\x09\xe1\xba\xe7\x7a\xb5\x53\x07\xe6\x44\x5a\xd3\x82\x45\x1e\xff\x64\xfa" "\xca\x8a\x4c\x0c\xba\x7c\xfa\x2f\xc9\xb0\x87\xaf\xb0\x40\xe5\x94\x11\x5c" "\x35\xce\x1d\xbe\xc6\x9e\xf1\xe5\xaf\x80\x03\x33\x9a\xfd\xa5\xfa\xa1\xbe" "\x1a\x3d\xa7\xc5\xcb\x84\x27\x30\x09\xc3\x2d\x30\x0f\xba\x7d\x22\x2d\x2d" "\xc7\x83\x24\x1a\x94\x14\xee\x30\xc8\xbd\x7e\x65\x5c\x09\xa7\xf5\x0d\xfb" "\x24\x9a\xe9\xb1\x52\x84\xb9\x71\x50\x3f\x6c\xe8\x86\x6a\x1b\x36\xf9\x93" "\xac\xf2\x8d\x38\x7d\xa8\x8c\x8d\xef\xd3\x23\xd1\xcd\x91\xd4\xeb\x46\xff" "\x87\x45\x82\x69\xa1\x34\x67\x55\x56\xb0\x67\xa1\xb7\x18\x29\xb7\x70\x6b" "\xa5\x8c\x93\xa9\x19\x88\x40\x89\xdc\x33\x3c\x9b\x5d\x82\x79\xdb\xcc\x20" "\x07\x19\x91\x76\x2d\x25\x69\xc8\xff\x5f\x21\x78\x3e\x29\x61\x22\x8b\x20" "\x06\xf8\x80\x57\x50\xc0\xf9\xf4\xf9\xdc\x3d\xf8\x6d\xae\x1a\xb9\x8a\xf2" "\x21\x22\x96\x6a\x6b\xa0\x4c\xcb\xb2\xbd\xf9\x0e\x91\xe1\xf2\x59\x5b\x97" "\x9b\x69\x34\xfe\x13\x2e\xda\x34\xce\xc0\xf8\x31\x32\xf3\x86\x7a\x19\x7a" "\x6d\xfd\x0d\x43\x52\x8b\xd5\x66\x13\x73\x27\x04\xbb\x62\xb1\x2f\x4e\xde" "\x74\x39\xb2\x15\x03\x84\xfa\x04\xdb\x65\x8f\xda\x2d\xdf\x97\xab\x57\x1f" "\x02\xd1\x50\xc5\x0c\x95\x00\x9d\x0a\xa2\xe5\x53\x01\x9a\xc1\xcf\x9b\xba" "\xf1\x54\x74\xbf\x66\xd6\x92\x24\x91\x3b\x11\x08\x0b\xad\xb4\x7d\x4a\x08" "\x5f\xa1\x3e\x96\x5d\xe6\xe9\x5b\x7a\xa6\xe0\x7b\xb2\x12\x77\x4d\x02\x40" "\x73\x8c\xc0\x7c\xcc\x16\x70\xd3\x3c\x10\x0c\xea\xd3\xfb\x99\xc3\xf3\x2f" "\xdd\x97\xc9\xb1\x69\x56\xb1\xc2\x2a\x90\xcd\x5c\x7a\xa0\xd9\x20\xda\xe9" "\xe2\xb1\x49\xfb\x5f\x98\x70\x12\x9a\x0e\x97\xd1\xed\xba\x0d\xbf\x8f\xc4" "\xfc\xca\x6c\x65\xc6\x39\xdd\x3e\xaa\x88\x03\xb1\xe9\xe6\x01\x90\x7e\x08" "\x6e\xd1\x07\x9f\xf6\xbc\x6d\xe9\x41\xc9\x1d\xf0\x63\x4c\xe3\x73\x0b\x80" "\x35\xbf\xdf\xa6\x99\x30\x46\x66\x92\x0b\xfb\x09\x23\x54\xda\x1f\x0b\xdd" "\x28\xc9\x02\x3b\xd2\xe1\x52\xe9\x31\xe8\x2e\xea\xbb\x86\xb0\x32\x3c\x78" "\x9d\xaa\xc9\x44\x22\xeb\x78\x55\xf1\x87\x75\x91\x7e\x12\xfe\xb8\x50\x19" "\xe2\xe0\x17\x30\x30\x02\xff\x8e\x04\x51\x3a\xe0\xfb\x03\xf3\x34\xa7\x6a" "\xdd\xd8\xfc\xbd\x69\xed\x25\x93\x1f\x44\x04\x4e\xef\xfb\x5d\x66\xca\xb5" "\xa2\x2b\x21\xe8\x53\x24\x94\x6a\xb1\x54\x08\xdd\x5d\x68\xb1\x77\x27\xd2" "\xe4\x77\x9b\xc3\x78\x75\x0e\xaa\x6e\xf6\xe9\x43\x96\x6c\x0d\xc4\xd0\x66" "\xc6\xb8\xb8\x94\x50\x23\xa0\xfc\x49\xf8\x1a\x9c\x15\xa3\x5d\x35\x0e\x3d" "\x74\x16\x52\xb8\xa8\x01\x4b\x36\x49\xdc\xfd\x02\x8f\x25\xc0\xb3\x8b\x7c" "\xc1\x4f\x7e\x37\x5a\xcf\xd3\x96\x0a\xf2\xee\xfc\x49\xac\x65\x89\xf3\x87" "\x91\xc9\xc0\xb0\xea\x4e\x55\x99\x22\x74\x05\x2e\xed\x15\xcb\x8d\xe2\x13" "\x79\x46\x36\xc4\xdb\x23\x85\xeb\x9b\xcf\xc2\x8f\x8a\x97\xe7\xc7\xac\x94" "\x9c\xd5\x19\xab\x62\xd1\xab\x10\xd8\x55\xa7\xac\x6a\xcd\xa0\x0b\x78\xd3" "\x5d\x80\xa9\xab\x4b\x70\x99\x60\x37\x82\x38\x4c\x46\x1d\xee\x90\xab\xcc" "\x14\xa5\x39\x77\x94\x35\xcf\x06\x77\xeb\x0b\x6f\xf7\xe4\x74\x88\x66\x77" "\x88\xf9\xb0\xfd\x7d\x5e\x0c\xf5\x3a\xee\x5c\xa0\x07\x1f\xa3\x0c\x06\x2d" "\xa3\xc4\x4e\x79\x09\x6e\x24\x59\x4c\x6e\x20\x2b\x7c\xdb\xdc\x49\xbe\x2d" "\xda\xc8\x05\x8c\x7d\xed\x15\xf0\x7d\x4c\x41\x38\x86\xfd\xd7\x01\x7b\x9f" "\xed\xb8\x6e\x39\x91\x7f\xd1\xe8\x1b\x29\x46\x75\xbd\xe0\x6c\x8f\xac\x0d" "\xbc\xe7\xf4\xb9\x0b\x38\x59\xc6\x6f\x9f\x6f\xec\x64\x0c\x67\x81\x72\x8a" "\x8b\x34\x7d\xa2\x8b\x43\x60\x92\x4e\xf6\x8c\x3c\x74\x0e\xd5\xdd\xbf\x01" "\x37\x20\xc6\xde\x54\xd9\xbc\xe5\x23\x28\x64\xf9\xe8\x0a\x65\x2c\xd7\x78" "\x64\x1c\x32\x78\x76\xb2\xa3\xe1\x04\x93\x55\xa5\x8f\xb5\x05\x4a\xa1\x70" "\x64\xe9\x71\x42\xd6\x4b\xe9\xda\xf5\xd1\xb1\x62\x56\x6a\x00\x9c\x69\x13" "\x3f\x60\xe3\xd4\xc2\xa5\x3c\x15\x31\x85\xc6\x59\xd1\x62\x36\xfc\xc1\x69" "\x0e\xed\x8c\x6c\x2e\x4f\x8b\x17\x2e\xec\x45\x7a\x94\x07\x00\x3d\xda\xd7" "\x23\xe3\xb1\x83\xe8\x1b\x17\xdd\xbe\x46\xba\x36\x8a\xb3\xe3\xff\x57\x4d" "\x9e\x3f\xb8\x2e\x10\x2a\xb4\x6d\x7f\x60\x8e\x23\x5d\x06\x4e\xa9\x63\xfd" "\xf1\x62\x2e\xd7\x27\x8a\x27\xfd\x82\x10\xad\x39\xc3\xac\xd9\x06\x9a\xbb" "\xa7\x1c\xa0\x51\xb6\x45\x61\x68\x30\x68\xca\x6a\x1b\xe9\x06\xc1\x96\xdd" "\xde\x18\x39\xb3\x89\x7d\x5a\xf8\xfe\xe5\x16\x14\xd7\x3e\x51\x51\x1b\x03" "\xa5\x76\x3f\x3e\xd3\xe6\x4b\xf7\x29\x31\x18\xdc\x32\x1c\xf5\xe9\x40\xa2" "\x82\x9c\x6b\x85\x50\x08\x3d\x66\xd3\x16\x80\xfb\x55\xaf\x09\x8d\x9c\xce" "\xbd\xe9\x88\x2f\x81\x8c\x29\xf4\xcb\xb5\x5c\x26\xa9\x7c\x35\x9d\x86\x06" "\xbf\xf3\x74\x4f\xf3\xef\xc2\x2e\x8d\x34\xe6\x7b\x7c\x97\xb5\x67\x48\x39" "\x63\xc5\x74\xbd\x1d\xac\x8c\x46\xc9\x11\xc4\x8b\x6e\x29\xe7\x3e\x52\xf8" "\xc9\x38\x57\x29\xa7\x3b\x70\xd2\xeb\xba\x9e\x74\x42\x47\xd9\x00\x3a\x96" "\x2f\xd6\x07\x68\x6e\x6c\x59\x72\xb5\x96\x16\xac\xfe\x32\x7d\x8b\x73\x6f" "\x38\xc7\x03\x83\x2d\x76\x90\xc6\x47\x46\x41\xbf\x87\x53\x8e\x78\x53\x53" "\xc1\xfd\x7d\xf1\xb5\xec\xb1\x20\x0e\xed\x8c\x58\x57\xab\xd1\x6c\x26\xae" "\x72\xd0\x14\x7d\xe4\x75\xb0\xc4\xbc\x98\xdb\xff\x53\x0b\x33\x4c\x9c\x50" "\x60\x7b\xd4\x6d\xdb\xcb\x1f\xfe\xbf\x75\x13\xcc\x84\x2e\x4c\xdd\x6c\x8c" "\x00\xa2\x84\xe8\x1c\xb5\x31\xa0\x4f\x75\x21\x0a\xdd\x4f\x73\xdb\x3d\xa9" "\x78\x36\x94\xfc\x54\x1c\xd4\x70\x36\x8c\x87\x76\x97\x3f\x02\x83\x5d\xc3" "\x55\xef\x54\xca\x90\xa5\x80\xa4\x5a\x2d\xf6\x13\x7c\x43\xb1\x51\xad\xe1" "\xe5\x1b\xc8\x79\xe7\xfb\x43\x14\x15\x41\xbf\xab\x79\xb3\xea\xf0\xea\xb3" "\x23\xc7\x14\x7e\xcc\xe6\xeb\x3e\xb3\xeb\x02\xa2\x04\x75\x5c\xdc\xc7\x40" "\x5a\xd9\x03\xb9\x1f\xa4\xd2\x97\x26\x2c\xf7\x7f\xe3\x95\xa1\x8e\x26\x9e" "\xc3\x6b\xd5\x34\xd4\x93\x9e\x78\x71\x9d\x7c\x31\x2c\xe5\x20\x59\x79\xb2" "\xfb\x92\xfb\xf9\xe1\xd1\xef\xfb\x0f\x66\x3b\x93\x61\x89\x3f\xcb\x11\xbf" "\xd6\x6c\x92\xaf\x33\x94\xe8\x99\x87\x69\x90\x88\x3e\x9f\x53\x74\xb5\x64" "\x2c\x68\xe8\x46\x84\x98\x61\x2e\x38\x48\xd3\x67\x59\x8c\x2c\xb0\x80\x6b" "\x7f\x0c\x7f\x4b\x00\x4d\xde\x2b\x4c\xc5\x01\x61\xa4\xd2\x93\xf2\xec\x89" "\xc4\xcd\x35\xa7\x67\x73\x6f\x92\x82\xf8\x48\xb9\xd1\xcd\xf4\x05\xf6\x1a" "\xbc\xb3\xe5\x0f\xf4\x09\x2d\x2a\xfb\x86\xfd\xce\xee\xc4\x79\x1d\x89\x25" "\x46\xe2\x94\x95\xf9\x78\x76\xcd\x80\x15\xf1\x93\x11\x3f\x1b\x85\x84\xa9" "\xff\x3f\x32\x65\x0e\x29\x12\x6b\x81\x25\x49\x61\xe6\x77\xb6\xf6\x70\x23" "\x29\x55\x67\xf5\x74\x36\x4b\x73\x20\x31\x3d\xb9\x88\x61\x6a\xc1\x23\x36" "\x81\x79\xbe\xaa\xbb\x5a\x56\x25\x7f\x0b\x6d\xf8\xf6\x95\x63\x24\xac\x31" "\xd3\xe8\xdb\x83\xdc\x99\x44\x25\xad\x80\xe2\x35\x05\x1a\xf6\x2e\xc7\x9a" "\x6d\xc4\xbf\xa3\x62\x83\xaf\x72\xaf\x26\x13\x6c\x8f\x5e\xeb\x32\xe1\xfa" "\x1b\x9e\x21\xa2\x28\xa2\xa1\x2a\xed\x39\xe7\x17\xe8\xf4\x04\x33\x4d\x83" "\x67\xef\x3e\xdc\xea\xb1\xf3\xe2\x50\xab\x9d\xc1\xe8\x9f\x9b\x84\xe6\x58" "\xd3\x88\x06\xf4\xd4\xa0\x9f\xf0\x7c\xa5\x39\x07\x7a\x5a\x49\x66\x99\xa9" "\xd7\xd4\xaa\xfa\x78\x12\x0e\xb9\x0f\x40\x4c\x2a\x6a\xe0\x0a\xa1\xc8\x13" "\xb2\x5c\xb6\xff\x9d\xab\x8b\x66\xb1\xdd\x83\xc8\x0c\x12\x25\xaa\x24\xa4" "\x7d\xf3\xcb\xff\x7f\x68\x42\xd9\x48\x6b\xbc\xd4\x17\x91\x50\xe1\xbc\xad" "\x3c\xaa\x60\x4a\xc1\xdb\x71\xaa\xc9\x13\xc9\xd3\xcb\xc1\x54\x18\x21\x87" "\xe2\xae\xb8\x52\x01\x1b\x22\xe4\x0b\x25\xf9\xcb\x31\xab\x7f\x45\x8a\x11" "\xb1\x83\x60\x85\xc4\xa9\x9a\x63\x32\x15\x68\x4e\x7f\xc7\x06\x46\xee\x21" "\x58\xfa\xf8\x32\x9c\x32\x0a\x3b\xc0\x50\xcd\xbb\xac\x21\x6a\x18\xa8\x8a" "\xf2\xdd\x1b\xb4\xd6\x48\x11\x0c\x5c\x90\xf7\xf5\x94\x81\x28\xea\xfb\xe3" "\x6c\x01\xea\x70\x9c\xa8\xb5\xfb\x8a\xd9\xeb\x73\x84\xfe\xb7\x05\x52\x20" "\xae\xd4\x56\x90\x66\x4b\x03\x12\x05\x27\x92\xa5\xb9\xdf\xc9\x0a\x12\x48" "\x99\x5c\xf6\x8f\x80\xb7\x82\x2f\xa5\x77\x72\x4a\xd1\x43\xb1\xd9\x87\xd2" "\xfa\xe7\x99\x2d\x3a\xd2\x70\xe6\xb1\xfc\x4f\x1b\xb3\x13\x0f\x13\x46\x07" "\xe8\x12\x9a\x6b\x14\x42\xac\x05\xf1\x14\x06\x2b\xe3\x60\x4d\x7c\xf1\x59" "\x50\x22\xf4\x9e\x7c\xc5\x52\x82\xf0\xf6\x66\xad\x6f\xf3\xb0\x3d\x69\x2c" "\x2a\x66\xfc\x2e\xb5\xfd\x07\x51\xe4\x51\x42\x29\x86\x1e\x23\x43\xd4\x31" "\x62\xdc\xbd\xec\x15\x6a\xa5\xf2\xc5\xf9\xaa\xfa\xf4\x70\xf1\x7e\x5e\xd6" "\x88\xb3\x51\x66\x47\xb9\xa1\xa2\x20\xe8\x43\x79\x1d\xdd\xa2\x0f\xcc\x44" "\x4e\xf6\x3b\xa3\x1f\xc2\x7e\x62\xfe\xe4\x67\x6f\x09\x7f\x3f\xec\xc6\x25" "\x75\x5b\x26\xad\x48\xdc\x7c\xee\xc1\x92\x04\x43\xc6\xc4\x66\xc7\xbb\x36" "\xe9\x10\x82\xf1\x15\xf4\xe5\x63\xa5\x62\xaf\x1c\xe5\xcf\x37\xc4\x5b\xb2" "\xda\x72\xab\x39\xec\xf0\x0e\x03\x49\xee\xd7\xe8\x79\x94\xb6\x67\x0e\x8b" "\xde\x4f\x4f\x91\x42\xcb\x99\xf6\xbf\x36\xeb\x41\xbb\x4d\xc7\x2b\x6c\x6a" "\x66\x86\xb6\x3f\xa2\x1c\x16\x7b\x1b\xa5\xff\x48\x1a\xbc\xc2\xca\x29\x90" "\x5d\x6b\x75\xef\xf9\x32\x29\x6d\x75\xa9\x00\x80\xf3\xa7\x27\x69\x0e\xab" "\x0e\x80\x4a\xa9\x5b\x54\x5f\x55\x10\x7d\x30\x8f\x4c\xd9\x88\x4d\x75\xc2" "\x83\x88\x15\x1a\x72\xe8\x22\x91\xf7\x9e\xb5\x29\x21\x71\x89\x03\xa8\xbf" "\x02\x9a\x3e\x7c\x0c\xe2\x8f\x20\x49\x26\xdc\x22\x1f\x78\x71\x1a\x08\x83" "\x4a\x91\x7a\x08\x43\xd8\x24\x9c\xa3\x17\xc7\x15\x4b\x88\xa5\xa1\x0a\x09" "\xd7\x47\x7f\xcf\x2d\x62\x96\x72\x5b\xb6\xa6\x9c\x27\x39\x96\x4a\x76\x8c" "\xd6\xae\x51\xd7\xe7\xde\x63\xbb\x17\xfe\x7f\xab\xeb\xb0\xee\x46\xc2\x85" "\xc6\x83\xa4\x12\x03\xd0\x59\xa5\xc8\x90\x24\xa7\xf3\xc5\x99\x15\x12\x19" "\x21\x00\x00\x75\xed\x39\x7d\x30\xad\xa6\xd5\x6e\x6c\xaa\x68\x5c\xb9\x8c" "\xc0\xbf\x27\x9f\xa2\xd9\x64\x08\x61\x1a\xe7\xe4\x3c\x3b\xf7\x0f\x73\x14" "\x8c\x66\x15\xf2\x00\x60\xb5\xc3\x37\xc6\x55\x5a\x3b\xdb\x18\x70\xbe\xde" "\xda\xc9\xef\xf9\x51\xcf\x1c\x7f\xd4\xf0\x04\x6d\x76\x61\x78\x9b\xcf\xd5" "\x6f\xe6\x19\x8b\x50\x2e\x01\xf9\x03\x33\xad\x6e\x93\x54\xdb\x44\x94\x35" "\xd0\x50\x65\x26\xbb\x0c\x65\x59\x5d\xea\xd8\x7b\xe4\x28\xeb\x1b\x98\x89" "\x06\xde\x15\x2f\x9a\x7f\x12\x6e\xde\x6b\x93\x3c\x2d\xe1\xf7\xd2\x0e\xc3" "\xe6\x4c\x74\x68\x90\x6f\xba\x2b\xde\xa8\xb3\x00\xba\xb2\x03\x54\x2d\xec" "\x13\xa9\x0e\x41\x95\xb3\xf7\xda\x1b\x66\x9b\xfe\x9e\x89\x89\x44\x0b\x24" "\x80\x7f\xfd\x44\xd9\xe3\xd6\x1e\x09\x8c\xaa\xa0\x29\xa7\x06\x3d\x25\x60" "\x4c\xba\xcc\x5f\x2b\x36\x71\xa1\x63\xb8\x0a\x44\x09\x48\x23\x0a\xe9\x0d" "\xc3\xbd\x7f\xd4\x6b\x66\x7c\xc7\xd6\xdb\xa2\xf5\x37\x75\xe9\xa2\x18\x0c" "\xed\x0e\x1c\xdc\x6e\x12\x75\xe7\x41\x60\x7d\x6d\xfe\x40\xf9\x1e\xc8\x16" "\x02\xf9\xbc\x7c\x26\xc3\x22\xb8\x21\x14\x94\x9f\xd1\x7a\x92\x84\xdd\x29" "\x18\x32\x6b\x78\x80\xf4\x2d\xb6\xe4\x68\xb8\x0f\x98\x0d\xb9\x8e\x31\xad" "\x57\xbe\x1f\x13\x14\x07\xa0\xd0\x99\xcb\xad\x9e\xff\x25\x91\x60\x48\xe4" "\x21\x0c\x0e\xb0\xb6\x8d\x4d\x11\xcc\x15\x45\xcb\x46\x11\x4b\x39\x69\xad" "\x0d\x7a\x65\x70\xb7\x57\x1c\x87\x7e\xd8\x06\x0c\xf8\xb7\x36\xf8\xc8\x2d" "\xdb\x64\xd1\x9f\xc2\x9a\xf3\x45\x3f\x0e\xfe\x33\xc6\x8c\x21\xc7\xc8\xc0" "\x54\x70\x77\x90\xcf\x5c\x05\x6d\x0b\xa4\x08\xd0\x77\xfb\x65\xce\xf8\xfb" "\x07\x13\x98\xce\x35\xcc\x95\xc4\x8b\xa5\x46\x23\x0f\x4d\xd6\x0a\xd6\x33" "\xf8\x14\x78\xc8\x70\x19\x73\x60\x44\x78\x35\x99\xa1\x7d\x4d\xaf\xd3\x0c" "\xc6\xf4\x27\x8c\xae\x23\x84\x76\x3f\xf2\xef\x39\x5b\x8e\x72\x65\xeb\xf0" "\x45\x3c\xef\x5c\x98\xe6\x2a\x0e\x48\xad\x42\x2a\xf1\x7a\x4e\xee\x1a\xcc" "\x10\xa5\x1a\x3f\xb6\xe9\x85\x94\x30\x9e\x49\x76\xf7\x10\x27\xdf\xe7\xa9" "\x59\x3c\xdb\x68\x60\xcb\xa7\x45\xf2\x34\x6c\x8d\x48\x68\xb0\x7f\x38\x1d" "\x3c\x13\x7b\x39\x67\x80\x54\x5e\x0e\xa3\x31\xe5\x86\xb1\x76\x82\x1e\x45" "\xf6\x77\x61\xfd\x8b\x4c\x6c\xbb\xec\xfd\x34\xb7\x22\x01\xf6\x14\x5a\x6b" "\x06\xea\xa8\xfa\x98\x72\xa5\x47\x34\xac\xbc\xca\xd4\x97\x39\x0f\xf6\x9f" "\x67\x6c\x49\x62\x58\x47\x9a\xa0\x6d\x9f\xd1\xec\xec\x02\xa0\x12\x16\xfd" "\x66\x55\x4a\xfb\xd5\xe7\x28\x60\x8f\x45\x72\xa4\xd4\x85\xe5\x7f\xf5\xbf" "\xc3\xdf", 8192)); NONFAILING(syz_fuse_handle_req(/*fd=*/-1, /*buf=*/0x200000004200, /*len=*/0x2000, /*res=*/0)); NONFAILING(memcpy((void*)0x200000000100, "./file1\000", 8)); NONFAILING(memcpy((void*)0x2000000000c0, "trusted.overlay.upper\000", 22)); syscall(__NR_lsetxattr, /*path=*/0x200000000100ul, /*name=*/0x2000000000c0ul, /*val=*/0x200000000040ul, /*size=*/0xfe37ul, /*flags=*/0ul); return 0; }