// https://syzkaller.appspot.com/bug?id=c2f05aa1cfa409d2bd680dc5557a78942db5a348 // 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 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; } 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 setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; struct fuse_out_header* statx; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; case FUSE_STATX: out_hdr = req_out->statx; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 11; 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++) { 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[5] = {0xffffffffffffffff, 0x0, 0x0, 0x0, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // mknod$loop arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // mode: mknod_mode = 0xfff (8 bytes) // dev: proc = 0x1 (4 bytes) // ] memcpy((void*)0x200000000140, "./file0\000", 8); syscall(__NR_mknod, /*file=*/0x200000000140ul, /*mode=S_ISVTX|S_ISGID|S_ISUID|0x1ff*/ 0xffful, /*dev=*/0x701); break; case 1: // openat$fuse arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 66 75 73 65 00} (length 0xa) // } // flags: const = 0x42 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_fuse memcpy((void*)0x2000000001c0, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x2000000001c0ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // mount$fuse arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {66 75 73 65 00} (length 0x5) // } // flags: mount_flags = 0x80 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {66 64 3d} (length 0x3) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 72 6f 6f 74 6d 6f 64 65 3d 30 30 30 30 30 // 30 30 30 30 31 30 30 30 30 30 2c 75 73 65 72 5f 69 64 3d} // (length 0x22) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 67 72 6f 75 70 5f 69 64 3d} (length 0xa) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // } // } // ] memcpy((void*)0x2000000020c0, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000002140, "fd=", 3); sprintf((char*)0x200000002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x200000002155, ",rootmode=000000000100000,user_id=", 34); sprintf((char*)0x200000002177, "%020llu", (long long)0); memcpy((void*)0x20000000218b, ",group_id=", 10); sprintf((char*)0x200000002195, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x2000000020c0ul, /*type=*/0x200000002100ul, /*flags=MS_DIRSYNC*/ 0x80ul, /*opts=*/0x200000002140ul); break; case 3: // read$FUSE arguments: [ // fd: fd_fuse (resource) // buf: ptr[out, fuse_in[read_buffer]] { // fuse_in[read_buffer] { // len: len = 0x2020 (4 bytes) // opcode: int32 = 0x0 (4 bytes) // unique: fuse_unique (resource) // uid: uid (resource) // gid: gid (resource) // pid: pid (resource) // padding: int32 = 0x0 (4 bytes) // payload: buffer: (DirOut) // } // } // len: bytesize = 0x2020 (8 bytes) // ] res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200000006300ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200000006308; r[2] = *(uint32_t*)0x200000006310; r[3] = *(uint32_t*)0x200000006314; } break; case 4: // write$FUSE_INIT arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_out_t[fuse_unique, fuse_init_out]] { // fuse_out_t[fuse_unique, fuse_init_out] { // len: len = 0x50 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: fuse_unique (resource) // payload: fuse_init_out { // major: const = 0x7 (4 bytes) // minor: const = 0x1f (4 bytes) // max_readahead: int32 = 0x0 (4 bytes) // flags: fuse_init_flags = 0x34014c40 (4 bytes) // max_background: int16 = 0x0 (2 bytes) // congestion_threshold: int16 = 0x0 (2 bytes) // max_write: int32 = 0x0 (4 bytes) // time_gran: int32 = 0x0 (4 bytes) // max_pages: const = 0x0 (2 bytes) // map_alignment: const = 0x0 (2 bytes) // flags2: fuse_init_flags2 = 0x10 (4 bytes) // max_stack_depth: int32 = 0x0 (4 bytes) // unused: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00} (length 0x18) // } // } // } // len: bytesize = 0x50 (8 bytes) // ] *(uint32_t*)0x200000000040 = 0x50; *(uint32_t*)0x200000000044 = 0; *(uint64_t*)0x200000000048 = r[1]; *(uint32_t*)0x200000000050 = 7; *(uint32_t*)0x200000000054 = 0x1f; *(uint32_t*)0x200000000058 = 0; *(uint32_t*)0x20000000005c = 0x34014c40; *(uint16_t*)0x200000000060 = 0; *(uint16_t*)0x200000000062 = 0; *(uint32_t*)0x200000000064 = 0; *(uint32_t*)0x200000000068 = 0; *(uint16_t*)0x20000000006c = 0; *(uint16_t*)0x20000000006e = 0; *(uint32_t*)0x200000000070 = 0x10; *(uint32_t*)0x200000000074 = 0; memset((void*)0x200000000078, 0, 24); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000040ul, /*len=*/0x50ul); break; case 5: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 e0 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 dc 4e 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 40 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 ba 04 5a bc d5 df c6 7d 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 81 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 23 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 05 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0a 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 dc 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 20 9b fd 66 ee // a2 10 56 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 3d c1 50 f4 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 00 1d 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 f5 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 c6 d9 00 00 00 00 00 00 13 54 c4 b6 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 f8 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 1a 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: ptr[in, fuse_out_t[int64, fuse_open_out]] { // fuse_out_t[int64, fuse_open_out] { // len: len = 0x20 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x0 (8 bytes) // payload: fuse_open_out { // fh: const = 0x0 (8 bytes) // open_flags: fuse_open_flags = 0x1a (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // attr: nil // entry: nil // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x2000000021c0, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xdc\x4e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x04\x5a\xbc\xd5\xdf\xc6" "\x7d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x23\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xdc\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x20\x9b\xfd\x66\xee\xa2\x10\x56\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x3d\xc1\x50\xf4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc6\xd9\x00\x00\x00\x00\x00\x00" "\x13\x54\xc4\xb6\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint64_t*)0x2000000062c0 = 0; *(uint64_t*)0x2000000062c8 = 0; *(uint64_t*)0x2000000062d0 = 0; *(uint64_t*)0x2000000062d8 = 0; *(uint64_t*)0x2000000062e0 = 0; *(uint64_t*)0x2000000062e8 = 0; *(uint64_t*)0x2000000062f0 = 0; *(uint64_t*)0x2000000062f8 = 0; *(uint64_t*)0x200000006300 = 0; *(uint64_t*)0x200000006308 = 0x200000000300; *(uint32_t*)0x200000000300 = 0x20; *(uint32_t*)0x200000000304 = 0; *(uint64_t*)0x200000000308 = 0; *(uint64_t*)0x200000000310 = 0; *(uint32_t*)0x200000000318 = 0x1a; *(uint32_t*)0x20000000031c = 0; *(uint64_t*)0x200000006310 = 0; *(uint64_t*)0x200000006318 = 0; *(uint64_t*)0x200000006320 = 0; *(uint64_t*)0x200000006328 = 0; *(uint64_t*)0x200000006330 = 0; *(uint64_t*)0x200000006338 = 0; *(uint64_t*)0x200000006340 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x2000000021c0, /*len=*/0x2000, /*res=*/0x2000000062c0); break; case 6: // syz_fuse_handle_req arguments: [ // fd: fd_fuse (resource) // buf: ptr[in, buffer] { // buffer: {a2 80 96 c8 0a bf 35 43 ec de 75 64 ab ff 50 85 d2 22 7e bc // b0 f1 64 ae 92 70 6a d0 b0 83 a3 f4 69 a3 ef d1 5b 49 21 e9 c3 06 3b // 98 b3 08 20 68 e7 c3 19 50 dd e8 42 ea c5 5d f0 f9 91 45 3c ad 62 a6 // 95 6b 0b 6f 7b 8c f4 9b 50 6a 30 60 fe 11 27 ec a9 96 63 ad e8 ef a8 // 9e e1 89 ac b5 f3 b9 2f 6b c4 c4 66 21 c8 03 ee d0 d0 bb 5f 32 38 48 // 70 ed 08 f8 9d 4f 74 44 57 62 fb 99 71 5e 08 3c 4c 92 a8 87 8b e1 9f // fa cc 30 d0 f2 da 64 f9 71 cd 40 56 31 63 ad c1 56 70 ec f2 5c d3 ad // 96 13 89 67 c4 b5 3a d9 d0 4b 51 93 ab 5f b6 74 aa 00 30 a9 d7 03 d1 // ba f8 10 ce 89 7f 96 91 21 f1 42 16 19 19 e5 83 c2 75 67 1b 99 9e 7f // 36 38 91 df df df 35 56 d0 1b 86 ee 29 ec a8 fc cb fe af 17 71 39 51 // 48 70 6c c6 e6 be 7c e2 9f c9 ff ef 06 1b 54 20 95 0c 1a 52 5b f7 5a // d0 6e de c5 15 38 d1 c5 bb c7 7d a7 2d c9 0f d9 99 89 36 ff fd da 24 // 27 e5 a6 89 66 c7 e2 20 8f 76 30 46 80 18 2e c7 30 07 e4 82 f0 34 19 // 57 12 af 92 2d b2 72 61 95 d9 97 70 87 34 db 9e 78 25 a8 64 be 00 b2 // a4 f8 00 88 1f c0 36 3f 5e 61 83 98 45 4f 35 b1 48 b4 cc b8 8d 41 82 // 69 fa c8 68 a8 ba 4a 2d 5b 4f 06 a1 ac 01 b5 ad 15 8b 84 2e 05 ad ca // 22 c7 37 25 85 bf 4c e9 55 60 b6 c1 e0 21 a3 ed 2f f7 bd 3b 6b 3c 77 // 34 c3 b6 6d 7e 4c 46 00 96 31 20 82 f8 9b 16 ba a6 e7 38 14 aa 60 92 // 57 80 cd 92 cd 65 08 7e 26 0e c0 46 fc 36 32 64 36 6a 9d f2 c8 49 c0 // 64 49 11 30 39 46 ad ad 54 45 21 ce b4 69 a3 e1 93 ec c9 a7 87 64 03 // fa c4 61 a4 a7 0d 61 93 b2 45 11 89 a5 c5 12 0b 35 35 e9 ed f6 19 10 // 8a f7 f5 17 b5 8a bd 3f a7 fb 1a b8 32 21 34 30 d2 e6 90 10 76 fb a9 // c9 e1 ac c6 c6 f4 8f f0 e4 19 bb c4 55 89 74 5a 17 6f 52 a7 40 7a d5 // e3 dd 49 ac b3 1b 47 86 28 06 f4 70 77 dd a0 49 05 e4 5a 80 a1 2c bc // d4 d2 dd 9f e6 6c 2d 1f 99 39 4f ed 8e c6 09 61 cd 2d c7 11 5a 96 ec // e4 32 fa c8 6d 51 be bb 08 b9 5f 44 7a 83 79 2f e8 02 91 fc a7 b2 98 // c9 04 3e f2 c2 6f 0f 7e 42 79 8d 3f 54 c8 4b 94 c2 4c 76 c5 55 d8 3e // cc 53 b9 9b b2 2d 71 84 5e 5c f2 1a 5b a7 fb ef fe b6 30 6e 17 30 db // 14 56 1b 95 0a 3f 24 bc fd 78 d4 ab 0d 97 de 80 54 bb 1a 60 77 ae 7c // ca 6e 45 d8 46 d3 df 82 29 8d 07 21 29 22 74 2c b0 fa ca c3 b7 7e df // ba b9 0e 9e e2 d4 f7 b0 ee 9b 17 bb 11 ec 5e 57 21 34 0d 84 cb 6b d9 // 34 28 16 7e 69 b4 77 59 17 25 57 ac da 31 3c 3d ec df c6 fe 93 36 bf // ad e4 59 f4 3b 39 d0 f2 28 9f 91 42 db 28 0f 4e e6 68 e6 50 e1 28 58 // c5 77 e1 2e 2b 9a 57 ee 66 c8 34 be 97 97 9b cb e9 47 47 fa 5d 8d 0b // 7d 3a 9f 8f 21 8d f1 bf 96 0f 82 84 29 a1 ef e8 38 61 6b 18 fa f6 62 // 92 36 dd bd ed 43 a0 93 ef ae 16 32 28 e5 c3 8f d7 71 47 43 c2 fc ca // 47 e3 38 2b cf b1 ab 89 3f d7 37 75 27 b4 ec 43 f3 fa 60 eb d3 38 16 // 1d 8d e7 ca d6 5b 15 57 9e 4a f2 58 f5 fe 3a 63 c2 63 7a 15 70 32 07 // 02 9b 08 99 b5 42 77 67 64 7b ae f1 1e 29 13 58 e6 e5 4f 6f 13 d3 d2 // ca 7a 5e 79 69 e0 4d 27 33 b3 b9 ab 82 2c 69 a3 cf ac 09 73 84 de 50 // 71 a9 b7 4a 65 61 36 d5 5e b1 00 00 08 74 7b 50 9f d6 10 ff 62 b4 95 // 0e f7 1c 93 4f e2 1a 48 a4 93 1d 3d 94 58 b4 15 f1 12 ce e6 5c 66 0f // 54 90 e9 82 34 1d a1 c5 86 34 b3 96 7c a6 f3 59 6d 20 cc 90 f5 08 38 // 21 56 e3 6f 16 53 90 93 24 0e f5 f2 aa 6a 2c 0d ff 2a 67 df 30 dc f5 // 0b f6 e0 b8 2a 3d 49 f2 d5 32 a8 dd e1 b3 ce ef cf 08 37 19 0b 74 18 // 60 90 d1 c1 8b 59 91 7d 7e fc e1 ad fb 23 8e f4 a7 b1 d2 2c 4c ef 09 // 32 02 21 de 88 3e 97 e6 88 24 66 50 8d e0 6f cd ab ad 3b 74 1b dc a2 // cf f8 79 d5 7d dd a5 2f 42 b3 dc b8 a7 8c fc 05 82 6a f7 e4 ff 15 59 // 60 ff 84 91 19 4f 4d 32 1e f1 95 99 0a ba ee ef dc b8 52 d1 e1 e3 70 // 3f 31 73 85 a9 45 8b 6c 2d d9 db 83 0f 75 7e c2 9c 99 39 fc 73 13 e6 // 39 fe 48 5b c1 e4 1d da ae f3 fb f1 f7 cc 52 7c 8f ad 0d 21 b8 08 24 // 82 ca ad 7b ee 44 0e 50 97 66 5f 63 6c 3d fe c8 2f 8c 98 af b6 24 3b // c3 94 49 39 67 5a 59 42 77 d2 78 ba 43 61 46 1f 7d a5 2e 22 4e 4c e5 // de e4 a4 67 bf 6a e9 f6 7b 61 ac 6e b0 a4 40 40 6a ba c2 01 6e ec 90 // 7e 24 1c 57 f5 f4 4b e4 72 90 fd 0f ef 78 5f f0 4d f3 81 0c cd 63 7b // 4d 97 a8 4b ae 84 86 a3 6f 75 d8 72 e6 45 fe 46 62 59 69 fc 2d 1f 03 // 2c 56 ed 44 bd 98 ea 27 bd 9b 6d dc 8e b2 dc 2e c9 f9 0f 2f 1c a1 bd // 20 e3 7a c5 8b 03 c8 4c 87 2f 4b a4 73 10 65 49 86 64 14 60 df dd 53 // 1a c6 2a 76 ad 87 b8 9c 10 3a c5 c9 c2 e7 e7 0c 66 44 7b 34 12 d4 a1 // e5 cb c3 0e 16 93 95 05 11 6c 04 de 33 ae 05 4e d3 66 de 8d 1f 97 1c // 2d e4 39 95 7a 19 4e 22 a4 88 f5 8d 7e fd 46 43 91 77 f3 f3 c4 5a 14 // 75 92 7e ec d8 46 d3 d2 e6 a2 ab 5c 7f 8a dd d9 90 62 c2 fc 6b 27 2d // 1f 51 bb 8f 22 f1 b6 f8 bb 3f af 8a a8 5e 5e b9 ab f7 df 5c f8 f2 62 // 67 32 38 08 b0 83 3a 98 79 89 cb e5 92 05 e7 ad 06 55 6e 2d 1b 8a 48 // 73 ca 1c bc bc 8d 43 ab c1 45 fd 4e b8 32 e7 a5 8a b2 c7 93 d0 03 ce // 7b 18 50 ce 45 eb 74 80 41 7a 1e 9e b9 d3 9a 10 28 a2 a0 4a 2a a6 49 // c0 98 c4 f8 ee e5 14 db 5f 60 21 17 3b b2 54 b8 e2 2b 15 0b 2c a0 1d // c7 ff 23 5d b4 6e d7 8d 07 f4 3d 1a da b1 3b 84 45 d1 b3 20 69 eb 45 // f9 d3 89 fc f5 a3 f7 d3 eb e2 43 c5 b1 fe 17 b1 f5 a3 d5 71 b6 5f 21 // b9 e4 71 e8 18 17 25 54 dc 95 67 49 b9 9c b7 a5 f3 03 ec 48 0d 71 94 // a2 ba 86 e2 04 f0 6a a1 be cd dd c8 c4 90 82 c5 27 e7 06 4a c2 ad 77 // dc 05 63 9d 3d 2a 77 78 f6 94 3e d6 10 5e bf 6f 0b 9e 94 fd db e0 5c // 23 6e c0 00 f4 d1 d4 e4 96 b1 00 68 21 1a b6 8a da 4c 7f 7a c6 1f 5f // 5b a5 f1 81 0d 5b be 87 ff 4f 83 56 af 0d 3f 68 2b ae db 0a d8 f8 48 // 8b 27 74 21 f0 a0 3f c5 e3 09 5e e3 4b c4 47 2d 8f 17 e3 f7 01 3c f2 // f7 9f 5f f3 ea 4b 6b ae 56 d1 36 5a 33 b0 9b fa 9a 49 63 23 f7 da 92 // 3b 7e 29 dc e4 be b8 00 35 f1 31 30 00 4c 96 e5 6d 7e f6 ca 6c 10 1d // 20 c2 7a 21 8e 62 32 27 c3 3c 9e 48 8b 17 e7 ae 9a c2 0d a8 24 05 01 // f7 b6 14 a1 73 0f 16 45 53 fe 47 9e f1 49 86 6e 4e a4 72 96 81 42 84 // a3 d3 eb 7c bb 29 42 89 ff b9 96 e0 eb 05 3b 9c 16 e5 4c f2 67 83 2e // 3d 36 0e b1 96 ed 51 30 56 30 22 33 09 ea 97 21 56 28 f0 1e c9 d3 ea // 48 09 64 18 d5 e9 62 ca c5 06 34 60 f0 a1 87 72 ec 7c e6 6d 14 a1 cc // e1 4b 52 c4 0b bb fa fc cb f1 e7 6f 09 e5 7f f0 71 80 48 e5 b9 93 15 // 7a 6c f4 71 88 26 b1 e0 94 30 41 3a 35 96 a1 5c 4a 62 0f a8 c8 e1 d1 // 66 3e 57 39 f9 f7 90 dd bb 3b e0 e0 01 87 d4 37 17 d6 59 24 24 67 d8 // 68 1a c1 03 03 34 61 57 f8 94 d9 03 76 41 41 70 10 e9 65 4c 6a 5b 22 // 38 3e 73 a5 a3 71 28 f5 00 78 a9 80 c3 09 30 32 1a a5 c5 e7 85 1d 5d // 39 2d dc e3 a1 4a 96 91 6f a8 42 1a e6 72 8f 37 f5 de 7c 3e 98 fe b4 // ba bd 4e 1b d2 31 5d 59 5e 20 9d 52 74 8f 70 ad c2 28 4f cd aa 6a d8 // 80 47 0d 2a 07 1f 34 90 aa f3 49 1f b6 4b 45 47 41 9e 8e cc dc 49 1a // 89 21 15 6c b4 81 1a d1 e6 65 14 a3 2b 0b 31 b6 41 43 88 81 f2 8c 1e // 64 61 b4 f4 51 93 89 99 af 67 1e 8c 6a 5c d0 c0 72 a9 fe 4c db ef e2 // 4c a6 16 f3 d0 a1 5a c9 7c ca 83 5b 1a 44 0e 04 fa 28 34 0c 60 44 17 // 6c 8e cc 8e e0 d0 33 d4 7d b8 a0 aa cf a0 ea bd fa 1c 95 09 fc 26 04 // 00 8f 01 cb af eb 5b d2 b5 03 b8 09 ed 67 23 40 b9 a5 76 59 3f 1e f3 // 88 39 1b 54 b6 05 e7 a1 5b ef 7b 13 45 62 7a 34 fc a5 77 38 b0 f8 f4 // f1 9e ea 93 c9 03 49 52 74 a4 42 5a 1a 1c c6 c4 c6 e3 35 b6 31 df 51 // 85 c9 5b 48 5a 42 57 86 7b 53 47 a4 0e 4e 14 dc c5 60 f0 61 fd 4f d2 // 65 13 7d c6 8a fd 54 8a dd e7 78 f1 33 0f 76 9a cb 1c cf 5d a1 4f f6 // 99 2c 24 e2 10 ea 6e 61 79 42 18 81 b8 03 39 3b c6 97 4e 37 10 6c 5b // 5b 3b 5d 0b 34 69 f8 96 9b ff b7 e4 ce b2 c9 8e 92 8e 74 36 64 92 d2 // 72 35 ae 4c 74 a2 f4 85 11 ae ea a5 3a 2b ea fa 7a 33 1b 50 e4 54 c5 // 07 af 1b 63 35 0a 5c ef 35 66 8a 5b 93 25 01 41 92 27 7e 50 95 61 00 // 8b 36 01 08 8f 79 d4 2e aa 8b 1e 4a e2 00 0b 31 74 9e 2b 80 94 31 2d // db 7f 3c 1c d6 25 ef 88 5c 11 fa 22 a6 6e 37 4b 52 b3 42 5e 0b 80 16 // 15 4e 1f d8 47 13 39 e3 2e 73 73 d6 3a b6 46 d8 93 fb e0 9a e0 7b 06 // 07 4c 01 40 1e a7 6b 3c 38 2a 9d 32 f2 4f 93 c7 89 96 4e 16 bc 42 06 // ec d7 5c 10 91 7a b8 4f fd 8d 6c df 4c d2 8f d9 03 75 ff 28 51 8f 8c // 1a 3b ef c5 38 e1 b9 e4 27 fb 67 19 88 d2 9f 2f b2 fc d0 39 f4 d3 41 // c8 4e b4 d7 cf 60 0d da ba 88 bb 09 4e 4d 87 a1 41 91 80 14 9f 49 13 // 68 e6 48 b6 99 85 b0 5a c3 9a 4e cd d3 c5 13 5f 3a 5c 8a d7 79 2d ac // b6 47 01 44 bb 9e 67 80 5a 21 1e fb 3e c9 cc af 8e 09 01 34 5f b1 9e // 4d a5 79 e1 fb e8 6a 12 07 f4 f1 3c 34 36 00 9c 2c 64 0b 7c f3 f8 b7 // 7c a7 bd 99 4b f9 33 08 02 73 59 c6 dd 1b 7d b1 e1 53 fc 08 21 96 8e // f3 6c 00 3b 6c 73 fe 89 0f 4d e2 4f 5c 64 58 db aa f3 81 9e de aa 91 // 78 3c 3c fc 7e 77 36 89 23 62 48 19 5c 7b bd 60 11 3f 24 76 fa 36 87 // 62 1d 66 8d 17 28 ee 43 3d 2f 8f 4d b7 07 34 5d 30 f1 e5 2a b8 7a 2a // 0a fd 54 7c 6b b0 65 00 f5 9f 17 fa cd e4 8f 69 34 90 e2 24 94 b7 5d // 11 df 1a 14 3b 85 06 8d 14 3e f6 a9 bb 59 37 a9 df 38 0c 89 48 f1 a0 // 1e 96 75 e1 84 09 ed b0 f6 b9 60 5b 68 e3 46 32 fc ce 47 2d c5 0b 90 // b0 f6 dc d5 79 31 f7 8e 1e 88 61 a0 fb 62 e7 2b 0b aa d6 f9 d2 3c 1c // fb 0f 19 b2 50 13 c8 d9 fc d7 86 a2 f6 f7 97 68 b5 fb 39 8f 7b 2b aa // 31 ce 81 56 d1 fc 4a 46 c1 c4 63 fd f3 03 60 d4 2a ee d2 ef 11 61 1d // 0b 7f 65 4b b5 10 52 fd 4d c3 93 28 f8 ec 4c 58 bb da 05 e6 f1 b3 c8 // f6 d8 ad ca 02 68 f2 41 0e 9a 4a 7d 63 b6 61 60 06 d0 e0 2f 6e da cc // 10 e5 c5 4f d8 5f 15 a8 bd 76 48 a2 93 f2 3d 6a 69 9b d9 a6 75 25 04 // 75 a7 3a 96 d7 47 5e 4f ab b8 9f b5 e7 de 5d 7a 34 79 aa 48 5c 0b ef // c6 0d 0a c4 fd 5a c6 db ec ce b0 6c ad 86 e2 19 fc 0c e4 72 07 58 91 // 78 11 a3 21 5f 8d 13 e4 13 bf b6 4f c0 65 fc 42 1a ed e0 b5 66 91 79 // 7d ac 42 8c 7e 46 34 79 fa 59 1b 90 72 c3 09 b7 53 3e 42 7c 5c c1 1a // 1f 6c f9 a5 b9 95 d3 28 d7 96 d8 74 c5 b5 5d fc 12 a5 03 9b 41 3c e3 // 19 cf 5b a1 f3 55 c4 e0 71 7d 32 65 0b 43 e1 80 10 f3 7f 04 87 31 93 // 1c 52 c4 f3 6e b9 69 dd a7 02 af e9 6c 2a 52 41 35 0a 67 ba 2d 02 69 // 46 18 9c 5e 28 12 93 c9 a8 e2 cf f3 78 47 76 f1 de 78 b9 17 10 1b 54 // e5 ab 00 c0 45 ea 15 f2 8a 0e 3f 50 99 62 cf 8b d3 38 5d 85 25 07 37 // ea e5 c3 4e ce 86 b8 66 69 c1 3b 00 30 8a 3b 13 c0 ac 3c 83 ff 26 fb // 52 a4 aa 83 c1 23 3a 94 90 cb 9c a9 17 a0 56 90 89 31 75 1b dd b8 8a // 62 37 9a 71 33 95 f0 76 4e 4a 39 3f af 25 3a 40 26 d0 47 22 70 e6 03 // 62 87 d5 68 50 df 17 51 54 34 84 d6 5b 30 62 15 5b 63 00 e0 02 42 41 // c5 9a 86 2a e7 69 c1 a9 23 2a 2d 9f b2 47 05 17 7a 09 cc eb 3e ef bf // 9f 10 6f 67 e0 1b e1 4c de b4 d2 fc 7d 86 61 df 3e 75 de 5c cd 09 a7 // e5 59 f0 28 fb 98 37 c6 21 ea 00 45 b4 d1 b6 79 06 7f 24 63 39 c9 74 // 63 1a a7 13 4d 4e 91 0e fb 28 d3 c4 89 29 ce f1 df 7e 6c 73 66 87 62 // d5 50 86 b6 c5 9c 36 ac 90 15 41 35 fd 7c a4 e4 04 7d d0 aa 16 1f a9 // 82 d8 ed f9 c0 cb 96 66 47 7e 09 6c 55 71 8f 6e 47 42 41 5f ef d4 f6 // 96 d1 f1 cc d6 32 2b c1 94 96 dd eb d3 62 82 a7 c7 07 d5 b4 41 13 e3 // 06 78 e6 e3 3a b7 d3 4b e0 4a 59 ac 61 4d 6a 54 13 44 90 99 8b e0 26 // 36 fa 91 63 3d 62 94 78 1c 2b 9a 54 c6 11 c0 04 5c fc fe 81 f4 9a a2 // 1b 29 d8 35 cd 20 47 c8 54 48 6f d8 e6 5a 2e bf 62 9f 7c ed 60 2b 9d // d1 07 bf de 48 3e 5c 9b 5c bb a4 a0 8c dc e0 99 20 bd a9 97 8b 7f c2 // b4 a8 9b f1 57 3a 26 38 9e 52 09 0f df 5d cc f2 21 11 dc 8c 42 fd 3c // 8c 47 70 92 89 53 98 08 6c c2 2c ca 66 52 69 e1 93 fc 65 07 42 a3 61 // a4 4b 85 7d 25 84 29 f7 01 f2 2e 9b 76 15 bc 3d ab 78 c1 47 9a 41 cf // 85 75 cd b1 71 69 47 0b 34 7a df c0 3e 03 da ea 3e 26 97 25 cf c7 2d // f5 66 4b 9d f3 6d 2f 2b 55 01 3b 71 13 3e 0b 80 57 7a 47 18 25 11 eb // b3 08 b6 24 8d 45 7b d2 af 7b 28 e7 71 82 c3 05 24 11 78 c4 12 4a b1 // 02 77 1f d5 a8 c3 da cb 87 75 de 88 13 01 d7 15 87 c7 6b cf 0a 97 a7 // 2a d2 44 d0 c4 2f d7 1a ce ec 32 dd 48 bb 5c 9a 95 b3 91 16 6c 83 2a // c5 ba c8 c7 ca e4 d1 8b 3f 7d 9f 2e 47 82 fd f9 77 32 e3 d5 1f 67 bb // b5 7f 98 9e e0 d7 58 9d bd 0c 2a 5c 63 84 0e 91 4b 9d 7d 72 0f a1 20 // ac bf fe bf 81 6b 58 8b 2c cc 05 2e 7f a7 89 92 e0 ea 39 dd 21 a1 22 // ad d4 11 95 f8 e2 e1 ac d7 77 c1 a4 e8 ef 43 62 fe f4 41 fe b4 d9 25 // 2c 6b fb d2 74 21 52 30 0a 32 02 77 76 e3 34 16 20 d3 c8 d9 36 5e 10 // e8 1a dc ca 7d 87 a0 e5 55 c9 8a 03 53 c6 92 55 7d 90 ee 9b e3 fb aa // b7 66 ab f9 3e 24 62 14 9f d9 9c 92 a5 fc 58 d8 99 ee 75 53 5c d1 fe // 13 86 c5 ab 0b 15 7c 21 02 03 9d 60 15 25 8f 59 ce f3 f1 5b 95 18 93 // a3 0a e8 39 f7 40 40 2a 30 b3 4e 7b e7 37 96 28 64 03 c5 be b0 85 3d // 85 6d 83 f1 b0 0b 48 32 8f 56 dc b3 2e 1f aa b0 8a 34 35 b1 48 2b f1 // 8b 21 c9 5a ef ea af a7 fd 76 1c 7f 28 d4 16 fc de 06 bf 7a ee 5c 6e // 9e b5 0e 55 87 42 53 ba 3f 1d 0c e2 50 5b 4f c7 c3 fc 99 6b fb b8 44 // 6b af e8 4f 5b ea 94 bf d7 ca 5a ea f2 37 fe 79 3b 66 e5 c5 21 d4 09 // 2e 4e 1f 9b de 1d fc fe 53 fa 55 00 5d 21 cf a8 33 a3 38 fd 97 92 61 // 41 29 33 60 60 e1 0d 19 11 86 20 70 76 1a a2 0c 29 02 eb 7c 5a 35 5e // ff 4c f6 25 3d 71 02 a2 ca 1f ea d4 c5 3b 57 d5 76 d1 04 c0 81 31 0d // 92 79 7e 4e 2e 8c 26 9d 19 91 0d 0d 4c ed f3 0f a2 8b a6 80 c0 01 37 // f8 3d e9 40 62 42 29 b6 a1 25 ce 52 33 c6 cf 4a 36 40 b7 4f 58 f2 88 // da d8 45 1f be 37 64 1c 55 59 a5 f3 ca f1 29 9c 8b fb 23 07 23 65 22 // 78 fe 37 8e fd 8e 45 9b 9d a2 6c ff eb 58 46 8a 63 01 db c0 6d 71 3b // a2 d8 d4 3d 90 38 f5 f2 dc 8b 83 1b a5 8a 88 ee b5 b1 78 6b 21 e3 98 // ae ee b7 c1 f3 d6 f0 1d 82 b3 94 78 62 fb 9e 7c bd 7d a5 d0 4c 5f cd // 34 da 28 d5 3e 22 46 e3 ac 1e 3a 61 9a d1 74 ef a6 43 5e aa 0f c9 4d // 61 07 99 ce 01 58 42 1d ce 04 63 06 eb 50 42 14 3d aa 33 6d 52 20 6b // 12 61 0e a6 38 9c dd a4 9b f5 af 1d 4e e4 2a c0 90 a9 4a e7 b7 61 20 // 73 f3 a5 c3 6a 22 45 ed a8 87 f4 14 78 f7 d2 0f 18 66 7f 94 1f 71 ee // bc fa 76 c1 ab 28 f2 a4 9a 3b d5 6b d3 f4 e6 bd 07 9a b3 fe 2d 94 78 // 22 36 e8 35 85 a0 3e 52 90 7a ba ef 74 56 a9 5d 5d 3f 3d 37 ef dc 03 // 5d bf d7 c4 1b 8b a0 af 2d f8 ad f1 cf 24 f7 ff 0b ec cd 3d 26 bc 91 // ca f4 23 14 ef 7e 46 6f 74 e1 9a e0 df 2e 22 98 fc 2f 69 4a 7e c1 34 // 63 20 35 58 5d 53 0e 7e 19 f6 5c 25 6f 00 1d 75 38 2d 98 25 ef 74 1b // c2 13 af 18 63 77 d9 ca 10 d3 72 23 54 e1 89 7c a5 c2 3a c6 a5 2c 9a // d0 e6 b6 86 e1 77 6f 7e c6 5d f0 33 e8 f4 d5 db 80 c1 bc 35 40 93 b3 // 19 cb 70 df 93 d6 10 66 76 75 81 63 28 c9 93 22 f1 4e 63 6b 95 f0 4e // 64 97 f1 39 d5 08 b4 53 f5 3d db 5c 28 9d 84 9f d5 40 7c 9b dc ef d1 // 64 2a bd 46 e2 8c b4 e9 43 71 bd c6 06 ee b6 7c 9f e1 77 47 c6 8f 2d // 50 e8 27 11 da 4d 3e db 0e da 06 f4 1b 7f 93 fa 8f b4 d8 3c f2 1c 79 // da 67 00 0b ac 22 75 50 82 17 ad e1 65 9f a8 d2 4e 5f 8e fb 9f 4b d2 // 10 73 eb ef 3d 06 36 8e b0 3f a3 cf 0d 63 84 48 bd 05 5e d2 0d 29 20 // 33 ff db a5 38 55 9c 8f f9 a2 a5 c8 f8 3b 5c 39 36 43 d6 58 5d 1d f9 // 94 c3 be 43 e7 2b 8f 3f 53 11 4d 2a 5f 6b ce db 57 38 42 b2 3b 6a 3e // b7 fc a8 49 5b f0 3b d0 3f de 7b 19 bd 39 a1 6c ec 49 e0 1f 38 e6 71 // af 33 ca e0 82 d9 78 8e 32 02 79 9b c4 66 ba be c2 08 05 28 d0 60 9c // 0b 73 19 64 71 90 93 73 5b 4c 1e 73 bd 07 05 63 7c 47 51 69 22 19 7c // 55 2b ae af 35 16 b5 e3 bb c2 cd 1a fa 3e f8 21 51 96 ed 58 0d 95 61 // 09 2f 62 0b 89 7e 98 e7 86 a0 c7 cb b0 ee dd a8 06 32 92 ba 64 82 49 // 7f 5f 6b b6 2f b5 ab 4c 97 cb 76 58 dc 65 79 71 8e b9 7b 54 7f cf 47 // ce d1 42 65 61 af 93 a1 5f b4 dc 6d 3d 93 b8 68 64 49 43 c2 c9 4b 23 // b0 57 0b bb 81 df 26 66 c2 4f 5a bc cf cd d7 1e 20 9f 3b b4 3c 01 d1 // 7f 9b c8 b9 af 2c 26 76 2f c6 a7 41 a1 50 b7 d1 18 6e 4f 35 17 5f 3c // 31 52 43 e1 c1 1e 92 c4 3a 1f c4 92 ee f5 a1 3c 77 a8 1f cf 51 4e bf // d0 f8 e6 45 da e1 5a 07 e8 6b 2f 01 fd a0 65 db 45 05 a5 ee a8 3c b6 // 16 f7 44 f6 be e7 31 be 19 1c 65 44 9c 02 60 35 56 d5 a5 14 22 cf 9c // 2f 19 f8 d6 84 3e 0c 10 91 e0 70 8a a2 71 e9 1f 71 c8 60 2b 9f a7 21 // 89 e0 36 b7 cb 6a f1 56 9f 21 26 92 83 de 94 a6 d7 fe 58 49 fd 43 3d // 5b 71 9c 80 41 98 73 db 05 87 fc 29 78 6c c5 98 d8 96 fb 16 36 0b dd // d2 ce 12 e5 4d 05 41 8f 4f 5e 5f 2d 7a af e9 fc d6 26 8c be 2e 9e 63 // 29 ff b6 c6 7f ab 8f 3c e6 73 02 8c c0 6a aa 6b 85 75 56 bb a3 b4 4d // 3f ab 5b 6e 87 5e 70 a2 f3 ad 4b 2f f7 6f 31 ea d3 46 2d 38 01 ba 37 // 3b 3c 2f 54 5e 94 f5 70 21 57 5e 29 47 f8 1f 53 28 3f c0 a5 13 7f d4 // 4f a3 d0 74 c9 2d e5 4a 0a 34 65 c8 58 f5 a7 ef 08 31 3f ad db c3 66 // 3e 4e 01 67 f3 cb a3 96 12 05 7a 75 18 fb fb 03 1f 5a d0 f9 f7 58 31 // 97 3e bd 73 3b 82 e5 54 bf 3f de c8 4e 51 f6 5d ab 60 28 c6 c5 13 66 // d9 d4 70 0f df 25 5e 4c 7b d7 07 66 e7 f2 28 1b 3f 2a 53 63 f8 5c e4 // 9f 91 35 90 4d 14 bc b1 17 ad 75 4c 25 94 dc dc a2 d3 0e 40 ff 26 5b // 5a cc fb 11 6f 64 ed 99 aa d5 70 c4 c5 a9 1e fd bb 98 4a c6 51 d8 72 // 14 05 a0 34 2c f7 7f 44 8c 17 a1 52 ea bf 29 e8 89 50 55 8a 86 d0 07 // 4e 1c ef ab 1e b7 c3 66 68 2f 68 6e e1 33 87 37 e6 75 ea 58 eb 8b 4c // 86 b9 f2 8a 6f 6e 96 45 9f 29 e3 b4 dc 59 ff 04 4c 61 a0 dc c5 c3 1d // 80 3e 6e 98 42 0e 44 62 29 cc de c3 d0 f7 05 e9 2f fe 01 6b b3 69 63 // 73 ea da b7 f3 5c cf 65 ab 4d 9b e0 9a 08 5c e2 1b bd 7c 05 55 37 6e // 4d 7f e6 8b 5e 7a 64 f4 8b 51 27 82 5f b2 be 59 8d 99 1f 9c 1a 54 bf // 52 71 34 17 dc c5 99 e8 12 d8 55 13 a5 37 e6 ea fa 73 8e dc 97 2b 67 // e0 65 59 5d 11 67 84 49 bc e6 cd 3d 69 80 0a 64 9b 56 0d 0e 05 7c 50 // 2c a3 e7 2e 97 82 08 29 ec fe a8 01 19 2c 3f 4e 2c 87 63 c0 95 a4 3e // e6 fe 45 fe 87 30 13 09 37 66 8d f1 d4 ee 57 7a da 28 23 8b e0 32 86 // 48 1f 2d 2a 00 4c c4 d4 88 56 e7 1f bd 64 f1 a0 04 3a 45 20 ec bb f1 // b3 ab dc 96 b8 7a 27 be 84 95 a2 05 42 96 7a a4 cd 3a 44 a1 15 02 41 // 9a 08 3d 84 e9 7a bf de 09 01 b6 6d de 48 38 86 49 a0 ed 6d 93 b9 f2 // 0c 53 0e 99 0c 7c 52 37 0a 11 4d 80 0d 6a b3 f6 68 7d 6b bc 10 5b 63 // 73 8f e0 5f a6 ca c9 8a d6 66 39 36 bb 18 cb 92 32 64 e4 c9 21 01 2b // 68 a2 6a 70 97 74 46 b8 f1 5f 9d 62 46 7d 8b 35 65 60 c1 83 a6 bd 6c // d7 6e c8 68 c3 bd 94 a5 95 cd 7b f9 96 75 5a 50 8a 81 49 80 c5 e5 88 // b2 75 20 0c 45 af d9 00 c8 c2 de 32 9e c2 48 4b 0e 3e cd 7b 09 60 e5 // e3 42 58 81 d1 ff 7f 8b d8 b2 0f 5c c9 8f fc 3a cb 77 f5 e8 87 75 a4 // bd 3a b9 f9 eb 02 7e 27 d3 af 55 eb df 4e eb ab 48 ea 91 11 28 d6 68 // d0 0f c3 f5 b5 48 0a a0 d9 a4 af 56 3b a5 77 38 44 48 e5 42 51 57 13 // 3d 59 e1 ce f3 c7 22 f3 37 00 bd 37 28 25 04 6b 1f a5 82 4e 40 51 54 // a3 af 14 40 bc 2b 75 ac fb d0 7c f9 2e 8c 16 25 87 e7 4b 5a b6 6b 1c // 6a ea b3 ad 5f a3 ee 91 da 49 00 ef 30 ad 04 ba ea 32 6d f9 12 51 7d // d9 6e 16 96 b4 a9 1f aa 66 67 59 78 a3 75 e8 1f 25 46 4a 10 73 dc 67 // 37 af 08 d7 e2 59 56 bb 31 d4 38 54 8a 7d a3 86 62 d4 9d b8 12 a8 cf // 1d 6c c6 5f 5c 63 87 9f d9 ee 7f d2 a6 6c a3 fc 1a 76 8c b2 39 aa b8 // 8c 87 20 64 70 b4 c6 05 92 af eb 6d 69 ed 97 a8 f9 90 15 58 62 ba 4e // 22 b6 48 04 14 2c 13 1a 23 79 29 37 aa 8a 86 96 e1 65 c2 4d 76 92 a0 // 4b b4 47 1b 0f 0d 25 07 fe 7c 86 18 42 14 28 fc 7a 0a cc 98 4c a5 cc // 6b ac b7 72 e8 a7 17 bb aa 64 6f 96 43 27 59 10 a6 03 7a fa f5 a8 06 // 78 d1 8e dd a1 38 a4 e1 3d 06 d0 4a 5d 06 43 1e ab 48 73 82 25 cf 15 // 67 e9 60 e7 65 72 8d c1 2e 91 b9 1c 6f 2b 33 df b6 e0 33 aa 68 c1 c2 // 33 4d 24 33 5a bc 4a 7a 1d f5 63 6d ec 29 09 1d a5 4d 5f 5a 1f ff 41 // e4 a3 5a 0c 2f 04 f9 68 f7 d7 8e 2f 51 c7 35 77 e2 19 2b b2 0f 28 9a // ab a5 a1 75 c2 ed 53 38 55 bd 9e d9 a8 42 ad 48 21 36 dd 5e 0c f4 5e // b5 e2 d3 1f f6 2a 3b e1 cf 8a 94 a5 83 16 e7 4f 4a b9 fc 54 f3 a0 bb // 83 be ef 0f 35 59 93 bd ea 2c 83 e6 1c dc 79 6b f2 56 4a e5 1f ae 61 // 67 99 e8 71 19 98 cd 88 d3 5c d9 82 44 52 fd d6 52 26 17 4b 46 79 2c // b8 7f 4d d2 82 e4 e6 f6 7e b6 6d a4 13 ad 87 7e d6 ce 77 5f 7e 19 bc // 93 f4 8b b9 e5 ec 04 00 9d e3 c0 42 ae ac f7 f4 b2 5a d6 b3 0e 01 73 // 03 f6 4f e0 7a c7 9e 87 44 aa b6 92 6d 11 7f 13 51 3d 04 69 ce f3 35 // fe 1d 0d 78 7c 2d 0b 2c 03 1a 95 21 78 6a c1 0e 9f 8b 76 82 71 68 03 // 37 f2 c3 26 2a bd cc b5 d3 10 7c 63 2b f1 f7 4c 83 ee 91 f4 99 88 22 // 2f b0 80 cc 8f aa 9b 1a 02 52 6d 8b 60 87 e0 b2 35 41 73 d2 90 16 b3 // 30 95 87 c1 6f 05 7d d8 12 aa 63 c3 16 91 50 de 81 f3 af 97 d0 82 a8 // f8 da 4c e4 f9 09 ff 64 98 21 d7 f9 6d 97 61 35 52 e8 cc 49 02 e0 46 // ec fa 32 9b 1d 98 0f f5 ec e6 9b 8f 16 15 fd ff 52 44 f4 1c ec 0a f9 // 24 62 4a e1 64 1e ca e5 fa 26 c5 fb 90 06 e5 71 00 ee 71 37 7c ed 7c // 25 5a e1 7a 08 45 e2 ee 02 87 c6 2c 18 52 f9 38 77 f9 f8 61 57 ca 96 // 75 d3 83 ff f5 cd 6f 2b 00 1e c0 13 6c 07 cf 37 f5 ac e1 85 31 22 c2 // ba a1 09 2d 41 8e 2a 49 0c 4a 5c 8f 56 b8 28 ce 1b af ee f4 e7 7f 09 // 5d 6b 4e d9 9d 56 f6 68 12 cb 19 be 54 0e be 5d 52 e7 ef f2 d6 9c bb // 84 77 e1 15 14 f7 e3 60 4b f9 99 9f 78 c2 f1 ca 6f 60 a2 21 6b 87 fa // 0f 25 26 9c 42 5b 7d 50 70 9b 20 09 12 b3 b7 89 9c 95 e1 2d 6e 9c 4d // ac c1 9e 32 77 21 86 0e 04 77 a5 3e 67 93 fb b7 fb 97 04 a8 48 f3 95 // f4 8c 24 a6 e7 9b 9e 13 58 cc 34 97 25 1d e8 8b 8d 3a 7b 22 c6 d8 af // 1a 7f ab 81 53 0d 9f 0c c9 8f 62 de bb 22 2b 54 78 0d 89 79 42 38 53 // 27 17 b4 47 d7 1b 46 a6 0e d4 81 c2 1d b8 5b 59 0b 31 72 00 09 69 5e // cf fd 4e f0 29 96 4e 5d 51 49 62 22 33 ac 01 3e 96 0a 00 5c 92 4f 73 // ea 82 c3 18 45 55 46 c5 3d 74 aa 3f 7e 2f f2 6a a0 74 c4 0a 55 ab a8 // b0 80 27 fc 19 b5 96 ee c6 c4 f8 9b ae 39 e7 4b 9a ad 88 34 4f 7c c5 // ad 3e ef a5 09 5f 2a b4 72 22 e9 a3 57 ec d7 1c 67 00 ac 57 60 25 20 // 14 90 d9 e4 46 60 3d fd 4b da 76 17 dd 50 09 81 b2 d2 ab 8c 43 88 2a // 52 08 49 4c b3 f8 eb c7 20 bc a8 a7 cf 6c 80 bd 7a aa f8 95 07 bb 34 // 12 ea 49 0a 78 97 3f 12 cc 30 41 3e 9d f1 45 89 17 ea 3d 68 b4 38 d4 // 24 c1 31 4b c8 d0 19 39 c5 a5 a8 42 43 82 81 e6 2d 0c 80 0d ee 70 4b // 2a 6c d3 e1 e4 b8 85 a6 b2 6b 89 4a 98 76 5f a3 30 8c 9e 4b 87 f9 36 // 25 fa ec db 17 c2 9a 27 cd 24 3b f6 03 0a 67 87 4e c9 f2 44 3c f8 15 // 42 61 ac 2a 83 4c 01 cb e1 f3 14 ee 7a a3 ca 55 2e 16 48 cf 8b 42 a6 // 3f 24 9e 35 38 02 6e 09 e4 4d 69 dc 25 9a db 0d 1a 0c bc cb 5a 5d d5 // d0 dc cc 90 d0 23 da 79 d5 63 41 88 ff 06 0f 7e 35 a5 f9 d7 ad 99 54 // 68 24 d6 39 75 d4 45 2d e8 76 09 3f 4e 99 7d c4 6e ed cd 80 a9 ee bf // 5e 4f 07 7f bb 10 c7 d9 e1 9a 34 19 e7 b8 45 97 2a 3b 62 61 3c 54 04 // a2 09 b1 6f a8 8e 0f f4 9d 7b 4f 21 fe cc 1f 77 3c 5b 4b e6 10 21 e0 // ca b8 60 2c 6e 82 57 64 93 03 aa ea fc bb 17 8e 7a 46 0f f0 7f 21 9c // 46 eb 6f e5 bf 81 13 72 3e 45 40 03 bd 70 77 67 c1 07 da f4 25 57 51 // da af 8d ec f3 52 62 64 00 58 92 4e b6 58 78 68 b2 c0 82 30 b3 17 e9 // 73 96 eb c9 28 ba 8d 27 4c a0 ee d0 bf cb 63 76 76 00 3c 64 e8 c1 e1 // a0 42 0b 6c 96 a4 42 26 06 1c ed 41 b8 44 83 82 ab d2 f3 d0 c4 72 af // cd e2 31 fb c9 ee 90 c2 f1 13 2f 8e 23 91 24 6f 95 ad 93 35 4c 74 60 // e2 0d e9 96 ad 0f 61 b1 3b 27 64 68 87 a6 37 ce de 90 b9 4b 7d 8c 31 // 30 f0 fe 06 0e 8d 95 5c 71 1a 27 00 b3 02 a7 5b de b3 2a 0a 68 02 ea // 79 5c b1 14 f5 f8 2a 1a 38 1a 86 bb ff 88 b2 99 e4 77 28 b7 46 df f9 // 64 c9 4c 52 b6 61 b9 42 93 76 b1 32 0b 46 08 14 26 b7 c3 40 20 6d c0 // da 15 1b f8 4b e2 a4 9e 78 b6 b5 93 87 53 d2 b1 be 8d 9e 67 c4 3c 5d // 70 e7 25 19 f5 f9 0d 05 00 e8 4e e3 8f 82 b1 91 ac 4d 96 8b 0a 37 90 // 1f d9 23 cb 28 9d 58 56 93 ac 3c 3f 8a 94 fc a6 df 45 e6 94 e1 99 a9 // cd 0b 1b c1 fa 73 94 bc c9 6a ae 67 0d ca 66 05 a9 98 79 3b 7e 06 7a // c4 10 ba 63 10 57 b8 b7 6f cb e9 52 4d f8 20 c0 2e fe f1 60 8b 74 3c // d2 aa 6d 60 d3 d8 e4 76 fa 12 d3 ac c3 29 f8 27 2b 08 7d 89 47 11 77 // ed 53 1f ec 1f 9c 24 a9 75 ca 2f cd 8c 24 6a 33 e2 91 a3 f0 0b 7f 23 // 40 52 06 7a 00 59 c8 67 62 47 52 56 bb 5e 7d ac 6f 12 1a 09 25 50 6b // 18 93 3c 6e 31 49 15 d4 b3 b2 13 0a af c2 48 3e f2 2f f8 bb 7b 88 75 // 65 b1 bd 22 fa bc a2 20 37 d8 fc 94 37 f6 75 c5 31 35 26 26 6f 60 bb // 7c 7c 47 f3 0c 7d 56 7e d1 42 ea 5e c3 67 c4 29 83 28 d2 0e 53 44 f0 // 1c 0c 90 cf 8a 63 02 f4 d8 4b 6b a7 49 5f ba 31 4a 05 ba 29 b6 3b b6 // d4 58 fd b0 5a 44 11 13 69 58 30 9f 41 8f b1 78 e1 9a a0 9f f9 e6 2b // 29 73 2f b2 98 6c 96 e7 38 f7 a6 88 cb 21 22 db b8 f2 ad 9a 5f 28 bc // 49 ec 0c 46 24 13 55 2a fe e8 e4 03 25 9b 55 ad 6d c3 34 dd e7 f2 d3 // 06 92 9d d0 1f 2a a6 03 6c af d4 18 74 52 26 89 30 1b 81 c9 e5 0e 86 // 82 88 94 14 03 56 db 0a 33 17 b0 81 ed 9d 81 48 c4 1e 77 e6 bd a6 28 // 77 62 53 2b 86 eb 91 f5 48 09 15 68 0d eb 8a 91 fb 86 56 b7 f0 10 90 // 64 86 5d 2b 84 6a f0 86 1f 67 d3 f7 20 d6 e3 06 54 0c d7 b6 8f 09 5e // f3 69 0b 88 ea 93 fb 6a 40 2f f5 69 75 97 cd a8 31 71 f1 59 e8 53 07 // d1 a8 c0 16 11 18 9b d4 eb 4f 04 53 ab 88 d4 3a e1 81 a5 62 a7 69 02 // a6 7c 68 75 14 07 9d 6f 43 04 d9 a7 c0 fa 24 b6 e8 60 74 ea 0a 9f d8 // 18 7c 12 03 12 07 8f 5e bf a6 74 ad c0 30 37 34 bf 8f 6b 55 85 94 37 // 06 59 41 92 ad 64 c9 f7 d9 79 4f b8 37 58 92 4f 86 28 55 dd d5 0b ff // 58 b5 22 c4 3d 73 c0 32 89 ba ec 62 8c d6 93 ca b9 31 01 b1 e4 73 b7 // 65 32 51 0e 10 f0 3e 86 81 2f ea 6f 2d 6f 54 67 dc f2 9e 6d 7c f8 52 // 4f 38 3a 0d ed 3f 09 51 c3 ff b1 71 a6 b8 a6 d9 7b 5f a8 89 9a 19 f1 // a3 d0 e9 34 a1 d4 74 10 76 e4 39 4b a2 25 15 8f 69 7b f7 d5 65 17 17 // c6 95 02 29 a0 be 22 e8 12 0d 76 a4 14 ed bc d0 3d 50 52 64 b7 ed e8 // 27 2c cb d6 db dc eb af 11 da f6 a6 52 f6 f9 eb 74 ba 7a 3e cc 94 28 // 92 89 13 88 00 5a e5 d9 71 e4 e7 9d 69 65 64 90 6d ff d4 48 45 b7 04 // a9 ab c2 fa 5b a1 bb 69 a5 48 42 3a 08 04 4a d6 d0 e3 65 db 7e 6b ea // 0f 38 44 a4 52 75 97 16 cb 98 dc f3 26 00 1e c9 0c 1c 34 31 74 09 8c // df 47 ea 2e 13 34 10 58 ca 01 4d 2a 30 e9 ba 3c 52 6d e7 2a 6e 38 71 // 81 bf 76 a2 78 c9 cb c5 18 d8 c3 74 a3 f1 d9 80 2a 39 46 4a 10 09 03 // db ec 16 f8 f0 95 f5 d8 2d 9d 09 50 72 81 e4 f7 fe 0c e4 fb ec ed 19 // 39 02 a5 f6 58 af 2a 4c 1d 09 52 da bd c6 ae 58 30 b6 b5 a2 c3 f5 b8 // d3 3a 73 66 59 90 82 2e 5f 4a 7c e5 36 67 55 a1 61 55 43 bd f7 82 99 // c7 1e 89 0e 0b ed b6 ec 27 7b 10 a3 89 d6 a3 ba 9c 03 72 21 42 12 79 // e5 1a b5 0f b1 15 de 20 76 cc 99 44 42 02 e8 8e bd 9d 0f be 4e 60 23 // 4b 7b 76 14 95 ac 6c 9e 61 5d da c8 17 61 64 a8 8f b6 d6 cc 2b 52 67 // 2c 89 49 af e3 ef c1 e8 7a 59 88 96 bc 93 e4 21 42 38 44 fc aa fe 65 // af 89 8a 01 5b 3b ca f6 23 eb ee f9 a5 71 55 af 52 78 ce b5 2b 99 5f // 7c a4 66 d9 e1 8b 05 e8 63 80 67 9e 02 57 cf f6 d0 c6 75 00 78 46 2f // 2e e4 70 1d 6d 82 89 ed 84 8b 87 7c f5 91 86 25 b7 93 70 60 d6 67 c1 // 11 19 88 1c 30 80 90 56 89 23 52 c6 c5 3c 01 e3 95 af 68 66 ea 35 0e // 6f 21 fa 3d b7 72 c1 17 7c 75 99 99 97 3b 51 e1 1f fc 59 08 00 00 00 // 00 00 00 00 00 00 00} (length 0x2000) // } // len: bytesize = 0x2000 (8 bytes) // res: ptr[in, syz_fuse_req_out] { // syz_fuse_req_out { // init: nil // lseek: nil // bmap: nil // poll: nil // getxattr: nil // lk: nil // statfs: nil // write: nil // read: nil // open: nil // attr: ptr[in, fuse_out_t[int64, fuse_attr_out]] { // fuse_out_t[int64, fuse_attr_out] { // len: len = 0x78 (4 bytes) // err: fuse_errors = 0x0 (4 bytes) // unique: int64 = 0x6 (8 bytes) // payload: fuse_attr_out { // attr_valid: int64 = 0xfeffffffffffffff (8 bytes) // attr_valid_nsec: int32 = 0x0 (4 bytes) // dummy: const = 0x0 (4 bytes) // attr: fuse_attr { // ino: int64 = 0x0 (8 bytes) // size: int64 = 0x0 (8 bytes) // blocks: int64 = 0x0 (8 bytes) // atime: int64 = 0x0 (8 bytes) // mtime: int64 = 0x0 (8 bytes) // ctime: int64 = 0x0 (8 bytes) // atimensec: int32 = 0x1 (4 bytes) // mtimensec: int32 = 0x3966 (4 bytes) // ctimensec: int32 = 0x1 (4 bytes) // mode: fuse_mode = 0x8000 (4 bytes) // nlink: int32 = 0xfffffffc (4 bytes) // uid: uid (resource) // gid: gid (resource) // rdev: int32 = 0x3 (4 bytes) // blksize: int32 = 0x4 (4 bytes) // padding: const = 0x0 (4 bytes) // } // } // } // } // entry: nil // dirent: nil // direntplus: nil // create_open: nil // ioctl: nil // statx: nil // } // } // ] memcpy( (void*)0x200000004200, "\xa2\x80\x96\xc8\x0a\xbf\x35\x43\xec\xde\x75\x64\xab\xff\x50\x85\xd2" "\x22\x7e\xbc\xb0\xf1\x64\xae\x92\x70\x6a\xd0\xb0\x83\xa3\xf4\x69\xa3" "\xef\xd1\x5b\x49\x21\xe9\xc3\x06\x3b\x98\xb3\x08\x20\x68\xe7\xc3\x19" "\x50\xdd\xe8\x42\xea\xc5\x5d\xf0\xf9\x91\x45\x3c\xad\x62\xa6\x95\x6b" "\x0b\x6f\x7b\x8c\xf4\x9b\x50\x6a\x30\x60\xfe\x11\x27\xec\xa9\x96\x63" "\xad\xe8\xef\xa8\x9e\xe1\x89\xac\xb5\xf3\xb9\x2f\x6b\xc4\xc4\x66\x21" "\xc8\x03\xee\xd0\xd0\xbb\x5f\x32\x38\x48\x70\xed\x08\xf8\x9d\x4f\x74" "\x44\x57\x62\xfb\x99\x71\x5e\x08\x3c\x4c\x92\xa8\x87\x8b\xe1\x9f\xfa" "\xcc\x30\xd0\xf2\xda\x64\xf9\x71\xcd\x40\x56\x31\x63\xad\xc1\x56\x70" "\xec\xf2\x5c\xd3\xad\x96\x13\x89\x67\xc4\xb5\x3a\xd9\xd0\x4b\x51\x93" "\xab\x5f\xb6\x74\xaa\x00\x30\xa9\xd7\x03\xd1\xba\xf8\x10\xce\x89\x7f" "\x96\x91\x21\xf1\x42\x16\x19\x19\xe5\x83\xc2\x75\x67\x1b\x99\x9e\x7f" "\x36\x38\x91\xdf\xdf\xdf\x35\x56\xd0\x1b\x86\xee\x29\xec\xa8\xfc\xcb" "\xfe\xaf\x17\x71\x39\x51\x48\x70\x6c\xc6\xe6\xbe\x7c\xe2\x9f\xc9\xff" "\xef\x06\x1b\x54\x20\x95\x0c\x1a\x52\x5b\xf7\x5a\xd0\x6e\xde\xc5\x15" "\x38\xd1\xc5\xbb\xc7\x7d\xa7\x2d\xc9\x0f\xd9\x99\x89\x36\xff\xfd\xda" "\x24\x27\xe5\xa6\x89\x66\xc7\xe2\x20\x8f\x76\x30\x46\x80\x18\x2e\xc7" "\x30\x07\xe4\x82\xf0\x34\x19\x57\x12\xaf\x92\x2d\xb2\x72\x61\x95\xd9" "\x97\x70\x87\x34\xdb\x9e\x78\x25\xa8\x64\xbe\x00\xb2\xa4\xf8\x00\x88" "\x1f\xc0\x36\x3f\x5e\x61\x83\x98\x45\x4f\x35\xb1\x48\xb4\xcc\xb8\x8d" "\x41\x82\x69\xfa\xc8\x68\xa8\xba\x4a\x2d\x5b\x4f\x06\xa1\xac\x01\xb5" "\xad\x15\x8b\x84\x2e\x05\xad\xca\x22\xc7\x37\x25\x85\xbf\x4c\xe9\x55" "\x60\xb6\xc1\xe0\x21\xa3\xed\x2f\xf7\xbd\x3b\x6b\x3c\x77\x34\xc3\xb6" "\x6d\x7e\x4c\x46\x00\x96\x31\x20\x82\xf8\x9b\x16\xba\xa6\xe7\x38\x14" "\xaa\x60\x92\x57\x80\xcd\x92\xcd\x65\x08\x7e\x26\x0e\xc0\x46\xfc\x36" "\x32\x64\x36\x6a\x9d\xf2\xc8\x49\xc0\x64\x49\x11\x30\x39\x46\xad\xad" "\x54\x45\x21\xce\xb4\x69\xa3\xe1\x93\xec\xc9\xa7\x87\x64\x03\xfa\xc4" "\x61\xa4\xa7\x0d\x61\x93\xb2\x45\x11\x89\xa5\xc5\x12\x0b\x35\x35\xe9" "\xed\xf6\x19\x10\x8a\xf7\xf5\x17\xb5\x8a\xbd\x3f\xa7\xfb\x1a\xb8\x32" "\x21\x34\x30\xd2\xe6\x90\x10\x76\xfb\xa9\xc9\xe1\xac\xc6\xc6\xf4\x8f" "\xf0\xe4\x19\xbb\xc4\x55\x89\x74\x5a\x17\x6f\x52\xa7\x40\x7a\xd5\xe3" "\xdd\x49\xac\xb3\x1b\x47\x86\x28\x06\xf4\x70\x77\xdd\xa0\x49\x05\xe4" "\x5a\x80\xa1\x2c\xbc\xd4\xd2\xdd\x9f\xe6\x6c\x2d\x1f\x99\x39\x4f\xed" "\x8e\xc6\x09\x61\xcd\x2d\xc7\x11\x5a\x96\xec\xe4\x32\xfa\xc8\x6d\x51" "\xbe\xbb\x08\xb9\x5f\x44\x7a\x83\x79\x2f\xe8\x02\x91\xfc\xa7\xb2\x98" "\xc9\x04\x3e\xf2\xc2\x6f\x0f\x7e\x42\x79\x8d\x3f\x54\xc8\x4b\x94\xc2" "\x4c\x76\xc5\x55\xd8\x3e\xcc\x53\xb9\x9b\xb2\x2d\x71\x84\x5e\x5c\xf2" "\x1a\x5b\xa7\xfb\xef\xfe\xb6\x30\x6e\x17\x30\xdb\x14\x56\x1b\x95\x0a" "\x3f\x24\xbc\xfd\x78\xd4\xab\x0d\x97\xde\x80\x54\xbb\x1a\x60\x77\xae" "\x7c\xca\x6e\x45\xd8\x46\xd3\xdf\x82\x29\x8d\x07\x21\x29\x22\x74\x2c" "\xb0\xfa\xca\xc3\xb7\x7e\xdf\xba\xb9\x0e\x9e\xe2\xd4\xf7\xb0\xee\x9b" "\x17\xbb\x11\xec\x5e\x57\x21\x34\x0d\x84\xcb\x6b\xd9\x34\x28\x16\x7e" "\x69\xb4\x77\x59\x17\x25\x57\xac\xda\x31\x3c\x3d\xec\xdf\xc6\xfe\x93" "\x36\xbf\xad\xe4\x59\xf4\x3b\x39\xd0\xf2\x28\x9f\x91\x42\xdb\x28\x0f" "\x4e\xe6\x68\xe6\x50\xe1\x28\x58\xc5\x77\xe1\x2e\x2b\x9a\x57\xee\x66" "\xc8\x34\xbe\x97\x97\x9b\xcb\xe9\x47\x47\xfa\x5d\x8d\x0b\x7d\x3a\x9f" "\x8f\x21\x8d\xf1\xbf\x96\x0f\x82\x84\x29\xa1\xef\xe8\x38\x61\x6b\x18" "\xfa\xf6\x62\x92\x36\xdd\xbd\xed\x43\xa0\x93\xef\xae\x16\x32\x28\xe5" "\xc3\x8f\xd7\x71\x47\x43\xc2\xfc\xca\x47\xe3\x38\x2b\xcf\xb1\xab\x89" "\x3f\xd7\x37\x75\x27\xb4\xec\x43\xf3\xfa\x60\xeb\xd3\x38\x16\x1d\x8d" "\xe7\xca\xd6\x5b\x15\x57\x9e\x4a\xf2\x58\xf5\xfe\x3a\x63\xc2\x63\x7a" "\x15\x70\x32\x07\x02\x9b\x08\x99\xb5\x42\x77\x67\x64\x7b\xae\xf1\x1e" "\x29\x13\x58\xe6\xe5\x4f\x6f\x13\xd3\xd2\xca\x7a\x5e\x79\x69\xe0\x4d" "\x27\x33\xb3\xb9\xab\x82\x2c\x69\xa3\xcf\xac\x09\x73\x84\xde\x50\x71" "\xa9\xb7\x4a\x65\x61\x36\xd5\x5e\xb1\x00\x00\x08\x74\x7b\x50\x9f\xd6" "\x10\xff\x62\xb4\x95\x0e\xf7\x1c\x93\x4f\xe2\x1a\x48\xa4\x93\x1d\x3d" "\x94\x58\xb4\x15\xf1\x12\xce\xe6\x5c\x66\x0f\x54\x90\xe9\x82\x34\x1d" "\xa1\xc5\x86\x34\xb3\x96\x7c\xa6\xf3\x59\x6d\x20\xcc\x90\xf5\x08\x38" "\x21\x56\xe3\x6f\x16\x53\x90\x93\x24\x0e\xf5\xf2\xaa\x6a\x2c\x0d\xff" "\x2a\x67\xdf\x30\xdc\xf5\x0b\xf6\xe0\xb8\x2a\x3d\x49\xf2\xd5\x32\xa8" "\xdd\xe1\xb3\xce\xef\xcf\x08\x37\x19\x0b\x74\x18\x60\x90\xd1\xc1\x8b" "\x59\x91\x7d\x7e\xfc\xe1\xad\xfb\x23\x8e\xf4\xa7\xb1\xd2\x2c\x4c\xef" "\x09\x32\x02\x21\xde\x88\x3e\x97\xe6\x88\x24\x66\x50\x8d\xe0\x6f\xcd" "\xab\xad\x3b\x74\x1b\xdc\xa2\xcf\xf8\x79\xd5\x7d\xdd\xa5\x2f\x42\xb3" "\xdc\xb8\xa7\x8c\xfc\x05\x82\x6a\xf7\xe4\xff\x15\x59\x60\xff\x84\x91" "\x19\x4f\x4d\x32\x1e\xf1\x95\x99\x0a\xba\xee\xef\xdc\xb8\x52\xd1\xe1" "\xe3\x70\x3f\x31\x73\x85\xa9\x45\x8b\x6c\x2d\xd9\xdb\x83\x0f\x75\x7e" "\xc2\x9c\x99\x39\xfc\x73\x13\xe6\x39\xfe\x48\x5b\xc1\xe4\x1d\xda\xae" "\xf3\xfb\xf1\xf7\xcc\x52\x7c\x8f\xad\x0d\x21\xb8\x08\x24\x82\xca\xad" "\x7b\xee\x44\x0e\x50\x97\x66\x5f\x63\x6c\x3d\xfe\xc8\x2f\x8c\x98\xaf" "\xb6\x24\x3b\xc3\x94\x49\x39\x67\x5a\x59\x42\x77\xd2\x78\xba\x43\x61" "\x46\x1f\x7d\xa5\x2e\x22\x4e\x4c\xe5\xde\xe4\xa4\x67\xbf\x6a\xe9\xf6" "\x7b\x61\xac\x6e\xb0\xa4\x40\x40\x6a\xba\xc2\x01\x6e\xec\x90\x7e\x24" "\x1c\x57\xf5\xf4\x4b\xe4\x72\x90\xfd\x0f\xef\x78\x5f\xf0\x4d\xf3\x81" "\x0c\xcd\x63\x7b\x4d\x97\xa8\x4b\xae\x84\x86\xa3\x6f\x75\xd8\x72\xe6" "\x45\xfe\x46\x62\x59\x69\xfc\x2d\x1f\x03\x2c\x56\xed\x44\xbd\x98\xea" "\x27\xbd\x9b\x6d\xdc\x8e\xb2\xdc\x2e\xc9\xf9\x0f\x2f\x1c\xa1\xbd\x20" "\xe3\x7a\xc5\x8b\x03\xc8\x4c\x87\x2f\x4b\xa4\x73\x10\x65\x49\x86\x64" "\x14\x60\xdf\xdd\x53\x1a\xc6\x2a\x76\xad\x87\xb8\x9c\x10\x3a\xc5\xc9" "\xc2\xe7\xe7\x0c\x66\x44\x7b\x34\x12\xd4\xa1\xe5\xcb\xc3\x0e\x16\x93" "\x95\x05\x11\x6c\x04\xde\x33\xae\x05\x4e\xd3\x66\xde\x8d\x1f\x97\x1c" "\x2d\xe4\x39\x95\x7a\x19\x4e\x22\xa4\x88\xf5\x8d\x7e\xfd\x46\x43\x91" "\x77\xf3\xf3\xc4\x5a\x14\x75\x92\x7e\xec\xd8\x46\xd3\xd2\xe6\xa2\xab" "\x5c\x7f\x8a\xdd\xd9\x90\x62\xc2\xfc\x6b\x27\x2d\x1f\x51\xbb\x8f\x22" "\xf1\xb6\xf8\xbb\x3f\xaf\x8a\xa8\x5e\x5e\xb9\xab\xf7\xdf\x5c\xf8\xf2" "\x62\x67\x32\x38\x08\xb0\x83\x3a\x98\x79\x89\xcb\xe5\x92\x05\xe7\xad" "\x06\x55\x6e\x2d\x1b\x8a\x48\x73\xca\x1c\xbc\xbc\x8d\x43\xab\xc1\x45" "\xfd\x4e\xb8\x32\xe7\xa5\x8a\xb2\xc7\x93\xd0\x03\xce\x7b\x18\x50\xce" "\x45\xeb\x74\x80\x41\x7a\x1e\x9e\xb9\xd3\x9a\x10\x28\xa2\xa0\x4a\x2a" "\xa6\x49\xc0\x98\xc4\xf8\xee\xe5\x14\xdb\x5f\x60\x21\x17\x3b\xb2\x54" "\xb8\xe2\x2b\x15\x0b\x2c\xa0\x1d\xc7\xff\x23\x5d\xb4\x6e\xd7\x8d\x07" "\xf4\x3d\x1a\xda\xb1\x3b\x84\x45\xd1\xb3\x20\x69\xeb\x45\xf9\xd3\x89" "\xfc\xf5\xa3\xf7\xd3\xeb\xe2\x43\xc5\xb1\xfe\x17\xb1\xf5\xa3\xd5\x71" "\xb6\x5f\x21\xb9\xe4\x71\xe8\x18\x17\x25\x54\xdc\x95\x67\x49\xb9\x9c" "\xb7\xa5\xf3\x03\xec\x48\x0d\x71\x94\xa2\xba\x86\xe2\x04\xf0\x6a\xa1" "\xbe\xcd\xdd\xc8\xc4\x90\x82\xc5\x27\xe7\x06\x4a\xc2\xad\x77\xdc\x05" "\x63\x9d\x3d\x2a\x77\x78\xf6\x94\x3e\xd6\x10\x5e\xbf\x6f\x0b\x9e\x94" "\xfd\xdb\xe0\x5c\x23\x6e\xc0\x00\xf4\xd1\xd4\xe4\x96\xb1\x00\x68\x21" "\x1a\xb6\x8a\xda\x4c\x7f\x7a\xc6\x1f\x5f\x5b\xa5\xf1\x81\x0d\x5b\xbe" "\x87\xff\x4f\x83\x56\xaf\x0d\x3f\x68\x2b\xae\xdb\x0a\xd8\xf8\x48\x8b" "\x27\x74\x21\xf0\xa0\x3f\xc5\xe3\x09\x5e\xe3\x4b\xc4\x47\x2d\x8f\x17" "\xe3\xf7\x01\x3c\xf2\xf7\x9f\x5f\xf3\xea\x4b\x6b\xae\x56\xd1\x36\x5a" "\x33\xb0\x9b\xfa\x9a\x49\x63\x23\xf7\xda\x92\x3b\x7e\x29\xdc\xe4\xbe" "\xb8\x00\x35\xf1\x31\x30\x00\x4c\x96\xe5\x6d\x7e\xf6\xca\x6c\x10\x1d" "\x20\xc2\x7a\x21\x8e\x62\x32\x27\xc3\x3c\x9e\x48\x8b\x17\xe7\xae\x9a" "\xc2\x0d\xa8\x24\x05\x01\xf7\xb6\x14\xa1\x73\x0f\x16\x45\x53\xfe\x47" "\x9e\xf1\x49\x86\x6e\x4e\xa4\x72\x96\x81\x42\x84\xa3\xd3\xeb\x7c\xbb" "\x29\x42\x89\xff\xb9\x96\xe0\xeb\x05\x3b\x9c\x16\xe5\x4c\xf2\x67\x83" "\x2e\x3d\x36\x0e\xb1\x96\xed\x51\x30\x56\x30\x22\x33\x09\xea\x97\x21" "\x56\x28\xf0\x1e\xc9\xd3\xea\x48\x09\x64\x18\xd5\xe9\x62\xca\xc5\x06" "\x34\x60\xf0\xa1\x87\x72\xec\x7c\xe6\x6d\x14\xa1\xcc\xe1\x4b\x52\xc4" "\x0b\xbb\xfa\xfc\xcb\xf1\xe7\x6f\x09\xe5\x7f\xf0\x71\x80\x48\xe5\xb9" "\x93\x15\x7a\x6c\xf4\x71\x88\x26\xb1\xe0\x94\x30\x41\x3a\x35\x96\xa1" "\x5c\x4a\x62\x0f\xa8\xc8\xe1\xd1\x66\x3e\x57\x39\xf9\xf7\x90\xdd\xbb" "\x3b\xe0\xe0\x01\x87\xd4\x37\x17\xd6\x59\x24\x24\x67\xd8\x68\x1a\xc1" "\x03\x03\x34\x61\x57\xf8\x94\xd9\x03\x76\x41\x41\x70\x10\xe9\x65\x4c" "\x6a\x5b\x22\x38\x3e\x73\xa5\xa3\x71\x28\xf5\x00\x78\xa9\x80\xc3\x09" "\x30\x32\x1a\xa5\xc5\xe7\x85\x1d\x5d\x39\x2d\xdc\xe3\xa1\x4a\x96\x91" "\x6f\xa8\x42\x1a\xe6\x72\x8f\x37\xf5\xde\x7c\x3e\x98\xfe\xb4\xba\xbd" "\x4e\x1b\xd2\x31\x5d\x59\x5e\x20\x9d\x52\x74\x8f\x70\xad\xc2\x28\x4f" "\xcd\xaa\x6a\xd8\x80\x47\x0d\x2a\x07\x1f\x34\x90\xaa\xf3\x49\x1f\xb6" "\x4b\x45\x47\x41\x9e\x8e\xcc\xdc\x49\x1a\x89\x21\x15\x6c\xb4\x81\x1a" "\xd1\xe6\x65\x14\xa3\x2b\x0b\x31\xb6\x41\x43\x88\x81\xf2\x8c\x1e\x64" "\x61\xb4\xf4\x51\x93\x89\x99\xaf\x67\x1e\x8c\x6a\x5c\xd0\xc0\x72\xa9" "\xfe\x4c\xdb\xef\xe2\x4c\xa6\x16\xf3\xd0\xa1\x5a\xc9\x7c\xca\x83\x5b" "\x1a\x44\x0e\x04\xfa\x28\x34\x0c\x60\x44\x17\x6c\x8e\xcc\x8e\xe0\xd0" "\x33\xd4\x7d\xb8\xa0\xaa\xcf\xa0\xea\xbd\xfa\x1c\x95\x09\xfc\x26\x04" "\x00\x8f\x01\xcb\xaf\xeb\x5b\xd2\xb5\x03\xb8\x09\xed\x67\x23\x40\xb9" "\xa5\x76\x59\x3f\x1e\xf3\x88\x39\x1b\x54\xb6\x05\xe7\xa1\x5b\xef\x7b" "\x13\x45\x62\x7a\x34\xfc\xa5\x77\x38\xb0\xf8\xf4\xf1\x9e\xea\x93\xc9" "\x03\x49\x52\x74\xa4\x42\x5a\x1a\x1c\xc6\xc4\xc6\xe3\x35\xb6\x31\xdf" "\x51\x85\xc9\x5b\x48\x5a\x42\x57\x86\x7b\x53\x47\xa4\x0e\x4e\x14\xdc" "\xc5\x60\xf0\x61\xfd\x4f\xd2\x65\x13\x7d\xc6\x8a\xfd\x54\x8a\xdd\xe7" "\x78\xf1\x33\x0f\x76\x9a\xcb\x1c\xcf\x5d\xa1\x4f\xf6\x99\x2c\x24\xe2" "\x10\xea\x6e\x61\x79\x42\x18\x81\xb8\x03\x39\x3b\xc6\x97\x4e\x37\x10" "\x6c\x5b\x5b\x3b\x5d\x0b\x34\x69\xf8\x96\x9b\xff\xb7\xe4\xce\xb2\xc9" "\x8e\x92\x8e\x74\x36\x64\x92\xd2\x72\x35\xae\x4c\x74\xa2\xf4\x85\x11" "\xae\xea\xa5\x3a\x2b\xea\xfa\x7a\x33\x1b\x50\xe4\x54\xc5\x07\xaf\x1b" "\x63\x35\x0a\x5c\xef\x35\x66\x8a\x5b\x93\x25\x01\x41\x92\x27\x7e\x50" "\x95\x61\x00\x8b\x36\x01\x08\x8f\x79\xd4\x2e\xaa\x8b\x1e\x4a\xe2\x00" "\x0b\x31\x74\x9e\x2b\x80\x94\x31\x2d\xdb\x7f\x3c\x1c\xd6\x25\xef\x88" "\x5c\x11\xfa\x22\xa6\x6e\x37\x4b\x52\xb3\x42\x5e\x0b\x80\x16\x15\x4e" "\x1f\xd8\x47\x13\x39\xe3\x2e\x73\x73\xd6\x3a\xb6\x46\xd8\x93\xfb\xe0" "\x9a\xe0\x7b\x06\x07\x4c\x01\x40\x1e\xa7\x6b\x3c\x38\x2a\x9d\x32\xf2" "\x4f\x93\xc7\x89\x96\x4e\x16\xbc\x42\x06\xec\xd7\x5c\x10\x91\x7a\xb8" "\x4f\xfd\x8d\x6c\xdf\x4c\xd2\x8f\xd9\x03\x75\xff\x28\x51\x8f\x8c\x1a" "\x3b\xef\xc5\x38\xe1\xb9\xe4\x27\xfb\x67\x19\x88\xd2\x9f\x2f\xb2\xfc" "\xd0\x39\xf4\xd3\x41\xc8\x4e\xb4\xd7\xcf\x60\x0d\xda\xba\x88\xbb\x09" "\x4e\x4d\x87\xa1\x41\x91\x80\x14\x9f\x49\x13\x68\xe6\x48\xb6\x99\x85" "\xb0\x5a\xc3\x9a\x4e\xcd\xd3\xc5\x13\x5f\x3a\x5c\x8a\xd7\x79\x2d\xac" "\xb6\x47\x01\x44\xbb\x9e\x67\x80\x5a\x21\x1e\xfb\x3e\xc9\xcc\xaf\x8e" "\x09\x01\x34\x5f\xb1\x9e\x4d\xa5\x79\xe1\xfb\xe8\x6a\x12\x07\xf4\xf1" "\x3c\x34\x36\x00\x9c\x2c\x64\x0b\x7c\xf3\xf8\xb7\x7c\xa7\xbd\x99\x4b" "\xf9\x33\x08\x02\x73\x59\xc6\xdd\x1b\x7d\xb1\xe1\x53\xfc\x08\x21\x96" "\x8e\xf3\x6c\x00\x3b\x6c\x73\xfe\x89\x0f\x4d\xe2\x4f\x5c\x64\x58\xdb" "\xaa\xf3\x81\x9e\xde\xaa\x91\x78\x3c\x3c\xfc\x7e\x77\x36\x89\x23\x62" "\x48\x19\x5c\x7b\xbd\x60\x11\x3f\x24\x76\xfa\x36\x87\x62\x1d\x66\x8d" "\x17\x28\xee\x43\x3d\x2f\x8f\x4d\xb7\x07\x34\x5d\x30\xf1\xe5\x2a\xb8" "\x7a\x2a\x0a\xfd\x54\x7c\x6b\xb0\x65\x00\xf5\x9f\x17\xfa\xcd\xe4\x8f" "\x69\x34\x90\xe2\x24\x94\xb7\x5d\x11\xdf\x1a\x14\x3b\x85\x06\x8d\x14" "\x3e\xf6\xa9\xbb\x59\x37\xa9\xdf\x38\x0c\x89\x48\xf1\xa0\x1e\x96\x75" "\xe1\x84\x09\xed\xb0\xf6\xb9\x60\x5b\x68\xe3\x46\x32\xfc\xce\x47\x2d" "\xc5\x0b\x90\xb0\xf6\xdc\xd5\x79\x31\xf7\x8e\x1e\x88\x61\xa0\xfb\x62" "\xe7\x2b\x0b\xaa\xd6\xf9\xd2\x3c\x1c\xfb\x0f\x19\xb2\x50\x13\xc8\xd9" "\xfc\xd7\x86\xa2\xf6\xf7\x97\x68\xb5\xfb\x39\x8f\x7b\x2b\xaa\x31\xce" "\x81\x56\xd1\xfc\x4a\x46\xc1\xc4\x63\xfd\xf3\x03\x60\xd4\x2a\xee\xd2" "\xef\x11\x61\x1d\x0b\x7f\x65\x4b\xb5\x10\x52\xfd\x4d\xc3\x93\x28\xf8" "\xec\x4c\x58\xbb\xda\x05\xe6\xf1\xb3\xc8\xf6\xd8\xad\xca\x02\x68\xf2" "\x41\x0e\x9a\x4a\x7d\x63\xb6\x61\x60\x06\xd0\xe0\x2f\x6e\xda\xcc\x10" "\xe5\xc5\x4f\xd8\x5f\x15\xa8\xbd\x76\x48\xa2\x93\xf2\x3d\x6a\x69\x9b" "\xd9\xa6\x75\x25\x04\x75\xa7\x3a\x96\xd7\x47\x5e\x4f\xab\xb8\x9f\xb5" "\xe7\xde\x5d\x7a\x34\x79\xaa\x48\x5c\x0b\xef\xc6\x0d\x0a\xc4\xfd\x5a" "\xc6\xdb\xec\xce\xb0\x6c\xad\x86\xe2\x19\xfc\x0c\xe4\x72\x07\x58\x91" "\x78\x11\xa3\x21\x5f\x8d\x13\xe4\x13\xbf\xb6\x4f\xc0\x65\xfc\x42\x1a" "\xed\xe0\xb5\x66\x91\x79\x7d\xac\x42\x8c\x7e\x46\x34\x79\xfa\x59\x1b" "\x90\x72\xc3\x09\xb7\x53\x3e\x42\x7c\x5c\xc1\x1a\x1f\x6c\xf9\xa5\xb9" "\x95\xd3\x28\xd7\x96\xd8\x74\xc5\xb5\x5d\xfc\x12\xa5\x03\x9b\x41\x3c" "\xe3\x19\xcf\x5b\xa1\xf3\x55\xc4\xe0\x71\x7d\x32\x65\x0b\x43\xe1\x80" "\x10\xf3\x7f\x04\x87\x31\x93\x1c\x52\xc4\xf3\x6e\xb9\x69\xdd\xa7\x02" "\xaf\xe9\x6c\x2a\x52\x41\x35\x0a\x67\xba\x2d\x02\x69\x46\x18\x9c\x5e" "\x28\x12\x93\xc9\xa8\xe2\xcf\xf3\x78\x47\x76\xf1\xde\x78\xb9\x17\x10" "\x1b\x54\xe5\xab\x00\xc0\x45\xea\x15\xf2\x8a\x0e\x3f\x50\x99\x62\xcf" "\x8b\xd3\x38\x5d\x85\x25\x07\x37\xea\xe5\xc3\x4e\xce\x86\xb8\x66\x69" "\xc1\x3b\x00\x30\x8a\x3b\x13\xc0\xac\x3c\x83\xff\x26\xfb\x52\xa4\xaa" "\x83\xc1\x23\x3a\x94\x90\xcb\x9c\xa9\x17\xa0\x56\x90\x89\x31\x75\x1b" "\xdd\xb8\x8a\x62\x37\x9a\x71\x33\x95\xf0\x76\x4e\x4a\x39\x3f\xaf\x25" "\x3a\x40\x26\xd0\x47\x22\x70\xe6\x03\x62\x87\xd5\x68\x50\xdf\x17\x51" "\x54\x34\x84\xd6\x5b\x30\x62\x15\x5b\x63\x00\xe0\x02\x42\x41\xc5\x9a" "\x86\x2a\xe7\x69\xc1\xa9\x23\x2a\x2d\x9f\xb2\x47\x05\x17\x7a\x09\xcc" "\xeb\x3e\xef\xbf\x9f\x10\x6f\x67\xe0\x1b\xe1\x4c\xde\xb4\xd2\xfc\x7d" "\x86\x61\xdf\x3e\x75\xde\x5c\xcd\x09\xa7\xe5\x59\xf0\x28\xfb\x98\x37" "\xc6\x21\xea\x00\x45\xb4\xd1\xb6\x79\x06\x7f\x24\x63\x39\xc9\x74\x63" "\x1a\xa7\x13\x4d\x4e\x91\x0e\xfb\x28\xd3\xc4\x89\x29\xce\xf1\xdf\x7e" "\x6c\x73\x66\x87\x62\xd5\x50\x86\xb6\xc5\x9c\x36\xac\x90\x15\x41\x35" "\xfd\x7c\xa4\xe4\x04\x7d\xd0\xaa\x16\x1f\xa9\x82\xd8\xed\xf9\xc0\xcb" "\x96\x66\x47\x7e\x09\x6c\x55\x71\x8f\x6e\x47\x42\x41\x5f\xef\xd4\xf6" "\x96\xd1\xf1\xcc\xd6\x32\x2b\xc1\x94\x96\xdd\xeb\xd3\x62\x82\xa7\xc7" "\x07\xd5\xb4\x41\x13\xe3\x06\x78\xe6\xe3\x3a\xb7\xd3\x4b\xe0\x4a\x59" "\xac\x61\x4d\x6a\x54\x13\x44\x90\x99\x8b\xe0\x26\x36\xfa\x91\x63\x3d" "\x62\x94\x78\x1c\x2b\x9a\x54\xc6\x11\xc0\x04\x5c\xfc\xfe\x81\xf4\x9a" "\xa2\x1b\x29\xd8\x35\xcd\x20\x47\xc8\x54\x48\x6f\xd8\xe6\x5a\x2e\xbf" "\x62\x9f\x7c\xed\x60\x2b\x9d\xd1\x07\xbf\xde\x48\x3e\x5c\x9b\x5c\xbb" "\xa4\xa0\x8c\xdc\xe0\x99\x20\xbd\xa9\x97\x8b\x7f\xc2\xb4\xa8\x9b\xf1" "\x57\x3a\x26\x38\x9e\x52\x09\x0f\xdf\x5d\xcc\xf2\x21\x11\xdc\x8c\x42" "\xfd\x3c\x8c\x47\x70\x92\x89\x53\x98\x08\x6c\xc2\x2c\xca\x66\x52\x69" "\xe1\x93\xfc\x65\x07\x42\xa3\x61\xa4\x4b\x85\x7d\x25\x84\x29\xf7\x01" "\xf2\x2e\x9b\x76\x15\xbc\x3d\xab\x78\xc1\x47\x9a\x41\xcf\x85\x75\xcd" "\xb1\x71\x69\x47\x0b\x34\x7a\xdf\xc0\x3e\x03\xda\xea\x3e\x26\x97\x25" "\xcf\xc7\x2d\xf5\x66\x4b\x9d\xf3\x6d\x2f\x2b\x55\x01\x3b\x71\x13\x3e" "\x0b\x80\x57\x7a\x47\x18\x25\x11\xeb\xb3\x08\xb6\x24\x8d\x45\x7b\xd2" "\xaf\x7b\x28\xe7\x71\x82\xc3\x05\x24\x11\x78\xc4\x12\x4a\xb1\x02\x77" "\x1f\xd5\xa8\xc3\xda\xcb\x87\x75\xde\x88\x13\x01\xd7\x15\x87\xc7\x6b" "\xcf\x0a\x97\xa7\x2a\xd2\x44\xd0\xc4\x2f\xd7\x1a\xce\xec\x32\xdd\x48" "\xbb\x5c\x9a\x95\xb3\x91\x16\x6c\x83\x2a\xc5\xba\xc8\xc7\xca\xe4\xd1" "\x8b\x3f\x7d\x9f\x2e\x47\x82\xfd\xf9\x77\x32\xe3\xd5\x1f\x67\xbb\xb5" "\x7f\x98\x9e\xe0\xd7\x58\x9d\xbd\x0c\x2a\x5c\x63\x84\x0e\x91\x4b\x9d" "\x7d\x72\x0f\xa1\x20\xac\xbf\xfe\xbf\x81\x6b\x58\x8b\x2c\xcc\x05\x2e" "\x7f\xa7\x89\x92\xe0\xea\x39\xdd\x21\xa1\x22\xad\xd4\x11\x95\xf8\xe2" "\xe1\xac\xd7\x77\xc1\xa4\xe8\xef\x43\x62\xfe\xf4\x41\xfe\xb4\xd9\x25" "\x2c\x6b\xfb\xd2\x74\x21\x52\x30\x0a\x32\x02\x77\x76\xe3\x34\x16\x20" "\xd3\xc8\xd9\x36\x5e\x10\xe8\x1a\xdc\xca\x7d\x87\xa0\xe5\x55\xc9\x8a" "\x03\x53\xc6\x92\x55\x7d\x90\xee\x9b\xe3\xfb\xaa\xb7\x66\xab\xf9\x3e" "\x24\x62\x14\x9f\xd9\x9c\x92\xa5\xfc\x58\xd8\x99\xee\x75\x53\x5c\xd1" "\xfe\x13\x86\xc5\xab\x0b\x15\x7c\x21\x02\x03\x9d\x60\x15\x25\x8f\x59" "\xce\xf3\xf1\x5b\x95\x18\x93\xa3\x0a\xe8\x39\xf7\x40\x40\x2a\x30\xb3" "\x4e\x7b\xe7\x37\x96\x28\x64\x03\xc5\xbe\xb0\x85\x3d\x85\x6d\x83\xf1" "\xb0\x0b\x48\x32\x8f\x56\xdc\xb3\x2e\x1f\xaa\xb0\x8a\x34\x35\xb1\x48" "\x2b\xf1\x8b\x21\xc9\x5a\xef\xea\xaf\xa7\xfd\x76\x1c\x7f\x28\xd4\x16" "\xfc\xde\x06\xbf\x7a\xee\x5c\x6e\x9e\xb5\x0e\x55\x87\x42\x53\xba\x3f" "\x1d\x0c\xe2\x50\x5b\x4f\xc7\xc3\xfc\x99\x6b\xfb\xb8\x44\x6b\xaf\xe8" "\x4f\x5b\xea\x94\xbf\xd7\xca\x5a\xea\xf2\x37\xfe\x79\x3b\x66\xe5\xc5" "\x21\xd4\x09\x2e\x4e\x1f\x9b\xde\x1d\xfc\xfe\x53\xfa\x55\x00\x5d\x21" "\xcf\xa8\x33\xa3\x38\xfd\x97\x92\x61\x41\x29\x33\x60\x60\xe1\x0d\x19" "\x11\x86\x20\x70\x76\x1a\xa2\x0c\x29\x02\xeb\x7c\x5a\x35\x5e\xff\x4c" "\xf6\x25\x3d\x71\x02\xa2\xca\x1f\xea\xd4\xc5\x3b\x57\xd5\x76\xd1\x04" "\xc0\x81\x31\x0d\x92\x79\x7e\x4e\x2e\x8c\x26\x9d\x19\x91\x0d\x0d\x4c" "\xed\xf3\x0f\xa2\x8b\xa6\x80\xc0\x01\x37\xf8\x3d\xe9\x40\x62\x42\x29" "\xb6\xa1\x25\xce\x52\x33\xc6\xcf\x4a\x36\x40\xb7\x4f\x58\xf2\x88\xda" "\xd8\x45\x1f\xbe\x37\x64\x1c\x55\x59\xa5\xf3\xca\xf1\x29\x9c\x8b\xfb" "\x23\x07\x23\x65\x22\x78\xfe\x37\x8e\xfd\x8e\x45\x9b\x9d\xa2\x6c\xff" "\xeb\x58\x46\x8a\x63\x01\xdb\xc0\x6d\x71\x3b\xa2\xd8\xd4\x3d\x90\x38" "\xf5\xf2\xdc\x8b\x83\x1b\xa5\x8a\x88\xee\xb5\xb1\x78\x6b\x21\xe3\x98" "\xae\xee\xb7\xc1\xf3\xd6\xf0\x1d\x82\xb3\x94\x78\x62\xfb\x9e\x7c\xbd" "\x7d\xa5\xd0\x4c\x5f\xcd\x34\xda\x28\xd5\x3e\x22\x46\xe3\xac\x1e\x3a" "\x61\x9a\xd1\x74\xef\xa6\x43\x5e\xaa\x0f\xc9\x4d\x61\x07\x99\xce\x01" "\x58\x42\x1d\xce\x04\x63\x06\xeb\x50\x42\x14\x3d\xaa\x33\x6d\x52\x20" "\x6b\x12\x61\x0e\xa6\x38\x9c\xdd\xa4\x9b\xf5\xaf\x1d\x4e\xe4\x2a\xc0" "\x90\xa9\x4a\xe7\xb7\x61\x20\x73\xf3\xa5\xc3\x6a\x22\x45\xed\xa8\x87" "\xf4\x14\x78\xf7\xd2\x0f\x18\x66\x7f\x94\x1f\x71\xee\xbc\xfa\x76\xc1" "\xab\x28\xf2\xa4\x9a\x3b\xd5\x6b\xd3\xf4\xe6\xbd\x07\x9a\xb3\xfe\x2d" "\x94\x78\x22\x36\xe8\x35\x85\xa0\x3e\x52\x90\x7a\xba\xef\x74\x56\xa9" "\x5d\x5d\x3f\x3d\x37\xef\xdc\x03\x5d\xbf\xd7\xc4\x1b\x8b\xa0\xaf\x2d" "\xf8\xad\xf1\xcf\x24\xf7\xff\x0b\xec\xcd\x3d\x26\xbc\x91\xca\xf4\x23" "\x14\xef\x7e\x46\x6f\x74\xe1\x9a\xe0\xdf\x2e\x22\x98\xfc\x2f\x69\x4a" "\x7e\xc1\x34\x63\x20\x35\x58\x5d\x53\x0e\x7e\x19\xf6\x5c\x25\x6f\x00" "\x1d\x75\x38\x2d\x98\x25\xef\x74\x1b\xc2\x13\xaf\x18\x63\x77\xd9\xca" "\x10\xd3\x72\x23\x54\xe1\x89\x7c\xa5\xc2\x3a\xc6\xa5\x2c\x9a\xd0\xe6" "\xb6\x86\xe1\x77\x6f\x7e\xc6\x5d\xf0\x33\xe8\xf4\xd5\xdb\x80\xc1\xbc" "\x35\x40\x93\xb3\x19\xcb\x70\xdf\x93\xd6\x10\x66\x76\x75\x81\x63\x28" "\xc9\x93\x22\xf1\x4e\x63\x6b\x95\xf0\x4e\x64\x97\xf1\x39\xd5\x08\xb4" "\x53\xf5\x3d\xdb\x5c\x28\x9d\x84\x9f\xd5\x40\x7c\x9b\xdc\xef\xd1\x64" "\x2a\xbd\x46\xe2\x8c\xb4\xe9\x43\x71\xbd\xc6\x06\xee\xb6\x7c\x9f\xe1" "\x77\x47\xc6\x8f\x2d\x50\xe8\x27\x11\xda\x4d\x3e\xdb\x0e\xda\x06\xf4" "\x1b\x7f\x93\xfa\x8f\xb4\xd8\x3c\xf2\x1c\x79\xda\x67\x00\x0b\xac\x22" "\x75\x50\x82\x17\xad\xe1\x65\x9f\xa8\xd2\x4e\x5f\x8e\xfb\x9f\x4b\xd2" "\x10\x73\xeb\xef\x3d\x06\x36\x8e\xb0\x3f\xa3\xcf\x0d\x63\x84\x48\xbd" "\x05\x5e\xd2\x0d\x29\x20\x33\xff\xdb\xa5\x38\x55\x9c\x8f\xf9\xa2\xa5" "\xc8\xf8\x3b\x5c\x39\x36\x43\xd6\x58\x5d\x1d\xf9\x94\xc3\xbe\x43\xe7" "\x2b\x8f\x3f\x53\x11\x4d\x2a\x5f\x6b\xce\xdb\x57\x38\x42\xb2\x3b\x6a" "\x3e\xb7\xfc\xa8\x49\x5b\xf0\x3b\xd0\x3f\xde\x7b\x19\xbd\x39\xa1\x6c" "\xec\x49\xe0\x1f\x38\xe6\x71\xaf\x33\xca\xe0\x82\xd9\x78\x8e\x32\x02" "\x79\x9b\xc4\x66\xba\xbe\xc2\x08\x05\x28\xd0\x60\x9c\x0b\x73\x19\x64" "\x71\x90\x93\x73\x5b\x4c\x1e\x73\xbd\x07\x05\x63\x7c\x47\x51\x69\x22" "\x19\x7c\x55\x2b\xae\xaf\x35\x16\xb5\xe3\xbb\xc2\xcd\x1a\xfa\x3e\xf8" "\x21\x51\x96\xed\x58\x0d\x95\x61\x09\x2f\x62\x0b\x89\x7e\x98\xe7\x86" "\xa0\xc7\xcb\xb0\xee\xdd\xa8\x06\x32\x92\xba\x64\x82\x49\x7f\x5f\x6b" "\xb6\x2f\xb5\xab\x4c\x97\xcb\x76\x58\xdc\x65\x79\x71\x8e\xb9\x7b\x54" "\x7f\xcf\x47\xce\xd1\x42\x65\x61\xaf\x93\xa1\x5f\xb4\xdc\x6d\x3d\x93" "\xb8\x68\x64\x49\x43\xc2\xc9\x4b\x23\xb0\x57\x0b\xbb\x81\xdf\x26\x66" "\xc2\x4f\x5a\xbc\xcf\xcd\xd7\x1e\x20\x9f\x3b\xb4\x3c\x01\xd1\x7f\x9b" "\xc8\xb9\xaf\x2c\x26\x76\x2f\xc6\xa7\x41\xa1\x50\xb7\xd1\x18\x6e\x4f" "\x35\x17\x5f\x3c\x31\x52\x43\xe1\xc1\x1e\x92\xc4\x3a\x1f\xc4\x92\xee" "\xf5\xa1\x3c\x77\xa8\x1f\xcf\x51\x4e\xbf\xd0\xf8\xe6\x45\xda\xe1\x5a" "\x07\xe8\x6b\x2f\x01\xfd\xa0\x65\xdb\x45\x05\xa5\xee\xa8\x3c\xb6\x16" "\xf7\x44\xf6\xbe\xe7\x31\xbe\x19\x1c\x65\x44\x9c\x02\x60\x35\x56\xd5" "\xa5\x14\x22\xcf\x9c\x2f\x19\xf8\xd6\x84\x3e\x0c\x10\x91\xe0\x70\x8a" "\xa2\x71\xe9\x1f\x71\xc8\x60\x2b\x9f\xa7\x21\x89\xe0\x36\xb7\xcb\x6a" "\xf1\x56\x9f\x21\x26\x92\x83\xde\x94\xa6\xd7\xfe\x58\x49\xfd\x43\x3d" "\x5b\x71\x9c\x80\x41\x98\x73\xdb\x05\x87\xfc\x29\x78\x6c\xc5\x98\xd8" "\x96\xfb\x16\x36\x0b\xdd\xd2\xce\x12\xe5\x4d\x05\x41\x8f\x4f\x5e\x5f" "\x2d\x7a\xaf\xe9\xfc\xd6\x26\x8c\xbe\x2e\x9e\x63\x29\xff\xb6\xc6\x7f" "\xab\x8f\x3c\xe6\x73\x02\x8c\xc0\x6a\xaa\x6b\x85\x75\x56\xbb\xa3\xb4" "\x4d\x3f\xab\x5b\x6e\x87\x5e\x70\xa2\xf3\xad\x4b\x2f\xf7\x6f\x31\xea" "\xd3\x46\x2d\x38\x01\xba\x37\x3b\x3c\x2f\x54\x5e\x94\xf5\x70\x21\x57" "\x5e\x29\x47\xf8\x1f\x53\x28\x3f\xc0\xa5\x13\x7f\xd4\x4f\xa3\xd0\x74" "\xc9\x2d\xe5\x4a\x0a\x34\x65\xc8\x58\xf5\xa7\xef\x08\x31\x3f\xad\xdb" "\xc3\x66\x3e\x4e\x01\x67\xf3\xcb\xa3\x96\x12\x05\x7a\x75\x18\xfb\xfb" "\x03\x1f\x5a\xd0\xf9\xf7\x58\x31\x97\x3e\xbd\x73\x3b\x82\xe5\x54\xbf" "\x3f\xde\xc8\x4e\x51\xf6\x5d\xab\x60\x28\xc6\xc5\x13\x66\xd9\xd4\x70" "\x0f\xdf\x25\x5e\x4c\x7b\xd7\x07\x66\xe7\xf2\x28\x1b\x3f\x2a\x53\x63" "\xf8\x5c\xe4\x9f\x91\x35\x90\x4d\x14\xbc\xb1\x17\xad\x75\x4c\x25\x94" "\xdc\xdc\xa2\xd3\x0e\x40\xff\x26\x5b\x5a\xcc\xfb\x11\x6f\x64\xed\x99" "\xaa\xd5\x70\xc4\xc5\xa9\x1e\xfd\xbb\x98\x4a\xc6\x51\xd8\x72\x14\x05" "\xa0\x34\x2c\xf7\x7f\x44\x8c\x17\xa1\x52\xea\xbf\x29\xe8\x89\x50\x55" "\x8a\x86\xd0\x07\x4e\x1c\xef\xab\x1e\xb7\xc3\x66\x68\x2f\x68\x6e\xe1" "\x33\x87\x37\xe6\x75\xea\x58\xeb\x8b\x4c\x86\xb9\xf2\x8a\x6f\x6e\x96" "\x45\x9f\x29\xe3\xb4\xdc\x59\xff\x04\x4c\x61\xa0\xdc\xc5\xc3\x1d\x80" "\x3e\x6e\x98\x42\x0e\x44\x62\x29\xcc\xde\xc3\xd0\xf7\x05\xe9\x2f\xfe" "\x01\x6b\xb3\x69\x63\x73\xea\xda\xb7\xf3\x5c\xcf\x65\xab\x4d\x9b\xe0" "\x9a\x08\x5c\xe2\x1b\xbd\x7c\x05\x55\x37\x6e\x4d\x7f\xe6\x8b\x5e\x7a" "\x64\xf4\x8b\x51\x27\x82\x5f\xb2\xbe\x59\x8d\x99\x1f\x9c\x1a\x54\xbf" "\x52\x71\x34\x17\xdc\xc5\x99\xe8\x12\xd8\x55\x13\xa5\x37\xe6\xea\xfa" "\x73\x8e\xdc\x97\x2b\x67\xe0\x65\x59\x5d\x11\x67\x84\x49\xbc\xe6\xcd" "\x3d\x69\x80\x0a\x64\x9b\x56\x0d\x0e\x05\x7c\x50\x2c\xa3\xe7\x2e\x97" "\x82\x08\x29\xec\xfe\xa8\x01\x19\x2c\x3f\x4e\x2c\x87\x63\xc0\x95\xa4" "\x3e\xe6\xfe\x45\xfe\x87\x30\x13\x09\x37\x66\x8d\xf1\xd4\xee\x57\x7a" "\xda\x28\x23\x8b\xe0\x32\x86\x48\x1f\x2d\x2a\x00\x4c\xc4\xd4\x88\x56" "\xe7\x1f\xbd\x64\xf1\xa0\x04\x3a\x45\x20\xec\xbb\xf1\xb3\xab\xdc\x96" "\xb8\x7a\x27\xbe\x84\x95\xa2\x05\x42\x96\x7a\xa4\xcd\x3a\x44\xa1\x15" "\x02\x41\x9a\x08\x3d\x84\xe9\x7a\xbf\xde\x09\x01\xb6\x6d\xde\x48\x38" "\x86\x49\xa0\xed\x6d\x93\xb9\xf2\x0c\x53\x0e\x99\x0c\x7c\x52\x37\x0a" "\x11\x4d\x80\x0d\x6a\xb3\xf6\x68\x7d\x6b\xbc\x10\x5b\x63\x73\x8f\xe0" "\x5f\xa6\xca\xc9\x8a\xd6\x66\x39\x36\xbb\x18\xcb\x92\x32\x64\xe4\xc9" "\x21\x01\x2b\x68\xa2\x6a\x70\x97\x74\x46\xb8\xf1\x5f\x9d\x62\x46\x7d" "\x8b\x35\x65\x60\xc1\x83\xa6\xbd\x6c\xd7\x6e\xc8\x68\xc3\xbd\x94\xa5" "\x95\xcd\x7b\xf9\x96\x75\x5a\x50\x8a\x81\x49\x80\xc5\xe5\x88\xb2\x75" "\x20\x0c\x45\xaf\xd9\x00\xc8\xc2\xde\x32\x9e\xc2\x48\x4b\x0e\x3e\xcd" "\x7b\x09\x60\xe5\xe3\x42\x58\x81\xd1\xff\x7f\x8b\xd8\xb2\x0f\x5c\xc9" "\x8f\xfc\x3a\xcb\x77\xf5\xe8\x87\x75\xa4\xbd\x3a\xb9\xf9\xeb\x02\x7e" "\x27\xd3\xaf\x55\xeb\xdf\x4e\xeb\xab\x48\xea\x91\x11\x28\xd6\x68\xd0" "\x0f\xc3\xf5\xb5\x48\x0a\xa0\xd9\xa4\xaf\x56\x3b\xa5\x77\x38\x44\x48" "\xe5\x42\x51\x57\x13\x3d\x59\xe1\xce\xf3\xc7\x22\xf3\x37\x00\xbd\x37" "\x28\x25\x04\x6b\x1f\xa5\x82\x4e\x40\x51\x54\xa3\xaf\x14\x40\xbc\x2b" "\x75\xac\xfb\xd0\x7c\xf9\x2e\x8c\x16\x25\x87\xe7\x4b\x5a\xb6\x6b\x1c" "\x6a\xea\xb3\xad\x5f\xa3\xee\x91\xda\x49\x00\xef\x30\xad\x04\xba\xea" "\x32\x6d\xf9\x12\x51\x7d\xd9\x6e\x16\x96\xb4\xa9\x1f\xaa\x66\x67\x59" "\x78\xa3\x75\xe8\x1f\x25\x46\x4a\x10\x73\xdc\x67\x37\xaf\x08\xd7\xe2" "\x59\x56\xbb\x31\xd4\x38\x54\x8a\x7d\xa3\x86\x62\xd4\x9d\xb8\x12\xa8" "\xcf\x1d\x6c\xc6\x5f\x5c\x63\x87\x9f\xd9\xee\x7f\xd2\xa6\x6c\xa3\xfc" "\x1a\x76\x8c\xb2\x39\xaa\xb8\x8c\x87\x20\x64\x70\xb4\xc6\x05\x92\xaf" "\xeb\x6d\x69\xed\x97\xa8\xf9\x90\x15\x58\x62\xba\x4e\x22\xb6\x48\x04" "\x14\x2c\x13\x1a\x23\x79\x29\x37\xaa\x8a\x86\x96\xe1\x65\xc2\x4d\x76" "\x92\xa0\x4b\xb4\x47\x1b\x0f\x0d\x25\x07\xfe\x7c\x86\x18\x42\x14\x28" "\xfc\x7a\x0a\xcc\x98\x4c\xa5\xcc\x6b\xac\xb7\x72\xe8\xa7\x17\xbb\xaa" "\x64\x6f\x96\x43\x27\x59\x10\xa6\x03\x7a\xfa\xf5\xa8\x06\x78\xd1\x8e" "\xdd\xa1\x38\xa4\xe1\x3d\x06\xd0\x4a\x5d\x06\x43\x1e\xab\x48\x73\x82" "\x25\xcf\x15\x67\xe9\x60\xe7\x65\x72\x8d\xc1\x2e\x91\xb9\x1c\x6f\x2b" "\x33\xdf\xb6\xe0\x33\xaa\x68\xc1\xc2\x33\x4d\x24\x33\x5a\xbc\x4a\x7a" "\x1d\xf5\x63\x6d\xec\x29\x09\x1d\xa5\x4d\x5f\x5a\x1f\xff\x41\xe4\xa3" "\x5a\x0c\x2f\x04\xf9\x68\xf7\xd7\x8e\x2f\x51\xc7\x35\x77\xe2\x19\x2b" "\xb2\x0f\x28\x9a\xab\xa5\xa1\x75\xc2\xed\x53\x38\x55\xbd\x9e\xd9\xa8" "\x42\xad\x48\x21\x36\xdd\x5e\x0c\xf4\x5e\xb5\xe2\xd3\x1f\xf6\x2a\x3b" "\xe1\xcf\x8a\x94\xa5\x83\x16\xe7\x4f\x4a\xb9\xfc\x54\xf3\xa0\xbb\x83" "\xbe\xef\x0f\x35\x59\x93\xbd\xea\x2c\x83\xe6\x1c\xdc\x79\x6b\xf2\x56" "\x4a\xe5\x1f\xae\x61\x67\x99\xe8\x71\x19\x98\xcd\x88\xd3\x5c\xd9\x82" "\x44\x52\xfd\xd6\x52\x26\x17\x4b\x46\x79\x2c\xb8\x7f\x4d\xd2\x82\xe4" "\xe6\xf6\x7e\xb6\x6d\xa4\x13\xad\x87\x7e\xd6\xce\x77\x5f\x7e\x19\xbc" "\x93\xf4\x8b\xb9\xe5\xec\x04\x00\x9d\xe3\xc0\x42\xae\xac\xf7\xf4\xb2" "\x5a\xd6\xb3\x0e\x01\x73\x03\xf6\x4f\xe0\x7a\xc7\x9e\x87\x44\xaa\xb6" "\x92\x6d\x11\x7f\x13\x51\x3d\x04\x69\xce\xf3\x35\xfe\x1d\x0d\x78\x7c" "\x2d\x0b\x2c\x03\x1a\x95\x21\x78\x6a\xc1\x0e\x9f\x8b\x76\x82\x71\x68" "\x03\x37\xf2\xc3\x26\x2a\xbd\xcc\xb5\xd3\x10\x7c\x63\x2b\xf1\xf7\x4c" "\x83\xee\x91\xf4\x99\x88\x22\x2f\xb0\x80\xcc\x8f\xaa\x9b\x1a\x02\x52" "\x6d\x8b\x60\x87\xe0\xb2\x35\x41\x73\xd2\x90\x16\xb3\x30\x95\x87\xc1" "\x6f\x05\x7d\xd8\x12\xaa\x63\xc3\x16\x91\x50\xde\x81\xf3\xaf\x97\xd0" "\x82\xa8\xf8\xda\x4c\xe4\xf9\x09\xff\x64\x98\x21\xd7\xf9\x6d\x97\x61" "\x35\x52\xe8\xcc\x49\x02\xe0\x46\xec\xfa\x32\x9b\x1d\x98\x0f\xf5\xec" "\xe6\x9b\x8f\x16\x15\xfd\xff\x52\x44\xf4\x1c\xec\x0a\xf9\x24\x62\x4a" "\xe1\x64\x1e\xca\xe5\xfa\x26\xc5\xfb\x90\x06\xe5\x71\x00\xee\x71\x37" "\x7c\xed\x7c\x25\x5a\xe1\x7a\x08\x45\xe2\xee\x02\x87\xc6\x2c\x18\x52" "\xf9\x38\x77\xf9\xf8\x61\x57\xca\x96\x75\xd3\x83\xff\xf5\xcd\x6f\x2b" "\x00\x1e\xc0\x13\x6c\x07\xcf\x37\xf5\xac\xe1\x85\x31\x22\xc2\xba\xa1" "\x09\x2d\x41\x8e\x2a\x49\x0c\x4a\x5c\x8f\x56\xb8\x28\xce\x1b\xaf\xee" "\xf4\xe7\x7f\x09\x5d\x6b\x4e\xd9\x9d\x56\xf6\x68\x12\xcb\x19\xbe\x54" "\x0e\xbe\x5d\x52\xe7\xef\xf2\xd6\x9c\xbb\x84\x77\xe1\x15\x14\xf7\xe3" "\x60\x4b\xf9\x99\x9f\x78\xc2\xf1\xca\x6f\x60\xa2\x21\x6b\x87\xfa\x0f" "\x25\x26\x9c\x42\x5b\x7d\x50\x70\x9b\x20\x09\x12\xb3\xb7\x89\x9c\x95" "\xe1\x2d\x6e\x9c\x4d\xac\xc1\x9e\x32\x77\x21\x86\x0e\x04\x77\xa5\x3e" "\x67\x93\xfb\xb7\xfb\x97\x04\xa8\x48\xf3\x95\xf4\x8c\x24\xa6\xe7\x9b" "\x9e\x13\x58\xcc\x34\x97\x25\x1d\xe8\x8b\x8d\x3a\x7b\x22\xc6\xd8\xaf" "\x1a\x7f\xab\x81\x53\x0d\x9f\x0c\xc9\x8f\x62\xde\xbb\x22\x2b\x54\x78" "\x0d\x89\x79\x42\x38\x53\x27\x17\xb4\x47\xd7\x1b\x46\xa6\x0e\xd4\x81" "\xc2\x1d\xb8\x5b\x59\x0b\x31\x72\x00\x09\x69\x5e\xcf\xfd\x4e\xf0\x29" "\x96\x4e\x5d\x51\x49\x62\x22\x33\xac\x01\x3e\x96\x0a\x00\x5c\x92\x4f" "\x73\xea\x82\xc3\x18\x45\x55\x46\xc5\x3d\x74\xaa\x3f\x7e\x2f\xf2\x6a" "\xa0\x74\xc4\x0a\x55\xab\xa8\xb0\x80\x27\xfc\x19\xb5\x96\xee\xc6\xc4" "\xf8\x9b\xae\x39\xe7\x4b\x9a\xad\x88\x34\x4f\x7c\xc5\xad\x3e\xef\xa5" "\x09\x5f\x2a\xb4\x72\x22\xe9\xa3\x57\xec\xd7\x1c\x67\x00\xac\x57\x60" "\x25\x20\x14\x90\xd9\xe4\x46\x60\x3d\xfd\x4b\xda\x76\x17\xdd\x50\x09" "\x81\xb2\xd2\xab\x8c\x43\x88\x2a\x52\x08\x49\x4c\xb3\xf8\xeb\xc7\x20" "\xbc\xa8\xa7\xcf\x6c\x80\xbd\x7a\xaa\xf8\x95\x07\xbb\x34\x12\xea\x49" "\x0a\x78\x97\x3f\x12\xcc\x30\x41\x3e\x9d\xf1\x45\x89\x17\xea\x3d\x68" "\xb4\x38\xd4\x24\xc1\x31\x4b\xc8\xd0\x19\x39\xc5\xa5\xa8\x42\x43\x82" "\x81\xe6\x2d\x0c\x80\x0d\xee\x70\x4b\x2a\x6c\xd3\xe1\xe4\xb8\x85\xa6" "\xb2\x6b\x89\x4a\x98\x76\x5f\xa3\x30\x8c\x9e\x4b\x87\xf9\x36\x25\xfa" "\xec\xdb\x17\xc2\x9a\x27\xcd\x24\x3b\xf6\x03\x0a\x67\x87\x4e\xc9\xf2" "\x44\x3c\xf8\x15\x42\x61\xac\x2a\x83\x4c\x01\xcb\xe1\xf3\x14\xee\x7a" "\xa3\xca\x55\x2e\x16\x48\xcf\x8b\x42\xa6\x3f\x24\x9e\x35\x38\x02\x6e" "\x09\xe4\x4d\x69\xdc\x25\x9a\xdb\x0d\x1a\x0c\xbc\xcb\x5a\x5d\xd5\xd0" "\xdc\xcc\x90\xd0\x23\xda\x79\xd5\x63\x41\x88\xff\x06\x0f\x7e\x35\xa5" "\xf9\xd7\xad\x99\x54\x68\x24\xd6\x39\x75\xd4\x45\x2d\xe8\x76\x09\x3f" "\x4e\x99\x7d\xc4\x6e\xed\xcd\x80\xa9\xee\xbf\x5e\x4f\x07\x7f\xbb\x10" "\xc7\xd9\xe1\x9a\x34\x19\xe7\xb8\x45\x97\x2a\x3b\x62\x61\x3c\x54\x04" "\xa2\x09\xb1\x6f\xa8\x8e\x0f\xf4\x9d\x7b\x4f\x21\xfe\xcc\x1f\x77\x3c" "\x5b\x4b\xe6\x10\x21\xe0\xca\xb8\x60\x2c\x6e\x82\x57\x64\x93\x03\xaa" "\xea\xfc\xbb\x17\x8e\x7a\x46\x0f\xf0\x7f\x21\x9c\x46\xeb\x6f\xe5\xbf" "\x81\x13\x72\x3e\x45\x40\x03\xbd\x70\x77\x67\xc1\x07\xda\xf4\x25\x57" "\x51\xda\xaf\x8d\xec\xf3\x52\x62\x64\x00\x58\x92\x4e\xb6\x58\x78\x68" "\xb2\xc0\x82\x30\xb3\x17\xe9\x73\x96\xeb\xc9\x28\xba\x8d\x27\x4c\xa0" "\xee\xd0\xbf\xcb\x63\x76\x76\x00\x3c\x64\xe8\xc1\xe1\xa0\x42\x0b\x6c" "\x96\xa4\x42\x26\x06\x1c\xed\x41\xb8\x44\x83\x82\xab\xd2\xf3\xd0\xc4" "\x72\xaf\xcd\xe2\x31\xfb\xc9\xee\x90\xc2\xf1\x13\x2f\x8e\x23\x91\x24" "\x6f\x95\xad\x93\x35\x4c\x74\x60\xe2\x0d\xe9\x96\xad\x0f\x61\xb1\x3b" "\x27\x64\x68\x87\xa6\x37\xce\xde\x90\xb9\x4b\x7d\x8c\x31\x30\xf0\xfe" "\x06\x0e\x8d\x95\x5c\x71\x1a\x27\x00\xb3\x02\xa7\x5b\xde\xb3\x2a\x0a" "\x68\x02\xea\x79\x5c\xb1\x14\xf5\xf8\x2a\x1a\x38\x1a\x86\xbb\xff\x88" "\xb2\x99\xe4\x77\x28\xb7\x46\xdf\xf9\x64\xc9\x4c\x52\xb6\x61\xb9\x42" "\x93\x76\xb1\x32\x0b\x46\x08\x14\x26\xb7\xc3\x40\x20\x6d\xc0\xda\x15" "\x1b\xf8\x4b\xe2\xa4\x9e\x78\xb6\xb5\x93\x87\x53\xd2\xb1\xbe\x8d\x9e" "\x67\xc4\x3c\x5d\x70\xe7\x25\x19\xf5\xf9\x0d\x05\x00\xe8\x4e\xe3\x8f" "\x82\xb1\x91\xac\x4d\x96\x8b\x0a\x37\x90\x1f\xd9\x23\xcb\x28\x9d\x58" "\x56\x93\xac\x3c\x3f\x8a\x94\xfc\xa6\xdf\x45\xe6\x94\xe1\x99\xa9\xcd" "\x0b\x1b\xc1\xfa\x73\x94\xbc\xc9\x6a\xae\x67\x0d\xca\x66\x05\xa9\x98" "\x79\x3b\x7e\x06\x7a\xc4\x10\xba\x63\x10\x57\xb8\xb7\x6f\xcb\xe9\x52" "\x4d\xf8\x20\xc0\x2e\xfe\xf1\x60\x8b\x74\x3c\xd2\xaa\x6d\x60\xd3\xd8" "\xe4\x76\xfa\x12\xd3\xac\xc3\x29\xf8\x27\x2b\x08\x7d\x89\x47\x11\x77" "\xed\x53\x1f\xec\x1f\x9c\x24\xa9\x75\xca\x2f\xcd\x8c\x24\x6a\x33\xe2" "\x91\xa3\xf0\x0b\x7f\x23\x40\x52\x06\x7a\x00\x59\xc8\x67\x62\x47\x52" "\x56\xbb\x5e\x7d\xac\x6f\x12\x1a\x09\x25\x50\x6b\x18\x93\x3c\x6e\x31" "\x49\x15\xd4\xb3\xb2\x13\x0a\xaf\xc2\x48\x3e\xf2\x2f\xf8\xbb\x7b\x88" "\x75\x65\xb1\xbd\x22\xfa\xbc\xa2\x20\x37\xd8\xfc\x94\x37\xf6\x75\xc5" "\x31\x35\x26\x26\x6f\x60\xbb\x7c\x7c\x47\xf3\x0c\x7d\x56\x7e\xd1\x42" "\xea\x5e\xc3\x67\xc4\x29\x83\x28\xd2\x0e\x53\x44\xf0\x1c\x0c\x90\xcf" "\x8a\x63\x02\xf4\xd8\x4b\x6b\xa7\x49\x5f\xba\x31\x4a\x05\xba\x29\xb6" "\x3b\xb6\xd4\x58\xfd\xb0\x5a\x44\x11\x13\x69\x58\x30\x9f\x41\x8f\xb1" "\x78\xe1\x9a\xa0\x9f\xf9\xe6\x2b\x29\x73\x2f\xb2\x98\x6c\x96\xe7\x38" "\xf7\xa6\x88\xcb\x21\x22\xdb\xb8\xf2\xad\x9a\x5f\x28\xbc\x49\xec\x0c" "\x46\x24\x13\x55\x2a\xfe\xe8\xe4\x03\x25\x9b\x55\xad\x6d\xc3\x34\xdd" "\xe7\xf2\xd3\x06\x92\x9d\xd0\x1f\x2a\xa6\x03\x6c\xaf\xd4\x18\x74\x52" "\x26\x89\x30\x1b\x81\xc9\xe5\x0e\x86\x82\x88\x94\x14\x03\x56\xdb\x0a" "\x33\x17\xb0\x81\xed\x9d\x81\x48\xc4\x1e\x77\xe6\xbd\xa6\x28\x77\x62" "\x53\x2b\x86\xeb\x91\xf5\x48\x09\x15\x68\x0d\xeb\x8a\x91\xfb\x86\x56" "\xb7\xf0\x10\x90\x64\x86\x5d\x2b\x84\x6a\xf0\x86\x1f\x67\xd3\xf7\x20" "\xd6\xe3\x06\x54\x0c\xd7\xb6\x8f\x09\x5e\xf3\x69\x0b\x88\xea\x93\xfb" "\x6a\x40\x2f\xf5\x69\x75\x97\xcd\xa8\x31\x71\xf1\x59\xe8\x53\x07\xd1" "\xa8\xc0\x16\x11\x18\x9b\xd4\xeb\x4f\x04\x53\xab\x88\xd4\x3a\xe1\x81" "\xa5\x62\xa7\x69\x02\xa6\x7c\x68\x75\x14\x07\x9d\x6f\x43\x04\xd9\xa7" "\xc0\xfa\x24\xb6\xe8\x60\x74\xea\x0a\x9f\xd8\x18\x7c\x12\x03\x12\x07" "\x8f\x5e\xbf\xa6\x74\xad\xc0\x30\x37\x34\xbf\x8f\x6b\x55\x85\x94\x37" "\x06\x59\x41\x92\xad\x64\xc9\xf7\xd9\x79\x4f\xb8\x37\x58\x92\x4f\x86" "\x28\x55\xdd\xd5\x0b\xff\x58\xb5\x22\xc4\x3d\x73\xc0\x32\x89\xba\xec" "\x62\x8c\xd6\x93\xca\xb9\x31\x01\xb1\xe4\x73\xb7\x65\x32\x51\x0e\x10" "\xf0\x3e\x86\x81\x2f\xea\x6f\x2d\x6f\x54\x67\xdc\xf2\x9e\x6d\x7c\xf8" "\x52\x4f\x38\x3a\x0d\xed\x3f\x09\x51\xc3\xff\xb1\x71\xa6\xb8\xa6\xd9" "\x7b\x5f\xa8\x89\x9a\x19\xf1\xa3\xd0\xe9\x34\xa1\xd4\x74\x10\x76\xe4" "\x39\x4b\xa2\x25\x15\x8f\x69\x7b\xf7\xd5\x65\x17\x17\xc6\x95\x02\x29" "\xa0\xbe\x22\xe8\x12\x0d\x76\xa4\x14\xed\xbc\xd0\x3d\x50\x52\x64\xb7" "\xed\xe8\x27\x2c\xcb\xd6\xdb\xdc\xeb\xaf\x11\xda\xf6\xa6\x52\xf6\xf9" "\xeb\x74\xba\x7a\x3e\xcc\x94\x28\x92\x89\x13\x88\x00\x5a\xe5\xd9\x71" "\xe4\xe7\x9d\x69\x65\x64\x90\x6d\xff\xd4\x48\x45\xb7\x04\xa9\xab\xc2" "\xfa\x5b\xa1\xbb\x69\xa5\x48\x42\x3a\x08\x04\x4a\xd6\xd0\xe3\x65\xdb" "\x7e\x6b\xea\x0f\x38\x44\xa4\x52\x75\x97\x16\xcb\x98\xdc\xf3\x26\x00" "\x1e\xc9\x0c\x1c\x34\x31\x74\x09\x8c\xdf\x47\xea\x2e\x13\x34\x10\x58" "\xca\x01\x4d\x2a\x30\xe9\xba\x3c\x52\x6d\xe7\x2a\x6e\x38\x71\x81\xbf" "\x76\xa2\x78\xc9\xcb\xc5\x18\xd8\xc3\x74\xa3\xf1\xd9\x80\x2a\x39\x46" "\x4a\x10\x09\x03\xdb\xec\x16\xf8\xf0\x95\xf5\xd8\x2d\x9d\x09\x50\x72" "\x81\xe4\xf7\xfe\x0c\xe4\xfb\xec\xed\x19\x39\x02\xa5\xf6\x58\xaf\x2a" "\x4c\x1d\x09\x52\xda\xbd\xc6\xae\x58\x30\xb6\xb5\xa2\xc3\xf5\xb8\xd3" "\x3a\x73\x66\x59\x90\x82\x2e\x5f\x4a\x7c\xe5\x36\x67\x55\xa1\x61\x55" "\x43\xbd\xf7\x82\x99\xc7\x1e\x89\x0e\x0b\xed\xb6\xec\x27\x7b\x10\xa3" "\x89\xd6\xa3\xba\x9c\x03\x72\x21\x42\x12\x79\xe5\x1a\xb5\x0f\xb1\x15" "\xde\x20\x76\xcc\x99\x44\x42\x02\xe8\x8e\xbd\x9d\x0f\xbe\x4e\x60\x23" "\x4b\x7b\x76\x14\x95\xac\x6c\x9e\x61\x5d\xda\xc8\x17\x61\x64\xa8\x8f" "\xb6\xd6\xcc\x2b\x52\x67\x2c\x89\x49\xaf\xe3\xef\xc1\xe8\x7a\x59\x88" "\x96\xbc\x93\xe4\x21\x42\x38\x44\xfc\xaa\xfe\x65\xaf\x89\x8a\x01\x5b" "\x3b\xca\xf6\x23\xeb\xee\xf9\xa5\x71\x55\xaf\x52\x78\xce\xb5\x2b\x99" "\x5f\x7c\xa4\x66\xd9\xe1\x8b\x05\xe8\x63\x80\x67\x9e\x02\x57\xcf\xf6" "\xd0\xc6\x75\x00\x78\x46\x2f\x2e\xe4\x70\x1d\x6d\x82\x89\xed\x84\x8b" "\x87\x7c\xf5\x91\x86\x25\xb7\x93\x70\x60\xd6\x67\xc1\x11\x19\x88\x1c" "\x30\x80\x90\x56\x89\x23\x52\xc6\xc5\x3c\x01\xe3\x95\xaf\x68\x66\xea" "\x35\x0e\x6f\x21\xfa\x3d\xb7\x72\xc1\x17\x7c\x75\x99\x99\x97\x3b\x51" "\xe1\x1f\xfc\x59\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint64_t*)0x200000000c80 = 0; *(uint64_t*)0x200000000c88 = 0; *(uint64_t*)0x200000000c90 = 0; *(uint64_t*)0x200000000c98 = 0; *(uint64_t*)0x200000000ca0 = 0; *(uint64_t*)0x200000000ca8 = 0; *(uint64_t*)0x200000000cb0 = 0; *(uint64_t*)0x200000000cb8 = 0; *(uint64_t*)0x200000000cc0 = 0; *(uint64_t*)0x200000000cc8 = 0; *(uint64_t*)0x200000000cd0 = 0x200000000580; *(uint32_t*)0x200000000580 = 0x78; *(uint32_t*)0x200000000584 = 0; *(uint64_t*)0x200000000588 = 6; *(uint64_t*)0x200000000590 = 0xfeffffffffffffff; *(uint32_t*)0x200000000598 = 0; *(uint32_t*)0x20000000059c = 0; *(uint64_t*)0x2000000005a0 = 0; *(uint64_t*)0x2000000005a8 = 0; *(uint64_t*)0x2000000005b0 = 0; *(uint64_t*)0x2000000005b8 = 0; *(uint64_t*)0x2000000005c0 = 0; *(uint64_t*)0x2000000005c8 = 0; *(uint32_t*)0x2000000005d0 = 1; *(uint32_t*)0x2000000005d4 = 0x3966; *(uint32_t*)0x2000000005d8 = 1; *(uint32_t*)0x2000000005dc = 0x8000; *(uint32_t*)0x2000000005e0 = 0xfffffffc; *(uint32_t*)0x2000000005e4 = r[2]; *(uint32_t*)0x2000000005e8 = r[3]; *(uint32_t*)0x2000000005ec = 3; *(uint32_t*)0x2000000005f0 = 4; *(uint32_t*)0x2000000005f4 = 0; *(uint64_t*)0x200000000cd8 = 0; *(uint64_t*)0x200000000ce0 = 0; *(uint64_t*)0x200000000ce8 = 0; *(uint64_t*)0x200000000cf0 = 0; *(uint64_t*)0x200000000cf8 = 0; *(uint64_t*)0x200000000d00 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000004200, /*len=*/0x2000, /*res=*/0x200000000c80); break; case 7: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x80101 (4 bytes) // mode: open_mode = 0x101 (2 bytes) // ] // returns fd memcpy((void*)0x200000000280, "./file0\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000280ul, /*flags=O_NOCTTY|O_CLOEXEC|O_WRONLY*/ 0x80101, /*mode=S_IXOTH|S_IRUSR*/ 0x101); if (res != -1) r[4] = res; break; case 8: // write$tcp_congestion arguments: [ // fd: fd_tcp_congestion (resource) // val: nil // len: len = 0x0 (8 bytes) // ] syscall(__NR_write, /*fd=*/r[4], /*val=*/0ul, /*len=*/0ul); break; case 9: // dup2 arguments: [ // oldfd: fd (resource) // newfd: fd (resource) // ] // returns fd syscall(__NR_dup2, /*oldfd=*/r[4], /*newfd=*/r[0]); break; case 10: // write$FUSE_NOTIFY_POLL arguments: [ // fd: fd_fuse (resource) // arg: ptr[in, fuse_notify[FUSE_NOTIFY_POLL, // fuse_notify_poll_wakeup_out]] { // fuse_notify[FUSE_NOTIFY_POLL, fuse_notify_poll_wakeup_out] { // len: len = 0xfffffffffffffeab (4 bytes) // err: const = 0x1 (4 bytes) // unique: const = 0x0 (8 bytes) // payload: fuse_notify_poll_wakeup_out { // kh: int64 = 0x2 (8 bytes) // } // } // } // len: bytesize = 0xffffffe8 (8 bytes) // ] *(uint32_t*)0x200000000100 = 0xfffffeab; *(uint32_t*)0x200000000104 = 1; *(uint64_t*)0x200000000108 = 0; *(uint64_t*)0x200000000110 = 2; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000100ul, /*len=*/0xffffffe8ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }