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