// https://syzkaller.appspot.com/bug?id=9b3a110507f87c04d488cdb1b97d447021d2d8a9 // 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 unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } 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, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 5; 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); if (call == 2 || call == 3) break; 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000100, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 2ul, 0ul); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x200001c0, "fd", 2); *(uint8_t*)0x200001c2 = 0x3d; sprintf((char*)0x200001c3, "0x%016llx", (long long)-1); *(uint8_t*)0x200001d5 = 0x2c; memcpy((void*)0x200001d6, "rootmode", 8); *(uint8_t*)0x200001de = 0x3d; sprintf((char*)0x200001df, "%023llo", (long long)0); *(uint8_t*)0x200001f6 = 0x2c; memcpy((void*)0x200001f7, "user_id", 7); *(uint8_t*)0x200001fe = 0x3d; sprintf((char*)0x200001ff, "%020llu", (long long)0); *(uint8_t*)0x20000213 = 0x2c; memcpy((void*)0x20000214, "group_id", 8); *(uint8_t*)0x2000021c = 0x3d; sprintf((char*)0x2000021d, "%020llu", (long long)0); *(uint8_t*)0x20000231 = 0x2c; *(uint8_t*)0x20000232 = 0; syscall(__NR_mount, 0ul, 0ul, 0ul, 0ul, 0x200001c0ul); break; case 2: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000040, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "%020llu", (long long)r[0]); memcpy((void*)0x20000197, "\x2c\x72\x6f\x6f\x74\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x61\x30\xfc\x2a\xef\xed\x2e\x2a\xff\x1f" "\xaa\x63\x75\x73\x65\x72\x5f\x69\x64", 41); syscall(__NR_mount, 0x20000000ul, 0x20000140ul, 0x20000040ul, 0ul, 0x20000180ul); break; case 3: memcpy( (void*)0x20003040, "\x65\x9c\xe2\xe6\x91\x1a\xeb\xc7\x9b\x03\xd6\x5b\x77\xa8\x1d\x88\x9b" "\xcd\x69\xb9\x93\x65\xbf\xb9\x52\xcc\xf9\x0e\xad\x8f\x20\x9a\xdf\xb1" "\x60\x45\x9a\xff\x5c\x36\xda\x8d\xa4\x24\x19\x1f\x2b\x22\x6f\x72\xc8" "\x09\xc6\xb7\x1f\xb4\x22\xed\x4c\xb5\x93\xab\x5e\xe1\x95\xeb\x8f\x11" "\x81\x21\xfb\x9f\x2a\xcb\xcf\xd0\x2f\x5d\x48\xec\x40\xd7\x58\x81\x4a" "\xeb\x3d\x16\x62\x7f\xb6\x70\x00\x6e\x79\x1e\x24\x68\x13\x7d\x39\x6d" "\xe8\x75\x63\xc6\xbb\xb8\x2b\x41\x08\xbd\x12\x99\xaf\x7f\x6c\xe8\xff" "\x55\x33\x8b\xa9\x35\x77\x09\xa1\x5e\x07\x3e\xed\x21\xea\x22\xf1\x74" "\x22\x04\x5d\x11\x63\xf5\xa8\x2b\xbf\x73\xa7\x5c\x18\xd0\x6c\xbd\x9e" "\xde\x41\x5f\x68\xdc\x98\x05\x9f\x0b\xc4\x82\xd0\xbd\xef\x37\x72\x77" "\x28\x47\xc5\x00\x21\xe4\x37\x52\x3a\xc5\xf6\x69\xd7\x23\x40\x4a\x33" "\x3f\x32\xe5\xb3\xfa\x33\xc3\x79\x23\xac\x55\xc6\x14\x60\x27\x90\xfc" "\x92\xb2\x77\x24\x27\xc2\xff\xec\xd5\xa2\x7a\xef\xa9\x8a\xb9\xdd\x08" "\x21\x63\x68\x10\xd4\x20\x58\xaa\x66\xca\xe7\x15\x37\x00\x62\x63\x4d" "\xbd\x15\x9e\xac\x2f\xb9\xe0\xc8\x8a\x4c\x20\x67\x13\x60\x5e\x28\xd3" "\x5f\x62\x52\x07\x9d\x38\xf5\x2a\x3f\xf0\x17\x54\x49\x3e\x38\x97\x68" "\x36\xd4\x1d\xf3\x26\x82\x19\x64\x8d\xdd\x41\x68\xd5\x2e\xa0\xf0\x18" "\x0c\x81\x96\x31\x6d\xaa\xfd\xbf\x5b\xb7\x39\xf7\x05\xec\x8c\xc5\x46" "\xab\xc5\x0b\x5d\x27\x01\xb9\x8c\xc1\x73\xe2\x2a\x94\x83\x94\x8e\x53" "\xcb\xfd\x38\xe6\xf1\xc6\xaf\xdc\x50\xa9\xea\xdf\x08\x52\x01\x55\x7d" "\x9f\x8d\x54\x03\x8f\xfd\xdb\xb8\x79\x52\x58\x05\x2d\x38\x55\x21\xe3" "\xfd\x23\x60\xb3\x7b\xdd\x78\x0b\xb1\x2f\x40\x35\x0e\x1b\x94\xb3\x55" "\x42\x23\x4e\xff\x70\x7b\x9b\x29\x5d\xed\x8b\xa9\xa5\x7c\x42\xfd\x56" "\x5e\x69\x2c\xdb\x65\x93\x25\xc0\x92\x28\x0e\x96\x57\x13\x26\xd8\x27" "\x67\x1d\x92\x11\xac\x4e\x3f\xef\xc2\x2a\x24\x20\x4f\xb4\x30\xf7\xf0" "\xa7\x5e\x6c\x41\x63\x7c\xd1\xb2\xee\xe9\xa4\xbe\x6a\xfe\x0f\x75\x29" "\x61\xff\x3a\x3d\xc3\xce\x20\x49\xf4\x9e\x1c\xc2\x36\xd8\xf2\xb9\x0e" "\x5e\xff\x09\x17\x94\xa8\xfb\x98\x91\x3b\x4d\xa3\xc0\xc0\x2c\xc1\xc0" "\xaf\xab\x0d\x46\xb5\x79\x4a\x66\x5d\xf4\xe4\xac\xd7\x0e\x05\xca\x33" "\x52\x56\xc1\x1b\x4d\x65\xba\x0a\xa1\x11\x3a\x2d\x82\x0c\x8b\xf2\xfd" "\xb9\x31\x53\x25\xcc\x46\x28\x7a\x40\x3e\x77\x59\xd5\x1f\x57\xbd\xb6" "\xe7\x9f\xf4\xde\x5e\xa2\x32\x24\x26\xd7\xe1\x20\xb0\xda\x18\x05\x0b" "\xb5\xc5\x70\x2a\x70\x79\xc1\x58\x5e\x6a\x33\x9b\x8c\x5e\xd3\xd9\xbe" "\x3c\xcc\x12\x74\x05\x3f\x4a\x25\x58\xa8\x44\x44\xd5\x3c\xd5\x8e\x97" "\x2d\x37\xb6\x3d\x58\x66\x44\x4c\x66\xc6\xe0\x5e\xa1\xab\x40\x5c\x7f" "\x92\x11\xee\x75\xe1\x8d\x57\x8b\x04\x48\xa6\xdf\x44\xa4\x34\xe8\xe7" "\x97\x8a\x54\xf0\x06\x66\x58\x52\x61\x97\xdb\xf4\xd3\x96\xf1\xe8\x86" "\xa3\xb7\x75\x2d\xac\x8a\x8b\x07\x2b\x4c\x0e\xf1\x96\x54\xb5\x93\x0f" "\x8c\x1c\xb0\xf2\x24\x89\x9b\xc6\x4b\xcd\x5f\x54\xb3\x6b\x33\x61\xb1" "\x79\x4b\xb5\xe2\x6e\x11\xf1\x07\x56\x7e\xb8\x1f\x18\x78\x0e\xc6\x02" "\xf3\x37\xee\xc1\x6f\xf4\x3a\x7f\xc6\x1b\xab\x6e\x0c\x8d\xca\x92\x76" "\xa6\x18\x5e\xda\xba\x82\xa1\x39\xc6\x6b\x23\x12\xa6\xdf\x61\xd6\x30" "\xe1\x8d\x41\x43\xfb\xd5\x68\xcf\xc8\x61\x86\x1b\x18\x6a\x64\x9b\xef" "\x86\x67\xa0\x68\x1f\xd2\x95\x1d\x82\xb3\x2d\xc2\xc5\xc4\x1d\x3d\x24" "\xb5\x57\xd6\xcc\xb9\x5c\xd5\x63\x36\xca\xb2\x83\x8b\x18\x6d\x6d\xa7" "\xcc\x58\xf6\xcc\xdf\xd0\x36\x78\xfa\xd9\x84\xb2\x56\xca\xd1\x8c\x14" "\xe2\xf1\x83\x8d\xeb\xc2\xaf\x00\x9d\x80\x89\xab\x98\x08\x05\x0b\xb7" "\xe9\xaa\x19\x17\x8a\xb3\x69\x46\x85\x4e\x67\xdd\xb3\x63\x52\x3c\x2d" "\xcd\xb5\xb1\x46\xcc\xea\x68\x6b\xe3\x17\x48\x3c\xbd\xf0\xc7\xe4\xae" "\xde\x95\x76\x78\x3f\xed\x54\x82\x26\xbb\x0c\x92\x01\xea\xda\x82\xbe" "\x51\x0d\x00\x41\x8a\x79\xce\x57\xad\xc5\xee\xb3\xbe\x04\xfe\x48\xf9" "\xb8\x87\x3b\x2e\x66\xf8\xe2\xa1\xca\x3c\xe0\x0f\x16\x19\xc1\x27\x0f" "\x6a\xb0\xef\xe2\xce\x47\xce\x2d\x81\x02\x87\xf3\x00\x55\x2d\x23\x56" "\x31\xa0\x77\xd0\xe4\xe6\x81\x90\xf3\xb8\x12\x55\x9d\x5b\x5f\x12\xbb" "\x11\x45\xa8\x72\x66\x06\xb4\x2f\x4a\xe0\x5b\xb2\x20\xb0\xa4\x1a\x52" "\x78\x28\x28\x06\x8b\x58\xf0\xfa\x59\x57\xd3\x35\xbf\xa5\xcd\x12\x56" "\x00\xcf\xf0\x67\x14\xc7\xfa\x68\xb8\x1b\x3c\x8f\x6c\x2f\xed\x7e\x0e" "\x53\x1e\x23\x10\x09\xfa\xb7\xaf\x54\x5a\x1f\x79\x54\xca\x2d\x61\x46" "\xac\x7c\xb6\x9f\x30\x87\x7f\x0d\x4b\x0b\x5f\xdd\x79\x82\x97\x3f\x01" "\x82\xab\x28\x33\x90\x2d\x69\xed\x30\xa9\x8c\x55\x29\xe2\x57\x2f\xe9" "\x73\xf4\x47\x99\xf6\xdd\x7c\x25\x17\x67\xc1\xa2\x2b\xe9\x84\xae\xd1" "\x23\x9d\x0a\xe4\xb5\x83\x8e\xa0\x77\x09\x4e\xad\x14\x56\x04\x0f\x4f" "\xe2\x02\x3a\x78\x2b\x07\x85\xe6\xd8\x90\x3a\x97\x09\x97\x11\x1c\x9f" "\x5f\xe5\x43\xaa\x53\xd8\x56\x29\x07\xb1\x0f\x28\x8c\x5e\x70\x98\xf1" "\xa6\x18\x1c\x0f\x3a\xb1\x97\x3f\x79\xe8\xe2\x7c\x8f\x14\xb1\xe2\x32" "\x14\x99\x9f\x18\x8a\x79\x1a\xd6\x8e\xb1\xad\x0a\x4c\x33\x3d\x00\x4f" "\x04\x79\x87\x40\x7f\x02\xd2\xa3\x77\x04\x82\xa4\x9b\x5e\xf8\xdc\xa6" "\x9b\xeb\xab\x62\x05\x47\x18\x93\x7b\xe2\x42\xec\xc4\xdb\x8a\xeb\x97" "\x89\x2b\x09\x4d\x4d\x02\xe3\x5a\x8c\x55\xdc\x46\x30\xcd\x67\xa2\x28" "\x95\x7c\xc5\xd0\x79\x29\x2a\x56\xcd\xc9\x46\xa9\x83\xd4\x12\x9d\x6b" "\x21\x55\x92\x0f\x38\x46\x65\x55\xdb\x8a\x3c\xdb\x44\x31\x9f\x1a\xfb" "\xe0\xd0\xb3\x2c\x4f\x32\x38\x35\x9f\x8d\x40\xba\xcc\x4a\xf9\xbe\x18" "\xbc\x58\x22\x52\xfe\xef\xbb\xcd\xff\xaa\x04\xc3\x32\x24\xa4\x1a\x2a" "\x98\xdf\x25\x4f\x5d\x18\xec\x4d\x03\x0a\xee\x2e\x05\x70\x7a\x20\x85" "\xd0\x47\x43\x02\x6c\x90\xdb\x33\x79\x7f\x6d\x10\x56\xc5\x38\x79\xad" "\x12\x74\xb2\x7e\xb1\x49\x4d\x81\x66\x3f\x6f\x8f\x49\x61\xd0\x18\x9e" "\xde\xad\x74\x0d\xb4\xa2\x4c\x88\xb2\xe2\xf9\x38\x48\x43\x48\x5e\x68" "\x53\xc5\xd7\xd0\x50\xd9\x95\x35\x80\xd9\xe0\x7e\x8e\xa1\x98\x48\x0a" "\x25\x4a\xd1\x03\xda\xb2\x23\x9d\x51\x3c\x2c\x29\x1d\x71\x38\x7a\x3c" "\x72\xf5\x02\xc5\x5e\x80\x9a\x1c\xee\x24\xee\x33\xde\xe4\x35\x3c\x52" "\x4e\x7c\x7b\x52\xd9\xec\x34\x22\x57\xe6\x56\x89\x48\xe7\x0b\x7e\xc1" "\x02\x4a\x11\x99\xf1\x0e\x2b\x71\xa0\x5f\x3d\xc1\xec\x3d\xb6\xca\xeb" "\x12\xb3\x79\x25\xc1\x08\xad\x6b\xab\x7c\x10\x39\x8d\x46\x78\x10\x67" "\x5a\x04\x31\x30\xb0\x6c\x25\xcb\xf6\xcd\x1f\x6f\xb9\x7a\x8d\xd0\xb8" "\x82\xf2\x96\xec\x65\x95\x3f\xa1\x4a\x53\x39\x8a\x24\xc5\x43\xe0\xe1" "\x15\xe9\xfe\xeb\x8b\x85\xbc\x2c\x40\xa7\x4b\x05\xfb\x90\xd5\x53\x27" "\xe5\xf0\xad\x3f\xd4\x26\xfa\x24\x59\xd9\xd2\x35\x93\xcb\x6d\xcd\x80" "\xf3\xc3\x71\x7e\x68\x30\x41\x4f\x4e\x61\xb4\x50\x25\x7d\x39\xdb\x8c" "\x60\x8b\x86\xa3\x54\x86\xe3\xbc\x22\x2d\xcd\x5b\xf4\xd3\x9c\x75\xff" "\x10\x1a\x6f\x19\x07\x6f\x6e\x89\xa9\x63\x1d\xaa\x40\x4b\x19\xec\x86" "\x8c\x84\x77\x8d\xe2\xc7\x42\xfb\xe4\x1e\x99\xc0\x89\x7e\xed\x3e\x05" "\x06\x03\x6e\x0b\xd6\x84\x7f\x0d\x26\x33\x51\xc5\x8f\x18\x52\x38\x2d" "\x66\xd9\x16\x2d\x29\xf0\x31\xb9\xb8\xa0\x60\x08\x8b\x66\x66\x58\x68" "\x63\x0b\x75\x2b\x2b\x6f\x52\xea\xff\xae\x3a\x26\x2a\x0a\x57\x37\x79" "\x91\xa4\x58\x1d\x0e\x39\x8f\x9d\x1f\xe8\x7b\x2e\xab\xc8\x99\x6b\x0a" "\x69\xdb\xe2\x32\x6e\xea\xd5\xc4\xfe\x45\x53\xd8\xa7\xd3\x2b\xcf\x33" "\x2f\xca\xa2\x93\xb9\x9b\x8f\x60\x0b\xdc\x95\x27\xad\xe6\xf1\xef\x34" "\x45\x91\xeb\x88\xa3\x40\xbb\x3f\xc8\xa5\x6f\x8c\xa4\xee\x78\x2f\xf6" "\xf3\x97\x9a\x52\xb6\xfb\xa0\xb6\x03\xbd\x99\xb0\x99\x72\x89\x23\x63" "\x3f\xb0\x2e\x38\xe2\xbf\x95\xb2\x2a\x66\x66\x10\x15\xd1\x96\x9c\x0a" "\x69\x19\x32\x0f\xd5\x47\x11\xce\xb5\xfc\x35\x6c\x9f\xbe\x64\x5b\x6a" "\x5a\x30\xc0\x8d\x9d\x39\x8f\x08\x5f\x7e\xa7\x9b\x09\x75\x18\x15\xd3" "\x29\xb7\x93\x24\x44\x56\xcb\x95\x82\x52\xb6\x79\xd1\x7f\x77\xcf\xd2" "\xc8\x0c\x56\xed\x60\xab\x1c\x06\x2b\xd9\x4d\x4c\xd9\x50\x86\x86\x28" "\x8e\x44\xe6\x13\xf9\x31\xcc\x13\x89\x8a\xcf\xf6\xf1\x71\x98\x6c\xee" "\x28\x3a\x71\x3d\xe2\x4e\x19\xf1\x5e\xbb\x00\x88\xcb\x95\xdd\x28\x25" "\xcc\xf2\xda\x52\x17\x1f\xa2\x87\x2d\x83\x38\x94\xa1\x59\x32\x1a\x8e" "\x37\x3f\x38\x0d\x98\x16\x3f\x4b\x57\x20\xf1\x6a\x82\xe8\x3a\xa4\x37" "\x1c\x22\xa6\x16\xd7\x2e\xb3\x64\xdd\x5c\xbb\x8a\xa1\x6a\x8c\xb6\xb5" "\x81\x4f\x59\x79\x36\x1a\x9e\x57\x5a\x7a\xce\xc0\xf7\x72\x4e\x59\xa3" "\x09\x6d\xd8\xd2\x9c\x7c\x49\xe5\x62\x57\x62\x29\x41\x1f\x7b\x17\x1c" "\x54\xb7\x5d\x49\x72\xde\x79\x1f\x25\xcf\x5d\xf2\xb7\x54\x48\x39\x83" "\xd5\x7c\x53\x54\x75\xb3\xd3\xd7\xa3\x54\x3a\xfe\x7b\x72\xbd\xc2\x40" "\x0d\xdb\xc6\x6c\x61\x83\xbe\x4a\xe0\x60\xee\x79\xb2\xef\xc0\x7b\x09" "\xa8\x16\x34\xeb\x8e\xe2\x24\xbe\x27\x3b\x37\xd5\x22\x8e\x75\x4e\x81" "\xe4\xda\xcd\x1c\x5d\xd1\xf3\x73\x97\x60\xa3\xb8\x5e\x92\x4d\xe9\x76" "\xf7\x9e\x3c\x89\xf6\x2b\xd0\x5a\xb5\xc0\x7a\xf7\x6f\xe9\xcf\xfe\x4d" "\x79\x86\xa2\x61\xec\xda\xfb\x7c\x46\x16\x49\x93\xad\xbd\xee\x3e\xd7" "\xdc\xd6\x23\x3f\xa1\x54\x90\x59\xdb\xfa\x62\x1e\xd3\xd6\xb1\xa8\x80" "\x3f\xee\xd8\x4c\xbb\x7f\x1a\xd6\x81\xb8\xa9\x05\xcf\xcb\xe7\x73\xec" "\xbe\xcd\xe5\x30\x67\x33\xbc\xf1\xd8\xcd\x6b\xb0\x0c\xdb\x6f\x84\xf7" "\x74\xe4\x67\xb2\xe4\x2e\x53\x14\x81\x33\x0f\x28\x6d\xbc\x42\x1d\xfc" "\x4c\xc6\x16\x33\x2c\xe9\x54\x36\x52\x9b\x51\xb9\x88\x64\xcb\xb0\x83" "\xbf\x79\x8e\x87\x6e\x4d\x66\x64\xc9\x90\xfc\x7e\xcb\x0d\x6f\xde\xf9" "\xbe\xff\xde\xc9\x43\xa5\x89\xa8\x37\x7a\xd1\xba\x9a\xbb\xda\xa5\xbd" "\x25\xef\xd9\x03\xdc\x53\xc4\xde\xa3\x74\x67\x54\x4d\x7b\xe9\xdb\x3c" "\x6a\x4c\x69\xbc\xf0\x36\x3c\xd3\x63\x50\x96\x67\x30\x44\x8e\x86\xed" "\xa1\xd3\xc4\x84\x7d\xc3\xa3\x08\x37\x77\x08\x8b\x58\x90\x6b\x75\x63" "\x74\x07\x36\x0c\xf5\xd5\xbc\x5f\x3e\x0a\xac\xa3\x61\x86\xe7\xe8\xee" "\xb0\x5f\xc5\xc6\x1a\x9c\xaa\xe9\x55\x38\x97\x67\x0b\x57\x48\xdd\x8a" "\x42\x37\xb4\x54\xd4\x09\x10\xd0\x86\xc0\xa7\x42\x3f\xfe\x71\xa7\xbd" "\x6b\xb9\x9e\xcb\x61\xb1\xa9\x9a\x46\xc2\x2f\xd6\xe8\x29\x34\xe0\xa3" "\x12\x86\xfe\x47\x66\x8b\x53\x7e\x40\xa7\xb0\xaf\x3c\x00\xd5\x58\xa1" "\x8d\x35\xc5\x6a\x07\x5c\x67\x9f\x6a\xbe\x45\x3f\x86\x44\x57\x40\xf4" "\xd2\x7c\x8d\x27\xfd\x3a\x05\x29\xcc\x65\x1d\xc5\x5e\x83\x04\xea\x8a" "\x40\xd5\xa0\x03\xb3\x22\x90\x30\xa8\x17\x55\xb4\x6e\xe9\xfd\xf7\x48" "\x33\xcf\x9c\x9b\x2d\x9c\x9f\x5b\xaf\x3d\x29\xd5\x0b\x3d\x9b\xfc\x21" "\x31\x04\xed\xc6\x30\x8c\xc9\x5c\x89\x9a\x49\xe2\x51\x25\x4f\x67\x61" "\x52\x18\x5c\x98\x86\xe3\x63\x26\xb5\xca\x6b\x24\x81\x94\xba\xb9\x10" "\x2e\xdc\x7f\xb9\x60\xbb\x99\x40\xb5\x50\x17\x25\x0c\x0f\xf3\x82\xd7" "\x2a\x8a\x13\x68\x54\x12\x9c\x7a\x19\xd0\xe6\xc0\xe3\xd5\x2c\x17\x88" "\x0b\x3e\xe0\x38\xbe\xdd\xdb\x90\x74\x80\x9c\x8c\x21\x40\x55\x3c\xf2" "\x5b\x0d\xd3\x96\x3f\x28\xcb\xdd\x2d\x95\x6a\x25\x9f\x6f\x7c\x9c\x1f" "\x04\xe1\x1f\x1b\xa4\x6f\x2d\x26\xf0\x71\x1c\x40\xa7\x7a\x37\x81\x4c" "\x91\x28\x6c\x14\x68\xb0\x60\x5d\xca\xcb\xc0\x62\x24\xb1\xe0\x60\x1e" "\x08\x4e\xb7\x20\x40\xe8\x5d\xa1\x5b\xa3\x92\x3b\x71\x79\x2f\x1a\x7a" "\x07\x8c\x1d\x17\xab\x36\x33\x51\xf0\x01\xd8\xc4\x97\xf6\x5b\xba\x1a" "\x9b\xe4\xd8\xc3\x9b\xbf\xa3\x61\xef\x8e\xfc\xb3\xac\x65\x7d\x89\x55" "\x57\xe5\x5e\xa2\x9c\xa1\x89\xce\xf0\xfd\x6a\xf0\xbc\x17\xc7\x41\xba" "\x24\x4c\x7f\xa6\xcb\xf5\xd6\x19\x8f\x2b\x3a\x4f\xe7\x9d\x79\x43\xcf" "\xd6\xf7\x3a\xb4\x63\x34\x0f\x27\xb8\x41\xb3\x9e\xa9\x38\x50\x20\x47" "\x5b\x34\x48\x37\x64\x57\xdb\xef\xc2\xf5\x00\xcb\xab\x0d\x25\x87\xed" "\x74\x04\x2a\x51\x5b\xa8\x94\x0e\x44\x7f\x3b\x76\x4f\x91\xdf\xfd\xe9" "\xfc\x2c\x80\x33\xdd\x79\x20\x76\x19\x78\xd8\x20\xbe\x28\x49\x8f\x08" "\xb6\xe2\x71\x37\x93\xe8\x01\x36\xfc\x66\x72\xeb\x63\x6f\x6d\x07\x75" "\x90\x48\xb3\x01\x72\x09\xc1\x69\x0b\x9c\xc3\x04\xe3\xda\xf4\x24\xe9" "\x0a\xe6\x7c\xec\x36\xbf\xc3\xa8\x55\x89\x54\xde\x34\xc7\x3c\xdf\xfc" "\xb6\x5f\x52\x62\x6c\xce\x05\x49\x4c\xb6\x9e\x99\xd9\xe8\x56\x89\x69" "\xdc\xb0\x44\x26\x32\x90\xe1\x53\x41\xf8\x46\xed\xe4\x18\xfe\x03\x0b" "\x6c\x6b\x46\xe8\xac\xa0\xed\xf8\x33\x5f\x50\x15\xfe\xa7\x59\x01\xc4" "\xf2\x1b\xd0\xa3\x8e\x3a\x6a\xfb\x19\xa4\x71\x7e\x87\x14\x8b\xe3\x3d" "\x72\xcc\x2d\x5a\x94\xa7\x3d\xab\x1d\x45\x7e\xce\xa6\xbd\xe2\xeb\x0a" "\xb0\x43\x60\x81\x67\x42\x9d\x63\x96\x7f\x88\xc5\x65\x6a\xba\xdf\x38" "\xdd\x3f\xed\x10\x3b\xa4\x4a\xfb\xf1\x5b\x04\x5f\x27\xb4\x9b\x89\x7e" "\x2b\x13\x44\x9c\xac\x48\x44\xeb\x54\xd8\xe6\x58\xa0\x1c\xdd\x8e\x5b" "\x57\xcf\x35\xd5\xdf\x63\x5c\xe1\x70\xd7\x08\xc5\x92\x1f\x52\xcd\x17" "\xd9\xe7\xc8\xc1\x75\x0a\x77\x4f\x26\x29\xe9\x71\x0a\x63\xd6\x1c\x81" "\xf9\x05\xce\x8f\xfa\x93\x2e\xc3\x19\xf7\xd6\xa4\xde\x32\x0b\x6d\xed" "\x79\xc7\x82\x6a\xf9\x0b\x57\xd1\x0f\x19\xd8\xdd\x03\x84\x57\x4a\x04" "\x45\x63\xcc\xeb\xf1\x22\xb8\xa7\xbb\x71\xb9\xcc\xf3\x3a\xb5\x70\x8c" "\x43\xbb\x0c\x3d\x9d\xb0\xae\x60\xb9\x01\x50\xfd\x2b\x38\x10\x70\xbb" "\x97\x20\x78\x5b\x18\xc7\xbd\x2f\x52\x09\x94\x0c\x37\xb3\x77\x90\x52" "\x86\xaa\x41\x2b\x29\x5f\x95\xce\xe5\xf1\x86\x75\x0f\x38\xb4\x03\x0f" "\x89\x7f\xbb\xdc\xfd\xb5\xb0\x56\x6e\x9c\x1e\xff\xeb\xf1\x44\xef\x0f" "\x4c\x3f\xd7\xfa\xf0\x9d\xb4\x63\xe8\xfc\xb2\x56\x1b\xc1\x98\xb8\x64" "\xc7\x06\xab\xfb\x38\xc4\xc5\xfa\x08\x27\xe2\x27\x40\x88\xba\xc1\x55" "\xd7\x8e\x95\xea\x73\x74\xfb\x4d\xd0\x46\xbc\xf9\x8a\xc5\xf5\xc3\xa2" "\x1a\x4d\x5d\xa1\xdb\x31\x34\x5f\xeb\x73\x82\x71\x2a\xb4\x90\x79\x2b" "\x33\x7b\x21\x8d\x17\xd2\x67\x3c\xd2\x12\x1b\xa7\xc9\x47\x8a\xd6\x84" "\xa7\x0a\x65\xde\x82\x58\xe4\xf1\x76\x28\xdc\x50\xf0\x4f\x20\xaf\xf2" "\x2e\x8c\x71\x0e\x67\x6d\xab\x69\x9c\x34\x39\x04\x61\xef\xd3\xfd\xce" "\x44\xb4\x71\x91\x79\x71\x9e\xcd\x5b\xa0\xf1\x83\xcc\x1f\x3d\x69\x79" "\x4d\x0c\x39\xb8\xc3\x4d\xcf\x0e\x45\x82\xe4\x03\x0d\xef\x3c\x9a\xb8" "\x41\x9c\x66\xbe\x1e\xf6\x47\xdb\x29\x96\x80\x2c\xfb\xc3\x91\xad\x09" "\x8e\x03\x95\x73\x67\x63\xfc\x14\xe9\xd6\x5a\x93\x02\x50\x04\xfe\x15" "\xfa\x1b\x7d\x5b\x16\x2c\x72\xa0\x45\x34\xb4\x88\xa3\xea\x75\x6a\xd3" "\xc0\x53\xe3\xc4\x7e\x51\x4f\x57\x98\x0a\x22\x98\x59\x5f\x81\x47\xd4" "\x12\x72\x10\x3b\x51\x19\x93\x69\x3d\x77\x91\x82\x81\x3c\xdd\xc8\xeb" "\xfa\x1a\xb9\x86\xab\x65\xd5\xe4\x5f\xc5\xef\x6f\x72\x3c\xb9\xe8\xe0" "\x88\xaa\xf6\xd5\x54\xd5\xd6\x6e\x7f\xb8\x2b\x26\xb6\xce\x62\x7c\x83" "\xf8\x4e\x75\xd4\x61\x63\x88\x18\xd2\x55\x04\x27\xe6\x64\x74\x99\x2a" "\x6d\x88\x6f\xb7\x98\xfc\xc8\xa9\xd4\xfd\x4c\xcb\x32\x26\x04\xa7\xf8" "\x15\x9a\x37\xeb\x73\xc8\x53\x2f\x15\x0d\x25\xb9\xb0\xe9\x18\x58\x2f" "\x70\x1f\x97\xa9\x57\x79\xca\x0e\x47\x42\xfc\xeb\x4d\xdb\xf8\xb6\xab" "\xbb\x15\xcf\x63\x86\x5d\xc0\x4c\x55\xd1\x16\x26\x14\x35\x8d\x72\x83" "\x24\x94\x03\x99\x3e\xd2\x6d\xe2\x99\xcf\x29\xa1\x43\x0b\x20\xc3\x3d" "\x2c\x98\x87\x8a\xb3\xd9\xeb\x33\x7e\x28\x18\x76\x76\x2e\x1c\x2d\x91" "\x76\x82\x60\x8e\xd7\xf7\x40\x44\x8b\x3d\x8b\xfc\x34\x10\x7f\xbe\xd1" "\xbb\xeb\x6f\xcf\x37\x4c\x13\x34\x79\x00\x61\x1c\xe0\x4c\xdc\x4c\xd6" "\x5c\x8b\x98\x58\x19\x22\x55\x6e\x8f\xc4\x20\xfe\x57\x0e\x08\x2d\x5a" "\x52\xd3\xee\xea\x4c\x4d\xbc\x9d\x30\xc6\x64\xb6\xea\xd1\x85\xd9\xdd" "\x78\x56\xfd\xee\x32\x1e\xf1\x04\xc0\x97\x02\xcb\x61\x8b\xb2\x37\xdf" "\xde\x38\xa2\x09\xee\x67\xc2\x5a\xbb\x6f\x27\xa3\x91\x5f\x2e\x10\x41" "\x68\x40\x36\x29\x32\x27\xbd\x71\x9c\x48\xe4\x7e\xfb\x48\xbf\x47\xc2" "\xf7\x52\xeb\xc8\xa0\x84\x42\xd9\x68\xb7\x0f\xf4\xb5\xd5\x08\xa4\xd9" "\x03\x41\x51\xb1\x46\x0e\xa2\xc9\xa9\x34\x28\xb7\x69\x71\xda\xa0\x19" "\x34\xa6\xae\x2f\xd5\xb2\x60\xb4\x51\xe2\xc5\xbf\xbf\x07\xdd\xcf\xb2" "\xf1\x2b\xb8\xc1\xc1\x2c\x09\x00\x5c\x4b\x8d\x9e\x51\xdc\x68\x30\xd1" "\x57\xaa\x68\x1c\xdd\xf9\x3d\x63\x68\xca\x11\x35\x43\x2f\xa5\xf4\x55" "\xe5\x20\x76\x06\x45\x75\x79\xb6\x00\x8b\x31\x0c\x37\x8d\xb2\xf2\xa7" "\x48\x70\x78\xb7\x60\x38\xb3\xdc\x0d\xed\x89\x7b\xed\x1a\xe0\x89\xab" "\x47\xea\x8e\x0b\xc1\x20\xfa\xae\x6b\x54\x91\x7f\x79\xd2\xa1\x0b\x37" "\xb2\x28\xe6\x58\xd1\x70\xd2\x76\xf9\x73\xeb\xba\x90\xc4\x8b\xbd\x08" "\xc2\xab\xe1\x4b\x01\x59\x69\x6a\xf8\x1b\xb6\xb6\x30\xb0\x31\x0c\xd5" "\xa4\x23\x28\x42\xe2\x53\xf3\xdd\x7c\x03\xd7\xe6\xc4\xeb\xb2\xbb\xcf" "\x2e\x41\x7d\x0e\x80\xf6\x73\x46\xbe\xaf\x74\x12\x2d\xe4\x80\x17\x95" "\xc7\xfd\x3d\x8b\x1f\x85\x52\x1e\x8c\x04\xc3\x33\xfa\x9f\x42\x17\x52" "\x4e\x17\x24\x58\x8e\x24\xa2\xbe\x23\xfd\x00\x7c\x19\x6d\xc5\x6b\xfa" "\x2d\xad\x47\xe7\x8b\xd2\x6b\xcf\x49\xf8\x09\xe0\xe5\x2e\xc6\xed\x2e" "\x38\xaf\x1b\x60\xbf\xb3\x53\xb9\x35\x2d\xf6\xed\x0d\xff\xde\x32\xaf" "\x26\xf4\x67\xd4\x9f\xfb\x17\x44\x29\x6c\xb5\x25\xee\xd1\x53\x63\xba" "\x06\x75\xe2\x96\xe6\xfb\x96\x46\xb4\x1e\x9e\xfc\x78\xbc\x54\x9f\x1e" "\x6a\x83\xfd\x46\x3a\xf7\x4a\xba\x14\xd2\x2a\x9a\xd2\x32\x17\x18\x21" "\xcb\x85\x95\xf5\x38\x52\xaf\x8a\x3c\x39\x14\x78\x98\x6c\x95\xef\xdc" "\x36\x2d\x8e\xc8\xe2\xcc\x69\xaf\x9f\x21\xb2\xf1\xbe\xed\x26\x7a\x49" "\x2b\xbc\x8f\xf5\xbe\x70\x9c\x2f\x84\x63\x07\xb4\x04\x85\x02\x86\x54" "\x0a\xd1\x89\x4b\x0c\x64\x60\x9a\x40\x81\x86\xb3\xe9\x76\x89\x98\x21" "\xa8\x10\x93\x63\x08\x0d\xec\x2c\xd5\x70\xfb\x89\x94\x13\x09\x8d\x7f" "\xff\x06\x57\xfb\x66\xf6\x2a\x82\x5f\x12\xcc\x1b\x2a\xaf\x5b\x35\x15" "\x82\x8d\xba\x28\x8d\xfe\x45\xb6\x46\xf1\xd2\x62\x72\x45\x7f\x95\x93" "\x32\x64\x6f\x7d\x13\xf9\x79\x07\x12\x09\x76\x5a\x0a\x58\xef\x4c\xf9" "\xa1\x9b\x23\x16\xde\xaa\x98\xb6\x51\xdf\x73\xb2\x3f\xc6\x6b\x0a\xcb" "\x6f\xb3\x30\xbb\xb3\x37\xfb\xc9\x4c\xa8\x31\x55\xaa\x7c\xff\xd0\xef" "\x4a\x8e\x5b\xaf\x96\x1a\x20\xd6\xce\xa2\xbc\xd2\x37\x04\xdd\x94\xa3" "\x46\x40\xe2\xc0\xe8\xed\xef\x4b\x1c\x26\x44\xdf\x3d\x70\xc6\x1e\x07" "\x50\x8d\x1e\xab\x24\xdf\xb1\xab\xc8\x3d\x5b\x50\x3f\xe1\xed\xc8\x7e" "\xfc\xe3\x91\x97\x9b\x03\xb1\x01\x16\xaf\x46\x92\x9e\x45\xce\x42\x96" "\xd9\xf8\x79\xa3\x2d\xe8\xc7\xf8\xd1\x67\x56\x7e\xda\xb0\x5f\x5e\x8d" "\x86\x2c\xdd\xb9\xb6\x62\x9b\xdc\x19\x42\xe3\x6c\x03\x13\x69\x40\x4b" "\x48\x89\xf7\x31\x3d\x1c\xd1\xaa\xd3\xfb\x81\xd7\x70\xeb\x58\x5e\x8f" "\x61\x79\x07\xf7\x7f\xf2\xc0\x1f\x85\xa8\xc6\x8c\xf4\xff\x3e\xd7\xc1" "\x57\xcd\x86\x38\x29\xe6\x28\x06\xa0\x5f\x03\x21\xe8\xab\x34\x32\x5b" "\x06\x6b\x85\xda\x2e\xd2\x24\x20\xa2\x1d\x51\x38\xa5\x14\x2e\x4b\x59" "\x4e\xb1\x10\xef\xae\x95\xab\x3e\x09\x3d\xa1\xcc\xe1\x3f\x7c\x26\x6a" "\x79\x3d\x69\xc0\xc6\x77\x2c\x6d\xb2\x04\x06\x21\x01\x4b\x25\x61\x7a" "\x8b\xfb\x43\xba\xb3\xbf\x0b\x7d\x43\xf8\xe4\x79\xab\xe3\xbe\x36\xf5" "\xcb\xe6\x40\x7c\x6a\x9d\x74\x67\x22\xf3\x92\x21\xa1\xf4\xe6\xfa\x0d" "\x1a\x9c\x49\x8e\x6a\x6f\x2a\x11\x88\xf3\xea\xab\x65\x67\xac\xc4\xdc" "\x3b\x41\x29\x2a\x2f\x9f\xf2\x8c\x8e\xd8\x66\x3a\x18\x56\x5e\x4b\xd2" "\x49\xb4\xf9\x54\xcb\x4d\xd1\x51\x86\x00\xaf\x91\x76\x5b\x2c\x20\x77" "\xf6\x3a\x1d\x5e\xc4\xbf\xd3\xb3\x37\xce\xe1\x14\x0d\x7e\xed\xd5\x9f" "\xfd\xc3\xd3\xdd\x5b\x99\xf1\xdf\x90\x48\x54\xf1\x18\x3d\x1e\x79\xe8" "\x03\x4f\x01\x1d\x9b\x5f\x37\xac\xa1\x58\xc7\x99\xe0\xb5\x6a\x27\xd1" "\xba\x7b\xb6\x9c\xa0\x2e\x64\xe0\x66\x96\xd2\x50\xab\x88\xf7\x46\xe9" "\x5f\xf1\xfc\x27\xb1\xbf\x42\x80\x0a\xe0\x30\x12\xa4\xb3\x2e\xc9\x00" "\xfe\x9c\x43\x2c\x5e\x34\x0a\xde\xaa\xb1\x2e\x30\xfd\x64\x52\x2d\xfd" "\x8a\x78\xbe\x30\x63\x34\x17\xae\xf0\xd9\x0c\x81\x92\x69\xe2\xd4\xbd" "\xbd\xee\x14\x3a\x57\xc8\xe2\xa0\xc3\xf5\xfe\x22\x8b\x6c\xa9\x7b\x6c" "\x53\x50\x26\x99\xad\x59\x6d\xf6\x52\xb9\x36\x72\x04\x2b\xa9\x23\x83" "\xab\xfd\x3c\x4d\x29\xc3\x0e\x44\xaa\x9f\x2c\x7d\x03\x0e\xcd\x44\x08" "\x37\xe2\xed\x09\xe2\x78\x68\xea\x5a\xd9\x7f\x50\x4c\xbe\xda\x1b\x20" "\xeb\x27\x2a\xc7\x1d\xbb\x74\x10\x03\x46\x7f\x38\x84\x7c\x6c\x0a\x43" "\x59\x2c\x81\x81\xfd\xf1\x50\x5e\xdd\xac\x8b\xb4\xca\xb2\x88\x4a\x03" "\x1b\x06\xc9\x1f\xff\x66\xf9\xbf\x24\x91\x80\x6a\xaa\x6b\xbf\xa8\x2a" "\xd3\x65\xc4\x89\x3c\xfb\xbb\x1c\x3b\xea\x0d\x7b\xbc\xa5\x10\x86\xd9" "\xd0\x8e\x6a\x3f\x45\x9e\xaf\x43\x96\x05\x95\x42\xc4\xda\xca\xa9\x34" "\x71\x70\x42\x2f\x68\x3a\x19\xde\x0c\x26\x1b\xdb\xb5\xa9\xa1\x03\xb3" "\x4a\x96\x7a\x25\xbd\xce\x4c\x31\xa5\xfb\x53\x20\x60\xcb\x6e\xda\x2d" "\x1f\xff\x18\x4e\xc6\xcd\xb4\xe2\x29\xa1\x29\xb6\xe4\x6f\x10\x1a\xbd" "\xeb\xdb\x52\x85\x3f\x5c\x01\x9c\xe5\x43\x2b\x76\x97\xec\x6a\xb8\x2f" "\xd7\x4f\x3d\x18\x4d\xf6\x9f\x7f\xf0\xd0\xfe\x37\x63\x32\xd1\xda\xee" "\xdf\xb0\x48\x0b\x6a\xba\x84\x49\xc0\x97\x7a\xad\x2d\xe0\xf5\xea\xc8" "\x01\x3c\x7a\xd5\xe0\xaa\xc7\xb5\xf4\xbf\x1b\xa2\x5b\x8a\xe3\x85\x02" "\xa6\x84\xe6\xe5\xa2\xad\x47\xbd\x51\x22\x53\x8b\xa8\xb8\x4a\x62\x31" "\xce\xee\x2c\x40\xdc\x90\xc6\x70\x09\xbc\xfa\x82\xbb\x8e\x22\xdb\x61" "\xa0\x7c\xa8\x0f\x49\xaa\x9a\x7e\x2f\x03\xfe\xbc\xdf\x7d\x15\xc4\xc4" "\xfa\xf7\x01\x73\xb2\xa9\x04\x5d\xea\x98\xb0\x41\xa8\x1a\x44\x13\x44" "\x06\x13\x2d\xcb\x27\x20\xdc\x5d\xbb\x37\x78\xdb\x3e\xf0\x01\x46\x39" "\x15\x7d\x4d\x23\x9f\x4f\x29\xf6\x72\x0c\xf7\xe4\x03\x7c\xc2\x77\xf9" "\x99\xc6\x44\xd2\x5c\xa0\x32\xda\xfe\xa0\xb8\xea\xe3\xe8\xd5\x7f\x6e" "\xa1\xff\xd3\x77\x8d\x43\x1c\xbd\x68\x61\x4b\x87\x06\xb8\xe9\xca\x3a" "\x98\xdc\x0b\xae\x38\x29\x18\x5a\x26\x55\x3c\x8b\x0e\xab\x1b\x46\x14" "\xd1\xe6\xd8\x64\x22\xfb\x5c\xbb\xd3\xf3\x21\x28\xf5\x52\xf3\x30\x6e" "\x23\x74\xa7\x03\x18\xa8\x7a\xb1\x98\x52\xbf\x2f\x5b\xa2\xf5\x98\x09" "\xcd\x12\x8b\xa6\x26\x2c\x07\xcd\x38\x87\xec\xfc\x00\x98\x68\x65\xe5" "\x0a\xbc\x2c\xd8\x85\xef\xee\x77\xf7\x11\x64\xa3\x6c\xd2\x09\xc9\x7c" "\xee\xab\x03\x75\xe7\x2e\x0a\xad\xfe\xde\xa6\x9e\x35\x26\x06\xaf\x35" "\x87\xd1\x8f\xd8\x53\xbf\xab\x9c\x86\xde\x11\x62\xb1\x7c\xe2\x13\x86" "\x27\x38\xe9\x1b\x2d\xa8\x43\xa7\x6a\x5e\xe6\xec\x5d\xd6\x40\x80\x26" "\x31\x0b\x65\x4c\x7c\x75\xfe\xf2\x45\x49\x69\x3d\xeb\x9a\xb4\x71\x13" "\xf1\x11\x6e\x37\x20\x0c\xa3\x6a\x23\x38\x85\xfa\x80\x58\xd1\x4e\x39" "\x95\xaa\x5b\x52\xc1\x77\xdb\x98\xe3\x82\x30\xfb\x46\x57\x3c\x46\x28" "\xf9\x11\xa6\xf2\x4c\xbe\x2a\x96\xc6\xcc\x6d\x6e\xfe\x96\x2e\x7f\x6b" "\x0d\xe9\xb4\xf1\xc1\x26\x43\x67\xc9\x64\xb2\xe5\x2e\x8f\x16\x9b\xf3" "\x92\x82\x74\x9f\xdc\xd6\xc2\x2e\x21\x1c\x2f\x7b\x90\x01\xb8\x0f\xa1" "\xbc\xa7\x0b\xef\x72\x89\x1e\x36\xe8\xcc\xe5\xc0\x22\xc6\xd5\xdf\x62" "\xe6\x09\xe9\x2d\x50\x0d\x93\x69\x7b\x43\x7d\x6c\x73\x2d\xe3\xb0\xe8" "\xf5\x0d\xec\x0e\xf5\xb7\x62\x9c\xd6\x92\x60\x7f\xe5\x3b\x2c\x9c\x44" "\x05\x22\x44\xb5\x10\xae\xaf\x26\x6d\x5b\x3d\x25\x43\xfb\x1b\x12\x2f" "\xd4\x1d\x34\xcc\x94\x98\x12\x25\x1d\x57\xfa\xe9\x02\xc1\x67\x7e\xd4" "\x04\x88\x2e\xc7\x91\x33\xa8\xc4\x73\x49\x0d\xc6\xcd\x8e\x03\xa8\xab" "\x83\xba\x00\xc3\xdd\x1b\x31\xb2\x52\xc1\xbb\x98\x14\xdc\x14\x39\x31" "\xb7\x08\x89\x0f\x9b\x02\x09\xc0\x56\xa0\xe2\x5a\xe8\xcb\xa1\x2c\x6c" "\x04\xd3\x02\x35\xd4\xa6\xdf\x0c\x68\xf4\xb9\x3e\x82\xb0\x95\x30\xda" "\x54\xdb\x1b\x12\xbd\x57\x5e\x28\x17\x7b\x78\xa4\xd8\x39\x28\xc6\xc0" "\x83\x32\xa8\x4a\x90\xa8\xeb\x96\xdf\xaf\x01\x98\x15\x3b\xd8\xcd\xbf" "\x0a\x90\x90\x5f\x07\x1e\x43\x06\x9d\xf5\x12\x73\xda\x31\xa1\xdc\xb8" "\xf4\x1a\xf4\x1b\xea\x3b\x24\x09\x78\xd9\x6d\xf8\xfc\x83\xd2\x11\x27" "\xd3\xc0\xc7\x9a\xb1\x68\x61\x85\x20\xaa\x52\x70\x15\x83\x7c\x14\x21" "\x18\x54\xa6\x05\x13\x15\xb2\xec\x20\x14\xc6\xe3\xb4\x1c\xbb\x57\x77" "\x84\x58\xf3\x7d\x5c\xd6\x58\x7d\xbc\x43\xf7\x91\x1b\x0c\xa9\xc8\x58" "\x4c\x57\x26\x3b\xf2\x71\x45\xfd\xb4\xfe\x90\xaa\xbb\x19\xc8\x49\x91" "\x0b\xea\x66\xd3\xc6\x01\x4e\x3c\x84\xbf\x56\xc1\x72\x87\x5b\xae\xd8" "\x09\xd2\x6a\xa7\x46\x6d\x92\xa0\x8d\xd8\xd9\x99\x95\x63\x88\x4f\x3c" "\x93\x2f\x18\xb6\xc2\x07\x93\xb3\xa2\x30\xd3\x36\xbe\x0a\x40\xee\x6f" "\xd0\x07\xf7\x32\x6d\x4d\x83\xf5\x0d\xf2\xd7\x69\x8a\x02\x94\xdf\x0b" "\x18\x21\x46\x97\x29\xdd\xbb\xae\x7c\x5c\x14\x47\x5e\xa9\x9a\xb1\xe0" "\xd4\x9c\x14\x27\x19\x1a\xa7\x40\x5d\x6e\x08\xd0\x6a\xfb\xb5\x79\x5c" "\x2d\x13\xc4\x5d\x02\xbd\x2b\xff\x12\x4a\xd0\x50\x7e\x5d\x72\xa4\x44" "\x15\x7e\x85\x9b\x87\x94\xd6\x3b\xae\x5d\x8d\xc2\x0b\x94\x3b\x3c\x56" "\x07\x5b\xa9\x54\x99\xaa\x54\x5f\xc0\x7f\xe0\x5e\xae\x95\x65\x01\x4b" "\xaf\x71\xaa\x9f\x5c\xf4\x4c\x57\x68\xe9\x79\x7e\x87\xc0\x3e\x4d\xb5" "\xee\x14\x3e\x8f\x3d\xae\xbc\x79\x2d\xa4\xa4\x47\xfb\xab\xc1\x7a\x2f" "\x78\x9f\xb7\x7b\xfa\xfb\x9e\xd5\x85\x5a\xec\xf3\x1f\x35\x6c\xee\x3f" "\xcf\x16\x68\x32\xf9\x97\x55\xbe\x5c\x61\x2a\x78\xa1\x20\xe8\xc9\x91" "\x96\x17\x47\xec\x4e\x7c\x53\x9d\x86\xd5\x86\xda\xd5\xc5\x8b\xf2\x77" "\x84\x28\xc3\x16\xb5\xe1\xd0\xd9\xd6\x8d\x92\x31\x27\xc6\x68\xfc\x89" "\xd0\x27\xef\x09\xbd\x22\x6c\x8c\x54\xf0\x45\xb9\xa3\xcd\xc0\xba\x96" "\x4f\x35\x81\x2d\x9f\x34\x70\x4d\xd2\xb3\x3e\xc1\xce\x5c\x3b\x4c\x70" "\xfe\x4c\x39\x34\x0b\xf8\x53\xc0\x2f\xa4\x73\xcd\x2c\x18\xd7\x28\x2b" "\x12\x55\x5d\x3a\xd3\xf2\x82\x23\xb4\x5b\x3f\x74\xf2\x66\x15\x2f\x61" "\xf8\xee\x3d\xe0\xfe\x52\x0d\xa5\xbc\xe3\xd2\x39\x4f\x94\xeb\xc2\x30" "\x19\xac\x8b\xc1\xda\xa6\x49\x2e\xdc\x5f\x0d\xfc\x3d\x6b\x95\xa9\xa7" "\x97\x36\x39\xeb\xba\x79\x9a\x8c\x7b\x8a\x0b\x4c\xd5\x8c\x3f\x6a\x89" "\x0b\xdd\x39\x31\xb8\x3f\xe2\x6f\xfa\x2d\x5d\x00\x25\x9b\x91\x3e\x39" "\xdd\x27\xa3\xa2\xf3\x81\x7d\xd9\xfc\x15\xdb\x62\xc7\x94\xc3\x03\xcd" "\x8a\xaf\x20\x1c\x9d\xa7\x70\x21\xed\xc3\x28\x8c\xe2\x69\x96\x29\xdf" "\x67\xe0\x24\xfd\x61\x17\x8d\x60\x34\x7c\x22\xaa\x35\x8f\x4a\x4e\xe9" "\xb7\xf8\xd5\x95\x2f\x20\x09\xa5\x44\xce\xd0\x11\x4b\xcf\xae\xf6\x4e" "\xd6\x57\xab\x1f\x70\xb3\x3a\x20\x86\x1b\x8b\xc7\x47\xfb\x51\x7e\xab" "\x96\x2e\x3f\x7f\xad\x71\x3b\x2e\xf8\x85\x27\xea\xfb\xd3\xc8\x33\x5a" "\x39\x81\xad\x26\x9c\x50\x15\x68\xd9\x5f\xa2\x45\xe4\x66\x56\xeb\xfa" "\x95\xc8\x2e\x61\x0b\xc7\x54\xaa\x0a\x77\x6a\x4b\x25\x41\xbb\x83\xe6" "\xc5\xf5\x30\x68\xe3\x2a\x1a\x69\x10\x26\x01\x6c\x8c\x63\x94\x5b\x6b" "\xfe\xb1\xbb\xa2\xd7\xf2\xa4\x85\xd1\x4f\xc7\x60\xda\x23\x03\x40\x60" "\x85\xb1\x38\x5a\x48\xd2\xdc\x07\xdd\xeb\xfb\xeb\x52\x85\x0b\x54\x84" "\x02\x6a\xd3\x1a\x7e\xca\x83\x9e\x30\x5d\x24\x98\xc0\x4a\x8c\x50\x22" "\xd2\x3e\xeb\xf1\xde\x8f\xfc\xc9\xbf\x84\x2c\x63\x44\x3a\xfb\xbe\x88" "\x31\x68\xe8\x0f\x81\x31\x68\xbb\xb5\x38\x0e\xe5\x05\x0f\xd6\x3d\xef" "\x15\x2a\xd7\xc6\xc4\x93\x13\x2f\xf0\x03\xd9\x47\xe0\x05\xa5\xf6\x2d" "\x91\x9e\x90\xdc\x61\x8b\x75\xa0\x79\x3b\x1b\xcc\xd1\x2c\x93\xc4\xab" "\x86\x61\x1d\xb1\x95\xca\xea\x08\xdb\x91\xf4\xe7\x7a\xe9\xda\x5a\x2c" "\xaa\x45\x5e\x9c\x79\xb1\xef\xce\xca\x88\x75\x08\x61\x7e\x7d\xbd\x42" "\xf9\x0f\x21\x82\x6b\x6a\xe8\xf7\x5c\xe9\xf5\x7f\xd8\x49\x53\xa7\x51" "\xa6\xe3\xf7\xe7\xdf\xff\x70\x87\x02\xb6\x73\x14\x27\xca\x54\x4a\x7d" "\xe2\xad\x92\x5a\x7c\xfd\x76\x46\xb5\xc2\x58\xe1\xce\xa3\xa4\xa5\x18" "\x55\xeb\x8d\xff\xff\x8e\xcf\xea\xc3\x5d\x86\x73\x99\x6c\x7e\x68\x8f" "\x4f\x86\xd9\x15\x0f\x15\xcf\x9c\x28\x18\xac\x57\x33\xf9\xa4\xe5\x29" "\xa9\x52\x41\x5b\x05\xb0\x0f\x50\x56\xcb\xf2\x9a\xc3\xc5\xf8\x36\x7e" "\xe2\x63\xcb\xb6\xc3\xd0\x1e\x3a\x9f\x7c\x14\x40\x3b\xa3\xcc\xc6\x54" "\x03\x54\x70\x17\x03\x02\x6a\x45\xa5\xba\x19\x59\xf6\xf1\x6a\xef\x8f" "\xdc\xd9\x4f\xbf\x2f\xcf\xad\xb1\xcc\x69\xdd\x72\x6f\x7a\x49\x21\x09" "\x65\xd3\x44\xaa\xa8\x10\xfc\xaa\x65\x98\x5a\xae\x69\xe7\x3a\x96\x0e" "\x45\x3e\xcb\x40\xe2\x24\x49\xa0\x96\x80\x3e\xc2\xb3\x7a\xbc\x29\x5e" "\xbc\xa2\xb6\xba\xc3\xc0\xf2\x37\x18\xf1\x85\x7f\xe4\x51\x49\x0a\x48" "\xe8\x68\xea\x06\x6b\x38\x61\x3f\x48\xc7\x2b\x05\x5a\x36\x63\xdf\xc9" "\x1f\x14\xc2\x44\x38\xa1\xff\x68\x07\x8e\x6b\x7d\xc5\xbf\x6a\x73\xc2" "\xfe\x94\x07\xd9\x94\x68\x04\x3a\x9d\xc6\x53\x24\x00\x26\x74\x9c\x35" "\xd2\xf3\x74\x3b\xfc\x86\xae\x2c\x3a\x60\x31\x1d\xa0\x98\xb7\x69\x78" "\xbb\x93\x9b\x9c\x0c\x77\xb7\xbe\x84\x9b\x54\x7f\x8a\xb5\x83\x85\x5f" "\x90\x88\x52\xf2\x15\x3c\x00\x95\x22\x94\xf5\xac\xf2\x4e\x6e\xf7\x3d" "\xff\x60\x86\x8f\x70\x58\x5f\x3e\xda\x78\xc5\x25\x6b\x7e\xc3\xc1\x42" "\xc0\xc5\x0c\x7b\xc3\x27\x1a\xb1\x53\x59\x87\x66\xdb\x7a\x91\x7b\xca" "\xa7\xdc\xe7\x0d\x91\x32\xc0\x05\x2c\x72\x66\x95\x0f\x2b\xce\x39\x14" "\x49\xb2\xf8\x85\x2a\xd5\xc2\x5b\x1f\x05\xc1\x40\x71\x1b\x71\x17\xa7" "\x32\x1c\x84\x51\xd2\x4e\x97\x66\x35\xf0\xfb\xc0\xd7\x6a\xe3\x4c\x74" "\xc6\x3f\x82\x68\x9d\x2b\xec\x65\x19\x6e\xed\x73\x93\x78\x9e\x90\x8b" "\xe0\xf1\x41\x28\x1e\xd2\x14\x92\x17\x22\x54\xd8\x08\x38\xa8\xaa\x2d" "\xd1\xba\x7e\x4e\x22\x12\x5c\x22\xeb\x20\x1c\x40\x73\x5f\x18\xa2\x79" "\x39\x5f\xa8\xdb\x67\xe3\x90\xd6\x04\x2b\xdc\xaa\xc1\x65\x35\x5e\x00" "\x50\x60\x27\x87\x0a\x8b\x20\xcd\x5a\x1b\x31\xe5\x05\x96\x89\xa3\x53" "\x1b\xc4\x6f\xc8\xf1\x66\x23\xb3\xc4\x53\x1c\xaf\x08\xc5\x0a\x7d\x5d" "\x94\xa2\xb3\xf2\xa2\x5d\x3a\xbf\xb2\x94\xdf\x8d\x4f\x04\xab\x5c\x52" "\x51\xfb\x5d\xc7\x5e\xc1\xcc\x49\x75\x98\x85\xdc\x56\x68\x0e\x84\x1e" "\x66\x3b\xaf\x2a\x73\x0b\x6c\xb3\x3c\x11\x9d\x21\x32\xcb\x6f\x7d\x2e" "\x0b\xcf\xc3\x8b\x9f\xe5\xbe\x97\xc3\x29\x91\x81\x10\x29\x45\x60\xe7" "\xeb\x06\x29\xcb\x2d\x31\x09\xd1\xc2\xb6\x58\xa0\x32\x54\x6c\x1f\x8c" "\x07\xe9\x69\x62\x20\x64\x3f\xd9\x27\xb5\xd3\xf2\xd0\xb1\xdc\x60\x3b" "\xf4\xaf\x94\xd7\x03\x39\x30\x7b\x30\xd1\x17\xc9\x5f\xea\x9b\x13\xe6" "\x34\x8f\xd4\x43\xf7\x87\xb2\x98\x4e\x80\x1a\xb7\x3c\xf2\x23\xb6\x19" "\x14\xba\x39\xfb\x3c\x9d\xea\xe9\x25\x73\x4f\x3f\x23\x1e\xad\xcb\x94" "\xa4\xa8\x62\x39\x14\x2a\x30\x65\x09\xda\x95\x14\x15\xc2\xf7\xe2\x4b" "\x02\x96\x2a\x46\xc5\x23\x9e\x86\xd2\x97\xd6\x7d\xc2\x19\x51\xb3\xa0" "\xa1\xaf\x8e\x6a\x40\xcb\x2a\x48\x8b\xbb\x07\x7e\x82\x5b\x79\x04\xb0" "\xde\xe0\x0a\xd5\x1a\x14\xac\x20\xe7\xe4\x57\x9b\x23\xd7\x2a\xce\x66" "\x49\x57\x9a\x47\x58\x7c\x24\xcc\x79\xd0\xf2\x30\xad\x15\xd5\x4d\x62" "\x03\xbb\xa6\xcd\x41\x23\xe4\x17\xbe\xc4\x0b\xc1\xc2\xde\xe5\x49\xd3" "\x22\xc8\x76\x3c\x31\xcf\xd9\x93\x2d\x0e\x75\x26\x15\xdb\x09\xb4\x26" "\x6e\x91\x4d\x18\x8b\xfc\x0b\xa4\xa7\xec\x2a\xed\xd3\x8d\xcf\xec\x3e" "\x76\x9a\x9b\xf4\x47\x9c\x84\x7f\xc3\x31\xc1\xe4\x98\xf9\x1f\xc9\x47" "\xdf\x58\x72\xc7\x1b\xf8\x8a\x51\x05\x85\x1b\xe6\x09\x9a\xb5\x76\xe9" "\x66\x6d\x0e\x0b\x53\xcb\xeb\x19\xce\x27\x09\x5b\xa0\x25\xeb\x8a\x98" "\x89\xeb\x6f\x31\x5a\x99\xae\xce\x91\x2c\x29\x1b\x9e\xc7\x5b\x46\xb4" "\xf4\x0c\x24\x06\x29\x74\x89\x3f\x00\x9b\x52\x08\xc5\xc3\x25\x17\x5d" "\xc1\xa3\xdc\xcf\x38\x35\x56\xd1\x13\xe7\x3b\x8f\x85\xf3\x86\x38\x1f" "\x5d\xec\x4e\x58\xde\x4b\x06\x3d\x4d\xd1\x06\x79\x48\xc5\x44\x15\xcb" "\x56\x15\x50\x5c\x8f\x31\x49\xdd\x38\x93\x6b\x8d\x3e\x83\xa4\x3c\x3b" "\xec\x04\xe6\x3d\xb1\xd9\x4f\x9b\xe4\xcd\x9b\xd8\xd4\xda\xcf\x73\xa6" "\x73\x1d\x48\x7d\xa0\x4d\x8a\x79\x01\x63\x12\xa1\x24\x9f\x00\x5e\x45" "\xd2\x61\xb4\xba\xdd\xa6\x60\x39\x74\x5a\xf5\x1c\xc7\x34\x53\xfe\x2e" "\x86\xa0\x3c\x29\xda\xdc\x54\x1d\x3b\x58\xfb\xfe\xcd\x40\x5b\x7c\xa0" "\xb4\xe1\xbe\xcf\x37\x53\x3c\xfc\x36\x5c\x1c\x66\xf7\xed\x98\x3d\xea" "\x8d\xf0\x20\xbf\x3c\x2f\x97\x77\x8f\x5d\x54\x96\xa1\xb4\x1f\x0d\x67" "\xa5\x37\x5a\x8d\x5f\x86\xa8\xe1\xcb\xd6\xb8\xa3\xf7\xcf\x5a\x57\xd7" "\x38\xca\xb3\x39\x38\xa8\x3d\x7f\x03\xbf\x8f\xa4\x27\x33\x36\xab\x54" "\x22\x06\x70\x9f\x1f\x23\x47\x45\xe5\xf9\x90\xc2\x35\xf9\x20\xa6\xd3" "\xd2\x00\x26\xcc\xe3\x4d\xde\x8f\xe7\x8f\x28\x6f\x02\xce\x0a\x7e\x67" "\x4f\x89\x20\xd3\x5e\x6f\x7b\xf3\xde\xd9\xa5\x66\xef\x43\xd8\xde\x2c" "\xf5\xc4\xaa\x22\xc5\x39\x27\xfd\xd3\x3d\x88\x7c\x6c\x99\x25\x22\xa4" "\x75\xc0\x55\x9a\x9f\xae\x50\xe0\xa8\x0e\x20\x71\x6e\x00\x73\x50\x8b" "\x68\x2e\x57\x18\xe0\xd5\x56\x89\x9c\x82\x65\x69\x9b\x54\xb6\x11\xd8" "\x05\x1c\x83\x11\x81\x6f\xcd\x17\x66\x93\x31\xed\x65\x4e\xef\x10\x43" "\xfd\x60\xe7\x12\x12\xe8\xd1\x7c\x31\xa4\xb3\xf7\x95\x28\xec\x07\x5d" "\xa0\x2b\xde\x0d\xf3\x85\xcb\x1f\x4d\xc1\x2e\xd6\xcd\x84\x6f\xa6\x76" "\xe0\xa4\x98\x78\x4f\xb7\x16\xe9\x64\x9d\x76\xf9\xd5\xb4\x73\x43\x56" "\xcd\x84\xfa\x03\x3b\xf7\x5e\x9d\x2c\x97\x10\x0f\x30\x82\x6e\x4e\x3a" "\xcc\x71\x8a\x61\x9d\x2a\x1b\x77\x3c\xe8\x24\x90\xa3\x76\xa3\x94\x90" "\xca\xe5\x47\xc8\xa9\xcd\x68\x52\xbf\x2e\x3f\x68\x69\x8d\x17\xde\x03" "\x0e\x2b\x76\xf3\x57\x12\xac\x5a\x90\xe1\x11\xf4\x37\x51\x42\x89\x4d" "\x32\xcf\x7f\xe6\x49\x66\x05\x2a\x3d\x44\xda\x68\x81\xd8\xd9\x2f\x72" "\xeb\xe5\xea\x9b\x1d\x8f\x43\x60\x57\x2e\x8e\xf5\xee\x7e\xcd\x7d\x03" "\xd1\x47\xd3\xea\x70\x12\x54\xf5\x5b\xba\x47\xf2\xc6\xf0\x9f\xee\xe7" "\xf7\xb7\x18\xe4\x90\xee\x0e\xa0\x6d\xcc\xd8\xfb\x92\xca\x44\x46\xb0" "\x37\x29\x1c\x4e\xe1\xd4\x95\x90\xce\xe7\x8e\xcb\xd5\x80\x91\xf0\x69" "\x29\x01\x68\x52\x0f\xf0\x27\xfa\x8b\xa2\x2a\xc7\xf2\x07\x35\x19\x6a" "\x40\xf9\x40\x19\xcb\x61\x93\xe9\xd9\xc7\xd7\x67\x50\xc7\x72\x3b\x6b" "\x84\xf2\x80\x5c\x9d\xfc\xbc\x60\x24\x52\xf8\x4e\xcf\x08\x63\xc2\x65" "\xa3\xf0\x35\x52\x39\x8b\xca\x6e\x3c\x51\x1d\xca\x77\x50\xbd\x20\x6a" "\xdc\xab\x2e\x78\x3f\x3c\x03\x70\x43\x8d\xea\x67\xec\xa1\x4c\xf2\x30" "\xd2\x2a\x6b\xde\xa9\x46\x8d\x90\xe3\x72\xd8\x8b\x98\x70\x60\x3e\xdf" "\xab\x36\x75\xac\x5f\x8a\x47\x9c\xdd\xea\xd5\x96\x57\xc1\x02\xcc\x21" "\xa2\xd3\xc1\x47\xd4\x41\x71\xa6\x62\x71\xac\xdc\x65\x45\xd2\xcb\xde" "\x6b\x15\x4e\xc2\xf5\x09\xb7\x59\xfb\xe1\x25\x60\x7c\xa7\x5c\xe0\x46" "\x6a\x1a\x80\x2b\x95\x45\xa6\x3c\x2d\x8e\xa1\xe6\xdb\x86\xd5\x95\x7e" "\x50\x98\xa5\x78\x56\x6a\xb3\xd0\xf9\x91\x3f\x57\xc7\x99\x06\xfd\x66" "\xf4\x93\x08\xf4\x40\x3f\x83\xcd\x5e\x90\x43\x09\xef\x21\x14\x03\x0a" "\x4e\x40\x03\x26\xf4\x19\x8e\x11\xa1\xb2\xaa\x2f\xaa\xcf\x3d\x9c\xb5" "\x57\x0e\x43\x09\x47\x8d\x78\x4c\xe2\xf3\xf7\x32\x7f\xb6\x11\x5f\x2a" "\x17\x8e\x2e\xa7\x42\xe5\x85\xb0\x54\x8c\xda\x3f\xa1\xc9\x25\xd2\xa5" "\x36\xdf\x0b\xe7\x25\x9a\x77\x8d\x5f\x29\x3f\x65\x03\x9f\x34\xca\x29" "\x12\x67\x81\x6c\x12\x9e\x95\x4e\x2d\xc1\x4e\x7e\xe9\xf9\x78\xd5\x39" "\x8e\x87\x3f\x25\x13\x5c\x23\xc9\xe2\xfa\x6e\xaa\x3a\x51\xed\x3e\x1e" "\xb8\x62\x81\x67\xec\xc6\x6b\xbe\x2e\x2e\xd0\x60\x9e\x59\x29\x36\x20" "\xd4\x1e\xe3\x13\x2b\xde\xf1\xba\xb2\x15\x2f\x4a\xc0\x3c\xfb\xdf\xe5" "\xa4\x03\xa9\x02\xb6\xc7\xb8\x70\x0a\x69\xaf\x8f\xdc\xad\xf6\xe6\x92" "\xdf\x23\x0b\x14\xed\xc9\xb7\xfc\x91\x57\xc2\x64\xf3\xc7\xc8\x79\x1e" "\xb4\x02\xc0\x11\x2f\xc5\xf4\xe2\xf1\x93\xfc\xad\x9b\x74\x45\x14\x4e" "\x91\x6f\xeb\x28\xdb\x06\x2f\xd6\xf5\x51\x81\xef\xd9\xc6\x2c\xe5\xdd" "\xc6\x3d\x92\x80\x67\xa9\x01\x4c\x81\xe7\xe8\x83\x01\xa8\x86\x6a\xd4" "\xcb\x36\x3a\xce\xec\xc4\x1c\x74\xc1\x9c\x35\x18\xc6\x7f\x1f\x4e\xe4" "\x36\x66\x82\x09\x15\xcd\x64\x89\x85\x6d\xd4\x96\x24\x4b\x93\x09\x38" "\x5e\x52\x30\x35\x8b\x51\x4e\xb3\x4f\xcd\xdf\x7e\xd5\x60\xab\x76\xa1" "\x35\x6a\xb8\x3f\x0e\x18\xa9\x31\x87\x44\x47\x3b\xfa\x8f\x17\x05\x46" "\x83\xbf\x60\x03\x38\x87\xf5\xe2\xd9\xf9\xd2\xfa\x41\xab\x2d\x05\xb7" "\x3d\xc3\xe8\xbf\x88\x53\xda\xbd\x02\x97\x16\x28\x72\x70\x49\x0c\x1b" "\x0c\x3b\x0a\x48\x2c\xff\x03\xf8\x66\x39\x58\xb1\x51\xe9\x8a\xcf\xe7" "\xb8\x55\xc8\xd8\x9a\xa1\x94\x83\xcd\xfa\x3f\x52\x4f\x30\xcc\x63\x45" "\x4b\xe3\x7d\x9a\xdf\x5a\x4e\xea\xba\x82\xe9\x56\xa2\xf2\x69\xd2\xcf" "\x0d\xc7\x02\xee\x34\xc5\xc2\xfd\x89\x73\x75\x80\x98\xc7\x75\x78\x18" "\xf5\x6a\xae\xb2\xfb\xb9\xa9\xc6\x3b\x43\x05\x99\x74\xc1\xa5\x4d\xee" "\xd6\xcc\xfd\x35\xa4\xe0\x8e\xaa\x78\x3f\x82\x1a\xcf\xd6\xee\x10\xb2" "\xf3\x72\x0c\xe5\xdc\xc4\x31\x08\xc4\x03\x92\x2e\xe8\xe6\x47\x24\x17" "\x1b\x71\x62\xe4\x64\x28\x13\xc4\xeb\x54\x55\x61\x51\x8b\xa9\x98\x4d" "\xd9\x5c\xdd\x28\x79\xf8\xd0\xa7\x26\xb2\x72\xec\xcb\x85\xf5\xa5\x24" "\x1a\xc9\xae\xd6\x0d\x51\x10\xed\xee\xce\xda\x18\x56\x2b\x14\x65\x14" "\x1a\x59\xc7\x1e\x40\xc5\x4f\xb4\xe4\x22\xda\x14\xc4\xfd\xf5\xcb\xad" "\x6f\x7d\x03\x5f\xf4\xea\x64\xbb\x4b\x87\x3a\xf6\x38\xf8\x0d\xdb\xdd" "\x7a\xcf\xf9\x93\xa6\x37\x2d\xb4\xf9\x21\x98\xbd\xea\xeb\xae\x6e\x6c" "\xaa\xec\xc4\xb3\x20\x34\x79\x26\xd9\xe4\x24\x8d\xa5\x15\x10\x42\x9b" "\x8b\x29\xfc\x8d\x91\xda\x6d\xd1\x68\xaf\x8f\x50\x4a\xd9\x50\xa5\x5c" "\x21\xf1\x94\xe2\x51\xc8\xaa\xa1\x56\x08\x94\x7d\x1c\x05\x79\x3d\x4c" "\x5a\x90\x09\x69\xd9\x6f\x09\xf2\x1a\x7a\x3d\x63\x00\x91\xec", 8192); *(uint64_t*)0x20005440 = 0; *(uint64_t*)0x20005448 = 0; *(uint64_t*)0x20005450 = 0; *(uint64_t*)0x20005458 = 0; *(uint64_t*)0x20005460 = 0; *(uint64_t*)0x20005468 = 0; *(uint64_t*)0x20005470 = 0; *(uint64_t*)0x20005478 = 0; *(uint64_t*)0x20005480 = 0; *(uint64_t*)0x20005488 = 0; *(uint64_t*)0x20005490 = 0; *(uint64_t*)0x20005498 = 0; *(uint64_t*)0x200054a0 = 0; *(uint64_t*)0x200054a8 = 0; *(uint64_t*)0x200054b0 = 0; *(uint64_t*)0x200054b8 = 0; syz_fuse_handle_req(r[0], 0x20003040, 0x2000, 0x20005440); break; case 4: syz_fuse_handle_req(r[0], 0, 0, 0); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); for (procid = 0; procid < 4; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }