// https://syzkaller.appspot.com/bug?id=912f79b933915aba2231d0d06cea541ee0b211a2 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static 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 thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, 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; }; 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; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000800, "ext4\000", 5); memcpy((void*)0x20000000, "./bus\000", 6); memcpy((void*)0x20000c40, "jqfmt=vfsv0", 11); *(uint8_t*)0x20000c4b = 0x2c; memcpy((void*)0x20000c4c, "abort", 5); *(uint8_t*)0x20000c51 = 0x2c; memcpy((void*)0x20000c52, "barrier", 7); *(uint8_t*)0x20000c59 = 0x2c; memcpy((void*)0x20000c5a, "barrier", 7); *(uint8_t*)0x20000c61 = 0x2c; memcpy((void*)0x20000c62, "orlov", 5); *(uint8_t*)0x20000c67 = 0x2c; memcpy((void*)0x20000c68, "nomblk_io_submit", 16); *(uint8_t*)0x20000c78 = 0x2c; *(uint8_t*)0x20000c79 = 0; memcpy( (void*)0x20001440, "\x78\x9c\xec\xdc\x4d\x68\x1c\x55\x1c\x00\xf0\xff\x6c\x92\x56\xfb\x95" "\x58\xeb\x47\x6b\xd5\x68\x15\x8b\x1f\x49\x9b\x56\xdb\x83\xe0\x07\x08" "\x1e\x54\x04\x3d\xd4\xe3\x9a\xa6\xa5\x76\xdb\x48\x13\xc1\x94\x60\xa3" "\x94\x7a\x11\xb4\x20\x5e\x45\xf1\x22\x78\xf6\xe0\xc9\x93\xa8\x27\xc1" "\x8b\x07\xbd\x4b\xa1\x48\x2e\xad\x9e\x56\x66\x77\x66\xdd\x7c\xec\x87" "\xdb\x4d\x37\x1f\xbf\x1f\x4c\xe7\xbd\xc9\xdb\x7d\xef\xcd\xcc\x9b\x79" "\x6f\x5e\x67\x03\xd8\xb0\x86\xd3\x7f\x92\x88\x6d\x11\xf1\x7b\x44\x0c" "\x46\x44\x61\x71\x82\xe1\xea\xea\xfa\xfc\xec\xf8\xdf\xf3\xb3\xe3\x49" "\x94\xcb\xaf\xfd\x95\xa4\x1f\x8b\x6b\xf3\xb3\xe3\x79\xd2\x24\x5b\x6f" "\xad\x46\xfa\xd3\x55\xe1\x62\x12\xcf\x2e\x93\xef\xd4\xcc\xf9\xd3\xc5" "\x52\x69\xe2\x5c\x16\x1f\x9d\x3e\xf3\xf6\xe8\xd4\xcc\xf9\x27\x4e\x9d" "\x29\x9e\x9c\x38\x39\x71\x76\xec\xe8\xd1\xc3\x87\x0e\x1e\x79\x6a\xec" "\xc9\xae\xd4\xf3\xb6\xb4\xac\x7b\xde\x9b\xdc\xbb\xfb\xc5\x37\x2e\xbf" "\x3c\x7e\xec\xf2\x9b\x3f\x7d\x93\xd4\x15\xba\xbe\x1e\xdd\x31\x10\x73" "\x75\xfb\x64\xb1\x87\xbb\x9b\x59\xcf\x6d\xaf\x0b\x27\xfd\x4d\x93\x16" "\x56\xbc\x30\xb4\x6d\x73\x44\xa5\xa1\x0e\x54\xda\xff\x60\xf4\x5d\xdc" "\x51\xfb\xdb\x60\xbc\xf0\x41\x4f\x0b\x07\xac\xa8\x72\xb9\x5c\x1e\x6b" "\xfc\xe7\xb9\x32\xb0\x8e\x25\xd1\xeb\x12\x00\xbd\x91\xdf\xe8\xaf\xcd" "\x7f\x36\x9e\x8e\x81\xbb\x3f\x0e\x5e\xdd\xae\x3e\x57\x1d\x00\xa5\xf5" "\xbe\x9e\x2d\xd5\x41\x4f\x7f\x6d\xa0\x3a\xb0\x68\x7c\xdb\x4d\xb3\x11" "\x71\x6c\xee\x9f\xcf\xd3\x25\x56\xe4\x39\x04\x00\xc0\x42\xdf\xa7\xfd" "\x9f\xc7\xab\xfd\x8e\x85\xfd\xbf\x42\xdc\x59\x97\x6e\x47\x36\x37\x34" "\x94\xcd\xa5\xec\x8c\x88\xdb\x23\x62\x57\x44\xdc\x11\x51\x49\x7b\x57" "\x44\xdc\xfd\x3f\xf3\x1f\x5e\x14\x5f\xda\xff\x29\x5c\xe9\xa8\x62\x6d" "\x4a\xfb\x7f\x4f\x67\x73\x5b\xf9\x92\xe5\x9b\x27\x19\xea\xcb\x62\xdb" "\x2b\xf5\x1f\x48\x4e\x9c\x2a\x4d\x1c\xc8\xf6\xc9\xfe\x18\xd8\x9c\xc6" "\x0f\x2e\xfb\xed\x49\x54\x26\x81\xe2\xd7\x8f\x1b\xe5\x3f\x5c\xd7\xff" "\x4b\x97\x34\xff\xbc\x2f\x98\x95\xe3\x4a\xff\xe6\x85\x9f\x39\x5e\x9c" "\x2e\xde\x70\xc5\x33\x57\xdf\x8f\xd8\xd3\xbf\x5c\xfd\xb3\x09\xbc\x6c" "\x0e\x6b\x77\x44\xec\xe9\x30\x8f\x53\x8f\x7e\xbd\x77\xe1\x96\xbe\x5a" "\xa8\x75\xfd\x9b\x68\x3e\xcf\xd4\x96\xf2\x17\x11\x8f\x54\x8f\xff\x5c" "\x2c\xaa\x7f\x2e\x69\x3e\x3f\x39\x7a\x4b\x94\x26\x0e\x8c\xe6\x67\xc5" "\x52\x3f\xff\x72\xe9\xd5\x46\xf9\xdf\x50\xfd\xbb\x20\x3d\xfe\x5b\x96" "\x3d\xff\x6b\xf5\x1f\x4a\xea\xe7\x6b\xa7\x96\x7c\xc5\xa6\x56\x79\x5c" "\xfa\xe3\xc3\x86\x63\x9a\xe1\x88\x67\xa2\x83\xf3\x7f\x53\xf2\xfa\x82" "\xcc\xdf\x2d\x4e\x4f\x9f\x3b\x18\xb1\x29\x79\x69\xe9\xf6\xba\x07\xdc" "\x79\x3c\x4f\x9f\xd6\x7f\xff\xbe\xe5\xdb\xff\xce\xf8\x6f\x4f\xdc\x13" "\x11\xe9\x49\x7c\x6f\x44\xdc\x17\x11\xf7\x67\xc7\xee\x81\x88\x78\x30" "\x22\xf6\x35\xa9\xff\x8f\xcf\x3f\xf4\x56\x93\xfa\xf7\xf4\xf8\x47\x76" "\x85\x6a\xeb\xf8\xe7\xc7\xa1\x7a\x22\xd4\xce\x88\x56\x81\xbe\xd3\x3f" "\x7c\xd7\x28\xf3\xf6\xae\x7f\x87\x2b\xa1\xfd\xd9\x96\x76\xae\x7f\xed" "\x16\xb0\xc3\x7d\x06\x00\x00\x00\x6b\x4a\x21\x22\xb6\x45\x52\x18\xa9" "\x85\x0b\x85\x91\x91\xea\xff\xe1\xdf\x15\x5b\x0a\xa5\xc9\xa9\xe9\xc7" "\x4e\x4c\xbe\x73\xf6\x78\xf5\x1d\x81\xa1\x18\x28\xe4\x4f\xba\x06\xb3" "\x78\x64\xcf\x3f\x87\xaa\xf1\xca\xe8\x7b\xac\xb2\x8e\xb8\x90\x3d\x2f" "\x3d\x94\x3d\x37\xfe\xb4\xef\xd6\x4a\x7c\x64\x7c\xb2\x74\xbc\xd7\x95" "\x87\x0d\x6e\x6b\x83\xf6\x9f\xfa\xb3\xaf\xd7\xa5\x03\x56\x5c\x17\xe6" "\xd1\x80\x35\xaa\x59\xfb\xff\xf2\xc8\x4d\x2c\x08\x70\xd3\x75\x7e\xff" "\xd7\x73\x80\xb5\xae\x45\x2b\xf6\x83\x0d\xb0\x8e\xb9\x8b\xc3\xc6\xb5" "\x5c\xfb\xbf\xd0\x83\x72\x00\x37\x5f\xe3\xfb\xff\x84\xae\x01\xac\x73" "\xb5\x46\xfe\x49\x1b\x89\xeb\x5e\xf7\x5a\xfc\xf2\x26\xb0\xf6\xb8\xc9" "\xc3\xc6\xd5\xba\xfd\xbf\xb2\x52\xbf\x7f\x05\xf4\x4e\xfb\x6f\xf1\xaf" "\x96\x40\x92\x2c\xd8\x12\x5f\x45\x34\xff\x54\xd2\xfb\x32\x77\x10\xf8" "\x68\x75\x14\xa3\x71\x20\x0a\xab\xa2\x18\x1d\x07\x8a\xab\xa3\x18\xad" "\x02\x79\x43\x9d\x39\x7f\xba\xbf\xed\x5f\xb5\x98\x29\x5f\x28\x96\x4a" "\xbf\x7d\x7b\x23\xb9\xf7\xf6\xba\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x2d" "\xff\x06\x00\x00\xff\xff\xef\x70\xdf\x94", 1183); syz_mount_image( /*fs=*/0x20000800, /*dir=*/0x20000000, /*flags=MS_REC|MS_SYNCHRONOUS|MS_RELATIME|MS_MANDLOCK|0x80*/ 0x2040d0, /*opts=*/0x20000c40, /*chdir=*/0xfb, /*size=*/0x49f, /*img=*/0x20001440); break; case 1: memcpy((void*)0x20000040, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000040ul, /*flags=*/0x42ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd=", 3); sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x20002155, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x2000217e, "%020llu", (long long)0); memcpy((void*)0x20002192, ",group_id=", 10); sprintf((char*)0x2000219c, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000000ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20002140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000e280ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x2000e288; break; case 4: memcpy((void*)0x200002c0, "./file0/../file0/file0\000", 23); syscall(__NR_mknod, /*file=*/0x200002c0ul, /*mode=*/0ul, /*dev=*/0x700); break; case 5: *(uint32_t*)0x20000380 = 0x50; *(uint32_t*)0x20000384 = 0; *(uint64_t*)0x20000388 = r[1]; *(uint32_t*)0x20000390 = 7; *(uint32_t*)0x20000394 = 0x28; *(uint32_t*)0x20000398 = 0; *(uint32_t*)0x2000039c = 0; *(uint16_t*)0x200003a0 = 0; *(uint16_t*)0x200003a2 = 0; *(uint32_t*)0x200003a4 = 0; *(uint32_t*)0x200003a8 = 0; *(uint16_t*)0x200003ac = 0; *(uint16_t*)0x200003ae = 0; memset((void*)0x200003b0, 0, 32); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20000380ul, /*len=*/0x50ul); break; case 6: memcpy( (void*)0x20008280, "\x03\x68\x0f\x2a\x20\xda\x68\xab\x7a\x58\xc2\x8b\x63\x5d\x19\xc3\x2b" "\x6e\xfa\xbb\x6a\xe3\xb5\xee\xe5\xa7\x4d\x89\x43\xc6\x13\x53\x9e\x16" "\x6c\x8b\xae\xf5\x05\x00\x82\x43\x43\xa2\xf0\x50\x93\xa5\xc2\x1f\x74" "\x6c\xae\xfe\x9f\x9b\xcc\xd8\x3c\xca\x0f\xc2\x8d\xa2\x0e\x27\x06\x30" "\x8c\x61\x39\x8d\xfc\xe5\xf5\x4e\xa9\xf2\x66\x79\x1b\xa2\x9a\x4c\x7d" "\xa1\x58\x63\x7d\xef\x8b\x81\x6a\xa2\x96\x81\x5f\xf1\x3c\x06\xd6\x32" "\xdf\x45\xfe\xae\xc1\xfd\x27\x2e\xc1\xb5\x10\xea\xf5\x8f\xe6\xb2\x6c" "\xc3\x6d\xf3\xec\xc0\xf5\xb1\xf2\x58\xa1\x90\x30\x4e\x25\x19\xdd\x39" "\xba\x9f\x5b\xc1\x78\x89\x26\xce\xd5\x20\x2e\x3b\x1e\x3a\xfa\x16\xae" "\x0b\x5d\x66\xdc\x05\xb3\x6d\x3a\x00\xf7\x2e\x5f\x31\x8f\x8b\xdf\xc7" "\xed\xdc\x94\x23\x8c\x50\x03\x1d\x06\x57\xa2\x24\x45\xad\x0b\x3b\x90" "\xa8\x6b\x08\x6e\xed\x83\x7a\x00\xbf\x0a\x38\x88\xbf\x61\xb4\xdb\x57" "\xd6\xd8\xd6\xb2\x86\xbb\xb1\x3b\xa3\xb2\x46\xde\xf6\x0a\xc3\x42\x41" "\xeb\x84\x3f\x89\xfe\x77\xd7\xe3\xe5\x25\x73\xe9\x0d\x79\x1f\x21\xd4" "\xa8\xdf\xcc\x24\xba\x95\xdb\x60\xe2\x13\x56\x34\xc0\x2b\xd4\xb1\x45" "\x35\x28\x5d\xf4\xfb\xe3\x81\xec\x03\x6d\x87\x6c\x4c\x80\x57\xc7\x93" "\x71\xfa\x97\x17\x41\x45\x90\x89\x0e\x18\x2a\x7b\x9e\x0a\xb9\x27\x81" "\x20\x83\xac\xf0\xd0\x4e\x04\xc2\x0c\x05\x55\xc8\xce\xed\xc5\xbc\xf9" "\xb0\xe8\x14\xbe\x6e\xca\x98\xce\x7b\x2f\x9f\x17\xd0\x98\xbe\xa5\x41" "\xb7\x5a\x16\x17\xc0\x9f\xa9\x99\x02\xad\x74\x68\x11\xf8\x9a\x1f\xc5" "\xe6\xa8\x0d\x77\x52\x82\x47\xd6\xc1\x04\x39\x57\x15\xd2\xc9\xf9\x10" "\x2f\x07\x0a\x29\x5f\x20\xc4\x30\x7b\x9e\x84\x8d\x39\x28\xb5\x09\x85" "\xbf\xa2\x48\x68\x93\x13\x97\x61\x92\x5b\x8f\xab\x96\xd2\x62\x91\x24" "\x3d\xb2\x3c\x4f\xd4\xd9\x68\x64\xf4\xdb\x86\x07\x31\xa4\xe3\xe1\x0b" "\x52\xd8\xd0\x48\x7f\x5a\x85\x36\xcb\x45\x07\xdb\xdc\x11\x15\x70\xad" "\x03\x21\xb9\x18\xed\xbc\x52\x80\x7c\x2e\x06\x76\xd3\x25\x75\x53\x70" "\x2d\x9c\x1b\xd6\x74\x1e\x9c\xd5\xcd\xeb\x3b\x8f\x63\x6b\x6e\xb0\x2a" "\x3b\x00\x66\xd7\xf6\x77\xd5\x86\xde\x50\x18\x85\x00\x00\xf0\x00\xab" "\x39\x60\xf6\x65\x6f\xb9\x80\x39\xce\xb6\x40\x0d\x02\x99\xc3\x56\xfc" "\x22\xb7\x29\x8e\xd1\x57\xc6\x67\xbe\xd5\x56\x3f\xac\x21\x92\xa8\xff" "\x77\x06\xa9\xe5\x8d\x9d\x2f\x92\x63\x2d\x6b\x25\xd8\xb0\x90\x64\x2e" "\x3f\x32\x3b\xf7\xff\x4d\x82\x64\x61\x7a\x43\xa9\x70\x99\xdd\x73\x47" "\xfb\xe3\xb1\xc4\x39\x73\x79\x13\xf1\x7e\xff\x57\xf3\xe1\xff\x4f\xda" "\xc3\x74\xfb\x55\x4e\x9a\x6a\x1f\xf3\x2d\xaa\x69\x50\x76\x98\xd6\x60" "\xd8\xd5\xf5\x91\x80\x1d\x8e\x4a\x93\x09\x34\x2c\x3d\xc8\x49\x66\xdb" "\xfc\xd2\x65\x28\x00\x20\x0b\xcb\x0d\xde\x9d\x45\x6b\x7a\x07\xc5\x40" "\x9f\x4f\x53\x87\xd0\x15\x0d\xaa\x34\xdb\xc8\x65\xc6\x10\x8d\x34\xdc" "\xc5\x1e\xed\xb2\x77\xe9\x63\x8b\x43\xce\x3c\x9a\xfa\xc5\xd7\xaa\x0f" "\x85\x42\xe5\x8b\x0a\x84\x63\x2a\x07\x55\x7b\x04\x18\x45\xd0\x01\x2c" "\xf0\x16\xef\x06\x5f\x97\x66\x0b\x73\x1c\xe1\xb7\x94\x93\xde\x71\xde" "\xf0\x47\x27\x7a\x3a\xe6\xd4\xa0\xd8\x65\x91\x84\x7d\x34\x75\x92\x60" "\x39\x84\x8c\x5b\xaf\x6e\x1b\x43\xbc\x83\x05\x38\x55\x18\x24\x23\x15" "\x6e\x54\xca\xdc\x8c\x85\x08\x92\x65\xb4\x9d\xa8\x53\xd1\x5e\x5a\x70" "\x1f\xed\xf2\xbf\x79\x86\xa7\x23\xab\xf7\x2e\x51\x3f\xa0\x5c\xb1\x78" "\x34\x5f\x2f\xcc\x85\x9d\xf4\x9e\x74\xc8\xcc\xef\x19\x60\x00\xa0\x5c" "\xb0\x90\xf2\x29\x86\xff\xb6\xf8\xf7\x4a\xb4\x1d\x2d\x88\xb6\xb5\x35" "\x50\x7a\x23\xb0\x3d\x2f\xc2\x74\x3f\x6f\x69\xfb\xcd\x43\xb8\xff\x52" "\xb1\xba\x32\xfa\x01\x37\xd5\x42\xc5\x15\x56\x9b\x7f\x48\x6f\x8f\xfa" "\x02\xad\x1f\x54\x76\x7f\x51\x70\x1e\xb4\xc1\x41\x43\x77\x20\x88\x4d" "\x52\x9a\x57\xe1\x7b\xc2\x83\x77\x99\x12\x4f\x7f\x11\x2f\x42\xbd\x90" "\xf5\xb4\x35\xd7\xa5\xd7\x52\x4f\x76\x67\xbb\x7a\x62\x66\x26\x3e\x62" "\xbf\x7e\xbf\x68\x96\x88\x8d\x58\x4c\x65\xa5\x30\xb7\x66\x11\x1f\x07" "\x86\x30\xd8\x62\x9f\xfa\x91\xac\xb5\xed\x02\x49\x85\x49\xbd\x7e\x04" "\x2a\xca\xe0\xfa\xb7\xcc\xb2\x32\x78\x08\x8a\x36\x4b\xe3\xda\x96\x19" "\xd9\x1e\x10\x61\xbb\xaa\x9b\x33\xc3\xc5\xfb\xbc\xbc\x72\x5c\xe8\xc2" "\xcc\x9a\xb0\xf2\xb4\xd3\x00\x78\x04\x0d\x3c\xa7\x9d\x3c\xa0\x56\xc3" "\x60\x38\x1e\xe8\x7e\x74\x3d\xea\x73\xa2\x5e\xa2\xb4\x84\x3f\x9e\xf2" "\x80\xfe\xb5\x07\xf9\x33\xfb\x55\x6c\x71\x8d\x8b\xf8\xf8\x61\x8d\xb7" "\x28\x05\xb6\x5d\x38\x1b\x31\x9f\x65\xc7\x45\xc1\xe5\x06\x0d\xae\x2f" "\x49\x88\x52\xe7\x9a\xff\x8d\xd9\xc8\x8f\xd9\x39\xa3\x18\x71\xa4\x30" "\xd3\xba\x96\xfb\x11\x8c\x79\xd1\xb0\x8a\x39\x7a\xf2\x3b\x1a\x18\x8d" "\x18\x02\x10\x6f\x58\x8c\x76\x8a\x1e\x6c\x9d\x24\x4a\xc9\xa3\x8d\x2a" "\x54\xed\x50\xf1\x9b\x78\xbf\x25\xe0\xae\x1f\x93\x37\xce\xaa\x8f\xf5" "\xca\x86\x40\x10\x4b\x19\xbc\xd6\x43\xb5\x15\x01\xd4\xe0\x3e\xd5\xff" "\xb3\x83\xe7\xed\x0a\xb7\x8d\x54\x0a\xe1\x0b\xbd\x64\xfb\xa1\xaf\x59" "\xa4\x19\x02\x15\xb7\xd1\x02\x30\x99\x2b\xbb\x4f\xf6\x18\xd8\x28\x4a" "\x2e\x24\x46\x99\x05\x11\xfc\x2b\xff\x07\xcc\xe9\xba\x94\xa1\x1d\x3d" "\xb0\x41\xe2\x20\xe3\xd9\x31\xfd\xf1\x29\xd8\xec\x2c\x9b\x17\xd6\x58" "\x7a\x00\x44\xc9\xe0\x9f\x52\x84\x8d\xb4\x3d\xdc\x0d\xf9\x45\x13\xcc" "\x9e\x94\xe9\xd4\x27\x62\x35\x02\xa9\x10\xde\xea\x0f\x21\xd8\x6b\x16" "\x36\x67\x69\xa4\x6b\xf0\xd6\xd9\xfc\x0d\x2c\xd6\xb9\x8e\xd8\x85\xe9" "\xe2\xd7\x65\xbd\xd0\x51\x19\x6b\xf2\x0b\xd2\x7c\x46\xec\x90\x27\x26" "\xd9\x6d\xe3\x52\xc3\x46\xd9\x04\xfa\x00\xd6\x3b\x67\xd2\x72\xf1\x16" "\xdc\xe4\x89\xf9\xd6\x36\xce\xf6\x1b\x44\x1b\x9c\x11\x3a\xdd\xec\x98" "\x3b\x8b\x2f\xbd\xb2\xb3\x20\x49\xe4\x36\xc9\x72\xb2\xfc\xf5\x14\x0d" "\xc7\xb0\x94\xc5\x04\x7c\xb6\x22\x6d\xa7\x00\xb7\x2a\xeb\x3f\xeb\xdf" "\x16\xa7\x5b\x6f\x61\xa3\x11\xf6\x06\x25\x1c\x99\xb3\x77\xc7\x75\xc8" "\xfb\x34\x46\xcc\xf2\x5d\xc4\xcc\xa2\x42\x90\xb3\x93\x9f\x94\x80\x19" "\xb0\x5c\x80\xb5\xa6\x38\x21\x12\xf6\x3e\x09\x90\xb3\x24\xc1\x6a\x08" "\x7c\x72\xaa\xec\x08\x79\x6a\xfc\x76\x9f\x67\x8e\x36\x34\x10\x0a\x5a" "\x9d\xa8\x21\x5c\xb5\xd7\xa6\xa6\xb5\x0a\x81\x67\x6e\xf4\xed\xca\x35" "\x59\x5b\x11\xf9\x60\x6b\xef\x2f\xb8\x4f\xe1\xf0\xa0\x70\x3c\x88\x65" "\x79\xf0\x99\x86\x08\x6f\x0d\xca\x6e\xb8\x06\x1f\x9a\x74\xc7\x9c\x1f" "\x75\x86\x84\xa7\x36\x39\x74\xb1\x45\x61\xb9\xd2\xef\xda\xba\x6c\x4c" "\xd8\xcb\x70\x62\x7d\xa1\xe1\x95\xfc\xae\x3d\x8b\x2f\xa7\x51\x27\x8e" "\x8f\x22\x0c\x83\xe6\x77\xe1\x47\x31\xec\xcd\x6f\xe0\xc3\x57\xb0\x11" "\xed\x88\xb6\xdf\x0c\x26\x6b\x38\x3f\x22\x4b\x8e\x95\x38\x4e\x40\x1b" "\x71\x70\x30\xb1\x22\x75\x82\xd0\xd1\x04\x2b\xd9\x03\x77\xc4\xf2\xc7" "\x20\x6a\x19\x98\x3f\xc5\x90\x5e\x4e\xb8\x7e\xdb\x65\x32\xb2\x6c\xa9" "\xe2\x8e\x16\x02\x02\x60\x6d\x19\xd9\xf5\xda\x34\x76\x2f\x4b\x3f\xa8" "\x42\xd7\xbf\xf3\x82\xad\x70\xdc\xbc\x41\x1f\x8b\x3e\x4c\xac\xe8\xc8" "\xe0\xc7\x28\x98\xd2\x40\x23\x54\x5e\x0d\xfd\xc4\x17\x62\x09\x27\x6a" "\x53\x54\x91\xce\x11\xc0\x45\xc5\x7b\x45\xc4\x0f\x19\xb1\x2d\xcf\x6f" "\xfb\xf7\x8a\xb2\x3e\x7f\xe9\xbd\xc4\x04\xcf\x47\xdb\x98\x55\xf2\xb8" "\x35\xe1\xfc\xe5\x7d\xeb\xfa\x07\x18\x03\xec\x38\xda\x3c\x77\xa9\x04" "\x08\x0a\x4c\x73\x7c\xe2\xb2\x0e\x14\xe8\x44\x97\x62\xf1\xca\x0b\x1c" "\xe7\x17\x79\xd2\xe6\xee\x52\x99\xe1\xcf\x23\x0e\x80\x70\x04\x5c\x23" "\xc1\xd0\xe5\x2f\x66\xfe\x90\x39\xf9\x5c\xdc\x0b\x44\x8d\xc1\x2d\x24" "\xde\x39\x15\x79\x34\x27\x03\x45\x99\x19\x48\xfc\xe9\x21\xb5\xd8\xe7" "\x39\x31\x5c\xc7\x5d\x4b\x3b\x49\x92\x84\x37\xb8\x86\x72\xc1\xa7\x77" "\x03\x65\x20\x7b\x43\x89\x5f\x45\x90\x9d\x5d\x97\x2f\x48\xaa\x66\xde" "\x60\x91\x52\xa5\xaf\xa2\xc7\xd7\x5f\x0a\x14\x18\x9d\x04\x09\xf0\xb6" "\x23\xea\xb3\xb6\xe7\xd8\x10\x25\xcd\xe1\x40\x89\x3e\xd7\x1b\x6f\x24" "\xf5\xa3\x6d\x21\xda\xfb\x62\xaf\x6b\xe9\xda\x84\x54\x03\xbc\x8e\xd3" "\x66\x72\xef\xa7\x4d\x7d\xa1\x9d\x57\x94\xcb\x4b\x79\xfa\x1c\x86\x94" "\x0b\x18\x90\xc0\x12\xe1\x4b\x7c\x3b\xb2\x61\xf1\x6b\xdd\x99\xef\xaa" "\x98\x19\xb0\xbc\x00\xaf\x84\x2a\x6b\x94\xc6\x08\x6d\x15\xb1\x6a\xb8" "\x1a\xf9\x33\x1b\xa3\xa5\xbd\x69\x41\xef\x35\x23\x9e\x85\x45\x5c\xea" "\xb0\x2c\x59\x8c\xce\xe8\xfb\xad\x97\xed\x37\xda\xeb\xfe\x3b\x26\xa5" "\xa6\xc9\xed\xa5\xf6\x5a\x1c\xfa\xf7\xa1\xf1\x68\x82\x67\xc8\x12\xa5" "\x6c\x55\x2a\xe1\x1b\x46\x5d\xac\x03\x0e\x18\xf9\x00\x8a\xd0\x3c\xad" "\x80\xbf\x2c\xb9\x1a\x7d\x99\xdc\xfa\x54\xd3\x23\xae\x0a\x4c\x3a\x6d" "\xc0\xf8\x0d\x7f\xf7\x03\x87\x06\x10\xa9\x45\xeb\x0a\xb5\xb6\xd1\x4e" "\x81\x86\x9c\x88\x72\xf6\xb1\x23\xd9\x8e\xdc\xf6\xbb\xa1\x0d\x76\xd3" "\x5c\xff\x4b\x0b\xb7\x3d\xb8\xb6\x69\x5a\x83\x51\x78\x5b\xcb\xa1\xe1" "\x60\xa4\x2e\xd3\x67\xc4\xda\x72\x7d\xa3\x8f\x91\x56\x2e\x94\x1e\x5c" "\x4f\xa9\x0c\xd5\x85\xc5\xf1\xcd\x3a\x7d\x68\x92\xf1\x8a\x5a\xa3\xc7" "\x4a\x4f\xc0\x0b\xf5\x90\x92\x67\x48\x9b\x93\x7a\x92\x8d\x9d\x8f\xf9" "\x25\x30\xb5\x22\x6e\xed\xf8\xab\x9a\x95\x7e\x5f\xfe\xc4\x5b\xc3\xa5" "\x5e\x69\x55\xb3\x83\x93\xce\x52\x89\x26\x55\x26\x5d\x1f\x74\x1e\x0b" "\x74\x48\x08\xeb\x56\x8a\x08\xd1\x45\xa8\xbc\x5a\xda\x9b\x07\x9f\x6d" "\x0b\xec\x5f\xc2\xac\xe0\x50\x2b\x3f\x92\x63\x72\xdf\xf4\x94\x78\xfb" "\xd1\x04\x51\xf0\xde\x4b\x3d\x1a\x63\xb9\xd4\xe1\x7a\xde\x45\x62\x8d" "\x2e\x9d\xca\x04\x1f\xcf\x7f\xc1\xe1\x05\xe1\xfc\x44\x08\x9f\xde\x9c" "\xaf\x41\x8b\xa8\x45\x4d\xc3\x61\xdf\x4a\x59\xe1\xbd\x79\x14\x3d\x28" "\x06\x13\xe3\xc7\x9a\xd1\x8e\x92\x2a\x43\xe1\x99\xaa\x59\x27\xbb\x95" "\x53\xdd\x31\xe6\x22\x3a\xd1\x9b\xf8\xaf\xf6\xe1\xda\xc8\xb3\x68\x0f" "\xee\xa3\x13\x8b\xc6\x17\x42\xb0\x3f\x04\x7b\x3d\x77\x03\x9c\x1a\x4c" "\x2d\x05\xbd\x89\xc4\xbc\x12\xa1\xb8\x3d\x78\xb4\xe7\x02\x3f\x69\x0f" "\xce\x6a\x44\x60\x8c\x42\x3d\x8c\xbc\x2e\x80\x94\x2b\x9d\x9d\xf2\xf4" "\xbf\x56\x06\x64\x0f\xa4\x76\x92\xf3\xe0\x03\x88\x59\x83\xa7\x3e\x1d" "\xc3\x13\xb2\x43\xbb\xab\x5c\x3c\x63\x48\xaf\xab\x79\x6d\xa7\x66\x04" "\x4b\xa1\x42\xed\xa5\xa9\xd3\x71\x3e\x3e\xda\x8c\x54\xc1\x70\x89\x09" "\xc5\xda\x89\xba\x67\xd2\x9c\xd7\xf4\x09\xc9\xb7\x59\xcb\xa3\x16\xc4" "\x20\x28\x75\x4e\x3c\xb6\xea\xe2\xcc\x4f\x6d\x66\x98\x2f\x21\x23\x20" "\xf1\x99\xb2\xe8\x37\xbb\x4c\x54\xc5\x4b\xcd\xcd\x2a\xc2\x40\xef\x62" "\x95\xd3\x8e\x98\x89\xb4\x21\x38\x19\xef\x0f\x9a\xba\x6c\xee\xad\x4e" "\x0f\xd2\xc4\xbe\xcd\xc1\xf8\xee\x30\x49\x83\x19\x96\xc9\xa7\x4a\x5f" "\xd4\xe1\x2a\x1f\xd2\x1e\xd4\x7c\xf2\x7e\x29\xf9\xd6\x1e\x4b\x67\x3d" "\x88\x91\x4c\x36\xee\xfa\x53\xd3\xc4\x9d\x94\xb4\x63\xb7\xf8\x46\x2c" "\x19\x51\xdf\xe3\x3c\x10\x99\x3d\x5c\xfc\xd0\xed\xed\xd5\x0a\xd5\x50" "\x09\x52\x8f\x1e\x79\xfb\xc2\xfa\x70\xc3\x33\x8b\x32\xc4\x0a\xe3\xbb" "\x45\xd7\x07\x9c\x7a\xe8\x43\x3f\xb1\xaa\x19\xaf\xfb\xd3\xfb\xce\x0c" "\xb5\xab\x0d\x55\x7a\xfb\x3b\xe0\x36\x85\x60\x66\xee\xa4\x5c\x28\xe9" "\x35\x28\xb3\x54\x77\xfc\x97\xfe\x9f\xf3\x64\x1e\x5b\xb0\xf0\xe4\x60" "\x69\xeb\x65\x3c\x02\x7d\xaa\xbf\xf3\x85\x41\x25\x00\x81\xc7\x7e\x0e" "\x3a\x1d\x03\x0a\x73\x28\x9e\x77\x1c\xc4\x1d\xb1\x08\x19\xaf\x60\x59" "\x9b\x5d\xf0\xad\x97\x8f\xcf\x0b\x46\xaf\x82\x1c\x6b\x71\x7b\x26\x5e" "\x07\xd3\xa8\x53\x97\xea\x94\xde\x26\xf5\x10\x29\x0d\xdb\x5d\xf8\xfc" "\xff\x76\xfe\x62\x48\x43\xc8\x57\x78\x02\x80\x9c\x14\x59\x16\xaf\xce" "\x01\xd9\xdf\xdf\xa8\xbf\x07\x63\x3e\x98\xf1\x4f\xc7\x3d\x5e\xf5\x8a" "\xe5\xcb\x0c\x30\x8b\xc7\x4c\xa3\x82\x59\x69\x2a\x1c\xd4\xcf\x16\x75" "\x27\x86\xa1\xc8\x16\xf2\x46\x12\xc2\x73\x93\xd7\xe4\x0a\x2d\xf9\xa3" "\xdf\xa2\x3a\x0c\x59\x61\x3c\x8a\x7c\xcd\xd9\x7c\x3f\xc6\x7e\xca\xb9" "\x4d\xcd\x8c\xc4\xb4\x51\x7e\xd2\x41\x4d\x41\xce\x57\x40\x74\xff\xeb" "\xd1\x56\xe3\xd6\x5c\x44\x21\xb0\xf3\x39\xbc\x9f\x29\xab\xbf\xe4\x9d" "\xb6\x21\x22\x24\x8c\xf9\x6b\x74\xd9\x63\x9b\x3e\xf9\xd9\x35\xcd\x81" "\x31\x5a\x7e\xcf\xb0\xdc\x6e\xa1\xee\x05\x3c\x2e\x5c\x36\x15\xfb\xc1" "\x07\x82\xf1\x6a\x56\x4f\xca\xbe\x1d\xf7\x0d\xa7\xde\x98\x9e\x00\xee" "\xdc\x34\x6c\xef\x5b\x5c\xf8\x80\xe9\xd5\x63\xfc\x15\x30\x2f\x05\x6d" "\x37\xf9\x8a\x93\x9f\xd1\xdd\x54\x78\xb4\x31\x8c\x25\x6e\x93\xb7\x7e" "\x31\xf8\x7d\x8f\x7f\xe3\x17\x55\x19\x1b\x40\xd7\x78\xdd\xb2\xad\xa1" "\x48\x0b\xb9\xfc\xb9\x6a\x09\x78\x3f\xcf\x2c\x2c\x9f\xac\x2c\x3a\x27" "\x71\xdd\x0e\x2f\xb1\x13\xcd\x46\x0e\xe2\xc9\xcf\x4a\x71\x2f\x04\xeb" "\x1b\x1a\x74\x60\x91\x10\x9f\x7c\xe0\x65\x5e\x1f\xf7\x78\x1f\xbe\x85" "\x3e\x3d\x03\xbb\x91\xc9\xd8\xf4\xf4\x16\xf5\x74\x5c\x6b\x60\x7b\xbf" "\x72\x78\x6b\xd3\xc0\xac\x47\x61\xe6\xe6\xd7\x0f\x12\xdb\xef\xa1\xb1" "\x35\x42\x08\x6f\x79\x3b\x72\xc6\x10\x2a\xc0\x6e\x75\xbe\x17\xbd\xbb" "\x1e\xfb\xf7\xe0\x07\xf0\x7f\x9b\xd4\x33\xfd\x9d\x9c\xbf\x93\xe7\x60" "\x75\x7b\x79\x2f\x15\x23\x18\x95\x56\x1f\xe4\x9d\x9d\x68\x3c\xcc\x06" "\x6f\x38\xaf\x58\x14\x22\xb7\x17\x02\x62\x71\x62\xc0\xf0\xf3\x5c\x36" "\xa6\x1e\xaa\xa9\x21\x29\x11\x4b\x73\x34\x28\x1e\x35\xfd\x39\x57\x6e" "\x51\xd8\x59\x3c\x14\x9c\x93\x26\xe0\xc7\x10\xea\x4d\xcc\x9e\xf3\x9a" "\x43\x2a\x48\xae\x18\x34\xf5\x04\x6b\x95\x4f\x9c\x03\x3d\x60\x35\xcd" "\xe0\xdb\xff\xe3\xe9\x7f\x48\xa1\xdc\x69\x5f\x4b\x2f\x6f\xe5\xd4\xee" "\xe8\x30\x08\x31\x8d\xef\x10\x5c\x37\xe1\x1c\x90\x15\x67\x0f\x13\x41" "\x7e\xd0\x36\xe6\x8f\x6f\xbf\xca\x2a\x82\x89\x82\x96\x77\xfe\xb2\x30" "\x79\xf3\xf2\xee\x53\xb2\x6e\x49\x19\x24\xfe\xfc\x1c\x50\xe5\x4f\x28" "\x8a\x8c\x4b\x6b\xa6\xd3\x19\x05\x4c\x3a\x9e\x39\xe1\x4b\xba\x81\xb4" "\x23\xac\xbd\x44\xb5\x12\x79\xbb\xea\x6b\x0b\xb2\x04\x73\x25\x83\x7c" "\xe8\xb2\x19\x14\x54\xf5\x2f\xfa\x2c\xd0\x4a\xbe\x89\xe3\xde\x5b\xc1" "\x02\xe9\xfd\xf7\x40\xd3\xef\xd9\x75\xbc\x95\x03\xaf\x79\x6e\x6a\xee" "\xe7\x11\xef\x87\x97\xde\x5d\x50\x7a\x96\x47\x30\xaa\x70\xcb\x9d\x38" "\x40\x05\x4d\x4e\x1f\xfc\x57\xde\x37\x8b\x51\x1f\x76\x49\x66\x6a\x54" "\xa6\xb3\xd9\x1e\xd5\x17\x19\x8d\x76\x32\x2b\xf9\x9d\x13\xbe\xf5\x30" "\xa4\x3e\xd3\xf1\x31\x96\xbf\x2d\xef\x6d\xcf\xb3\x9f\x76\x47\x1c\x75" "\xc5\x77\x9b\xed\xf1\x05\x71\x7e\x54\x60\x57\xfb\x47\x8b\xfd\x24\xe8" "\xfd\xf3\xc1\x2d\x02\x8b\x54\x2d\x1f\x42\x4a\x9d\x45\xbb\x9e\x02\x6e" "\x60\x98\xeb\x1c\xb0\xa7\x73\x78\x30\x0e\xc1\xb4\xc9\xf0\x06\xaa\x4d" "\xfb\x7f\xb5\xc5\x7c\xf1\xb0\x35\xcb\xe9\x60\x09\xea\xd1\xca\x25\xea" "\x1e\x5f\xae\x40\x31\x2a\x4e\x9f\xe2\x50\x68\x4a\x1c\x86\x53\xbb\x30" "\x32\x09\xe0\xfc\x6a\x49\x8f\x3a\x08\xf6\xc5\xb9\x46\x37\x8a\x34\x9f" "\x3a\xea\x45\x10\x4a\x2b\xad\xb8\xa4\x5f\x50\x0b\xb4\xf0\xf6\xcd\x62" "\x0c\xe7\x94\xe0\xf3\x90\xe1\xcb\x7f\x2f\x1f\xc0\x03\x9f\x42\x50\xa5" "\x77\x54\x4a\x68\x62\xb4\x7b\xf8\x9e\xea\x3a\x8c\x15\x16\xb7\xa9\xdd" "\x11\x1c\x2c\xa7\x19\x19\x0e\x8f\xeb\x1a\x70\x79\xe9\xfd\xfd\xb8\x22" "\x4d\xc5\x07\x91\xc9\x86\x82\x54\x69\xc0\x87\xc8\xf0\x81\x61\x6e\xda" "\xa4\x19\x3e\x16\x12\x81\xaa\x68\xb7\x28\x6a\x36\x4c\xbb\x33\x6b\x24" "\x59\xf0\x89\x2e\x57\xc4\x0a\xfc\xfd\xa7\xd1\x6e\xa1\x87\x7e\xfb\x4e" "\x4b\x0d\x4b\x5c\x31\xe8\xcb\xa1\x50\x66\x90\x3d\x3a\x91\xbd\xc7\xfb" "\x64\x45\x2f\xb9\x84\x34\x36\x11\x05\x96\xf0\xb0\x38\xda\x16\x7a\x86" "\xf9\x7d\x32\xc8\x07\x27\x0a\x1c\x99\x4f\xe8\x8e\x25\x17\xe1\x1b\xdd" "\x21\x0d\xd9\x82\xd3\xc8\x15\x84\x59\x44\x01\x08\x30\x8a\x93\x6c\x9d" "\x23\x70\xb9\xd1\x57\xc3\xf9\xca\xec\x36\xff\x05\xbc\x40\xb3\x7f\x09" "\x5e\xdf\x33\xbf\x4f\xad\x44\x0f\x38\xc3\xf5\x21\x29\x45\x69\x36\xc0" "\x70\x14\x14\x0b\xe5\x61\x8f\x4e\x9d\x07\xb6\x66\x79\x23\x80\x23\x39" "\x0c\xd6\x76\xb1\xa3\xa2\x8d\x0e\x90\xd5\xad\x9e\xf1\x3a\x31\xfc\xdc" "\x5a\x43\x54\x54\x30\x93\x67\xc4\x37\x42\x4e\x34\x0a\x1f\x91\xc6\x48" "\x3b\xce\x10\x26\xd8\x5a\x16\xfb\x85\x42\x52\xea\x4e\xde\x39\xa4\xe6" "\x97\x02\xec\xff\x76\x43\x2d\xe5\x08\xe0\x64\xed\xa0\xdf\x9f\x26\x3a" "\x25\xc0\xf6\x26\xd1\xc1\xff\xaa\x67\x83\xbe\x29\x75\x45\x1e\xe9\x36" "\xcc\x21\x78\x64\x89\x35\xa9\x24\xf6\xfb\x2d\xb2\xf8\xba\x34\xe3\x48" "\x92\x0d\x90\x31\x14\x52\x09\x18\xcc\x68\x72\xb8\x42\xe3\x74\x4f\xc1" "\x8d\x13\x63\x58\x3a\x10\x7e\xc7\xb8\x9c\x77\x92\xc0\xd8\x06\x9e\x12" "\xf8\x73\xf6\xd6\x68\xf6\xfd\xeb\x47\xb7\x29\x86\x91\x4e\x45\xc2\xb0" "\x61\xc5\xc9\x36\xc7\x3c\x9b\xcf\x14\x75\xea\x0d\x25\xed\xaa\xd2\x1c" "\xf1\x93\x40\x5c\x8a\xce\xf3\xbf\xf4\xe4\xf1\xb2\xb3\x21\xd7\x0d\xba" "\x59\xe8\x56\xa8\x84\x9c\x2b\xba\x95\x08\xba\xd7\x75\x37\x06\x69\xb2" "\xbb\x7f\x5e\x53\x18\x1a\xf8\xbf\xf5\x25\xe1\x3a\x49\x35\xd7\xe2\x8b" "\x99\x7b\x4f\xf1\x5d\xa9\xe3\x6f\x13\x53\xa1\x54\xab\x70\x1a\xd1\x54" "\x20\x78\x6d\xaa\xf2\x7b\xa7\xe1\x22\xf7\xb8\x25\xc6\x68\x18\x5b\x68" "\x56\x30\x42\x03\x78\xb4\x14\x2e\xc4\xe4\x24\x2c\x2c\xf0\xbf\x6e\x14" "\x3f\x7e\x55\xcb\x12\xfb\x9d\xd5\x9a\x8d\xf9\x95\x9c\xe4\xfc\x5f\xff" "\x68\xae\x71\x74\x97\x7a\x31\xad\x7f\xd6\x44\xbc\x94\xa2\x0b\xae\x76" "\xf0\xaf\x47\x40\x34\x99\x0f\xdf\xec\x8c\xec\xa0\xe6\xcd\x93\xfe\x21" "\xd8\x48\x37\xb7\xe9\xd7\x4c\x17\xb6\xd3\x05\x4f\x0c\x00\x8e\xe0\x57" "\x64\x74\x5f\xd8\x77\x3a\x0c\x1c\x31\xbb\x3e\xef\x5b\x7e\x26\x1b\x54" "\x80\x5b\x5c\x80\x5a\x4e\xee\xf0\x5c\x81\x2f\xcd\xed\xe2\x00\x44\x2e" "\x73\x40\xc6\x34\x90\x64\x5e\xbd\x09\xc2\x35\xd5\xc5\x2a\x78\x55\x42" "\x52\x6e\xdf\xe3\x87\x5a\xd0\x82\x67\xfa\xed\x1d\x0a\x15\x23\x6f\x00" "\xc6\x73\x6b\x94\xc1\xa3\x82\x13\x02\xff\x61\x06\x97\xad\x7b\xec\xdb" "\xc9\x6f\x54\xb5\x51\x38\xb5\x85\xcd\x12\x2e\x0d\x5a\xea\xf4\x3c\x9b" "\xa3\x73\xe8\xaa\x1c\x12\x97\xe3\x41\x55\x52\xcc\x57\xcd\x60\xee\x1f" "\x3c\x04\x50\x0e\xd0\xee\xd3\x77\x75\xc8\x73\xde\x30\x66\xc0\x34\xc1" "\x76\xc6\x7c\x5b\xfb\xe9\x89\x9a\x47\x73\x20\x30\x85\x57\x81\x34\x13" "\x74\x64\x1d\xa0\x58\xee\xe6\x1d\x01\xd1\x1b\x9d\xb8\xf1\x9f\xd4\x55" "\x89\x57\x89\x73\x40\xe3\x2c\xdf\xbc\x39\x71\x3f\x1f\x43\x9b\xe0\x63" "\x8f\x61\x4c\xdb\x53\x61\x43\x3a\x45\xa6\xff\x02\x4e\x39\xc9\x41\x41" "\xdc\x54\x03\xaf\x10\x14\x04\xce\x5f\x2e\xfa\x97\xb9\x0d\x9e\xcd\xb7" "\xc3\x61\x78\x5d\xab\x97\x7f\xed\xed\x32\x55\x4d\x1a\x74\xd5\xcb\xfe" "\x24\x35\xbe\x7f\x03\x29\xba\x38\x24\x55\xc2\xac\x11\xfb\xe2\x9f\xe3" "\x82\x67\x96\xd4\xbe\xa0\x3d\xc5\x3a\x37\xf6\x3f\x5b\xe2\x77\x3f\x83" "\xfa\xf2\x82\xf0\xae\x24\xd9\xfe\x57\x62\xb7\x1b\x49\x9f\xd3\x7b\x4c" "\xe7\xe7\x1f\x93\xc3\xa9\x83\xf8\x0f\xed\x47\x77\x08\xbb\xf2\x26\x1c" "\x89\x89\x3c\x4b\x76\xe3\x4f\xac\x9b\x42\x67\x1b\x6c\xc8\x16\x78\xcc" "\x86\x7f\x53\xe8\xc3\xec\x47\x71\x62\x06\x21\x27\x43\xca\x0c\x49\x41" "\xc2\xc6\x1e\xd3\x17\x7f\xcc\xf8\x59\x21\xe9\x98\xd2\xb8\x26\xdf\x75" "\x11\x73\x94\x4b\xb0\x7e\xea\xae\x40\x01\xf6\x77\xa0\x68\x7a\x25\x50" "\xee\xac\x8b\xb5\x12\x8e\xca\xd9\xc7\xb6\xa5\x14\x59\x6a\x30\xb8\x29" "\x2f\xba\xcc\x09\xab\x48\x81\x93\x50\x7b\x67\x85\xd7\xa3\x5c\x97\x9d" "\xb7\x74\xb2\xc4\x13\x24\x6f\x1a\xe8\x8d\x35\xd1\x91\x4b\x20\xb8\xfb" "\x50\x10\x34\x32\x16\x42\xfb\x0b\x0b\xab\xa3\x37\x8e\x4c\x31\xfb\x5e" "\x24\x7c\x17\x7e\x57\x32\x95\xdf\x01\x94\x46\x2b\x99\x07\x9a\x43\x64" "\x00\xba\x1b\xe2\xe3\x0d\x39\xb8\x71\x4c\x0f\xb2\xbd\xcd\x98\x1d\x5a" "\x5c\xd5\x14\xf8\xd4\xf1\x4e\x4e\x04\x37\x10\x86\x30\x35\x5d\x8f\x2b" "\x60\xa6\xd1\x8c\xb1\x4c\xeb\x2b\x5d\x07\x04\xaa\x6e\x93\xe1\x80\xbd" "\x79\xcb\x17\xe1\x76\xbc\x4f\x81\xa0\x3d\xb1\x2a\x03\x41\x3d\xe6\x18" "\x98\x96\x95\x5b\xb9\xe3\xcc\x69\xb6\xf9\xa5\x0a\x7e\xda\x37\x42\x52" "\x7f\x98\xc7\x1d\x7e\xa8\xba\x75\xe2\x53\xc2\xb7\x83\xf7\x10\x48\x13" "\xc6\x19\x94\x9e\x6a\x07\x65\x17\x9b\x1b\x9c\xbe\x68\xb7\x03\x33\x5a" "\xb5\x98\x69\x28\xd8\x63\x84\x35\x7a\x2f\x41\x89\xf4\xb4\xff\xcd\x61" "\xa3\xd2\x97\x09\xbb\xc9\x3b\x53\x71\xf0\xe7\x79\x8c\xb7\x2a\xe4\xc1" "\x7b\xce\xe2\x4f\x8e\x56\x6f\x27\x77\x80\x3c\x3d\x18\x2d\x15\xa6\x3a" "\xc4\x00\x63\xf0\xcc\xdf\x4b\xd7\x90\x40\x45\x24\xea\xe0\x2e\xaf\xb6" "\xb5\x4c\x69\x95\x78\x48\x64\x90\x03\x3f\x0b\xe8\x66\xc7\x4a\x13\x40" "\x83\x00\x3d\x33\x04\x98\x65\x8b\xa9\x73\xea\x67\x4c\x4a\x0f\xf1\x58" "\x40\x39\x87\xb4\xc4\x75\x2b\x07\xc8\x63\x7a\x11\x9b\x01\x9f\xd5\x09" "\x34\x06\x96\x01\x44\x44\x50\x56\xf6\xff\xe7\x3e\xda\x02\x35\xdc\x18" "\x71\xbb\x60\x58\xd4\xa9\xfe\xec\xac\x62\x82\x65\x68\x9d\x58\xa8\x14" "\x53\xd3\x32\x90\xab\x56\xeb\x69\x1f\x31\x80\xd0\x28\x84\x49\xf4\x18" "\x44\xe5\x6f\x5c\x6c\xf5\x22\xd4\xa5\x86\x6b\x24\xfb\x95\x52\xfd\xe7" "\x19\x46\xc4\xd2\x5d\xcc\xea\xa4\x1c\xfd\xdb\x5a\x33\xc5\x1c\x54\xc0" "\xa0\xa5\xab\xd3\x1b\xe8\xfb\x6e\xc5\x3c\x1d\x14\xba\x64\x8e\x18\x39" "\x79\xdb\xd0\xdb\x01\xb9\xe5\x1b\xa3\x80\x3b\xe7\xe7\xd3\xde\xe7\x52" "\x66\x83\x67\x26\x4c\x78\x3f\x74\x83\x81\x21\x79\x7a\xe5\x70\x6e\xf3" "\xaa\x46\x06\x82\xd1\xbf\x55\x80\x8c\x70\xe6\x9a\xe2\x9d\x76\x83\x36" "\x84\x70\xd0\x8e\x7e\x9a\x10\x95\x30\x5d\xce\x25\x0b\x5b\x4b\xd4\x8c" "\x02\xe0\x98\xd2\x41\xb1\x08\x97\x36\xe8\x30\x6a\x73\x7e\x3a\x1a\x93" "\xe5\x54\xcc\x3a\xb2\x46\x72\xb8\xc7\x4b\xfb\x88\x25\x00\x4c\xa8\x69" "\xe3\x47\xf8\x73\xde\x14\x57\x54\x93\x83\x66\x62\xad\x74\x1d\x79\x26" "\x99\x04\xf9\x05\xd7\xdf\x64\xd0\x58\x1a\xb8\xd7\x6e\xe5\x1a\x32\xd7" "\x2c\xcb\x71\x9f\x3a\x25\xc0\xa8\x56\xb5\xbd\x2b\x2a\x12\x69\xe2\x08" "\xd7\x0c\x32\xe1\xd5\xad\x0d\xfd\xc0\xef\x43\xf0\x23\x0e\x95\xeb\x85" "\x87\x1e\xb4\xd6\x03\x3a\xbb\xf0\xbe\x70\x25\x38\x2d\x87\x8e\xea\xee" "\xa7\x3c\x94\x27\x0e\x79\xbd\x57\x57\xdc\x1b\xac\x95\x23\x6a\x62\x54" "\x5c\xd4\x67\x83\x0b\x12\xdc\xc3\x0d\x7c\xc8\x1e\x88\x9d\x36\x0d\x07" "\x3d\xb4\x00\x58\xe9\xa1\xc7\xb4\x1f\xc5\x3e\x67\x74\x0b\xc9\x84\x13" "\x2a\x14\x52\xcf\x7d\x00\x03\x78\xf1\x4e\xf9\x3a\x7e\xb0\xdc\x9b\xac" "\xf2\x35\x84\xad\x67\x61\x13\x95\x76\x60\x7f\x82\x14\x75\x7f\x71\xfc" "\x47\xb2\x94\x41\x27\x11\x6c\xa3\xe8\x3b\x9d\x96\x43\xbc\xe8\xd7\xbb" "\x44\xb4\xd1\x6b\x5d\x5c\xff\x70\xa9\xe1\x11\x4c\xd9\x20\xb6\xfc\x1f" "\x40\x96\x72\x64\x8a\xd5\x6a\xc3\x13\x6e\xf0\xa3\x14\xad\xb4\x58\xfa" "\xf3\xd3\xf1\x71\xcb\x2f\xc5\x13\xd7\x6e\x43\xe6\xbd\xa2\xf1\xa6\x8e" "\x6f\xcf\x4a\x4e\xcb\xe6\xbc\x87\x71\x6e\x2a\x82\xea\x0c\x46\x57\x98" "\x3c\xa0\xca\xaf\x8d\x75\xfd\xf5\xb0\xd7\x93\x0e\x4f\x3e\x95\xeb\x12" "\x71\x48\x5f\x93\x8e\x7a\xd2\xbf\x0c\x97\xb7\xc1\x17\x45\xde\x45\x51" "\x8a\x1e\x3a\x74\x34\x19\x68\x58\x85\x58\xe7\x19\x7b\x40\x7d\x24\xed" "\xa0\x67\x1e\xe2\x8f\x21\x9e\x4c\x5f\x80\x9a\x7e\xa6\xf9\xf5\xb9\x70" "\x5f\x46\x34\xa9\x61\x12\xeb\x26\x2b\xd5\x96\x7d\xb5\x23\x72\x85\xb8" "\x65\xd3\xf6\x45\x16\x49\x5e\xa6\xd1\xec\x20\xdb\xed\x7a\xf0\x23\x62" "\x37\x0b\xcc\x98\x67\x1a\x61\x24\x1f\xa1\xef\x5b\x30\x95\x60\x9d\x66" "\xec\xc1\x60\x10\xf6\xf6\x7a\x28\x0d\x1c\x6d\x21\x5e\xc2\x24\xea\xd1" "\x7d\x68\xbb\xc9\xbc\x64\xb3\x63\xb5\xbe\x9b\x47\x9b\x7a\xa2\xcb\xc8" "\x58\x7a\x6b\x48\xcf\x65\x3f\xde\x7a\x26\x2a\x11\xab\x3a\x10\x35\x6f" "\x55\xf1\x22\x31\x0f\xea\xc7\x7c\x32\xce\x09\x94\xd6\xe8\xa7\x0f\x1c" "\x53\x33\x1c\xb4\x73\xa8\xe2\x94\x27\x32\x2f\xb6\xda\x29\x2c\x44\x43" "\xb1\x67\x88\x77\xf1\xc9\x81\xfa\x05\xfb\xde\xf9\x65\x20\xe5\x89\x5a" "\xeb\x2a\x3a\x8e\x62\x65\x2f\x9d\x88\x30\xc3\xb1\x44\xb9\x59\x88\x73" "\xe2\xef\x41\xb7\xad\xe9\x43\x80\x77\x66\x87\x7d\x60\x99\x72\xcc\xa7" "\x48\x55\xea\xed\xce\x07\xcd\xa3\x5b\x50\x55\x7d\xe9\x6e\x73\x6c\xa3" "\x10\x7c\x15\x4d\x31\xae\xee\x78\xdb\x21\x46\x87\xb9\x96\x45\x17\xbc" "\xd2\xc6\xc9\xec\x04\x75\x14\xb4\x5c\x83\x1a\xee\x45\x88\x16\x6d\xc3" "\xec\x9a\xb3\x6b\xd1\x03\x3e\x74\xb3\xd0\x2d\x73\x1c\x5b\xd8\x4f\x65" "\x9f\xa9\xfe\x55\xca\xc0\x8c\x12\xcb\x99\x9a\x2e\x64\xfa\xc5\x2f\x6c" "\xb7\xd1\xff\xfb\xf4\x5d\x9a\x11\x26\x78\x7d\x00\x60\xfd\x1b\xe5\x63" "\xcc\xbc\x27\x8a\xc9\x7d\xab\x0c\x1b\xee\x66\x46\x75\xf2\x73\xf5\xfa" "\x42\x9b\xdc\x24\xb2\x1f\xf1\xcf\x0a\x3a\xd3\xc6\x87\xfb\x07\xff\xd8" "\x8b\xad\x6a\xb6\xc6\xb4\x22\xa4\x3b\x77\xff\x76\xf9\x6b\xf4\x05\xc0" "\x7f\x8a\x66\x7b\xb8\xff\x54\xd6\x71\x4a\xaa\x21\xce\xba\x2e\x78\xce" "\x03\x14\x6b\x2a\xb9\xf4\x9e\x6d\x65\x08\x11\x19\xb8\xe7\xcf\x38\x43" "\xe9\x13\x49\x79\x0d\x2b\x97\x5c\x9f\x9c\x30\x5d\xf0\xab\x4f\x2b\x1b" "\x2f\x30\xf6\x29\x31\x3c\xc6\x6a\x32\x5e\x40\x37\xf3\x8f\x29\x84\x2e" "\xe5\x78\x1b\xa7\x3d\x2f\x30\xf5\x06\xcf\x7f\xf2\x23\x7a\x72\xb4\x07" "\x5a\xef\xa3\x2c\xdd\x5b\xa0\xae\x4e\x65\xcb\x6f\xa4\x7a\x3e\x06\xf0" "\xd5\xf6\x84\xb7\x17\x2d\x6b\x58\xf5\xf7\xd7\x83\xc4\x12\x2d\xb4\xf4" "\xb8\xb4\xf9\xd3\x29\x6c\x9d\x11\x5f\x43\x27\x10\xc2\x9d\x40\xdf\xca" "\x00\x10\xec\xbe\x2f\x42\xfa\xc8\x99\x91\x1d\x65\xc8\x4f\x08\xaa\xa1" "\x92\x3c\x8a\xdd\x5a\xf5\x18\x28\x62\x11\xdb\x14\xe1\x18\x7a\x88\x39" "\xf3\xb2\xae\x8b\xd9\x14\xea\xfc\x16\xa5\x76\xbb\xe3\xeb\xa6\x27\x1a" "\x4c\x5b\x31\x70\xc3\xf5\x43\x76\x1f\x11\xf1\x32\x6a\x05\xc5\x75\xbd" "\xe1\xb5\xc6\xaf\xd3\x87\x6b\xea\x4f\xbb\x64\x90\x71\xa9\x5c\xaf\x74" "\xde\x9f\x7b\x34\x21\x80\x3e\xc3\x51\xf9\x34\xb8\xd0\x93\x2c\xe7\x2a" "\x13\xab\xf3\x62\x7d\x9a\x39\x6c\x10\x87\x5f\xc1\x67\xef\x1a\xe9\x8f" "\xf9\x2a\xf9\xca\x36\x60\x33\xc9\x9d\x30\x30\x6f\xd5\x40\xa0\x9d\x67" "\xd2\x6a\xb1\x92\x50\x4e\x7c\x09\xf9\xe4\xd0\x62\x87\xa2\xb1\x74\x8f" "\x17\x61\xba\x3c\x16\xd9\xd0\x8b\xe7\x56\x2b\x73\x51\xc4\xb4\x67\x9f" "\x5d\x4b\x38\x68\x1b\xfd\x86\xc7\xf2\x00\x3a\x97\x49\xb2\x0b\x60\x21" "\x12\xa9\x58\x03\x46\x9f\x5d\x25\x2c\x56\x49\x12\xb5\x5c\x4b\xf3\x40" "\x92\x98\xdb\xd0\x66\xd8\x77\xcc\x70\xa8\x9b\x48\x4b\x9e\xe6\xbb\x83" "\x6c\x9a\xcd\x1e\x53\x08\x6c\x4b\xe8\x5e\x9a\x3b\xc5\x96\x9c\x70\x16" "\xdb\x9c\x72\xb6\x86\x20\xc2\x41\x40\x9d\x06\xf4\xd7\xf7\x2f\xe2\x28" "\x9c\x9b\x49\x21\x05\x59\x22\x78\x3b\x8b\x88\x6b\xc2\x29\x26\xb7\xd1" "\x94\x82\x0a\xf2\xb9\x0e\x3c\x60\xe8\x7e\x1a\x78\x51\xf3\x8a\x97\x0c" "\x07\xc1\xda\x12\x0d\x1d\xa7\x5d\xe2\xbb\x99\x4f\xf7\xd0\x5a\x31\x35" "\x22\x37\x33\x26\xf1\x60\x91\x4a\x04\x00\x71\x1e\x04\x39\xd6\x94\xf5" "\x22\x1a\xfe\x8c\xc1\x18\x72\x2c\xe4\x92\x7e\x95\x43\xe6\x1a\x12\xa7" "\x6b\xcf\x2d\xa1\xd0\x1a\x0f\x25\x80\x95\xd3\x20\x63\x38\x73\x49\xb4" "\xe9\xf2\x53\xd8\xb7\x3c\x6e\x83\x4b\x68\x66\xf8\xa5\x6b\x47\x97\xb9" "\x2d\x52\x1f\xa7\x32\xaa\x0d\x55\xc8\xe9\xd6\xc5\x60\x11\xee\x6f\xb4" "\x50\x85\x3d\xc5\x64\xd1\x8e\x97\xc4\x63\x60\x9c\x27\xa6\x3f\x9c\x91" "\xc4\x6d\x7b\xd8\x0a\xce\x4e\xdc\x06\x15\xca\x34\x2f\x43\xca\x3b\x3d" "\x0c\xc3\x6e\xd5\x2b\x7d\x1f\x45\x7e\x5b\x4b\x26\xb5\xec\xa0\xd9\x1a" "\xbe\x4f\x1a\x42\xa2\xee\xc4\x0e\xc2\xfa\xff\x12\x22\xf7\x1d\xc2\x26" "\xd6\x34\x4e\x94\x7b\x45\x15\x56\x91\x20\x5c\x09\x91\x3f\xc3\xc6\xab" "\x3f\xe7\x6f\x4d\x1b\x11\xfa\x45\x86\x9e\x20\x69\x4b\x5f\x0a\x10\x74" "\x78\x0a\x07\x33\x27\x64\x21\x25\x33\xb7\x97\xdd\x24\xd8\xdf\x15\x7d" "\x41\x72\xf9\x12\x53\xb7\x7e\xb2\xec\x90\xc8\x22\x23\x07\xed\x59\x13" "\x64\x63\x05\x7b\x7f\x46\x91\x16\x08\x64\x10\xb7\x50\x3b\x44\xce\xf4" "\x01\xc4\x78\x11\xc1\x39\x00\x60\xda\x5b\x33\x21\xd3\x40\x96\xb6\x74" "\x68\xa7\x70\x29\x78\xd9\x8d\x4b\xd7\x21\xc1\x8a\x25\xed\x54\x12\x49" "\x63\x8e\x90\x28\x1d\xc8\xe3\x56\x5d\xc3\x3e\x66\xd7\xb8\x32\xa9\xbd" "\x62\xc0\x2c\x5e\xd0\xe9\x29\x35\xc9\x24\x72\x49\x96\x53\xd2\xd8\x42" "\xea\x66\x97\xc7\x33\xee\x80\xd7\x75\x88\x40\x74\xb3\xa0\xc2\x50\xa4" "\xaa\x02\x1b\xb6\xea\x93\x51\x4f\x9c\xc5\xf0\x9f\xeb\x57\x19\xd2\x70" "\xcd\x18\x4e\x36\x4c\xa9\x66\xf1\x41\x6e\x10\xf1\x11\xbc\x42\x5f\x32" "\xa9\x93\xfc\x5c\xd7\x55\x03\xf9\x9d\x89\xd9\x1d\x7d\xdc\x6d\xee\x70" "\x19\x30\x57\xcb\x94\x6e\x5f\xbf\x86\x63\xc5\x3e\x12\xce\xbf\xfe\x5d" "\xbd\x4a\x86\xbf\xcf\x5f\x35\xf0\xd8\xaa\x43\x76\x3a\x60\xe0\x03\x56" "\xb4\xf8\xbc\x2b\xca\x01\xb0\x2c\xfd\xdd\xe3\x8f\x0c\x4d\xf1\xe7\xf9" "\x87\x09\xfd\xeb\xc5\xab\xb5\xeb\x96\x31\xbd\xc3\xdb\xfc\xf1\x55\x17" "\xfa\xbc\xf1\x69\x31\xeb\x73\x81\xe8\x37\x13\xb0\x81\xad\x19\x47\x27" "\x4d\x48\x96\xee\x89\x53\xd7\x72\xe9\xe7\x1f\x36\x3b\x6f\x11\x47\x31" "\x7b\xc7\x39\xec\x12\x8e\x4e\xc8\x65\xf8\xf0\xea\x34\xcd\x5f\xf1\x9f" "\xb2\xc2\x89\x31\xd2\xc8\x58\x46\x73\x53\x58\x50\x4a\xe9\x16\x15\x35" "\xcd\x78\x90\xe8\xb9\x5c\x81\x4c\xfe\xc1\x16\xb7\x8e\x6d\x0e\xb5\x09" "\x7c\xd4\xf3\x58\x88\x12\x14\x52\xe2\x73\x91\xd8\x65\xc1\x5f\x0b\x98" "\x69\x25\xd0\xd0\xc6\x23\xbc\xbb\x4d\x8c\xa6\x66\x03\x72\x02\x53\xaf" "\x17\x85\x39\x67\xea\x59\x54\xeb\x5e\xf0\xdc\x43\xde\x18\x5e\xc4\x92" "\x50\x26\xc6\x80\x46\x4e\x66\xd1\xca\xff\x1f\x4c\x7c\x75\x7b\xd5\x5e" "\xc2\x51\x5f\xfe\x71\x83\xe3\x48\x1f\xf6\xf6\x26\xc2\x22\x8a\x3f\xc3" "\xd1\x5f\x63\xe4\xbf\xbe\xc7\x6a\x2a\x17\x02\x06\x14\x2c\xbb\xcf\x20" "\x4a\x1c\xbf\xe0\xee\x56\xeb\x47\xdf\xb7\x9c\x80\x89\x4c\x0a\x0f\xbf" "\x8a\x29\x55\xd8\x61\x67\x8f\xc2\xf8\xf9\xad\x7a\x28\x05\x21\x97\xb5" "\x99\x2b\xce\xd1\x27\x36\x58\xda\x5b\x1f\x42\xfc\xa4\x8c\x80\x88\x36" "\x00\xc2\x4d\x85\x15\xa0\xc7\x11\x3d\xeb\x4c\x97\xdf\x91\x8a\xb6\x4b" "\xca\x16\xa0\xc1\x4f\x25\x47\xdc\x91\xd5\xce\x4f\x88\x49\x78\xc9\x5f" "\xe5\x48\x99\xf7\x7f\xfc\x20\xa2\xc4\xb2\x73\x50\xbc\x45\x1b\xef\x72" "\xa4\x6d\x8e\x14\x4a\xd5\x7a\x8d\x5f\x8a\xc0\x39\xf5\x8b\x8a\x53\xea" "\x1f\x3f\xd5\xfc\xe6\x12\xa1\x71\xbf\x82\xba\x17\xc0\x68\x1c\xf4\x6c" "\xe5\xc8\x18\x1a\x52\x2e\xd2\xe9\x86\x36\x19\x03\x90\x31\x59\x64\x30" "\x46\xc7\xbe\x17\x87\xda\xc6\xcc\xab\x09\xd1\x8a\x30\x99\x75\x41\xdc" "\x6e\x9e\xfa\x26\x0f\x1f\xf0\x39\x2b\xc1\x89\x0f\x19\xd8\xbb\x72\x5f" "\x4f\xe7\xd8\xbc\x61\x8f\x46\xe0\xc2\x3b\xe6\xb9\xca\x67\x77\x7d\xd3" "\xf5\xa8\x9b\x41\xcc\xfb\x11\xa5\x26\xa3\xbe\xd0\x45\xa2\x90\x6f\x86" "\xcc\x51\x86\xa1\xdb\x7a\x70\x39\x12\x61\xb6\x94\xb4\x23\xe5\xa4\x4d" "\x37\x4f\x9d\x37\x20\x33\x0e\x08\x35\x74\x08\x3f\x89\x50\xb2\xb3\x5c" "\x8b\xb5\xb6\xc0\xa7\xfe\x25\x9f\x23\x5d\xc1\xc0\x69\xd4\x58\x1a\x9f" "\x0a\x74\x51\x89\x05\x61\xa0\x82\x9b\xb2\x90\xde\x6a\xef\xe4\xd2\x43" "\xae\x0b\x00\xca\x61\xa1\xdc\x42\x62\xbb\x49\x51\x24\x2b\x21\xd8\x81" "\x48\xeb\x7b\x6a\x97\x18\xd6\x43\x32\x74\xf2\xb3\xc9\xbc\xdb\xb6\xd5" "\xdf\x67\xb4\x8f\xf4\x26\x92\xd8\xcd\x7f\x4b\x7f\x41\x72\x8d\xe6\x8e" "\xa1\xce\x0f\x3e\x4a\x28\x43\xc5\xb9\xff\xc4\x3f\x69\xb8\xa0\x44\x5d" "\xce\x44\x08\x1f\x5b\x44\x3a\x32\x70\x84\xb0\xd0\x0d\x07\xcb\xdb\xbf" "\xd2\xda\x5d\x67\xbf\x8d\x4b\xb4\xee\x40\x8d\x17\xee\xee\x48\xb6\x1d" "\xec\xd0\x6b\xd3\xda\xc9\xa1\xad\xbe\xb0\x69\xb4\x9e\xc9\x66\x08\xb9" "\x17\x9b\xb3\xaf\x4c\x10\xf2\xad\xe6\x77\x8b\x31\xfd\x4c\x22\xc2\x96" "\x1c\xb9\x49\xa6\x4e\x9a\x8a\x48\x79\xc5\x50\xf8\xd8\x78\x30\x64\xcb" "\x30\x45\x11\xe4\x0e\x2e\x56\x2b\xa8\x3c\x08\xba\x8a\xe0\x11\xa7\x84" "\xed\x9d\xb0\x3d\xb5\x52\x7a\x7a\xae\x22\x2c\x85\x6c\x8d\xf0\xa9\x4f" "\x9c\x4d\xef\x0f\x94\x24\x4c\x5b\x8e\x3d\xb9\xf3\x9d\xbd\x33\x79\x28" "\xe2\x4d\x9d\x85\x62\xf2\x31\xfe\xa7\x21\x16\xc0\x10\x89\x16\x3d\x2c" "\x5f\x4c\xa1\x7f\xaa\xb2\x0b\x73\xc9\x95\x7f\xa1\xa9\xaf\x20\x83\x7a" "\x80\x48\x70\x03\x4d\x4e\x64\x28\x11\x25\xb0\x70\xd8\xee\x0d\xbf\x05" "\xf9\x5e\x5f\xb0\x79\xe2\xa5\x7e\x9a\xf9\x77\x22\x2e\x90\xb6\x64\x18" "\x91\x14\xdc\xcb\xca\x81\xee\x58\xb7\xde\x90\xa8\x13\x76\x8a\x20\x49" "\x05\x2b\x33\x9a\x60\x8d\x3e\x99\x66\xbd\xb3\xb5\x84\x29\x1f\xbf\x76" "\x94\xa7\xd1\xde\xa7\xf7\x2c\xa6\x04\x89\x4e\x6c\xca\x5d\x32\x6e\xd5" "\xe4\x8c\x15\xef\xf5\xe6\xa8\xcc\x11\xc4\x0f\x84\xca\x92\x0d\x79\xa5" "\xc5\x5d\x07\x00\x19\x09\xbf\x63\x38\x92\x1c\x65\x6a\x39\xd5\x9d\x03" "\xf6\x2b\xb5\xb8\x87\x01\x89\xf0\x41\x6e\xc8\xc3\x17\xb0\x3c\xcd\xcb" "\xbe\xb3\xe1\xa9\xbf\x26\x61\x81\x3f\x49\x66\xb5\x7e\xb5\x6a\x27\x57" "\xde\x5f\x77\x45\x85\x1b\x5f\x7b\xf7\x5e\x41\xeb\x16\x46\xe6\x1a\x41" "\x92\x3c\x5c\x0e\x58\xc2\xea\x47\x8d\x95\xb5\xc3\x9c\x45\x07\x44\xae" "\xa0\xaa\xd3\x70\x6f\xce\x68\x4c\xb7\x33\x8f\xf3\xda\xca\xb6\x0e\x8d" "\x96\x8f\x0e\x6f\xc0\x70\x69\x3a\xe3\xca\x16\x99\x6b\x34\xa5\x0a\xfb" "\x7e\x6e\x37\x75\x46\xae\x28\xdc\x8d\xe7\xa2\xea\x3a\x65\x7b\x4b\x00" "\x03\xa9\x1a\x48\x8e\x34\x7c\x61\x97\x1d\x62\xf3\x2e\xaf\x84\x3d\x4d" "\x4c\x4f\x86\xcc\x40\x33\xc1\x24\x4c\x84\x08\xde\xf0\x91\x88\xdd\xe5" "\x09\xc6\x29\x32\x3f\x34\x07\x2f\x90\x89\xa3\x84\x66\x80\x89\x4e\x8b" "\x00\x0a\x03\x86\x54\x38\xb2\xea\x21\x2b\x68\xfd\xef\x7f\x17\x58\x3f" "\x92\x01\x4e\xef\x2c\x81\x15\xa3\x7c\x9c\x82\xde\xe0\x62\x13\xc1\x40" "\x7c\x14\x33\x69\x0f\x68\xcd\xc8\xe9\x19\x71\x10\x40\x39\xdf\xe0\x67" "\x74\xb9\x46\xf4\x3b\x68\xb7\x95\x7a\x5c\xa3\xee\x76\x3e\xaf\xbb\x74" "\x37\x85\x0e\xb0\xa2\x85\xc4\x13\xbc\xf6\x96\x52\x32\xd5\x93\xd8\xda" "\x47\xa2\xa0\x6a\xbc\x63\x5a\xe3\x8e\x59\x6a\x9d\xae\x55\xb4\x3f\x34" "\x1b\xcc\x6f\xe7\x2d\x79\xb4\x53\xac\x1c\x25\x9d\xa3\x7f\x64\xcb\xc1" "\xf1\x50\x8c\xaf\x28\x0a\xa6\xa3\xf4\xcd\x2f\xf5\x56\x4c\xc5\xa8\x72" "\x7f\x22\x24\x31\x45\x4a\x5a\xc9\x33\x98\xa2\x9f\xb9\x5b\x4e\x05\x76" "\x86\xcd\x6f\xcd\x92\x09\x92\xf7\x4e\x58\x70\x74\x96\x76\xa3\x6e\x04" "\x3b\xec\x5f\xc1\xb0\xfc\xe5\x56\x3a\xff\xe9\xad\xdf\xaa\x36\x89\xe8" "\x57\x38\x3c\xcd\x1f\x29\x24\x08\x04\x49\xd2\xcf\xb0\x06\xe8\x55\x57" "\x0b\x71\x1c\x1d\xed\xd1\xdf\x26\x29\xaf\xaa\x38\x06\xf4\xae\x22\x9a" "\x9a\x8e\xf1\x94\x0d\xdf\x2c\x55\xda\xc7\x81\x2d\x23\x74\xc0\x68\x4b" "\x7b\xa2\x7b\x2f\x08\x49\xee\x4c\x05\x5d\x2b\x8c\xcc\x8e\x41\xc5\x93" "\x37\x83\x40\xd7\x54\x6b\xb9\x74\xbc\x80\x32\xf2\x20\xb3\x70\x99\xe3" "\xb0\x4c\x65\x91\xc4\x0d\x2c\x50\xa8\x55\xa4\x91\xe0\x3c\x1c\x9c\xbb" "\x32\xc4\x00\xf6\x10\x43\x41\x26\x2d\x92\xda\xaf\x3e\x2c\x04\x93\x6c" "\xf2\x87\x88\xfd\xff\x8e\x0a\x77\x77\x0a\x9d\xeb\x90\x89\xa9\xe3\x2e" "\xb5\xd9\xe2\x58\x1a\xec\xd9\x8f\x83\x88\x1c\xa8\xe7\xd4\x9e\x60\x35" "\x56\xdc\x03\xa9\xaa\x19\xa8\xf3\xa4\x73\x5a\xae\xe3\x47\xb2\x5e\xa3" "\x5b\x36\xfa\x57\x48\x4c\x0b\x6d\x59\x19\x79\xb4\xa3\xda\x89\x4f\xa0" "\xc1\x59\x66\xd6\xa5\xe0\x2e\x39\x7c\xcc\xdb\x9c\x31\x4b\x50\x43\x72" "\xb8\x1e\xf6\x91\x38\x77\x76\x70\x01\x26\x3c\x05\xda\xe3\x62\xb4\x9e" "\x59\x28\xef\x36\xf5\x54\xce\x24\x5b\x41\x11\x48\x64\x17\x63\x4f\x1e" "\x7f\x45\x30\xa7\x60\xae\x6f\xfd\x31\x23\xf5\x73\x6a\xc1\x2c\x5b\xf5" "\x06\xc5\xdc\xa0\x30\x79\xc0\xfd\x07\x76\xcd\xb5\x6c\x93\x8c\xdf\x48" "\x0f\xb9\xb9\x7b\x16\x85\xdf\xa3\xbe\x6f\x71\x2a\xae\x10\x7e\x2d\xda" "\x72\x6b\xec\x13\x7b\x2e\xbd\xf5\x6c\x0f\xca\xec\xca\x43\x50\xbd\x7b" "\x5c\x84\xd5\x7f\x29\xc2\xa2\xc9\x9a\xe1\x0c\x30\xce\xce\x48\x31\xd7" "\x1a\xe4\xee\x33\x62\x98\x3c\xc8\x16\xbb\x6c\xb9\x22\x5b\x9d\xb0\x85" "\x03\xa1\xbe\x23\xa2\x6a\x04\x25\xa8\x62\x8a\x2e\x71\x8f\xea\xe5\xdf" "\x91\xd8\x29\xf2\x79\x66\xf7\x66\xb6\x23\xa0\xa4\x95\x8a\x57\x64\x2a" "\xef\xae\x25\x97\x13\x73\x36\x70\xd5\xb1\xd0\x27\xfb\x8e\xb2\xd0\xd3" "\xa0\xb4\xac\xd4\x82\x07\x6d\xfa\x09\xff\xe8\x83\xf5\x56\xb2\xdb\x22" "\x62\xbc\x08\x72\xe1\xbd\x71\x3f\x10\x0d\xd7\xa8\xa8\xf2\xd7\x25\xb4" "\x6e\x09\xc6\x25\xd5\x13\x17\x98\x72\xbb\xcc\x9a\x41\xe5\x96\xa1\x8b" "\x24\x71\xd9\x77\xf4\xca\x2b\xeb\xd0\x6c\xda\xba\x31\xb7\x0e\xf2\x5e" "\x09\x8f\x21\x4f\xef\x16\xf1\x6f\x72\x5c\xad\x43\x11\xeb\x91\x45\x7f" "\xdb\x70\xb4\x71\xed\xdb\x65\xec\xaf\xb1\xe2\xb0\x3c\x5f\xf2\x13\x56" "\x24\x1e\x3c\xab\x2c\x8b\xa6\x01\xf9\xef\x1a\xec\x90\x06\xb7\xcd\x0b" "\x81\xda\x29\xbe\x01\xcb\x4c\x1d\x52\xe5\x63\x29\x8e\x37\x30\x13\x88" "\x6e\xbb\x18\x89\xbd\x56\x16\x64\x7c\x6c\x41\x8e\xa6\xbc\x1f\x3c\x08" "\x53\xb6\x5c\xae\x48\x46\x7b\x35\xf0\x83\x18\xe3\xa9\xd0\x34\xaf\x72" "\x24\xcc\x35\x20\xab\x1e\xce\x77\x51\xba\x15\x40\x72\x98\xb2\x1e\x4f" "\x84\xef\x7c\x23\xd7\x99\x37\x39\x40\x3d\x4f\x11\x6c\xba\x2d\x0a\xe2" "\xd4\x00\x3a\x28\x33\x4c\x46\x1c\x73\x4d\x45\x55\x10\x5b\x98\x6a\xd0" "\xaf\x28\xaa\xc3\x6c\x75\x3a\xb5\x2b\x91\xb7\xe2\x3a\xe3\xab\x07\xd3" "\xb1\x70\xfe\x53\xa2\x24\x9e\xfe\x5b\x65\x46\x3a\x3f\x23\x7c\xec\x72" "\x09\x1b\x04\x00\x5f\x95\xa1\x5a\xe5\x95\x19\x1b\xa3\x9d\x0a\xe1\xd9" "\x1d\x8e\x00\xb1\x32\xae\x93\x39\x88\x4b\xc5\x7b\xbb\x79\x97\x8a\x30" "\x8e\x1c\x31\xc5\xf2\x13\xb0\x92\xf3\x80\xa7\xba\x58\xf5\x58\x69\xe9" "\xc2\x9a\x5a\x6e\x7a\x7a\xa4\xf8\xd5\x8e\x57\x87\xcc\x05\xe5", 8192); *(uint64_t*)0x20000a00 = 0; *(uint64_t*)0x20000a08 = 0; *(uint64_t*)0x20000a10 = 0; *(uint64_t*)0x20000a18 = 0; *(uint64_t*)0x20000a20 = 0; *(uint64_t*)0x20000a28 = 0; *(uint64_t*)0x20000a30 = 0; *(uint64_t*)0x20000a38 = 0; *(uint64_t*)0x20000a40 = 0; *(uint64_t*)0x20000a48 = 0; *(uint64_t*)0x20000a50 = 0; *(uint64_t*)0x20000a58 = 0x20000600; *(uint32_t*)0x20000600 = 0xa8; *(uint32_t*)0x20000604 = 0; *(uint64_t*)0x20000608 = 0; *(uint64_t*)0x20000610 = 0; *(uint64_t*)0x20000618 = 0; *(uint64_t*)0x20000620 = 0; *(uint64_t*)0x20000628 = 0; *(uint32_t*)0x20000630 = 0; *(uint32_t*)0x20000634 = 0; *(uint64_t*)0x20000638 = 0; *(uint64_t*)0x20000640 = 0; *(uint64_t*)0x20000648 = 0; *(uint64_t*)0x20000650 = 0; *(uint64_t*)0x20000658 = 0; *(uint64_t*)0x20000660 = 0; *(uint32_t*)0x20000668 = 0; *(uint32_t*)0x2000066c = 0; *(uint32_t*)0x20000670 = 0; *(uint32_t*)0x20000674 = 0; *(uint32_t*)0x20000678 = 0; *(uint32_t*)0x2000067c = 0; *(uint32_t*)0x20000680 = 0; *(uint32_t*)0x20000684 = 0; *(uint32_t*)0x20000688 = 0; *(uint32_t*)0x2000068c = 0; *(uint64_t*)0x20000a60 = 0; *(uint64_t*)0x20000a68 = 0; *(uint64_t*)0x20000a70 = 0; *(uint64_t*)0x20000a78 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20008280, /*len=*/0x2000, /*res=*/0x20000a00); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }