// https://syzkaller.appspot.com/bug?id=0a16338c4573e63781a4605c5b0da7184982093f // 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 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; } } #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 loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 7; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x400000000d40, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x400000000d40ul, /*mode=*/0ul); break; case 1: memcpy((void*)0x400000000180, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x400000000180ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x4000000020c0, "./file0\000", 8); memcpy((void*)0x400000002100, "fuse\000", 5); memcpy((void*)0x400000002140, "fd", 2); *(uint8_t*)0x400000002142 = 0x3d; sprintf((char*)0x400000002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x400000002155 = 0x2c; memcpy((void*)0x400000002156, "rootmode", 8); *(uint8_t*)0x40000000215e = 0x3d; sprintf((char*)0x40000000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x400000002176 = 0x2c; memcpy((void*)0x400000002177, "user_id", 7); *(uint8_t*)0x40000000217e = 0x3d; sprintf((char*)0x40000000217f, "%020llu", (long long)0); *(uint8_t*)0x400000002193 = 0x2c; memcpy((void*)0x400000002194, "group_id", 8); *(uint8_t*)0x40000000219c = 0x3d; sprintf((char*)0x40000000219d, "%020llu", (long long)0); *(uint8_t*)0x4000000021b1 = 0x2c; *(uint8_t*)0x4000000021b2 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x4000000020c0ul, /*type=*/0x400000002100ul, /*flags=*/0ul, /*opts=*/0x400000002140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x4000000021c0ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x4000000021c8; r[2] = *(uint32_t*)0x4000000021d0; } break; case 4: *(uint32_t*)0x400000000040 = 0x18; *(uint32_t*)0x400000000044 = 0; *(uint64_t*)0x400000000048 = r[1]; *(uint32_t*)0x400000000050 = 7; *(uint32_t*)0x400000000054 = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x400000000040ul, /*len=*/0x18ul); break; case 5: memcpy((void*)0x400000000080, "./file0/file0\000", 14); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x400000000080ul, /*mode=*/0ul); break; case 6: memcpy( (void*)0x40000000a200, "\xc1\xfd\x43\xb6\x01\x66\x27\x01\x27\x2a\xf3\x7a\x7d\xed\xa0\x72\xca" "\xa0\x9f\xc2\x3d\x25\x2b\x6d\xaa\x11\xb0\xa4\xef\x28\x25\xe8\x7f\x09" "\xfb\x6b\xc3\xdf\xd8\x4d\xdd\x85\x3b\x18\x20\x3b\xbf\x08\xb1\xaf\x60" "\x66\xc7\x8b\x47\x14\xa7\x89\xa8\xf3\x60\x5f\x59\x20\xe7\xaf\xc5\xb0" "\xa0\x42\x71\xce\xbc\xe7\x2a\x79\x7a\xbd\x5b\x9e\x4a\x44\xfd\xcc\x15" "\x0e\x6e\xf0\xe8\xc3\xd4\x36\x0e\x74\x27\x58\x18\xdf\x26\x24\x3f\x28" "\xca\xc3\xd8\x4e\x26\x4f\xd0\xc7\x7d\x4b\xcc\xbc\x46\x6e\x72\x44\xb2" "\x47\xd9\xdc\xee\x02\x6d\xf8\x9a\xef\xc9\x58\xd8\x4a\x55\xd4\xd6\x92" "\x2d\x96\xce\x03\x49\xfe\x28\xef\xd6\xb8\x3d\x15\xb7\xb0\x81\x43\xa7" "\x21\xc4\xa6\x77\xb7\x23\x62\xa4\x9e\xeb\x15\xec\x5b\x5f\x85\x69\xba" "\xd5\x85\xe3\x0a\x62\xab\x14\x9e\x7e\x4c\x7f\x49\xaf\x95\x60\xfd\x52" "\xea\x57\x30\x13\x5d\xc3\xea\x3f\x6a\x9a\x3a\xe6\x28\x6e\x99\xe1\x52" "\x0a\x43\xb8\x81\x3c\xa6\xaa\xd1\xad\xbb\x30\xb2\x45\x9f\x90\x69\x9e" "\x2b\xa3\xa6\x33\x5d\xdc\xac\xe3\x73\x7e\xd8\xf5\xf2\x1e\x02\x7a\xc2" "\xb2\x24\x38\x9b\xf0\xc8\xc0\x05\xac\x8d\x8c\x3a\xe1\x88\x67\x9d\x34" "\xda\x0a\x2c\x20\xa9\x10\x48\x7d\x3c\x91\xb1\x87\x70\xfa\x5e\xe4\x83" "\xa3\xf0\x9b\x88\x29\x60\xf1\x2e\x7d\x2e\xb9\x01\x58\x95\xce\x80\xb3" "\x7f\x74\xa3\x05\xa5\x0d\xeb\x14\x6b\x1c\x34\x30\xf3\x1d\x28\xe6\xf8" "\x27\xb9\xc7\x07\x0b\xc8\x80\xd2\x51\xdd\xb0\x9e\x0e\x70\xa0\x51\x2e" "\xd2\x60\x02\x56\x33\x2c\x43\xa5\xde\xae\xcb\x01\xf0\x89\x33\x3f\xc3" "\xb6\x72\x1f\x6e\xd5\xb4\x1f\x99\x71\xb7\xc6\x3f\x57\xb5\xaf\xa8\x04" "\x2f\x5b\xeb\x1a\xc1\x27\x46\x76\xdc\x54\x06\xb5\x82\x82\x47\x12\x3b" "\xb7\xbe\x79\x5b\xae\xe5\x9d\x77\x9b\xbd\xe2\x27\xc9\x0d\x0a\x5d\x86" "\x39\x36\xd4\x34\xf2\xce\x7a\x45\xf9\xb6\x50\x60\x0f\x32\x82\x7b\x92" "\xe2\xd8\x28\x91\x5f\x04\x11\xf7\x65\xed\x82\xdd\x01\x25\x61\xed\x29" "\xb0\x99\x50\xb9\x6f\x8e\x49\x0f\x14\x48\xdb\xd5\xe4\x5b\xdc\x92\xa2" "\xa3\x6a\xa6\x7e\x5e\x93\x96\xb6\x37\x6f\x82\xaa\x69\x15\xea\xc4\x14" "\x4a\x10\x2d\xe7\x86\x56\x3e\x44\x82\xf0\x91\x76\x98\xbc\x70\x77\x6f" "\x8c\x7a\xad\x33\x46\xe1\x8e\xe2\x95\xaf\x54\xf3\xc1\x65\x8f\x9b\x12" "\x41\x16\xa2\xfd\xac\x79\x35\x3b\x09\x5c\xf6\x67\xdd\x94\x1c\x3c\xba" "\x14\x1b\x3a\xc8\x98\x2e\xed\x42\xe7\xdb\x64\x9c\x9d\x49\xa5\x93\x78" "\x21\x6b\xf4\x32\x3f\xf4\xc2\xf2\x99\x29\x94\xd4\x14\x4b\x74\x86\x6a" "\x24\x26\xe1\x9a\x2d\xc8\xdb\xf4\x64\x3f\x97\xa2\x14\xfc\x9c\x44\x85" "\x12\x31\x6d\x76\xc4\x11\x6c\x3a\xe6\x00\xdf\xb9\x8c\xf8\x54\x72\xda" "\x66\x17\x45\xb6\x38\x43\x8d\xbf\x15\xd8\xdd\x87\xa8\xba\x35\x20\x5a" "\x65\xba\x5b\xf7\x9c\xf9\x41\x45\x4f\x8c\x78\x8d\xc2\xee\xcc\xea\x41" "\x2a\xdd\x73\x47\x98\xc8\x2e\x9c\x86\x12\x2a\x91\xdf\xf7\x78\xed\xcd" "\x30\x9c\x05\xfd\xca\x66\x17\x6e\x9b\xc4\xd4\x10\xb0\xee\x46\x27\xeb" "\x88\x94\x43\xb5\x74\xce\x20\x5c\x7f\x4d\x6d\x42\x8e\x90\x99\x52\x71" "\x2e\xc3\xdf\xc8\x95\x52\x27\x9b\x2d\xa8\x7b\x01\x00\x51\xa4\x51\x37" "\x7a\x0c\x51\xa3\x4e\xbb\xa2\x5c\x3b\x62\xba\x98\xeb\x6f\x15\x49\xb0" "\xfe\xe6\xa7\xc5\xe0\xc7\xa7\x28\x35\x38\x88\x03\xa0\xa8\x34\x2b\xb9" "\xf2\x73\x32\x24\xc9\x2a\x50\xdd\x25\xa9\xb3\x35\xf2\x43\xf2\xd8\xc6" "\x81\x42\xaa\x1d\xb1\xde\x2f\x89\x9a\x56\xc6\x23\xa3\x2f\x8a\x74\xc1" "\x6d\xb5\x69\x83\xeb\x83\xf6\x46\x93\x16\xf2\xfc\x14\x86\x0c\x07\x52" "\x36\xa3\xba\x40\xe8\xc2\x65\x90\x9b\x8f\xc6\xb0\x3c\x63\x78\x26\x9f" "\x66\x29\xba\xb8\x14\x18\x78\x9c\xd7\x48\xd8\xb7\x86\xf4\x7a\xb8\xf1" "\x3b\x0c\xaa\x5e\xcd\x79\xdb\xea\x61\x33\x0b\xe6\xde\x58\x04\xf5\xc2" "\x11\xce\xf7\x8f\x55\x5e\x7b\x20\x93\xf4\xa8\x36\xcd\xb8\xa2\xcf\xa2" "\x61\xbe\x14\xe0\xf5\x9d\x07\x5f\x58\xe9\x7b\xa1\x6c\xb1\x30\xf0\x62" "\xa2\x26\x1d\xf2\x44\xc5\x7d\x6f\x47\x7d\x76\x12\x62\xb2\xe7\x55\xc9" "\x6b\xad\x38\x98\x89\x4e\x80\xb2\x3f\xae\x71\xfc\x31\xb2\x89\x55\x13" "\xa1\x1b\x0c\xf0\x75\x51\xca\x87\x32\x55\x92\xdd\x10\x54\x9b\x7d\x92" "\xda\x1c\xb0\x71\x19\xfe\x97\x0b\x8c\xc3\xaa\xcc\x38\x6a\xb6\x4d\x32" "\xb3\x08\x67\x95\x93\x25\x6d\x2f\xcd\x1f\x9e\x9b\x15\xee\x93\xef\x85" "\x9e\x72\x68\xbe\x77\x60\x53\x18\x24\x60\xe8\x3f\xb8\x73\x71\x12\x26" "\xec\x9a\xa5\xc3\x5b\x15\xfb\xfa\x12\xea\x0a\xbf\xc7\x46\x5b\x30\x0b" "\xd8\x44\x5c\x83\x1a\xe7\x7d\x2a\xab\x7d\x4b\xc3\xba\x5f\x21\x8f\xda" "\x9e\x90\xea\xcd\xe1\xac\x51\x19\xeb\x30\x07\x3a\x6f\x29\x17\x27\xcb" "\x94\xfc\x87\xa3\xd3\x01\x3f\x3e\xbb\x1c\xd2\x59\x06\x7c\x57\x1b\xd3" "\xc5\x7e\xac\xce\x71\x6e\x61\xf8\x6b\xf4\x04\x1b\xac\xad\xd6\xc6\x76" "\xe1\x7f\xb3\xcf\x89\xc4\x98\x4a\xec\x78\x21\x68\x54\xa6\x0a\xf6\x85" "\x33\xfc\xdf\xf1\x28\x97\xc3\xe1\xb2\xc1\x0c\xec\x01\x97\x22\x62\x3f" "\x47\x7a\x51\x2c\x4e\x5e\xef\x74\xa6\xd1\xab\x7a\x73\x59\x05\x37\x3c" "\xa3\xa0\xb1\x8c\x3e\xaa\x52\x3c\x86\x23\x8f\xba\x77\xe4\x5a\xa0\x7c" "\x1b\x96\xfa\x1e\x3c\xeb\x04\xe5\xf4\x74\x25\x36\xb6\x87\xeb\xf9\x89" "\x91\x8f\x68\x05\xcd\xa9\x61\x1a\xb9\xed\x10\xee\x33\xcd\xa7\x1a\x95" "\xbe\x2d\xa0\xd2\xc2\x1d\x22\x95\xfd\xb3\x34\xdc\x20\x57\x94\x23\x82" "\xdc\x7d\x0f\x70\x30\x0d\xf3\xdf\x84\xcf\x9a\x18\xf0\x42\xc1\x12\x42" "\xa3\x47\x56\x97\x71\xf9\xb8\x24\x04\xe1\x36\x84\x32\x4f\xb0\x6d\x86" "\x76\x41\xc8\x7d\x6d\x70\xad\x15\xe9\x02\x40\xf9\x01\xd0\x4a\x8b\x8c" "\x7f\xdf\xb8\xb8\x4a\xef\xee\x16\x06\xf1\x4a\x2a\x69\x95\xe6\xb8\xaa" "\xee\x1b\x37\x2c\xd5\x86\xa6\xda\xf2\x8a\xd7\xd8\xef\x64\x4c\x58\xfa" "\x72\xf0\xb2\xf8\x47\xee\xf7\x2e\x18\xf1\xa4\x37\x4c\x4f\xa3\xd6\x04" "\xa9\xbf\xec\x6a\x1a\x4f\xef\xdf\xaa\x84\x82\x79\x69\x32\x08\xdf\xbc" "\x1d\xbb\x97\xb4\x4c\x4f\x03\x40\x90\x60\x6e\x0a\xd3\x12\xcd\xfb\x6a" "\x8f\x68\xda\xe7\x31\x2b\x06\x4c\x68\x81\x3e\xb4\x19\x92\x55\x9c\xa6" "\x3d\x88\xa8\xe9\x07\x11\xc8\x38\xf2\x20\xa4\xda\x5b\xc7\xd8\x2e\xc0" "\xaf\x83\xda\x05\x9b\xdc\xcd\xb5\x24\xa5\x9a\xd2\x6e\x43\x41\x3f\x13" "\x1e\x77\x03\xeb\x82\x15\x82\x93\xa3\x31\x45\x6c\xe7\x28\xc2\x89\x23" "\xbf\x9a\xe6\x44\xa3\x31\xa6\x67\xc2\x93\x2a\xe1\xf1\x1a\x9f\x9b\x89" "\x3f\x80\x27\x96\xad\x02\x9c\x40\x49\x6c\x9b\xc4\x9c\xdf\x41\xa4\x0d" "\xa1\x09\x2b\x40\x4d\xa6\x60\xe8\x0f\x33\xa6\x01\x2a\x40\x78\x05\xe7" "\x0f\x9a\x18\x01\x05\xcd\x04\x01\xed\x01\xa9\xf6\xed\xef\x4e\x24\x79" "\xe1\x57\x9e\xa3\x65\xd8\x43\xc1\x97\x27\x9e\x3c\x79\xae\x56\xa1\x07" "\xdf\xab\xa6\xaf\x80\xed\x9a\x24\xd5\x35\xd1\x98\x27\x59\x6c\xa2\xb1" "\x4b\xf4\xb1\x10\xfa\xe4\x82\x0f\xc8\xd0\x57\x0a\x64\xae\x08\xe3\x15" "\xda\x00\x91\xf7\x66\xbc\xeb\x1f\xc9\x90\x46\x5e\xcb\x84\xa2\xd7\x2e" "\xfc\xb9\xa2\x69\x81\x68\x63\xb7\x2f\x8d\x08\x69\xb2\x0c\x14\xbd\x72" "\xf9\x09\xfc\x3e\xbb\xf2\xba\x2f\x98\xce\x3f\xd7\xeb\x54\xb7\x38\x69" "\x29\x16\xee\xb9\x8a\xb9\xea\x04\xce\x3e\x74\x08\x17\xdc\x9a\xc6\x56" "\x1c\x71\xd3\xbc\x15\x35\x8e\xbb\xb3\x02\x72\x94\xf6\x6e\xb8\x90\x57" "\x7f\x8a\x63\xec\xd2\x3b\xea\xcd\x93\xc3\xb1\x49\x8d\x5e\xef\xd8\xb6" "\x8e\xba\xb3\x53\x66\x53\xd5\x83\x97\x13\xb0\x7f\x79\xeb\xb2\xa6\x10" "\x6c\x00\x9c\xc5\x35\xa2\x17\x3c\xde\x3c\xcc\x65\x67\x6b\xca\xe5\x13" "\x14\x5d\xb5\xbf\x08\x54\x6e\x88\x10\xfb\x4d\x19\x32\x66\xd4\x91\xfb" "\x91\x21\x93\x51\x38\xa7\x4c\x52\x14\x99\x59\xa0\xc2\x70\xcd\x6e\x24" "\x4d\xd7\xcb\x14\x0f\xcf\x6b\xf0\xe7\x53\x62\x20\xf7\x98\xbf\x32\xcd" "\xa5\x64\xeb\xde\x02\x5a\x92\x61\x7f\x31\x95\xe5\x49\xa4\x91\xa4\x54" "\x46\xff\x0e\xbf\xd3\xb0\x47\x77\x5a\xf3\x39\xe5\x9a\x8d\xa0\xdb\x62" "\x23\x33\x93\x25\xc6\xf4\x93\xba\xa5\xf2\xc7\x1b\x57\x10\xa9\x75\xde" "\xf3\xe3\x91\x9a\x24\xa5\x23\x51\xac\xc1\x2e\x5a\x2a\xb6\xc1\x71\x70" "\x5b\xad\x0e\x6a\xfd\x0a\xd2\xb6\xdd\x6f\xea\xed\xc9\x92\x4f\xdb\xa5" "\x33\xfc\x95\x8f\xab\x9a\x98\x0b\x77\x5e\xb4\xc9\x3a\x49\x94\x13\x07" "\x3c\xf0\x98\x26\x38\x1b\x80\x54\xf9\xf0\x9f\x4a\x0d\xfa\x63\xac\x2f" "\x6c\xb2\x2d\x00\x1f\xf2\x77\xec\x7f\x49\x3b\xc5\x4d\x2d\x1d\x34\xa6" "\xda\xd6\x2c\xd7\xbc\xca\xb2\xec\xd4\x19\xc9\x00\x87\xf6\x94\x53\x11" "\x46\x0b\x87\xda\xad\x60\x5f\xf8\x51\x9a\xba\x1d\x83\x11\xa5\xe5\x65" "\xdd\x26\x65\x55\x77\xaa\x13\xda\x31\xe0\x1c\xac\xbb\x7e\x10\xe7\x20" "\xa4\x86\xe9\xcc\x45\x0b\x8a\x21\xd2\x3a\xea\xb4\x28\x38\xd8\x1d\xc0" "\x5f\x5b\xe0\x47\x4a\xb8\x1b\x80\x6f\xe7\x1b\x88\x83\x23\x03\x7f\x32" "\x62\x17\x9e\x45\x1f\x76\x5e\x41\x9b\xdd\xf7\xb7\xa9\x9b\x40\xbc\xc2" "\x26\x98\x6e\xfb\xd3\x76\x5b\x66\xe5\x6a\x35\x00\xde\x4b\x18\xb6\x76" "\x36\x15\x10\xbd\x35\xb3\xa9\xc6\xb8\xc0\x82\x22\xcf\x7a\x73\xc4\xcd" "\xa9\x72\x19\x0f\x83\x9c\x2d\x01\xa4\xc1\x71\xa8\x03\xc0\xa7\x7d\x27" "\x69\xc8\x92\xb2\xf0\x19\x1d\x2f\xa0\x1d\x7d\x5c\xa5\x35\x73\xe4\x7e" "\x93\xca\x9b\x56\xb8\xf0\xd6\x84\xd5\x45\x8d\x50\x5a\xd8\x38\x3f\x22" "\xe1\x90\x24\xda\x06\xbf\x6a\xbf\x30\xed\x66\x3c\xfb\x33\xe2\x02\xbe" "\x17\xbb\x95\x1e\x9e\xa3\x0c\xfc\xf6\x56\x75\xd2\xfc\x64\xaa\x51\xe0" "\x72\x37\xfe\x83\x91\x54\x91\x85\xfa\xc5\x82\x2d\xaa\x92\xe7\x37\x78" "\xe0\x80\xb1\x30\x4d\xd7\x57\xf9\x03\x50\x92\xa7\x29\xb9\xa0\x12\x2d" "\x1c\x07\xd6\x03\x36\xf1\x8a\x9e\x46\xeb\xec\xed\x10\x41\xde\x2e\x2e" "\x8a\x5d\xe6\xf4\xa8\x14\xd5\x17\x9b\xdd\xfc\xde\xda\x88\x88\x8c\xb9" "\xce\x32\x2a\x51\x6a\xf3\xbe\x2b\x7c\xf3\x71\xe9\x19\x3c\xb4\x0e\x66" "\xcd\x41\xdd\x94\xe3\x7f\x14\xc6\xe6\x46\x9e\x8f\xa6\xc5\x7a\x4f\xa3" "\x12\x5f\xb6\x81\x9b\x84\xe2\x76\x76\x8a\x73\x54\xdd\x3e\x26\x92\xa7" "\x7a\x4a\x60\xaf\x85\xbe\xc0\x32\x5d\x0a\xae\x72\xa5\xf4\xf7\xbf\x94" "\x68\xf1\xd3\x51\x47\x91\x0a\x55\xaf\x54\x6e\x4e\x36\x34\xfe\x2d\x8e" "\xfe\x11\x66\x01\xbf\x84\xc0\xe9\xc4\xd4\x42\xec\x8f\x99\xfe\x6c\x1c" "\xc9\x0b\x99\xa8\xd1\xe5\x33\x22\xb2\x6b\x66\x92\x8f\xd0\x17\x38\xfa" "\x70\xc0\xaf\xf8\x4b\x4f\x02\x94\x6c\x6f\xa6\x84\xbd\x61\x76\x67\x85" "\x7c\xd7\x51\xa3\xad\x3d\x32\x4f\x95\x74\xaf\x78\xee\xc6\xc8\xc5\x1c" "\x25\xe0\x1c\xb0\xef\x12\x91\x99\xf5\xa3\xb3\xb2\x9e\x32\xa3\x4c\x4e" "\xf1\x4c\x81\x0c\x2e\x69\xe0\x61\x58\xf0\x20\x33\xe1\x5f\x1e\xc0\x04" "\x19\xa9\x1c\x14\x50\x33\x89\x56\xa1\x88\xfa\xc9\x18\xfb\x73\x69\x24" "\x91\xba\xaf\x59\x76\xca\x39\x2c\x13\x9b\xa0\xe5\x51\xde\x26\x0d\xfd" "\x6c\x73\x3b\x57\x22\x15\xf2\xaf\x0a\xac\xc5\x70\x9b\x0d\x4a\x3b\x36" "\xd2\x3f\x58\x82\xc5\x64\x4b\xb4\x55\x07\x5c\x5c\x48\xbd\x50\x49\x2b" "\x39\x5d\x14\xc3\x63\x93\x01\x9f\xa9\xea\xb8\xa2\x11\xd7\x1d\x17\x37" "\x54\x66\x3e\xa2\xaf\x1e\xbd\xf9\x75\x10\x06\x79\x26\x09\xd4\xdb\x47" "\x82\x4d\x95\xd6\x85\x83\xc9\x22\xc0\x4a\xf3\xcd\xfb\x58\xf3\x7b\x6f" "\x95\x8a\x4b\x35\xcb\xd7\x4a\x30\xa3\x93\xbe\x19\x2f\xb4\x6b\xfe\x4e" "\x72\x2c\x36\x34\xc9\x4f\xbf\x48\x29\xf2\x5d\xc0\xb8\xb0\x7c\xd1\x6c" "\xf4\xc7\xe9\x24\xeb\x02\xae\x8d\x67\x55\x39\xd3\x2b\x5d\x9a\x54\xa4" "\x38\x11\xeb\x98\xe2\xdb\x31\x7c\x67\xd5\xbc\x62\x90\x15\x82\xcb\xb1" "\x28\x54\x2d\x6b\xe3\xbc\x9a\x5b\x5b\x8a\x88\x27\xf2\xea\xb1\x5e\x82" "\xb2\x8b\x41\x1e\xdf\x67\xd7\x86\xb7\x6f\xee\xd9\xe7\xd5\xff\xbc\x86" "\xfb\xdb\x19\xed\x80\xa4\xf5\xdc\xeb\xd6\x31\x71\x9f\x87\x34\xc3\x98" "\x93\x80\x47\x01\x1a\x25\x13\x70\xe4\x0d\x59\x29\xe9\xb4\x42\x60\x81" "\x02\x9b\x13\x39\xcc\xb0\x8b\xb0\xdb\xcb\xb4\xee\xdd\x53\x79\x2e\x43" "\xa0\x46\xab\xc1\xd5\xc1\xdc\x8c\x17\x49\x05\x22\x33\xe1\x8e\x25\x59" "\x3d\xae\xe9\x4f\x77\xf3\x27\xde\x61\x86\x7f\x1e\x79\x1b\x79\x7c\xc5" "\xee\x43\xf8\x10\x9c\xb0\x65\x4d\x87\x42\xec\xe8\x51\x2c\x32\x24\x42" "\xf6\x3d\xff\x88\x70\x2b\xa0\x47\xe8\x37\x0a\x1b\x73\x04\x53\x6e\xe7" "\xcf\x46\x5a\x0a\x19\xd9\x65\xfd\x03\x54\x3b\x99\x14\x49\xd6\xa1\xa9" "\x8b\xe5\xec\x38\x67\x31\x4c\x68\x8c\x5c\x48\x7e\x59\xa6\xbb\x05\x29" "\x1f\xda\x47\x98\x27\x17\x2b\xf3\xdb\x61\x5c\x20\xea\x02\x2f\xf7\xb1" "\x60\x20\x29\x92\x20\xb7\xc4\x5a\x71\x81\xc1\xed\xa4\x8c\x9a\x5f\xa7" "\x62\x48\x43\xd1\x12\xc5\x2d\x99\xd0\xb2\x7e\x16\x8e\xea\xdb\xcd\x3c" "\x60\xb3\xf3\x66\x17\x5d\xec\xc8\xc9\x1c\x64\xa0\xa1\x6d\x3a\x2e\x38" "\x24\x4d\xd8\xd2\xde\x80\x6a\xd7\x41\xe2\x25\x60\x75\xef\xcb\x04\x66" "\x36\x0a\xca\xa3\xf6\x56\x11\x78\x9a\x82\x1c\x30\xa1\x3d\x4b\x60\xe4" "\x41\x73\xbe\x9e\x28\x8d\xda\x7d\x7a\xae\x2f\x83\x41\xd9\xa8\x51\x04" "\x17\x06\x31\xc9\x42\xee\xf2\x2c\x10\xe9\x03\xbf\x70\xb0\xed\x36\x83" "\x1d\x53\x6a\x0c\xd6\x5c\x11\xa2\x09\xe3\x7a\x76\xf3\xf5\x4d\xeb\x32" "\x67\x35\xbe\xc5\xa5\x32\x43\x1a\x81\xf3\x03\xaf\x5e\x9d\x03\x71\x7a" "\x93\xa3\xda\x18\x31\x7c\x45\x9a\xee\x8d\xb0\x8b\x9f\x0b\x33\x31\xd2" "\x97\x70\xfe\x7f\xc4\x26\x6c\x15\xa4\x29\x4c\x9c\x43\x5a\x38\x29\x6c" "\xd8\x80\xdc\xed\xb3\x4f\x63\x03\x7f\x2a\x8e\x3a\xda\x9e\xad\x3e\x52" "\xab\xd6\x9e\x57\x79\x90\x5f\x82\xa6\x07\xf7\x0e\x35\x1d\x21\x67\xbf" "\x1b\x59\x9c\xfb\x93\x14\xa3\x7d\xf8\x76\xbd\x5f\x2a\xcf\xf8\x2f\x17" "\x73\xc5\x12\xff\xd3\x08\x17\x9e\x47\xb2\x69\x46\xeb\xcc\xe1\x12\x27" "\x3e\x12\x89\x51\x45\xec\x88\xc7\x01\x26\x9c\x93\xf3\x2a\x5a\xb2\xbc" "\x16\xac\xd5\x7e\x99\x7d\x14\x0d\x18\xc2\xcb\xed\x26\x01\xa0\x5e\xc3" "\x3a\x63\xe7\xed\xbc\xca\x67\x3f\x71\xee\xca\xb6\x6a\xf5\x28\x7d\x7d" "\x5a\x1d\xad\x68\x77\x1e\xd6\x12\xd2\x9e\xf8\xab\x23\xef\x02\x11\xb4" "\xbb\xed\x6f\x98\x1c\xd2\x4d\x65\x2f\x35\x5d\x94\xf6\x00\x3b\x01\xcf" "\x3d\x80\x3a\x6e\x36\xb4\x70\x40\x2c\x05\x81\x6a\xa2\xcd\x74\x7f\x29" "\x33\x00\xbb\xe8\x91\x85\x4d\x93\x2d\xf7\x80\x9c\x78\x09\xc2\xcc\x3d" "\x06\xc6\x93\x98\x1e\x7b\xc2\x1e\x89\xaa\x3e\xa8\xf8\x82\x9c\x85\x18" "\x5e\x4e\xcf\xd2\xe2\x93\xbf\xa2\xb8\x8c\xae\x2c\x9e\x47\x22\xb9\xcf" "\xee\x01\x91\x1a\x50\x2d\x59\x36\x05\x32\x52\x86\x61\xea\xdf\x21\x50" "\xe2\x6a\x29\x92\x87\x1f\x56\x2d\x6f\xed\x4a\x36\x86\x7b\x25\x21\xb1" "\x77\x8c\x4c\xe9\x55\xf5\x98\x0b\x9d\xd9\xed\xe4\x2f\xc4\xa1\x39\x44" "\x91\xeb\xf1\xc1\xfb\x0d\x79\x4c\xb8\xc2\x8b\x10\x3d\x76\xb2\xe7\x0b" "\x03\x37\x87\x7a\x22\x2d\x7f\x3c\xd6\x1f\x35\x3b\xaf\x7b\xc9\xe2\x3d" "\x80\xf8\xe5\xb4\x45\x99\x37\xd7\x5f\x86\x9c\x17\x9d\xd9\xb9\x48\xa7" "\x0b\x9b\xa3\x73\x86\x53\x27\x90\xba\xc1\x2f\x2f\x34\x2f\xc4\xf2\xaf" "\xd8\xa4\x5f\x10\x93\x31\xd5\xda\xf3\x34\x4a\xde\x89\x30\x29\xe3\x22" "\xe8\xb7\xf3\xbd\xb5\xa4\x99\x87\x11\x6b\x31\xb2\xbd\x6d\x5b\xab\x78" "\x9c\xa0\x61\xea\x42\xf7\x64\x7c\x88\x48\x8f\x73\x41\x50\xe1\x61\xe5" "\xae\xa7\x86\x39\xc5\xbf\x9c\x2f\xb8\x8d\xa3\x21\xcb\xfd\x37\x9b\x38" "\xcb\xe6\xe1\x4a\xf9\x79\xf2\x38\x68\x5e\x2c\x0f\xf5\x16\x29\xcd\x22" "\x86\x02\xdb\xac\xef\xf8\xa2\x14\xcd\xc6\x65\x28\xcd\xea\x11\x46\x91" "\xef\x61\x9a\x8c\x9a\x0f\x9c\xdb\x7e\x08\xc5\xbc\xfc\x2b\xfd\x29\xe3" "\x9a\xf3\x8f\x5d\xb4\x82\x1c\x64\x8c\xc3\xd9\x76\xcc\x45\x5a\x6e\x64" "\x98\xc9\x25\x11\xb4\x07\xf3\x34\x92\x84\x90\x15\x62\xa9\x12\xc5\xaf" "\x25\xff\x79\x2b\x9c\x6c\x5d\xfb\x73\x51\x93\x36\xc7\xd4\xa8\x7e\x49" "\xde\xbc\xe7\xa4\x41\xb7\xa2\x97\x06\x17\x3e\x4e\x4e\x8d\xac\xee\x63" "\xa0\x6a\xb8\x5d\xd3\x59\xb5\x08\xbc\x8a\x0f\x70\x02\x83\x2f\xae\x10" "\xa0\xa3\x8e\xfa\xa4\x75\x84\x6c\x42\x05\xae\xbe\x77\x73\x34\x78\x8c" "\x3e\x46\x52\x08\x6e\x26\xdc\xdd\xda\xd9\x91\xb0\xce\x52\x56\xe1\x13" "\xba\xc6\x92\xd4\x42\xf5\x24\xd7\xe2\x92\xb8\x6e\xaf\x0d\xd8\x38\x0c" "\xcd\x78\xb1\x48\x9d\xd2\xef\x6b\xea\xf2\xeb\x9b\x08\xb5\x0b\xb2\xa5" "\xff\x3b\xa8\xdf\x3b\x22\x6b\xaf\x79\xa0\x73\x9d\x8a\x60\xcf\x81\x5c" "\xb3\x47\x39\x9a\xc4\xad\xb2\xce\xa5\x33\xd3\xf0\xce\x16\x0a\x56\x3f" "\x8d\x40\x1e\x5a\x61\x00\x57\x8e\x4c\x81\x78\xa7\xe7\x06\x63\xe1\x35" "\xed\xc6\x45\xcd\xec\x2f\x05\x88\xfc\x99\xa0\xcb\x60\xdd\x87\x88\xe0" "\x25\x54\xad\xe3\x70\x96\x0c\xe5\x62\xc2\x10\xe8\x26\xa1\xeb\xa7\x67" "\xa0\x9b\x10\xf4\x6e\xbb\xe6\xc9\x16\x6e\x24\x28\x63\x31\xd2\xff\x02" "\x5c\x57\xa1\x0c\x7b\x64\xc5\x06\xd0\xa6\x86\x42\x17\x1a\xd9\x65\xa0" "\x01\x70\x05\x61\xfc\xac\x2e\x3f\x54\x8f\xd5\x8d\x32\xba\xb5\xf3\x8b" "\x36\xe6\x2f\x55\x46\x12\x9c\xea\x35\xce\x85\x60\x52\xe3\xe4\x80\xfc" "\x63\x96\x40\xa5\x30\x1d\xd7\x00\xc8\xe8\xd0\xbd\x6a\xc7\x90\x91\x0f" "\xcf\x2b\x4f\x15\x9c\xc1\x53\x1a\xa1\xc9\xe3\x7b\x54\x15\x20\x45\x0d" "\xde\x63\x89\x42\x08\x12\x01\xae\x8a\x58\x0f\x28\xcf\x50\x53\x01\x90" "\xa4\x5f\x45\x46\x87\x53\xa1\x22\xb3\x64\xbe\x7d\xad\x79\x04\x4e\xc8" "\xb9\x97\x7d\x58\x3b\xc0\xac\x3e\xc7\xb9\xfa\xe1\x92\x39\x7c\xe8\x69" "\x33\x10\xf3\x01\xc1\x8c\x2c\xab\x52\x08\xb3\x69\xe6\x3c\x5a\xc1\x8d" "\x02\x66\x83\x4e\x21\x8b\xb7\x1f\x30\x8c\x2c\x2f\x2d\xf4\xa6\xcc\xad" "\xb3\x78\x88\x60\xa2\xc7\x33\xa9\x25\x2b\x87\x7e\xa1\xc1\xe8\x49\xa3" "\x8a\x32\x83\x10\xba\xfa\xe9\x61\x4a\x6e\x16\x11\x70\xc6\xfc\xbe\x9b" "\xd8\xc4\x17\x7d\xe1\xfd\x18\xf5\x68\x05\xc9\x1f\xb3\x82\xaa\xd7\x67" "\x89\x15\x56\xff\x8e\x1b\x5f\x3a\xb8\xc1\x8b\x4f\xa3\x05\x3c\x98\x1c" "\x12\xfa\x2e\xa0\x17\xbb\x75\x96\x15\x8c\xa5\x33\xd0\xdd\x95\xa9\x5d" "\x0b\x39\x22\x22\x60\x9f\x6e\xa3\x36\x71\x1a\x9d\xc5\x03\x93\xbc\x41" "\xfa\xc0\xd4\x29\x54\x0a\xd7\x07\x57\xb2\x08\x6b\xf1\xbe\xa0\x13\x2a" "\x60\x9e\xa0\xbd\xee\xa0\xce\xf9\x3d\x8b\x2a\x0d\x59\x18\x9b\xff\xec" "\x05\x28\x1e\x97\xb4\x72\x22\x91\x00\x5e\x9c\xa7\xe7\x55\xbe\x90\x70" "\xf4\x05\xab\x0d\x6c\x95\x46\xa5\xeb\xda\x2e\x62\xad\xcc\x62\x1c\x2b" "\x1f\x6b\x07\xcd\x1e\x61\x7d\x50\x46\x9e\xf2\xc7\x16\x47\xa4\x7e\xf9" "\x8f\xfb\xc7\x15\x05\xe1\x88\xce\xf3\xe5\xc7\x74\xc0\x98\x76\x64\xb6" "\x98\x97\x94\xd7\xca\x18\x68\x04\xcc\xc6\x29\x6d\xa3\xad\xf2\x2f\xeb" "\x35\x17\x92\xf1\xa9\xcf\xf7\x74\x13\x70\x37\x44\xbf\x4f\x21\x21\x29" "\x20\xd6\xa8\xfa\x18\x00\xda\x7a\x38\xfe\xf7\x16\x0a\x50\xf5\xb8\x95" "\xe7\xb7\x6f\x3f\xd8\x30\xfc\xb9\xa2\x5f\x3b\x3c\xcf\xd0\x82\xa1\x71" "\x22\x37\xe4\xca\x66\x50\x85\xaa\x1c\x5a\xa4\x13\xbc\xe8\x13\xf1\xb7" "\xca\x66\x10\x5d\xe9\x4b\xab\xb7\xb4\xa0\x50\x29\xcc\x37\x59\xd0\x01" "\x91\xfd\x9b\xfa\x0f\x99\x6c\xc7\x03\x40\x3d\xd6\xed\x2b\x33\xf2\x74" "\x3a\x78\x80\x41\xf2\x79\xb7\x67\xef\xc3\x73\x31\x4e\xdf\xae\x1b\xd3" "\x3f\x7e\xaa\xa7\x41\x8a\x59\xff\xf7\xe4\x0d\x02\xe6\x18\x17\x2f\x6e" "\x0a\xbe\x08\xc8\x55\x34\x8f\x3c\xba\x40\xc8\x59\x2a\x05\x21\xed\x1e" "\x41\x52\x4f\x20\xab\xcc\xb2\xbf\x0e\xbb\x93\x3e\x59\xb7\x03\x6e\xff" "\x5a\x66\x27\x9d\x57\x8e\x6b\x2f\xd6\xc4\x14\x0b\x33\xad\xc6\x7f\x70" "\x83\x11\x0d\x81\x5a\xc5\x5b\x48\x33\xec\x05\x04\x48\x82\x65\xb3\xff" "\x2b\xda\xce\xc1\x7c\x91\xbe\xa9\xd6\xbd\xd9\x31\xbf\x05\x6d\x6e\x97" "\x90\xe4\x72\xd8\x74\xa5\xa3\x94\x6b\x20\x04\x93\xc9\x87\x4d\x05\x7a" "\xa6\xbe\x3a\x1c\xa4\xda\x6f\xbb\x88\xa9\xd8\x53\xaa\xa7\xc8\xcc\xab" "\xc8\x35\x82\xca\xa6\x50\x78\xbb\xe7\xb0\x46\x25\xd1\x39\xed\x98\x60" "\x08\x0d\x18\x5b\xd9\x79\x8d\x61\x3c\xa3\x01\x47\x13\xeb\x9e\x36\xbd" "\xeb\x73\xf1\x4a\xc3\xfc\x7b\x2f\x8f\x59\x44\x04\xf5\x6d\xd9\x37\xc0" "\xa7\xe8\x65\xfa\x98\xe8\x58\xcb\x0a\xf6\x61\xcb\xe1\x2f\x15\xc9\x28" "\xc4\xc4\x5a\x98\x2e\x24\xcd\x32\x23\x20\xa9\x6c\xcd\x54\x65\x6b\x2c" "\x78\x76\xa5\xd7\x17\xe4\x2d\x3d\xf1\x31\x89\xb9\x5d\xdc\x2b\x5a\x92" "\x8d\xbd\xa9\xee\x02\xc3\x03\x52\x04\x5d\x02\xcb\xd8\x54\xaf\x82\x13" "\x00\xf1\x98\xb1\xce\x1e\xa8\xe4\x5c\x96\x90\x20\xe5\xc7\x67\x0f\xbd" "\x9b\x72\x27\xcf\xd3\xc8\x09\xfa\xc1\xdf\x2e\xb1\x8c\x19\x9b\x27\xe9" "\x69\xf3\x20\x52\x37\x6b\x45\x00\x03\xb7\xff\x63\x32\xee\x1d\x9f\xce" "\x1b\x59\x47\xb7\x25\x75\xec\x65\x41\xb9\x92\xfb\xc7\x6f\x0e\x03\xfc" "\x1b\xb9\xa0\xdf\x5e\xe3\xde\x0f\x34\x12\x5c\x31\x1d\x2d\xdb\x67\x96" "\x2c\xf9\xa8\x23\x0e\xff\xf8\x2c\x25\xc8\x96\x62\x10\x82\xa5\x87\x13" "\x9e\x99\x7e\x05\x32\x96\x2e\x84\xad\x69\x7a\x1a\x2b\x80\xd9\x97\xc2" "\xa2\x68\xec\xca\x8b\x7d\x10\x95\x53\x0b\x33\x2e\xf3\x68\x27\x0b\xf3" "\x1a\x75\xb7\x77\xa7\xcf\xe8\xc8\xd3\x24\xa8\xc5\x58\xd3\xc6\x5f\x80" "\x1d\xea\xc6\x82\x28\x42\xf8\x5f\x10\xa6\x41\xb7\x1a\xd7\xe5\xfb\x05" "\xf6\x4e\xb3\x03\x35\x07\xdc\x3a\x2e\x9e\xc0\x2d\x66\x7e\xf3\x6c\x55" "\x1f\x69\xc4\x38\xe8\xb6\xc3\x92\x77\x33\xd8\x3e\x94\xf0\x35\xef\x3d" "\xa2\x30\xb7\x59\xdf\x5f\x5d\x19\x64\x81\x5b\x17\x64\x78\xc4\xed\x94" "\x40\x2d\xc8\x26\x5e\x58\x91\x71\xdf\x16\x50\x94\xa2\xe4\xe7\x56\x14" "\xfc\x6f\xeb\xb8\x48\x4f\x28\xec\x8c\x12\x52\xb2\xd9\x33\x85\x25\x73" "\x92\x68\x37\xe1\xed\xf9\xda\x0d\xa3\xf9\x16\x97\xb2\x90\xc3\xee\x5a" "\x44\xfc\xab\x3b\x10\x09\x5b\x78\xb5\xdf\x37\x01\x43\x1c\xab\x31\x75" "\x0e\x21\x1d\x44\x2a\x77\xdb\xc5\xe2\xd4\xd0\xe6\x7b\xf3\x29\xf9\x10" "\x34\x14\xab\xd4\xf3\x87\x95\x11\x37\x5c\x88\x00\xf5\x2f\x8a\x17\xae" "\x68\x87\x21\x4b\xf8\x63\x4b\xd9\x90\x75\xab\x07\x35\x40\xf0\x4f\xf6" "\x75\xd3\x21\x90\xa3\xd1\x15\x2c\xee\xe3\x2e\x30\x71\x9c\xd8\x83\xa8" "\x21\x85\xf8\x9f\x07\x1c\x02\xdf\x44\x3c\xf7\x04\x6d\xce\x8a\x6d\xdc" "\x47\x2e\xd6\x39\x45\xfa\xef\x58\x8a\xcf\x57\x98\x5c\x7e\xcf\xfa\x43" "\x8f\x54\x27\xfb\x85\x1e\xbc\x6a\x4c\x57\x7a\x33\x89\x5a\x8f\xc4\x62" "\x82\x86\xa4\x8d\x3b\xbc\xda\x1b\x76\x9a\xa3\x19\x48\x69\xe1\x48\xba" "\x45\x79\x32\xfa\x6f\x2e\x46\x40\xe2\x75\x59\x40\xe2\xf5\xa6\xa6\x77" "\x96\xb5\xf8\x8a\xc1\x0f\x38\x9b\x40\x9c\x0c\x57\xbd\x4b\xf0\xcb\xe0" "\xfa\xc2\xfd\x2f\x58\xec\x49\x8d\x19\xc4\x39\x52\xe4\x52\x2b\x51\x93" "\x17\x12\xeb\x40\x02\xb7\xb2\x08\xc0\x2c\x4e\x06\xdf\x99\xfa\x8e\x93" "\xe4\xb9\xe8\xb0\xd7\xa5\x7e\x63\xaa\xcd\xaf\xb1\x9d\xb0\xfd\x42\x2f" "\x8e\x89\xd1\x27\x5b\x49\x96\x3b\xd8\x2b\x49\x0f\x9e\x4d\x24\xcf\xe9" "\x70\x0e\x98\xc7\x3b\x31\xfd\xcf\x7b\x7d\x30\xd7\x3e\x9b\xf6\xbd\x86" "\x43\x9d\xc8\xb6\x31\x71\xd5\x3c\xa7\xca\xa8\x60\xc6\x07\x77\x43\x60" "\x99\xdb\x54\x41\x64\xd4\xe4\xa8\x1a\x48\x3f\xfd\x5e\xf2\x98\x01\x10" "\xf4\x61\x52\x9c\x05\x7c\x40\xf2\xee\x63\xb7\x1a\x8e\xb2\xd8\x79\x19" "\x72\x6b\xda\x25\xa8\xfa\x2f\x24\x2d\x3f\xf7\xbf\x07\x26\xd8\xa1\x1d" "\x14\x1e\xb8\x7d\x27\x33\xf1\xfa\xf4\x56\xf2\xec\xcb\xe4\xc3\xa8\x56" "\x70\x2a\x80\xba\x7e\x36\xcd\x8e\xf8\xe0\x64\xe1\x6e\x61\xee\xdd\xa4" "\x47\x8d\x2e\xda\xf0\x44\x5e\x22\x47\xa7\x6e\x25\xb4\xb5\xc6\x87\x20" "\xb8\x7b\xba\x69\xb4\x17\x19\x83\xd9\x5a\x5a\x76\x4f\x42\xfa\x6f\x23" "\x46\x60\x96\xd9\xa0\x97\xed\xf8\x49\x52\x02\x3a\x45\x41\x11\x04\x56" "\xb9\x3e\xa5\x58\xc2\x05\x91\x56\xc2\x87\xfc\x6c\xde\x7c\x74\xab\xd9" "\x0e\xc5\x39\xa5\xf4\x3c\x2a\x64\x1b\x1a\x34\xcf\xfa\x25\x38\xba\x56" "\x5d\x0b\x57\x51\x3b\x8c\x1b\x3d\xf5\x41\xd0\x2d\x6d\x5a\x0a\xa2\xf9" "\x62\x00\xdb\xbf\x64\xab\x7c\x0a\xdb\x86\x8c\xce\x23\xca\x60\x7d\xb6" "\xd6\xdd\x18\xf9\x56\x18\x5c\x98\x3a\x90\xc8\xb4\xa7\xec\x63\x01\x78" "\x37\x6a\xc4\x00\xc6\x1c\x77\xfc\xba\xcb\x97\x9e\x2e\x07\x11\x5d\xb8" "\xa0\x34\xa0\x0f\xfb\x13\x6f\x91\xc0\xb1\x6c\x6d\x79\x6f\x52\x4f\x9c" "\xe6\xa0\xb7\x2c\x37\x8c\x89\x39\xb5\x6b\xb8\x3c\xa0\xf3\xd0\x9d\xa2" "\xb8\x2b\x4d\x34\x57\xb5\x68\x87\x8d\x01\x9f\x54\xf9\xcd\xdd\x51\x4a" "\x60\x1d\x4e\xdf\xae\x58\x2f\x1a\x26\x74\x89\x2b\xac\xf6\xea\xba\x66" "\x12\x4c\x79\x7e\x1e\xbf\x91\xe1\xb5\xf1\x2e\x52\x04\x04\xd2\x13\xb1" "\x27\x70\x96\x6d\x5c\x5f\x34\x35\x16\x9f\x88\x67\xfa\xed\x01\x07\xd2" "\xcd\x4c\xf0\x63\x8e\x4f\x1c\x48\x81\x22\xda\x75\x16\x82\x0c\xc3\xd1" "\x2c\xdc\x9f\x66\x37\x78\x45\x53\x52\xd2\xbe\x1d\x8d\x3c\xd6\x11\x80" "\x83\x04\x55\x4b\xde\x60\x1e\x4e\xc4\xc9\xaa\x50\xec\x22\x64\x8b\x12" "\xf4\x5c\x8d\x84\xbd\xcf\xc8\x5f\x94\x21\xd5\xaa\x5b\xcb\x3a\xb0\x0c" "\x72\xbc\x1d\xea\x95\xba\x0a\xfe\x25\x4d\xf5\xd8\xb4\x0d\x53\xad\xf1" "\xd4\xfe\x1d\xc3\x74\x4b\xd4\x86\xe3\xeb\x14\x77\x5f\x4f\x4c\x33\x3f" "\x75\x19\x75\xa4\xa8\xb5\xbf\xa4\x97\x85\x06\x33\xaf\xf3\xff\x98\xde" "\xb5\x3d\x1b\x51\x5a\x08\xc4\xc4\x74\xbc\xce\x46\x14\x9d\xfd\x5b\xec" "\xe5\x1d\x1d\xfb\x6e\xaf\x59\x3f\x8e\xe0\x37\x40\x4a\x5c\xe5\xed\xc2" "\x88\x70\x06\x05\x9c\xd3\x74\x34\x48\xab\x97\x78\x99\xf1\x05\x40\xb5" "\xa5\xea\xc1\xb9\xd4\x34\x66\x54\xe4\xeb\x02\x00\x85\x8b\x5b\x92\x52" "\x53\x99\xa8\x78\x59\x85\x92\x69\xd3\xb0\xfa\x4c\x21\x59\xdc\x80\x75" "\x48\x36\x8f\xf7\x01\x07\x66\x06\x37\x8b\x44\xce\xe2\x83\x9f\x05\xad" "\x94\xf6\x59\x27\x0a\xf8\x68\xcd\x67\x4b\x44\x72\x9b\xbb\x8e\xb2\xf6" "\x97\x10\x1b\xf4\xfb\x4f\x96\xd0\x7d\xab\xae\xb5\x96\xa1\xcc\x88\x44" "\x23\xfc\xac\x3d\x38\x05\xbf\xfb\x3c\x8d\xe3\xe8\x01\xd6\x41\x43\x6c" "\xa6\xb1\xf5\x0a\xab\xce\x4c\x7b\x3b\x1a\x24\xeb\x69\x77\xd5\xa8\xc8" "\x4d\x6c\xce\x8e\xc9\xee\x93\xd3\x06\x2a\x4b\xd7\x8f\xf9\x16\xfb\xba" "\x7a\xb2\x28\x83\x8b\xd6\x1f\x25\x75\x9c\x6a\xc8\x65\x0a\xdb\xe2\xb3" "\x46\xe6\x56\x81\xdb\xaf\xbb\x93\x43\x58\xca\x2b\x1b\x85\x4b\xf4\x2f" "\x42\x40\x4a\x15\xca\xf9\x9b\x78\x5f\x13\x2b\x9a\x20\x41\x3b\x2d\x9d" "\x35\x32\x20\x65\x6a\xe2\x71\x88\x3c\xa9\x73\x34\x30\xdb\x09\xb5\xe8" "\x57\x8e\x9d\x4f\xff\x03\x2b\x0e\xe7\x92\xf4\x29\x79\x10\x89\xd9\x38" "\x76\xa3\x36\x65\xa3\x5c\x42\x0a\x06\x86\xc1\x25\x00\x52\x42\x55\x1d" "\xf2\x76\x73\xe0\x82\x6a\x1c\x38\xbc\x02\x8c\x10\x4e\x0f\x95\x8a\xe1" "\xff\xb2\xd5\x22\x1f\xd1\xa3\x6e\x59\x80\x65\xee\xd6\xa4\x49\x56\x7b" "\x41\xc0\x27\xb6\xfa\xa4\x61\xd3\xae\xee\x8d\xfb\x62\x85\x66\x1a\xf7" "\xfd\xcf\xa4\x84\xfe\xe6\x54\xb6\x33\x34\x2e\xb1\x22\xfe\x72\xd5\xd6" "\x8e\xa4\xcf\xc9\x88\xca\xbb\x0d\xf3\x9b\x8c\xbd\x06\x4d\x48\x9f\xcb" "\xc9\x0b\xf3\x13\xf3\xa2\x97\x97\xd4\x79\xa8\xfc\x12\xcf\x5b\x9e\xad" "\x09\x07\xa2\xdc\xa5\x68\xbc\x0f\x40\xd0\xfa\x4a\x9c\x37\x58\xf9\xbf" "\xd1\xac\x36\x62\xa9\xf0\x42\x60\xef\x0d\x2b\x86\xa0\x2d\x23\x75\x9b" "\x21\x0f\x38\x83\x0c\x4a\x22\x46\x49\x18\x6b\x6e\x4b\x87\xc6\xb4\x57" "\x21\x7c\x86\xf5\x02\x52\x19\x40\xca\xf1\xe5\xb2\xea\xdb\x72\x95\x1a" "\x79\x0c\x94\xdd\x74\xb9\x29\x23\x29\x47\xb0\x1c\xef\xd5\xa1\x48\x3e" "\x12\x7b\x1b\x6d\x21\x63\x17\xb5\x81\x45\x5f\x9c\xf9\x68\x76\xaf\x83" "\x7e\x5f\x88\xcc\x38\xa4\x6e\xb2\xfb\x6c\xd7\xfc\xc6\xfc\xe1\xa2\x64" "\x16\x7b\x86\x72\x38\x29\xff\xff\xc4\x13\xbb\xf3\xb8\x34\x31\x54\x94" "\x48\x75\xdd\x62\x19\xa9\x54\x18\x31\x4b\x1e\x07\x1d\xd5\x9d\x0e\x96" "\x08\x3e\x02\xcb\x87\x78\x06\x9e\xd5\x41\x37\xce\x98\xbd\x70\x2d\xea" "\xd8\xfc\x74\x99\x2d\x77\x43\xd1\x45\x0f\xaf\x7d\xe4\x4c\x2d\x59\xff" "\x2d\xd3\x39\xb8\x0d\x34\x49\x02\xbe\xa5\xb3\xa5\x64\xf0\x1a\xee\xfe" "\x30\x01\x65\xbf\x3b\x00\xd8\x11\xc7\xae\x86\x6c\xb1\xa0\xa1\xb8\x74" "\x00\xc2\x94\x18\x41\xcd\x2d\x69\x53\x30\x8f\x1a\x96\x3f\x1c\x6d\x44" "\x86\xe7\xe4\x5d\xaa\xbf\x0b\x06\x6a\xd8\x88\x4f\x45\x77\x53\x4d\x3c" "\x9f\x3d\x3f\x3b\xbe\x8a\x1a\x30\x88\xd9\xb9\x5d\xa1\xfc\x90\x15\x73" "\xe2\x6f\x5b\x86\xc7\xa8\x68\x42\x9b\x9b\x63\x4c\x9e\x35\xdf\xd0\x53" "\x45\x63\x16\x09\x12\xa4\x3c\x64\xba\xcc\x8e\xa1\xce\xd7\xbc\x1b\x77" "\xa2\x87\x16\x70\x0e\x50\x19\x05\xc9\xe8\x1e\x19\x02\x41\xe0\xed\xbf" "\x4f\x89\x4a\xee\x40\x47\xc5\xb5\xfb\x58\xa3\xdb\x4a\xfa\xf7\x67\x90" "\x69\x0f\xdc\x12\x89\x23\x6f\xbf\xc5\xf6\xcf\xf5\x40\xeb\x82\xde\x80" "\x44\xd1\x76\x58\xfb\x05\x4b\x19\x8c\xc2\x88\xcc\x43\xaa\x5d\x80\x5a" "\x51\xca\xda\xc3\xe7\x5c\x8f\xd8\x2a\xd0\x15\xa0\x49\x32\xcb\x6f\x6b" "\x53\xaa\x4e\x8d\x9d\x84\x01\x8f\xf8\xdb\x0f\x75\x6d\x6b\x5d\xb4\xe0" "\x6a\x68\x9b\x52\xfe\x84\x71\xb9\x23\x0c\x2d\xd1\x4d\x04\x2c\x1f\xea" "\x45\xc3\xd2\x45\x23\x51\xa4\x22\x24\x21\x36\x66\x10\xd8\x07\x85\xf7" "\xe4\x74\x74\xd4\xad\x58\x11\x63\x13\x81\x3d\x4d\xb3\x17\x6d\x93\xc4" "\xe2\x9e\x5c\x75\x62\x80\x68\x79\xdd\xc7\x5b\x9c\xfc\xf3\x8d\x6a\xed" "\x01\x5c\x0f\x4d\x52\x30\x2a\x51\x21\x51\x87\xbf\xe2\x54\xd6\x06\x5b" "\xd1\x42\xcc\x9b\x9e\x03\xf3\x2e\xbc\x96\x86\xad\x0d\x0c\xb3\xfc\xf0" "\xaf\xa3\x20\xa1\x5f\x37\xcf\x59\x16\x00\x63\x6a\x4e\xf8\x4c\x75\x6c" "\x0d\x42\xab\x98\xbc\x24\x79\xf0\xd5\xd2\x30\x35\x9f\x62\x24\x47\x10" "\x18\x44\x43\x0a\x75\x55\xa4\xcb\xc7\x02\xb5\x5a\x4a\x6e\xd9\x64\xcf" "\x39\x9a\x1a\x49\x3e\x40\x55\x5f\x62\x2d\xa1\x64\x30\x73\xa7\x86\xa3" "\x42\x5d\x95\x09\x0b\x9b\x0e\x20\x52\x11\x87\xe9\xe2\x0d\x35\xf4\xe0" "\x61\xe6\x20\x1e\x67\xe8\x44\xd8\x84\x57\xf7\x51\xe5\x51\x9d\xd3\x0d" "\xf9\x25\x1f\x1c\xe2\x83\x6e\x0b\xf6\x1e\xef\x8f\xc6\xed\x22\xe4\x88" "\x71\x86\x31\x65\x66\x27\x8b\xec\x46\xaf\x38\x23\xed\x53\xe3\xe1\x8c" "\xa5\x74\x11\x24\xdc\x53\xca\xdb\x5f\xf0\x84\x6c\xc1\xc6\xb9\xc0\x72" "\xbe\x6d\xea\x18\x7e\x83\x36\xeb\x6b\x6b\x70\x29\xef\x79\xff\x3b\x29" "\x99\x93\x8c\xc5\x9a\xaf\xa1\x61\x8f\xc4\x55\x6c\xe3\xc8\x1f\x99\x41" "\x4d\x5d\x79\x53\x8a\x83\xee\x9d\x8a\x9a\xd0\xb9\xe5\x70\x60\xd4\xbe" "\x9c\x53\x26\x6f\x41\x84\x55\xd7\x60\xf4\x23\xa1\x64\x2e\x9e\xdf\xcc" "\xed\xe2\x9d\x21\x89\x1d\x74\x21\xad\x0f\x1c\xef\xe4\x72\xd0\xef\x84" "\x96\x55\x75\x41\x98\x71\x37\x47\x27\xbf\x5f\x1d\xc7\x20\x57\xa1\x8e" "\xd4\xd7\xe0\xa2\xdd\xd6\xd1\x8b\xeb\x2c\xc3\x71\x86\x09\x81\x4c\x29" "\x68\xf2\x74\x65\xb0\x0f\xb4\xb4\xa6\x43\x59\x62\x97\x22\x32\x05\x83" "\xa0\x56\x44\x69\x3e\x6f\xca\xdd\xe0\xef\xc1\x2e\x66\xa0\xc8\xe4\x83" "\x11\xf0\x55\x0a\xb8\xfb\xc1\x55\x6b\x69\xbb\x2a\x5a\x0c\x03\xf1\xa5" "\x9d\x67\x04\x6d\x7a\xcd\x5b\xeb\x9f\x7f\x9a\xe6\xeb\x18\x58\x04\x31" "\x62\x4d\x63\xff\xe2\x94\xea\x54\x97\xa6\x5e\xc3\x89\x1f\x4c\x70\xb2" "\x6b\x7b\x17\xa9\xf8\x21\x45\xe5\xd5\x15\x6d\x6b\x33\x55\xad\x24\x9b" "\xb6\x61\x68\xbb\xb7\x45\xd0\x0c\x40\xd6\xef\x42\xd5\x2a\x03\x2c\xf6" "\x2c\xae\xea\xec\x31\xf4\xc8\x5a\xc4\x03\xcb\xb0\xc6\x75\x69\x53\xf0" "\xdd\xbf\x79\xda\x0c\xfa\x6c\xcc\x1c\x40\xde\x43\xbc\x4a\x10\xa7\x00" "\xb9\x83\x22\xe6\x71\x22\x5e\x80\xe6\x63\xd3\x01\x92\xff\x56\x11\xc4" "\x4c\x09\x53\x51\xbb\x69\xa4\xe1\x4c\x11\xa3\xd5\xb0\xb5\x3e\x78\x95" "\x46\x99\x76\x05\x16\x13\x4f\x31\x48\xe7\x1a\x2b\x0b\xb0\x4b\x24\xbb" "\x1a\x2c\x2b\x50\x3f\x56\x24\x9e\x0a\x2c\x63\x8f\xf4\x0e\x7c\x2c\x7d" "\x50\xef\x71\x96\xfc\x98\x93\xe1\x8c\x0a\xc3\xfc\x5a\x4c\x0d\x23\xee" "\x08\x08\x0f\x98\x4d\xc6\x43\x85\x4b\x54\xdf\x4a\x63\x8a\xf2\x9d\xc5" "\xdf\x79\xf9\x05\xc4\x13\x3c\xe2\x63\xf3\xb2\xbb\x55\xfa\x7d\x56\xfa" "\x82\x79\x56\x87\xe6\xee\x5c\x68\xcc\x13\xd7\x1e\x44\x36\x7e\xa8\x67" "\x04\x09\xcf\x22\x31\x99\x0c\xc6\xd0\x6e\x5a\xae\x2f\xc3\xaf\x15\x37" "\xb3\x3b\x42\x77\x5b\x40\xbb\xa3\xaa\x41\x70\x16\xfb\x9d\xd8\x9f\x90" "\xa8\x91\x96\xc1\x04\x01\x7a\x68\xf7\x52\x7b\x8b\x95\x8e\x38\xf9\x64" "\x68\x32\xa7\x79\x00\x45\xfe\x39\x4c\xe4\x1b\xcb\xd1\xcb\xcb\xe5\x2c" "\xd7\xe5\x6c\xec\x7b\x28\x56\xe4\x48\xfa\x5d\x7e\x83\x77\x98\xb8\x99" "\xf0\x5a\x2c\x2f\xbe\x6d\x9f\x1a\x7b\x19\x3b\xbf\x7c\x70\x44\x4d\x6a" "\x37\x81\x0d\x4d\x19\xd3\x59\xf9\xcd\x6b\x8a\x6e\xf2\x23\x0b\x73\x5f" "\x8b\xeb\xe0\xcc\xec\x94\xe4\x4e\xd9\x52\x34\xbf\xa4\xa3\x6a\x2f\x0e" "\xe9\xfd\x5c\xa7\x3d\x69\x73\x44\xd2\x84\x36\xe0\xfa\xb8\x1e\x73\xf4" "\x47\xbb\x14\x4a\x70\xaa\xf9\x6a\xcf\x6f\xf5\x2c\x47\x37\xe7\xa4\xde" "\xbc\xd2\x85\xbd\xb5\x4e\x36\x3d\x84\x2b\xc9\xa7\xd1\x80\xc1\x6f\x01" "\x0f\xe4\x07\x8b\x41\xc4\xc3\xe5\x65\xc3\xed\xd6\x4e\x61\xf9\x95\xab" "\x00\x86\xdb\xdc\x02\x6d\xc1\x82\x5b\x8c\x45\xed\x96\xed\xd8\xd2\xbd" "\x9d\xaa\x69\x9e\x5d\xa3\x33\x27\x4d\x6b\xee\x20\x97\xc0\x04\x46\x28" "\x48\xcd\x16\x84\x9f\x95\xcd\x22\x52\xc4\xc8\x70\x58\xa8\x21\xed\x97" "\x7e\xd7\x51\xb7\x7b\x0a\x8f\xc0\x96\x6b\xf3\xa3\x0c\x26\xd4\x9f\x31" "\x85\x78\x2a\x7d\x31\x4e\x89\xf0\x39\xa1\x5e\xde\x45\x85\x38\xf1\xad" "\xa8\xeb\x83\x6a\x36\xbb\x5d\x82\xc4\x02\xe3\xfe\xeb\xd3\x7e\x7b\x7c" "\x66\x7a\x1c\x82\xed\xc8\x72\x00\x72\x78\x9f\xa5\xf3\x88\x03\x9d\xaa" "\x73\x1c\xe7\x4d\xbd\x5a\xa8\x96\x5b\x7e\xe9\x9f\x6c\x27\x10\x35\x23" "\x9c\xa1\xc3\x4c\xdc\x3c\x57\xbd\x85\x10\xde\xe0\x8f\x74\xcd\xa3\x70" "\x95\xb1\xb0\x98\x99\x79\x98\xfa\x26\x7e\x0b\xe1\x5d\xe4\x74\xb2\xc7" "\x37\x93\x6c\xac\xcc\xb4\xba\x44\x11\x25\x70\xbb\xd1\x3f\x87\x0b\x55" "\xf3\x76\x3f\x77\x72\x4b\x58\x6d\x6e\x26\xc3\xe7\x2b\x20\xbb\x13\x27" "\x2f\x2e\xe3\x31\xbc\xab\xd4\xa7\x99\x80\xa8\xd2\x96\x5c\x20\xda\x2a" "\x39\x18\xc8\x55\x21\x5f\xec\xce\x95\xd2\x9b\xec\x58\xf5\x22\xd3\xd6" "\xd2\xa5\x2c\x4a\xc0\x80\xff\xfc\xb3\xee\x7f\xb9\x85\x91\xf9\x9b\x7c" "\xfb\x7b\xb1\x24\xcc\x20\x07\x80\x30\x75\x6a\xee\x8f\xd2\x84\xdf\x06" "\xcd\x5f\x07\xc1\x3f\xd5\x6e\x53\x81\xb1\x9e\x0a\x3a\x9f\x41\x2a\x8d" "\x27\x42\x8c\xb6\xaf\x00\x78\xe4\xdc\x8c\xe4\x83\x66\x30\x36\x0a\x5c" "\x3b\x98\xff\x5e\x6c\xba\xc1\xd9\xd2\x9d\xe9\x83\x8a\x84\xd4\x72\x2c" "\xee\xa3\x76\x5b\xe3\xdf\x99\x84\xcf\x13\x97\x70\xf3\xfb\x98\x6b\x9c" "\xc9\x18\x5a\xb7\x87\xf5\x4b\xe3\x3d\x46\xc5\x4d\xe7\x4d\x94\xd1\x3f" "\x74\xec\x70\xcf\xbe\x16\x05\xc0\x0d\xb7\x9f\xa8\xde\x64\xcd\x83\x40" "\x90\xa3\x5c\x80\x75\x9f\x83\xc8\xfb\xef\xcf\x9a\x27\x6d\xde\x8a\x84" "\x98\xd0\x84\xb4\x61\x95\x78\xec\xcd\xda\x26\x51\xa4\x75\xf7\x33\x67" "\xbd\xa9\x68\x94\xbb\x36\xeb\x86\x80\x35\x25\x16\x94\xcb\xb7\x45\xfe" "\xb1\x50\x55\x5a\xda\x09\x90\x94\x97\xff\x1d\x9c\x8a\xee\x7a\x35\xb7" "\xc8\xb2\xfc\x64\xff\x48\x3f\x4f\xd3\x49\x1e\xd5\x23\x04\xe6\x01\x0b" "\x9b\xf2\xaf\x8c\x5b\x8e\x16\x2a\x38\x3a\x0b\xf0\xbf\x10\x8c\xa7\x8f" "\x50\x86\x13\x2b\x2b\x1a\x29\x58\x1f\x32\x38\x41\xc2\xf1\x89\x50\x98" "\x98\xd9\x32\x43\x6e\x5c\x1e\x69\x3e\xd9\x1f\x05\x24\xda\x02\x6f\xec" "\xaa\x2b\x7e\xfa\xb5\x4a\xee\xf1\x20\xbe\x61\xde\x45\x71\x71\xc5\x88" "\x11\xe0\xca\x8a\x76\x00\xe0\xac\x24\x9a\xa5\x79\xd7\x8d\x2e\x2b\x1d" "\x6f\x41\xa3\xda\x46\x76\xb6\x69\x0c\xa0\x24\x92\x51\xf5\xb4\x8b\x9a" "\x38\x20\xac\x5b\x25\xa5\x2c\xc0\x1b\xc3\x31\xc2\x40\x39\xb6\xf4\xbf" "\xab\x72\xd5\x83\x8a\x35\x62\x92\x59\x93\x0d\xea\x93\x6f\x8c\x60\xb4" "\xf1\xb1\x89\xdb\x1f\xd1\xb5\xe7\xe6\xc8\xa8\x42\x70\x7a\xd6\x75\x6d" "\x09\x8a\x9a\xb5\x43\xcd\xe3\xe1\xd1\x16\x19\x83\xea\x91\xb7\x32\x2e" "\xe2\xa7\x13\xbe\x3b\xad\x36\x9d\x81\x12\xfd\xc7\xf1\xac\x7b\x51\x22" "\xd5\x5d\xc5\xae\x44\x3e\x10\xdb\x71\x1d\xdd\x66\x19\xff\xbf\x96\x06" "\x8e\x28\x91\x1b\x1f\x54\x38\x84\x13\xa1\x79\x58\xd6\x1c\xa0\x74\x65" "\xb5\x46\x99\xa1\x35\x19\x15\x30\x0c\xb8\x26\xd3\xbf\x7f\x4f\x21\x7b" "\xba\x0e\xd3\x19\x5c\xbd\x07\x7b\x67\x16\x7b\x9a\x03\x04\x0a\xfc\x23" "\x7f\x3b\xb3\x6e\xdd\x9f\xed\x33\xd7\xd6\xe7\xc9\x49\x3f\xec\x34\xbe" "\x65\x43\x88\x0b\x0b\x44\x2d\x83\x51\x49\x6f\x2e\x8d\x60\xd4\xd9\x84" "\xcc\xa7\x43\x98\x3c\x0a\xfa\xb9\xcd\xed\xd5\xa9\xd7\x74\xa1\x21\xe9" "\x12\x30\xd3\x59\xc2\x7a\x3d\x7b\x4d\xb3\x8c\xe7\x3d\xb7\x47\xaf\x3c" "\xa0\x64\x70\x90\x1f\x26\x05\xc0\x31\xa7\xc9\xb7\xd1\xbb\xb1\xe8\x38" "\xd3\x6a\x4d\x39\xb0\x39\xe8\x0b\xcd\xdf\xae\xcc\xa9\x06\x70\x5f\xe8" "\xc8\x44\xe9\x3d\x5a\xee\x49\x4d\xc6\x2c\x7b\x4f\xcb\x6a\xbe\x09\xac" "\xf9\x25\xef\x42\x2d\xc0\x91\x85\xb5\x3e\x96\x07\x95\xc5\x65\x00\xb4" "\x3f\xaa\x6e\x89\x72\x0a\xee\xe7\x24\x53\x2f\x89\xe6\x0e\x20\xb1\x2c" "\xd4\xf8\x32\xb9\x51\x89\xbf\x45\xb9\x6a\xa7\xaf\x10\xcf\x82\x98\xb4" "\x42\x78\xde\x1c\x67\xe2\xd7\x1d\x81\x12\x40\xa7\xaa\x2d\x1d\x6d\xe2" "\x2e\x5b\x8c\xef\x4a\x1f\x30\x9d\xcd\xb8\x1c\x5a\x02\x8a\xab\xda\xbd" "\xdc\x96\x37\x97\x4c\x2d\xc1\x9b\x60\x45\x8f\x09\x54\xbc\x75\x1b\x7a" "\xe6\x28\xac\x60\x2e\xb7\xc5\x2c\x7f\xac\x0c\x16\x21\xee\x77\x57\xfc" "\x5b\x00\x2a\xd7\xe8\xfb\x66\xfc\x7d\xa0\x89\x65\x47\xab\xf0\x1e\xe0" "\x91\xc0\xcf\xe1\xd0\xfc\x66\xe6\xe0\x35\x99\xbb\x2a\xa7\x60\x8a\x72" "\xc3\x02\x03\xaf\x5e\xac\x39\x15\xa0\xb6\x61\x6b\x61\x19\xc4\xa0\x96" "\x54\xde\x2f\x56\xe5\x32\x96\xd1\xf8\x48\x7c\xd7\xec\x36\xc8\x68\x94" "\xba\xb7\x2e\xc3\xce\x61\x20\x8f\x84\x84\x32\xd4\x5a\x27\xca\xfc\xfb" "\xf2\xa2\xc5\x6b\x58\xe0\x17\xc7\x6a\xc7\xe9\x43\xaf\xf0\xb4\xac\xaf" "\x84\xdf\xb3\x43\xd9\x3e\xfb\x29\xc5\x18\xa9\xd5\x52\xc3\x6a\x3e\x44" "\xc6\xea\x94\x86\x73\xbc\x2a\xa7\x1c\x5a\x87\x3d\x1d\x30\x1a\x9c\x8b" "\x02\xf1\x9c\x08\x6f\x92\x2f\x0b\x3e\x4f\x7d\x14\xe8\xa5\x9c\x01\x78" "\x09\x18\x8e\x2e\x1b\x4d\xc6\xb5\x5f\xb8\xad\x82\xb1\xc0\x44\x60\xb5" "\xff\x2e\x9b\x8f\x47\xd3\xe8\x33\x59\x95\x19\xb7\x9a\xc6\xd9\xab\x28" "\x2d\xb4\xa5\x56\x54\xf6\x03\x96\xd2\xe7\x95\xc4\x1f\x52\x73\x5d\xde" "\x2b\xf8\xe2\xeb\xbc\x8c\x74\x29\x13\x35\x9e\xda\xdf\xcb\xda", 8192); *(uint64_t*)0x400000001500 = 0; *(uint64_t*)0x400000001508 = 0; *(uint64_t*)0x400000001510 = 0; *(uint64_t*)0x400000001518 = 0; *(uint64_t*)0x400000001520 = 0; *(uint64_t*)0x400000001528 = 0; *(uint64_t*)0x400000001530 = 0; *(uint64_t*)0x400000001538 = 0; *(uint64_t*)0x400000001540 = 0; *(uint64_t*)0x400000001548 = 0; *(uint64_t*)0x400000001550 = 0; *(uint64_t*)0x400000001558 = 0x400000000300; *(uint32_t*)0x400000000300 = 0x90; *(uint32_t*)0x400000000304 = 0; *(uint64_t*)0x400000000308 = 3; *(uint64_t*)0x400000000310 = 0x2000000004; *(uint64_t*)0x400000000318 = 0; *(uint64_t*)0x400000000320 = 0; *(uint64_t*)0x400000000328 = 0; *(uint32_t*)0x400000000330 = 8; *(uint32_t*)0x400000000334 = 0; *(uint64_t*)0x400000000338 = 0; *(uint64_t*)0x400000000340 = 0xfffffffffffffffc; *(uint64_t*)0x400000000348 = 0x8000000000000001; *(uint64_t*)0x400000000350 = 0; *(uint64_t*)0x400000000358 = 0x2000; *(uint64_t*)0x400000000360 = 4; *(uint32_t*)0x400000000368 = 0; *(uint32_t*)0x40000000036c = 2; *(uint32_t*)0x400000000370 = 9; *(uint32_t*)0x400000000374 = 0x2000; *(uint32_t*)0x400000000378 = 0xfffffffd; *(uint32_t*)0x40000000037c = r[2]; *(uint32_t*)0x400000000380 = 0; *(uint32_t*)0x400000000384 = 0; *(uint32_t*)0x400000000388 = 0; *(uint32_t*)0x40000000038c = 0; *(uint64_t*)0x400000001560 = 0; *(uint64_t*)0x400000001568 = 0; *(uint64_t*)0x400000001570 = 0; *(uint64_t*)0x400000001578 = 0; *(uint64_t*)0x400000001580 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x40000000a200, /*len=*/0x2000, /*res=*/0x400000001500); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }