// https://syzkaller.appspot.com/bug?id=97f929bfc71bac39878eca40d32e0d436e776fb3 // 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 #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static 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; } } 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 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, loopfd = -1, 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) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; 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) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } static int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } 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"); } static void setup_fault() { static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) exit(1); } } } #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 execute_one(void) { int i, call, thread; for (call = 0; call < 8; 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); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: NONFAILING(memcpy((void*)0x20002080, "./file0\000", 8)); NONFAILING(syz_mount_image(/*fs=*/0, /*dir=*/0x20002080, /*flags=*/0, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0)); break; case 1: NONFAILING(memcpy((void*)0x20002080, "/dev/fuse\000", 10)); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20002080ul, /*flags=*/2ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: NONFAILING(memcpy((void*)0x200020c0, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20002100, "fuse\000", 5)); NONFAILING(memcpy((void*)0x20002140, "fd", 2)); NONFAILING(*(uint8_t*)0x20002142 = 0x3d); NONFAILING(sprintf((char*)0x20002143, "0x%016llx", (long long)r[0])); NONFAILING(*(uint8_t*)0x20002155 = 0x2c); NONFAILING(memcpy((void*)0x20002156, "rootmode", 8)); NONFAILING(*(uint8_t*)0x2000215e = 0x3d); NONFAILING(sprintf((char*)0x2000215f, "%023llo", (long long)0x4000)); NONFAILING(*(uint8_t*)0x20002176 = 0x2c); NONFAILING(memcpy((void*)0x20002177, "user_id", 7)); NONFAILING(*(uint8_t*)0x2000217e = 0x3d); NONFAILING(sprintf((char*)0x2000217f, "%020llu", (long long)0)); NONFAILING(*(uint8_t*)0x20002193 = 0x2c); NONFAILING(memcpy((void*)0x20002194, "group_id", 8)); NONFAILING(*(uint8_t*)0x2000219c = 0x3d); NONFAILING(sprintf((char*)0x2000219d, "%020llu", (long long)0)); NONFAILING(*(uint8_t*)0x200021b1 = 0x2c); NONFAILING(*(uint8_t*)0x200021b2 = 0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200020c0ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20002140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000a400ul, /*len=*/0x2020ul); if (res != -1) NONFAILING(r[1] = *(uint64_t*)0x2000a408); break; case 4: NONFAILING(memcpy( (void*)0x20006400, "\x4e\x53\x50\x99\x4e\xbf\x71\xce\x30\x49\xa5\x8c\x5d\x05\x00\x78\xbf" "\x16\xb0\x75\x7a\x4c\x27\xb4\x55\xe2\xa5\x47\x73\x95\x87\xdd\x33\x80" "\xb5\xdf\x8f\x40\xa0\x69\x6c\x5b\xd6\xcd\xb6\x72\xcf\xfe\x4d\x87\x0c" "\x5c\x90\xca\x92\x09\x5b\x9e\xbf\x3e\x92\xfe\x31\xd8\xcd\x74\x27\x5d" "\x85\x7d\x34\xa7\x4f\x7e\xec\xc7\xfa\xc1\x5e\x2f\x14\x8d\x4e\x9d\x47" "\xbb\x45\xb8\x58\xbb\xf0\x78\x99\x99\x70\xd1\x80\xf2\x8d\x7b\x2c\xef" "\xd9\x26\x35\xd4\x5a\x56\x3d\x92\x29\xc9\xfd\x77\x0e\xfd\xc0\x84\x8e" "\x52\xfa\x5e\xfd\x9a\x7e\x5c\x94\xa1\xba\x94\xb4\xb7\xc7\x50\x7f\x8b" "\x08\x19\xbb\x20\x91\x0f\x9f\x50\xa8\x3a\x01\x0a\xbb\xe1\x26\xdd\x9f" "\x6a\x7b\x84\xea\xb6\xb0\xd5\xce\x78\xd2\xad\xe7\x7a\x5f\x7e\x4e\x99" "\x7d\xf1\xd0\x3f\xfa\xb4\xb4\xc9\x45\xd8\x03\xe4\x45\x79\x09\x01\x31" "\x27\xa9\x87\x69\xc9\x38\xc2\x37\xf3\x72\x63\xbc\x50\x9a\x42\xbc\x56" "\xff\x2d\xbf\x80\xe8\x47\xe2\xc4\x07\x00\x9e\xef\x94\xf1\x8e\x1e\x59" "\x06\x9d\x62\x29\x8f\xdb\xad\xae\x00\x7f\xfb\xdf\x40\x3c\x50\x49\xa4" "\x53\x0a\xc0\xab\xec\xce\xb5\x60\x8d\xa0\x27\x54\xc9\xa5\x75\xaf\x52" "\xc0\xb7\xe4\x12\x26\xe2\xd6\x42\xa8\x14\x86\x1c\x43\x10\xc9\x35\xbc" "\xba\xe4\x13\x51\x6d\xde\x21\x32\x65\x2b\x39\xc7\xaa\x02\x18\xa6\xce" "\x65\xda\xbb\x44\x94\x96\x52\x09\xce\x87\x9b\xa7\xe7\xe5\x90\x39\xdb" "\x5c\x1d\x36\xd6\xa7\xf8\x6d\x72\xdd\x59\x95\x4f\xd6\xf4\x61\x24\xa2" "\x50\x6b\x24\x5a\x0d\xb1\x1a\xa8\x9d\x2f\xeb\x31\x2a\x65\x96\xea\x2f" "\xec\xaa\x7b\x60\x21\xf3\x7a\x25\x5f\x62\x8d\xa7\xff\x6b\x6c\x36\xb5" "\x14\xd3\xb6\xbe\x34\xe5\x05\xf9\xda\xc6\xac\xfb\x88\x81\x98\x00\x46" "\x99\xfb\x35\x0a\xc9\x34\x31\x53\x35\x54\x65\x8c\x49\x57\xdf\x36\x70" "\x35\x91\x43\x8d\x64\x88\xbc\x03\xdd\x82\x90\xa7\x5e\xbb\x36\x7a\x48" "\x1a\x50\xe7\x9a\x46\xb0\x4d\x00\x56\x49\xca\xbd\x79\xe5\xc6\x32\x6c" "\x06\x6b\xc2\xb6\xfc\x5f\xeb\xb8\x7e\xf6\x6d\x83\x2e\xf3\x1a\x16\xc2" "\xa4\x50\xa0\xb9\x90\xfb\x54\x9a\x5d\x81\x0c\x92\x8d\x1a\x81\xfa\x1d" "\xc7\x95\xdb\x26\x07\xac\x7d\x46\xcb\x57\x16\xb6\x8a\xcd\xeb\x00\x98" "\x7e\x42\x9f\xe6\xa3\x94\x63\x2c\x83\xb4\x33\x36\xe7\xb5\x1d\x9c\xfd" "\xb5\x0e\x83\xd8\xc6\xba\x17\x84\xd9\xf7\x4c\x16\xb4\x76\xe0\x48\xe6" "\x5e\x7a\xc0\xaf\x68\x3b\x34\x7d\x73\x77\xac\x17\x95\x42\x2e\x00\xe5" "\xbd\x8d\xa9\xb3\x13\xaf\x83\xab\xb3\x34\x88\x61\x11\x6d\xe7\xa9\x99" "\x59\x16\x9b\x7d\xff\x9f\x7d\x9b\x7a\x6d\x10\x7f\x2e\x76\x67\x0a\x62" "\x14\xa4\x19\xbf\x82\x98\xf8\x0e\xb5\x70\xfa\x29\x26\x4b\xa5\x7a\x38" "\x3c\x5e\xc5\x83\x6c\xe3\x31\x04\xec\xaf\x1a\xec\x76\xe3\x11\x28\x0a" "\x1d\x2c\x8b\xd7\xab\xff\x3a\x5a\x24\x2e\x6a\x63\x7f\x7d\xb6\x30\x38" "\xef\x5d\x78\xac\xa9\xc6\x80\xd7\x2b\x60\xda\x4d\xbe\xb0\xe1\xe6\x83" "\xdd\xc8\x28\x98\x64\x7c\x58\x9a\x81\xb8\xf9\x2d\xb0\x67\x11\xd8\xa0" "\xaf\x05\x56\x0c\xd7\x7f\xa7\x00\x52\x83\xdb\x71\xe8\xda\x21\x71\x3f" "\xcc\xd4\x50\x82\x20\x62\xb9\x94\xd1\x52\xaa\xed\x2c\xdc\xf0\xde\xc9" "\xc6\x06\x17\xe1\x5b\xa4\xdf\x62\x8d\xa4\xe7\x12\x79\xbf\x9d\x1e\xee" "\x5c\x7f\x05\x5c\x27\xcd\xdf\xdd\x45\xf9\x22\x5d\x5d\x55\x29\xef\x71" "\x19\xe2\xe3\xc9\x83\x8e\x73\x62\x97\x1e\x06\x9b\xe4\x87\x79\x7e\x94" "\x9b\x24\x29\x7d\xe1\x9c\x61\x34\x0d\x1c\xd7\xa2\xbf\xa3\x88\x0b\x91" "\xa7\x1e\x93\x47\x20\xa5\x9e\x1e\x0e\xa9\x92\xd2\xa1\x63\x3a\x08\x52" "\xad\x8a\xdd\xfc\xab\x73\xa2\x91\xe3\x57\x45\xe6\x94\xa6\x47\x1f\x42" "\x9b\x12\x43\x05\x88\x6c\x1f\x79\xf6\x7c\x78\xde\x3f\x3e\xc9\x98\xc9" "\x1e\x7f\xc5\x9d\x26\x76\x6c\xd4\x46\xf6\xf0\xde\x60\x3f\x2c\x68\x92" "\xe1\x3c\xda\xa3\x7d\x9e\x8e\x11\x8d\x09\x8b\x69\x86\xcc\xd9\x91\x99" "\x3e\xc1\x52\x19\x3e\x7d\x77\x39\x4b\x05\xb9\x9e\x7d\x31\x0c\x50\x67" "\x07\xf1\xbe\x52\x24\x94\x38\xfb\xa9\x61\x5f\x6d\xad\x2e\xc7\x24\x4f" "\xed\xf3\x6e\x34\xec\x31\x1b\x7d\x6b\xee\x64\x27\x1d\x64\x91\x07\x9e" "\x16\x11\x90\xde\xd7\xe2\x8e\x2a\xda\x43\x07\xa9\xb2\x98\x6c\x26\x7b" "\x1a\x30\xd2\xf7\x20\xff\x23\x40\x80\x11\xf1\xd5\x89\xce\x9e\xe7\x7f" "\x98\x1c\x78\x33\x65\x6c\xcf\x7d\xf5\xb3\xa8\x7e\xc2\x53\xff\x7c\x7e" "\xf1\xe6\x7c\xee\xb1\x0c\x93\xe3\xfa\x68\x3c\xda\xda\xd6\x58\x50\xff" "\xbc\x40\x2b\x77\x44\xe9\x4c\xde\xce\xf9\xdb\x9d\x26\x4c\x75\x5c\x53" "\xd3\x62\x78\xdf\x23\xd4\xc9\x68\x5f\xde\xfa\x69\xf7\x58\x8a\x33\xb8" "\xa6\x4b\x35\x19\x1e\xe8\x1a\xbc\xb9\x76\x55\x77\xd1\x75\xcb\x06\xe3" "\x1c\x58\x28\x07\xff\x72\x43\xbf\xef\x44\x96\x1f\xbc\x0f\x8a\x23\x52" "\x42\xf5\x1e\xe9\x91\xea\x62\x18\x03\xd4\xdc\xfe\xd9\x0d\x26\xf0\x04" "\xb2\x99\x42\x5b\xf2\x19\xf6\xd1\x85\xfe\x6e\x08\x8a\xe4\x46\x01\xb0" "\x3d\xef\xad\xa1\x87\x94\xfe\xac\x93\x78\x76\x96\xa5\xd4\x19\xf0\x9f" "\x76\x9b\xc5\x90\xf4\x3d\x2d\xf6\xa1\x31\xf6\x89\x5d\xa2\xde\x12\x0c" "\x26\x44\x68\x5e\x57\xb1\xd4\x76\xc6\xab\xa5\x88\x1e\x95\x4f\xb2\x57" "\x53\x56\x45\x2b\x11\x8b\x94\x2c\xb0\x2b\x4e\xa0\xfc\xf8\xf1\xbb\xb9" "\xa2\x3b\x6e\x32\xc9\xd0\xac\xcd\x3d\xd8\x61\x45\x2a\x3a\xd7\x7b\x38" "\xfe\x70\x9e\x21\x69\x74\x93\x2d\xeb\x53\x97\xfd\x80\x33\xff\x0e\x07" "\x3d\x93\xac\x0b\x4b\xe7\x62\xbc\xa0\x42\x4d\x69\xbd\x57\xb2\x2b\xa9" "\x14\x13\x3f\x87\x67\x1a\x29\x49\x8b\x26\x8c\x29\x11\xe7\x93\x21\x54" "\x63\xca\x21\x64\xe3\x80\x59\x45\x61\x07\xdc\xb2\x9b\xee\xdf\xd6\x27" "\x7e\x2b\x41\xa1\x1d\x1c\x6f\x13\x61\xb1\x98\x75\xc9\x38\x4f\x04\xf9" "\xc5\x3c\x18\x56\xd7\x1f\x36\x0a\x8f\xaf\xe0\x5f\x7a\xef\x75\x0e\xc0" "\xcf\x2b\xfc\xfa\x97\x1c\x01\x7a\xd0\x71\xb6\x9a\x18\xfd\xaf\x97\x0b" "\x38\x4d\x4c\x88\x9c\xfa\x5a\x03\x97\xdb\xe8\x95\x43\xa5\xc6\x4e\x26" "\x45\xd6\xed\xf9\x59\xaa\x60\x70\x9c\xe0\x22\x5f\xe6\xc3\x26\x6c\x7e" "\xf6\x21\x57\xac\x8e\x78\xfd\xdc\xd8\xa1\xf2\xca\x5b\x58\x12\x82\x18" "\xd1\x92\x76\x88\x55\x15\x77\x53\x26\xae\xee\xe0\x22\x6c\xc8\x10\x84" "\x3e\xb0\x51\x44\xbf\x8e\x2f\xe3\x34\x0c\xf6\x0b\x32\xca\xfd\x96\xd2" "\x3c\xd7\xd0\xd3\xad\xcb\xdf\xec\x9a\x2a\x3d\x88\x30\x7c\x36\x26\x33" "\xb1\xc5\x63\x76\x08\xea\x84\x76\xd9\x00\xb3\xf8\x36\xa9\x73\x4b\x5e" "\xca\xf5\xe8\x29\x83\x57\x71\x28\xd3\xf7\x4b\x90\x3b\x0e\x3b\xf6\x43" "\x26\xc1\xb5\x64\xae\x42\xae\xeb\x0c\x07\x70\x2b\x63\xa9\xff\x74\xa2" "\xaf\x6b\x45\xe5\x18\x5a\x53\xf3\x6c\x17\xbc\x29\xdf\xbc\x0e\xa2\x8c" "\xa5\xcc\xa4\x3a\x15\xd7\x51\xe9\x88\x7a\xd3\xe6\xa8\x7f\xaa\xcb\x6a" "\x27\x8c\x4c\x8a\x8d\x21\xb9\xa7\x7b\x97\x76\xf3\x31\x02\xa6\xe6\x45" "\xe9\x9c\xc5\xcb\xc5\x43\xed\x06\x74\x28\x2c\x2b\x9f\x8e\x5d\x14\xc2" "\x59\x9a\xa9\xac\x8f\x81\x43\x8c\x77\xf2\xb9\x36\x8b\xda\xc8\x2e\xdc" "\xdc\x53\x66\xf3\x9a\xde\xc9\xe9\xa3\xfb\xd5\x5b\x79\xab\xc1\x6d\x2e" "\xbf\xf2\x6b\x7d\x0c\x88\xf1\x8b\x48\x6e\x58\x36\x33\x35\x75\xe3\xfc" "\x78\x08\xcb\x42\x3b\x44\x78\x1c\x57\x96\x57\x67\x86\x29\x22\xb4\xff" "\x32\xd9\xba\xe7\x62\x96\x84\x3a\x46\xf4\x30\x21\x1c\x27\xef\x9d\xb1" "\x68\x43\x00\x26\xa5\x69\x16\x23\x28\x4d\xfd\x45\x9d\xbd\xd1\xf1\xa6" "\xec\x9b\xfa\xd6\x66\x50\x7e\x6e\xac\xb1\xe2\xa7\x86\x6d\xa2\xe1\x2e" "\x6d\x59\x6d\x0b\xbb\x15\x05\x00\x59\x00\x13\xd9\x28\x8a\xf2\x05\x96" "\x44\x7f\x97\xbf\x17\x44\xeb\x9c\xfb\x24\x4d\x8f\xca\x26\x9b\x1f\xb7" "\x1e\x14\xde\x66\x4b\xe4\xe9\x5d\x83\xff\xf1\xb8\xab\xcf\xeb\xcf\x3e" "\x78\xc1\xc6\x6d\x28\xf2\x60\xfb\x0c\x19\xf9\xfb\xcd\x2a\xbb\xdd\x7d" "\xd7\x24\x6e\x49\xdc\x25\xd9\x54\xbf\x25\xf8\x10\xa2\xff\x6f\x90\x69" "\xdf\xdc\x62\xe7\x17\x0f\xe3\xb0\x96\x4b\x2a\xc9\x50\x24\x25\x6d\xfa" "\x3e\x7a\x42\x6b\xe5\xbb\x5f\x70\x7f\xd8\x2c\x2b\x3a\xfe\xc5\xd5\xdc" "\xf5\xbb\xb8\xfc\xb6\xdb\xc1\xb5\x9f\x6c\x53\x30\x96\x6c\x70\xd8\xb0" "\x16\x95\x69\x03\xa4\x27\x88\x17\x41\x4b\xa3\x65\x2a\x10\x2d\x7e\x7e" "\x37\xec\xc7\x94\x00\x26\x7f\xc3\xbf\x76\x01\xc0\x73\x1f\x87\xd4\x79" "\xc3\x3f\x10\x07\x35\xe7\x48\x87\x41\x55\x26\x7f\x70\x8c\xea\x49\xd5" "\x49\xe9\x3c\xf7\xa3\x98\xb2\x03\x73\xdc\x90\xad\x9a\xfd\x56\xd9\xc7" "\x7c\xd2\x4e\x2c\x4a\x18\xf7\x13\x0b\x36\x6c\x7f\xe5\xb2\x6b\xc4\xd1" "\x1c\xa1\xed\x1b\x98\xfa\x0b\x4d\x73\x96\xf8\x2a\xe6\x59\x3f\x45\x75" "\xd1\x9f\x4d\x8f\xd5\x86\xc9\x91\x12\x9e\x5c\xbe\x15\xc8\xba\xcc\x89" "\xc3\xee\x15\xca\x47\x1d\xea\x96\x6b\x5c\x48\xed\xe0\xd3\xba\x2a\x7e" "\x28\xc7\x5c\x04\xe6\xa4\xaa\x49\xa6\x1f\x4e\x39\x1f\xfe\x78\xeb\x5e" "\x40\xa5\xef\x34\x9f\x3a\xa4\xd1\x5f\x22\x91\xcc\x86\xec\x7e\x47\xae" "\x30\x1b\xf0\xb6\x08\x3d\xae\x44\xb6\x95\x82\x0a\x89\x3d\x46\x73\x25" "\x53\xef\x15\xed\x1c\x16\xd2\x82\x68\xd5\x2a\x7e\x3a\x7e\x7c\x00\x9d" "\x0c\x07\x08\xa3\x56\xd3\x31\x0c\x1e\xbc\xbc\xca\x4d\x7a\xcf\x43\x3e" "\x34\xbf\xc9\xfc\x11\x54\x98\x14\x2d\xcc\x72\x5e\x7a\x16\x87\x9c\x75" "\xe4\xc2\xf0\x1c\x6c\x98\xb3\x96\x19\xf3\x24\x8b\xf5\x30\xe6\xee\x59" "\x34\x67\xe3\x8c\xf4\x02\x6c\xfd\xc4\xdb\x62\x96\x56\x57\x22\xd5\x87" "\xf3\xc5\x80\x75\x0b\x14\x53\xec\xc1\x41\xc0\x46\x14\x95\x55\x12\x97" "\xd8\x8a\xe0\x34\xac\xbd\x4f\x5e\x80\xce\x19\x8e\x66\x40\xc4\xc1\xe9" "\x50\x15\x29\x98\x81\x09\xce\xf0\x06\xeb\x20\x90\xa6\xfc\xd9\x74\xd7" "\xf6\x02\x90\xb7\x8f\x1a\x8c\xe3\x05\x1a\xc2\xd6\x96\x36\xc3\x21\x9f" "\x0a\x6a\xd8\xc2\x54\x76\x43\x96\xa1\x68\x4b\x2f\xd9\x80\x5b\x18\x53" "\x52\x5f\x2e\x64\x0e\x51\x31\x97\x28\x3c\xc4\xd4\x07\x3a\xc0\x33\xe0" "\x53\x9a\x88\xf0\x8a\xab\xe1\x42\x3c\xd4\x0b\x8a\x7e\x07\x34\x37\xd8" "\x12\xb5\x7a\x5d\x39\xa0\x53\x1d\xcb\xe1\x3f\x44\x66\xe8\x9e\xfc\x66" "\xc2\xa1\xe4\xb3\x9a\x3e\x0b\x30\x73\xc9\xd4\x4e\x6c\xf9\xb8\x5f\x4d" "\xf5\xc4\xe0\x36\x28\xd0\x5b\xc0\xf9\x4e\xc0\x42\x34\xc9\xec\xa4\xed" "\x17\x46\x3f\x19\x04\x06\x83\x4b\x02\x88\x87\x28\xf6\x25\x37\x1c\xda" "\x75\xd1\x5e\xc1\x9e\xfe\xbd\x59\xf0\x0a\xb6\x59\xeb\x94\xeb\x88\xbc" "\xb2\x11\x08\x62\xa3\x69\xad\x59\x96\x10\xc1\x53\x0f\xcc\x11\x8f\x5b" "\x82\x20\x5b\xc5\x21\x5f\xe3\x62\x3a\xc8\xec\x29\x7d\x8f\xf4\xee\xe7" "\x5a\xce\x20\x73\x1c\x5d\x50\x5e\x66\x05\xc2\x62\x03\xb7\xf7\x54\x16" "\x4c\x94\x63\xf0\xa6\xee\xfe\x3a\x28\x80\xb8\xe0\x6e\x7b\xc6\x6b\xb2" "\xad\xcc\x1a\x3f\x9b\x03\x25\xf5\xec\x31\xd1\x2a\x25\xf1\xf7\x3c\x2a" "\xa6\xbb\x3a\x76\x80\xd7\x86\xa0\x82\xa6\x3b\x13\xcc\xe1\x82\x2f\xa6" "\xa4\xb0\x85\xa8\x71\xae\x34\x09\xee\xcb\xc1\xfd\x86\x61\xb5\xd5\x2b" "\xb2\xb8\xb7\x2f\x23\xe2\x4a\x22\x50\x75\xf2\x72\xed\x2b\xa0\xc6\xc5" "\xc6\x93\x81\x1a\x0e\xf8\xdb\x6d\xa7\xcf\xe7\xc9\x66\xc6\x47\xf0\x18" "\x7a\xd2\x23\xee\xdb\x10\x12\xa5\xb7\xaf\x10\x3e\x98\x46\x4a\xc7\x68" "\xc7\x9b\x21\xca\x45\xb1\x2a\x52\xcf\x26\x1d\xe0\xd3\x67\x44\x2c\xda" "\x71\xc4\xb8\xee\x39\xc9\x4d\xed\x1b\x22\xba\x06\xc1\x38\x36\xcb\x46" "\x7e\xba\xb4\xef\xea\x07\xbd\xf1\xe3\xde\x8d\xa5\x6a\x0e\xe6\xd4\xf8" "\x48\x01\x12\x53\xcc\x21\xfa\x42\x1a\x39\x94\x35\x13\xd3\x16\x7b\x7a" "\x73\xe0\xd7\x52\xb8\x61\xc4\x98\x14\xbc\x54\x10\xeb\xe5\x3a\x02\x64" "\xf7\x60\x68\xc9\x1e\xe6\xec\x9e\x2d\xaa\x34\x34\x82\xb2\xf0\xf0\x6e" "\x60\x5c\x5a\xaf\x81\xf2\xa3\xcd\x57\x0e\xfc\x20\x94\xb4\xbc\x45\x2f" "\x95\x26\xf1\xbb\xe7\xb2\x2b\x69\x4f\xb8\x10\x9a\x5a\x98\x7f\xab\xf6" "\x25\x09\x12\xd6\x09\x9e\x67\xda\x9c\xac\x79\xe8\xb6\xf2\xcc\xe4\x70" "\x2d\x1f\x17\xcb\xc5\xd0\x6c\x38\xb8\xa4\x81\x55\xec\x75\x83\x69\xc1" "\x85\xde\xd8\x39\xfb\x58\xcd\x73\x6f\xbb\x74\x10\x5f\xe5\xba\xf4\x4e" "\x7e\x3e\xd0\x68\x43\xf2\x36\x01\xb6\x0a\x43\xb1\xf8\x8f\xd2\x9e\x9b" "\x3f\x58\x47\x9f\x9b\x95\x39\x2a\x39\xd5\xba\x1a\x31\xee\x44\x41\xca" "\x2d\x1f\xb5\x7c\x0a\x86\x78\xa0\x7a\x72\x4b\x7a\x65\xb2\xab\x16\xd1" "\xda\x19\x7f\x43\x5b\xce\x3e\xf0\x03\xfc\xe2\x7f\xa2\xf0\xa6\x7c\x9d" "\xd6\xc9\x30\xa4\xbc\xf5\x9e\x79\xe5\x7b\x70\xfa\x8e\xae\x6f\xe3\x49" "\x72\x95\x8c\x28\xb5\x66\x42\xd1\x4e\xa8\x9b\xf4\xd7\xd6\xf7\xfc\xbc" "\xf4\xfd\xa8\xbd\x08\xfc\x9f\xe4\x24\xde\x43\x59\x11\x2b\x11\xf8\x1f" "\xbd\xc1\x50\x56\x58\x36\x36\x97\x71\x3f\xf6\xe1\xf8\xca\x3c\x4b\xe3" "\x4a\x79\x99\x3a\x90\x91\xf6\x01\x7c\xda\x6c\x74\x89\xae\x5c\x07\x06" "\x25\x55\x23\x14\x27\xc3\xeb\x42\xa0\x49\xf4\x2d\x22\xa0\x60\x98\x3b" "\x04\x4a\x7d\x34\xab\x5d\x2b\x53\x86\xcc\xa7\x9a\xf7\x23\x96\xa4\x8a" "\xad\x6b\x8d\xcd\x78\x55\x41\x0f\xc6\x10\x6e\x4a\x16\x59\x94\xf2\x6e" "\xff\xf1\xe7\xea\x0a\xa8\xf5\x60\x33\x3b\x5d\xfd\xb2\xa0\xd8\x99\xb0" "\xfd\xa9\x55\x15\x5f\x90\xc7\x5e\xff\xd3\xc9\x53\x5d\x88\x50\x8e\x83" "\x6f\xeb\x78\x07\xd5\x7b\x2a\x57\xcc\xa4\x2d\x3d\x08\xfe\x7d\xe6\x0d" "\x2a\x33\x37\x6f\x49\xbd\xac\xdd\x3f\x81\x4b\xd0\x92\x7f\x41\x7f\x15" "\xad\x62\xa1\x0b\x30\x2f\x1c\xb3\x90\xaa\xf8\x2b\x0b\xc6\xaf\x46\xbb" "\xf9\x90\xb6\xad\xa4\x5e\xf8\x3c\xe1\x30\x29\xd1\x67\xc6\x51\x34\xe7" "\xb8\x2b\x59\xdd\xfd\xc3\x67\xe6\x1c\x40\xde\xfd\x27\x32\xcc\xeb\xb1" "\xd4\x00\x0f\x6c\x74\x2d\xf9\x64\xe1\xfb\x39\x0c\x25\x5d\x2b\x1d\xfc" "\x74\x5c\x6a\xb3\x4a\xf8\x09\x6b\x5b\x67\xaa\x17\x9e\x3f\x34\x18\x54" "\xf7\xa6\x9f\x7b\xf4\x76\x64\xc8\x32\x03\x7e\xc7\xa7\x8f\x8e\x27\x20" "\x9e\x3f\x20\xf8\x33\xfb\x6e\x8c\x0f\xc4\xa4\x09\x20\xa5\xad\x2b\x06" "\x18\x98\x2f\xf7\x25\x40\x00\x9d\x5d\xb8\x2f\x0f\x5b\xca\xed\x2a\x27" "\xf3\x5d\x1e\x50\xea\xa0\xcf\x8e\x48\xc7\xa2\xd4\x3c\x25\xd0\x26\x4d" "\xb7\x50\xa7\xf3\x3b\x44\xa4\xbf\xaa\xe5\x76\xcf\x9e\xe7\x59\x4e\xd2" "\x04\x51\x38\x99\x56\x65\x64\xed\x8b\xbc\x97\xed\x18\xb1\xd8\x86\x8f" "\x92\x6a\x5c\x70\xac\x06\xfb\xac\x1e\xad\xe4\x67\x92\x18\x6b\xe7\xbf" "\x8f\xfa\x33\x01\x23\x9e\xdd\x09\x34\x49\xb7\xd7\x71\x92\x78\x2b\x51" "\x11\xc1\x41\x69\xd2\xb4\xa1\xb3\x44\x3a\xd6\x2e\x4a\xbd\xf1\x1a\xac" "\x6a\x5b\x89\xa5\xb2\x0a\xb0\xad\x0a\xbd\x94\x9b\x9d\x64\x58\x2c\x67" "\xff\xce\x01\x8e\x7e\x46\xde\x40\x91\xfc\xc7\x7a\x65\xb9\x71\xfc\x67" "\xc8\xd9\xcb\xf0\xc3\x41\xca\x76\x4b\x10\x56\xee\x50\x14\xd9\x86\x50" "\x59\x61\x6a\x52\x5a\x1d\x46\xae\x2f\xad\x15\x9a\xfe\x86\xdd\x1d\xf9" "\xb8\x24\x64\x11\x82\x7e\x19\x53\x5c\xa0\xaa\x9f\x83\x05\x0b\x06\xe7" "\x0a\xa2\x73\x7f\x27\xe9\x3d\x58\x4a\x9c\xef\x87\x8a\x64\x2e\x93\x61" "\xef\xaa\x5d\x20\xbd\x8d\xa9\x01\xfa\x2e\x06\x46\x56\xf6\x86\xd3\xb3" "\xea\x31\xd1\xd8\x50\xae\x91\x96\xb7\x76\x45\x48\xf5\xc6\x45\x0a\x32" "\xa7\x17\xe0\x9b\x6b\x7e\x75\xd4\x3f\xbb\xda\x76\xe4\x3a\x24\xf1\x86" "\xd5\x57\x89\x33\xf4\x08\xbf\xa2\x8e\x04\x35\xcd\xe5\x25\xfb\x91\xe7" "\x1d\x92\xd7\x04\xcc\x5a\x9b\x5e\x3d\xb7\xaa\xec\x46\xd2\xb1\xf8\xdc" "\xb3\xf9\x21\xf6\x9b\xd7\x39\x7c\x96\xa1\xe1\x32\xc3\x9c\x8f\x16\x56" "\xce\xa4\x36\x5c\x77\x9a\xbf\x76\x19\x9c\xb5\xb6\xaa\xda\x02\x2e\xde" "\xc5\xc9\x01\xcd\xaf\xa2\xe7\xf3\x76\x5a\xf9\xc8\xb2\x0c\xb1\xa6\x78" "\x50\x85\xfc\xb0\xdc\x90\x13\x67\xb8\x90\x51\xbd\xfd\xc6\xb6\x8c\x52" "\x15\xfd\x04\xe2\xb3\xc7\xe1\xc4\x54\xa4\xd2\x11\x32\x95\x3b\x25\xc5" "\x09\x95\xaf\x0f\x71\x59\xa5\xa8\xd0\xa1\x62\x1f\x48\x08\xf1\x26\xa5" "\xbd\x40\xdd\xc7\x9f\xed\x90\xf4\x99\x25\xee\x36\x7a\x57\xa0\x5c\x07" "\x0f\xbe\x39\xfe\x2c\x21\x3e\x7c\x17\x24\xa9\x07\xec\xfa\x69\xef\xe6" "\xe0\x21\xc0\x6a\x26\x24\x71\xa4\x37\x7f\x3c\x98\x09\xe9\xfe\xe4\xf3" "\x75\xe2\x7c\x31\xb6\xaf\xbb\x21\x51\xda\x86\xb7\xca\xb6\x3c\x7b\x4f" "\xa4\xb7\x7f\xb3\x01\x72\xb9\xd0\xd7\x8b\x1c\x05\x35\xec\x06\x39\xc4" "\x91\x0b\x5e\xee\xcb\xb5\xb8\xb5\xc8\xaa\x74\xc1\x40\xe7\xad\x34\x78" "\x12\xe3\x6d\xb3\x09\x7a\x7f\xf8\x5c\x09\xab\x2c\x00\x20\x20\x23\x07" "\xf5\x0e\xfe\xfc\xdb\x49\x7b\x9c\x06\x0c\xa6\x8c\x4b\xe5\x4a\x91\x65" "\xb4\xce\xbc\x6b\x2e\x2e\x14\xe5\xff\xb9\x21\x31\x42\x41\x8f\xae\xdc" "\xdf\x26\xfd\x32\x6b\x76\x72\x39\x9e\x71\xcf\xff\xe3\xed\x71\x2c\xed" "\x53\x17\xc2\x54\xf9\x19\x9e\xe1\x0c\x24\xc8\x02\xd1\x02\xbd\x87\x49" "\x51\x3d\x31\x45\x20\x1c\xa4\xe0\x1b\xc7\xc8\xbb\xcf\x43\x0a\xfa\x54" "\x1e\xc5\x66\x5f\x86\xdf\xb1\x43\xbe\x64\x85\x21\xbb\x0f\x2b\x02\x90" "\x18\x20\x14\x44\x78\x7f\x64\x4f\x8c\x88\xb7\x9e\x75\x4e\x6e\xa9\xc7" "\x97\xba\xbd\xae\xc7\x2a\x96\x80\xab\xad\xf3\xa4\x16\x84\xcd\xd5\x7c" "\x2b\x6e\x83\x3a\xcc\x08\x46\xbe\x5a\xa9\x27\xf1\xb1\xb3\x65\x62\xd2" "\xac\xb9\xec\xfb\x75\x84\x55\x23\x0d\x05\x0d\xae\xc6\x74\x8b\xa2\x80" "\xa5\xed\xc8\x6d\x48\xe3\xf8\xaf\x0f\x8f\x4f\xfb\x18\xae\x3c\xd3\xc1" "\x9a\x82\xd5\x04\xa4\xfd\x52\xbb\x62\x28\x9a\xe8\x02\x65\x72\xa4\x97" "\xfe\x26\x8f\x87\xef\x4b\x4b\x58\x86\xaa\x07\xee\xb6\x98\xb7\xcb\xf9" "\x96\x83\xf7\x10\xaf\xc9\xed\x1f\x8a\x48\x88\x83\xce\x0e\xb8\xf7\xfd" "\x05\x5b\x82\xa9\xfe\x21\xa4\x09\xca\xa2\x31\xc4\x1b\xa1\x51\x00\x8e" "\x96\x58\x91\x9c\x61\x1e\x15\x7d\x7f\x39\x26\xa5\xe4\x24\x85\x32\xa6" "\x86\x0e\x61\x5b\x9c\x86\xe9\xfe\xa2\x12\x12\x8d\x96\xed\x58\xc9\xb8" "\x4e\xf2\x27\x06\x07\x1e\xb6\x9f\x49\x2e\x4d\x83\x21\xed\x9f\xaf\x6c" "\x6a\x89\x28\xf8\x61\x72\xbd\xc9\x30\x24\x45\x83\xea\x15\xbe\x49\x7d" "\x9c\xe4\xae\x79\xcb\x3e\x62\x93\xa8\x51\x2f\xfa\xa9\xe8\xe3\x58\xf3" "\xc7\xc7\x11\x70\x01\xfb\x92\x89\x1a\x40\xb8\x4f\x91\x26\xcc\x3d\xef" "\x5c\xde\x67\xf4\x63\xbb\xac\x96\x68\xb9\xf5\x6c\x3e\x4e\xe7\x2f\xce" "\xeb\xb4\x7e\x52\xfc\x22\x6b\xab\x21\x3d\x81\x93\x51\x6e\x70\x64\x45" "\x9f\xd1\x36\x53\x50\xa9\x5c\x5a\x1c\x3a\xc4\x4a\x73\xbb\xba\x2a\x4c" "\x17\xeb\xe4\x9d\xd7\x81\xbf\xf1\x99\x5c\xd7\x06\xb7\x7b\xb5\x33\x11" "\x75\x94\xad\x63\x56\x6f\x4c\x07\x30\xbe\xab\x85\xff\x4c\x71\x3b\x7f" "\x10\xb9\x54\x80\xfe\x99\xa0\xf6\x76\xc5\x1c\xa1\x11\x16\xb2\x1e\x87" "\x88\x7b\x46\x2a\xa9\x77\x0e\x85\x50\x9e\x4e\x60\xf1\x98\x14\x81\x15" "\xf0\xa3\xce\x60\x28\x51\x6a\x94\x61\x78\xd1\xac\xac\xf7\x76\x7f\x6b" "\xe7\x27\x78\x91\x36\x9e\xff\x67\x76\x2a\xa5\x8f\x92\x8d\x48\xb7\x23" "\x1e\x44\xd8\x99\xce\xa8\x28\x90\x03\x34\x91\x17\xa5\x3d\x61\xbc\x27" "\xb2\x07\xfd\xc9\x1c\x9d\xb6\x1e\x67\x7d\x1e\x1a\x1b\xc6\xa1\xb6\xe8" "\x56\x41\x30\xb3\x35\x23\x3d\xb4\xb5\xde\x8d\x62\x32\x4e\x6d\x0c\xcb" "\x2b\x08\xc2\xff\x92\x23\x24\xeb\x8c\x50\x67\x11\x14\x2d\x4b\x8d\x7a" "\x21\x22\x3e\xf0\xa3\xd5\x34\xfd\xb0\xde\x58\xbe\x95\xcd\x82\x71\x52" "\xf7\x1b\xdd\x0a\x82\x76\x6b\x62\xb4\xc8\x75\x36\xf0\xb7\xe7\xdf\x34" "\x3c\x42\x63\x18\x7d\xa8\x87\xde\x6e\x65\xd1\x1d\x03\x60\xe2\x37\x6c" "\x1d\x71\xc3\x67\xae\x85\xed\xee\xd8\xf7\x67\xd2\x4c\x64\x4b\x1a\x9b" "\x45\x5d\xed\x1d\xc3\xcc\x22\x4f\x99\x93\x6a\x6e\xe6\x69\x31\xc4\x5e" "\x5e\x3d\xb2\x42\x77\x19\xab\x2d\x5c\xd9\xc2\x0d\x9b\xb0\xec\x00\x4b" "\x69\xbc\xcb\x00\x64\x9f\x3d\x8e\x34\xa3\x57\x2c\x25\x7d\xe1\x14\xb9" "\xf0\x27\xd7\x6b\xc7\xdb\x90\x07\x17\x5c\xc0\x3b\x9e\x20\x61\xb6\xb3" "\xfe\x74\x09\xe0\x09\xb5\x37\x15\x44\xe5\x6f\xe4\x38\xcb\xd3\x61\xe5" "\xb1\x1e\xfb\xf2\xd7\x9d\x1c\x25\x0a\x1e\x73\xca\x8c\x60\x1c\x4f\x4d" "\x1e\x37\x61\x29\x09\x50\x42\x1c\x48\xc7\xda\xa4\x59\x65\xe4\x72\xf5" "\xef\x3c\x4b\x85\x97\x44\x4d\xc5\xdc\x01\xcd\x25\x35\x80\x55\xb5\x00" "\x06\x17\xf3\xe7\x29\x1d\xa3\x41\x3e\x3f\x08\x53\xb1\x27\x13\x66\x61" "\x24\x05\xc3\x5f\xf1\xb7\x85\xb9\x84\xd9\x21\xb5\x18\x42\x56\x28\xa5" "\x33\xa2\x9a\xb6\x5d\x3c\x11\xf4\x4c\x6d\xaa\x86\xf8\xb6\x45\x7e\xbb" "\x94\x19\x27\x4c\x48\x1a\xa6\xf3\xfa\x45\x47\x64\x16\x70\xaf\xf5\x8b" "\x9c\xc6\x2c\x09\x93\xd4\x9a\x50\x9f\x02\xde\xe7\x55\xee\x5f\x1f\xd2" "\x71\x0c\x99\x5c\x43\xa9\x1c\x4f\x87\x3a\xfa\x1b\xbd\xff\x19\x42\x7c" "\xba\x26\x41\x05\x2a\x8f\x36\x1e\xcb\xc7\x2e\x8a\x6c\xf5\x87\xe8\x3f" "\x8b\xd3\x11\x0c\x95\xfb\x08\x0e\xdc\x77\xa6\xd4\x3c\xd5\x8c\x44\x7b" "\x0e\x02\x26\x1e\x41\x09\x50\x0c\x64\x58\xdc\xe7\x0a\xcb\x17\xaa\x8f" "\x9d\xc1\xd1\x5b\x94\xa6\x13\x54\x16\x40\x31\xb5\xd5\x63\xc2\x5d\x02" "\x46\xfc\x45\xe6\x40\x1c\xef\xce\xb5\x01\xe1\x46\x89\x03\xe5\xd6\x77" "\x75\x9d\xbe\x3f\x24\xbd\x48\xce\x55\xff\x8b\x8f\x26\x52\x9f\xb3\xb2" "\xd6\x69\x20\x2a\x1e\x8a\x49\x89\x84\xb4\x49\xb4\x83\x0a\x01\x26\xb1" "\x8f\x0e\x78\x18\x2c\x9c\xe7\x8f\xe0\xc4\x48\xc0\xe2\x78\x45\xb9\x26" "\xcf\xde\x28\xfa\x85\xe1\x56\xfa\x98\xfe\xfa\xeb\x19\xed\x12\x47\xc9" "\x64\x3b\x44\x7b\x43\x42\xc9\x4c\x11\x4d\x3c\x4c\x35\xee\xd4\xd5\xb4" "\x9a\xa7\x0e\x6a\xad\x45\xbf\xb5\x57\xf1\x5e\x8f\xdb\x2d\x6e\x3d\x10" "\xd8\x33\x8a\x13\xfe\x3f\x18\x77\x51\x98\x5b\x37\xa5\xbb\x10\xb7\x50" "\xf7\x9e\x36\xfc\x2e\x2e\xe9\xbd\xec\xc3\xed\x15\x6e\x20\x2e\xd7\xb4" "\x5a\x94\x80\x9d\x77\xed\xaa\x39\x80\x42\xfc\x6a\x82\x5a\x48\x48\xc3" "\x34\xc5\x57\x30\x3d\x24\xeb\x3f\x8e\x01\xbe\x06\x99\x5c\xeb\x28\x3c" "\x70\x27\x2b\x00\xda\x61\xc3\x38\x16\x28\xf0\xe3\x72\xfe\x2f\xcc\x77" "\x9f\xf7\xda\xf7\xe4\xb7\xf2\x68\x6c\x39\xd3\xfa\xb6\x74\xb8\x86\x7b" "\x62\xb0\xbf\x9d\x5c\xfd\x0c\x1d\x3b\x27\x05\x21\xf5\x5f\x14\x7d\xe7" "\x51\x42\xff\xd7\xfc\x9a\xc7\xe5\xda\xe7\xca\x2f\xdf\x26\xa9\x22\x2d" "\x06\x08\x23\x85\x24\x09\xdd\x04\x0c\xfd\x1f\x66\xf2\x18\xc6\xdb\xda" "\xaa\xcd\xda\xb3\x4b\x12\x3a\xf2\x2f\x97\x38\x4d\x64\xfa\xc6\x4d\x84" "\xfd\x63\x8c\x96\x37\x8c\x8f\x95\x32\xa1\x19\x27\xd4\x84\x40\xbc\x77" "\x7f\xf8\xb8\xb9\xbe\x88\xf9\x30\xf3\xb5\x79\xa7\x13\xc0\xbc\x44\x9d" "\xca\x3a\x3b\xd5\xf2\xef\xa9\x82\x40\xcc\xc5\x94\x29\x9e\x44\x45\x1d" "\xc6\x0c\x6c\x5c\x9e\xdd\x0d\x7b\x77\x79\x12\xb3\xdc\x40\xc5\x7e\x0e" "\xa5\xf4\x42\x5c\xd7\x04\x7e\x68\x6c\x73\x04\xf0\x4b\xa9\xf7\xb5\xde" "\x6a\xd2\xbd\x52\x4f\x1d\x29\xf8\x80\x2a\x52\x44\x41\xfa\x28\x60\x15" "\xad\xf4\x58\x94\x31\x71\x0a\xa4\xd7\x6d\xe8\xa9\x56\xdc\x1d\x39\xc0" "\xa1\x3a\xbb\x7f\xc3\x09\xd2\x42\x22\xd0\x36\xe2\x04\xab\x6b\xb4\x6e" "\xf8\xa7\x59\x5d\x9e\x45\x12\xe0\xb9\xd5\xf8\xfd\x71\x9a\x4e\x30\x72" "\xe1\xd8\x06\x96\x70\x45\x78\x9c\x67\xa1\x68\x1f\x2a\x9f\x1f\x4b\x19" "\xf4\xf5\xe1\xaf\xda\xfc\x17\xdb\x7a\x6d\x51\x96\x16\x14\x99\xe6\x2a" "\xb4\xb0\xec\x27\x64\x8f\x3e\xeb\x1f\xb2\xb7\x8f\x8e\xcf\x9b\x05\xcf" "\x95\x09\xa3\xb9\xe2\xa3\x61\x23\x8d\xeb\x1c\x91\xbd\xbc\x8b\x1d\x11" "\xbb\xeb\x93\x9f\xd9\xda\x81\x1c\xd4\x39\x06\x9d\xa0\xec\xc0\x06\x65" "\xd7\x23\x57\xaa\xc0\x1f\x25\x9a\x03\x25\x40\x9b\x20\x18\x59\xcc\x05" "\x69\xe0\xeb\xa6\x7a\x7a\x9c\xa7\xe8\xb7\x80\x78\xd9\x37\x0b\xd3\xe3" "\x7f\x05\x71\x68\x0e\xde\x60\xcb\x6b\xbf\xe6\x94\x35\xd6\xab\x5e\xfd" "\x80\xcf\x05\x1d\x11\x9a\x70\x04\xfc\x0b\x60\x08\x44\xd4\x92\x18\xd8" "\x44\xde\x8f\x52\x15\x24\xa4\x7e\xe5\x02\x29\xc7\xda\x25\xe4\x2a\x86" "\x39\xb5\xdb\x22\x5e\x7f\x23\x96\x7f\x5d\x4f\x8a\x29\x7a\xff\x04\xa3" "\xcb\xed\xc2\x98\x5b\x63\x93\xa5\xba\x0b\x26\xb6\xc7\xb4\xca\x22\xd3" "\x69\xb3\x5b\x41\x07\x99\xd1\xad\x02\x82\x51\x04\xd3\x4f\x73\x40\x8d" "\xb1\x94\x84\x38\x59\x79\x31\xed\x1c\x1c\x26\x0e\x78\x34\x05\x17\xbf" "\xa2\xf7\x34\x53\x7d\xbd\xf5\xec\x30\x35\x18\xff\x46\x40\xef\xe7\xf7" "\xb1\xc2\xf4\x6b\xab\xdb\x92\x47\xce\x8e\xab\xad\x97\x18\xa8\xb9\xdd" "\xb7\xa1\x8d\x5e\x87\xce\xd5\x54\xc9\xd6\xde\x78\xf8\x5d\x29\x33\x49" "\x59\x0c\x6c\x32\x48\x35\x34\xbc\x96\x8b\x24\xa2\x8e\xb5\x4b\x95\x15" "\x58\x9d\x6d\xd8\xeb\x51\xa5\xad\x0b\x4d\x89\x6c\xe9\x22\x50\x39\x7c" "\xbc\x40\x43\x23\xfc\xdf\x0e\xe4\x7e\xd6\x34\xe0\xc5\x82\x13\xbc\x5b" "\x35\xa7\x2b\x21\xa0\x98\xe1\x1b\x79\xc0\x61\x43\x0d\xc8\x17\xc1\xe0" "\xc7\x9a\x5b\x6e\xd3\xb0\x02\x97\x99\x33\xf1\xb8\x3a\x17\xf2\x50\xb1" "\xbd\x5c\x49\x58\xdf\x4d\x75\x53\x1c\xa0\x3e\xfb\xda\x89\xf6\xa9\x2f" "\xe0\x8c\x23\xad\x90\x14\xff\x56\x2a\x7f\x3d\xcd\xe5\x78\xd6\x82\x5b" "\x98\x47\xb5\xdf\x04\xdb\xca\x4f\x2a\xa5\x2d\x8e\x0f\x4c\xf8\x18\x3c" "\xe1\x21\xe3\x9b\x50\x35\x8a\x97\x96\xac\xde\x03\x72\xa8\xff\x97\x76" "\x98\x74\xa8\x0a\xb9\x97\xcd\x88\x91\x45\xaa\xd4\x88\x8c\x06\x96\x3c" "\x2f\x5b\x82\xf5\x3a\x74\x8a\x67\x29\xfb\xc7\x9d\x35\xc0\x6d\x84\xe0" "\x5c\x62\xe4\x4f\xf7\x80\x40\xe5\x6e\xbf\xc6\xef\xcf\x0d\x8b\x49\x33" "\x7d\x5a\x17\xc4\x04\x1f\x0d\x5a\x8b\x61\x62\x44\xd5\x85\xa1\x62\xb6" "\x9d\xb0\x73\xac\xcd\x90\x71\xd1\x2d\xf5\xb3\x26\xa4\x3b\x83\x4b\xbf" "\xfc\x2f\x2a\x60\xde\xaf\xcb\xdd\xf1\xc6\x43\x8a\x17\x69\xd6\xfb\x09" "\xfb\xe1\x99\x0e\x89\xda\x12\x16\x4e\xf2\x37\xf3\x26\xed\xb5\xbe\x64" "\xbb\x64\xb1\x43\xa0\x30\xde\x8a\x99\xb3\xc5\xe5\x43\xc8\x71\xcb\x58" "\x1e\x2b\xe0\x90\xa9\x21\x34\xaa\x58\x77\x01\xf8\x64\x90\x7c\xad\xd7" "\xc1\xce\x20\xfc\xf8\xf5\xdc\x7f\x7e\xcd\x06\xa6\xc1\x9d\x89\xa9\x2c" "\xa0\xad\x43\x93\xc2\x08\xb8\x0b\xba\x99\x0c\x7a\x37\x02\xa9\xc7\x9b" "\xdd\xde\x75\xd5\xdb\x24\x47\x19\xac\x32\x19\x1b\x6c\xeb\x04\x1a\xb5" "\x41\xfb\x47\x68\x0a\x97\xdc\x04\x22\xb8\xa5\x0d\x91\xe3\x2c\xb0\x8c" "\xd3\x41\xb0\xb0\x99\xac\xa5\xbd\x12\xb6\x9d\x4f\x89\xd1\x0b\x75\x5b" "\x35\x1a\x64\x89\x18\x0b\x78\x6a\x3b\xeb\xac\x92\x65\x32\xa4\xa2\xd8" "\x5b\x07\xbc\xe6\xc0\x90\xd1\xaa\xaf\xf0\x79\xe3\x6d\x53\x94\xa6\x12" "\xf1\x35\x1b\x90\xc1\x3a\x0f\xa6\xbf\x9d\x18\x8d\x54\x8d\xfe\x6f\xa5" "\x1a\x90\x26\xed\xb5\x20\x09\xc0\x3e\xd4\x5a\xc5\x1d\x05\xc5\x8a\x95" "\x7b\xcc\x67\xe0\x5a\x58\x89\x85\xba\x00\xd7\x9f\x33\xae\x9c\xdd\x5f" "\x57\x21\xd9\xfd\xc7\x2e\xe6\xe8\x80\x70\x8b\xe8\x7e\x8a\x60\xc3\xc0" "\x35\xc1\x46\xf2\x09\x1d\x1b\x9a\x4c\x2c\xfa\x56\xf2\x92\xfe\x1b\xa6" "\x22\x90\xd4\xe5\x6c\x05\x66\x92\x91\xbb\xe9\x17\xf3\xca\xc5\x18\x02" "\xa2\xcc\x8e\x9c\x90\xda\xdf\xe6\x66\xc2\x33\xc5\xa5\xbb\x71\xee\x17" "\xde\xec\x51\xce\x60\xc7\x3f\x57\xbf\x9e\xcb\x84\x87\x3a\xfc\xc4\x48" "\x15\x13\x18\x10\xc6\xc1\x21\x7b\xea\x48\x5e\xf9\xaa\x27\x85\xe8\x59" "\xb2\x53\x15\xef\x8a\xa3\xa2\x74\x98\x27\x86\xe4\x5d\x62\x2a\xe8\x31" "\xfb\x76\x01\x0d\x69\xa1\x81\xb0\x69\xe4\xcc\x55\xd4\x43\x6e\xdb\x10" "\xd1\x11\x9b\x0c\x60\x00\xc6\xd5\xcf\xf7\xc7\x2f\x74\x0a\x59\xdc\x05" "\x07\xe7\xa9\x52\xb6\x94\x03\xc6\x26\x73\xf1\x22\xc9\xd1\x26\x4f\xac" "\x6c\xe2\x26\x2e\x86\xcd\x8d\x6a\x40\x26\x72\xf8\x85\x30\xfc\x2d\x16" "\xf3\x17\x36\xdd\x49\x7a\x4e\x85\x32\x53\xac\x8d\x5a\xff\x8d\x13\x76" "\x89\x5e\x9f\x55\x19\xb2\x49\x0c\xc2\xa2\x41\x2b\xa0\xc9\x9c\xec\x85" "\x5f\x66\x88\x37\x31\x00\x35\xe9\x2f\xb6\x46\x48\x6d\xe1\xb0\xac\xff" "\xb9\x1a\xe7\x51\x6d\xf3\xee\xef\x38\x14\x56\xb5\x5e\x65\xba\xa5\x8e" "\x71\x46\x1c\x92\x86\x87\xe6\x99\xd2\xb2\x18\x14\x80\x55\x91\x38\x2e" "\x95\xe1\xb9\x70\xaa\xa5\x32\x59\x91\x7f\x07\x02\x81\xf2\x33\x6b\x7d" "\x57\x02\x49\xd8\x38\xb3\xf1\xa3\x27\x53\xc3\x36\x86\x4e\x15\xf4\x56" "\x1b\xad\xf8\xfe\xe0\x34\xa2\x9c\x52\xff\x3f\xca\x74\x56\xae\x14\x0f" "\x83\xe3\xb2\xfd\x5b\x57\xc9\xae\xf3\xf2\x0c\x66\x42\x00\xd2\x35\xf2" "\x36\xec\x47\xdd\x2f\xc2\x0b\x14\xdc\x60\x00\x81\x22\x37\xae\xa9\x92" "\xd9\x87\xe5\x46\x06\x79\xe8\xc5\xb7\x6d\x93\x1e\xf6\xd9\x51\xe6\xc7" "\x08\x7e\x31\x06\xb6\xce\x2d\xb9\xde\x6f\x22\x8f\xdf\x3f\xfc\x38\x71" "\x0c\x0e\x8d\x50\x00\xa1\x95\xa7\x9d\x1f\xa2\x30\x10\x38\xf5\xb2\x7c" "\x40\xb0\x9c\x34\xc0\x25\xe5\x09\x9d\x40\xc2\x20\x4e\xa0\xea\xe9\x85" "\x26\x3c\x91\x01\xca\xb8\x8d\x68\x57\xa3\x20\xc9\xe4\x97\xf2\x23\x48" "\xa2\x48\x61\xa5\xfb\x8d\x73\x4e\x08\xca\xd0\x9f\x99\x33\x74\x8f\xf0" "\x1e\xab\x22\xf1\x77\x56\xf5\x86\x88\xdc\x1b\x48\x6a\x39\x75\x63\xee" "\x9a\xd0\x78\x4b\x88\x33\xcd\xb5\xf7\xc6\xbc\xf7\x6d\x9c\x11\x05\xf7" "\x1c\x3c\x6a\xab\xef\xd7\x0d\xc6\xcd\x5c\x66\xd3\x1c\xaf\x91\x61\x45" "\xac\x5e\xd7\xfa\x07\x0b\x42\x77\xc0\x44\x8a\xb1\xeb\x78\xc9\x43\xbe" "\x9a\xea\xb0\x58\x7d\x32\x1a\x4b\xcb\x77\x54\xf0\x70\x88\x11\x78\xf8" "\xbe\x66\x8b\x68\x61\x24\x89\x9f\xac\x25\x25\x19\xf4\xb6\x0e\xc4\x2d" "\xb7\x66\xa9\x08\x75\x50\x40\x46\x31\x25\xc2\x68\x50\x17\x74\x02\xa9" "\x77\x24\x6d\x36\xd2\x3a\xfa\xc0\xa1\x18\x89\xd5\x46\x40\xbd\x8f\x6f" "\x67\x0d\x68\x6c\xfd\x33\xf6\xfc\x5d\x90\xcf\x6c\xbd\x63\xd9\xd0\xfd" "\x20\x1d\xd4\xc7\x4d\xbb\xab\x89\x9f\x3c\x23\xc0\xb7\xe3\x7e\xa0\xb2" "\xaf\xf4\x21\x32\x72\x00\xd0\xda\x58\xb5\x89\x3a\x41\x86\xae\x36\x52" "\xcc\x6e\x11\xc2\xc2\xa0\xe5\x21\x84\xa3\x87\x25\x32\xac\xce\x98\xc9" "\x4c\xeb\xf4\xf3\x13\x33\x66\x3a\x62\x0f\x0d\xba\x0f\xfd\x89\xc3\x12" "\x43\x80\x07\x5b\xd2\x8c\xaa\x6d\x44\x9a\x05\x0b\x36\x61\xb8\xfb\xaf" "\x47\x47\xb7\x7c\x49\x28\xb1\x37\x8f\xdc\x8c\x7a\x7b\x38\xad\xe1\xae" "\xec\x44\xbd\xfa\xcc\x82\x71\xd0\xb1\x32\xb2\x02\x9b\x0f\x35\x82\xf9" "\x91\x9f\x5c\x8c\xd5\x43\xab\xc9\xca\xf6\xb8\x2b\x19\x7c\xd4\x82\xc3" "\xef\x61\xa6\x47\x43\x50\x63\x42\xbf\x50\xa3\xc1\xff\x54\x45\x63\xbb" "\x8b\x20\x02\x91\x1e\xe1\xfa\xd6\x98\xf4\xac\x13\x3f\xfe\xd5\xbf\xe8" "\x12\x39\xc9\x18\x20\x7a\x03\xc7\xa8\xbd\x71\xa0\xa5\x02\xae\xa7\x8d" "\x38\xe9\x70\xe3\xab\x2a\xbf\x75\x4b\x59\x8a\xcb\x79\xcf\x27\x67\x92" "\xaa\x08\x72\x4d\x0b\xa2\x4f\x2a\x69\x49\x12\xab\x79\x5b\x3f\x45\xf5" "\x2d\xec\x50\xd9\xbf\xbc\x99\xae\x27\xe1\xd2\xc2\x21\x6a\xfe\xc6\x70" "\x9d\x65\x13\xa6\x4b\x29\xef\x58\x25\x5b\xbe\x18\x47\x8c\x5d\x4f\x15" "\xf7\x4e\xa6\x3a\x1e\x15\x48\x77\x52\xee\xc8\xfd\x01\x9f\x1d\x4a\x7a" "\xa2\x52\x77\x66\x47\x54\xbd\x2d\x7c\xd3\xa7\xa0\x18\xb9\x2c\x56\xd9" "\x65\xa1\x97\x48\x85\x36\x37\x57\x28\x6d\xa9\xe0\x55\xef\x7f\xac\x17" "\x87\x6f\x0a\x64\xc1\x02\x6a\x59\x77\x33\xb8\x97\xa9\x15\x5e\xcb\xf4" "\x20\x15\x9a\xe8\xe5\x20\x9a\xa8\x3a\x35\x44\xff\xf1\xfb\x45\x66\xf2" "\xd5\x4f\x95\xe3\xbb\xd3\x0d\xcc\xa5\xf2\x43\x97\xe4\xbd\x47\xff\x01" "\x29\x2f\x0d\x6f\xe9\xdd\x47\xa8\x10\xe0\xc2\x53\x82\xfa\x69\xb4\x98" "\x7d\x1a\xfd\x9b\x69\xef\x12\x51\x10\xad\x6b\x24\x0e\xaa\x9c\x85\x82" "\x9a\x26\x46\xf9\xab\x78\x74\xbc\x02\xbf\xa8\x34\x6c\xc9\x19\x09\x43" "\xe9\xd4\x6b\x44\x88\x06\x70\xb1\xe2\xaa\x3a\x29\xe8\x3b\xe5\x47\x2d" "\x74\x18\x88\x5a\x35\x3f\xaa\xde\x6e\x8b\x18\xf4\xb5\x88\x60\x7b\xbb" "\x75\x85\x88\xd1\xe2\xf1\x1a\x9d\xfa\x1c\x4d\x61\xbe\x50\x24\x9f\x1e" "\xe3\x2e\x6f\xf8\xc0\xc7\x72\x2a\xae\xc1\xbc\x79\x65\x4a\x47\x72\xef" "\xc5\x78\xbd\x6a\x14\xc7\x9a\xbc\xc7\x7a\x4e\x09\xc8\xb6\xc6\xea\x35" "\xcd\x3a\xb3\x1e\x35\x26\x8f\xb5\x5d\xb8\x43\x17\x6f\x80\x42\xf8\xce" "\x7b\xe0\xdd\xd4\xea\xd6\xdb\xda\xd0\xef\x9e\x7c\xb2\x32\x3d\xb5\xcc" "\x48\x11\x9a\x72\xb2\x73\x06\xb8\xff\x63\x66\xc0\xbc\x68\x2a\x85\xab" "\x9e\x2c\xf2\x23\x8b\x6d\x6e\xb2\xe3\x8a\x97\xd5\x57\x7e\x63\x34\xcb" "\x2a\xa6\xe7\xc8\x6e\x48\x9e\x87\x6f\x9d\x70\x53\x57\x7a\x5c\xb5\x7f" "\x52\x81\x2f\xab\x7c\x4b\xd7\xb1\x9a\x34\xc2\x28\xff\xb6\x7d\xca\xc9" "\x28\x16\x12\xf7\x78\xb5\x8c\x58\x0c\x14\x05\x42\x20\x0f\xd0\x0c\xb3" "\xad\x81\xd9\x34\x20\xdf\x93\xc5\xaf\x24\x93\xf6\x46\xd8\xde\x79\x71" "\x02\xfa\x0a\x65\x24\x73\x17\x88\x2f\xbf\x17\x15\x20\xf0\x0b\x2c\x76" "\x38\x62\x3b\x82\x3f\xf1\x14\x44\xfd\xde\x45\x35\x70\xf9\x9f\x90\x99" "\xb6\x00\x61\xa9\x08\xb8\x33\x83\xba\x8b\x82\xbb\x78\xed\xd0\x74\xdc" "\xcf\x93\x42\xaf\xdf\x8d\x11\xa6\x12\x9b\xa6\xea\x70\x30\xf3\x62\x90" "\x56\x26\x4f\x17\x36\xc2\xb9\x26\x17\x1b\x6d\xc7\xe1\xfa\x45\x5a\x47" "\x3d\xe6\x56\x39\x04\x95\xf3\xb6\xad\x2f\x9f\x46\xf3\x5e\xac\xb0\x75" "\x62\x8f\xf7\x39\xef\x78\xf2\x8b\xa6\x83\x44\x80\x68\xc7\xf1\x8f\xb6" "\x3f\x28\xba\x7d\xbb\xb7\x89\x99\x10\x0d\xde\x0a\x94\xe8\xb8\x57\x08" "\x17\xc7\x11\x4c\x13\xe1\x39\xce\xb3\x33\x78\x2b\x29\xa8\x4a\x5b\x19" "\x49\x7f\xa7\x85\x91\x5c\x76\x80\xdd\x7f\x97\x2c\xb5\x9b\xa2\x21\x61" "\xf6\x08\x86\xe5\xcb\x3c\x3e\x80\x87\x26\xcb\xf9\x6b\xc4\xda\x78\x91" "\x4e\xee\x56\x5c\x6d\x9d\x18\xe7\x0d\x22\xcf\x8c\x02\x44\xcf\x3c\xf4" "\x88\xc3\x55\x0e\xaa\x40\x0b\xc0\xf2\x6d\x64\xe0\xf1\xbc\x8d\x03\x01" "\xa8\x41\xd9\x54\x07\x3a\x64\x1f\x3e\xf8\x83\xd8\x1f\x4d\x5d\xb8\xe9" "\xdf\x70\x8e\x64\xe6\x40\xb3\x8d\xf7\x29\x5f\x7f\xe5\x73\x86\x36\x53" "\x08\x6b\xae\x55\x07\xc8\x80\xab\x7f\xdb\x7a\x6c\x5c\xe7\x70\x27\xff" "\xa7\x39\x52\x33\xd3\xce\x53\x6d\x77\xae\x6c\x2e\x9c\x8f\xfb\x6f\xee" "\x78\xa3\xbc\xb3\xb5\xf8\x88\xbd\x59\x5c\xaa\x3a\x55\x86\x94\x87\x76" "\xb9\x50\xa8\x9c\xde\x4d\xb8\x24\x7f\xff\xf2\x74\x91\xc8\x82\xb4\x30" "\xaf\xdd\x60\xe7\xa2\x23\x24\xf6\x63\x5a\x9a\xa7\x13\x9f\x3e\x62\x4c" "\x6d\x9e\xce\x60\xf7\xf8\x15\x3b\x20\x80\xcf\x05\x44\xfb\xf8\xe1\xc4" "\x36\x50\x37\x66\xe6\x70\xb9\x02\x60\x4a\xb5\x21\xe1\x1a\xa5\xa6\x5c" "\xed\xd6\x4c\xfa\xf8\x98\xac\x5f\x55\xc0\x8c\x87\x69\x3c\x32\x35\x17" "\xbc\xb0\xd9\x9c\x28\xf5\xe0\x72\xd4\xf6\x54\x0c\x7e\xad\x70\x13\x8d" "\x47\xc1\xa6\x7f\xd7\x2b\xd6\xef\x56\x13\xaf\x33\xa0\xaf\x31\x1c\x3d" "\x0a\x63\x1c\xa2\xa2\xdf\xbe\x35\xd1\x02\x1e\xb6\x10\xe4\x0b\x9b\xe1" "\x28\x68\x32\x35\xa7\x88\xb5\xa4\xca\xcf\x99\xba\xbe\xe3\x82\x45\x8d" "\x59\xe8\xaa\x1d\xd7\xbb\xa7\xe0\x9d\xd3\x0c\x05\x5a\x3d\xf8\xed\x72" "\x1a\x17\x78\xb2\xc6\xed\x58\x7a\x40\x35\x66\x32\x5c\xd1\x99\x62\xed" "\xd7\x83\x1c\xaa\x44\xa6\xb7\x16\x51\x7b\xad\x50\x21\x30\xe7\xcf\x6a" "\x5c\xe5\x28\x8d\xc8\x4c\x01\x70\xf6\x22\xae\x0b\x1e\x11\x66\xa9\xc2" "\xc0\x77\x1d\x91\xdf\x9f\x9d\xd8\x2a\xe2\x10\x46\x96\x02\xce\x38\x96" "\x47\x46\xc1\xc1\xd0\x43\x21\xaa\xe7\xd4\x64\xeb\x80\x1d\xbe\xa7\xec" "\x39\x50\x54\x57\xe7\x78\x20\x87\x74\xd7\x26\x73\x62\x6c\x99\x8b\x00" "\x2c\x46\xa9\xb4\xb1\xe3\x90\xd9\x34\x4f\x0c\xa6\x22\x12\xa1\xb6\xd4" "\x10\x43\xa2\x10\x0b\x35\x19\x6b\xce\x42\xd4\x0c\xaa\x0e\xa9\xa4\x86" "\xbf\x85\x26\xfd\x1f\x0f\x0d\x36\x2c\x2c\xac\x46\x3e\xa7\x37\x7a\x20" "\xb5\x4b\x94\x35\x44\x2c\xa5\x29\xfc\x00\xda\x4f\xd7\xe2\x7c\x4e\xaf" "\x14\x21\x5a\x06\x85\x7b\x54\x25\x4c\x26\x34\x69\x56\xfd\x7f\xe2\x15" "\xa5\xce\x57\xec\x38\xce\xdf\x50\xa3\xc7\x59\xe5\x63\xa4\xfd\x87\x49" "\x4f\x00\xe7\xbd\x9b\x44\xf3\xb7\xe9\x9c\x6e\xf6\x71\x87\x05\x6a\x21" "\xd2\xfe\x1a\xc9\xd2\x41\x25\xb1\x94\x7e\xb2\x93\x18\x9f\xdc\x44\x8b" "\x59\x1a\xf4\xd9\xb8\xeb\x09\x1d\x6b\xbb\x5e\x50\xfa\xe7\x9d\x00\x00" "\x44\xe2\x82\xbb\x2a\xb6\xc6\x3c\xc9\x56\x2b\x15\x1c\x21\x4e\x45\x01" "\x53\x54\xe6\x2b\xe6\x3e\x18\x81\x23\x8b\x90\x7f\x7b\xdb\x79\x1f\xf4" "\x4a\x4e\x03\xfa\x29\xdb\xd2\x6d\xb2\xf4\x9d\x0f\x47\x29\xb7\xcd\x9b" "\xa6\x9a\x65\xb0\xb4\x93\x46\x6d\x35\xd0\x9b\x3f\x59\x0c\x67\xc3\x16" "\x60\xd9\x5e\x2a\xb4\xaf\x2c\x9f\x1d\xf9\x1f\x04\xce\x5a\x57\xdd\xe2" "\xd7\x52\x06\xb4\x2e\x34\x23\x12\x67\x74\xd7\x65\x93\xc2\xf7\x13\xae" "\x27\x9d\x70\x92\x50\x6b\x51\x3f\xd5\xd1\x8f\x0f\x52\xd3\xfa\xfd\x71" "\x41\xdf\xd4\xa0\xde\x10\x63\x75\x4d\xba\x86\x5f\xaf\x8d\xc0\xf6\xbe" "\x9d\x90\xef\x21\xec\x86\xa2\x75\x53\x3f\x6a\xd4\xb4\xe3\x60\xdc\x77" "\x54\x13\xf2\x9e\xab\x8b\x3d\xaa\xc6\x27\x9b\x9a\xbf\xe1\x63\xea\x2f" "\x18\x3e\x09\xed\x91\xef\x67\xfb\xb0\x90\x87\x51\x09\x28\x8a\x18\x2c" "\xfd\xcc\x46\xd9\x06\x78\xef\xe5\xed\xce\xda\x65\x18\x33\x5e\x67\x84" "\x38\xca\xc4\xbb\x47\xd3\x76\xf3\xf0\xe1\x2a\xa5\x53\x01\x73\x5d\x7f" "\x42\x65\x3c\x07\x3d\x6a\x4a\x37\xb2\xe1\x7d\x33\x2d\xc1\xbe\x6b\x50" "\x91\x8c\x00\x7b\x14\x88\x63\x07\xcc\x39\x25\x0e\x81\xef\xec\xd6\x3d" "\x24\x06\x7a\x49\x99\x45\x72\x72\x5a\x9d\xf1\x76\x0c\xaa\xc1\x3a\x28" "\xf5\x25\x55\x56\xb2\x7e\xc2\x45\xe9\x39\x69\xb8\x5c\xde\xc7\xcd\x1c" "\x2d\x2a\x43\x3d\x3f\x95\x72\xb9\x30\x54\xa7\xce\x8a\xdf\xf8\x1b\xc1" "\xd3\x08\x84\xd5\xfc\x47\x91\xe2\x51\xbd\x90\x7e\x37\xaf\x5b\xec\x74" "\x23\x5c\x3e\x2f\x80\x4e\x4e\x04\x50\xb7\x15\x28\x99\x42\xb7\x85\x9a" "\xd2\x07\xba\xfc\xfe\xc1\xb5\x86\xdc\x15\xe7\x91\x1f\xe6\xd2\x0a\xa3" "\xd0\x2f\xcd\x47\xe9\x95\x67\x80\xe3\x00\xd7\xc5\x3c\x17\xdf\xa1\x57" "\x54\xde\xb4\xc2\x0e\xfe\xbc\x72\x70\xbd\xa0\xfa\x6b\x37\xfc\x88\xc6" "\xbe\x42\x50\xca\xc3\x8c\x1b\x81\x86\xb3\x64\x48\x20\x26\xab\x52\xd6" "\x5d\x3a\x69\x19\x03\xfc\xcc\x39\x77\x22\x77\x01\x1b\xfa\xa4\x21\xad" "\xba\x76\xbe\xd9\x73\x10\x77\xbe\xc8\x85\xce\x88\xd4\x0f\x36\xbb\xd2" "\xa8\x39\xc6\x7d\xc4\xb8\x62\xc9\x68\x49\x1b\x87\x7d\x4f\xd1\x3f\xc9" "\x0f\x8d\xa5\x7a\x29\x12\x1e\x12\xf7\x8e\x85\xaf\x76\x5c\xd6\x6e\x72" "\xba\x51\x35\x93\xfe\x1c\xdf\x20\x01\x99\x85\xb0\x65\xd8\x28\x70\x7d" "\x8e\x50\x9c\x68\x34\xea\xb1\x88\xde\xea\x5c\x9e\xe9\x79\x55\xf4\xb0" "\x7d\x37\xb6\xfc\x7b\xee\xd7\x3b\xe9\x48\x87\xd4\x23\xa3\x49\xf3\x5b" "\xb8\x78\x2b\xc6\x70\xce\xae\xc8\x70\xd9\x7f\x06\x1b\xda\x02\xae\x73" "\xf6\xd5\x75\xf8\x1e\x0b\x63\x26\xea\xe6\xc1\xb3\x08\x5c\xc5\x84\x68" "\x61\x20\xe1\x2d\xd9\xad\x8c\xe4\x40\x36\xbe\xc8\xa1\x89\xf9", 8192)); NONFAILING(*(uint64_t*)0x20000040 = 0); NONFAILING(*(uint64_t*)0x20000048 = 0); NONFAILING(*(uint64_t*)0x20000050 = 0); NONFAILING(*(uint64_t*)0x20000058 = 0); NONFAILING(*(uint64_t*)0x20000060 = 0); NONFAILING(*(uint64_t*)0x20000068 = 0); NONFAILING(*(uint64_t*)0x20000070 = 0); NONFAILING(*(uint64_t*)0x20000078 = 0); NONFAILING(*(uint64_t*)0x20000080 = 0); NONFAILING(*(uint64_t*)0x20000088 = 0); NONFAILING(*(uint64_t*)0x20000090 = 0); NONFAILING(*(uint64_t*)0x20000098 = 0x20000600); NONFAILING(*(uint32_t*)0x20000600 = 0x90); NONFAILING(*(uint32_t*)0x20000604 = 0); NONFAILING(*(uint64_t*)0x20000608 = 0); NONFAILING(*(uint64_t*)0x20000610 = 0); NONFAILING(*(uint64_t*)0x20000618 = 0); NONFAILING(*(uint64_t*)0x20000620 = 0); NONFAILING(*(uint64_t*)0x20000628 = 0); NONFAILING(*(uint32_t*)0x20000630 = 0); NONFAILING(*(uint32_t*)0x20000634 = 0); NONFAILING(*(uint64_t*)0x20000638 = 0); NONFAILING(*(uint64_t*)0x20000640 = 0); NONFAILING(*(uint64_t*)0x20000648 = 0); NONFAILING(*(uint64_t*)0x20000650 = 0); NONFAILING(*(uint64_t*)0x20000658 = 0); NONFAILING(*(uint64_t*)0x20000660 = 0); NONFAILING(*(uint32_t*)0x20000668 = 0); NONFAILING(*(uint32_t*)0x2000066c = 0); NONFAILING(*(uint32_t*)0x20000670 = 0); NONFAILING(*(uint32_t*)0x20000674 = 0); NONFAILING(*(uint32_t*)0x20000678 = 0); NONFAILING(*(uint32_t*)0x2000067c = 0); NONFAILING(*(uint32_t*)0x20000680 = 0); NONFAILING(*(uint32_t*)0x20000684 = 0); NONFAILING(*(uint32_t*)0x20000688 = 0); NONFAILING(*(uint32_t*)0x2000068c = 0); NONFAILING(*(uint64_t*)0x200000a0 = 0); NONFAILING(*(uint64_t*)0x200000a8 = 0); NONFAILING(*(uint64_t*)0x200000b0 = 0); NONFAILING(*(uint64_t*)0x200000b8 = 0); NONFAILING(syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20006400, /*len=*/0x2000, /*res=*/0x20000040)); break; case 5: NONFAILING(*(uint32_t*)0x20004300 = 0x50); NONFAILING(*(uint32_t*)0x20004304 = 0); NONFAILING(*(uint64_t*)0x20004308 = r[1]); NONFAILING(*(uint32_t*)0x20004310 = 7); NONFAILING(*(uint32_t*)0x20004314 = 0x26); NONFAILING(*(uint32_t*)0x20004318 = 0); NONFAILING(*(uint32_t*)0x2000431c = 0); NONFAILING(*(uint16_t*)0x20004320 = 0); NONFAILING(*(uint16_t*)0x20004322 = 0); NONFAILING(*(uint32_t*)0x20004324 = 0); NONFAILING(*(uint32_t*)0x20004328 = 0); NONFAILING(*(uint16_t*)0x2000432c = 0); NONFAILING(*(uint16_t*)0x2000432e = 0); NONFAILING(memset((void*)0x20004330, 0, 32)); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20004300ul, /*len=*/0x50ul); break; case 6: NONFAILING(memcpy( (void*)0x200021c0, "\x44\xea\x07\x86\x2a\x07\xee\xfa\x4d\xe3\x70\x92\xcf\x43\x56\xf5\x44" "\x54\xdb\x90\x30\x1c\x4d\x37\x3d\x57\x16\x6f\x79\x4f\x16\x9d\x63\x34" "\x48\x40\xa3\x70\x48\x63\x8f\xfd\x5e\x30\xbe\xad\xe3\xfd\x76\x8b\x18" "\x19\x10\x01\xeb\x89\x02\x77\xfa\xd8\xbd\xfe\x37\x42\x68\x6d\xee\xb3" "\x43\x95\x96\x3b\xcf\x7a\x87\x0a\xdd\xd7\x6c\x80\xab\xa9\xf7\x71\xeb" "\xdf\x41\x0c\x7d\x75\x42\xfc\x2b\x6a\xe9\xa4\x58\xd7\x94\x57\x75\x5d" "\x94\xba\x8a\x32\x48\xb0\x1a\x22\x93\xd8\xa7\x0e\x60\x81\x5b\x90\x29" "\x70\x02\x65\x29\x66\xa6\xb8\x36\x06\x5b\xca\xe0\xb4\x4f\x4b\x26\xbe" "\x93\xde\xc3\xcd\x4c\xdc\xbb\xc8\x4c\x5b\x91\x6a\x1b\x0d\x83\x13\x34" "\x06\x75\xd6\x7f\xb0\xc7\x85\xd0\x30\x7f\x95\xe4\x26\x54\x6c\x9a\x4d" "\x01\x61\xa8\xf5\x2b\x02\xb9\x5f\x4d\xa5\x3c\xed\x70\x5a\x65\x87\x22" "\x09\x18\x64\xd7\x4a\xc0\xa3\xa5\xf3\x85\x3a\x0a\xd7\x1d\xdb\x29\x83" "\x56\x80\xca\x9f\xf3\x05\x31\xf8\xdf\x0f\x0a\xc6\x6f\x7f\x14\x33\xc3" "\x3d\x75\xfa\x8f\x0f\x02\x2b\x17\x5d\xf0\x93\x64\x8a\x81\xaf\x5e\xd7" "\x01\xb2\xe7\xa1\x41\x99\xc8\x3b\x53\x9e\x76\x3d\xbe\x72\x28\xf2\xe1" "\x84\xa0\x2b\xec\xd4\x1b\xae\x30\x5d\x3f\x34\xc7\x2e\x8d\xb9\x3d\xd2" "\x14\xec\x20\x3e\xee\x6e\x6d\xab\x26\xb4\x18\x48\xc9\x5f\xe1\xec\xe8" "\xca\x15\x7a\x90\xbb\x7a\x99\x0d\xac\x5f\x3c\x64\xcf\x49\xc5\xc5\xaa" "\x84\x14\xb9\x15\x3f\x82\xec\xa9\xdf\x88\xd9\x0a\x8d\x6c\x0e\x72\xea" "\xcd\x52\xf8\x29\x39\xd4\x6d\x41\xe0\xf5\xcc\xf7\x08\xc0\x3f\xcc\xec" "\xea\x46\x7f\x33\xf5\xa4\x98\x88\x51\x47\x87\xe4\x2c\x0a\x12\x25\x5b" "\xca\x89\xe8\x23\x44\xab\x01\xac\x3b\x6c\x61\x58\xe3\xc1\xb3\x4a\xd9" "\x53\xea\xf5\x5f\x3a\x2c\x48\x7e\xfd\x94\x23\xa5\x42\xe4\x1d\xbd\x00" "\x58\xaa\x02\x1c\xb6\xfd\xc5\xdf\x88\xf8\x07\x03\x3e\xdd\x31\xab\xaf" "\x5f\xf7\xe6\xa9\x57\x8d\x2b\xe6\xa2\xd9\x25\xd9\x81\x08\xfd\xa2\xa7" "\xe5\x6a\x0b\xbc\xdc\xe0\x68\x9f\xa9\xe2\x11\x1b\x0b\xe8\xf3\xe2\x80" "\x7f\x7f\x37\x28\x48\x99\x17\xa0\x31\xf2\x18\x7a\xd9\x8a\x74\x4f\x19" "\x85\x16\x87\xad\xf5\x9a\x4b\x4c\x32\x8a\xd5\xc4\xf2\xea\xa0\xd1\x12" "\x04\x13\x69\x31\x9f\x6d\x3f\x92\x8c\x22\xd0\x5f\x9f\xd6\x8b\x5c\x26" "\x8d\xa5\xe2\xf4\x33\xd6\x51\xbc\x60\x2a\x65\xee\x83\x75\x2c\x0c\x92" "\xf7\xe2\x90\x02\xfa\xf9\x47\x5f\xbb\x57\x78\x8d\x72\x5f\x6f\x8f\xd4" "\x95\xa5\x8d\x88\xd5\x5a\xb8\x46\x7a\x85\xd1\xf4\x1d\xb5\x96\x4a\x19" "\xbd\xd4\x53\x77\xc7\xc8\xc7\x92\xde\x5e\x76\xe8\x7d\xa9\x29\x6f\xf9" "\x0e\x7f\xa9\xe5\x7f\x09\x35\x8d\x99\x8c\x87\x79\xbb\x23\x48\xd6\x51" "\x80\x8e\x96\x9e\x96\x07\x63\xc5\x23\x1c\x65\xa0\x6e\xe1\x69\x79\xf4" "\xd9\x90\xdb\xe7\xe1\x0b\x3a\x23\x92\xdf\xd6\x48\x3b\xf2\xc7\xc5\xf6" "\xf3\xd9\x41\xcc\x17\x66\x36\x68\xcc\xa8\x3d\xcc\x38\x08\x9b\x43\x42" "\xa8\x01\xc7\x40\x39\xb3\x25\x50\xc2\xd9\xcf\x95\xa0\x23\x65\x23\x93" "\x3c\xe3\xe7\x53\x8f\xf9\xda\x2b\x7b\x74\x1f\x3c\xbf\x53\xe6\x08\x47" "\x02\xd0\xa5\xda\xda\xb4\x35\x08\x48\xf6\xe7\xba\x46\xd4\x73\x6c\x7a" "\x2a\xe7\x02\xc4\x80\xc3\x0d\xd7\x8f\x99\x4a\x10\xb9\xc3\x15\x7a\x17" "\xe9\xe2\x95\x76\xa6\x81\x39\x40\x33\x00\x58\x6e\xb0\xc6\x73\x25\x2a" "\x31\x9a\xa1\xcb\x01\xef\xa7\x77\x22\x8d\x82\x42\xeb\xdb\xef\x9d\xb5" "\xc0\x3e\x4c\x8e\x09\xbf\x7a\x00\x9b\x7e\xb1\x93\x57\xd1\xad\x6d\x1d" "\xef\xc0\xdb\xb5\x8c\x31\xd8\x5b\x9f\x10\x35\x05\x66\x15\xad\x0b\x0d" "\xed\x12\x75\x12\x73\xc8\xbb\x78\x10\xcc\xc5\xb2\xef\xe5\x1d\x22\x38" "\x94\xb1\x41\xdd\xa8\x37\xe6\xb7\xba\x21\xde\x9a\x97\x8a\xc4\x47\xd9" "\x95\x39\x4b\x80\x0e\x10\x65\x90\x64\x55\xaf\x54\x4b\x9d\x7f\x35\x3d" "\x1e\xef\xcd\x33\x87\xd1\x8e\x36\x11\xf3\x91\x39\x26\xf3\xa4\xb8\x7e" "\xfb\x3a\x97\x07\xd6\x13\x6d\xc0\x0e\x49\xea\x5e\x7a\x6d\x0b\xea\x17" "\xeb\x49\xca\xe9\x3c\x0c\x44\x22\x37\x4b\x0f\x46\x25\x0e\x0d\x55\x4e" "\x10\x87\xc1\x39\x27\x16\xd3\x68\xb0\x4b\x1d\xa8\x5d\x27\x12\x06\xb4" "\x65\x60\x84\x68\x80\x2f\xae\x00\xc7\xad\x94\x25\x97\x4d\x82\x2c\xff" "\xbc\x42\x0e\x73\x9f\x76\x17\xf5\x9a\x87\x9f\x79\x1a\xb5\xdd\x7a\x62" "\x15\x29\x8c\xc7\xdc\x69\x04\x67\x98\x89\xe6\x0a\x09\x11\x4b\x0f\x42" "\x1b\x6f\x12\x86\xd0\xa6\xab\x3d\xc8\x87\xc2\xd3\xa4\x8d\x53\xa7\x61" "\x1e\xc2\x70\x53\x0b\x07\xa8\x3a\xe1\xa2\xbf\xa6\xda\x42\xab\x38\xbe" "\xc3\xeb\x8e\xd1\xe2\x07\xd9\x1c\x02\xe7\x4a\x31\xc2\x9a\xbb\xd2\x5f" "\x57\x79\x18\x9f\x5f\x24\x94\xea\x5c\x3f\x4b\x82\x9b\x96\xde\x0c\x54" "\xb3\x85\x1d\xd5\x86\x10\xc2\xb9\xdd\xcc\x29\x60\xf3\x4f\xb8\x57\xc5" "\xab\x1a\xa6\x7e\x8e\xb1\x0a\x59\x63\x9d\xb2\xdd\xeb\xd0\x20\x6a\xe7" "\xee\x56\xb2\x1e\xf4\x84\xe3\xc6\x60\x03\xaf\x46\x32\x6f\x1c\x45\x6a" "\xd2\xab\x52\x73\xd0\xc0\xb2\xbf\x41\x2f\x71\xf8\x20\xae\x12\x72\x3c" "\x74\xe1\x85\x7e\x0a\xe3\xd5\x58\x7a\x04\x27\xc1\x59\x5e\x06\xb1\xd5" "\xab\x5e\x81\x5a\x55\x58\x30\x2e\x0d\x9c\x50\xb8\xc6\xcb\xd5\x99\xeb" "\x55\x4d\xf6\xf7\x32\x3b\x01\xf1\x35\x3b\x55\x7c\x56\x5d\xfe\x0d\xe5" "\x10\x32\xa8\x85\x41\xb4\x9a\xb6\x82\xa7\xdb\xe4\xdc\xcb\x9b\x95\x2b" "\xa9\xc9\xce\x3b\xbf\xf8\x0a\xf0\x1e\x47\x95\x36\x66\x32\x7b\x8a\xcd" "\x7d\x2c\xf3\x63\xc6\xf7\x17\x2c\xaa\xf0\x1d\x8e\x34\x17\xf7\x68\xab" "\x08\xf2\xcf\xa7\xff\x26\xef\xd2\x19\xe2\x5e\xf0\xf9\xa8\x4c\x7b\x11" "\x69\x78\xee\xaf\xe3\x41\x09\x72\x49\x02\x03\xdb\xe4\x9a\xec\x33\xf1" "\x4d\x55\x92\xa4\x66\xa6\xef\xe6\x30\x90\x4d\xb9\xc7\x7e\xce\x20\xbe" "\xc7\x55\x2b\x3d\xfb\x48\xd4\xe0\x42\x7c\xe5\x02\x4f\xdc\x0a\xec\x72" "\x71\xe9\x3c\x51\xaa\xb1\x9d\x7a\x40\x67\x0a\xdd\x6e\xa5\x82\x0f\x62" "\x58\x31\xa5\x93\x13\x7f\x60\x54\x3e\x42\x48\x92\x85\x6b\x3b\xb9\xe6" "\x08\xe8\x8e\x65\xcc\x6d\xca\x09\x8d\x51\x39\xa3\x8a\xda\x51\x7c\xd7" "\x88\xb9\xf1\x36\x18\xd9\xc2\xc3\x1d\x79\x18\xca\xc6\xcd\x66\x97\x10" "\x69\x27\x97\xe6\x1f\x4d\xf3\x93\x8d\xd4\x29\xd9\x77\xcc\x11\xe7\x46" "\x5a\x7a\x23\x74\x00\x52\x03\x9d\x9b\x31\xcd\x26\xb9\x5e\xfb\xa1\x7b" "\xfc\xef\xe1\x21\xfc\xbb\x76\x2d\x29\x28\x71\x45\xb1\x1a\x3a\xbb\x3e" "\x06\x83\xb9\x21\x6a\x8b\x5d\x97\x44\xba\xa7\x5d\xa5\xd8\x40\xe7\x0c" "\xb3\x10\xc5\x07\xc4\xf7\xee\xf1\xd6\x53\x5d\x8e\x11\x07\x9e\xdc\xb5" "\x1d\xf7\xea\x63\xa7\x20\x4e\x31\x41\x47\xee\xb5\x79\x16\x17\x1c\xa3" "\x3c\x0f\x59\x32\x91\x6e\x4d\x56\x8d\x9e\x7d\xd3\x55\x55\x00\xae\x11" "\x9f\x0c\x63\x04\x56\x58\x30\x3e\x1f\x4e\xa9\x9c\x89\x6e\xae\xff\x3e" "\xbf\x76\xb2\xde\xf0\xea\x85\x6a\x3f\x24\xcd\x76\xdc\x43\x72\x36\xb7" "\x1d\xad\x9a\x26\xfb\xf3\x88\x2e\x81\x56\x58\x51\xeb\x6c\x5b\x26\x5a" "\x07\x21\xbe\x43\xf0\x84\x4f\x4d\x0e\x42\x96\x01\x1e\x28\x02\x36\xa0" "\xed\x76\x56\xf2\xeb\x90\x6e\x6b\x2e\xc4\xa8\xe5\xbf\x91\xeb\x7e\x8b" "\xe8\x89\xde\xd6\xd8\x49\x2b\xb7\x2f\x1d\xe2\x6c\xf3\x97\x32\x49\xeb" "\xcb\x5c\x99\x3d\x1d\xfa\x89\x6a\x65\x8a\x52\x8a\xad\xf5\x7d\xc2\x8a" "\x8d\xb3\x26\x56\xed\x8e\x41\x6f\x96\xe1\xf8\x9a\xc2\x4d\x4b\xa5\x87" "\xdf\x31\xf3\xd2\xd8\xd7\x80\x9d\x06\xc8\xb2\xd6\x8e\xb1\x5b\x37\x79" "\x18\x42\x44\x99\xcd\x6a\x7f\xb6\x2e\x49\xa7\x88\x31\xf0\xe4\xb1\x47" "\x6b\xef\x65\x7f\xb3\x4b\xd5\x9e\x34\x79\x3d\x21\xda\x3f\x7b\xd0\x27" "\x8b\xbe\xa8\xbe\xed\x26\x1c\x69\x7c\xe1\x7f\x36\xf1\xcb\xc1\xb9\x4a" "\xef\x11\xdd\x1d\xbf\x1c\x68\x49\x67\x65\x25\x8f\x4c\xfc\x8b\x5f\xdc" "\x91\x97\xd7\x26\x0b\x73\x3d\x20\x61\xf3\x99\xc8\x61\xbc\x59\x12\xac" "\x76\xcf\xb6\x2b\x92\x18\x19\x6f\xe0\x54\xb9\x2a\x29\x5a\x9b\x95\x26" "\x87\x11\x67\xd4\x36\xb8\x30\xa7\xb4\x94\x4f\x52\x7f\xb4\xd7\x5a\x03" "\x6a\xcf\x3a\x71\xa1\xa7\x10\xf6\x09\xf4\xe7\x94\xf1\xd7\x64\xa5\x31" "\x7a\xc0\x67\xe8\x19\x46\x66\xdb\xc7\x3e\x32\xb2\x87\x0e\xec\xf8\x77" "\x6b\xb7\x64\x1d\xcd\xd6\xd7\x64\xf9\x1d\xec\x83\xfb\xb5\x3a\x97\xe6" "\x53\x12\x11\xdd\x8b\x86\xbb\xb5\x7f\x8a\xcd\x63\x7f\x4b\x1b\x66\xfd" "\x97\x05\xa2\x00\xe3\x08\x1e\xa3\x82\x26\x2d\x54\xed\xb1\x61\x92\x7e" "\xb1\xd8\x5c\xf7\xb9\x37\x3a\x24\x60\x7c\x99\xf3\xd6\x6b\x85\xe2\x2d" "\x2c\xd5\xcf\xe2\x40\x20\xd5\x6e\x05\x52\xbd\x43\xd8\x03\x88\x21\x28" "\x31\x7d\x9a\x56\xe6\x3a\x48\x08\xed\x64\x01\xb6\x62\x18\x78\x88\xa0" "\xd0\xb3\x11\x36\x4f\xbd\xda\xd0\x79\x11\xb5\x24\x48\x77\xee\xac\xe2" "\x2a\xb5\xbd\x85\x01\xd7\x48\xed\x5c\xb0\x58\x09\xe1\x63\x96\x78\xc4" "\xc6\xcc\x43\xa3\xc2\xfc\xdd\x5b\x09\x70\x33\x24\x29\xc3\xcd\xe0\x9d" "\x95\x56\xc8\x36\x0f\x26\xca\xa7\x44\xce\x5e\x57\xbf\xaa\xbc\xf7\xd1" "\x24\xb2\xd4\xfa\x97\xd7\xe7\x2f\x16\xcd\xfc\x35\xf8\x74\x93\x71\x7e" "\x2a\x85\x2b\x64\xfa\x34\x4d\xb5\xec\x72\xdb\xdf\x22\xdb\xdf\xcd\x12" "\xff\x79\x6d\x51\x5d\x5f\x3f\xd3\xcd\xdb\xf5\x34\x26\x18\x3b\xbd\x92" "\xe2\xfd\x3e\x91\xfc\xa8\xfe\xe1\xc1\xef\x4f\x8d\x59\x03\x6d\xf9\xc4" "\x8f\xc7\x67\x7f\x2c\x49\x05\xb6\xcf\x4a\xdc\xf4\x48\x02\x9c\x6c\x6a" "\x29\x68\xb1\x3e\x3b\x77\xd5\x78\xe2\x66\x1a\xe7\xd0\x7e\xf8\x4f\xa0" "\x98\xba\xe9\xa5\x64\xbc\x8c\x50\x7a\x10\x39\x90\xc0\x0a\x0e\x6d\x28" "\x54\xa1\x68\x9f\x7b\x09\x5a\x10\x0b\x7f\x38\xdf\x02\x8b\xaf\x20\xbd" "\x56\xc8\x43\xc2\x4f\x8c\xa4\xa8\x11\x30\x25\x6b\x13\x63\x64\x40\x83" "\x68\x37\x42\x9c\x1c\x86\xae\x16\x68\xd3\xb2\x50\x10\x84\x06\xac\xdd" "\x21\xb4\x04\x50\x39\x98\x72\xc1\xda\x61\x78\x18\x4b\xf9\xc2\xcc\x11" "\xad\x80\xca\xa9\x99\x7d\x3c\x66\x31\xf0\x9b\xa2\xa4\xd9\x6e\x6b\x74" "\x31\x3f\x1e\x40\xfb\xf8\xa2\x99\x62\x64\x8f\x40\x0d\xd2\x56\xc4\x85" "\x2c\x55\x6d\xec\xa2\xe3\x44\x3b\x85\x8e\xfa\x43\xd5\x3e\xfc\xd4\x96" "\xbf\x50\x37\xa8\x2e\x14\x86\x8b\x50\x86\x32\xbd\xb2\xdd\xe9\x24\xce" "\x2c\xd6\xc6\x5f\x17\x08\xc1\x8c\xf4\x90\x73\xe5\x36\xf0\x9e\x8f\xcf" "\xa9\xa4\x4f\xdb\xc3\x49\xae\x75\xe1\x72\x05\x75\x4d\x3b\xb8\x2d\x3e" "\xe8\xa9\x3c\x59\xae\xa1\xbd\x7e\xa6\xd1\x24\x22\x4b\x11\x40\x5f\x81" "\x5e\xd5\x18\xa1\xcb\x9a\x80\x19\x12\x49\xac\x1c\xc0\xe5\xc1\xf9\xaa" "\xb8\xfe\x67\xbb\x73\x7c\xdf\xef\xac\x82\xa8\x9a\x7d\x6a\xe0\x8b\xb9" "\xe1\xf7\x10\xce\xe4\x51\xd8\x51\xb3\x5b\xa9\xb8\x86\xdf\xd9\xc2\x77" "\xdd\x67\x89\x13\x31\xd4\x3f\x36\x35\x3c\x78\xc6\x5e\x9f\x35\x24\xe1" "\xb9\xb2\x29\xc9\xf9\x1d\xe7\xb5\xab\x16\xa6\x60\x17\xd1\x71\xe2\xa4" "\xe1\x85\x48\x1d\x33\xcb\x5b\xd9\xc5\xe3\xd9\x3c\x49\xd2\xc6\x20\xc1" "\x64\x67\xbf\x4d\xb7\x36\x21\x95\x7f\x76\xd6\x56\xe6\xd4\xcb\x4d\x59" "\xca\xcf\x12\x09\xda\x4e\x39\x35\x25\x54\xcc\x2a\xbc\xc8\xe8\x23\x79" "\xb4\xf8\x19\xfd\x6d\x26\x1c\x6d\x76\x15\xf8\x5f\x6c\x5d\x0b\x9f\x57" "\x97\x68\x36\x49\x33\x67\xe1\xbb\xb1\x4c\x57\x98\x3a\xa9\x7c\x6e\x4e" "\x7c\x4f\xe2\xa1\x66\x28\x4c\x90\x4a\xc4\xf7\x0e\xf2\xe5\x2e\x4e\x7d" "\xbd\x67\x7a\xce\x68\x3c\xd6\x1a\xa6\x0b\x70\x27\x70\xaa\x0d\xdf\x14" "\xb6\x94\xbf\x3c\xfa\xeb\x58\x5f\x8f\xd8\xa8\x5b\xee\x2f\x78\x40\x0a" "\x08\x74\xdf\xb4\xc3\x19\xbe\x24\xa4\x6d\x19\x14\xb6\xe9\x02\xd5\xde" "\x8d\x83\x75\xc9\xec\x78\x6e\xf6\xec\xcf\x1e\xe7\xa0\x03\xf8\x3d\x2e" "\x16\x30\x97\x98\x0a\x06\xab\x9f\xe2\x3c\x4a\xe8\xe9\x17\x55\xe4\x21" "\x7d\x3c\x30\x21\x11\xfe\xbf\xa9\xdc\xe0\x2a\x49\xb2\x17\xae\xf7\x09" "\xd1\x83\xa5\xab\x8a\xd1\xd3\x9e\x9a\x69\x7a\x79\xbe\x30\x3f\xdb\x22" "\x90\xc8\x27\x27\x9c\xe1\x87\xd1\xc6\x47\xcc\x28\xe2\x0c\x0b\x3e\xbc" "\xab\x2b\x1c\x75\x85\x0d\xb4\x62\x11\x15\x0a\x8b\xc5\xd8\x0d\x86\x81" "\x41\xf8\x85\xf7\xa5\xef\x52\x0e\xce\xe6\xd3\x38\x42\x14\x10\x03\xdf" "\x4c\xe0\x66\x09\x0c\x83\x59\xb5\xdc\x32\xdd\x9e\xcb\x10\x39\x45\x4d" "\x0b\x69\x1d\x8f\x97\x93\x2b\x69\x98\x1b\xe2\x40\x80\x4e\x86\x0a\x88" "\xd1\xa0\x47\xf4\x6f\xf4\x36\x09\xb4\x1e\xa3\x6d\xc2\x76\xb2\x8e\x87" "\x36\x40\x49\x94\x0e\xa7\xb6\xdc\x78\x84\x82\x21\xb3\x0d\xc6\xaa\x1b" "\x60\xf1\x79\x42\xc9\x6c\x46\xe3\x47\x60\x6d\x14\xef\x02\xed\x3e\xbd" "\xdb\x20\xf7\xf4\xd2\x8b\x94\x60\xf4\xaf\x04\x7b\x77\x29\x27\xca\x6a" "\x04\x6b\x7d\xe2\xa2\x1b\x8c\xe7\x9e\xad\xb7\x4e\x48\x25\xaf\x5e\x19" "\xac\x29\x55\x99\x9d\x73\x04\xa3\x58\x51\xa4\xb9\x08\x6f\xf9\x22\xda" "\x88\x45\xda\x10\xa5\x5f\xbb\x62\xfd\x13\xd9\x8d\x45\xf6\x08\x42\xd0" "\xd6\x30\x1c\xd7\x2e\x7c\xb9\x7b\xc8\x43\x93\xa4\x14\xf6\x71\xe5\xe0" "\x11\x5a\x6c\x1c\x26\x05\x4a\x80\xdd\xde\x10\xe0\xa8\x3a\x4f\xfd\x12" "\x35\x04\xc8\x81\xa8\x44\xbb\x71\x87\xc6\x04\xf8\x75\x88\xdd\x0d\x0f" "\x11\x93\x0f\x9a\x3c\xfe\xb7\x09\x8f\x38\xf8\x49\x23\x63\x7f\x1a\x9f" "\x6b\x3e\x3d\x08\x99\xa1\x56\xd5\x0d\x7e\x74\x0b\x11\x8c\x48\x65\xec" "\x5e\x69\xaa\xc2\x47\xa9\x30\x00\x74\x52\x74\x8b\xea\x9a\xf0\xaf\x51" "\x1c\xc1\x12\x97\x40\x51\x0b\x13\xf4\x8f\xe0\x7e\xf1\x41\x7c\xcc\x76" "\x5b\x2c\xd0\x13\x8c\xb5\x1d\xd7\x1f\xbd\xbe\x96\x7f\xc3\x21\x08\x2a" "\x9e\xe4\xbb\xd1\xea\x40\x4c\xb2\x49\x71\xde\x5a\x1e\xe7\xd7\x99\x3b" "\x5d\x11\xd6\x7d\x30\xe8\xba\x94\xa9\xe9\x43\x85\x26\x75\xa0\x7b\x88" "\xa5\x1d\xf6\xf4\xab\xb5\x07\xcd\xae\xe9\x67\x26\x02\x38\x55\xe4\xde" "\xe6\xbc\xcb\x3e\x26\xa2\xa8\x8f\xb6\x0d\x81\x2e\x78\x56\xc1\x3a\xf5" "\xf4\xfc\xb6\x77\x6b\xa8\xe2\x7a\x35\xbf\xfc\x5e\x46\x47\x3b\x31\xa4" "\xb8\x3e\xa1\xa3\x37\x6f\x45\x49\xaf\x87\xd0\x31\x02\x41\x3f\xac\xcc" "\x3f\xc8\x97\xcc\xae\x95\xd2\x70\x01\x63\xf1\xfc\x51\x70\xa6\x43\x55" "\x41\x69\x01\x8c\x5c\xfc\xf8\xf5\x0c\x79\x81\x27\x09\x95\xd8\xaa\xa9" "\xf9\x23\xc0\x67\x9b\x25\x8a\xab\x60\xf7\x91\x11\x62\x7b\x71\x40\x4e" "\x1c\xe8\x75\x12\x28\x97\x2c\xbb\x2b\xeb\xbe\x25\x97\x3c\xf9\x8b\xf8" "\xfe\x8e\x63\x57\x59\x50\xa0\xaa\xa1\xff\x06\x0f\x01\xe9\x67\x91\xd1" "\x28\xd0\xb7\xb4\x08\x55\x12\x6e\xf3\x91\x0e\xd7\xd7\xa6\xd9\x49\x06" "\x18\xda\x35\x2a\xd7\xb8\x89\xf7\xd9\x05\xbc\xa2\x21\x42\x24\xe1\x70" "\xf3\x0a\x08\x8c\xff\x91\x92\x19\x17\xc9\x37\x95\x09\x26\xcb\x11\xc0" "\x4f\xdc\x6b\xee\x77\x6b\x9a\xbd\x2a\xa2\x86\xea\x50\x74\xe7\x27\x56" "\x48\x2f\xcb\x6a\x7d\x07\x2e\xdc\x07\x5f\x99\xe0\x27\x47\xea\x49\xa4" "\x0b\x26\xb5\x81\x18\xb6\x69\x2f\xbe\x55\xb0\x9b\x05\x4a\x04\x4d\x1f" "\x48\x11\x73\xe8\x92\x3a\x74\x80\x6c\xb7\x70\xc4\xc6\x1f\xfa\x98\x20" "\x77\xf8\x2b\xc4\xdb\x7f\xee\x4a\xe2\xbe\xed\x46\x73\xe3\x9f\x5f\xf0" "\x61\x40\x72\xa7\x71\x03\x41\x74\xa0\xf0\x52\xce\x39\xe2\x74\x50\xd1" "\x89\x20\x66\x4e\x92\x4e\xe9\x63\xc9\xbb\xc9\x85\x2f\xe6\x8f\x30\xa1" "\x99\xee\x48\x56\xc1\xda\xdc\x08\xc0\x61\x16\x58\x67\x43\x8b\xd3\xbb" "\x73\xf5\xa5\x0f\x51\x31\xb7\x86\x7d\xc8\x0e\x0c\x5d\x43\xea\xe8\x0c" "\xc2\x87\x4d\x48\xed\xc9\x10\xe7\xf8\xf9\xb7\x3e\x03\x2a\x8c\xcd\x7c" "\x34\x8e\x84\xb4\x17\x9f\xa1\x01\xd4\x88\xc2\xfc\x16\xcd\xf9\x53\xe2" "\x69\xa9\xcf\x13\xc0\xdf\xe5\x75\xe0\xda\x49\xd7\xd2\xc0\x92\x93\x29" "\x6c\x02\x32\xbc\xa9\xfe\x0a\xa8\x19\x9b\x21\xe1\x97\x46\xc4\x78\x36" "\x30\xe4\x32\xb5\xc7\xe1\xe2\x58\x64\xfc\xd4\xde\xae\x07\xc2\xb0\x77" "\x82\xd1\x55\xfe\x6e\x6b\x5d\x9e\xed\x4b\xeb\x9d\xb4\x7b\xae\x40\x07" "\x75\x3d\x8b\xe5\x6b\x10\x72\x3b\x54\x67\xc6\x4a\xcb\x0e\xee\x4c\xb9" "\x05\x0b\x4e\xf2\xb5\x7b\x63\x0f\x46\x08\xaf\x96\xfb\xe4\x84\x81\x64" "\x54\xff\x38\x5a\xa3\x76\x50\x51\x40\x87\x79\x38\x4c\x65\x85\xf2\xe2" "\x46\x62\xfc\xc3\x00\x8d\xc1\x7a\xbb\x07\xba\x9c\xf9\x6f\xf4\xc7\x95" "\xc9\x78\x11\xe7\x3b\x06\xc6\x5e\x1b\x5c\x66\xc2\xe1\x87\x31\x91\xd9" "\x72\x83\x0b\x1f\x53\xbb\xfe\xdf\x8b\x5e\x8a\x64\xa2\x9f\xb3\xb3\xec" "\xa6\x7f\x17\x91\x65\x2f\x9a\xc0\x37\xc2\xf8\x7c\x6d\x1d\x9d\x45\x3b" "\x12\xd5\xd2\xb0\xc0\x70\xa8\x08\x4a\xa1\x55\x05\xe2\x40\xbd\x0c\x61" "\x89\x53\x83\xf2\x3f\x04\x60\x02\x7d\x60\xdd\x9e\xfd\x85\x39\x80\x7f" "\x71\x7b\xc3\x53\xf9\xb8\x58\xb9\xbf\xd2\xac\xec\xf2\x19\x0e\x28\x0f" "\xaf\x6a\x16\x03\x56\x6f\xf8\x89\x3d\xba\x33\xad\x33\x00\xe1\x04\x38" "\x24\x17\x09\xba\x74\x13\xfd\xe8\x48\x10\xb9\x66\xb4\x55\x6f\x9c\x8a" "\x51\xae\xf2\x7f\x9b\x90\x10\xe7\xb6\x20\x87\x15\x16\x9a\x58\x5e\x42" "\xbf\x3f\x73\x33\x20\x9a\xfb\x5b\x19\xc0\xde\x77\x22\x00\x48\x50\xd5" "\x33\x29\xd9\x3e\x2e\x49\x09\xec\xed\x3d\xa6\x7d\xd7\xd2\xc8\x2a\x4c" "\x9d\x0d\x7c\xb6\xf5\xff\x7d\xbf\x19\x5e\x8b\x39\xba\x9c\xf0\xc1\x69" "\x9e\xa1\xf8\xb6\xd1\x29\x35\x09\x77\x4e\xf3\xbf\x48\x59\x71\x46\xa6" "\x0a\xa5\xb6\xef\xf2\xbc\x8a\x64\xf9\xae\x9a\x81\xbe\xcb\x9c\x39\x8a" "\xb9\x67\x6d\x2c\xec\xb1\x4d\x28\xf8\x19\xd0\x80\x50\x26\x9b\xb0\xca" "\x9b\xcf\x59\xd5\xc9\xbd\x2f\xe2\xbc\xdf\xe8\x2a\x8f\x03\x77\x81\xc6" "\x27\x5c\x92\x29\xb0\x72\x9c\xd0\x85\xe6\x6e\x27\x12\xbd\xf2\x20\x09" "\x44\x0c\x41\x36\xc2\xda\xa5\x4e\x54\x73\x86\xe1\xac\xd1\x6a\x1d\x30" "\xf3\xd5\x5c\x1e\xf0\xfe\x10\xc1\x08\x21\x0b\x9d\x88\x94\xd3\x1e\x5e" "\xf1\x7b\x04\x91\x06\x70\x0b\xae\x52\x4e\xef\x74\x4e\xf4\xb3\xa6\x9e" "\x9c\xfe\xd4\xef\xa9\xb0\xc9\x26\x21\x77\xf9\xfe\x16\xf5\xb1\xfe\x5b" "\xfe\x5f\xc6\xa6\x11\xe6\xff\xcb\x9c\x5f\x32\x9d\x4e\x32\x8c\xb6\x99" "\x12\xf0\xdf\xb7\xf4\xa8\x3d\x32\x6c\xb2\x0b\x05\x36\x53\x66\x30\x96" "\x87\x0e\x7a\xd2\x75\x3e\x99\x2d\xce\xd7\x40\x5a\x00\xa3\x9d\xc5\x5e" "\x65\x2e\xb6\xb2\xe1\xb1\xe9\x78\x2b\x42\xf4\x43\x89\x0c\x40\x67\xb0" "\x73\x76\xc6\xf0\xfb\x2e\xa6\x58\x9e\x04\xa8\xeb\x39\xa9\x4d\x91\x3d" "\x9f\x44\x10\xd2\x38\xe6\x88\x0c\x16\x7a\x0a\x23\xb2\x66\x57\x7c\x41" "\xec\x3e\x0f\x51\x3e\xb7\xfc\x94\x8c\x12\xb2\x6e\xa2\x64\x6c\x04\x81" "\x48\x84\x17\xd9\x91\x1a\x01\x07\xca\x0a\xe1\x1c\x2c\x4b\x8c\x2e\xef" "\xa5\x14\x4e\xcf\x8b\x14\x9d\x22\xab\xbd\x26\xd1\xb2\xa3\xfe\x51\x01" "\x6b\x9b\xbf\xd2\x29\xc0\x90\xfc\x2f\xbb\xca\x48\x03\x21\x7c\x99\x1e" "\x36\xf8\x6d\x47\x20\xb4\x5a\xe4\x5e\x6b\x20\xf0\x9f\xcd\x8e\x5d\xec" "\xd7\x99\x97\xe7\x91\x77\xbd\x67\xde\x74\x33\x28\x2c\x1d\x0b\xe5\xd5" "\x85\xa7\x1c\x87\x3e\x71\x71\xa1\x33\xd9\xf5\xea\x35\xac\x0a\xc5\xc1" "\xa6\x43\x27\x9c\xa6\x6a\x36\x5d\x27\x8d\x14\xee\xe3\xea\x90\x96\x1e" "\xeb\xb3\xf6\xc0\x98\xc0\x0d\x05\x1d\x47\x16\x85\x3e\xc7\x06\x9b\xe2" "\xa4\x62\x5c\xef\x4c\x0f\x72\xab\xae\x53\x09\xd2\x70\x99\x01\xd0\x52" "\x17\xfc\x3e\x52\x04\x9c\x4a\xa1\x6b\x50\x12\x1e\x43\xce\x49\x1d\x1b" "\xc9\xad\xb0\x16\x79\xec\x25\xab\x50\x09\xf7\x46\x17\x0c\x25\x17\xf0" "\x07\x2f\x16\xc5\x74\xcb\x44\x7c\x6d\x8c\xe4\xa2\xe4\x54\x26\x90\x04" "\x63\xc5\x30\x34\x13\xbf\x4f\xe7\xfd\x64\xc2\x73\xb4\x04\xcf\x93\x60" "\x68\xcb\x30\x85\xc3\xa8\x1b\x98\x72\xad\x2c\xb7\x9a\xa4\xc0\x51\xe7" "\xad\x97\xcd\x4e\x8c\x6b\x94\xbb\x0d\xf8\x7e\x43\x47\xca\x6f\x11\xf1" "\x55\xea\x26\x57\x62\xf8\x1e\xb0\xe9\xfb\xaf\x3d\xc0\x51\x57\xeb\x9f" "\x12\x59\x6c\xcd\xf9\x19\x30\x18\xa2\x22\x68\x24\xdb\x6b\xbe\xbf\x4e" "\x89\xa0\x70\x68\x8f\x69\x8b\xbf\x23\xf3\x0d\xfb\x04\xdb\x7c\x3d\x80" "\x4a\x75\x87\xad\x0f\xd0\x3e\x68\xcf\xf7\xe5\x16\xe5\x10\x9e\x32\x8e" "\x1e\xb3\xb8\x87\xa6\xac\xed\x15\x80\x4f\x2c\x89\x8f\x41\xc5\x45\x2e" "\x16\x0c\xa3\x0e\x35\x84\x37\x05\xc1\x50\xba\xd9\x32\xd2\xd3\xfb\xd7" "\x91\x10\x0b\x15\x35\xd9\xf3\x30\x6d\xcf\x12\x7f\xa4\x9c\x1a\x36\xb1" "\x72\xf4\x6b\x1f\xb6\x76\xea\x87\x83\xc2\x3e\xdf\x89\xb2\x44\x65\x60" "\xdc\x1b\x95\xb3\x9f\x80\xeb\x9d\x09\x94\xc8\xdc\xac\x9a\x5a\x30\x4c" "\x55\x41\x33\xe1\xd6\xba\x36\x84\x68\xa1\x73\x12\x16\x7c\xda\x37\x93" "\x2c\xbd\x4b\x93\xc5\x8b\x7e\xf7\x72\xd5\x6d\x43\x11\x18\x2a\x68\x0e" "\x19\xda\x6f\xb9\x38\x84\x8a\xad\x40\x24\x28\x56\x37\x93\x10\xb6\x1d" "\x61\x13\xde\x68\x14\x64\x40\x92\x71\x21\x33\x82\x3e\xe2\x28\x16\x39" "\xb5\x2c\xec\x52\xab\x0d\xbd\x65\xdd\xae\x63\x1e\x71\x13\xca\x75\xa5" "\x47\x67\x97\xcd\xe5\xf5\x45\x6a\xcb\xfe\x63\xc6\xca\x8b\x83\x77\x46" "\x90\xea\xca\x3a\x01\x97\x71\xca\x0e\x74\x28\x15\xca\x56\x45\x41\x87" "\x30\xee\x17\xf5\x2f\xa2\x53\x1e\x54\x87\xc1\x0d\xa3\xee\x08\x0a\xcd" "\x50\xfb\xd1\x97\x10\xed\x5c\xb9\x24\xe2\x8a\x18\x98\x51\x32\xaf\xbb" "\x7d\x2f\xf9\x0f\x6c\x38\x55\xc5\x69\x70\x85\x4b\x9a\x48\xec\x4f\x75" "\x66\xd2\x82\x9e\x27\x1a\xf3\xf0\xce\x26\x74\x26\x02\x24\x1f\xef\x70" "\x46\x1a\x48\x44\x99\x59\x1a\x90\x79\xed\x53\xae\xd1\x13\x58\x9f\xd7" "\x49\x18\x14\x6e\x19\x17\xa0\x63\x51\x4d\x7e\xaa\x7f\x47\x20\xa3\x86" "\xeb\x2f\x32\xb6\xd3\x5b\xaa\xa5\xd3\x6c\x20\x13\xeb\x40\x5c\xec\x60" "\x72\x02\xf1\x9b\xda\x80\xbf\xed\xa8\x00\x5c\x5d\x15\x82\x20\x8b\x86" "\x14\x37\xff\xf4\x1e\xc0\x70\x8a\x6a\x98\xf2\xb4\xb4\x46\x31\x41\xc1" "\xc3\x12\xa8\x11\x55\x09\xe3\x63\xa2\x74\x86\x48\x98\xbe\x99\x61\x76" "\x04\x9d\x5f\x7e\x6c\xba\x76\xb3\xa3\x7c\x9b\x2e\xe9\x55\x3f\xc7\x0f" "\x79\x50\x37\x97\x46\x4d\x73\x6d\x97\xd0\xbb\x47\x41\xea\x8a\xd1\x4f" "\xde\x6f\x18\xfb\xb0\x2a\xe9\x7e\x5a\x77\xbc\x15\x27\xa1\x3f\x18\x62" "\x49\x27\xd7\x9a\xa5\xb4\xdf\x2d\xff\xde\x7f\xb5\x35\x6e\x52\x1c\x7a" "\x41\x92\x09\x03\x1d\xf8\x13\x88\x38\x15\x1c\x7e\x90\x78\x3c\x9a\xf1" "\x33\xb6\x96\x1b\x44\xf8\xde\x89\xd6\x34\x8b\x19\x1c\xfa\x6c\x0a\xb6" "\x52\x74\x6b\x85\x82\x13\x45\x37\x72\x7b\x18\xc6\x70\x69\x1f\x3c\x1e" "\x8c\xa0\xe3\xce\xfc\xd2\x61\x11\xbe\xf4\x76\xeb\x81\x64\x82\xb7\x72" "\x63\x99\xc8\x6c\xbc\x98\xf0\xf0\x69\x29\xc2\x6c\xf8\x31\x16\x3b\xdb" "\xe1\xfa\x8d\x8f\x96\xa6\x5d\x3b\xbb\x3d\x37\x65\x7c\xec\x4b\x77\x51" "\x68\x64\xcb\x32\x40\x49\x96\xda\xe1\xd0\xd9\xf3\xc1\x2b\x7f\x26\x98" "\xf0\x79\x30\xb7\x91\x81\x3b\x7c\xcf\x0f\x0d\xcd\x33\x20\xb7\x88\x33" "\xf0\x77\xee\x55\xaa\xe1\x56\xaf\x80\x4f\xa9\xa1\x5e\x60\xc7\x09\xfb" "\x30\xb0\x6a\xc0\x92\xbf\x97\xa4\xfe\x47\x32\xea\x7b\xc9\x3a\xa7\x32" "\x32\x02\x4c\x80\x43\x4b\x49\x00\xcc\x30\xde\x20\xcb\xc1\xea\x40\x77" "\x46\xfb\x18\x6a\x61\x0f\xe3\x16\x35\x76\x6f\x5e\xda\xa8\xc9\xae\x97" "\x4f\xf8\xce\xcc\x4e\x7e\x39\x1a\x50\xbd\xb3\x4c\xa1\xde\xc1\x5e\x7e" "\x86\x64\xd7\xbb\x59\x85\x2c\xfc\x1f\xdb\x36\x1b\x23\x5c\x80\x3d\x70" "\xcf\xc9\x0c\x22\x90\x78\x07\x96\x19\xb4\xa8\x08\x6a\x68\xd4\x20\xee" "\x1d\x7f\xac\x40\x3b\x18\xc7\xf6\xaa\xd9\x16\x12\xe2\xf2\xb9\xe5\xe2" "\x06\xbf\x89\x7b\xd9\x8a\x3b\x24\xa0\x63\x7e\x2b\x98\x6a\xe7\xf5\xd3" "\x76\xbd\x63\xd6\x3f\x6c\x4f\x15\x1c\xe7\xea\xa9\x7a\x30\xd9\xd5\x1f" "\x1a\x92\x07\xdc\xa6\xb5\x96\x83\x1a\x9b\x92\x51\x7b\x9d\x55\x71\xe7" "\x2b\x4a\x06\xc0\x7d\x5f\xf0\xd3\x25\x89\x6a\x1b\x32\xe9\xfb\x4f\x9d" "\x67\xa9\x03\x94\x6b\x20\x5f\xba\x7b\xed\xa1\x08\xfd\xe3\xfc\x50\x3c" "\x73\x52\xc5\x9c\x03\xbe\xbc\x28\x91\x00\x7f\xbe\x96\x6a\x04\x41\xa7" "\xf4\xbc\x83\x20\xb9\x01\x56\x3a\xc8\xea\xdb\xa6\x43\xbd\xfc\x16\x36" "\x86\x4d\x33\x54\x9a\x1b\x9a\xd3\xce\x01\xbe\xc9\x4b\x63\x1a\xc6\xf4" "\x6c\x45\x3c\x57\xc6\x2f\x2c\xf0\xf7\x6d\x9f\x1e\x07\x31\xe2\x66\x31" "\x16\x24\xa1\x38\xe6\x07\xe6\x99\xc9\x1e\x37\xa3\x30\x96\x11\x7f\x41" "\x8b\x4c\x92\xc6\x6d\x96\xfa\x1b\x13\x24\xcf\xb5\x69\xe3\xd5\x58\x59" "\x8e\xe6\x5e\x69\xb8\xe0\xb9\x62\x5d\x55\x1a\xf5\x4a\x09\xdb\x80\x82" "\xf2\xfa\x9d\xa1\x38\x6f\x92\x24\x5a\xad\xaa\x13\xbf\xa3\xcf\x5c\x39" "\xfe\x45\x51\x80\xbb\xb5\xe2\x42\x7e\x40\x67\xbd\x2f\x5a\x5c\x75\x5c" "\x31\x40\x54\x77\xba\x83\x2d\xbb\xdd\x4a\xf6\x6a\xcc\x7c\x11\xe5\x76" "\xf7\x00\xe2\x4f\xb4\xc2\x61\x60\xb4\x44\x3b\x8c\x17\x80\x52\x38\x51" "\x9c\x7c\x73\x2d\xf7\x74\xb9\x25\x79\xe0\x2a\x8d\xa5\xe9\xa1\x7e\x3c" "\x20\xe9\x2a\xfb\xa7\xfa\xb4\x90\x00\xa7\xb8\x39\x87\xea\x48\xd5\x85" "\x4a\x04\x11\x61\x54\x62\xca\xbd\x24\x5a\xb3\xf4\x9b\xa3\x75\xef\x17" "\x9c\x0a\x78\x05\x9f\xfc\x14\x26\x41\x77\xa6\xe4\x5d\xc5\xf2\xfe\x6c" "\x95\x7a\x31\x3b\xa9\x88\x9f\xef\x33\xb7\x88\x93\x3b\xb3\x7a\x17\x94" "\x35\x51\xdb\x9c\xd0\x8f\xd8\xd8\x23\xfd\x0b\x35\x11\x0a\xd5\x89\xc3" "\xbb\x3a\xf4\xf6\x9b\xd1\xc7\xc7\xa3\xe7\x26\xf9\x33\xe4\xa0\xcb\x12" "\x09\xe7\x5f\xf1\x49\x10\x06\x1c\x37\x50\xb9\x31\x2d\xe4\x2c\x86\x83" "\x8d\x5c\x35\xa6\x81\x89\x9c\x25\x22\x0e\xa8\x7a\xff\x02\xbf\x72\xfd" "\xd8\x74\x5f\x5d\x75\x1e\x6d\x62\x86\x14\x96\x89\x0c\x95\x61\x43\xc0" "\x8a\x22\x27\x74\x97\x47\x89\xbb\x46\x92\x4b\x68\xa6\xe3\x13\x8c\xe9" "\xdb\xca\x62\x2e\x78\xc5\xae\xed\x82\x15\xde\x4e\xe5\xc1\xf8\x31\x2b" "\x63\x49\xa9\x1e\xf1\xe2\x10\xf1\x85\x22\xb7\xa6\x44\x70\x0e\x90\xef" "\xf9\x95\xe9\x50\xc8\xed\xa0\x5d\x0b\xb8\xe7\x99\xef\x32\xa7\xdd\xb8" "\xa8\x7b\x41\x20\xa7\x98\xa3\xf8\x7c\xc7\x8b\x6d\xb0\xc7\x94\x7b\x47" "\x86\xdb\x16\x18\xc5\x23\x20\x3c\x09\x7e\xf3\xd3\xdc\x0f\x4e\x1e\x87" "\xd0\xd5\x97\xc4\xea\xaa\xc0\x5a\x03\x3a\x3f\xa9\x13\x09\xc0\x5c\xd8" "\xc1\x4d\xe6\x49\xd7\xdd\x16\xd8\xed\x81\xe5\x29\x09\x50\xf6\x6b\x66" "\xfd\x51\x9a\x2a\x16\xfc\x6b\x35\x26\xf9\x7a\xa1\x12\x1b\x4f\xb5\x2b" "\x30\x64\x01\x22\xdf\xb5\x0f\xf6\x19\xfb\x5c\x88\xeb\x1c\x4e\x6e\xd7" "\xf6\xd0\x9f\xd2\x9e\x27\xb3\x37\x5a\x1a\xad\x5b\x09\xf8\x17\x51\x57" "\x01\x84\x67\xf8\x83\xba\x38\x52\x08\xfc\xd3\x2a\x50\xa3\x11\xb2\x2f" "\x79\x51\xbd\x0e\x91\x2d\x23\x43\x64\xf8\x59\x0e\x24\x7d\xea\x60\x48" "\x72\xf9\xbb\x84\x7b\xb3\x2b\x39\x06\x33\x9f\x56\x98\xd6\xe7\xc0\xf2" "\xa3\xed\x17\xb1\x94\x23\x92\x99\x09\x1f\x5e\xe4\xed\x51\xc7\x5b\x76" "\xbc\x94\x9c\xf0\x5d\xf5\xdd\x03\xcd\x8a\x55\x3e\x7e\xc8\x18\x81\xfd" "\xc1\xe1\x5c\xef\x5e\x72\xee\xcd\x78\x43\xa9\x81\xef\xf4\x17\x68\x26" "\x04\x76\x9e\x30\x2f\x37\x8f\xf9\x51\x9c\xdb\xd3\xba\x2b\xfe\x50\xf8" "\x5a\x90\x3a\xa0\x8b\x90\x01\x18\x22\x68\x89\xe9\xbc\x68\x12\x47\x77" "\xf6\xe0\x2f\xb2\x6f\xff\x91\xd1\xf3\x1d\x38\x28\x24\x3c\xc4\x6d\x4b" "\x4f\xa2\x96\x54\x45\x77\x4e\x0d\xdc\x52\x1f\xe5\xfc\x96\x26\xfe\x34" "\x28\x40\x3e\x74\x6d\xe0\x19\x6a\x45\xe4\xff\x75\xc5\xd6\xac\xef\x57" "\xf6\x62\xfa\xf2\x72\x94\xbe\x80\xfe\xd3\x97\x78\xa7\x58\x5b\x41\x17" "\x8e\xa3\x8f\x64\x89\x3f\x9a\x46\x33\x4a\xf6\x42\x5a\x4a\xa4\x6e\x25" "\xe9\x2b\x0d\x77\x75\x0c\x67\x37\xb2\x37\xdf\xf1\x99\x13\xfd\x9e\x69" "\xed\x92\xc4\xb6\x67\x1b\x42\x26\x77\x6b\x34\xae\x24\x68\x90\x7c\x65" "\x4b\xb0\xf6\x19\xb2\xc9\xb5\x59\x20\xfb\x99\xe9\x7b\xf3\x22\x12\xf8" "\x52\xb6\x15\x68\x9f\x3c\xf4\xc0\x3d\x51\xd1\x58\x74\x55\xb5\x72\x06" "\x92\x43\x0f\xe2\x68\x45\x22\xbf\xe6\xda\xe8\x71\xaa\x2f\xf5\xf0\x00" "\x45\x86\x1f\xfc\xfc\x21\x98\x88\xfe\xf8\x32\x0b\xec\x13\x07\x23\x6a" "\x7a\x42\xdd\x4a\x69\x1c\xb6\xcd\x4d\x84\x36\xf3\x1a\x3f\x2d\x64\x2b" "\x05\x94\x6d\xbf\xee\x69\x2a\xee\x0d\xa3\x14\x19\xf9\xb8\xbc\x0e\x1d" "\xcf\x89\xa8\xff\xd7\x85\x6b\x21\xb1\x18\x0e\xbc\x8a\xd7\x53\x08\xb1" "\x37\x0b\x93\xd6\x80\xe9\x68\xbc\xde\x7d\x23\x5f\x60\x17\x60\xa5\xd1" "\x81\xf7\xb5\x5d\xaf\x33\x0a\x00\x1a\xe1\xda\x86\xc1\x30\xc7\x6f\xbd" "\x95\x64\x42\xb6\xc7\x05\x88\x9d\x66\x55\x60\xf8\xb3\x46\x63\x39\x05" "\x92\xd8\x5d\xdd\xe7\x90\xe0\xf4\xf1\xf0\xdf\x09\xc1\xc6\xf9\x54\x77" "\xf9\xd7\x2d\xc0\x89\x4b\x2e\xfe\x2c\x3d\x16\x2a\xd8\x0f\x80\xca\xe0" "\x3a\x06\x54\x80\x14\x29\x3a\x02\xf0\x0d\x63\x86\x72\x3d\x42\xab\x09" "\x05\x2f\x01\x9a\x1d\x71\xd8\x8a\x78\xdb\x27\xaf\xea\xd5\x8b\xc5\x16" "\xbe\x8d\x23\x89\x3f\x00\x7a\x17\xff\x47\xb3\x27\x77\x75\x2a\x15\x64" "\x8d\x0e\xce\xcd\x34\x5a\xee\x1f\x36\xc5\x8a\xbb\x7e\xfa\xff\x55\x67" "\x10\x0c\x0b\xfa\x54\xf1\x72\xc8\x62\xe1\x58\x72\xab\xc9\xd9\x6c\xea" "\xd6\x68\x8f\x02\xea\x84\x66\xfe\x11\x34\xbd\x37\x56\xc6\xf0\xdf\x89" "\x03\xfe\x79\x35\xdb\xe3\xe6\x35\xda\x36\x8f\x13\xa1\x0e\x30\x18\xcf" "\xb5\x55\x7d\x38\xf8\x59\xa9\x83\xa5\x4d\x66\x0a\x02\xbd\xb3\xda\xc2" "\x92\x2e\x7a\x37\x65\x16\x77\xbf\xc6\x64\xd5\x8d\xf5\x9e\xa6\x25\xe8" "\xe6\x3e\xe7\x76\xbc\xc2\x93\x7b\x92\x1f\x55\x44\x92\x4b\x75\xcb\xa0" "\x4b\xf3\xcd\x0d\xf8\x31\x93\x8f\x9e\x9c\x79\x57\x2e\x84\x92\xd8\x84" "\x64\x62\x44\x99\x09\x20\x40\x01\x92\xc6\x3e\x15\x02\x4e\x2e\x12\x39" "\xf4\x13\x90\xbf\x7c\x0e\x18\xf8\x52\xe2\x3d\x51\x42\x56\xcc\xb8\xcc" "\xb2\x72\x67\x10\x40\x1c\x43\x06\x65\x7f\xd7\x5e\xba\x94\xa3\x53\x98" "\x77\x80\xa6\xd6\x21\x90\x12\xcf\xe8\x08\x58\x06\x0e\x37\x65\x2a\x84" "\xae\x89\xd0\x7f\x5d\x65\x1f\xe8\x2a\x2a\x8d\x0e\x85\x68\x49\x21\x56" "\x71\x3b\x1f\x76\xe8\x9e\x12\xf7\x6a\x02\x54\xda\x7d\x52\x6d\xf5\x1a" "\x08\x96\x00\xf5\xb7\x55\x9a\xfd\xc6\x3d\x48\x72\xfe\x8d\x6c\xe0\x0a" "\x8d\x0c\x9b\x00\xdb\x5e\xe6\x76\xae\x25\x45\xe7\x4f\xb7\xb3\x9f\x83" "\x45\xa6\x79\x13\xb2\x34\xcf\xb4\xf6\xe3\xb4\xe2\xb1\xe1\xf4\xf1\xc7" "\xfc\xce\x8c\x09\xcd\xeb\x6a\x1a\x21\xbd\x23\x70\x00\x4e\x58\x3e\xf6" "\x29\x71\xae\xc2\x4c\xe0\xc6\xc0\x49\xb6\xa2\xe2\x20\x81\xd3\x68\x54" "\x95\x6a\x36\x2b\x6c\xba\xd4\x80\x49\xd7\xd5\xf9\x01\x34\xd3\xe7\x7f" "\xeb\xf8\x7b\xf4\xa3\x2c\x07\xcd\xeb\x36\xc9\xcc\x56\xb2\xb3\xcc\x8c" "\x8b\x47\x87\x9a\x32\xff\x00\xf3\xb2\xe9\x77\xce\xe0\xac\xb3\x0f\xc4" "\x24\xdb\xfe\x24\xc8\x8d\x1a\x08\xd0\x47\x92\x5c\xd7\xd6\x5a\x58\x34" "\xe5\x6d\xb2\xb3\xe7\xe0\xa2\x3d\xbf\x94\x8c\x79\x9d\xb5\xa4\x8f\xd4" "\xa5\xfd\xea\x43\x91\x3b\x2b\x2c\x14\x9a\xe9\xa9\x8f\x45\x2b\x79\x7b" "\x55\xab\xe1\xdd\x44\xb3\x02\x32\x38\x7f\x46\x68\x56\xd6\xc3\x8c\xa7" "\x35\xdd\x61\x75\xb4\x55\x36\x3d\xbf\x22\x8e\xf5\x2e\x44\x3d\xa2\x2a" "\x1e\xe3\xa1\x58\xee\x30\x4d\x9c\xa6\x3c\x11\x0a\x3d\x19\xca\x3b\xab" "\x6d\x17\x45\xaf\xfd\x81\xc4\x80\xff\x8b\xcf\x5f\x8f\x7c\x1e\xa6\xd0" "\x8a\x7b\x3c\x39\x58\xc3\x24\xd4\x27\x32\x71\x11\x70\xe1\x95\x23\xbd" "\x20\x91\x34\x67\x4b\x18\x4d\x4d\x44\x2a\x77\x4e\x04\xd6\xeb\x4a\xc8" "\x9a\x6d\x01\x8c\xf0\xbb\x68\xa7\x3d\xa8\x7a\xbc\xe1\x27\xe5\x74\x28" "\xcf\x73\xa5\xa5\x51\xc8\x5e\xa8\xc3\x76\xae\x95\x1c\xb8\x35\x75\x06" "\xf0\x37\xd1\x7d\x16\x31\x72\xdc\x57\x64\x68\x2c\x75\x30\x50\xf3\x5c" "\x68\x02\xfb\x26\x9d\x74\x90\xb1\x96\xd5\x7b\xb8\xa1\xad\xa5\x5d\xa7" "\x55\x0f\x82\x35\x73\x20\xe1\x4c\xf5\x73\xed\x39\x86\x0f\x02\xa1\x1b" "\xda\xd9\x17\xb2\xba\x2d\xe8\x85\xc7\xea\x8b\x30\xdd\x62\xbd\xad\x20" "\x7d\xfe\x10\xe9\x7c\x8b\x71\xab\xbc\x8c\x56\x61\xa4\x48\x3b\xb6\xf9" "\x48\x8a\xda\x0f\x58\x85\xc4\x71\xcf\xc1\x27\x1b\x60\xd5\x4f\x90\x33" "\x17\xcc\xa2\x8c\xe9\x77\xf4\x44\x4c\xef\xac\x5c\x2f\xf2\x33\xdc\x87" "\x2d\x4e\x80\x90\x91\xf8\x45\x2d\xe9\xc7\x74\xab\x3b\xbe\xbf\x62\xde" "\x92\xcd\x6a\xa7\x42\x1a\x41\xf7\xd1\xde\xa4\x2e\x4f\x94\xbd\x3a\x48" "\x69\xc9\x58\xf3\x94\x0a\x99\xc8\x88\x35\xed\x2f\x40\x21\x11\x4b\x9a" "\x5b\xb1\x72\x40\xf4\x68\x88\x7b\x21\x38\x14\x95\x6f\x9f\x5e\x63\x44" "\xcb\xae\x19\xd8\x75\x3b\x97\xc7\xce\x2e\x9d\x09\x54\xa3\x0d\xde\x23" "\xde\xa2\x74\x8e\x1c\x95\x14\x67\x2b\xf4\xea\x3e\xc3\xe3\x48\xa5\x63" "\xd9\x64\x98\x99\xe7\x22\x77\x08\xe2\xe7\x7d\x0f\xc5\x84\x7d\xc1\x6b" "\x59\xac\x3d\xea\x94\x49\xc1\x76\xde\xa2\xd2\xff\x6b\x6a\xf7\x64\xd2" "\x8d\xee\x5c\xcf\xd0\xdf\xd6\xe3\x10\x0d\x97\x04\x06\x57\xd7\xac\x5d" "\xa4\x03\x2e\x3b\x7f\x6b\x0c\xef\x2e\xc5\x5a\x83\x35\x0c\x30\x45\xab" "\xb1\x02\x00\xc2\x64\xe6\xe6\x8e\x3e\x03\xb6\x85\x46\xae\x48\xa5\x38" "\x06\x3b\x86\x31\x5b\xb8\x07\x31\x03\xa8\x12\x71\x7f\x2d\x88\x16\x53" "\x4f\xa9\x8d\x0e\x95\x6e\x0f\x9a\x67\xbc\xdc\x52\x2c\xac\xef\xc7\x7b" "\x0b\xe7\x18\x32\xa6\x9f\xfb\x72\xfa\x15\xca\x4d\x8b\x15\xf7\xfe\x03" "\xda\x0f\x4b\x24\xc5\xfb\x68\xe5\xf3\xa2\x29\x7b\xb0\xcb\x0b\x7b\xfd" "\xee\xec\x4d\xeb\x64\xbf\x71\xf5\x78\x20\xd6\x2c\x47\x27\x6e\x27\x80" "\xb4\x34\x1b\x6b\xc6\x5a\xc4\x9b\xe0\x9c\x94\x01\x37\x83\x45\x5a\x95" "\xde\x92\xc1\x1d\x91\xb9\xe9\x21\xa4\x84\xed\x69\x53\x2b\x92\xe2\x02" "\xd6\x84\xd2\x29\x3a\x26\x66\x70\x9e\xe3\x8d\x21\x14\xad\xd4\xc5\x33" "\x7b\xfe\xef\x31\xd4\x81\xe1\x25\x30\xc5\xc7\xe8\x3a\x6c\x8a\xa2\xf5" "\x80\xf6\xda\x2d\x73\x5e\xe5\x26\x0c\xf9\xa7\x18\x5e\xff\x84\xeb\x22" "\xd6\xe0\xd5\xac\x0e\x63\xfe\x6a\x3d\xef\x81\x92\x74\xa1\x44\xbe\x5a" "\xb9\x0f\xa1\x57\xbb\x75\x17\xa5\x4c\x20\x8a\xa8\x2d\xa9\x26\xd5\xb0" "\x9b\xa6\x49\xe3\x26\xa6\x54\xfe\x8f\xa9\xdd\x7e\x6d\x83\xb0\xa6\x62" "\x53\x52\x6e\x5b\x5a\xa0\x3e\x66\x5f\x2e\xb4\x67\x8e\x82\x93\x11\x04" "\x20\xc9\xd7\x55\x6d\xf0\x7c\x7d\xd1\xc3\xe8\x17\xa4\xc7\x40\x98\x90" "\xc4\xff\x50\x44\xec\xdb\x34\xeb\x65\x2a\x4d\x7e\x20\xb4\xb0\xd5\x96" "\xf4\x6e\xe3\xc3\xda\xd6\x75\xe9\x58\xe9\x1c\x3b\x40\xf2\xd2\x2e\x67" "\x1b\xae\x51\x51\x84\x43\x04\x2c\x52\x9c\x31\xe3\x43\x64\x7d\x6d\xde" "\xac\x7e\xc3\x70\x97\x0f\xcc\x71\xa2\x4a\x08\x26\xb5\x8d\x11\x1e\x9b" "\x77\x6a\xc0\xe2\xfa\x40\xb3\x09\x92\x98\xff\xd0\xd1\xc0\x4d\x41\xee" "\x1d\xd0\x39\x42\x5f\x52\xf9\xf8\x05\x7a\xc1\xf2\x06\x20\x3f\x20\xe1" "\xae\x9c\xba\xe3\x56\x51\x8b\xa2\xfe\x9e\x49\xb4\x7e\x36\x94\x2e\xd7" "\x20\x4f\x3d\x7d\xa9\xe7\x1b\x8d\x69\xdf\x3a\xe7\xb2\xde\x05\xa1\x3a" "\x87\x9a\xf6\xa1\xea\x62\x41\xc6\x45\xed\x73\xc1\x39\xe1\x50\x60\xae" "\xab\x6f\x42\x3c\x21\x80\xdd\x10\x18\x63\xa2\x4f\x16\x88\xec\x1a\x33" "\xed\xc6\x24\xc3\xf5\xe8\x0a\x20\xe4\xcc\x5c\x86\xab\x2c\x69\x2c\x2d" "\x3d\x17\xd8\xa6\x8b\xb3\x92\x4e\xff\xfb\x29\xc9\xfc\x3d\xf9\x37\x52" "\x64\x52\xd8\x2a\x8c\xa9\xa5\x58\xc7\x5d\x6b\x25\x04\xdf\x1b\x66\xc9" "\x18\x23\x21\x6a\x1c\x3b\x3b\xc3\x9d\xee\x0d\x22\x49\x1b\x9c\x89\x1b" "\x9e\xea\x19\x3c\x8a\xf8\xa9\x92\x09\x6d\x0c\xd7\x46\x30\xf7\x22\x2e" "\x9a\x35\x30\x03\x4a\x58\x2f\x40\x60\x1a\x69\x4c\xf1\x08\x5f\xda\x7f" "\xb3\x3b\x07\x33\x2c\x6a\xeb\xfa\x70\xe2\xeb\xb8\xd7\xcc\xf1\x9a\x69" "\xdf\xb5\xe4\xc1\x66\xad\xd5\xe1\x53\x50\x4e\xee\xc9\x2f\x4e\xa2\xfe" "\x47\xf2\x91\x62\x5e\x1c\x47\x0b\x83\x2a\x48\x8f\x88\x46\x92\xb8\xec" "\x49\xb9\x6d\xf2\x35\xf1\x93\x02\x7e\xd3\x8f\xb4\xd8\xb8\x8e\xd3\x82" "\x82\x5d\xf8\xff\xe5\xb0\xc6\xfa\xb8\xdb\x3e\x38\xd6\x0d\x46\x7f\x9d" "\xa7\x25\x02\x3d\xeb\x72\xc3\x78\x25\x8e\x91\x14\x42\xaf\xae\x4d\xb6" "\x50\xbe\x36\x21\xa0\x33\xa3\xb8\x4e\xee\x65\xc4\xc0\x66\x4e\xc6\xd5" "\x77\x1c\xc1\x38\x93\x74\x34\xa6\xa3\x61\xde\x3d\xc1\xc1\x2a\x2a\x67" "\x35\xf0\x80\xe9\x43\x14\xdd\xf2\x91\x51\x69\x71\xaf\x25\x2e\x3c\xc5" "\x6e\x1c\x65\xba\x5c\xf8\xac\x25\x38\x87\x8b\x22\x03\x4b\xa4\x58\xe0" "\x8d\xb2\x62\x05\x60\x8a\xe9\x41\xa4\x2a\x27\xf2\x64\x3d\xed\x87\xbd" "\xe6\x26\x38\x7c\x2b\x79\x1c\xe5\x79\x91\xdd\x2b\xa0\x80\x10\x23\x72" "\x79\xca\xc2\x76\x0e\x19\xca\xb9\x05\x9b\x22\x9e\xa0\x02\xce\x4d\x3b" "\x4a\xfa\x49\x52\x30\xe4\x24\x75\x2f\x28\x90\x03\xa2\x40\xf5\xca\xfc" "\x7a\x83\x11\x26\x36\x32\x11\x07\x91\x8d\x58\x2f\xad\x26\x06\xa4\x31" "\x91\x99\xa0\x6e\xf2\xcb\xea\xa3\xe1\xa4\xd8\xc3\x05\x01\xaa\xb7\x96" "\xf5\xcb\xe1\x54\x53\xb6\x12\x18\xa3\x96\xb7\x9c\x54\x7d\x15\xd5\xc1" "\x10\x33\xb3\x74\x6b\x43\x2b\x42\x64\x04\xf7\xb0\x42\x1b\x9d\xaa\xfd" "\x9e\x85\x58\xf1\x90\x12\x83\xd5\x8e\x17\x3c\x4d\xb0\x51\x1e\xe8\x26" "\xdd\xc6\x36\x3e\xb5\x1e\x08\x37\xc9\xbe\x6b\x20\x78\xd8\x08\xd2\xc0" "\x5d\xb7\x49\x5d\x29\x32\x2e\xe6\xaf\x68\xb0\xd5\x2c\x45\xf0\x0a\x59" "\x73\x1c\x0e\x5b\x26\x08\xae\x04\x6a\xf8\xbc\xf8\x30\xf0\x01\xff\xd2" "\xf9\x55\xea\x89\xbe\xd2\x16\xe7\x1c\xcb\x5b\x44\x71\x3e\x2a\xbf\x5e" "\xe5\x43\x8d\x63\x82\x9c\x9a\xea\x34\xb5\x7f\x7a\xb5\x2b\x82\x0c\x24" "\xa7\xe9\xfa\x13\x82\x43\xe4\xaf\xb2\xdf\x93\x58\x8e\x80\x5e\x71\x9c" "\x17\x67\x14\x6a\x35\x1d\xeb\xb3\x46\x78\xa8\x6d\xd1\x9f\x05\x87\xaf" "\x31\x19\x54\x60\xa3\xaa\x3e\x68\x77\x38\x59\xfe\x13\xb4\x7b\x6b\x31" "\xa5\x01\xb4\xa2\x5c\x66\x60\xcf\xc4\x7f\x33\x18\xb3\x3b\x77\xb1\x0e" "\xd4\xba\x91\x08\x64\x82\xdb\x03\x9a\x56\xfb\xd1\x49\x0f\x44\x0a\x6f" "\xbb\x28\x0b\x62\xb6\xd2\x33\x3a\xfe\x1c\x42\xc3\xf1\x68\x65\xb9\xc0" "\xe4\x84\xa4\xf6\xf3\x93\xb8\xbc\x34\xfb\xba\x85\x6c\xc5\xff\xad\x2f" "\xe4\x23\xe7\x9f\x69\x1b\x95\xe7\xe0\xdb\xdb\x2b\x27\x57\xd9\xd4\x44" "\x3f\x9a\x23\xa8\xb1\xbf\xdb\x16\xf8\xbf\xfd\x81\xb4\x78\x9f\x80\xf1" "\xfc\x4b\xf7\x51\x62\x79\x65\x75\x5d\x00\x8d\x13\x4e\x2c\x35\xda\x34" "\xf5\x47\x18\x61\x5e\x9d\xea\xca\x06\x85\x39\x6a\xe7\xe5\x81\x21\x32" "\x7e\x0c\x06\x96\x59\x1f\x6a\xf9\x3f\x29\x99\xeb\xd3\xb4\xe0\x3c\xfe" "\x2a\x48\xb2\xb9\x40\x15\xeb\x06\xb2\xa1\x03\x1a\xb5\xe1\x29\xb2\x70" "\x06\x48\xfd\x62\xab\x75\xf7\x77\x34\xb8\x9a\xbb\x40\x22\x82\x63\x5e" "\xee\x41\x60\x6e\xb3\x06\x61\x9e\x2d\xae\x84\x48\x8e\x2a\xac\x1d\xf5" "\x4f\x78\x46\x0b\x36\x11\x50\x72\xa2\xc2\x88\x01\xfc\x12\x24\x82\xf1" "\xd4\x6d\xe4\xb2\xee\xc0\x7b\xbb\xbc\xf8\x5f\x30\xff\xb3\x82\x9c\x5d" "\x0f\xdb\xdf\x3a\xf8\xc6\x32\x2d\x62\xf4\xc5\x5e\xbe\x8f\xd5\x27\x28" "\xe2\xd5\xd1\xa2\x4f\x09\x6f\xff\xce\xc6\xff\x2e\x75\x2f\x75", 8192)); NONFAILING(*(uint64_t*)0x20000ec0 = 0); NONFAILING(*(uint64_t*)0x20000ec8 = 0); NONFAILING(*(uint64_t*)0x20000ed0 = 0); NONFAILING(*(uint64_t*)0x20000ed8 = 0); NONFAILING(*(uint64_t*)0x20000ee0 = 0); NONFAILING(*(uint64_t*)0x20000ee8 = 0); NONFAILING(*(uint64_t*)0x20000ef0 = 0); NONFAILING(*(uint64_t*)0x20000ef8 = 0); NONFAILING(*(uint64_t*)0x20000f00 = 0); NONFAILING(*(uint64_t*)0x20000f08 = 0); NONFAILING(*(uint64_t*)0x20000f10 = 0); NONFAILING(*(uint64_t*)0x20000f18 = 0); NONFAILING(*(uint64_t*)0x20000f20 = 0); NONFAILING(*(uint64_t*)0x20000f28 = 0); NONFAILING(*(uint64_t*)0x20000f30 = 0x200000c0); NONFAILING(*(uint32_t*)0x200000c0 = 0xa0); NONFAILING(*(uint32_t*)0x200000c4 = 0); NONFAILING(*(uint64_t*)0x200000c8 = 0); NONFAILING(*(uint64_t*)0x200000d0 = 4); NONFAILING(*(uint64_t*)0x200000d8 = 0); NONFAILING(*(uint64_t*)0x200000e0 = 0); NONFAILING(*(uint64_t*)0x200000e8 = 0); NONFAILING(*(uint32_t*)0x200000f0 = 0); NONFAILING(*(uint32_t*)0x200000f4 = 0); NONFAILING(*(uint64_t*)0x200000f8 = 0); NONFAILING(*(uint64_t*)0x20000100 = 0); NONFAILING(*(uint64_t*)0x20000108 = 0); NONFAILING(*(uint64_t*)0x20000110 = 0); NONFAILING(*(uint64_t*)0x20000118 = 0); NONFAILING(*(uint64_t*)0x20000120 = 0); NONFAILING(*(uint32_t*)0x20000128 = 0); NONFAILING(*(uint32_t*)0x2000012c = 0); NONFAILING(*(uint32_t*)0x20000130 = 0); NONFAILING(*(uint32_t*)0x20000134 = 0x8000); NONFAILING(*(uint32_t*)0x20000138 = 0); NONFAILING(*(uint32_t*)0x2000013c = 0); NONFAILING(*(uint32_t*)0x20000140 = 0); NONFAILING(*(uint32_t*)0x20000144 = 0); NONFAILING(*(uint32_t*)0x20000148 = 0); NONFAILING(*(uint32_t*)0x2000014c = 0); NONFAILING(*(uint64_t*)0x20000150 = 0); NONFAILING(*(uint32_t*)0x20000158 = 0); NONFAILING(*(uint32_t*)0x2000015c = 0); NONFAILING(*(uint64_t*)0x20000f38 = 0); NONFAILING(syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200021c0, /*len=*/0x2000, /*res=*/0x20000ec0)); break; case 7: NONFAILING(memcpy((void*)0x200001c0, "./file0/file0\000", 14)); inject_fault(13); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200001c0ul, /*flags=*/0x80041ul, /*mode=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_fault(); install_segv_handler(); loop(); return 0; }