// https://syzkaller.appspot.com/bug?id=5b40b91cac98131a48f12f7c6ab4807e2dcd0ddb // 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 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; } #define MAX_FDS 30 static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } loop(); exit(1); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } #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: 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: out_hdr = req_out->write; break; case FUSE_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void loop(void) { int i, call, thread; for (call = 0; call < 9; 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, 45); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000000, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000000ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x2000c380, "./file0\000", 8); syscall(__NR_openat, 0xffffff9c, 0x2000c380ul, 0x84842ul, 0ul); break; case 2: memcpy((void*)0x200020c0, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd", 2); *(uint8_t*)0x20002142 = 0x3d; sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20002155 = 0x2c; memcpy((void*)0x20002156, "rootmode", 8); *(uint8_t*)0x2000215e = 0x3d; sprintf((char*)0x2000215f, "%023llo", (long long)0x8000); *(uint8_t*)0x20002176 = 0x2c; memcpy((void*)0x20002177, "user_id", 7); *(uint8_t*)0x2000217e = 0x3d; sprintf((char*)0x2000217f, "%020llu", (long long)0); *(uint8_t*)0x20002193 = 0x2c; memcpy((void*)0x20002194, "group_id", 8); *(uint8_t*)0x2000219c = 0x3d; sprintf((char*)0x2000219d, "%020llu", (long long)0); *(uint8_t*)0x200021b1 = 0x2c; *(uint8_t*)0x200021b2 = 0; syscall(__NR_mount, 0ul, 0x200020c0ul, 0x20002100ul, 0ul, 0x20002140ul); break; case 3: res = syscall(__NR_read, r[0], 0x200021c0ul, 0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200021c8; break; case 4: *(uint32_t*)0x20000040 = 0x50; *(uint32_t*)0x20000044 = 0; *(uint64_t*)0x20000048 = r[1]; *(uint32_t*)0x20000050 = 7; *(uint32_t*)0x20000054 = 0x1f; *(uint32_t*)0x20000058 = 0; *(uint32_t*)0x2000005c = 0x2008200; *(uint16_t*)0x20000060 = 0; *(uint16_t*)0x20000062 = 0; *(uint32_t*)0x20000064 = 0; *(uint32_t*)0x20000068 = 0; *(uint16_t*)0x2000006c = 0; *(uint16_t*)0x2000006e = 0; *(uint32_t*)0x20000070 = 0; *(uint32_t*)0x20000074 = 0; *(uint32_t*)0x20000078 = 0; *(uint32_t*)0x2000007c = 0; *(uint32_t*)0x20000080 = 0; *(uint32_t*)0x20000084 = 0; *(uint32_t*)0x20000088 = 0; *(uint32_t*)0x2000008c = 0; syscall(__NR_write, r[0], 0x20000040ul, 0x50ul); break; case 5: memcpy( (void*)0x200042c0, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 8192); *(uint64_t*)0x200062c0 = 0; *(uint64_t*)0x200062c8 = 0; *(uint64_t*)0x200062d0 = 0; *(uint64_t*)0x200062d8 = 0; *(uint64_t*)0x200062e0 = 0; *(uint64_t*)0x200062e8 = 0; *(uint64_t*)0x200062f0 = 0; *(uint64_t*)0x200062f8 = 0; *(uint64_t*)0x20006300 = 0; *(uint64_t*)0x20006308 = 0x20006340; *(uint32_t*)0x20006340 = 0x20; *(uint32_t*)0x20006344 = 0; *(uint64_t*)0x20006348 = 0; *(uint64_t*)0x20006350 = 0; *(uint32_t*)0x20006358 = 0; *(uint32_t*)0x2000635c = 0; *(uint64_t*)0x20006310 = 0; *(uint64_t*)0x20006318 = 0; *(uint64_t*)0x20006320 = 0; *(uint64_t*)0x20006328 = 0; *(uint64_t*)0x20006330 = 0; *(uint64_t*)0x20006338 = 0; syz_fuse_handle_req(r[0], 0x200042c0, 0x2000, 0x200062c0); break; case 6: memcpy((void*)0x2000c380, "./file0\000", 8); res = syscall(__NR_openat, 0xffffff9c, 0x2000c380ul, 0x84842ul, 0ul); if (res != -1) r[2] = res; break; case 7: syscall(__NR_read, r[2], 0x200021c0ul, 0x200041e0ul); break; case 8: memcpy( (void*)0x20006380, "\xf7\x70\x9f\x77\x94\x5e\xc1\x0b\x4e\xec\xea\x48\x0c\xce\x66\x41\x40" "\x23\x73\xda\x5e\x6d\x7f\x24\x01\x4f\x7a\xce\xe9\x6b\xe0\x13\x5b\x59" "\xce\x90\xb4\x63\x22\x32\x52\x16\x9e\x03\x6a\x4d\xaf\x3d\xae\x25\x0a" "\x1e\x6d\xe5\x26\x21\x1d\x43\xd9\x51\x2a\xe5\x26\x73\x0f\x55\x32\x68" "\x79\x49\x94\xfd\x54\x86\x8e\xc4\x80\xd0\x98\x62\xb6\x87\xb4\x63\xa8" "\xfc\x50\x58\x90\x35\x93\xb9\xbb\x4d\x50\x87\x96\x35\xcb\xf6\x7a\x9e" "\x7d\x11\x10\xfa\x0e\x8e\xf8\x9d\xbd\x2a\xbd\xae\x33\x18\x37\x37\xb8" "\xc0\xb9\x07\xf5\xcc\x74\xad\x6a\xb0\x38\x3f\x82\x40\xe0\x91\x41\x7d" "\x28\x16\x31\x7f\x40\xab\xb6\x42\x24\xf6\x16\x13\x6f\x93\xd9\x32\xf2" "\x22\x3e\xf4\x2f\xa3\xc3\x15\x5d\x53\x07\x5d\x3e\xb1\xdb\x73\xbe\xb3" "\x2b\xc3\x64\xe3\xfc\x24\x6d\x3d\xca\xca\x2d\xc9\x1a\x63\x48\x15\x41" "\x2b\xae\x91\x5c\xdb\x1a\x6d\xa7\x88\x45\x59\x40\x3b\x54\x52\x35\x54" "\x1d\xda\xc9\x7d\x7b\x1e\xa8\x13\x55\x39\xeb\xcf\xac\x1e\xdf\xa2\xfe" "\xe8\xcf\x78\xbb\x46\xda\x76\x44\xa8\xf9\xe4\x2a\xe0\x6c\xa7\xa1\x88" "\xb8\x3f\xa5\x37\xb0\x96\x2a\x10\x41\x1b\x67\xfc\x4d\x7d\xfe\x9e\x95" "\xcc\xe2\xae\xf8\x2e\x75\xf4\x68\x0b\x8f\xf9\x97\x6b\x65\x69\x52\x3b" "\x72\xa8\x6b\xd3\xa8\xc9\x6f\x30\xe8\x58\x12\xfe\x33\xa6\x10\xc2\xbe" "\x0a\x3c\x10\x63\xe2\xee\x86\x4c\x6e\x8b\xbf\x33\x1f\x27\x68\xac\xcf" "\xea\x78\x70\x0a\x73\x21\xe4\xaf\x2d\xb4\x6f\xd1\x62\x45\x7e\x43\x93" "\x69\xda\x22\x17\x99\x2b\x77\x50\x2b\x9b\x95\x8d\xf2\x7b\xc0\x86\x36" "\x99\x63\x79\x38\x54\xd7\xf8\xb0\x0c\x53\x7d\xe3\x21\x68\x98\xb8\xf2" "\xc1\xdd\x92\x50\x49\xee\xf1\xab\x57\xbb\x6f\x63\xb2\xd8\x88\x50\xb4" "\x9b\x3c\x54\xd7\x1f\x54\x5a\xfa\xfa\x16\xbd\x2d\x06\xae\x50\x13\x44" "\x98\x76\x23\x89\x0f\xdf\x9a\xc0\x4b\x17\x9d\x21\x31\x07\x0a\x34\xcf" "\x14\x36\x97\xb6\x64\x2b\xf5\xda\x67\x43\x7a\xaf\x5e\x78\xe7\xe6\xbe" "\x85\xe4\x4a\xd7\xb2\x65\xd7\x8d\x2b\xaf\x92\xee\x5c\xcb\x0a\x45\x2e" "\xb3\x2f\xb3\xfd\xd1\xa4\x1a\xbf\x3a\x68\x08\x6a\xcd\x20\x45\x8a\xf5" "\x5c\x08\x6f\x77\xc3\x0b\xbb\xce\x4c\x19\x54\x2f\x92\xab\x1e\x68\x39" "\x3f\xfa\x58\xb1\x40\x58\x6b\x49\x76\x1a\xac\xdf\x6a\xeb\x76\x82\x56" "\x1f\x01\xe0\x86\x9f\x50\x3c\x4a\x16\x1f\xd4\x05\x04\x6d\x3e\x65\x23" "\xbd\x40\x71\xc0\x9b\x75\x16\xe4\xe7\x84\xf4\xd1\x17\x06\xf1\xc2\xeb" "\x17\x0e\x73\x5e\x56\x3c\x43\x31\x7a\x5a\x9a\xfa\xd2\x85\x11\x16\x3c" "\xdb\x63\x66\x0b\xeb\x69\x9f\x7b\x8a\x7e\xaf\x57\xd4\x85\x17\x97\x4f" "\xfa\x76\x6f\xe8\xde\xab\x0c\xfb\x11\x56\x2b\x9c\x28\x1b\xce\x24\x93" "\xd0\x8c\x40\xa2\x59\xe0\x32\x5c\x52\x12\x4e\x30\x30\x64\xc6\xfb\xae" "\x28\x26\x35\x5e\x53\x15\x43\x86\x30\x30\xfe\xf4\x84\x62\x1a\x38\x1a" "\x94\x5b\x6e\xc7\x25\x3e\x20\x04\x7e\x72\x94\xbd\x06\x94\x42\xf7\x26" "\x72\xe6\xdf\xe1\xca\x17\xd7\x5d\x8c\x6b\x16\xc9\x31\x43\x8c\xec\x72" "\xe6\xee\x53\xf3\xdb\x89\xa1\x0a\x38\xa9\x3c\xc8\x4c\x73\x93\x77\x34" "\x61\xdb\x50\x74\xb4\xf5\x06\x0d\xd0\xa0\x4a\x06\x9a\x7a\x9b\x07\x88" "\x56\xa3\xfa\x17\x86\xfc\x8d\xab\x62\x1b\xa6\x22\xac\xaf\xd0\x78\x1b" "\x52\x3e\xa0\x97\x28\x3a\xfb\x0c\x59\x22\x2a\x31\x6c\x6d\xdc\x05\x54" "\xbc\xac\xcc\x70\x28\x8e\x52\x4e\xd7\x71\x9f\xc0\x2a\x86\x28\x3b\x57" "\x69\x0a\x73\x20\xaf\x02\x8e\xfb\xae\xdd\x5b\xd1\x58\xa9\xdc\x9e\xa8" "\xe4\xf5\x3c\x7d\xa7\x56\x6c\xdb\xdd\x4f\x4d\x9f\x01\xa9\xdf\xa6\x25" "\x1a\x35\x5e\x33\x8e\xfc\x8e\xee\x25\x8a\xdd\x87\x31\xc7\xd2\x21\x61" "\x48\x2b\x7e\x3c\x8b\xc8\x3f\x30\x48\x2f\x99\x35\xfc\xc5\x97\x4d\x9d" "\x06\x85\xb5\xfb\xa3\xb0\x7d\x7f\x85\xcc\x8f\xef\x18\xac\x4e\x8e\x91" "\x5b\x84\x76\xbb\x44\xd7\x38\x4c\x99\x69\x21\xae\x40\xa4\xfd\xd2\xdd" "\x2a\x70\xba\x17\xe1\xc2\xd6\xec\x67\xb8\xf7\xb4\x55\x68\xc1\x05\xd5" "\x2a\xfa\x9c\x82\xbd\xc1\xdc\x7f\xd9\x51\xb1\xe4\xfc\x12\x12\xbf\x29" "\x23\x1d\x8e\x41\xed\x4d\xac\xaf\xec\x9a\x82\x3a\x67\x2d\xce\xee\xe0" "\xe4\x04\x8b\x56\x20\x37\x3c\x53\xab\x8f\x35\x53\xc8\x42\xa5\xa6\xd9" "\x14\xf8\x33\x4d\x6d\x8a\x4a\xf7\x85\xf4\x18\xe6\xb4\xaa\xb3\x96\x5f" "\x94\xca\x9d\x80\xa7\x4a\x5a\x03\x4f\xb6\xed\xd0\x32\x26\x96\xaa\x10" "\x60\xd8\x2c\x7b\x10\x49\x83\xf8\x88\x90\x26\x81\x9f\xfd\xf3\xd4\x5c" "\x60\x4e\x53\x06\x6b\x03\xdf\xae\x13\xfa\xd4\x99\xe3\x89\x41\x20\xc1" "\x09\x44\xea\xf7\x52\x98\x9d\xae\xe4\xe1\x72\xde\xcc\xa9\xc2\xb3\x24" "\xa8\x17\xa7\xc7\x87\xe6\xbc\x59\xfc\x28\x84\xe3\x58\xa1\xa9\xb1\x4b" "\x37\x04\xca\xbe\x37\x4d\x23\xc0\x02\xb8\x11\x2b\xe6\x8f\x40\x93\x02" "\xd3\xda\xd0\xa4\xc0\x21\x05\xcb\x54\xc4\x35\x0c\x24\xe6\xf3\xb7\x58" "\x8b\xf1\xc2\x8a\xe3\x21\xea\xeb\xb9\x30\xcf\x0c\x3b\x60\x7a\xcf\xf2" "\x06\x63\xea\xb8\xa5\x93\x32\x0c\x51\x8e\xba\x8f\x92\x05\x35\x0f\x11" "\xa9\xc1\x53\x01\x15\xf7\xe0\x0f\x2a\xa3\x35\xc9\x2e\x13\x05\xff\xcf" "\xea\xc7\xcd\xec\xd6\xf1\xb6\xa3\x37\x10\xec\x77\xce\x42\x84\x84\x71" "\x2d\x66\xba\xd1\x37\xb6\xc8\xda\x5a\xa5\x1d\x1b\x71\x96\xd9\x81\xa1" "\x4a\x40\xdf\x84\x06\xb2\x92\xf3\x85\xcb\x14\x9c\xfc\x0a\x86\x70\x15" "\x66\x67\x4e\x08\x9b\x88\x48\x7f\x34\xfd\xb0\xbf\x16\xca\x94\xd9\xda" "\x4a\x83\x7f\x15\xd5\xcf\x8f\x11\xd9\xc2\x26\x84\x4d\x3e\xb1\x8d\x84" "\x84\x20\xf3\x44\xa3\x99\x27\x72\x12\x53\x19\xab\xb6\x41\xea\x56\xf0" "\x3f\xc6\x26\xf0\x92\xf6\x7a\x8b\x67\x16\xb2\x9c\xf8\x58\x5c\xf5\xfe" "\x25\xa3\x5f\x5d\xab\x0e\x3e\x07\x5b\xa3\xc8\x41\x16\xfb\x6c\xbb\xf9" "\x9a\x81\x53\xd1\x79\xff\xc1\xe6\x43\x56\xf1\xfa\x0b\xca\x68\x23\xeb" "\xd8\xe1\xa1\x76\x63\x69\x62\xcf\xf2\x71\xce\xe5\xc5\xba\xfc\xb6\x8f" "\xad\x49\x21\xe0\x70\xc4\xae\x08\xcd\x8f\xa0\xb9\x45\x34\xf1\x1e\x66" "\x40\x3d\x12\x9a\x5e\x82\x53\xbd\x3a\x9d\xc0\x9a\x81\x89\x89\x58\x19" "\xff\x61\x85\x32\xbf\x67\x43\xb1\x7a\x24\x3d\x51\x5e\x63\x86\x8b\xdf" "\x92\x87\xfd\x1b\xad\x0d\x52\x57\x59\x95\x36\x24\xc8\xe8\x2d\xeb\xf8" "\x81\x59\xb2\xc2\x29\x45\x53\x5d\x93\x79\xc9\x11\xf8\x9c\x78\x56\xbe" "\x14\x38\xbd\x02\xdf\x70\xc9\x39\xb8\x07\x41\xdd\xad\x24\x50\x82\xa7" "\x25\x56\xa2\xab\x3c\x23\x90\xb8\x4c\x17\xb6\x11\x91\x03\xa0\xb8\x12" "\x6d\xbc\x55\xe0\x5b\x15\x3e\xf9\xa1\x2c\xc6\x7f\x64\x9c\x14\x16\x0c" "\x69\x8a\x71\x27\xb3\x9f\xe8\x8f\xb9\x1d\x19\xb2\xa3\x81\xc0\x81\x14" "\xc6\xe3\xe6\xd3\xd4\x2b\x77\x60\x2c\x83\x8c\x42\x1a\x9a\x41\x4f\x1e" "\xb1\x82\xd0\x19\x7f\xf6\x7d\xcf\xb5\xd7\x94\x04\xaf\xbd\xf9\xc9\x6f" "\x47\x5a\x0d\x5a\xfc\x9a\x4d\x7c\xda\xd4\x58\xee\xd6\xb1\xde\x6c\x13" "\xb1\x1c\x46\x00\x42\x43\xdb\x77\x9e\x7a\xd6\xdb\xbf\x15\xe6\x9e\xe3" "\x4b\xd2\x52\x4c\xf7\x2e\x49\xa5\x35\x29\x92\xa9\x25\x1a\x86\xc3\xdc" "\x30\xd7\xd5\xfe\x61\xae\x53\x89\x28\xe8\xfd\xca\x0e\x04\xfd\xb5\x91" "\x75\x23\xd8\x26\x6b\x7b\x4f\x16\x79\xa5\x08\x2e\x79\x8f\x58\x7c\x5e" "\xd9\x08\x4c\x70\x96\x5e\x94\xe1\x2f\x64\x3a\xb0\x19\x1e\x60\x6c\x2e" "\xb0\xc3\x35\x9a\x2b\x85\x04\xf3\xbb\x2e\x72\x1c\xfb\xcf\xdd\x90\xc3" "\x1c\xde\x10\x99\x2c\x94\x00\x27\x3b\xbc\x45\xfe\x5b\xa3\x4d\x7e\xde" "\x77\x30\x36\xe2\xfd\x1f\xec\x1f\x00\x1c\x49\x5a\xcc\xdf\x8f\xf5\x72" "\xde\x3e\xb2\xae\xeb\xad\x29\xac\xfe\x3d\x2b\x14\x48\xfd\x67\x36\x8d" "\x0c\x37\xf8\xbf\xbb\xf0\x9b\xaf\xc8\xf9\x9a\x44\xb1\x87\xf4\xf4\x43" "\xc8\x2b\x21\xf6\x6f\x72\x2f\xb5\x9f\x40\xce\x0f\x9d\x83\xc5\x2b\x9b" "\x33\x58\xa8\x0e\x10\x2b\x21\x79\x5a\x1c\xfc\xb9\x86\xc7\x87\xcc\xbb" "\x9f\x9c\x96\xc2\xb6\x6d\x2f\x7a\x94\xef\x2c\x2a\x5b\x65\xd5\xc2\x97" "\x0b\xa6\xf3\x10\x76\x09\xf4\xa6\x74\x32\x83\x5c\x2c\xe1\x68\x2d\x26" "\x0f\x68\x26\x07\x2a\x6b\x6d\x4b\x11\x3a\x5b\x06\x31\x16\x77\xca\x01" "\x26\x0f\x35\x67\xff\x1a\xb6\xbe\x13\xb4\x55\xf9\x39\x16\x90\x62\x73" "\xc5\x43\x0f\xcc\xcb\x57\xe0\xd7\x82\x24\xeb\xec\x42\x27\x63\xee\x3a" "\x6b\x94\x52\x87\x49\xa7\xee\x5f\x70\xc9\x03\x6c\xf3\xa9\x9a\x9c\x98" "\xab\xc0\xe8\xae\xc1\x87\x33\xa0\xc7\xda\x76\x81\x4f\x2f\xf7\x41\x58" "\x2a\x9d\x96\xeb\x79\x84\x26\x06\x57\x64\xfc\xf8\x6e\x40\xb6\x49\x0f" "\x54\x54\x94\xb4\x87\x49\xfa\x8d\x39\x8c\x59\x38\xd6\xbc\x7d\xbe\x18" "\x3d\xee\xcb\x91\x3e\xf4\xc6\x1a\xef\x27\xea\x6b\xb7\x7c\x23\xaf\x09" "\xc3\xde\xc4\x53\xf0\x1d\x8e\x0c\xf1\xa3\xdf\x30\xd7\x3d\x44\xc4\xe1" "\x47\xd9\xff\x28\x53\xcb\x05\xb1\xd9\xfc\xd2\xd8\x08\x15\x01\x6f\x65" "\x36\x8c\x47\x7f\x3e\x8b\x67\x6e\xe1\xef\x5b\x91\x54\x85\x0f\x02\x95" "\x10\x60\xf5\x33\x5d\x7b\x8b\x1c\x39\x51\x51\xb4\x43\x13\x0d\x27\xb4" "\xaa\x0c\xdd\x9c\x1b\xad\xc3\x8e\x18\x25\xcb\xae\xa2\x24\x80\xe1\xd8" "\xa9\x86\xb0\x01\xa4\x46\x4f\xea\x61\x87\x07\xf4\x3b\xdf\x79\x49\xf5" "\x00\xf3\xf9\x29\x3b\x7f\x7f\x28\x17\x0d\x45\xeb\x3e\x94\x22\xd7\xa1" "\x07\xd5\xdf\xab\x18\xb8\xe7\xa2\xcb\xc4\xb4\x2a\x81\x83\x84\x13\x6a" "\x49\xa0\x21\x72\x1f\xe0\x7d\xff\x4f\xb2\xf2\x6e\x74\xee\x6b\x57\x25" "\x16\x64\x09\xd7\x94\xc6\x9a\x1a\x5b\x27\xcb\x62\x63\xc3\x87\xb8\x16" "\x12\xad\xd3\xc9\xe9\xe5\x09\x84\x58\x43\xa6\xff\xb2\x25\x0d\x37\xc3" "\x65\xe3\xf5\x7f\x0a\xd6\xe9\x08\xfa\xb1\x19\x21\x1e\x76\x79\xb4\x1c" "\x8e\x29\x8f\x9e\x85\x55\x8b\xe2\x5e\xc0\xa4\xe6\xc9\xaa\x3d\x52\x3e" "\xf3\x77\x19\x71\xbf\xd2\x72\xfc\xb7\x36\xd1\x0f\xa9\x8a\x87\xb7\x8c" "\x53\x2f\xcc\x32\x2f\x5e\x24\xba\xa2\x1f\x2a\x3c\x84\xa9\x0e\xc9\xb5" "\x46\x86\x94\x00\xba\xd1\x9d\xec\x35\x75\xeb\xc6\x9c\x8e\x51\x22\x10" "\xb8\x16\x67\xed\x3c\xed\xe8\x9d\x10\xee\x58\x71\xa6\xfb\x16\x6b\x2f" "\x5c\x96\xf0\x79\xcd\x5b\xf9\x7f\x41\x32\x79\x30\xb2\x10\x62\x71\x06" "\xc4\xcb\x6d\x77\xe3\x79\x3b\x80\x8c\x42\x5b\x8a\x41\x18\xbb\xaa\x2d" "\x1a\x14\x54\xb1\x62\xcf\x98\x86\xec\x17\xe2\x15\xd1\x22\x23\xa6\x53" "\x48\xab\x33\x18\x58\x61\xab\x1f\x31\x66\xa4\xa9\x25\xd2\x5a\x63\xde" "\xf8\x95\xa5\xb0\x1d\xee\xa1\x1b\xca\xf1\x7c\x79\xd2\x7a\x92\x28\x34" "\xa3\x2a\xa0\xf8\x67\x67\x93\xc7\x25\x7e\x44\xd3\xf7\x76\x8d\xe1\x92" "\x92\xa3\x85\xa7\xa4\xb3\xfc\x99\x2a\xbf\xb9\xf8\xf3\xad\xa5\x7b\x83" "\xdc\x79\x55\xc0\xb2\xed\xef\x1a\x82\x14\xdd\x8e\xa2\xcc\x96\x79\x68" "\x51\x37\xdd\x63\xf3\x91\x80\x20\xe2\xe2\xf3\x86\x02\x00\x5a\x4a\x6e" "\x84\x42\x28\x67\xb9\x16\x0f\x65\xe9\x2e\x05\x3d\x0b\x58\x19\x1e\xad" "\xcd\x5a\x8a\x69\xb1\x8e\x32\x16\xea\x63\xdf\x3f\x31\x86\x9c\x81\xde" "\x88\xfc\x75\xa1\xd9\xe1\x5c\xbd\xf8\xd6\x8b\xa5\x0c\xd8\xdf\xa5\x52" "\x59\xaa\x36\x2c\x26\x15\xcc\xab\x13\x48\x98\x44\xd5\xed\x99\x53\x83" "\xe3\x34\x07\x4f\x56\x1a\x4a\x67\xe1\x06\x0e\x64\xa8\x18\xfc\x96\x13" "\x5d\x34\xe6\x04\xca\xbe\x3d\x91\x95\xcf\x12\x83\x72\x5c\x77\x00\xe3" "\x97\xec\xb7\x2f\xc8\xb3\x6f\x38\xcd\x08\x30\xb1\x9b\x43\x91\x01\xe4" "\xb3\x83\x9c\x48\xdd\xc9\x53\x67\xbf\xf8\x7b\x88\x84\x07\xa5\x17\xf9" "\x4f\xbe\x58\xa7\x03\x3d\xb1\x12\x3c\x0a\x00\x74\xc7\x30\xe3\x4c\xe8" "\x21\xe1\x2f\x43\xd8\x4d\x3b\x4f\x03\x10\xc6\xec\xd8\xaf\xe7\x77\x96" "\x71\xd7\xb8\x25\xbb\x38\x92\x82\x5c\x76\x2b\x86\xf0\xff\xd1\x82\xb6" "\xaa\xfd\x47\x7f\xad\xf0\xc7\xa9\x31\xcb\x61\xe2\xb0\x5f\xc1\x12\x67" "\xbf\x0a\x98\x82\xe7\xc2\xf8\xe8\x4d\x34\x80\xd9\xe4\x57\x6c\xc0\x3f" "\x0e\x1d\xbf\xbe\xf9\xf6\x68\x40\xad\x37\xe7\x6d\xa3\xff\x8a\x41\x97" "\x30\xa0\x07\x6d\xe6\x7e\x9b\x91\x3f\x03\xf5\xb6\x37\x28\x7d\x98\x1e" "\xaf\xa1\x22\x3f\xea\xfb\x86\xbc\xff\x5b\x2c\xe9\x87\xf6\xfa\x83\x86" "\xee\x03\x6a\x3f\x75\xfe\x01\x4e\xf9\x0b\x05\xa7\x44\xe0\x38\xc4\x37" "\x66\xb5\xfd\x55\x2e\x66\xb9\xb4\x99\x6f\x77\x49\x88\xd2\xa7\x0f\xa0" "\xbf\x05\xfb\xc4\x53\xcc\x4f\xd0\xab\x64\x2d\xb1\xbc\x71\xe1\xb6\x39" "\x19\xf3\xc4\x92\x54\xf1\x77\x30\x6f\x9b\x00\xaf\x57\x82\xc0\x63\x3d" "\x68\xec\xb8\x5f\x93\xfc\x1a\xfd\x8d\xee\x3d\xd1\xca\x8b\x0d\x7b\xa0" "\xea\x46\x3d\xe0\xb6\xe3\xe0\x5c\x08\x0f\x83\x2e\x12\x9c\xec\x16\x85" "\x39\x23\xcf\x15\xf0\x6d\x9a\x38\xe2\x0a\x5a\x6f\xa5\x12\x5d\x03\xc1" "\xb7\x26\x80\x54\x7e\xaf\xd9\xfd\xf2\x46\xaf\x08\xdc\xb4\xd4\xd7\x46" "\x57\x74\x78\xfb\xc7\x2d\x7a\x36\xbb\x4b\xd3\xb5\xba\x4d\xc5\xe4\x07" "\xba\xbf\xcd\x64\xb8\xc4\x13\xd7\xdd\x54\x33\xd6\xa4\xee\x17\xd5\xb4" "\x83\x5a\x74\xc8\x14\x14\xa9\x39\x7d\x73\xe1\x5a\xe3\x87\xf0\x4a\x50" "\x12\xa3\x7c\x88\xb2\x26\x20\x7a\xba\x93\x3d\x68\xa6\x7b\xcd\x38\xf5" "\xe0\xfb\x8b\x24\xc4\x43\x4c\x3a\x01\x09\xde\xae\xf4\xf9\xab\x1d\x23" "\x0e\xa6\xa4\xac\xd6\xdb\x0c\x39\x62\xd0\xde\x3b\xb6\x4e\x33\xa2\x9a" "\xf8\xdc\xbf\x39\xd4\x8a\x27\xc1\x64\x9a\x66\xd4\xae\xcd\xce\x2d\xb6" "\x0c\x50\xbc\xec\x31\x67\x75\x59\x36\x91\x84\x60\x8d\xb1\x97\xf2\xeb" "\xed\x81\xca\x8f\xbe\xb9\xd2\xf8\xc4\x86\xec\x98\x39\xe7\x65\xdf\x69" "\xea\x63\x4f\x28\x15\xe7\x5e\xac\x61\x3f\xeb\xfa\x26\x01\x27\x67\xc2" "\x8e\xae\x20\x7e\xd9\x31\x5b\xf1\x9c\x42\xde\x96\x02\xf4\x4f\x45\xa9" "\xcb\x99\x13\xa6\x75\x48\x78\x7a\x30\xc9\xe5\x6f\x33\x99\xab\x28\x1c" "\x53\x77\x51\xa2\x8d\x98\x39\x26\x55\xa6\x0c\xeb\x9f\x25\x15\x77\x2d" "\x2f\x1d\x5d\x28\x43\x95\x23\x12\xe2\xa5\x90\x61\xb6\x0f\x12\x8d\xef" "\x67\x95\xe0\xc8\xeb\x7b\x12\xa7\x10\xc1\xaf\xac\xc8\x4f\x49\x8a\x29" "\xd6\x83\xd1\x94\x9c\x17\xf3\xae\xeb\x8b\x9a\x32\xeb\x10\xbb\x24\x2d" "\x61\xa2\xdb\x59\x02\xd5\x92\x22\x4f\xb8\xe1\xe7\x13\xef\x33\xca\xae" "\xc6\xf8\x51\x63\x33\xca\x48\x86\x34\x55\x55\x16\x6e\x91\xa6\x46\x9d" "\x67\xf3\x92\x41\xd1\x44\xc6\x45\x7c\x0f\x74\xc6\x0e\x66\x24\x39\x28" "\x1a\x66\x0b\x3c\x80\x2e\xaf\xa5\x82\x5f\xab\x36\xb7\x64\xd4\x75\x3b" "\x33\x92\x0d\xc7\x2e\xc4\xb7\x13\x6b\xe5\x56\xc7\xd0\xd5\x28\xee\xf6" "\x70\x49\xf5\xa7\xbd\x9c\xc7\xe4\xe9\x4a\x48\x74\xad\x8d\x06\x59\x5e" "\xd3\x8a\x5f\x1c\xaf\xff\x10\x18\xc1\x35\x1d\x1d\x7e\xab\x14\x4e\xdb" "\xa6\xd4\xf9\xee\xb7\x92\x4a\x25\xb9\xf7\xa3\xeb\x20\x98\x49\x19\xd9" "\xad\xe6\x6a\x18\xc3\x3f\x92\xb6\x50\x31\x47\x2c\xa6\x57\xa7\x24\xd8" "\x60\x53\xa3\xfc\x60\xfc\x55\x02\xac\xec\x81\x82\x2b\xc6\x09\x95\x4e" "\x40\x2a\x40\x60\x81\xcf\xe7\x93\x1a\x1a\xdb\xfc\x45\xa3\x16\x8e\x30" "\xa4\x51\x56\x13\x02\xa1\x31\xff\x70\x2b\x4d\x6c\x5d\x36\x03\xea\x9d" "\x1b\x54\xc6\x4a\xad\x93\x40\x7e\x07\x8d\x6b\x43\x51\x54\x23\x6b\xa5" "\x94\xe8\xd2\xf7\x98\xbb\xdf\xac\xe4\x89\xb4\x31\x20\xbc\x0b\xd7\xe1" "\xbc\xb6\x65\x8c\x2c\x19\x2c\xcf\x18\xf2\x78\xe9\xc5\xbb\x14\xdb\xdf" "\x1a\x4e\xb3\x41\x2f\x9d\xc6\x4a\x31\xab\xef\xd7\x9b\xd7\xc9\x1b\xb7" "\x29\x7c\x9f\x69\x48\x40\xa7\x5c\xae\x5d\x34\x82\xd1\x5a\x2d\x14\x80" "\x92\xa6\x54\x59\x72\xb7\xf9\x5a\x23\x20\x6b\xda\x50\x92\x60\xbb\x37" "\x0a\x01\x2b\x74\x4c\x2b\xb4\x6b\x57\xda\x12\x36\x7d\x35\xe7\x78\xb7" "\xd7\xf4\x63\xfd\x82\x30\x36\x8b\x5a\x56\x36\xf2\x8e\x2c\xdd\xd0\x3c" "\x69\xad\xc9\xc9\x13\x02\x7a\x72\x61\x30\xc9\x5d\x81\x8f\xa3\x8c\xa7" "\xba\x84\x21\xd3\xfc\xf0\x73\x6c\xd3\x00\x1f\xfc\xf8\x07\x01\xcf\x6d" "\x73\x7c\xc3\xdd\x8f\x90\x5a\xf3\x9f\xb2\x80\x6d\x2f\x22\x28\x9d\x00" "\x01\xc7\x4e\xb4\x82\xf4\xfa\xf0\xa1\x86\x30\x99\xcc\x1b\x23\x6e\xdd" "\x1c\xfa\x20\x6b\x21\xa2\xed\x86\xaf\xfb\x4e\x6a\x3a\x4d\xfb\x54\xfa" "\xb4\x6c\x8c\x06\xcd\x3e\x37\x0b\x50\xe0\x8e\x1b\x7a\x08\x86\x42\x69" "\xd8\x67\xeb\xa5\xfa\xe8\xa4\x95\x60\xe9\x47\x92\x09\x96\x60\x02\xc0" "\x97\x19\xab\x8c\xa5\x87\x02\xbf\xb0\x07\x1d\x38\x59\xdf\x01\x93\xa9" "\x56\xed\x4d\x8a\xd1\x9a\x2c\x79\x65\x6c\x6d\xd4\x2e\xb5\xa4\x4b\x80" "\x8d\xf3\x94\x33\x36\x83\xb6\x05\xad\x0c\xf1\x76\xbf\xcf\xdc\x89\xb0" "\x13\x17\xa8\x02\xdf\x0a\xb0\x2f\xc3\x67\x38\x22\xb5\x5f\xcf\xba\x51" "\x27\x92\xc9\xe4\x0a\x15\x0c\xfa\xe4\xdc\xd4\x0b\x2b\x12\x29\x6b\xa9" "\x50\x63\xa2\xf5\x0f\x55\x2b\x46\x82\xc4\xd4\x61\xb1\xef\xb7\x55\x58" "\x16\xb5\xb8\x36\xff\x03\x19\xaf\x69\x35\xae\x5b\x41\xe6\x73\x29\xa7" "\xb2\x1d\xa9\x3c\x36\xfc\xd8\x7c\xbb\xa1\x65\x3c\x0d\x00\x07\x7b\x14" "\xcf\xcb\x82\x4f\x89\x1d\x62\x21\x9c\x15\x7b\x63\x54\x30\x08\x37\xd2" "\x11\xfb\xcf\x18\x81\xf5\xe9\x8d\x61\x95\xfb\x78\x24\x79\xe1\x06\xc0" "\x72\x02\x0b\x56\x28\x51\x07\xe2\xfd\x79\x47\xbc\x64\xec\x9a\x43\xa0" "\xb2\x39\xc1\x40\xec\x04\x56\x68\x5a\xc3\xeb\xa9\x88\x95\x2e\x64\x1d" "\x2e\xb1\x6c\xd0\x13\x2d\x2b\xb2\x55\x76\xfc\x6b\xcd\x5e\x29\xeb\x9d" "\xa2\xd4\x0e\x8b\x50\x77\x6a\xbe\x5c\xd7\xea\x45\xda\x84\x42\xa3\x11" "\x97\x7c\x51\x75\x50\x15\xb3\xe4\x99\x57\x39\xed\xef\x05\x67\xa3\xf1" "\x69\xe9\x80\xad\xdb\x17\x05\x22\x41\x75\x37\x23\x39\xde\x90\x4e\xb9" "\x52\xe1\x3f\x64\x84\x49\x72\x22\x58\xfa\x21\xf7\xe5\x3f\x4a\x19\x56" "\xe8\xe9\xa3\x9d\xbb\x18\xc6\xd2\xd1\x0d\x91\x46\x35\x81\x58\xa0\xab" "\x7c\xe3\xf5\x41\x20\xb7\x05\xe1\xcc\xb7\xa1\x3f\xb7\xe9\x10\x3d\x0b" "\x80\xfa\xaa\xc3\x1c\xab\x07\xf6\xd2\xd9\xf6\x68\xc7\x07\xb5\xe3\xbd" "\xf2\x59\x92\x3a\x10\x57\x81\x6a\x31\xe8\xc7\x71\x26\x7f\xd9\x74\x19" "\x3d\x90\xe1\xa9\x83\x7a\x98\x7d\x9b\xa5\x2f\x7a\xf5\x99\xc1\xae\xed" "\x13\xf6\x61\x9c\xc0\xb3\x34\x39\x6b\x75\x0c\x90\x17\xf8\x4c\xff\x56" "\xc0\xdf\xec\xc1\x2f\xae\xe5\x9e\x37\xcf\x7d\x44\x57\x5b\xb4\x48\xab" "\xb1\x96\x16\xd4\xfa\x79\xf4\xfd\xf9\x66\x31\x32\x8d\xd0\xd0\x71\x7f" "\x12\xb9\x58\x7d\x76\xb5\x77\xbb\xe7\x8e\xaa\x7b\x0a\xca\xce\x3b\x79" "\x77\x6b\x5d\x2e\x77\x94\x2c\x57\x74\x5e\x34\x7e\xc7\x66\x17\x0e\x90" "\xcc\x66\xa5\x19\x1b\xff\x3a\xd4\x9d\x42\x3b\xa2\x81\x7c\xf9\x2b\xe7" "\x4e\x65\x3c\xc6\x27\x4a\x20\xba\xde\x32\x46\x38\xd5\x7a\x27\xf2\xfe" "\xa0\x1d\x46\x70\xbc\x1a\xd5\xec\x4d\x00\x64\x92\xff\x5f\xa6\x16\xa0" "\x01\x0b\xe8\x24\x76\x6f\x12\xac\xec\x9b\x26\xa7\x60\x6c\xc8\x45\x33" "\x82\xc3\xdd\x1f\x5f\x5c\x85\x35\x45\x69\x12\x38\x24\x00\x2c\x44\xd0" "\xae\x4c\xd2\xe1\xeb\xb4\xe3\x3e\x3d\x7b\x69\xfe\x14\xe0\x5f\xb5\x3a" "\xf9\xd6\x6f\x53\x99\x0a\x83\x01\x20\xcd\x61\x8c\xfa\xa1\x0e\x5f\x6d" "\xea\xb4\xef\x45\x22\xaf\xd3\x80\xea\x52\xf9\x0b\x18\x1f\xd5\xb5\x38" "\xf4\x24\x90\x0a\xac\x64\x3d\x11\x8c\x33\xdb\xb6\xff\xe0\xb2\x42\x88" "\x44\xf5\x19\x43\x41\x2d\x8f\xda\x4a\x32\x7b\x71\xc8\x14\xcd\x63\x45" "\xb3\x69\x0a\x47\x16\xf0\x4f\xc7\x32\x3f\xf1\xaf\x08\xe8\x2e\xf5\xe5" "\x71\xc9\xfb\x0f\xa9\xb2\x2a\xf4\x09\x48\xfe\xbd\xa3\x2e\xa1\x4e\xcf" "\x61\x70\x0e\xb0\x29\x67\xd0\x9b\xfd\x07\x8a\xce\x6c\xea\x25\x99\x52" "\xc0\xbe\x90\xfa\xb1\xce\x84\x1f\x10\x22\xd2\xda\x82\xf1\x73\xc5\x80" "\xd4\x3e\xff\xdb\x42\x4b\x17\x29\xaa\x9f\xe4\x02\x92\xc0\x82\x04\x3a" "\x7c\x90\x1b\xc7\x64\x26\xef\x6e\x3d\xe7\x88\xdb\x31\xe5\x0f\x54\x45" "\x8c\xa4\xe3\x60\xbb\x80\x3b\x48\xd5\xa4\xbe\x50\x72\x4c\x1f\x48\xb5" "\x04\xb0\x86\xd9\xdc\xa3\xae\x74\xea\xe7\x6a\x18\x49\xd1\x4a\x40\x74" "\xf3\x89\xab\xa8\x05\xb7\x93\xf9\x66\x2f\x07\x24\x05\x02\x6a\xfc\x3e" "\xf1\x08\xed\xe6\x9d\xbd\x2c\x76\x98\x86\xdf\xc7\x5a\x9a\x2e\x09\x31" "\x37\xd9\x2b\x38\xe3\x4a\x05\x0e\xca\x73\xcd\x30\x67\xd5\x6d\xfd\x58" "\xfe\xda\xff\x28\x57\xe7\x20\xb0\x9d\x67\x66\x07\xa1\xe8\xee\xeb\x06" "\xb2\x64\x94\xcc\x2b\x84\x4f\x5e\x85\x62\x71\x73\x24\x77\xf3\x84\xaf" "\x83\x9e\x98\x88\x9d\x5c\x9c\xc2\x86\x51\xf6\xeb\x74\x02\x9f\x83\x91" "\x50\xf9\x47\xd1\x80\xe4\x87\x76\xef\x1c\x82\x95\x09\xe1\x20\x16\xc6" "\xd1\xb7\x17\x71\x3e\x63\x25\x75\x1a\x94\x4c\xd2\x59\xb1\xb8\x6b\x1f" "\x5e\x79\x3c\xdb\x55\x51\xea\x99\x03\x8b\xe0\x9c\x2c\xeb\xdd\x70\x15" "\x9c\x77\xab\xc7\xc6\x4a\xf2\xe2\xde\x1a\x86\x0a\x3e\x9d\xd8\x64\x6b" "\x7a\x68\x66\xe1\x89\x1f\xcf\x97\xa2\xb3\xea\x47\xc0\xc5\x7c\x5f\xa9" "\xa9\x41\x29\xc2\xe2\x79\x40\xab\x9f\xe9\x96\xeb\x18\x13\xd2\x1d\x48" "\xfb\x6d\xbc\x9b\x80\x71\xc5\x0d\xc2\x6b\x4e\xd2\x15\x88\x21\x1f\xc5" "\xed\xb1\xca\x87\x3c\x70\xb6\x06\x67\x8a\xe7\xde\x9c\x10\xd2\xd0\x83" "\xf3\x72\x42\x1a\x30\x38\xc5\x92\xa3\x8a\xec\x69\x02\x08\x62\xf4\x43" "\x2e\xf9\xae\x7f\x40\x0e\xd5\x3b\x44\xbb\x58\xe9\x2b\x02\x2a\xc8\xb6" "\x2a\x6b\x45\x93\x37\xaf\x33\x9d\xc3\x34\x6a\x80\x9b\x71\x5f\x99\x74" "\xd2\x1e\x60\x62\x44\xd2\x3c\xf4\xdc\xb0\x95\x6f\x93\xc1\x40\x47\x24" "\x31\x72\xad\xc9\x7a\x1f\xed\x86\x8b\xc4\x9f\xb5\x7e\xcc\x12\x34\x25" "\xa2\x1e\x94\xdd\x5b\x9d\x1f\xf5\x2b\xc4\x59\x65\xa7\xbe\x2f\x5e\xa8" "\x21\x87\x50\xe2\xcc\x8f\x17\x4f\xbd\x2c\x78\x11\x74\x2f\x5f\x17\xfa" "\x1f\x95\x4b\x84\x23\xc4\x03\xfd\x2e\x4e\x96\x29\x6e\x37\xe0\xbf\xe2" "\xed\xd5\x2e\x8c\x3b\x92\x1d\xac\x77\x1c\x61\x52\x44\x55\xb4\x01\x01" "\x7a\xb5\xf6\x55\xec\xa7\x61\x39\x55\x7a\x4a\x87\xcc\x30\x21\x0b\x05" "\x2a\xe1\x7a\x5c\xa8\xb6\x34\x32\x26\x57\xea\x4d\x87\xe0\xda\x23\x92" "\xc4\x70\xf8\x95\x1a\xc0\x56\x0a\x01\xb4\xd0\xbe\xfe\x63\x2e\xe3\x11" "\xd0\xb8\x7a\xf3\x14\x65\xd6\xcf\x78\x54\xf5\x73\x8c\xb5\xde\xbf\xa1" "\xd7\x38\x1c\x74\xf4\x5e\xea\x08\xc0\x6d\x4d\xdc\x9e\x81\x1d\x1a\x33" "\x39\x4a\x35\xef\xdb\x71\x21\xcd\xfa\xf1\x60\x33\x43\xdf\x84\x31\xc8" "\x77\x18\xa5\xd4\xcf\x3b\x2e\x59\x35\x08\xd8\xb6\x3f\x0d\x1e\x82\xf9" "\xeb\xc4\x0d\x40\x22\xba\x06\x32\x7c\xc8\x23\x3f\x29\xc0\x99\x5d\xa5" "\x12\xb3\x18\xbf\xa2\x12\xe9\x58\x2c\xb8\x80\xd9\xbd\x6a\x02\x05\x0a" "\x01\x42\x94\xef\x32\x1b\xb2\xc6\x5e\x46\x38\xa4\xfd\x2c\x8c\x27\xfd" "\x9a\xc2\x8c\x9e\x49\xcd\xae\x6d\xd9\xeb\x05\xda\xfb\x38\xa4\xa0\x03" "\xa5\x6d\xba\x82\x6e\x38\x6f\x5f\xd3\xab\x0d\x54\xb9\x2f\x53\xec\x11" "\xc8\x50\x92\x7f\xc4\xc5\xb6\x69\xc6\x75\x05\xce\x59\x30\x6a\xd8\x64" "\x60\xb4\x80\xb7\x11\xd4\xb3\x1c\x51\x28\x29\xb7\x03\x7d\x1c\x45\xb5" "\xb8\x4c\x0b\xe4\x0a\x03\x8b\x5e\x97\x5c\x57\xc8\x60\x47\x63\x18\xa2" "\x2d\xf2\xe4\xf9\x00\x09\xc3\x84\x81\xe5\x19\xb9\x51\x1e\x54\xdc\x59" "\xe8\x9a\x65\x93\xbc\x53\xae\x03\x22\x44\x66\x51\x39\x30\xc5\xed\x36" "\x89\x79\x3f\x00\xbe\x19\x2a\x58\xa9\x19\xdb\x9a\xd1\x26\x79\x62\xc0" "\xee\x60\x32\x7e\xe7\x10\xac\xcb\x0d\xa0\x37\x61\x0e\xf8\xaa\xff\x63" "\xf6\x58\x2f\x69\x10\x96\xfb\xdf\xb1\x99\x6a\xbc\x44\x43\xcd\x4f\xfe" "\x04\xfc\xad\x36\x08\x41\x30\x44\xb9\x78\xd8\x6d\x3a\x18\xbd\xf8\x6f" "\xdb\x70\xcf\x7e\x7b\xbb\x0e\x4d\xb9\xd3\x61\x76\xd0\xba\x8a\x4c\xf8" "\x13\x69\xfa\x84\xee\x55\x46\x6d\xf7\x0e\x6d\x44\x31\xa8\x73\x00\x0c" "\x19\xbb\x5c\xaf\xf3\x0c\x01\xc7\xf7\xf9\x28\xcd\xe8\x6b\xea\x5c\x40" "\x1e\x52\x5f\xb8\xa9\x38\xfd\x01\x6b\xff\xd5\xc9\xd5\x2b\x27\x9e\x86" "\x7b\xc6\x4f\x57\x5b\x80\xee\xc7\x4e\x7f\x66\xfe\x92\xae\xf6\x13\x63" "\x6e\x50\xc8\xf3\x28\x31\xab\x4b\x7e\xab\xbc\x89\xce\x6d\x7b\xbf\xd0" "\x3b\x6b\x00\x5e\x0c\x5b\xa2\x72\x68\x36\x9f\x50\x83\xb2\xde\xd3\x2c" "\x1f\x9e\x8c\xd7\x3a\x1d\xae\xe2\x6c\xf0\x3d\xbb\xf9\xc4\x76\xfd\x0f" "\x14\x93\x52\x44\xeb\x7b\x54\x4f\x8d\xb1\xc1\x9d\x8a\x21\xde\x7e\x8a" "\x88\xf5\x40\xe8\x94\x9f\x72\x1f\x20\xd7\xa4\x7c\xfa\xd3\xf5\x2d\x93" "\xc1\x1a\x79\x6f\xbe\x9f\xbe\x41\x51\x94\x19\x3e\x5c\x70\xb3\x32\x37" "\xf7\x07\x90\x90\x58\x16\xb8\x56\xc2\x52\xa3\x0e\x72\xc0\x81\xa8\xba" "\xc6\xa1\xc9\xfd\x2c\x37\x2b\x9f\x87\x08\x31\xd6\xba\x66\x71\xfd\x86" "\x84\xf2\x5e\x60\xcc\x7e\x3a\x1a\x02\xed\x5f\x1a\x4f\xe4\x26\x37\x3b" "\xf6\x14\x04\xa6\x85\x71\xe9\x3f\x35\x65\x9b\x6c\x37\xf9\x39\x23\x3c" "\xa6\x66\x36\x03\xb0\x53\xc8\xfc\x74\xda\x84\xdd\x97\x1b\x93\x19\xa1" "\x26\x0f\xa2\xf5\xd6\x66\x09\x96\x2e\x93\xf7\xf3\x3a\x40\xb2\x20\x66" "\xb8\x6a\x74\xfb\x38\xbf\x14\x44\xd0\x25\xf2\x7f\x14\xe9\x22\x66\x14" "\x71\xef\x8a\xd5\x03\xe9\x7f\x8e\x7d\xd6\xb9\xc9\xa4\x20\x88\x5e\x51" "\x9e\x08\x5a\x1f\x26\xf7\x14\x9b\x82\x88\x19\x08\x02\x1f\x60\x16\x79" "\xf7\x9c\x94\x45\x49\xbc\xb4\x31\xa7\xd2\xb1\x2f\x75\xaa\x54\xca\xe3" "\x9f\x9c\xaa\xfe\xfc\x01\xe7\xeb\x58\x9d\x2e\xb5\x74\x93\x7a\xbb\xe1" "\x8b\x41\x9d\x7d\x27\x30\x9a\xcb\x33\x02\x93\x45\x63\x37\xcb\x9d\x75" "\x3e\x08\xf7\xb8\x90\xbb\xf7\x6c\x4d\x6e\xf5\x48\xbc\x3b\x59\x65\x30" "\x2b\xc6\x5a\xb0\x8a\x24\x20\x52\x7c\x1a\xd8\xbe\x37\x4c\xae\x7c\xc8" "\x58\x37\x62\x19\xd3\x9a\x7a\x6d\x58\xc4\x78\xa7\x21\x67\x8e\x78\x9b" "\xcc\x31\x7a\x4d\x1a\xcb\xf4\x78\x70\xa4\x80\x2a\x07\xac\x03\x32\xf7" "\xfd\xad\x71\x56\x06\x5d\xe5\x11\x86\x2c\x2a\x07\x6e\x26\x41\x38\xb9" "\x8e\x7a\xbd\x1a\x25\x55\xef\x2e\x1c\xa4\x4e\xe6\x8f\x06\x72\x55\x08" "\x89\x10\x51\xf6\xbd\x24\x47\x9a\x61\x66\x06\x02\x48\x41\xc8\x20\x37" "\x44\xb9\x99\x86\x8b\x9f\x2b\x3b\x5e\x8a\x42\xf4\x54\xd2\x5f\xcd\xdf" "\x8f\x55\x69\x59\x47\x16\xa4\x02\x2c\x3a\xc8\xba\x67\x11\x5b\x93\xd8" "\xbb\x50\x68\x4b\x0f\xb1\x00\xda\xbc\xa7\xf6\xb7\xe2\x9b\x72\x30\x07" "\x77\x64\x35\x82\x9c\x6f\x21\x22\x3d\x7a\x25\x56\x76\x6d\x19\x8c\x76" "\xab\x6c\xce\x3b\x6e\x6d\xa5\xc4\xd1\x4a\x26\xb7\xcd\xa1\xce\xbe\x67" "\x92\xce\x4c\x14\x98\xfe\x64\x4f\xb4\x40\x81\x89\xe4\x72\xef\xde\x92" "\x35\x06\xea\x4d\x18\xaa\x32\x84\xec\x31\x1f\xa9\x42\xdf\xa5\xd8\xb9" "\x39\xe5\x09\xa1\x0c\x69\x46\x19\x93\xcc\x9d\x3a\xce\x2f\xef\x29\xaf" "\xee\x8d\x08\x94\x76\x4f\xfd\x82\x37\x1d\x5e\xd3\x63\xb5\x96\x84\x47" "\xad\x3c\x09\x62\xb8\x65\x84\xcc\x97\x74\x0d\x7b\xc3\x83\x8a\xb1\xc1" "\xb0\x19\x8e\xa8\x30\xf1\x22\xb2\x00\x72\x2d\x3c\x2c\x88\x15\xa2\xa5" "\xf9\x03\x82\xe1\xc5\x8f\x23\x48\xdb\xd3\x84\x49\xe2\x8c\x67\xed\x85" "\xf6\x6e\xa3\xe3\x83\xb9\x1c\x78\x2a\x4e\x77\xad\x4a\xa5\x38\xdb\x6d" "\x15\xab\x90\xdd\x46\x43\x18\xde\xd6\xfd\x29\x3a\x1b\x02\x79\x85\x23" "\x35\xe3\xc9\x4b\xcc\xe6\xf3\x79\x50\xfb\x23\xd9\x6f\x84\x46\x5a\xea" "\xa8\xfc\x2f\x71\xce\x61\xa1\x41\x6e\x57\x93\x99\xc3\x63\xbb\x37\xde" "\xd6\x02\xfb\xea\x1b\xa5\xde\x87\xab\x12\xbc\x7a\xeb\x5c\x62\xf0\x26" "\xf6\x48\xab\x2b\xab\xea\x25\x17\xc3\xad\xe2\x82\x81\x09\xda\x58\xc0" "\x10\xe6\xef\xef\x54\x40\x88\xba\x41\x2e\xa5\x7d\x3c\xd4\xfa\xd3\xfd" "\x85\xb1\x7e\x38\x6f\xfc\x8a\x70\x06\x64\xb2\x60\x4c\x8a\x71\xc0\x11" "\xe8\x94\xac\x03\xa1\x09\xd9\xdd\xbe\x0b\x6d\x62\x5d\x33\xd7\xd1\x6f" "\xba\x5b\xcb\xc1\xee\x1c\xdc\xfc\x6a\x47\x5a\x23\xaf\xf4\x14\xe5\xb4" "\xf8\x3e\x9d\x18\xe1\x0f\x9e\x6d\xc4\x9e\x51\x85\x61\xad\x53\xa1\x10" "\x79\x4d\x2a\xd9\xc7\xfe\xe9\x5a\x03\xb6\x32\xb2\xac\xbe\xba\xc4\x2c" "\x99\x6e\x1b\x85\x6b\x2f\x18\xa2\xa3\xbf\x7c\xb0\x72\x6c\x10\xb6\xaa" "\x3e\xc2\xd7\x8b\xeb\xd2\x6e\x86\xec\xf7\x8b\x87\x73\x60\x17\xcf\xfa" "\x7d\x65\x4b\x35\x7b\xe1\x20\x98\x5c\x55\x3d\x11\xdb\xc9\x32\x13\x9e" "\xa6\xe1\xef\xdb\x7e\xf3\x45\x98\xdb\x56\x8e\x66\xd4\x24\x29\xe4\x14" "\xb5\x90\x3a\xd6\xe6\x16\xff\x7f\xaf\xf6\xec\xed\xec\x52\x9c\xf1\x6b" "\x28\x0c\x18\xdd\x4c\x3c\x8c\xd5\x19\x2f\x62\x59\x65\xe1\x5c\x29\x10" "\x48\x55\x36\x45\x65\xa4\xa5\x2a\xc5\xff\x78\xeb\x31\xa6\xe7\x60\x2e" "\x84\x22\x6a\x87\x36\x47\x08\xc2\xa9\xfd\xcf\x2f\x66\xf5\xdd\x09\x51" "\xaa\xcb\x7b\x6c\x8f\x9b\xd0\xe5\x34\xae\x44\xb4\x77\x99\xcd\xb8\xf6" "\x83\xdb\x5a\x32\x58\xd6\xf1\x94\x3e\x04\xe5\x9b\x11\xfb\xc6\xf5\x7d" "\x16\xff\x15\x0c\x94\xa2\x27\x17\xc1\xb4\x83\xad\x06\x4c\x25\xf0\x90" "\x22\xcc\x4c\xe0\x9e\x76\xfe\xd2\xb2\xce\x84\xe9\xa5\x06\x23\xf8\x4c" "\xb0\x13\xd0\x0b\x8e\xe3\xfd\x2e\xaf\x1e\xd8\x4d\xf2\xb2\x9d\x31\x19" "\x86\x5f\x5d\xf8\xfb\xb6\xd7\x44\x0e\xc6\xda\x33\xde\xff\x5c\x60\xf4" "\x66\xf9\x19\x59\xc0\xd7\xc7\x80\x09\x37\xcf\x59\xfd\xc6\xe2\xd5\x3e" "\x80\x9a\x6f\x67\x54\xed\x54\x5f\xc7\x1c\x42\xa9\x5d\x19\x8d\xf6\x32" "\x9a\x3f\x32\xec\xd0\x91\xe7\xe6\x43\x72\x7e\xe3\x42\x41\xb9\x24\x4e" "\xa9\xa2\x11\x8c\xcc\x6d\x5b\x52\xf8\xdb\xd6\x1d\xbc\x7a\x4b\x65\xe8" "\xa4\xb0\xe9\x37\x66\x9a\x8a\x63\x77\x02\x2d\xf7\x4a\xc0\xd2\xd4\x20" "\x08\xed\xfa\x83\xa7\x1c\x2e\x14\xc8\xcb\x7f\x3e\x54\x61\x2c\xbe\x5b" "\x64\xb3\x13\x71\xf4\x45\xea\x62\x35\x46\x7b\x33\x9b\x28\x5b\xff\xaa" "\xd0\xac\xd9\xaf\x51\x59\xb8\x4f\x58\xa3\xe0\x23\x0a\x7e\x6f\x05\x5a" "\x01\x6a\x07\x37\xb8\x93\xe0\xd1\xb2\xdb\xa1\x1d\xe5\x35\x29\xc8\x25" "\xbe\xa8\x6a\x45\x5b\xba\x90\xeb\x4f\x10\xea\x54\x25\xd4\x98\xc1\x8c" "\x0b\xc6\x43\xa5\xbb\x07\x49\x1a\x8b\x6d\x89\xb1\xc9\x23\x29\xaa\xff" "\x3a\x9c\xb9\x30\x2f\x81\x10\x0d\x97\xb7\x8a\x09\xd1\xf5\xc5\x12\xc2" "\x64\x09\x79\x66\x08\xb7\x7c\x96\x9c\x07\x0f\x6e\x55\x03\x7c\x97\xbe" "\xf2\xc3\x0e\xbb\x37\x31\x10\xc2\x35\x6e\x06\x63\xc0\xa7\x01\x0d\x13" "\xf1\x8f\x9b\x7b\x1d\x4a\x5d\xe8\x8b\x11\x0e\xfe\x43\x3a\x5d\xc9\xdd" "\x03\xac\x76\x21\xa6\xde\x39\x58\x4d\xe9\x1e\x9b\x43\xc5\xef\x4c\xb4" "\x35\xee\xb4\x5b\x88\x65\x54\x03\x55\x03\x0a\xcd\xde\xaf\x45\x1a\x45" "\x3a\x0b\x0a\x76\xcb\x06\x4e\xa1\xe9\x39\xdc\x54\x91\xf2\xc5\x91\x97" "\x3c\x74\x1c\xf1\xf7\x3e\xf4\x45\x1a\x1b\x43\xed\x9d\x9e\x0c\x7b\x12" "\x6b\x86\x9e\x7c\xd3\x26\x90\x0a\x47\x0d\xc0\x8a\x15\xfb\x17\x63\x46" "\xf7\x43\x1d\xad\xd6\xb8\x20\xec\x10\xcb\xa3\x3d\x70\x97\xeb\xac\x9c" "\x1f\xf1\x47\xfe\x39\xd9\xce\xda\xd2\x82\x8f\xac\xd8\xc3\x7c\xb2\x2a" "\x8b\x7d\x55\xb6\x31\x70\xf5\x5c\xcf\x45\xfc\x25\x71\x5d\x00\xe7\xeb" "\x7c\x3f\x32\xc5\xa7\xdc\xe0\x2b\xb0\x70\x73\xda\xa1\x70\xca\xa4\x81" "\x3b\x21\x02\x64\x8c\xf6\xa5\xbc\x9a\xe5\xef\x3f\xc4\xc6\x24\x04\x47" "\x19\x03\x40\x46\x9c\xea\x21\x65\x0f\x79\xf5\xff\x0a\xb6\x0e\x6f\xa8" "\xa3\x0a\x45\xf2\x9c\xa7\xf4\x35\x6c\x27\x5e\xf4\xda\xd6\x3b\x07\xf7" "\x3c\xc6\x72\xd2\x60\x91\xdb\x75\xef\xf3\xe1\x9b\x51\x27\x2b\x0b\x78" "\x66\x09\x33\x3f\x65\x80\xa3\xad\x3c\x83\x67\x3d\xf3\x77\x6d\x04\xcd" "\x05\xfa\x86\xb7\xb8\x06\x60\x76\xb7\x13\x77\x58\x0d\x8b\x22\x6d\x9d" "\xae\xc1\x74\xcf\x2a\x62\xff\xd4\x82\x59\xca\x04\x82\x1e\x94\x90\x21" "\xb3\xf5\x40\xb5\x26\x8c\x79\x4a\x53\x14\xde\x9c\xb1\x43\xda\xfc\xe0" "\x57\x5c\x06\x75\x0f\x0c\x12\x5b\x50\x7b\xf3\x9b\xf0\xab\xfc\x25\xb9" "\xbc\x39\xdd\xbc\x44\x50\xf0\xf3\xa7\x0c\x31\x29\x05\xa5\xc2\xd1\x1f" "\x7b\x39\xa3\xcb\x0f\xd0\x8b\xe6\xf8\xb7\x4c\x5d\x74\xfd\xfb\x04\x77" "\xc9\x42\xca\xac\x42\xae\x59\x6e\x0a\xa3\x6d\xb5\xf1\x0e\x15\x71\x23" "\x1e\xbf\xc3\x27\xe5\xa6\x11\x1e\xb2\xf2\xa0\xe1\xbe\x0b\x07\x52\x01" "\x89\x73\x50\x0f\x1b\x7c\x83\x2c\xf3\x60\x78\xc2\x47\x17\xf6\x69\x83" "\xbb\x72\x64\x98\x29\xaf\x53\x38\x9e\x89\x69\x4b\xce\x14\x6f\x8c\xb3" "\x58\xd7\x92\x2b\xa0\x7d\xfa\x9d\xa6\xfb\xd6\x5b\x7f\x51\x59\x01\x0b" "\x1b\xc6\x84\x79\x67\xb9\xee\xef\x7c\x6d\xb9\x0f\x48\xb1\xc1\xa7\xab" "\x63\x48\x18\x09\x11\x1b\x28\x76\xc7\x3c\x37\x50\x64\xbd\xca\x80\x64" "\xee\x8d\x6d\x7b\x38\x17\xdb\x8f\x5d\xc8\x27\x09\xc5\x86\xaf\xea\x58" "\x50\xf4\x15\xca\x76\x41\xb5\xe6\xf4\x5f\xf9\x3b\x9d\xbc\x2f\x62\xc4" "\x0c\x47\xdb\xe6\x1a\x06\x9d\x88\xe3\x66\x4c\x8d\xfc\x9b\xe2\xb3\x5f" "\x88\x96\xe6\xd5\xc8\xa3\x5b\x86\x4b\x50\xd5\x03\x64\xd3\xce\xc8\x28" "\xa4\xf7\xdc\xff\x3c\xb3\x14\xc9\xf7\xab\x03\xc9\x3e\x1f\xd8\xc5\xbf" "\xa2\xc3\x03\xd7\x6c\xb0\x95\x4b\x40\x19\x27\xa0\x00\xba\xbc\x40\x04" "\x97\xd3\xf3\xa3\x7c\x1f\x7a\x68\x5e\xcc\x12\xb2\x8d\xb4\xb9\xb7\x5d" "\xeb\xcc\xfb\x13\x2a\x4b\xb3\xb1\x9b\xa9\x1a\x44\x1a\x94\x40\x3e\xef" "\x6a\xd8\x22\x2e\xdd\x1d\xce\xcf\x21\x55\x80\x29\x60\x20\x73\x1c\xab" "\x55\x02\x9a\x18\x95\x61\x49\x9d\x34\xfa\xef\x21\xea\xdf\xc3\x70\xf9" "\x88\x72\xc2\x19\x2a\xef\x73\xf0\xcd\xf8\x0d\xe6\x1c\xc9\x15\x7d\x1e" "\x08\xd7\x15\x3a\x49\xf7\xd1\x15\x1f\xb9\xf1\x10\xfe\xbc\x34\xe7\x60" "\xc1\xaf\xb8\x7e\xb3\x6c\x9d\xf1\xd6\xaa\x04\x7c\xb6\x55\xb3\xec\x5f" "\xda\xe8\xe2\xd9\x38\x61\x07\x0f\x98\xbd\x5f\x1c\x53\xc2\x6f\x07\xd7" "\xc4\x3c\xb2\x95\x44\x0a\xf7\x5e\x87\x67\x1a\x55\x2e\x39\xf9\xbf\xe1" "\x85\x32\x22\xeb\x8b\xa0\xc8\x01\x39\x44\xee\x61\xdb\xe2\x12\x81\xb1" "\xd4\xe3\xea\x3d\xc0\x35\x3d\x4d\xed\x5d\xb0\x12\x85\x04\xb9\x74\x91" "\x35\x31\x20\xc6\x3b\xea\x1c\x56\x56\xbe\x04\x7a\x77\xbe\xbe\x93\xef" "\xba\xb1\x03\x75\xcb\x09\x46\x62\x4e\x07\x6a\x93\xa6\xff\xdc\x28\x4f" "\x4a\xa9\xfc\xf5\x4e\xbd\xa3\x65\x3d\x5a\xbf\x7d\xa7\x6f\x19\xc1\x65" "\xd0\x98\x2d\x48\x27\x9b\xa8\xee\x9f\x33\xb2\xfb\x06\x04\x91\xaa\x26" "\x51\x7e\x39\xf2\xcb\x4d\x4c\xe7\x72\x6b\x24\x9f\x07\x0a\xee\xfc\xa6" "\x84\x3a\x81\x30\x26\xe4\x5c\x6d\xdf\xcc\xd1\xe0\xb8\x88\x3a\x71\x70" "\x64\x4c\x43\xb2\x27\xa2\xa3\xc0\x3c\xbd\x17\xb8\xf3\xdc\x09\x10\x68" "\x51\x69\xad\xa4\x87\xa7\x22\x51\xee\xb6\xe6\xa1\xdd\x56\x61\x29\x43" "\x37\xcf\x4c\xee\x2d\x74\xfd\xfb\xe0\x0f\xf6\xd0\x78\x47\xe6\x38\x80" "\x05\x9b\xcd\x12\x95\x1e\x8b\x64\x9c\xca\x1d\xc6\xa3\x55\xa7\xd2\xc2" "\x6e\xf8\xca\xbd\x46\x7b\x21\xd6\xbb\xe2\x8b\x10\x8b\x38\x5f\xff\xf7" "\x30\x4d\x96\xb0\x35\x00\xc9\x12\xef\xd2\xaf\x7c\x45\xf8\x1f\x5f\x2f" "\x0e\x33\x57\xec\x7d\xa6\x16\xf8\x1e\xad\x2f\x82\x3a\x12\x86\x96\xec" "\x7d\xd6\x5a\x65\x87\xe5\xec\xb5\x6a\x8f\xba\x1b\xde\xa2\x89\x09\xda" "\x5e\x08\x5e\x16\x4b\x04\x63\x10\x18\x2f\xad\x71\x1d\x4e\x46\xab\xaa" "\x61\x28\x1c\x88\xc7\x29\x81\x0c\x61\x5c\xe9\x63\x6b\x5c\x96\xe4\x15" "\x0e\x2f\xce\xc6\xc1\x11\x46\x9b\xa8\xb0\xc0\x10\x96\x3d\x43\x38\xfb" "\xa8\xa8\xa0\x80\xe3\x84\x19\x8e\x14\x10\xaf\x15\xf7\xee\x18\xe5\x39" "\x6b\x72\x1f\xc3\x31\x86\x0e\x07\x22\x07\xda\x23\x6b\x35\xdd\x94\xfa" "\x7d\xab\x28\x8a\x11\x4e\xa4\x6e\x75\x4f\x1d\x0b\x4b\xfa\x1a\x5b\x21" "\x67\x06\x65\x2e\x52\xc4\x89\xe9\xa3\xa1\xce\xe8\xab\x4f\xe5\xd4\x16" "\xac\x22\xc2\x64\x96\x73\x71\x59\x09\xc2\x7f\x31\x68\x4f\x6e\x10\x39" "\x13\xbf\xd2\x8e\x02\xfc\xa5\x07\x94\x0b\x86\x40\x5c\xeb\xb8\x08\x4d" "\x1c\x65\x32\xa5\x50\x8b\x71\x60\x70\xc6\x7b\xa5\x44\xa1\x59\x38\x95" "\xf4\xcc\x1a\x8d\x07\x54\x15\xfe\xb6\x9d\x50\xfb\x67\x4c\x3a\x89\xb5" "\x9f\x80\x03\x2c\xdf\xa8\xd1\x18\x18\x56\x81\x7b\xb1\x6f\x50\xba\xfd" "\x0e\x21\xaa\x65\x66\x61\xbf\x3b\x6b\xfc\x20\x7a\x7a\x64\x5a\x8e\xdc" "\x15\xff\x1c\xb7\x06\xb6\x29\x2a\x32\x63\xef\x5a\xd1\x47\x93\x38\xf5" "\x90\x58\xd0\x8c\xe7\x6d\xc8\x01\xd8\xe1\x1e\x28\x0b\xad\xd5\xa0\xc0" "\xdc\xf1\xc6\x28\x5d\x95\xcc\x08\x7e\x7f\x0d\xd8\x23\xb6\xb7\xc3\x53" "\xd2\x2f\x1e\x7e\xd0\x3c\x14\x61\xcc\x4c\x17\x0e\x33\xcd\x06\xc4\x5f" "\x17\xfe\x1a\xf2\x33\xcc\xa6\x38\x61\x14\x49\x49\x3d\x53\x3f\x70\x1d" "\x77\x16\x3f\x67\x84\x20\x2d\x99\x5e\x17\xb7\x97\xd4\xd2\xf0\xd8\x7d" "\x05\xa0\x07\x28\xe8\xfd\xda\x47\xc7\x0e\xcf\x91\x9a\x2a\x11\x03\x71" "\xda\x34\x74\x58\x07\x20\xe8\xea\xe9\x34\x88\x8c\xf8\x4f\x1f\x1a\x55" "\x30\xba\xf8\x15\xe7\xc1\x61\x29\x73\x2e\xc4\xaf\x41\x7c\x1b\xe0\x97" "\x0b\x84\x5d\xbc\xed\x56\x3f\x00\xa8\x61\x35\xbd\xa3\x5c\x52\x5a\xa0" "\x20\xf2\x85\x11\x6b\x00\x07\x18\x58\xe6\xea\xcf\x7b\x12\x4b\x63\x5f" "\xf7\xb6\x24\x10\xe8\xc2\x7a\x4c\x76\xad\xcd\xec\x10\xf5\x18\x01\x30" "\xe8\xc5\x54\xd2\xd8\x03\x86\x77\x65\x01\x71\xa2\xf6\xc3\xda\x4c\x04" "\xe3\x40\xb4\x8d\xf9\x2c\xf4\x1d\x08\xa4\x99\xf6\x80\xa2\xcd\x6a\xb0" "\x99\xfc\xed\xe2\xf8\xb1\x88\x8a\xa0\x52\xc7\xf2\xdf\xfd\xb2\x03\xe1" "\x9f\xb1\xe2\xe6\x23\x7e\x19\xb2\x18\x74\x0c\x89\xcc\xe3\x11\xff\x16" "\x84\x37\x50\x0a\x6e\xec\x57\x07\x80\x93\x8c\x32\x91\xa1\x94\x82\x65" "\x6a\x8d\x53\xb1\x9b\xde\x3d\x41\x48\xbf\x1a\x9f\x2e\xa6\x7a\xe8\x35" "\xdf\x67\x56\x62\xf2\x7b\x5b\x6f\x5e\x26\x52\xd0\x47\x1c\x81\x74\x0a" "\xce\xf3\x06\xd9\x60\x5b\x4c\xa0\x9a\x2c\x4c\x0f\x3f\x80\x63\xb6\xfa" "\x5f\xe0\x11\x09\xc5\xe3\x48\xeb\x31\x80\x74\x78\x57\x71\xab\x2c\xed" "\xc4\x8d\x0f\x5e\x15\xb3\xa3\x68\xac\xe5\xae\xa4\x15\xaa\x2d\x56\x60" "\x63\xf2\x55\x71\xb7\xa2\x18\xb9\xe9\x51\x17\xaa\xf0\xa3\x89\x28\x4e" "\x76\x3e\x44\x8c\x88\xb4\x92\x05\x39\x2f\xe0\x32\xed\x20\x6c\xa8\xe2" "\x7f\xb1\xc6\x5a\x72\xd1\x25\xcc\x86\x09\x13\xda\xbe\x71\x4b\xe1\xa2" "\xa8\x51\x20\x06\x6c\xad\x66\xd5\x3d\xec\x9a\x30\x66\x4b\xfd\xd3\x3e" "\x25\x39\x81\x99\x21\x1b\x15\xfe\x07\x70\xcb\x24\x3b\xee\x32\x0e\x95" "\xe5\x06\xbe\x46\x17\xc3\xe5\xe6\x82\x53\x42\xc7\x69\xbc\x1d\xa3\x12" "\x7f\x8d\x34\xc9\x22\xf6\x0e\xd2\x72\x7f\x5d\x92\x09\xfc\x28\x09\x9e" "\xc8\x6c\x29\x57\x2f\xc7\x15\x9f\x6c\xed\x79\xb0\xa2\xa2\x65\x31\x00" "\x23\x0a\x55\xf7\xa5\x78\xe2\xf1\xd9\x0f\x63\x01\x06\x9e\xd0\x41\x06" "\xde\x45\xb9\x76\xf2\xaa\xbe\x76\x9e\xd1\x7d\x59\xa5\x31\x16\xb7\x4f" "\xa2\xf5\x98\xc0\xd1\xe9\x91\x9c\xa8\xd9\xcc\x21\x26\x5e\xbc\x21\x8a" "\xb9\x80\x8b\x09\x4e\xeb\xd9\xa4\x8d\x83\x49\xcf\x3f\xae\xaa\xa7\xc8" "\xdd\xb0\x7f\x6e\xb8\x74\xf7\x0c\xdf\xaf\xe0\x50\xde\x69\xc6\xe7\xda" "\x6c\x8d\x2f\x71\xd5\x81\xd6\xc6\x04\xf4\xbb\x29\x24\x3e\x9d\x1b\xbc" "\xb0\x89\x0b\x43\x6c\xb4\x3d\x1a\x33\xc4\xb9\x6a\x08\xaf\x41\x37\x13" "\x5a\x8c\x8f\xe7\x40\x34\xdc\xaf\x15\x81\x85\x6f\x80\x07\x71", 8192); *(uint64_t*)0x20000780 = 0; *(uint64_t*)0x20000788 = 0; *(uint64_t*)0x20000790 = 0; *(uint64_t*)0x20000798 = 0; *(uint64_t*)0x200007a0 = 0; *(uint64_t*)0x200007a8 = 0; *(uint64_t*)0x200007b0 = 0; *(uint64_t*)0x200007b8 = 0; *(uint64_t*)0x200007c0 = 0; *(uint64_t*)0x200007c8 = 0; *(uint64_t*)0x200007d0 = 0x200000c0; *(uint32_t*)0x200000c0 = 0x78; *(uint32_t*)0x200000c4 = 0; *(uint64_t*)0x200000c8 = 0; *(uint64_t*)0x200000d0 = 0; *(uint32_t*)0x200000d8 = 0; *(uint32_t*)0x200000dc = 0; *(uint64_t*)0x200000e0 = 0; *(uint64_t*)0x200000e8 = 0xb8a; *(uint64_t*)0x200000f0 = 0; *(uint64_t*)0x200000f8 = 0; *(uint64_t*)0x20000100 = 0; *(uint64_t*)0x20000108 = 0; *(uint32_t*)0x20000110 = 0; *(uint32_t*)0x20000114 = 0; *(uint32_t*)0x20000118 = 0; *(uint32_t*)0x2000011c = 0x8000; *(uint32_t*)0x20000120 = 0; *(uint32_t*)0x20000124 = 0; *(uint32_t*)0x20000128 = 0; *(uint32_t*)0x2000012c = 0; *(uint32_t*)0x20000130 = 0; *(uint32_t*)0x20000134 = 0; *(uint64_t*)0x200007d8 = 0; *(uint64_t*)0x200007e0 = 0; *(uint64_t*)0x200007e8 = 0; *(uint64_t*)0x200007f0 = 0; *(uint64_t*)0x200007f8 = 0; syz_fuse_handle_req(r[0], 0x20006380, 0x2000, 0x20000780); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); do_sandbox_none(); return 0; }