// https://syzkaller.appspot.com/bug?id=75b9434ab41bf479db3f5a7b1624df435fe77ed9 // 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[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x400000002040, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x400000002040ul, /*mode=*/0ul); break; case 1: memcpy((void*)0x400000002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x400000002080ul, /*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; break; case 4: memcpy((void*)0x400000000040, "./file0/file0\000", 14); syscall(__NR_unlinkat, /*fd=*/0xffffff9c, /*path=*/0x400000000040ul, /*flags=*/0ul); break; case 5: *(uint32_t*)0x400000000080 = 0x20; *(uint32_t*)0x400000000084 = 0; *(uint64_t*)0x400000000088 = r[1]; *(uint32_t*)0x400000000090 = 7; *(uint32_t*)0x400000000094 = 0; *(uint32_t*)0x400000000098 = 7; *(uint32_t*)0x40000000009c = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x400000000080ul, /*len=*/0x20ul); break; case 6: memcpy( (void*)0x400000008280, "\xca\xb1\xf9\x2d\x58\x59\x17\x23\x2b\xcf\xa4\x7f\x91\x90\x0c\x93\x63" "\x55\xa8\x3b\x5a\x41\xf6\xf4\x3b\xd8\xb0\xd1\xa1\xe1\x36\x74\xb6\xa8" "\x59\x6a\x83\x76\xe6\x85\x1e\x0b\x96\xde\xcd\x07\x1d\x92\xce\x48\x87" "\xdd\xad\x2b\x82\x18\x38\x58\xd8\x2c\x7d\x11\x94\x80\x24\x60\x7d\x92" "\xec\x0f\x1c\x23\xa4\xe7\x55\xf2\x9f\xa5\x57\xd1\x35\x3a\x3c\xed\x68" "\x0f\x53\x0e\x82\x2e\xed\x64\xb4\xd1\xaa\xf2\x0d\x13\x20\xf3\x58\x3c" "\xad\xb9\xdf\xde\x95\x99\x34\x87\xf9\x6b\xc2\x90\xdc\x10\xcf\xcc\xc5" "\xec\x8e\xa8\x64\x59\x0f\xc1\x67\x8b\x79\xb0\xa3\x6c\x96\x68\xb2\x7a" "\xe1\x42\xd2\x2c\x30\x54\x96\x88\x1a\xf0\xd0\x54\x60\x76\xec\x21\xe3" "\x1b\xda\xb2\x46\x50\x10\xe7\x79\xe7\x14\x00\x36\xd2\xb1\x2f\x59\xb9" "\x71\x79\x2c\xfe\xd8\xd0\x7f\x0b\x8a\xe1\x3e\xe9\x44\x26\x8f\x57\x3e" "\xc1\x1c\x1b\x14\xd5\x38\x80\xa6\x4f\xd2\xfd\xbe\x98\x1f\x4d\x9a\xf8" "\x86\x31\x91\xef\xc0\x3a\x39\xd5\xa3\xf1\x9b\xad\xf6\x5d\xd4\x94\x43" "\x29\x7b\x38\xbf\x0c\x00\x9e\xaf\xad\x58\x79\xcb\x78\xe6\x3b\x00\xe9" "\x61\xde\x7d\x71\x80\x94\x1f\x0d\x1e\x87\xa2\x63\x52\x94\xbc\xb4\x61" "\x9e\x9d\x84\xbe\x18\x16\x78\x43\x25\xd2\x3f\xcb\x9c\x66\x38\x8b\x58" "\x6c\x8e\x71\x9f\x3e\xdf\xa2\xaa\x37\xcc\x3f\x65\x11\xad\xd8\x54\xc1" "\x0f\xe5\x46\xd1\xc1\x1f\x11\xee\xaf\xf2\x4c\xec\xc0\xd4\x7e\xc8\xfd" "\x33\x6e\xc0\x84\x70\xf0\x62\x27\xe4\xa9\x41\x00\x74\xa3\xd7\x15\xeb" "\x6a\x69\x7b\x04\xbd\xfe\xda\x0b\x67\x53\xd8\x80\xd0\x12\xef\x8f\xad" "\xa7\xf4\xed\x64\x9c\xa2\x14\x60\x9e\x31\xca\xce\x9a\x33\x93\x78\x13" "\x01\x2e\x4c\x1b\x78\x7d\x8f\x71\xce\x9b\x49\x5a\x69\xe5\xc8\x81\x0f" "\xf9\x95\x4b\x7b\x96\x74\x3d\xcd\xd7\xe5\x2e\xbb\xf5\x26\xf3\x39\xd3" "\xc8\xad\x25\x50\x32\x6d\x3a\x39\x6d\xe5\xac\x90\x78\x7b\x35\x2f\xea" "\xbe\x01\x3c\x40\x44\xca\x81\x33\x44\xc9\x7f\x83\x68\x51\xd6\xda\xf2" "\xde\x3a\x8b\x07\xa6\x1d\x10\x52\xbd\x30\x2a\x64\x17\x06\xaf\x76\x29" "\xa0\x42\xdc\x2f\x03\x74\x67\x1b\x28\x7f\x13\x25\x76\x3e\x18\x18\xbe" "\xba\x9f\x7c\xab\x9e\x25\xd6\xf8\x74\x9f\x7d\xea\x4c\x5e\xf6\x84\x72" "\x3d\x33\x93\x8a\xca\x32\xe1\x9b\x1c\x6a\x62\x37\xd8\x99\xfb\x39\x7e" "\x90\x23\x76\x4b\x3f\x4d\x63\x99\x88\x55\x33\xa8\x02\xe4\xd3\xca\x76" "\xf2\xe0\x23\x4e\xd6\xd7\x25\x7f\x8c\xeb\xdd\xc9\x00\xaf\x88\xcc\x21" "\xee\x28\x16\x51\x30\x45\xe9\x2f\x71\xfc\x85\x23\x89\x4d\x68\x46\x78" "\xf1\x7b\x5f\xdb\x4a\xde\xda\x98\xfc\x01\x9c\x0b\xa0\x5e\xfe\xff\xef" "\xf3\xbb\xda\x1d\x6d\x84\xa9\x80\x02\xa7\x42\x37\xcb\x8d\x13\xcb\x30" "\xd8\xa9\xa7\xe4\x7e\x4d\xa8\x27\x3a\x47\xdf\x4e\x6e\xa5\x30\x36\xb5" "\xb1\x54\xb9\x59\x7e\x6e\xb0\x0f\xca\xd2\x9e\xd0\x4a\x82\x0b\x1c\xe8" "\x07\xbf\x18\x18\x34\x41\x22\xa6\xf0\xaa\xc5\x2d\x24\x42\x6f\xee\xba" "\x0a\xf5\x69\x25\xcb\x4a\x1e\x70\xa8\x42\x51\xf2\xb4\xd4\x69\x3e\x68" "\x95\x18\xa0\xe1\x59\x64\x7b\x5b\x60\xa6\x2d\xb6\x99\xa2\x52\x75\x52" "\x0c\x20\x86\x52\xce\x44\x01\xbb\x5d\xcd\x63\x3e\x7c\x88\x97\x58\xd3" "\xd2\x13\xf4\xdb\xe6\x9c\x9b\xb7\x6e\x80\xb6\xe8\x92\xbb\x5f\x58\x09" "\xe0\x42\xee\x5c\xb1\x98\x2a\x23\x73\xb1\x88\x67\x11\xd1\xe6\x8d\x0b" "\xc3\xd4\xc9\xd6\x9a\xc6\x05\x43\x2b\xf8\x4c\xd8\x11\x04\xe7\x7c\x71" "\xcd\x7c\x07\x08\x24\x4f\xc9\x42\x8e\xdd\x52\xf8\xcc\x8f\x30\x23\xb4" "\xc6\xd3\xbb\xad\x7a\x9b\x87\x41\x11\x09\x8c\x46\x52\xb3\x4c\x42\x8a" "\x8f\x78\x9c\x5e\x5f\x3f\x84\x35\x4a\xb7\xaf\xec\x1a\x7b\x11\xd2\xa3" "\x47\x71\xeb\xad\x2f\x15\xc1\x69\xa6\x1b\x43\x1c\x8a\x1c\xca\x9c\xa1" "\x59\x6f\xce\x65\x24\x2d\x03\x81\x4e\xbf\x97\x7d\xa9\xbb\xde\x57\x07" "\xb2\x2b\x50\x02\xcc\xe6\x8b\xd0\xf6\xd1\x96\xdf\x34\x1c\x96\xbd\x0c" "\xf0\x91\x6b\x87\x75\xe7\x50\x21\x66\x3e\xa8\x2c\x99\xa9\x0b\x84\x4c" "\xc5\xf8\xb6\xc5\x6b\x21\xb1\xfb\xbb\xf6\xfb\x40\xed\x0c\x29\xee\x4e" "\xcc\x29\x98\xdf\x2c\xbe\x3a\x4d\x75\x02\x5e\xf7\x3d\xd9\xf3\xaa\x5b" "\xc7\xaa\x69\x4f\xe5\x73\xa7\x34\x53\xc9\xff\x87\x3d\x0a\x88\x40\xaf" "\xd9\x1b\xe3\x19\x18\x18\x36\xde\x45\x26\x0b\x4e\x25\x23\x94\xed\xae" "\x58\xf8\x40\x85\x8a\x9b\x64\xf0\xff\x37\xbb\x18\x20\x03\x1e\x56\x32" "\x50\xe6\x2c\xee\xa5\xa7\xc4\xd2\xcd\x4d\x5d\x10\xe5\x71\x76\xfc\xf5" "\x76\xe7\x74\x92\x0d\xb0\x6b\x36\xea\x02\xf9\xca\xe9\xc1\x08\x7b\xd1" "\x86\x6f\xb4\xbc\xf7\xfb\xf3\x93\x09\x3b\x33\x98\x60\xa6\x1c\x61\x24" "\x80\x00\xa2\xa1\xbb\xc9\x82\xfa\x69\x1e\x31\x1f\xa1\xbf\x2a\x38\xaf" "\xdf\x08\xb5\x74\xee\xd0\xdf\x42\xbd\xc3\x0c\x3d\xb7\xcd\xcb\x71\x68" "\x7f\x48\x07\x00\x77\xf9\x1f\xef\x93\xe8\xe4\x7e\x24\x8d\x3e\x53\xe8" "\xa7\x9f\xcb\x5a\x8f\x8a\xa3\x9b\x3b\xfa\x2d\xd8\x8d\x5c\x58\x40\xd5" "\x17\xae\x8c\x13\x2d\x42\x3a\x37\xa8\xbe\x33\x01\xd6\x2a\x99\x75\x3b" "\xc7\x2f\x67\x42\x05\xa1\x18\x50\xe0\x45\x43\x0a\xbb\xdc\x4e\x68\x22" "\x3a\x93\xc7\x6d\x6d\x2f\x1d\x64\x6a\xf1\x0a\x15\x70\x57\x93\xe2\xfc" "\x5a\x53\x2a\xf3\xdd\xa8\x8f\x52\x06\x3a\x09\x1f\x1f\x79\xcd\x5a\x5b" "\x23\xea\x77\x42\xb1\x49\xea\xb1\xaa\x43\xc2\x1c\x2f\x15\x22\x7a\x1f" "\x94\xb5\x58\x0a\xdb\xb1\xe1\xc4\x9a\xde\x49\xd6\xe8\xb8\x38\xcf\xf4" "\x3a\xa2\x42\x66\x51\x81\x7f\x47\x92\x52\xc8\xef\x7a\xf9\xe4\xa5\xad" "\x33\x83\x9b\xe6\xc1\x5b\x50\x01\x6c\x59\xf1\x3c\x26\xcf\xca\x79\x6c" "\xfc\x01\x20\x7a\xcc\x69\xe9\xd3\x95\x2f\x6e\x71\xc9\x75\xbc\x77\xd5" "\xa0\x01\xf6\xf6\xc0\x44\x77\x0f\x54\xd8\x6a\x45\x18\xa4\x89\x8e\x31" "\x36\x98\x8d\x64\x3d\xd2\xde\x90\x78\x59\xf0\xb4\xd4\xde\x2a\x2d\x46" "\x1b\xa5\xe0\x5c\xff\x49\xed\xa8\x67\x72\x79\x9b\x2e\x79\x47\xfd\xbb" "\x89\xfc\x5b\x03\x47\xe8\x7f\x1b\x9d\xbb\x94\x84\x2c\xc1\x45\x7d\x07" "\xf3\xe0\xc4\x13\x42\x51\x0f\x5c\xcb\x55\x1c\xdf\x0f\xca\xc1\xa7\x58" "\x04\x1b\xff\x75\x81\x2d\xe1\xb2\xab\xf3\x41\xed\x5f\x66\x7c\x9b\x05" "\x81\xd2\xc3\x3e\x0b\x17\xf1\xb4\x6c\x22\x87\x39\x9c\x62\x25\x2e\xdb" "\x9c\x1c\xf2\xb8\x0b\x7a\x1b\x4c\x3c\x90\x3a\xa4\xcf\x53\x32\xa2\x99" "\x8b\x90\x72\xf6\x1f\x58\x9a\xe5\xdf\x11\x68\xf8\xd1\x8e\x98\xfc\xe2" "\xbe\xc1\xd5\xd8\x76\xf9\x75\x70\x17\xb7\x34\x95\xa4\xe8\xf4\xf2\x42" "\x3c\xde\x88\x75\xaa\x8c\x95\xa9\xce\x18\x0c\xac\x66\x90\x65\x7b\x8a" "\x70\xe5\x54\x1d\x5e\xf4\x65\x75\xcd\x74\xe0\x63\x75\x9f\xe4\x88\x9f" "\x4d\x97\x37\xa6\xc9\x73\x2f\x8b\x7f\x78\x36\x50\x88\x14\x09\x3b\x9b" "\xda\xc5\x73\x39\x38\xe7\x61\xb3\x64\x29\x10\xd4\xdf\x0b\x64\x6c\x1b" "\x95\x83\xa5\x02\x24\x69\x88\xe9\xab\x78\xde\x3d\x01\x1e\x85\x90\xe4" "\x8e\xad\xfc\xdb\x70\xc8\xaa\xd6\xdf\xbe\x1d\xbd\x3e\xf2\x0d\x9b\xa3" "\x93\xdb\x4e\x6c\xf9\x1e\x3b\xb4\xe8\x48\x83\xc6\x0d\xc2\x0e\xd9\x74" "\xa5\xde\xcd\xe1\x2d\x3c\x5a\x1c\x9a\x00\x99\x9f\x8e\xef\xc2\x44\x46" "\x5f\x51\x84\x25\x82\x0b\x97\x13\xcb\xfc\x60\x27\xf4\x27\xb9\xcd\x87" "\x56\xed\xec\x5b\x3a\x03\x01\xa0\x1e\xbb\x12\xc6\xd4\x12\xee\x34\x22" "\xae\xb8\xb2\x91\x61\x9f\x62\xf4\xce\x41\x51\x11\x56\xf7\x3e\x54\xb5" "\x09\x70\x51\xea\x77\x7a\xf7\xcb\x73\xb3\x6e\x12\x74\xce\x1a\x38\x92" "\x00\x74\x66\xcc\x79\x3e\xb0\x51\x5b\x89\x84\xac\xb9\x9c\x04\xc7\xea" "\xa5\x1e\x17\x5b\xd7\x3d\x99\xbc\x0c\x67\xc8\xea\x84\xd8\x08\xa7\x90" "\x6a\x6a\xd3\x30\xba\x2c\x96\x51\xb2\xab\x82\xd0\x78\x1a\x96\x98\x73" "\xdc\xdd\xb0\x68\xc1\x5b\x78\x99\xfd\x56\x0a\x1c\x3d\x44\xb3\x4e\x81" "\xcc\xe0\x79\xc4\x6f\xd8\x65\x22\x05\x26\x59\xe2\xc3\x15\x1c\x79\xa8" "\xcc\xab\x1d\xfc\xdb\x91\xf5\x3c\xa0\x67\xea\x1b\x2a\xa5\x07\x27\x8e" "\x41\x66\xe8\x17\xeb\x0d\x7d\xea\x67\xcd\xe1\x59\x8a\x1b\xdb\x76\xa8" "\xca\xf8\x2a\xdd\x2b\x43\xfd\xd1\x0b\xf8\x0b\x0d\x2f\x32\x36\x58\x49" "\xc4\x25\xd6\xac\x3d\x2d\x88\xa7\x63\x78\xd2\x39\x61\xeb\x96\xc8\x42" "\x2e\x78\x5e\xa6\x1f\x33\xe4\xda\xec\x02\x39\x3d\x51\xf4\x4b\x17\x77" "\x55\x74\x9f\xe8\x4b\x43\xf5\x24\x6d\x20\x17\x78\x00\xaf\x05\x75\x2a" "\xf5\x24\x26\x5f\x34\xf6\x2b\xd5\x16\x7f\xa6\x47\xd2\x11\x8a\xa9\x05" "\xa1\xaf\x53\xf0\x7e\x74\x47\xbe\xe2\x96\x75\xcc\x23\xf5\x47\x33\x9a" "\xf1\x40\xc0\x81\x8a\xa9\x74\xca\x16\xda\x33\xe7\x67\xd5\x08\xe4\xf5" "\x67\x26\xc7\x07\x6a\xcc\xe5\x7a\x99\x57\xd0\x83\x48\xef\x84\xa3\x91" "\x88\xe8\x00\xca\x44\x68\x2f\xcc\xaa\x9e\xe1\xb4\x2e\x1a\xaf\x77\x38" "\xdc\xed\x1d\xce\x3e\xf2\xda\xdf\xcb\xa2\x86\x3f\x36\xb5\xf8\x08\x0e" "\xd2\x25\x39\xb5\x17\x6b\xc2\xc5\x7e\x52\xe4\xcf\xde\x65\x9c\x1c\xe9" "\xe1\x79\xc7\x9f\x85\xd6\x0c\xa5\x1c\x74\x53\xda\xd5\x93\x19\x0b\x19" "\xa1\xbe\x8f\x5c\x5b\x02\x49\xd7\x00\x79\xf1\x0f\x9d\x0f\x07\xf2\x5a" "\x98\xbd\x95\xe6\xe6\xf7\x11\x01\x84\x2b\x55\x34\x7e\xe0\x08\xd5\x85" "\x22\xe8\xf7\x59\x8c\x16\x36\xc5\x8f\xd2\x09\x84\xa6\xbb\x17\xfd\x47" "\xe7\xdb\x4b\xc7\x28\x54\x05\x4e\x79\x00\xca\xc4\x17\x4c\xf0\xb4\xed" "\xa2\x40\x68\x42\x95\x5f\xd8\xa2\xba\x00\xea\x4d\x49\x0d\xbb\xab\x02" "\xd6\x59\xce\xa4\xc4\x49\xd9\xee\x37\xc8\xf3\x5d\xaa\x47\x40\xb3\x27" "\x36\x93\xee\x2c\x1b\x00\x96\x5a\x79\xd1\x8a\xd9\x8a\xe9\x2b\xf2\xe1" "\xea\x84\xff\x1e\x61\x81\x93\x7d\x38\x76\x5c\xb3\x53\xc6\x22\x3e\xad" "\x12\x57\xd8\x8a\x88\x44\xcb\x0b\xe1\x7a\xec\xc2\xdd\x56\xb7\x8d\xcd" "\x6e\x29\x99\xfe\x69\x5d\xb2\x48\xdd\x68\x27\x5a\x5a\xd0\xf2\x23\xa4" "\x62\x9b\x17\xa0\x40\xa7\x66\xb2\xbd\x23\x76\xd7\x7a\x42\x23\x75\xde" "\x14\xa3\xda\xaf\x4f\xee\x92\xf2\x3c\xa8\x31\x45\x28\x26\xbc\x66\xd0" "\xce\xe2\x04\x9a\xcb\xde\x07\xbd\xbb\x6c\xe2\x28\x14\x7f\x9e\xd4\xf9" "\x43\x73\x01\xe8\xca\x9e\x1a\xce\x06\x84\x70\x0e\x96\x23\xa1\x53\x42" "\x12\xd4\xc5\x57\x71\x2a\x31\x96\xd8\x6c\x86\x07\x7e\x97\x17\x2d\x7e" "\x89\x43\x6e\x95\xe1\xd7\xe7\x62\x9d\x5b\xc9\x08\xe3\x46\xe5\x04\x83" "\x94\x98\x89\x02\x10\xca\x15\xbe\xa5\x1b\xb2\x84\x0f\x12\x75\xd3\x6b" "\x99\x49\x0f\xf0\x70\x6a\xa3\xca\x9e\x89\xf3\x3f\xd9\x9d\xf8\x63\xac" "\xc3\xbc\xa5\x04\xc1\x55\x01\xba\x9d\x98\x79\x99\xee\x11\x8f\x47\xb7" "\x73\x7d\x2d\xfe\x73\xab\x25\x7d\x68\x0f\x98\x3d\xa1\xf5\xfd\x59\x75" "\x49\x1a\xd9\x66\x98\x9f\x7b\x15\xe7\x6e\x4e\x6b\x1a\x29\x87\x80\x1a" "\xdb\x3b\x7c\xd4\xcb\x1d\x2c\x9d\x04\x54\x42\x9c\x29\x55\x64\x3c\x8f" "\xb8\x2c\xcf\x8e\x93\x05\x1c\xc1\x00\x81\xf8\x18\x1a\xf0\xd1\x43\xde" "\xee\x68\x6f\x67\xec\x42\xdb\x1e\x99\x14\xed\x04\x7e\x4b\xf0\x00\x6a" "\xf0\x10\x28\xe3\x83\x94\x51\xfa\x3e\x17\xd3\x35\x86\x02\x2c\x63\xca" "\xfa\xf6\xd0\xfc\x77\x3c\x96\x14\x34\x73\x31\x69\x88\xd3\x2f\x99\x43" "\xd7\x47\x76\x04\xa2\x7a\xe4\xb8\xa7\x09\x3b\xee\x2c\xef\xe1\x0c\xc0" "\x21\x09\xc7\x48\xd0\x67\x66\x92\xa2\x41\x1e\x5c\x3b\x4c\x4c\x1b\x9a" "\xc7\xf9\xb7\x1a\x1a\x71\x26\xda\xcf\x46\x15\xe8\xc9\xc3\xd3\x8f\x53" "\x6e\x8b\x32\xe3\x7f\x40\x6b\x3d\xc4\x4d\xb8\x0a\x00\xd6\xe4\x23\xde" "\xec\x86\x9e\xdb\x32\xa4\x11\x98\x6b\xe1\x51\x7b\x6e\xa4\x5e\x1f\x98" "\x4a\x6f\xbd\x08\xed\xb2\x5a\x30\x51\x22\xfe\x5a\x90\xcc\x46\xaf\x48" "\xeb\xc3\x64\x33\xa1\xf2\x7f\x43\xd8\x54\x92\xea\x60\xfd\x2f\x43\x12" "\x5e\x73\x28\xda\x93\xf7\xaa\xd9\x7f\x97\x91\x01\x12\xfe\xd7\xae\x7b" "\x17\x85\x82\x23\x56\xa5\x25\xdf\x1f\x3a\xb4\x63\x7b\x68\xd9\x2e\xcd" "\x8d\x7f\x23\x49\x73\xc6\x86\xfb\x11\x82\x1b\xb1\xde\x5f\x84\x59\xb5" "\x78\x92\xf1\xda\xe0\x8a\xae\x19\x24\xee\x60\xa9\x04\xd7\xbe\x6e\x66" "\x11\xec\x3d\x00\x00\x21\x52\xab\x7e\x0c\x29\xc7\xbf\x12\x4d\xbe\xc9" "\xa6\xef\xf2\x5e\x61\x9d\x89\xc2\x7d\x18\x7e\x3f\xff\xf6\x3c\x99\x6c" "\x33\xf4\xb7\xe9\x67\xb6\x07\xf3\x6a\x8a\xc8\xdb\xa6\xbe\xb4\x33\x95" "\xc9\xc9\xb2\xe3\xe3\x6d\xe2\x9b\x07\xf9\xc2\xd6\x0c\xdf\xd1\xd0\x28" "\x13\xd4\xe5\x08\xc5\x6b\x99\x40\x5b\x75\x27\x58\xa0\x1c\xc2\x5b\xb5" "\x43\x6e\xa1\xef\xd5\x2c\x53\x6f\xa1\xd2\xfb\x1c\xd9\xb1\xee\x00\x6d" "\x42\xb5\x86\x00\xbe\x2c\x1a\xba\x59\xc4\x80\xcb\x6e\x92\x24\xd7\xa4" "\xdf\x92\x05\x98\x95\x06\x34\x03\x30\x87\xd3\xe3\x56\xf3\x5c\xd2\xf8" "\xb0\x21\xd3\x0f\x4b\xa7\x9b\xc6\x0e\xb6\x71\x5c\x6c\x9b\xed\x84\x64" "\x85\x52\x39\x5c\xff\xa9\x7c\x8c\xdb\x8f\x56\x2f\x8f\x12\x7f\x0e\x6f" "\x86\xdc\x61\xfa\xb1\x1f\xf7\x82\x56\x0d\x88\xcf\x28\x72\xd0\xe0\x7a" "\x27\xf3\x81\x20\xa0\x83\x1a\x93\xc3\x77\x29\x8c\x2e\xd4\xfe\x18\x0e" "\xb0\x78\x42\x2e\x5f\x03\x05\x40\xfd\x21\xeb\xd4\x14\xe6\xc4\x2f\x1f" "\xa5\x49\x1b\x5b\x8f\xdc\xad\xa4\x76\x37\x67\x32\xed\xbf\xd6\x6e\x10" "\xa4\x75\xe2\xc0\xa4\x3c\xcf\x6a\x41\xf7\x87\x9f\x45\x77\xe9\x87\x69" "\x5d\x8d\x50\x97\xf6\x92\x0f\xbe\x2b\x9a\xc2\xcb\x42\x4d\xe7\xaf\xde" "\xd1\xb5\xb7\xdb\x89\xf3\x61\x2c\x48\x77\x70\xd5\x8a\x7b\xb7\x51\x7f" "\x1f\xa7\xa9\x8f\xf6\xdb\x37\x78\xd4\x0c\x5f\x36\xb2\x7d\x23\x3a\x0c" "\x18\x58\x72\x20\xf9\x00\xf4\xa8\xe8\x67\xe3\x3e\x24\xc1\x98\x1a\xcb" "\x34\x45\xde\x99\x51\x32\xd8\xfc\xc5\x8f\x79\xdd\xb1\x47\x5b\xa6\x9c" "\x46\x40\x71\xe9\x5c\x07\x07\xc3\x96\xc0\xb1\xb7\x10\xcc\xeb\x51\xef" "\xba\x5f\x30\xa2\x71\xcd\x45\x6d\x5f\x72\x16\xd9\x0b\x41\x21\x56\xec" "\xb0\x1d\xd4\x1f\x15\xac\x31\x98\x06\x49\xc5\xea\xbc\x7f\xbb\x08\x5a" "\x38\x31\x8d\x43\xb0\x68\x3c\xba\x05\x5d\xeb\x9d\xde\x4d\xc4\x58\x49" "\x35\x47\x35\x08\x83\x7c\x10\x23\x99\x3d\x50\xb4\x34\xb3\x11\xf1\x26" "\xdf\x6a\x0b\xe0\x65\x3b\x97\xa9\x7b\xbc\x9b\x16\x50\x98\xda\xc8\xdf" "\xd6\xed\x6f\x03\x3c\xcf\x7b\x32\xcf\xa3\x29\x22\x96\x22\x2a\xeb\xfa" "\xec\x4d\xcd\x50\x66\xb6\x6b\xe4\x56\x96\x06\x7d\xfa\xb9\x07\xe2\x98" "\x4f\x1b\xb6\x06\x7c\x17\x0e\x06\x17\xe2\x45\xc9\xc0\x9a\x85\xa0\x61" "\xc4\xb7\xe2\x87\x3c\xe0\x57\x1b\x48\xd5\x57\x00\x7d\x5c\x7d\xdf\x5c" "\xc2\xff\xa5\x33\xe2\xa3\x97\x5f\x36\x87\xa6\xd0\x8a\x09\xdc\x1d\x28" "\x5c\xfe\xd1\x29\xec\x88\x7d\x70\xbb\x5a\xde\xd4\x29\xb6\x76\xc2\x42" "\xd5\x7c\x8f\x36\x72\x1b\xf5\x73\x2b\x1f\x25\xec\xed\x0f\xfe\xdb\xa7" "\x25\x44\x86\xc9\xca\xab\x3f\xb3\xe0\xad\x3b\x2d\xc3\x32\xa0\x6d\xad" "\xd3\x9e\x54\x83\xa3\x14\xb1\xd3\x08\x6c\xc1\x98\xb6\xb6\xb2\x72\xfb" "\x56\xe3\x5e\x03\x88\xb1\xdc\xdd\xd4\x84\xfd\xe0\xef\x9d\x85\x5c\xa7" "\xbd\x98\xeb\xf0\xf6\x86\xce\xc7\xd5\xe3\x7f\x7b\x5d\xff\xbe\x4a\xb2" "\x8c\x44\x22\xad\xba\xef\x0c\x45\x64\x9b\x0b\x83\x0d\xff\xf9\x0b\xbe" "\xa3\xb7\x10\x3e\xa9\xdd\x87\xd8\x56\xba\x7c\x5b\xb4\x85\x31\x9e\xec" "\xc7\x1a\xcc\x94\x3c\x73\x3f\x48\x9a\xd7\x2e\x13\xb1\xb2\x32\xcd\x1e" "\xb4\xce\x87\x91\x7d\xaa\xd4\xb0\x40\x5c\x99\x05\xf7\xa3\x55\x01\xc7" "\x53\x32\xd9\xac\xb3\x60\x57\x71\x5a\x6a\xbd\x09\x58\x06\x1f\xda\x86" "\x0c\x00\x00\x00\x00\xbc\x9a\xea\xc4\xf4\x7a\xcd\x02\x29\x27\xc3\x81" "\x01\x21\x50\xfe\xd8\x3a\x99\xc2\xd7\xb2\x68\xff\x2e\x1c\x8d\x16\x2d" "\x3f\xea\xe2\xc5\xbd\xee\x74\x7a\xa1\x05\x66\xa9\x4f\x13\xd4\xe1\xa0" "\x0a\x40\x43\xbd\x17\x93\x10\xe7\x2e\xc8\xe4\xc6\x86\x59\xbe\x77\x90" "\x7b\xba\x82\xfc\x41\x6a\x72\xc0\xd2\x07\x68\x21\xf7\x7e\x8a\xfd\xbe" "\xac\x76\x91\x95\xa0\x15\x15\xab\x45\xba\x73\xec\x85\xa2\xf8\xa5\x21" "\x46\xdb\xbc\x8d\x58\x5d\xef\x09\x5a\xef\x4e\x44\x91\x36\x2b\x59\x6a" "\x84\xd2\xe9\xfd\x01\x31\xde\x2c\x72\xb7\x1c\x4b\xd2\x39\x14\x60\x11" "\xea\xa2\x09\x95\x7b\x2b\xb3\xf7\x4b\xf2\xf4\x2a\x17\x44\x07\x49\x68" "\x8d\x66\xa1\x8a\x9d\x4a\x7d\x1e\x2b\xbb\x34\xdb\xb2\xa4\x54\x60\xe6" "\x9a\x1e\xc4\x34\x67\x66\x5c\x59\x43\x8d\x35\xfe\x9b\x04\xa9\x4e\x40" "\x8e\xc4\xbc\xf7\xba\x1a\x25\xbf\xc2\x87\xd6\x18\x9b\x65\x71\x19\x04" "\xbe\x98\x60\xf8\xa6\x8d\x1b\xab\x99\xee\xd5\x48\x90\xf9\x63\xca\xef" "\x1f\xa0\x17\x92\x24\xb6\x50\xf0\x90\xf6\x7d\xca\x59\xf1\x24\x1c\x2a" "\x25\xbc\x92\x1d\x52\x2f\x61\xe5\x7d\x2b\xad\x88\xc0\x57\xd3\xf7\x72" "\x94\x99\xa0\x39\x1f\xca\x3a\x62\xb2\x7c\xc0\xa9\xb9\x76\xda\x3e\xef" "\x33\x3d\x88\xad\x12\x8e\xa7\x57\x69\x7f\xfd\xd5\x06\x33\xb6\x6b\x73" "\xea\x3d\xdb\x56\x5b\xc3\xd8\x78\x0f\x9c\x0b\xb2\x34\x75\x51\x96\x9a" "\xaa\x50\x0e\x7c\x03\x0d\xa2\xa9\x2e\xb3\xf7\x8d\x88\xb9\x1e\xb5\x47" "\xdb\xa2\xe9\xbe\x7a\xb2\xaa\x61\x7f\x08\x90\xc3\x9c\x73\xc8\xc2\xb3" "\x5f\xf7\xec\x52\x9f\x6b\x8d\x08\xe3\xfc\xf2\x63\x0e\x45\x4b\xdb\x64" "\x74\x18\x5a\xe7\x2b\xa6\x93\x10\x65\x4c\x9c\x0b\x3b\xa1\x58\xfe\x22" "\x39\x54\xe1\xd4\x6f\x9d\x27\xb0\xa4\xe0\x90\xb0\x08\x49\x18\xb2\x96" "\x4b\xdc\xee\x31\xd2\x58\x32\x5b\x89\xef\x96\x79\x0e\xd1\xdf\x48\x42" "\xb4\x82\x02\x3f\x1d\x22\xfb\x3e\x01\x28\x0f\x1c\x86\x16\x15\x30\x35" "\xf1\x0b\xd6\x5d\xe5\x7c\x1f\xa7\xd5\xa1\x7e\x77\xb1\x2e\x34\x8b\xd3" "\x01\x90\x92\xef\x54\x8c\x52\x49\x69\x41\x68\xdd\x24\xdf\x8a\x73\x18" "\xec\xcd\x77\x9d\xa4\xf5\x47\xe9\xf1\x62\xf4\x84\xeb\x3a\xb9\xf5\xbd" "\x19\x6f\x6b\x68\x65\x67\x25\xd2\x62\x4b\x61\xd0\x9f\x73\x58\x67\x53" "\xa1\xfb\x7e\xeb\x17\x21\x97\x3f\x8e\x15\x52\x24\x87\xf1\xdd\x14\x12" "\xb0\xf4\x84\x68\x01\xd1\xab\xbf\xe5\x3b\x75\x5f\x15\x04\x79\x81\xb1" "\x62\xa1\xde\x04\xd5\x2b\x4d\x47\x62\xac\x87\x7e\x4d\x71\x86\x19\xe8" "\xcd\xba\x16\xdf\x68\x8f\xe9\x5b\xdc\x9a\x1e\xe9\x9c\x21\x00\x4b\xa7" "\xe7\x29\x85\x75\x2d\x89\xd6\x89\x2a\x41\x69\x29\x67\x03\xfd\xe3\x14" "\x45\x7f\x01\x4e\xd8\x9c\x12\x9a\x4c\x83\xb5\xbe\xe0\xbb\x93\xcb\x69" "\xa8\x33\x13\x44\x28\x37\xbc\x03\x67\x9e\xe3\x17\xcf\x8d\x1b\x90\x8b" "\x70\xfa\xe1\xb1\x46\x1a\x39\x8f\x31\x0a\xc0\x73\x64\x2f\x95\x4a\xb3" "\x9e\x0e\xda\x32\x9a\x94\xa5\xc1\x2c\xf2\x62\xca\x4a\x25\x83\x1d\xbc" "\x10\xae\xcf\x83\xd9\xd5\x47\x76\xc3\x79\xc2\x30\xbb\x48\x8c\xd6\xc9" "\x29\x5b\xc3\x1c\xfa\xb6\x1e\xb9\xb5\x48\x67\x26\xf5\xc8\x54\xdb\x8a" "\xad\x26\x42\xd4\x46\x86\x43\xf3\xbc\x8b\x25\xcd\xc9\xfd\xa7\xaa\xd0" "\x4b\x06\xb6\x1b\x18\x58\x68\xa4\x4a\xcd\x46\xa0\xbd\x8d\xeb\xc1\xe4" "\x31\xf1\x9a\xed\xdf\xa3\xd0\xe4\x80\x94\x9b\xd3\x61\xf6\xc9\x88\x74" "\x4a\xca\xfa\xe9\x54\xc1\x40\x19\x23\x06\xc3\x06\x6e\x8e\x43\x4f\x70" "\xe8\xcd\x67\xb6\x5a\x59\x92\x3d\x16\x6a\x95\xca\x5e\x05\x15\xe2\x05" "\x9e\x1f\x1a\xa9\xa7\x4b\xfd\x49\xe4\xe3\x76\x38\xbf\xa6\xb6\x11\x7b" "\x79\x0c\x4e\xc7\xf5\x36\xd0\x46\xc3\x8f\x8a\xb6\xee\xda\xc1\x71\x3b" "\xcb\x88\x60\xa1\x8c\xac\x43\xe9\xad\xd3\xc6\x8c\x3c\xe5\xd1\x7f\xbf" "\x76\xe9\x66\xaf\xcd\x3e\xd7\x79\x55\x40\x65\x0e\x09\x3d\x39\x92\x6f" "\x5e\x37\x19\x15\x6b\xaa\x54\x30\x7b\x4f\x5e\x93\x4f\x24\x95\x1b\x36" "\x44\xa7\x65\x7e\x79\x85\x25\xd3\xf1\x20\x7b\x28\x52\x7a\x5b\xcd\xeb" "\x33\xe2\x96\xc6\xc0\xe9\xe1\x75\x79\x41\xdd\xd2\x4a\x0d\x15\xc9\xa2" "\x19\x18\x51\x4a\x31\x43\xef\x3f\xc2\xe7\x75\x34\x5e\xa1\x0a\xeb\xa6" "\x76\x76\x86\xe9\xcf\xa6\x46\xda\x37\x7e\x88\xfd\x75\x9a\x33\xff\x20" "\xc9\xb2\x58\xfd\x37\xd0\x63\xd0\x2f\xe2\x2f\x09\x0c\x5e\x32\x4b\x50" "\x7c\xd3\xbc\x42\x24\x8a\x7a\xbb\x2c\x7d\x0b\x1b\x85\xec\xb5\xa6\x7b" "\xf5\x3a\x2f\x25\xd1\x39\xea\x52\x38\x08\x67\x89\x42\xe1\x58\x8f\xd6" "\x77\xdf\x16\x1b\x67\xb5\x63\xa4\x46\xa2\xcc\x69\xd9\x12\x6f\xbf\x30" "\x82\x58\xa1\x3f\xcd\x6f\x53\xd9\x2d\x99\x47\x31\x1e\x3d\xe4\xfa\x5a" "\xcd\x7c\x26\x84\xd9\xeb\x3b\x4f\xeb\x02\x4e\x05\xbb\xf0\x90\x83\x6d" "\x92\xe3\x0b\x68\xdf\x6a\x76\x19\x54\x2c\x9a\xcb\xbb\x69\xdc\x73\xc7" "\x81\xbd\xc7\xef\x4b\x25\xc2\xaf\x77\x18\x6f\x49\x3a\x50\x38\xa5\x65" "\x08\xcc\x56\xb7\x08\x5e\x13\xf4\x26\x4e\x02\xa2\xa3\xbb\x51\x5e\x15" "\x30\x13\x71\x52\x04\x81\x30\x2f\x23\x67\xc8\x83\xa5\xac\x50\x3a\xe4" "\x26\x9c\xbb\xc8\xfb\x2f\x0f\x77\xec\xae\xa7\xb8\xaf\x04\xbc\x24\xaa" "\x90\xf6\x77\xa7\x2b\xbe\xcf\xdb\x22\x58\x64\x71\x43\x44\xa8\xfd\x1c" "\x07\xef\x66\x4a\xba\xef\xe5\x3b\xd7\x6b\xa1\x2c\x8b\xf4\x58\x60\xa3" "\x16\x81\x2a\xf8\x73\x48\x68\x2e\xe7\x00\x5a\xc6\xa0\x05\x23\xf4\x31" "\x31\x02\x74\x2e\xe5\x50\x2d\x8c\x61\xc3\x32\x1d\x1b\x87\x27\x80\x19" "\x2f\x4d\x00\xb1\x2b\x38\xd0\xae\xdd\x34\x61\x9c\x42\xf4\x9b\x81\xd7" "\xbd\xdc\x4c\xa4\x81\xed\x8f\x44\x8b\xc3\xad\x98\xb1\x3f\x71\x76\x74" "\x88\x38\xd6\x23\xe0\x07\xa2\x49\x48\x48\x0e\x97\x8b\x80\xce\x67\xec" "\x95\x2e\xca\x61\x30\x91\xad\x4f\x81\xcd\x52\x1b\x28\x51\xbb\x8b\x2a" "\x6b\x1d\xa0\x42\x0e\xca\x80\xae\xca\xc9\xc0\x88\x79\x88\xe1\xf2\x99" "\x06\xc9\xce\x65\xb9\x90\xa0\x0f\x22\xba\x6f\x11\x5a\x7a\x00\x01\xf5" "\x11\xec\x35\xdb\xcd\x40\x11\x30\x17\x3f\xde\xd8\xb2\xe2\x33\x65\xca" "\xf3\xd6\xd7\xc8\xf4\x04\x38\x3f\x16\xfc\xd7\x6b\x17\xc2\x20\xf8\x8c" "\x1f\xe9\x62\x11\xbd\x92\xc5\x80\x3c\x63\xd9\x53\x7a\x2c\xeb\x25\x85" "\x08\xd9\xb1\xd7\x4c\xa4\x31\x74\xea\xef\xd6\x77\xed\x6d\xb6\x3b\xb3" "\xd7\x71\x2c\x95\x58\xc7\x87\x9f\xbe\x67\xb7\x39\x6c\x72\x14\x07\x95" "\x3d\xb9\xda\xd1\x32\x91\xf9\x6d\x7d\x02\x90\xad\x56\xcf\x1f\x65\xcc" "\xf5\x8d\x3f\x5b\x8b\xa1\xf7\x8f\x81\xd8\x6a\xe0\xea\x50\x92\x6f\xf3" "\x52\xd7\x36\x29\xda\x44\xa6\xd3\x15\x98\xdc\xdc\xf8\x13\x55\xfa\xed" "\x4f\x5a\x6a\xd8\xcc\x39\xd4\xa4\x14\xb9\x7f\x19\x3c\x89\x6b\xd3\xc2" "\x70\x09\x7c\xc9\x6e\x4a\x5e\x36\xca\x9a\x56\xa2\x7c\x52\xa0\x3d\xec" "\xc4\x83\x7d\x7b\x00\x8a\xcc\x1f\xd2\x72\x4f\x97\xe0\xe9\x59\x1a\xfb" "\x5d\xe3\xaf\x3e\xc5\xfc\x16\xe1\xbe\xe7\x90\x98\xcc\x94\xd6\x38\x37" "\x5d\x69\xae\x50\x65\xbe\xda\xed\x57\x5e\x11\xb1\xb0\xa4\xd1\x18\x98" "\x30\x85\x6e\x8d\x48\xa6\xc5\x0b\xf1\x8c\xb9\xf8\x91\x9f\xd8\xa5\x5a" "\xd0\xb2\xf7\xd8\xc0\x96\xc7\xf5\x49\xfe\xc8\xe1\x52\x2b\xe0\xde\x2a" "\x69\x69\x9a\xfe\x47\xe8\x99\xac\x6d\x54\x05\xc0\x8e\x2e\x37\x43\x26" "\x80\x8b\xa7\x62\x59\xd8\x5b\x97\x1d\xcc\xe5\x5a\xce\xed\x11\x58\x36" "\x03\xdd\x28\x0f\xd1\x5c\x8e\x7b\x20\x6e\x8b\xad\xe3\xf6\xd8\x3c\x60" "\x41\x83\x8e\xa8\xb4\x89\xfb\x9f\x92\xab\x22\x0a\xd5\xd3\xcd\x2a\xf3" "\xf4\x5c\xb2\xdf\x70\x94\xd5\x50\xb2\xcf\xea\x31\x44\x69\x94\x3a\x15" "\x9e\x12\xc0\x18\x97\xa7\xcc\x42\x90\x4e\xeb\x24\xcc\x50\x7e\x7c\xe7" "\xff\xb4\xd2\x2e\xfd\xcd\x5c\xb5\xd7\x59\x75\x58\x2e\x14\x96\x0f\xb0" "\xf2\xb8\x3c\xb7\x74\xfa\xea\x32\xdf\xba\x7e\xd0\xe8\xb6\xa7\x49\x78" "\x51\x66\xcb\x5c\x77\xdd\xe7\x49\x8f\x67\xf7\xf2\x0d\x0b\x85\xa7\xfe" "\x6e\x7f\x8a\x8e\x3f\x95\xbd\x79\x51\x65\xf3\x64\x40\xd8\x44\x34\xce" "\xf1\x7f\x81\x69\x78\x16\x03\x0e\x3a\x86\xbf\x00\x32\x72\xca\x48\x68" "\xab\x93\x5f\xa0\xd4\x65\xfb\x10\x63\x7a\x70\x6c\x9f\xd0\x4f\xa4\xd4" "\xeb\x42\x1e\x87\xaa\x66\x28\xa1\xd6\x17\x48\x33\xaf\x4d\xbf\xce\xab" "\x7f\xc5\x98\x95\x50\xc0\x84\x7b\xf2\x7a\x52\x43\xe3\xb3\x18\xff\xfd" "\xe9\x5d\x11\xcf\x50\x7b\xc4\xe0\x92\x18\x0d\xd2\x28\xdf\x9f\x89\xd1" "\x93\xa1\x60\xd5\x0c\x22\x33\x09\xea\xe5\x80\xa0\x9f\x2e\x78\x85\x5f" "\x17\xf8\xad\x25\xc1\xf5\x81\x4b\xec\xdf\xca\x79\x48\xc7\x04\x5b\x24" "\x2e\x22\xd5\xef\xab\x67\x6f\xe7\x17\xeb\x34\xd2\xf0\xfc\xb7\x72\x89" "\xc8\xb1\x2c\xaa\xdd\x23\x77\xb7\xcc\xdc\xfa\xb6\x19\x00\x97\x1b\x4a" "\x2a\xc1\x32\x58\x71\x74\x11\x74\x28\x73\x9e\xbb\x10\x9f\xa1\x33\xe4" "\x83\x95\x6b\xd4\x99\xdf\xa5\x30\xcb\xb3\xd1\xdf\x42\x30\x9f\x6f\x07" "\x55\xb0\x43\xd8\x57\x76\x80\x7f\x25\xc3\xb4\xb5\x18\xa2\x27\x46\x71" "\xeb\x38\xf3\xe8\x2a\xd4\x39\x73\x77\xf8\x52\x01\x77\x18\x77\xa7\xcc" "\x43\xb8\x38\x79\x1a\x4d\x4d\x65\x5e\xca\xdf\x03\xd8\xc1\x68\x7e\x96" "\x1c\x83\xdb\xb6\x4c\x4d\x54\xd4\xb7\x45\xa3\xab\xca\x7e\x38\x1a\x00" "\xc6\xf5\x1f\x48\xf6\xf7\xce\x29\xec\x65\x6d\x89\xa1\xfa\xb2\x16\x67" "\x5f\xeb\xed\xfe\x6b\x08\xc3\x5a\xdd\x5a\xeb\x8c\xf6\xc0\xb2\x26\xd3" "\x09\xa2\x22\xe1\x78\x3e\x45\xe5\x60\xf6\xea\x64\xbf\x77\x06\x78\x7f" "\x19\x91\x16\x34\x1f\x87\x43\x21\xb5\x2b\x11\x35\x83\x0a\xb8\x97\x9a" "\xe5\x54\x6a\xad\x4e\xcf\xda\xc0\x04\x5d\x4d\x15\xb4\xed\x2f\xe2\x6e" "\x48\x47\x93\xdb\x6a\xa6\x1d\x40\x33\x33\x55\xfa\x96\xac\x5d\x1b\x8a" "\x5b\x5f\xc0\x33\x47\x5c\xba\x14\xf3\x44\x00\x7b\xfd\x82\xde\xb6\x4b" "\x5c\x2e\xda\x6c\x0d\x52\x8e\x4d\xe0\xc2\x18\x02\xd6\xb2\x75\x54\xc0" "\xe2\x09\x0f\x2c\x4e\xbd\x19\x20\x8c\xe9\x04\xcc\x02\x75\x6b\x44\xbb" "\x2f\x8e\xbc\x1d\x37\x96\x1c\x09\x57\xa4\x81\x54\x87\xcb\xf7\x6f\xdb" "\xe1\xf2\xb7\x7b\x56\x3a\x56\x63\xa0\x09\x52\xc9\x25\x79\x39\x9f\x7a" "\xcc\x1d\x41\xd9\x28\x9e\xa0\x34\x5f\x02\xf6\xf7\x60\xce\xd8\x02\xc8" "\xe0\xb1\x47\x60\xa4\x3d\xd0\x4e\x6c\x37\x1c\xea\xb9\xf5\xcb\x36\x17" "\xcd\x7a\xb3\x14\x57\xb6\x82\x1c\x6a\x4f\x34\xb2\x43\xfb\xa6\x1f\x5c" "\x55\x3e\x58\xca\x25\x3d\x57\x23\x38\x2c\xf5\xd3\xf8\x35\x73\x47\xee" "\x2a\xf2\xd4\x8d\x86\x36\x7f\x99\x3e\x4b\x80\xb8\x49\xdd\x3f\x50\xb2" "\xa8\x93\x38\xaf\x97\xe1\x1b\x9a\x79\x6a\xe2\x54\x88\x56\xcc\xe0\x13" "\x34\xbc\xa0\xc5\x58\xe1\x60\xf1\x6e\x74\x69\x9c\x7e\xae\xfd\x69\x9a" "\xcd\xf4\xd5\x01\x9b\xf7\x0f\x2d\x9c\x08\x3f\x62\xb5\x25\x42\x62\xf0" "\x5c\x01\xdb\xa5\x9b\x17\x79\x50\x2d\x3a\xd3\x10\xa3\x03\x94\x47\xd7" "\x30\xa2\xce\xbb\x12\x42\x33\x1a\x98\x49\x92\x1c\x07\x33\x6e\x98\x5a" "\x84\x4c\x55\xce\x61\x29\xa6\x50\xb3\xfd\x7c\xbd\xa5\x2a\x0c\xfd\xf0" "\xef\x56\x6f\x24\xad\xb8\xc9\x59\xe4\x42\xe9\xd5\x66\x3f\xa1\x65\x61" "\xb1\x85\xcf\xb1\x83\x55\x86\x3d\x9b\x9f\x91\xc3\x82\x9c\x4b\x0b\xa5" "\x80\x66\x84\x02\xa7\xa1\x00\xfc\xd4\xa4\xe9\x01\xb6\x60\x86\x3a\x95" "\x37\xf4\x6e\x4f\x36\x44\x69\x45\xe8\xf6\x2e\x53\xe8\x28\x2c\xcd\x7c" "\xfe\x14\xfc\xa1\x61\xd7\xda\xf5\x92\x18\x8e\xb2\xe1\x1e\x27\x5f\x61" "\x6f\x4e\x69\x2d\xb8\xf3\x18\xe8\xfb\x63\x5d\x1a\x25\x82\xa3\xc8\xad" "\x30\x50\x99\x5f\x4c\xd8\x10\xc0\x4b\x23\xaa\xa6\xb2\x6a\x22\x76\x13" "\x3b\x44\x32\x80\xf0\x52\x6c\x9b\x1c\x01\x6a\x7f\xdc\x05\x2e\xff\x91" "\xd1\x67\xb2\x81\x3e\xc4\xf8\x68\xc2\xda\x5f\xd9\x56\x8d\xa1\x48\xe0" "\xce\xd0\x22\x9f\x41\x57\x16\xc1\xca\xdd\xba\x88\x0e\xfa\x20\x17\xa8" "\x28\x29\x12\x5e\x73\x4b\x96\x33\x3d\xa0\xb1\x53\x40\xc1\x49\xb5\x0b" "\xe8\x6e\x30\x17\xbd\xaa\xe3\xd8\x0a\xe5\x1c\x35\xdf\x37\xe6\x76\x84" "\xe8\x1b\x59\x33\xcc\x7b\xfb\xe7\xef\x04\x86\xd5\x7e\x39\x01\xf9\xae" "\x3e\xb1\xd5\x92\xeb\x3f\xc2\x44\xce\x65\x55\xd3\xd6\x99\x22\xdd\x3d" "\xce\xfe\xcb\xba\x20\x7f\xcb\xd5\x14\x4a\x5f\xf9\x7b\xf2\x21\x6c\x04" "\x63\x48\xa6\x33\x28\x4d\xb5\x9c\x10\x66\x23\x50\xc7\x48\x4c\xed\x76" "\x2f\x35\x3c\xd0\x1a\x97\x1c\x88\xd0\xea\xbb\x68\xee\xf8\x56\xd5\x85" "\xe8\xf5\xa6\x84\xdc\x94\x8b\x09\x47\x54\x36\x2b\xa8\xd6\x06\xf8\x5a" "\x75\x5a\x27\x89\x5f\xf5\xb6\xb4\xea\x03\x87\x57\x4a\xfd\xf3\x62\xa4" "\x3b\x55\x35\xa2\x83\x8b\x3f\x00\xf2\x46\x12\xb9\xae\x47\xe9\x5f\x15" "\xd8\xb8\x28\xef\xe5\x61\x52\xd7\x78\x71\xcf\xda\x0e\x0f\xf9\x93\x6d" "\xb3\xfe\x9c\x49\xf0\xd0\xf5\xef\x9b\x71\xb8\x1e\xfd\x2e\x92\xd0\x16" "\x6a\x49\x70\x25\x49\x50\xa5\x12\x35\xb6\x68\x66\xd5\x40\x27\x40\xad" "\xaa\x58\x4e\x89\x25\x72\xa6\xf4\x67\x14\x70\x46\x60\xcf\xbc\xaa\x56" "\xcc\x27\xcb\x53\x8a\x90\x8d\x1e\xe2\xfc\x7a\xda\xa6\x74\xce\x7a\x71" "\x7f\x6e\x04\x81\xa2\x37\x4f\x76\x8f\xa3\xdf\x83\x68\xbf\x42\x81\xbc" "\xe6\xf9\x77\x7f\x95\x8f\x36\x50\x29\x08\xd7\xc9\x21\xba\x74\x5d\x0c" "\xc1\x6b\x8a\x9a\x67\xf1\x5c\x26\xd4\xb0\x05\x78\x8b\x1e\x90\xb1\x9c" "\xc1\x3f\x3e\x92\x5f\xc1\x4e\xf3\x1d\x62\x4c\x75\x00\x71\x0d\x8f\x80" "\xe5\xbd\x4b\x14\xdd\x6b\xf7\x0c\x21\x0d\xb6\x07\x7c\x69\xd2\xd1\x75" "\x1f\xe9\x99\x44\x25\x02\xd3\x54\x2b\xe1\x2b\x73\x2e\x37\x93\xe6\xc5" "\xe5\xc3\x3a\x15\xa7\x92\xea\x34\x4b\x0e\xd0\xbe\x1e\xbb\x1d\x4e\x89" "\x6e\x3e\x62\xd8\xd8\x5a\xfa\xd2\xae\x13\x4d\xab\xc4\xf0\xd3\xfc\x71" "\x9c\x62\x45\xd3\xbf\xaf\xa4\x2f\x0c\xdc\x9c\x0d\x5c\x4b\xa5\xc2\x0b" "\x9d\xa9\x75\xbf\xd2\xf2\x11\xbe\xe8\x58\x9c\xe1\xdc\x96\x52\xc2\xc3" "\xce\xe2\xa5\xe8\xa0\x00\x49\xe4\x2a\xfe\x44\x03\xa9\x05\xb6\x0e\x0d" "\xcd\xa1\x12\x0d\x32\xce\x36\xb9\x17\x19\xd6\x30\x8c\x93\xdf\xaa\x16" "\xc2\x3a\x3b\x37\xe8\x81\x94\x77\x8b\xe7\x7d\x5e\x9e\x64\xb3\x94\x77" "\xb7\x6b\x46\x44\xca\x32\x52\x5b\x73\xbc\xf1\xfd\x9d\xc9\xaf\x77\x76" "\xf2\x14\x9e\x36\x80\x53\xc5\x8e\x1c\x93\xe1\xec\x45\x75\xcb\x5e\x0b" "\x2d\xa6\x1d\x5e\x6b\x19\x43\x6f\x3c\x09\x5c\xdb\x4a\xf4\xdd\xfc\x33" "\x64\x97\x57\x00\xe5\xff\x52\x75\xf9\x33\x6b\x8c\xb3\xb9\x59\xa1\xcd" "\x94\xf6\xb9\xc3\xa3\x3f\x35\xe9\xba\x4b\x7f\xea\x04\x66\xed\xf5\x4e" "\x5e\x2e\x06\xa7\x9b\xd1\x70\x39\x2c\x02\xb0\x97\x49\xf3\xd1\x11\xef" "\x60\xba\xa8\x01\x6d\xbf\x9b\xa5\x81\xbe\xab\x2c\x43\xd0\x94\xad\xd0" "\xd7\xfb\x7e\x16\xf1\x98\xf3\x05\x06\x41\x25\x5f\x30\xa5\x7c\x30\x45" "\xc1\xb5\x1d\xd6\xe5\xd6\x56\x13\x16\x75\x96\x36\x5b\x9c\x67\xaa\xa3" "\x6f\xc8\x9c\x44\xfb\xc4\xc8\xc9\x6c\x32\x85\x54\xa6\x3a\x15\x51\x1b" "\x04\x69\x26\x51\xdd\x5e\x30\x78\x0c\xaf\x0d\xfc\xe9\x76\xc6\x65\xe7" "\xb0\x5f\xa6\x14\x39\x14\x83\x7b\xc8\x2f\xb9\xd9\xdc\x5a\x16\x60\xe2" "\x8a\x69\x7e\x8a\x0a\x32\xeb\x8d\xb1\x09\xc5\xa0\x45\x24\x3d\x86\xea" "\x11\x84\x7f\xb6\x4e\xc4\x50\x11\x2d\x77\xec\xba\x32\xde\x41\x86\x29" "\xa4\xea\x2a\xe3\xf7\xed\x36\x25\xb2\x6d\xef\x5c\x19\x81\x3a\x63\x86" "\xab\x4e\x43\x83\x8c\x1f\xad\x3d\x4e\x92\xdf\xd7\xd3\xf9\x8b\x3c\xf4" "\x6d\x6e\x20\x30\x48\x51\x89\x9c\x59\x66\x1e\x96\x39\xf3\xff\x52\xfa" "\x02\x31\x14\x90\x7d\x93\x0d\x74\xd6\x05\xf3\xf7\xc5\xfd\x9e\xbb\x44" "\x6d\x80\x7e\x96\xcf\x3b\xf3\x51\x7e\x36\x9d\xc9\x8f\x48\x90\x26\xec" "\x03\x5a\x86\xf3\x71\x9e\x1e\x50\xa4\x8c\x03\x81\xf7\xfd\x2a\x7e\xea" "\x1d\x3a\x09\xef\x7a\x0b\xa5\x0b\x2a\xe2\x8c\x2c\x95\x5d\xb4\x76\x1a" "\xc0\x05\x22\x6e\xbc\x0c\x18\xd1\x08\xe8\xac\x06\x63\x71\xbe\x24\x9b" "\x80\xee\xd8\x8a\xfe\xe7\x99\x41\x1a\x50\x38\x1c\xac\xb2\xd5\x16\x4f" "\x08\x27\x72\x0e\xb9\xd1\x1b\x5c\xc5\x48\xc2\xe1\x45\x29\x1d\xfb\xc5" "\xd4\xf7\x06\x46\xdf\xbc\xa0\x77\xce\x8a\xd3\xa3\xf8\xc6\x27\x02\x12" "\x95\xcb\xef\x70\xf5\x01\x3c\x53\xe8\xfc\xe3\x21\x16\xe6\x78\xa7\xb1" "\xdc\x53\x5d\x43\xb4\x29\xd3\x30\xe9\x19\x3f\x8d\xe1\xa6\xc1\xda\x43" "\x53\xa8\x6b\xc7\x22\xef\x1c\xff\xe5\x9a\x01\x2f\xf9\xc5\xf4\x5b\x85" "\xe5\x5e\xbd\xaa\x6b\x36\xa5\x19\xc5\x44\xef\x8a\x86\x09\x5e\x52\x2d" "\x7d\xfb\xb9\xca\xc4\x1e\x82\x6f\xcc\x4b\xc6\x76\x29\x71\x41\x19\x5f" "\x83\x9e\xbc\xd8\xf6\x45\x99\xfb\x15\x85\x69\x60\xf9\x7b\xc7\x0d\x23" "\x36\x50\x7d\x50\x60\x28\x2d\x09\x88\xf3\x54\xeb\x75\x7c\x6f\x4b\x0e" "\xe7\x7e\x2c\x08\x89\xe5\x33\x66\x33\xac\x28\xe2\x65\x1c\x98\xe7\xf2" "\xfa\x4c\x16\x3f\x8f\xc1\x96\xb6\x79\x8c\x14\x00\xc4\x67\x10\xab\xed" "\x12\xa3\x3a\x95\xaf\xa5\x6c\x7f\xe5\x5d\xe0\xb4\x8c\xc9\x84\xc8\x0f" "\x6d\x98\xd2\x12\xda\xee\xfd\xbc\xb4\x57\x21\x7b\x39\x62\x43\x6e\x48" "\x1d\x70\x96\x7c\xab\x6b\x09\x43\xd5\xda\x59\x02\x1e\xa9\xfb\xeb\xf6" "\x6e\x86\x94\x3e\x02\x9e\xf9\x5d\x46\xd3\x47\xb8\x34\x09\x8e\x1c\x8f" "\xb4\xc3\x5d\x15\x94\x5b\xc2\xe3\x36\xf7\x4c\x6c\x80\x43\x0a\xd5\xfc" "\x4f\x5b\x9c\x6b\x41\x24\x5e\xcf\x15\x1e\xea\x90\x76\x3c\xe3\xe0\x9e" "\x05\x0a\xe1\xc0\x92\x5f\xa7\xa5\xdd\xbb\x7f\x21\x02\x26\xcd\xcf\x9e" "\xe4\x06\x04\x1b\x73\xa5\x98\x86\x46\xb9\x0e\xd3\x82\xd0\x8e\x7a\x14" "\x70\x78\xf9\xde\x02\x5f\x56\x17\x01\x7e\xc7\x0f\x65\xdd\x25\xd7\xcc" "\xdb\x47\xad\x72\x09\x47\x4f\x4c\xa4\x61\xca\x46\xf0\xaf\xe3\xcb\x40" "\x5c\x3b\x72\xd3\x20\x01\x6d\x01\xb6\x2d\xef\x93\xfa\x4f\xa5\xa3\x4d" "\xf1\x45\xc5\x26\xfc\x49\x73\x29\xa9\xe2\x9c\xe1\x7a\x92\x98\x93\xf7" "\xbe\xb4\x17\xc8\x88\x04\x41\x82\x71\xdb\xeb\x51\x11\x58\x21\xdb\x47" "\x37\xb9\xcc\x46\x7f\x19\x02\x09\x64\x9f\x54\x36\x75\xde\xfb\xf9\x56" "\x40\xd2\x0c\xdd\x12\x4e\x85\x78\x8b\x70\x32\x13\xf4\xe9\x9b\x4f\x36" "\xb7\x4b\x5d\x44\xb6\x7b\x7b\xc9\x95\xba\x13\x3d\xa4\xae\x92\xf3\xa3" "\xdb\x49\xc9\xec\x03\x9e\x02\x85\x00\x1f\xc1\x67\x60\xda\x0d\x07\x55" "\x2e\x1a\xd6\x21\xa4\xba\xc6\xd0\xb6\x40\x93\x16\xe8\xa7\x82\x73\xb7" "\x9a\xa7\x0d\xf0\xe3\xca\x02\x43\x36\xd4\x2c\x53\x05\x50\xbe\x8c\x68" "\x89\x7b\xfa\x6a\x44\xf5\x95\xbf\x5b\xe4\x8f\x8b\x25\xb4\x88\x25\xeb" "\xcb\xa8\x15\xdb\x4b\x31\x24\x52\x2b\xc7\x1e\x39\x70\xdb\xca\xfd\x47" "\x9a\x6d\xab\x40\xf7\x45\xa6\x55\xcc\x3f\x9d\xd5\xae\xb0\x46\xd2\x5b" "\xaa\xaa\x16\x0b\xa2\x1f\x8b\x3c\x02\x92\x32\x9a\xe1\x07\x48\x3c\x8c" "\xaa\xfc\xd7\x0d\x04\x1f\xac\xfb\xf7\x05\xdd\xa9\x53\x70\xa9\x18\x79" "\xfc\x0a\xb9\x13\x2e\x3b\x7b\x02\xca\xd6\x94\x17\x17\x8c\x4f\x34\x90" "\x9d\xf7\xa3\x73\xba\xcb\x28\x94\x76\xc2\x5c\x90\x1b\xe7\xb5\x2a\xab" "\xfd\xfc\xb3\x41\x5e\xf3\xa5\x65\xc7\xde\x2f\x01\x28\xc6\x3e\x16\x98" "\x4e\x2e\x98\xad\x23\xe0\x6b\x89\x0f\x22\x89\x4e\xbe\xce\xef\xdb\x47" "\x21\x92\xe5\x01\xe2\xc7\x91\x23\x29\x33\xb5\x2e\xa4\xb9\xc4\xe9\xfe" "\x36\x54\xb8\xb1\xe0\x80\x48\xfb\xcf\x58\xfa\xda\x1c\xd4\x9c\xa6\x65" "\x8c\xe6\xec\xd1\x21\x02\xd9\x0c\x81\xea\xc2\x60\x90\xef\xa3\x65\x14" "\x55\x3a\xbb\x29\x8f\x7c\xf1\xa4\x3b\xd6\xd4\x73\xc1\x43\x6b\x6b\xe9" "\xe8\x74\x45\xde\x72\x6c\xff\xfb\x00\xc7\x2d\xe4\x9d\xb0\x58\x5d\x67" "\x7d\x5b\x24\x5e\x15\xf9\xa5\x3b\x4c\x25\x8b\xa2\xfd\x67\xd3\x8a\xfd" "\x9c\xcd\x0d\x40\x9c\x0b\xad\x67\x5f\xcf\xbc\x1f\x4e\x51\x66\xfd\x1b" "\x29\x20\x32\x74\xf7\x58\xf5\x5a\x26\x6b\x8f\x7c\x9e\xc8\xef\x1d\xd4" "\x91\x37\x27\xfa\x39\x2c\xe6\xb1\x1b\xaf\x90\x2e\xa7\x08\xad\xdd\xd8" "\x36\x98\x2a\x60\x97\x18\xc1\xdf\xb8\x10\xae\xe6\xf2\x1e\x47\xc2\x7d" "\xc6\xb4\xee\xeb\xe5\xfc\x21\xaa\xe6\xfe\x7d\x29\x08\x67\x9c\x87\x3e" "\x2a\xa4\x5a\x1e\xe1\x4c\xd7\xe1\x05\x86\x21\x6d\x5e\x17\xcd\xbf\xac" "\xd4\xbf\xed\xf0\x0b\x7b\xa7\xfc\x46\xd4\xac\x90\x66\x73\x29\xba\x76" "\xb4\xfc\xc6\xb9\x91\xa5\x5c\x9e\xd1\x59\xa2\xfb\x95\x25\xc9\x75\xbc" "\x0a\xa4\xa2\x91\xfd\xde\x14\xa7\x8b\x95\xad\xcd\xe5\x2f\xcb\x5a\x89" "\x3e\xe7\xb4\xdf\x66\x31\xb3\xed\x5a\x9d\x9d\x9e\xbe\x36\xc7\xce\xde" "\xa7\x77\xa9\xe6\x7f\xaa\xd7\xf7\x00\x4f\x0a\x82\x0a\xeb\x66\x36\xf2" "\x46\x85\xa1\x5d\x12\xab\xc6\x39\xaa\xb2\x23\x3b\x36\x58\x46\x70\xc6" "\x67\xf9\xe7\xa3\xfe\x11\x95\xd3\x5b\x26\x8d\x10\x52\xd5\xb4\xc9\x62" "\x5d\xc9\x63\x64\x0c\x2c\x5e\x6c\x37\xd3\x6a\xcc\x31\x75\x5b\x34\xf3" "\xee\x2a\xf7\xb7\xba\x5d\xbe\x10\x53\x22\xa3\x74\x1c\x56\x7c\x9e\xdd" "\x81\x7f\x64\x88\xfe\x69\x30\x1b\x19\x48\x1f\xe2\xe2\xcf\x74\xb1\x9d" "\x4b\x22\x45\x98\xb0\xce\x1f\xa1\x51\xfa\x1e\xf3\xd6\x9a\xae\xaa\xb3" "\x97\xa5\xea\xc7\x2e\x0b\x96\x9a\x09\xb8\x5e\x32\x58\xe8\x91\xdb\x20" "\x73\x93\xbc\x28\x1a\xfa\x93\x46\x8b\x29\xb7\xe5\x5c\xc2\xde\xcf\x82" "\x92\xfc\x68\xe1\xa0\x2b\x2f\xaa\x87\x3a\x84\x66\x80\x99\x2b\x37\xa5" "\x48\xc8\xf7\x24\xc0\x12\x50\x27\xfa\xa5\x8b\xe5\xb2\x83\x62\x06\xcc" "\x34\xc0\x63\xb5\x02\x70\xd7\xfc\x96\x8d\xab\x0d\x38\x07\x2c\xa9\x0b" "\xde\xf9\x11\x19\xb7\x2a\xb4\x17\xd8\x11\xd2\xf3\x2b\xd4\x1e\x6a\xb2" "\xbc\x5b\x52\x93\xf9\x2f\x7a\x0a\x4f\x17\x2b\xfe\xa5\x40\x3c\xd4\x18" "\xdb\x95\xe1\xa4\x23\x2f\x78\xf6\xaf\xd3\xd1\x39\x78\xe2\x06\xd8\x5f" "\xa9\xeb\xe2\xab\xe4\x44\xdb\x06\x5d\x03\xb6\x16\x9b\xc9\xf0\xdb\xfc" "\x19\x23\x7a\x74\xbd\x13\xc1\xef\x84\x4f\x83\x9b\x20\x01\x8f\xda\xf1" "\xbe\x6f\x1a\x17\x1f\x6f\x3c\xe2\x20\x5f\xdc\xce\x38\x33\x0b\x88\xce" "\xba\x0c\x5e\xae\x81\x2e\x12\xbe\x99\x99\x3d\x26\x5f\x80\x6e\x61\xec" "\x42\xc9\x52\x72\x87\x96\x7a\x1c\x3b\x27\xaf\xb1\xed\xc3\x5a\x5d\x17" "\xbb\x7f\x4d\x20\xea\x70\x8c\x62\xc9\x17\x0b\xa2\xab\x71\x0f\x2d\x7f" "\x5d\xca\x7b\x33\xe0\xf9\x43\x4c\xf0\xb6\xee\x84\x6f\xc8\xbc\x45\xd3" "\x9f\x25\x2e\xc6\x82\x73\x2f\xb0\x90\xf4\x60\x32\x49\x11\x55\xd8\x3a" "\x30\x89\x4a\x25\x9e\x03\x7e\x57\xde\x75\x23\x48\x1b\xcc\x2d\x70\x4d" "\x8d\x72\x8f\xbd\xf0\x48\xdf\x30\xf7\xe4\x86\x1f\x62\xb8\xe6\x3d\xe4" "\x7b\x38\x38\xb5\x06\x2c\xcd\x2c\x12\x5b\xc5\x81\x02\x4e\xa7\x6b\xd4" "\xb1\xf5\x30\x57\xf3\x7d\x32\x9f\x78\x61\xa2\xa7\x0f\xd3\xb6\xd6\xfe" "\x25\x2a\x1b\x89\x21\x92\xed\x75\xc5\x85\xab\x80\x9f\x70\x2e\x27\xe2" "\x37\xc4\xaa\x2d\xc9\x47\x58\x5c\x20\x86\xee\xaa\x29\xc3\xff\x7e\x02" "\xcb\x7d\x3a\x0a\xa3\xa8\x15\x6d\x28\x97\xda\xa9\xc4\x5a\x2e\x28\xba" "\x14\xfd\x40\xc8\xa3\xa0\x58\x80\x5e\x4b\x5b\x10\x64\x1c\x3c\x25\xb9" "\xab\x80\xcc\xe8\x32\x06\xb1\x3a\x1e\x2b\xc3\x62\xeb\x5a\xb7\xe0\xe6" "\x77\xc0\x1f\xc0\x48\x6a\xa3\x28\x62\xad\x0a\xfa\x4f\x1c\xc8\x49\x6b" "\x96\x1a\x0e\xec\x71\xc2\x6a\xd1\x07\xea\xd5\x99\xd8\xdd\xd5\x9d\x85" "\xad\xce\xb3\xea\x44\x2e\xfc\xf8\xed\x64\xf4\xc6\x65\x47\x34\x4d\xc8" "\x1e\xf5\xb6\xac\x10\x24\x34\x39\x52\x03\xf5\x8d\x59\x65\x6d\x41\xdc" "\xc1\x92\x77\x4d\x70\xf4\xf2\x96\x4e\x30\x4e\xfd\xe8\x31\x12\x6d\x40" "\x2a\x24\x03\x25\xe6\x03\x34\x7a\xa4\x36\x26\xb5\xeb\x69\xb0", 8192); *(uint64_t*)0x4000000008c0 = 0; *(uint64_t*)0x4000000008c8 = 0; *(uint64_t*)0x4000000008d0 = 0; *(uint64_t*)0x4000000008d8 = 0; *(uint64_t*)0x4000000008e0 = 0; *(uint64_t*)0x4000000008e8 = 0; *(uint64_t*)0x4000000008f0 = 0; *(uint64_t*)0x4000000008f8 = 0; *(uint64_t*)0x400000000900 = 0; *(uint64_t*)0x400000000908 = 0; *(uint64_t*)0x400000000910 = 0; *(uint64_t*)0x400000000918 = 0x400000000280; *(uint32_t*)0x400000000280 = 0x90; *(uint32_t*)0x400000000284 = 0; *(uint64_t*)0x400000000288 = 0; *(uint64_t*)0x400000000290 = 5; *(uint64_t*)0x400000000298 = 0; *(uint64_t*)0x4000000002a0 = 0; *(uint64_t*)0x4000000002a8 = 0; *(uint32_t*)0x4000000002b0 = 0; *(uint32_t*)0x4000000002b4 = 0; *(uint64_t*)0x4000000002b8 = 0; *(uint64_t*)0x4000000002c0 = 0; *(uint64_t*)0x4000000002c8 = 0; *(uint64_t*)0x4000000002d0 = 0; *(uint64_t*)0x4000000002d8 = 0; *(uint64_t*)0x4000000002e0 = 0; *(uint32_t*)0x4000000002e8 = 0; *(uint32_t*)0x4000000002ec = 0; *(uint32_t*)0x4000000002f0 = 0; *(uint32_t*)0x4000000002f4 = 0xc000; *(uint32_t*)0x4000000002f8 = 0; *(uint32_t*)0x4000000002fc = 0; *(uint32_t*)0x400000000300 = 0xee01; *(uint32_t*)0x400000000304 = 0; *(uint32_t*)0x400000000308 = 0; *(uint32_t*)0x40000000030c = 0; *(uint64_t*)0x400000000920 = 0; *(uint64_t*)0x400000000928 = 0; *(uint64_t*)0x400000000930 = 0; *(uint64_t*)0x400000000938 = 0; *(uint64_t*)0x400000000940 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x400000008280, /*len=*/0x2000, /*res=*/0x4000000008c0); 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; }