// https://syzkaller.appspot.com/bug?id=912f79b933915aba2231d0d06cea541ee0b211a2 // 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, 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 loop(void) { int i, call, thread; for (call = 0; call < 10; 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[4] = {0xffffffffffffffff, 0x0, 0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20002040, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x20002040ul, /*mode=*/0ul); break; case 1: memcpy((void*)0x20000040, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000040ul, /*flags=*/0x42ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd", 2); *(uint8_t*)0x20002142 = 0x3d; sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20002155 = 0x2c; memcpy((void*)0x20002156, "rootmode", 8); *(uint8_t*)0x2000215e = 0x3d; sprintf((char*)0x2000215f, "%023llo", (long long)0x4000); *(uint8_t*)0x20002176 = 0x2c; memcpy((void*)0x20002177, "user_id", 7); *(uint8_t*)0x2000217e = 0x3d; sprintf((char*)0x2000217f, "%020llu", (long long)0); *(uint8_t*)0x20002193 = 0x2c; memcpy((void*)0x20002194, "group_id", 8); *(uint8_t*)0x2000219c = 0x3d; sprintf((char*)0x2000219d, "%020llu", (long long)0); *(uint8_t*)0x200021b1 = 0x2c; *(uint8_t*)0x200021b2 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000000ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20002140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200021c0ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200021c8; break; case 4: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x1f; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; memset((void*)0x20004230, 0, 32); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20004200ul, /*len=*/0x50ul); break; case 5: memcpy( (void*)0x200042c0, "\x6c\xaa\x97\xc8\x50\xfe\xa1\xb1\x4f\xc6\xfb\x91\xac\x55\x1e\xdb\xe0" "\x10\x05\x7a\x5c\x9f\x37\x18\xfb\xf2\x70\xb8\x64\xd6\x9f\xca\xb5\x0e" "\xe8\x4f\xc1\x31\x99\xa4\x27\xf9\x70\x90\x1b\xd8\x01\xa7\x72\x92\xc7" "\x19\xe3\x7c\x44\x19\xcf\xe6\xc6\xb4\x0b\xbe\x47\x3f\x10\xbe\xb8\xbc" "\x99\x89\x35\x74\x81\x30\x92\xdd\x88\xdb\x5e\xd5\xde\x69\x83\x34\x4e" "\x59\xa8\x76\xf5\x6a\x4d\x5e\x6e\x22\x14\xaa\xa5\xf9\x4a\x23\xda\xf2" "\x3f\xa0\x03\xd7\x65\x97\xb2\x45\xd3\x44\x22\xc9\x5c\x7a\x0e\x4f\xc0" "\xc2\x52\x3a\x0a\x7f\xbb\xf5\xea\xa0\x26\xf7\x76\xab\x4d\x4b\x31\x65" "\x46\xe9\x54\x89\x91\xfd\x6d\x9b\x75\x80\xe5\xe7\xa9\x70\x3c\xad\x6f" "\x2f\x38\xac\xd5\x21\x88\xcc\xd4\x1f\x78\x84\x64\x6d\x82\x19\xf2\x86" "\x2a\xc6\xf2\x72\x9c\xa3\x19\x10\xa8\x70\xe4\x44\xf9\x47\x0f\xb1\x2e" "\xce\xd2\x7e\xd9\x2e\x16\xa9\x64\x1c\xbd\x62\x67\x43\x7e\x4c\xb3\x41" "\x0b\xb1\x49\x40\xce\x86\x2c\xb1\x20\x83\x62\x6e\x4f\x19\x43\x7d\x9b" "\x92\xd6\x56\xbf\x65\x1c\x2c\x7d\x80\x01\x11\x10\x8c\x91\x5f\xe8\x3a" "\x2f\x2e\xac\xaf\x2f\xa4\x8b\xc8\x42\x6c\x8e\x17\xbe\x0c\x11\xf8\x08" "\xde\x76\xee\x4c\x6e\x89\x53\xbf\xd0\x0f\xd5\x32\x8a\xd1\x51\x3e\x87" "\xc7\x9f\x23\xb9\xbe\x49\x08\xf2\x56\x05\xd9\xee\x55\x6f\xd6\xd2\xda" "\x43\xac\xae\xdc\x1d\xc0\x13\x98\x37\xef\x0d\xa5\xd0\x4d\x7d\x5f\x73" "\x60\xa9\xb3\x36\x30\xd6\xb2\x2c\x70\x12\x07\x7f\x19\xaf\x05\x15\x6a" "\xe0\x2f\xd1\xff\xc4\x62\x9a\x36\x68\xc4\xf8\x18\x55\x43\x72\x9a\x10" "\x13\x29\xcc\xfe\xda\xf1\x70\x7d\x2b\xca\x2f\x18\xbc\xc7\xf0\x84\xbd" "\xd8\xef\x8e\xc8\x76\xd1\x6a\xe9\xc3\xbf\xcf\x0d\x6f\xe5\x1d\x55\xa1" "\x87\x34\x07\xc2\x1d\xae\xd4\x65\x81\x65\xdb\xdc\xbe\x12\x29\x56\x3b" "\x2b\x9a\xdc\xd3\x7d\x1c\x5f\x64\x07\x23\x2e\xb2\xd6\x00\x07\x16\xe9" "\xc0\x95\x90\x81\xbc\xd9\x9b\x8f\xd6\x5b\x97\xd8\xc3\x2a\xb1\xa3\xd3" "\xbc\xde\xf5\x2b\x37\xd4\xfd\x97\x0c\xe8\xef\xfd\xb2\xb2\xdc\x5b\x7a" "\x04\xe7\xe0\xad\x0c\x54\xf2\x54\x14\x67\xe6\x0c\x84\x16\xb3\xce\xf0" "\xa8\xc1\x3c\x60\xd4\x0a\xa8\x68\xb3\xc2\x62\xb4\xd4\x15\xe3\x4c\x2e" "\x9b\x4a\x38\xcf\xe5\x74\x11\x24\x84\xc6\x44\xb1\xf1\xd1\xac\xb9\xbb" "\x7a\x7a\x6e\x3b\x5c\x21\x54\x10\x0b\x1a\x3a\xe1\x7a\x34\x0a\x5b\x19" "\x09\x4a\x3f\x87\x89\x75\xaa\xe5\xc6\x01\xa5\x72\x4a\x0a\xa6\x1f\x8a" "\xd6\x79\x1c\x4d\x20\xc6\xcb\x22\xbc\x96\xcc\x86\xbb\x4e\x41\xd1\xa9" "\x6e\x64\xd6\x22\xba\x25\x9c\x8e\x60\x46\x5b\x33\x8b\xb2\x7e\x7f\xd1" "\xce\x92\xc8\xd7\xe9\x6b\x62\x0d\x5d\xce\xf0\x15\xaf\xaf\x06\x38\xd2" "\x85\x93\x14\xde\x01\xd4\xf5\xf5\x02\x15\x9b\xe9\xdb\xc6\x05\xea\x19" "\xb8\x73\xa8\xee\xc4\x98\x9d\xdf\x9e\xf5\x09\xb2\x84\x00\xda\x3b\xea" "\x0f\xb5\xdb\x1b\xc5\xd6\x82\x1c\xd3\x4a\xa5\x0f\x28\xc1\x41\x4d\x23" "\xf4\xf0\xea\x81\x39\x2e\x36\x41\x89\x8d\x74\xdd\xf6\xbe\xa7\x4e\xee" "\x46\xaf\x2d\x77\x52\x39\x86\xd6\x0d\xf4\xf8\xa3\xf5\xa2\x8e\x6e\x70" "\x0a\x12\x61\x90\xde\x3b\x63\x9e\x75\xc5\xdc\xea\x4b\x60\x35\x7c\x97" "\x19\x52\x72\x18\x5c\x1a\xaf\x7a\xf8\x59\x90\xe5\x32\x6c\xa1\xa7\x0d" "\x21\x1a\x4d\x18\x3f\xe2\x79\xf6\xe2\x30\xc3\xe2\x3d\x53\xb6\xb3\xc1" "\x12\xb7\x2c\xb3\xf2\x2e\x1d\x4f\xcf\x22\xb6\xa7\xce\xd7\x50\xbd\x4e" "\xab\x9e\xab\xdd\x86\xcb\x80\x54\xb5\xfe\xf4\xc8\xfb\xbe\x6a\x6c\xdd" "\x2b\x09\xe5\xae\x50\xcb\x5b\xbb\x94\xc1\x74\xb3\xe1\x2a\x7e\x82\xda" "\x44\x46\x4f\x8d\xb3\xe1\x86\xc2\x93\x24\x0d\xc0\x0b\x40\x26\x7c\xf8" "\xbc\x23\x5b\xe7\xf7\x6d\xba\xa4\x2c\xd6\xb3\xd3\x40\x1c\x89\x80\x4e" "\xa1\x7f\xdd\x39\x0b\x82\x2d\x0f\xa1\x08\x49\x0d\x92\x6c\x97\x81\xa0" "\x2f\x9a\x16\xf6\xa5\x1c\x93\xec\xa8\xa3\xc3\xf6\xc5\x61\x08\x3d\xe5" "\xed\xfa\x0f\x48\xd8\xfb\x7b\xef\x9f\xbc\xb6\x2a\x45\xde\x5b\xb5\x67" "\x76\x11\x5b\x57\x4b\x8f\xeb\xb4\x02\x14\x0d\xa3\xc7\x51\xb5\x51\x58" "\xa2\x0c\x32\x78\xfe\x99\xcb\x28\xb1\xef\x33\x90\x79\x24\x24\x93\xf9" "\x33\x18\xa7\x32\x21\x9f\xc5\xd8\x8b\xa9\x1d\x80\x53\xd5\x70\x1e\x6b" "\xe4\x08\x89\x21\x71\x46\xd3\x06\x8f\x06\xed\xe8\x3d\x9f\x72\xde\x7f" "\xc5\xf9\xdc\x9e\x8a\x5a\xb8\xa0\x85\x12\x09\x62\x83\x24\x74\x8e\x33" "\xd2\xa5\x49\xc9\x55\xd7\x53\xb9\xe1\xe7\x5f\xed\xfe\x75\x2c\x34\x56" "\x89\x89\xd0\x9e\xe2\x8c\x33\x6c\x41\xe8\xde\x4d\xbe\x21\xfb\x69\x1d" "\xdf\x8c\x04\x10\xd7\x0e\xf0\xe8\xdc\xff\x85\x65\x6a\x71\x5b\x79\xd1" "\x70\xe6\x1c\xad\x19\xce\x0a\xdc\x61\xf9\x79\xf2\xd3\x69\xb3\x24\x3b" "\x6a\x0a\x02\xb3\x01\xb4\x7e\x57\x54\xbd\x14\xdd\x88\x90\x4e\xeb\x29" "\xb7\xc7\x98\xbc\x09\xe7\xa3\x1f\xe5\x46\x65\x48\x70\xbf\x20\xa9\xb9" "\xaf\x41\xdd\x5b\x76\xa3\xdf\x39\x74\x6f\x80\x87\xc5\xf3\x20\xd4\x88" "\x4c\xaf\x77\x6f\x4e\xde\x7a\x3e\xba\xe0\xa5\xa3\x7c\x01\x59\xea\x54" "\x58\x4a\xe7\x90\xfb\x6d\x37\x02\x25\x84\x55\x77\xa9\xdd\xa5\x67\x66" "\x15\x41\xbe\x9b\xbd\xe9\xce\x85\xbe\x54\x5d\x7f\x70\x40\xd0\x43\x9a" "\x07\x42\x0b\x1a\x63\x13\xdc\xf5\x24\xaa\x17\xd0\x34\x90\x1d\xe3\x3f" "\xdc\x21\xf6\x22\x59\xf0\x02\x36\xbf\xa8\x34\x98\x79\x41\x6e\x02\x72" "\x1e\x6e\x2e\xef\x0f\xca\x20\x86\x76\xf2\xc1\xdd\xfe\xde\xfa\x47\x4d" "\x1f\xd0\xa6\x08\x78\x7c\xd2\x50\x8a\x09\x29\xee\x4e\xe5\x9d\x47\x07" "\xd6\x46\x16\xe6\xf0\x61\x5c\x83\xb5\x95\x3e\xbf\x6e\xd1\xb4\x50\xe0" "\x54\xbb\xee\xde\xb3\x25\x44\x93\x66\x8a\xfc\x22\x1b\xf6\xcc\x63\x52" "\xcb\x6f\x85\xe7\xbf\x5e\x89\xd8\xb9\xbc\x23\x4a\xfc\xb3\x50\x47\xfa" "\x2c\x0b\xa5\xa3\xe9\x88\x9b\x5c\x2e\x83\x35\x01\x41\xae\x0b\x7c\xa2" "\x4c\x15\xcd\x8d\x9d\x4c\xeb\xe6\xa7\x83\x4e\x74\xab\x19\x9f\xd2\xcc" "\x0a\xf6\xbc\x29\xa1\x11\x72\xff\x7e\xf0\x68\xe9\xfd\xe5\xca\x44\x03" "\x77\xcd\xa9\x78\x78\xdd\x9f\xc9\xb7\x8a\x39\xac\xf7\xdb\x03\x67\x48" "\x43\x67\x41\x90\x16\x99\xcc\xd5\x8b\x86\xee\x72\x69\x8a\x0c\x38\xe9" "\x9b\x28\x38\xbf\x8b\x3a\x86\x1c\x8c\x2b\x23\x42\x99\x7c\x20\xd4\xc7" "\xb7\x6a\xfe\x47\x92\x05\x85\x48\x15\x0b\x9d\xf3\x4e\x1a\xad\x36\x70" "\x20\xd9\x9e\x9d\x8e\xf0\x35\x33\xc0\x8f\xf1\x32\xa3\xb2\xc2\x54\xb7" "\x31\x70\xfc\x53\x5d\x32\x9d\xaf\xb0\x3c\xd6\x37\xc4\xb7\x8f\x5e\xf7" "\x7c\x8e\x04\x9e\x3f\x70\xd3\xe8\x36\x4b\x27\x0f\x8d\x57\xeb\x04\xda" "\xad\x96\xc5\x23\xf9\x0c\xc4\x42\x52\x48\x29\x82\x39\xf9\x1e\xa7\x0d" "\xf5\x4c\x7d\xcf\xf7\x58\xd8\xb3\xf3\x0d\x74\x61\x0d\x98\xf4\xf1\xec" "\x6a\xb2\xbc\x4e\xac\x3c\x73\x98\xb2\x93\x47\x0f\xdb\x49\xf5\xe6\x20" "\x03\x52\x36\xb5\xa3\xa7\x8c\xa1\x61\x11\x4b\xa6\x36\x7f\x2c\x0b\x9c" "\x70\x3f\x6f\xf1\xf3\xc0\xc9\x0b\xe4\x1b\xdc\x55\xc5\x27\x29\x45\x61" "\xec\x97\x97\x36\xd7\xf2\xee\x02\xfc\xdd\x50\x1d\x7e\x14\x5b\x83\x69" "\x99\xf2\xe4\x31\x4d\x06\x08\xef\x31\x9e\xa1\xa0\xe5\x4a\x38\x2d\xed" "\xe9\x1f\x1b\x5d\x94\x8b\x34\x29\x85\x19\x61\xce\x39\xa4\xf5\x3d\x5d" "\x26\xc2\x97\x42\x3c\xab\x74\xf5\x24\xf2\x7e\x9b\xbb\xa3\x2f\x94\x99" "\xda\xca\x87\x8a\x60\xd8\xcb\x9d\x3f\xe3\xbf\x90\x35\x80\xab\xa2\x49" "\xd4\x76\xd4\x83\x78\xf4\xe7\x8a\xf6\x86\xf0\x0c\x52\xf5\x8f\x1c\x10" "\xf7\x8b\x11\x14\xbf\x11\xa0\xf0\x8d\xe7\xa4\xf4\xb2\x80\x99\xce\xed" "\x96\xc1\x46\x60\x40\x0b\xf8\x58\xb2\xc9\x2f\xd9\x5e\x58\x1d\x60\x37" "\x25\x9e\x31\xf3\x5a\xa3\xcd\xbd\xc3\x0f\x7a\x1a\xea\x6a\x4a\x7f\x5d" "\x9e\xd5\x90\xe2\x99\xc2\x7b\x0d\x6f\xd0\xe6\x90\xe6\x05\x95\xeb\xd5" "\x9b\x5b\xc7\x79\x0d\xbf\xf7\x99\xdb\x56\x1f\xaf\x5c\x3c\xcf\x5b\x53" "\xb9\x27\xd5\x80\x03\x9e\xaf\x41\x44\xab\x32\x7d\xdb\x84\xe1\xae\xa2" "\x7a\x2d\x4e\xa2\x54\x4c\xcf\x81\x90\x98\x75\xdb\x76\x4e\x57\x90\xaf" "\xd6\x38\x38\x7b\xa3\x09\xbc\xe4\xd9\x82\xd7\xe1\x17\x1e\x54\x0f\x49" "\x33\xe0\x48\x5a\x60\xbb\x78\xc0\x32\x7e\xf4\x8b\x83\x57\x75\x4f\x64" "\x8d\x72\x75\x2e\x9a\x27\x59\x43\x4c\x52\x1e\x4f\x74\x33\x55\x18\x55" "\x2b\x0c\x1d\x0d\x28\x98\xcf\xed\xe0\xf7\x24\x9e\x3c\x4e\xbb\x64\xfc" "\xe5\x6b\x42\x6e\x3b\x76\xf4\x57\xd4\xcf\xe6\xa9\x77\x2c\x60\x1f\x1e" "\x4f\x45\xa3\xd1\xf3\xd2\x4b\xa2\xfa\x39\x6a\x41\x22\xf4\x93\xd4\xf1" "\x83\x6a\x56\xfd\xcd\x39\xcd\x8f\xec\xf1\x55\xd1\x66\x2a\x28\x17\x53" "\xf8\x63\xa3\x40\x47\x83\x23\xc7\x51\x90\x2b\xb9\xbd\x41\x26\x4e\x8b" "\xd2\x70\xd3\x02\x07\xae\xf6\x29\x39\x02\x03\x92\x58\x67\xc3\x1c\xba" "\x5c\xe3\x71\xb8\x98\x0e\x85\x4c\x0a\x2d\xba\x70\xff\xa9\x3c\xc3\x70" "\xff\x08\xc1\xc5\x50\xa8\xf4\xf6\x3e\x7c\x0d\x32\x50\x2b\x01\x96\xd9" "\x14\xc4\x68\xe8\x7d\x94\x4f\xc4\x99\xc7\x76\xc3\x5e\x51\xab\xda\x95" "\xf7\x6b\xab\x1c\x68\x88\x35\xe5\x98\x7b\x09\xcf\x2c\x0f\x3e\x55\x77" "\x10\x21\x77\x54\xa4\x30\x01\x91\x15\xfc\x2a\xe7\x67\xc7\x3b\x16\xed" "\x59\x3e\x70\xeb\x8b\xa1\x92\xfd\x5b\xf2\xe1\xa3\x9e\xb5\x23\x7f\x3d" "\x92\xb0\x60\x0f\x31\x46\x7f\x73\x33\x53\xec\x2c\x0d\xe7\x4b\xaa\xee" "\xe2\x74\xe8\xe8\xb8\x7a\x41\x80\x9b\x68\xe0\xce\x5d\xa5\x22\xf2\x4e" "\xb9\x07\xc8\x7e\xa5\x87\xca\x05\x18\x1d\x83\xce\x38\x1a\x1d\x99\x48" "\x71\x51\xb4\xc8\x77\xc3\xaa\x92\x3d\x6b\xf9\x2b\x45\xc0\xb0\x25\x10" "\xad\x04\xbf\x10\x1b\x9d\xf9\xdd\x85\xd5\xe9\x11\x08\xee\x0b\x0a\x10" "\x38\x59\x04\xf4\x02\x82\x86\xd0\xa0\xc9\xb5\x07\xad\xc9\x63\x16\xc2" "\xc5\xdb\xe7\x04\xe2\x3e\x79\x81\x22\x27\x45\x06\xb1\x61\x64\x84\xc7" "\xb2\x4d\x76\x3a\x19\xa9\x8e\x92\xb6\x16\x37\xb6\xbd\xfe\xc2\x5e\xee" "\x45\xe7\x66\x9f\x1e\x97\xa0\xa1\xdc\xad\x13\x94\x52\xaf\x25\x57\x9b" "\x91\xda\x5f\x04\xa1\xa8\x4f\xdc\x73\x72\x30\xf1\x7b\x78\x83\x20\xb1" "\x46\x91\x0d\xf7\xd2\xf9\xdc\xbe\xf0\x00\x6b\x18\x96\xc2\x40\x7e\xff" "\x1b\x73\xfe\xe5\xb7\xcf\x43\xb0\x99\x6d\x10\xa7\x0d\x1b\xb3\x8c\xf6" "\xb2\xdf\x62\xa8\xcc\x3c\x24\x85\x45\x44\x69\xc0\x97\xd5\x26\x2f\x53" "\x8a\xdf\xf6\xa2\xa3\x58\x94\x87\xdb\x27\x98\x19\xc7\xb7\x21\x52\x14" "\x88\xb0\x12\x05\x3c\x48\x25\xb4\x11\xaf\xca\x18\x7d\x28\x0e\x9b\x57" "\xf8\x52\x96\x22\xb4\xbb\x7a\xf0\x56\x79\x53\x19\xc8\x3d\xe6\x16\xda" "\xe1\x60\x6e\x24\x1e\xac\x61\x6a\xdd\x7e\xd2\x4a\xca\xe2\x77\x2d\x44" "\xb0\x5d\x82\x57\xb8\x9e\x0a\x28\x86\x31\x54\xb6\x69\xb9\x6c\x9b\x00" "\x0e\xb1\xa0\xa4\xd4\xc5\x37\x27\x41\xe7\x78\xd7\x87\x5f\xef\x9d\x9c" "\xe7\x20\x92\xf9\x73\xaa\x41\x86\x17\x1e\x1a\x9c\xa6\x72\x0f\x52\x79" "\x5d\x7d\x85\x50\xa9\x90\x78\x6f\x2c\xdd\x66\x98\xe8\x41\x27\x86\xad" "\x1a\xf5\x3d\xdd\x77\xd9\x64\x9d\xee\xf5\xd9\xff\x3b\x8d\x11\xbd\x76" "\x7d\x3d\x9c\x19\x83\xd6\xc9\xfc\xd9\x98\x76\xaa\x93\x24\xd7\x93\x1e" "\xef\x0b\x90\xc3\x8c\x37\xf9\x02\xc5\x0b\x2f\x8c\xe2\xca\x1b\xcf\x87" "\x86\x15\xd4\x47\x97\x43\x36\xdc\xf0\x98\x11\x0f\x7a\xbe\xf1\x94\x93" "\x12\x86\x32\x34\xd4\x88\x52\xc6\x09\xd4\x91\x4e\x40\xc1\x1b\x55\x13" "\x84\x91\x34\x08\x31\x3c\x3b\xfe\xb3\x84\xd5\x5c\x9b\x01\x18\x3e\x4b" "\x38\xe8\x02\xeb\xd7\x0d\xa0\xaa\xda\xc1\x84\x63\xa0\x71\xbe\xf4\xd4" "\x7a\xd5\xa7\xb3\x38\xf8\xf6\xe1\xc6\x6b\x93\xf4\x93\x07\xa8\x28\x36" "\x02\x80\x08\x2f\xa4\xa6\xeb\xec\xef\x9f\x44\x53\x75\xab\x29\xda\xeb" "\x22\x0d\xfc\x1c\x33\xf7\xb8\x25\x5d\x4e\x72\x3a\x17\x85\xea\xd3\xec" "\x00\xed\x48\xd5\x9f\xc2\xee\xca\x1c\x58\x0f\x2c\x2e\x8c\xa6\xcf\x94" "\x6e\x30\x25\x07\xeb\x95\x6f\xbf\xbc\x89\x58\x68\x42\x36\x8d\x94\x96" "\xcc\xe5\x43\x1a\xd3\xc2\x6e\x36\x37\xc4\x86\xcb\xc6\x8b\x31\xc1\x3f" "\x31\x10\x43\xb6\xa0\xff\xac\x9e\xee\x7c\xfd\x66\x31\xc6\xcf\xda\x28" "\x3d\x79\x1e\xee\xec\x55\x4e\xdf\x3c\x3a\x9e\x58\x2f\x56\xd3\x1e\x84" "\xbf\xdd\xf0\xb9\xa3\x96\xbc\x85\x57\x77\x88\x54\x7b\x5d\x29\x0f\x3e" "\x28\x5b\x76\xd9\x46\x58\xa8\xc2\x42\x11\xe8\x28\xb9\x43\x56\x8f\x62" "\xfe\x48\x42\xb4\x37\x07\xa5\x02\x16\xf6\x31\xbe\x1b\xe5\xd9\x9f\x0a" "\xe2\x9a\x9e\xcd\x2e\x86\x63\x3e\xc3\x76\x31\x3f\x39\xe6\x8a\x2c\xeb" "\x25\x7f\xf2\x5a\x1d\x80\x55\x3f\xcb\xfc\xa2\x22\x48\xd4\xc2\xe6\x96" "\x15\x99\x56\xd3\xfe\x8a\x8f\x00\x90\x6c\xea\x54\x13\x1c\xa8\x20\x38" "\x52\xfd\x13\x56\x2f\x76\x43\xed\x60\x17\x09\x9d\x0e\xe8\x78\x53\x58" "\xf5\xc7\x7b\xb9\x01\x0e\xc3\x5e\xa8\x9d\x20\x73\xa9\x87\xd7\x5e\x12" "\x6b\x1a\x77\x84\x61\x4b\x8d\x48\x90\xec\xc3\x2f\x86\x6e\x67\xad\xca" "\xdf\x51\x5d\x7b\xa2\xd4\x97\x67\x64\x73\xc0\xf6\x99\x06\xb9\x21\xac" "\xe4\xff\xcc\xed\x1d\x9e\x0f\x4f\xe8\x9d\xcd\x72\x55\x8b\x84\xd0\x8b" "\xbc\x44\x9d\xe1\x42\xaf\x69\xfb\xe6\xcf\xe4\x06\xdf\x0e\xef\x4e\x9c" "\xd1\x93\xb5\x6a\x4c\x55\x56\x07\x95\xe2\xb9\xac\xf2\x21\x2c\x30\x37" "\xef\x60\x6d\x1f\x42\x6c\xdb\x36\xee\x58\x17\x9b\x54\x76\x9d\x37\xfd" "\x87\x57\xc4\x54\x65\x6a\x18\x29\xc7\xfd\x18\x55\x5f\x83\x5d\xf2\x8f" "\xe4\xb8\x6a\x75\x67\x3f\x6f\x16\x1d\x23\x50\x78\x39\x8f\xc5\xf8\x3d" "\x31\x20\x48\xce\x37\x76\xe1\x87\x67\xcf\xa5\xcd\x04\xd9\xdf\x81\xc8" "\xdd\x32\x83\xfc\x0b\x9a\x0e\x12\x7b\xaf\xac\xe9\x37\x6b\xe3\xfa\x64" "\x27\x35\x70\x84\x9c\xaf\xdf\x2d\x61\x06\x94\xcd\xa5\x3c\x77\xd2\x13" "\xb5\x23\x20\xb5\xec\x49\x22\x09\xb1\xd2\xc9\xaa\x9d\xb7\x6c\xda\xd6" "\x7b\x9d\xef\x1e\x37\x83\x19\x3d\x80\xf2\x83\x50\x3c\x3d\x11\xa0\x5d" "\x6f\x7a\x36\x45\xc8\xd7\x89\xcb\x8d\xa1\x29\x61\xd2\x51\xb9\xc2\xa4" "\x0f\x1c\xf9\xec\xee\xa6\x20\xd7\x11\x38\xaa\x28\x8c\x1a\x79\x3b\xdf" "\x8f\xee\xca\x41\xc5\x30\x9a\xa6\x28\xc4\x6c\xa8\xf9\xbe\x5b\x1f\xf6" "\x56\xa2\xf7\x68\x1c\x72\x5a\x08\x06\x82\x80\x56\x41\x0c\xa0\x9b\x81" "\x52\x32\x17\x66\x4f\x33\x23\xd8\x28\x7f\xc8\xd4\x7a\x2b\x3b\xc1\x52" "\xe9\x20\xfd\x7f\x71\xf2\xfb\xab\x51\x00\xdc\x18\xaa\x3e\x8e\x6f\xa7" "\x98\x5c\xef\x78\xa2\xc7\x13\x09\x6d\xa4\xc4\xb9\x80\xb4\xb5\xa3\x86" "\x95\xc7\x74\x7c\xd6\xdf\x4a\xe9\x0f\x3e\x0b\xef\xae\x73\x29\x5c\xd4" "\xde\xdb\x4d\x5d\xbe\x87\xbf\x51\xe1\x18\x32\x02\xbe\x62\x72\xba\x6a" "\xf4\x40\x7d\x22\xa3\xd8\xa4\x2f\xaf\xb1\xd1\x05\x55\x4c\xcb\x32\x91" "\x51\xd2\x83\x87\xcd\x77\x6c\x9d\xa3\xc4\xf2\xe5\xe6\x6a\xb4\xcd\xe4" "\xd2\xa1\xe0\x04\x58\x8f\xde\x23\xbe\xf5\x63\x3c\x99\xea\x1c\xf9\x54" "\x8a\x4b\x69\xbb\xc1\x91\x65\xd4\x9d\xad\x70\xec\x1a\x47\xae\x9a\x9b" "\x64\xd4\xd4\x5e\x01\x9a\x16\x10\xf3\x31\xe0\xbd\x0b\x1f\x5a\x65\xbe" "\x69\x04\x03\x5c\xef\x8b\xa1\x52\x60\x85\xf0\x4e\x6a\x7b\xa7\x25\x7e" "\x6c\x38\x22\x47\x96\xbf\xd8\x95\x9a\xaa\x02\xc2\x78\x97\xb3\xeb\xe6" "\xb5\x18\x3c\x79\x56\xb1\x00\x43\x0e\xe3\x31\x8c\x60\x1a\x94\x6d\xf9" "\xac\xb4\x1f\x10\xe3\x1f\x65\x3c\xbc\xea\xd8\xb5\x0a\x26\xb8\x47\x6a" "\x66\xf3\x2d\x8d\xb7\xf6\x70\xd4\x8c\xb2\xf1\x57\xcd\x79\xb1\xb5\x3c" "\x76\xab\xe1\xc3\x65\xbf\x94\xa2\xdc\xc9\x68\x17\x6c\xdb\x63\x73\x99" "\x0c\xe2\x32\xa8\xd2\x3a\x88\x36\xf4\xd1\xa0\x00\x27\x77\x3e\x91\xf1" "\xc9\x2d\x0d\x5e\x97\x7a\x90\x0a\x93\xc9\x53\x34\x0e\x72\xb9\x47\x70" "\xb5\x5c\xbb\x98\x15\xc3\x3a\xbd\x91\x44\x03\xd7\x24\x9b\x2c\x3a\x04" "\xd2\x22\x0f\x05\x68\x99\x0e\xd0\x57\x76\xec\xd5\xce\x00\xd0\xa5\xfe" "\xa9\x75\x42\xb1\xd0\x7e\x7d\x59\x58\x9a\x39\xdf\xe7\xbd\x2e\x60\xd7" "\x09\x04\x90\x65\xc0\x70\x4a\xfa\xba\x33\x81\x5c\xc1\x9a\xea\xac\x74" "\x41\xbb\xce\x69\x57\xb2\x7d\x4b\xab\x93\x12\x8f\xb6\x79\x1f\x1f\x19" "\x39\x29\xa9\x76\xe6\x11\x3c\xd0\x45\xea\x25\x9a\x2c\xfa\x58\x3b\x3c" "\xc0\x65\x82\x58\x13\xd9\x2d\xba\x4b\x3a\xe4\x6e\x73\x72\x0c\x03\x00" "\x06\x7c\xfe\x9b\x5c\x19\xef\x75\x93\x50\x24\x70\xa1\xc3\x89\xd0\xcd" "\xfe\xd8\x1b\x20\x7f\x40\x03\xdb\xe1\x26\x7d\x2e\x7f\x8b\xc3\x76\x5c" "\xf4\x4d\xc0\x8a\x16\x3c\x8c\xdc\x6e\x7a\x2b\xca\xa0\xab\x1b\xb0\xf6" "\x80\xc4\x2a\xb8\x28\x03\x9a\x37\xaf\xf2\xde\x96\xb4\x95\x8a\x18\x09" "\xa9\x8b\xe1\x81\x16\x77\xed\x0b\x78\x34\xbd\xec\x6b\x2d\x47\x6d\x34" "\xb4\x89\xfd\xdf\x60\x81\xa0\x0e\x8b\xf8\x8c\xc7\xd3\x6a\x69\xd0\xec" "\xc0\x90\xe9\x61\xb6\xe8\x10\xd0\xe0\xee\x69\xc6\x87\xe6\x11\xa8\x3c" "\x71\x96\xad\xbf\x49\xfc\x9c\x5a\x88\xad\x93\x44\x10\x43\x71\x2b\x7f" "\x97\xea\x05\x1f\x96\x42\xa2\x1c\x24\x0d\x05\x33\xc4\xfd\x3c\xfa\x0c" "\xa1\x50\x02\xe3\x5c\x82\x6b\x34\x7c\xec\x64\xf9\x2d\xc7\x93\x94\x57" "\x76\x2c\x2a\x16\x88\xe9\xf0\x50\xdd\xf8\x11\x6e\x27\x01\x18\x37\xf5" "\x31\xcc\x4d\x6b\x31\x99\x52\xf7\x84\x93\x5c\x8b\xc9\x08\xbb\xae\xd1" "\xca\x04\xaf\xe1\x66\x9c\x89\xf5\x38\x49\xa2\x29\xf5\x1e\x89\x63\x4f" "\x3c\x55\xc5\x3b\x0e\x1b\x6b\xfe\x00\x60\x36\x99\x24\x7e\xee\x9c\xf5" "\xf9\x83\x13\xb8\xb4\xf2\x01\xeb\x43\x6e\x46\xfa\x78\x07\x48\xb5\xfa" "\xc3\x80\xb6\x63\x70\x46\xdc\xec\x1c\xbe\xf4\x4f\x62\xb4\xef\x2f\xa7" "\xd8\xab\xac\xad\x4d\x2d\x1e\x45\xc1\x5f\x82\xb6\xc1\x73\x47\x11\x9d" "\x45\x6a\x75\xbe\xe4\x72\x25\xe9\x45\x96\xf3\x61\x00\x21\x6c\xc7\xcf" "\xec\xd2\x71\x7e\x7f\x79\x78\x26\xc7\x8b\x73\x80\x54\xec\x15\xd6\x72" "\x88\xe6\x99\xc8\x65\x98\xef\xb5\x7f\x5d\x8c\x79\xfa\x88\x69\xe9\x19" "\xa3\xbf\x9c\xd5\xb2\xf7\x34\xf8\x2a\xd3\x9a\x7b\x55\x6f\x30\xa4\x5d" "\xbf\x55\xdb\x5e\x64\x51\xcf\x0b\x89\x33\x1e\x0a\x34\x0c\x8c\xb0\x67" "\xac\x98\x25\x84\x0c\xb8\xab\x89\x68\x94\xd9\x4f\x7c\x9f\x22\x8a\xff" "\xed\x72\xd9\xbb\xa2\x7b\x88\xfc\x74\x1c\x1b\x8d\xf0\xc4\x62\x81\x0e" "\x9f\xfd\x26\xc2\x09\x6e\xf7\xad\x43\xdd\x54\x70\x9a\xb7\x2a\xc9\xb2" "\x03\x12\x25\x8f\x95\x4e\xda\x39\xad\x2d\xa1\xa1\x70\xd9\xa8\x56\xf9" "\x16\x0b\xcf\x07\xdf\xf1\x00\x5c\x2b\x40\x6b\xab\x7a\x0a\x33\xc0\x09" "\x30\xba\x03\x42\x3c\xd1\x9a\x7a\x6e\xc3\x24\x4d\x54\xf6\x16\x1a\x46" "\x4c\x5a\x0e\x43\xab\xba\xd0\x97\x67\xf2\x90\x13\xdf\x51\xd9\x21\x79" "\x12\x76\x12\x56\x80\x11\xf2\x90\x99\x2c\x9b\x3a\x6b\x47\x8e\xf4\x04" "\x8f\x08\x54\x6b\x2e\xa1\xc7\xcf\xeb\x14\x14\x45\xa4\xee\x49\xf9\x86" "\x79\x41\xda\x0f\xfe\xa9\x26\xc4\xaa\x4a\x1e\xcc\x58\x66\x44\x55\xef" "\x17\x23\xa5\x67\xe1\xcf\x8a\xdf\xdf\xac\x0c\xf7\xf7\x7c\x42\xb0\x68" "\x50\xc2\xb5\x21\x51\xf7\x02\xdc\x63\x65\xb6\x0d\x9a\x2a\xca\xe2\xae" "\xe0\x28\xa3\xb6\x69\xa5\x14\xa5\x21\x20\xc7\xb0\x40\xba\x6e\x6d\xea" "\x4b\xb6\xa0\xe4\x02\x49\x06\x63\x27\x8c\x61\x8c\x7f\x77\x86\x05\x46" "\x33\x93\x34\x30\x25\xd7\x67\xd6\xbc\xb4\xa3\x68\x7a\x2e\x8a\x51\x24" "\x9d\xc2\x30\xbd\x84\xe1\x7f\x4f\x96\x4c\xaa\x7a\xff\x82\xcc\x17\xc6" "\xa3\x39\x75\x94\xfe\x38\x82\x4b\x35\x84\x44\xd0\xd0\x40\xca\xda\xb2" "\x02\x87\xaa\x88\xad\x81\x12\x3d\x92\xff\x35\x25\x37\x7c\xa6\xe3\x97" "\x86\x8c\x08\x9e\xf6\xc7\x5a\x63\xda\x8b\x4b\x89\x24\x23\xb4\x0a\x2a" "\x33\xa4\x20\xb0\x88\x21\x15\xae\xa3\x16\xfe\x8e\x61\x00\xc3\x0a\x0c" "\xe2\x27\xdc\xaf\xf5\x48\xb8\x87\x42\x3d\xe9\xa8\x1d\x10\xb8\xf2\x0a" "\x06\xcc\x14\x8b\xef\xd0\x16\xaa\xbd\xe0\xee\xa4\xe5\x3e\xfb\x35\xb0" "\x88\xef\x77\x32\x50\xb0\xed\x94\x95\xa4\xec\x9d\xb5\x30\x53\xbc\x7e" "\xfb\x7e\xaa\x8e\x42\xe4\x0a\x20\x57\x2c\xc0\xf2\xb1\x97\x72\xa4\x7d" "\xed\x7f\x58\x32\x63\x40\x0f\xef\xd0\x03\x4b\x09\x77\x70\x3c\xb5\x2a" "\x1f\xcc\x38\x5e\xa2\x5a\x35\xef\xcc\x65\xf9\xf0\x96\x5c\x16\x26\xbb" "\x8b\xa0\x19\xde\xb0\x83\xf8\x7f\xfe\x68\x0f\x5b\x33\x4d\x42\x7d\xbe" "\x83\xbc\xc0\xb6\x82\x88\x90\x26\x5a\x52\x01\xab\x06\x1e\x3d\x83\x97" "\xa0\xe1\x13\xe7\x25\xb0\x9f\x8d\xac\x69\xd5\xc1\x73\xc1\x71\xd1\xde" "\x31\x27\xa2\xbd\xa3\xf7\x98\x69\x17\x17\xbb\x08\x65\x2a\x23\x34\x52" "\x73\x52\xd8\xf6\x8f\xa8\x8d\x28\x4a\x03\xc5\x41\xad\xe4\xa4\x49\x35" "\x96\xc3\xac\x76\x54\x78\x42\x80\x70\x02\x14\x79\x66\xd2\xf3\x4b\x96" "\x40\x1c\x60\x3d\x1f\x72\xb8\xd6\x37\x4a\x5b\xb7\x59\xb7\xda\x92\x40" "\x4b\xf1\x3c\x29\xe6\x3a\xfa\x0c\xc6\xfc\xe9\x4e\xc9\xf6\x18\x7b\x96" "\x8e\xbb\x85\x32\x71\x91\x43\xb0\xd2\x0a\x2f\xa8\x48\x7a\xff\x13\x6e" "\x7b\x02\xaf\xaa\xe4\xa6\x2c\x49\xba\x30\xc6\x65\x3b\xfa\x26\x47\x16" "\xc4\x8d\xb0\x45\x44\xcf\x98\x34\x26\x65\xc7\xe8\x95\x8f\xea\x73\x95" "\x85\x8f\xc9\x89\xa7\x0a\x5e\x07\x6e\x20\x61\xfc\x44\xe2\x65\xbd\x3f" "\x1f\x7f\x9c\xba\x10\xa5\x21\x88\x4b\xc0\x6e\x9f\xa0\xc7\x55\xe3\x51" "\xcc\xd6\xb7\x58\xbc\xe4\x85\x7a\xf9\xff\x82\xba\x09\xbd\x67\x79\x83" "\x6e\xed\xdb\x84\x72\xcf\xec\x89\xf9\x04\xc3\x55\x3a\x31\x73\x7e\xf2" "\xfc\xba\x46\xa7\x22\xc7\xa8\x8a\xe5\xe2\x7f\x3f\x3c\xf1\x6b\x59\xd1" "\x75\x5b\x38\x80\xd0\x40\x97\xd7\xd0\xd7\x8a\x88\x6e\xaa\x60\x98\xfd" "\xcf\x76\x4c\x5a\xe2\x1d\xc2\xfb\x6e\xe8\x47\x06\x3b\x0e\x73\xa8\xb2" "\x38\x68\xb1\xfe\xfb\x39\xf5\x43\x7b\xf6\x63\x5c\x3a\xb4\x9b\x80\xcf" "\x87\x57\xec\x4c\x07\xc1\xc3\xf1\xd0\x5c\x6c\xab\x1f\x88\xd0\x8b\x15" "\x21\xfd\x31\xb8\xa2\x9b\x9f\x85\xa5\x8c\xb3\x2d\x91\x6f\x9a\xc5\x9b" "\x2d\x99\x9f\x10\xdb\x0a\x85\xdd\xaa\x3b\xe5\xc3\x59\x8f\x75\xaa\xb4" "\x3c\x54\xc1\x81\x5d\xe6\x22\xf9\x90\xa5\xb8\x45\x02\x0f\x58\xbe\x94" "\x89\x52\x54\x64\xb6\x48\xc6\x7a\x84\x4c\x01\x2f\x82\x5c\x2b\x48\xa1" "\x6e\xf6\x91\x41\xe7\x15\xf9\xbd\xde\x5d\x5b\x53\x46\x0a\xab\xbc\x98" "\x4f\xfa\x52\x46\xf7\x8e\x21\x2b\xcb\x86\x47\x8d\x09\x74\x6f\xbb\x46" "\x4f\x46\xd9\xe6\xc9\x89\x9f\x69\x75\xf0\x40\x7a\xeb\x1d\x3a\x72\x21" "\x16\x97\xcc\x5b\x88\xdc\x30\x95\x83\x15\x04\xf8\x83\xd0\xea\x03\xb4" "\x06\x79\xe2\x76\x46\x5b\x2e\x45\xab\x00\xca\x98\xd3\x44\xe8\x05\x6b" "\x73\xe2\x84\x5b\x6e\xbb\x72\xe7\x7b\xbc\x0a\x8f\x9d\x31\x99\x17\x6e" "\xcc\x26\x75\x1e\xc1\x5c\x77\x0a\x99\xb1\xf6\xcd\x5b\x06\x45\xff\x6e" "\xc2\x13\x64\x03\x87\x10\x6b\x8d\xc9\xe1\x18\x30\xc7\x2c\x68\x9d\xaa" "\x82\x63\xef\xcd\x25\xbd\xde\x4c\x08\x24\x93\x09\x84\xed\x54\xee\xdb" "\xe2\xda\x96\xa4\x87\xa3\x10\x74\x93\xe0\x8c\xc4\xf3\xba\x67\xa5\x0c" "\xf3\x48\x57\x82\x02\x47\x43\x6c\xb4\xb8\xab\x8e\x7b\x06\xed\xfa\x22" "\x2a\xbd\x46\xb8\xb2\x01\xb1\x5a\x4d\xe6\x82\x27\x36\xc0\xa1\xae\x3b" "\x99\x1a\x7d\x2f\x20\xb2\xf7\xd3\xd2\xe8\x0a\x72\xb1\x4d\x30\x50\x47" "\x23\xbd\xbf\xf9\x63\xdc\xb6\x8b\xfc\xe7\xbe\x7d\x63\x3b\xa3\x5c\xcf" "\x64\xdc\xe1\x6e\xeb\x33\xa8\x96\xbb\x01\x77\x96\x76\x2a\xb1\x15\x62" "\x8c\x22\xbc\x6c\x7b\x72\x50\x2c\xa4\xa8\x81\x54\xa3\xd4\x35\x21\xd7" "\x4a\xfb\x1e\xdb\x44\xac\x56\xa6\xa1\x83\xa6\x91\xea\x09\xb7\x21\x10" "\x10\x92\x7a\xc2\x49\x0b\x07\x87\xfd\xbf\xd2\xde\xcd\x26\xd4\xad\xda" "\xb8\x08\x1d\x10\x30\x24\x40\xf9\x20\x4f\x82\x80\xc6\xdc\x5a\x64\x59" "\x5c\x11\xa4\x92\x58\x72\x2b\xf9\x8b\x9b\x91\x9b\x87\x3e\x55\x1d\x75" "\x45\x4a\x2a\xb5\x81\x75\x03\x76\xc0\xaa\x13\x38\x13\xd6\xf4\x92\xe9" "\x12\xa0\x2b\x3e\x8b\x35\x20\xad\xe1\xa2\x04\x20\x53\x2b\xe1\xde\x5b" "\x3d\x65\x5b\x9b\x83\x89\x44\x0c\x9a\x84\x25\x8c\x53\xea\xd0\xce\xa7" "\x79\x21\x1a\xd3\x24\xe8\x0d\xb0\x6f\x2e\x9f\x58\x4f\x47\xc9\x23\xae" "\x4f\xa3\xeb\x3b\x8e\x93\x5c\x7f\x13\x5d\x08\xe5\xd5\x5a\xa4\xac\xab" "\xc0\x68\x54\x8f\xa4\x0a\x5e\x19\x31\xfb\x59\x10\x32\xe1\x96\xeb\x18" "\xdb\xdf\xd1\x51\x87\xc5\x9c\x7d\x9d\x28\x36\x9d\x8a\x35\x4c\x95\x1c" "\xe9\xd2\x48\x2c\x9b\x32\x41\xee\x4c\xb8\x40\x54\x9d\x92\xf9\x22\x7e" "\x7c\x30\xf2\x4e\x07\xab\x3a\x65\x7d\x32\x81\x07\x42\x27\x9a\x8b\x32" "\x64\xe6\xb9\x2d\xe2\xaa\xe2\xf1\x99\x70\x90\x70\xb6\xcb\xed\xa2\x58" "\x09\x59\x20\x5d\x64\x4e\x8f\xe2\x4a\x56\x82\x47\x1e\xce\x17\xfe\x1d" "\x23\x4f\x13\x8c\xc8\xe8\x1d\x70\xb5\x75\x33\x96\x75\xa1\x06\xed\xc4" "\x73\xea\x80\xc4\x68\xf8\xda\xe7\x16\x3c\x48\x42\xbe\x83\xa8\xc7\xfd" "\x1b\x96\x70\x25\xfe\x2e\xce\x61\x17\x73\x69\x86\x1a\x21\xe8\x56\x0a" "\xc1\xdb\x02\xad\xb6\xe8\x6a\x43\x08\x79\x0e\x17\x0a\x19\x31\xbe\x1a" "\xa1\x23\x8b\x29\xdf\x5a\xa2\xae\x55\xb7\xe3\x33\x0a\x7d\xcf\x97\x04" "\x8a\x3f\x07\x08\x12\xdd\xc9\x49\x81\x6b\x67\xac\x88\x0e\x28\x3a\x89" "\x77\x33\xcc\xf7\xc5\xd3\xc2\x2a\x22\x51\x5d\x4a\x70\x9a\x04\xc8\xa8" "\xe4\xdd\xce\xd0\x8c\xc3\x04\x2f\x2a\xd4\xf6\x47\xa3\xea\xb7\x2c\x57" "\x84\xa9\xb6\x9d\xe8\x29\xe1\x90\x81\x5a\x32\x53\x5f\xc8\x2a\x3f\x69" "\x09\x7e\xe9\x97\x3c\x58\x2b\x2f\xc3\xfb\x62\x73\x59\xb8\xdf\x00\x1b" "\x66\x33\x50\xd0\x4b\xae\x99\xfb\x4a\xca\x12\xc7\xdd\x59\x56\xb4\xad" "\x74\x52\xea\x6b\x03\x7e\x92\xf8\x84\xe2\x28\xa4\x60\x9d\x9a\x50\x1c" "\x2c\x55\x5f\x11\x0d\xb4\x62\x08\x1b\xb5\x56\xea\xd6\x00\x81\xc7\x48" "\x3b\x5a\x7d\xfa\x72\x9b\xb4\xbf\x53\xd2\x21\x5c\xea\x1c\xbd\x3e\x12" "\xd6\x75\x5a\x4d\x0d\x6f\x6e\xd6\xac\x01\x15\x9c\x63\xfe\x23\x70\xa4" "\xa0\x4d\xc5\xd4\x15\x0f\xdc\x0b\xe9\x38\x50\xa4\x71\xdb\x14\xcf\xb0" "\x1f\xd5\xaa\x61\x73\x4b\x0f\x53\x31\x56\x23\x6e\x30\x8f\x1e\x36\x0e" "\x76\x6a\xbd\x53\xac\x72\x6a\x8b\x34\x47\x8c\x90\x65\x7c\x43\xa2\x2b" "\xd9\xd1\x21\x6d\x0d\xbd\xac\x32\x9d\xbb\xd0\x39\xeb\xf7\x03\x56\x41" "\x3e\x69\x71\xbd\xaf\x2d\x7f\xe1\x6e\xba\x8f\x70\xa3\x2c\xd5\x9d\x3a" "\x8c\xf1\x4f\x30\xd1\x60\xae\x45\x82\x8b\xd8\xbb\x7d\x05\x9c\xab\xdb" "\xb0\xe1\xe5\xa9\x8c\xb9\x6f\xb3\x53\x39\x8d\x78\xbc\x1b\x89\xeb\x83" "\x95\x7f\xbb\xca\xb6\x97\xb1\x8f\x50\xf7\xff\x38\x03\x78\xb7\x15\xf8" "\xcd\x24\xd6\xef\x20\x0f\x43\xcb\x0c\x84\x38\x50\xa4\xb4\x8f\x49\x84" "\xca\xb0\xa2\x42\x39\x7a\xc5\x69\xcf\xd7\x77\xa8\x99\xa9\xf2\xdf\xc1" "\xdf\x0d\xf5\xa9\x42\x50\x91\x3f\x05\xb8\x8e\x4c\x86\xf9\xe3\x1d\x8c" "\x50\x87\xe1\x32\x72\x50\xcf\xed\x26\x2c\xa9\x6d\x05\x42\xb4\xf2\x38" "\x37\xb9\x5f\x84\xef\x28\x0a\xe6\xe3\x55\xb1\xcf\x1d\x81\xb8\x6d\x75" "\x05\x3a\x05\xcf\x40\xac\x0c\xb1\x50\xe4\xd9\x04\x3a\x7a\xeb\xbd\x55" "\xdb\x98\xd9\x90\x57\x7b\x80\x8a\x19\xf7\x7f\xcd\x1d\x53\x71\x4c\xe2" "\x1c\x34\x8e\x8b\x48\x67\x7f\xa1\xb8\x42\xec\x2e\x77\x43\xcf\x74\xf7" "\x69\x3d\xcb\x63\xfd\x4c\xac\x67\x41\x36\xcd\x6d\x8e\x44\x24\x40\x6b" "\xe2\x60\xc3\xf6\x1a\xb4\x9f\xad\xe5\x2a\x79\xa2\xeb\x60\x81\x6c\x3d" "\xb9\xb1\xd0\x3a\x85\x2e\x7a\xad\xb3\xcf\xd2\xbf\xf5\x4b\x35\x71\x84" "\xd5\xbc\xc3\xbb\xdd\x9d\x2d\x62\xfe\x8b\x5d\x29\x43\x44\x17\x60\xba" "\x90\xcd\x4c\xbc\x13\x31\x74\x9d\xaf\x85\xb9\xac\x94\xf3\x40\x62\x66" "\x22\xaa\x62\x04\xa5\x04\xf7\x24\xe6\x88\x78\x9d\x2e\x67\x86\x61\x13" "\xd3\x8b\xc8\xfb\xe5\xd4\xfb\x2d\x37\xfb\x01\x8a\x93\x52\x8b\xae\xe9" "\xb2\x64\xe0\xd2\x3d\x20\x1e\xcc\xb1\x38\x4d\x09\xf9\xde\x7b\x65\xcb" "\xe1\x37\x68\xdf\x68\x2e\x26\x4d\xe4\x3d\x42\x52\xf1\xc7\x40\xb8\x29" "\xde\x6c\x5e\xf8\xf9\x1d\xad\xcf\xe7\x9e\x6e\x7b\x33\xd8\xb0\xfb\xf2" "\x9f\xa8\x57\x77\x15\xa9\xfc\x19\x4e\x2e\xf3\x18\xc4\xb9\xc6\xdb\xe3" "\x5f\x13\xb1\x03\x84\xcf\x9a\x3f\x87\x2a\xf4\x51\x52\xe2\x10\x84\x7e" "\xfb\x3c\xe8\x89\x58\xe6\x70\xad\xd0\x9a\x81\x08\x53\xc7\x38\x55\x56" "\x9f\xe7\xcb\x86\x2a\x72\xff\x6b\x7a\x7a\x23\x43\x0e\xb9\x63\x82\xf9" "\xae\x06\xc7\x9d\x8c\xba\xee\xd9\x42\xf8\xf8\x9a\x33\x50\xa3\x41\x98" "\x91\xb6\x2f\xd9\x56\x5a\x2e\x5c\xfa\x0f\xf7\x9a\xa2\xca\x2d\x3b\x77" "\x75\xfc\x35\x4f\x46\x25\xf0\x0d\x05\xdb\x87\xe9\x9a\xe4\xa4\x35\x4d" "\x1f\x45\x68\xde\xac\x71\x9f\x76\xad\x67\xf2\xc1\xdd\x45\xdd\x7c\xdf" "\xd8\x6e\x70\x23\x0d\xa7\x8b\x64\xc9\x70\x0d\xe4\x95\x6a\xa6\x82\x7f" "\xf3\x44\x93\x6f\xbc\xf3\x39\x91\x60\x22\xfb\x01\xc9\x90\x0a\xec\x76" "\xca\x6c\xd9\x36\xf4\x64\xd6\xe6\x79\xc3\x55\x69\xcb\x69\x9e\xa2\xd5" "\xb2\x32\xfd\x93\x5b\xc9\x73\x27\xb4\x05\xbe\x86\x13\x99\x25\xd9\x0e" "\x86\x3e\x17\xfd\x42\x72\x65\x61\xa9\x7a\x9d\x2c\x64\x65\x74\xf8\xbc" "\xa6\x5e\x97\x7e\x8d\x0e\x5a\x09\xc3\xb4\x8f\x8e\x47\x63\x50\x38\x14" "\xf8\x60\x18\xd6\x99\xf8\x9f\xc9\x7a\xb9\xdb\x7c\xdf\xe3\x16\x70\x89" "\x8a\x8d\xb1\xe0\x83\xd2\xd8\x2a\xd5\x83\x4a\x49\x2c\x14\xbd\x59\x88" "\xac\x0e\x5c\xaa\xb0\xa2\x22\xb9\x34\xd7\x19\x77\xad\x44\x74\x90\x92" "\x7b\x11\xa3\x02\xfa\x83\x08\x9e\xb8\x3e\x40\xed\x1e\x76\xb8\x00\xa5" "\x8d\x3f\x07\xf5\x0d\x90\x36\x14\x62\x60\xe4\x06\xd2\x04\x69\x7a\x8e" "\xd1\x64\x50\x9a\x5d\xa1\x1b\x99\x15\x6d\x5a\xe5\x22\x1b\xae\x0d\xc5" "\x49\x3f\x45\xcd\x56\x1b\x07\x75\xd3\x26\x16\x84\xeb\xbb\x31\xd5\xb3" "\xe9\x60\xa3\x55\x06\xff\xc8\x33\x9f\xae\x01\x2f\xd2\x5c\x2a\xb1\x2b" "\xa0\x80\xe2\x19\xa4\xf7\xf4\x0e\x8e\xbd\x49\xfd\xef\xd4\xe9\x73\x75" "\xfa\x2c\xf6\xb9\xc3\x85\x76\xd9\xf0\x99\x25\x47\x9d\x75\x1f\x6e\xd3" "\x5a\x59\xf8\x8a\x1b\x8c\x74\xa8\xb7\x3b\xbd\xf0\x01\xc9\xf9\x32\xca" "\xe6\x73\xe5\x4b\xb1\xa9\x21\xb1\xd5\x30\x96\xf3\x6b\x07\x5b\x6d\xea" "\xc2\x76\xd3\x1a\x6c\xc1\xd1\x65\x2a\x9d\x04\xc0\x4c\x2b\x2d\x95\xbd" "\x89\x52\xdf\xe3\xbe\xd5\x6b\x5e\x88\x36\x72\xfc\x40\xc5\x69\x60\x5f" "\x3c\x00\xeb\xca\xcc\x15\x31\x5a\xad\xdf\xec\x21\x01\x20\x28\x30\xd6" "\x59\xd4\xc1\x95\x09\xeb\x37\x9d\x4e\xdb\x15\x49\x1f\x15\xb0\x0c\x4c" "\x46\x6d\xfe\xc7\x5b\x52\xa4\x33\xbd\xbb\x1b\x42\x9f\x8a\x46\x1b\x16" "\x8e\x82\xb1\x98\x69\xfb\x6f\x07\x92\x5b\xe4\x5e\x1d\xb7\xdc\xb9\x3f" "\x5d\xa8\x3b\x94\xa5\xb1\x2c\xb6\x0c\xc0\x86\x02\x29\x11\x24\x47\xce" "\xb3\x9a\xdd\x54\x3a\x48\x8c\x02\x7d\x33\xa3\x0b\xcf\x56\xdf\x97\x69" "\xd4\xb4\x8d\xeb\x32\x50\xe3\x28\xdc\xa2\x19\x0d\xe4\x3f\x62\x61\x74" "\xab\x7e\x34\x37\x39\xcc\x1d\x4e\x71\xc5\x69\x4d\x84\xcb\x72\x25\x22" "\x6e\x46\x58\x94\xfb\x49\x33\xcb\x2e\x9a\x02\xfa\xe3\xfe\x6c\x35\x59" "\x83\x84\xa0\x2a\x80\xfb\x51\x1a\x16\xaf\x33\x80\x2b\x0e\x45\xb3\x0a" "\x11\x11\x2e\xb3\xb3\x26\x00\x48\xd5\xc7\x12\xa0\x9c\xd6\x9f\x70\x9e" "\xe8\xfa\x97\x71\x33\xe7\xc8\x84\x93\x54\x1c\x1f\xf6\xa3\x3d\xbd\xfb" "\x8d\x49\x33\x3b\x83\x13\x26\xa7\xf8\x5b\x7c\x56\x81\xb8\xf9\xd2\x88" "\x24\x15\xd0\xe0\x5b\xa8\x44\xc4\x7c\x03\x6b\x0e\x69\x68\x3d\xab\xb4" "\x0f\xb3\x84\xd8\xf6\xf4\xab\x6b\x49\xce\xd3\x52\xdf\x92\x94\x0c\x41" "\x2e\x28\xc8\x8d\x4b\xb0\x97\x48\xa3\x66\xb2\x52\xd5\xae\x36\x8c\x6d" "\x06\xc7\x65\xb5\x3a\xda\xfa\xc7\xc5\x53\x61\x6b\x15\x45\xb4\x97\xed" "\xca\x93\x66\x21\xb7\x04\xed\x01\x2d\x58\xc8\x8c\x13\x8b\xee\xe6\x00" "\xb0\x1d\x53\x78\x8b\xb0\xbc\x70\x9d\x5b\x5e\xf1\xf4\xd1\x88\xda\x77" "\xdf\x01\xa9\x65\x9e\x28\x82\x83\xa0\xb7\x35\xf3\xe4\x5c\xce\xda\xfc" "\xb1\xc2\x09\xe5\x0f\x43\xdd\x90\x1b\x80\xb8\x42\xa9\x88\xa9\xa2\xd5" "\xdd\x0d\xa3\xa1\x09\xc9\xd7\xd4\x65\xcd\x6c\xb8\x04\x30\x6e\xb5\x31" "\x61\x73\x7e\x08\xa4\x0e\xcd\xc3\x0b\xf3\x13\xa2\x98\x72\xf0\x42\xe5" "\x46\x84\xa8\x09\xbb\x83\x15\x4a\x62\x2f\x1f\xf1\xf9\x92\x28\x1c\xd6" "\xc4\x90\xff\x8d\x6b\x14\xc0\xe1\x0f\xa3\x2a\x94\x75\xf4\xa2\x6e\x30" "\xdc\x8b\x22\x59\x69\xc0\xe8\x70\x91\xcf\xaf\xd8\x0d\x6a\x15\x3a\xc1" "\x9a\x48\x26\x90\x14\x97\x2c\xd3\x4c\x3f\x41\xa1\x71\x01\x27\x39\xce" "\x40\x03\x93\xad\xdf\x8e\xcc\xea\x9f\x41\x61\xe1\x68\x35\xe9\x0b\x13" "\x17\x94\xbe\x06\x61\x9a\x97\x12\x63\x2a\x30\x30\x3f\xe2\x5b\x4f\xd9" "\x88\xed\x49\x6f\x8f\x5c\xd7\x16\x21\xa6\xb4\x96\xaf\xe9\x4b\x56\x50" "\xab\x04\xc2\x13\x96\x40\xf1\x9b\x40\x33\x42\x49\x4c\x0c\x89\x4e\xcf" "\xc6\xa5\x02\xb9\x26\x71\xf8\x34\xbe\xc3\xd5\x85\xad\x2e\xa6\xc1\xa7" "\xf9\x7a\x6f\x1d\xf1\xf8\xca\xfb\x91\xbe\x86\x2c\x51\x88\x2b\x00\x49" "\x96\xeb\x45\x3c\x51\x4e\xf8\x58\x09\x89\xc6\xb2\x4e\x8a\x5f\x09\x52" "\xc2\x82\x82\x7d\x15\x8f\x71\x09\x9c\xca\xf0\x1b\x7a\x46\xb1\x6b\x98" "\x4c\x4a\x5f\x32\x9c\x11\x24\xc2\x48\x0a\x17\x95\x2f\xe5\x48\x99\xa6" "\x11\xe3\x1c\xb7\xc5\xfb\x65\xdf\xb1\x44\xb1\x8f\x9c\x7e\x49\x3e\xab" "\xc1\x15\xaa\xf1\x7d\x1f\x13\xf6\xea\x15\xd9\xb8\xfe\x71\x2e\x36\x11" "\x84\x06\xa7\x3b\xc3\xc0\x50\x6c\x4d\x52\x0e\x29\x31\x1a\x23\x89\xac" "\xe1\xb6\x8b\x3b\x65\xa0\xe1\x33\x02\x3e\xe8\x5e\x4e\xa1\xce\xbc\xc2" "\x87\xf0\x46\x0b\x4d\xf2\x17\xe9\xf3\x34\xeb\xf9\x47\x0f\xd2\xf7\xa9" "\x78\x69\x8e\x9f\x8d\x0d\xcc\xb8\xc6\x70\x67\x18\xad\xc1\xf8\x00\x6d" "\x11\x7e\x70\x02\x33\x2d\xa5\x11\x12\xaf\xa1\xb6\x4d\xef\x35\x5f\x72" "\x9a\x5d\x51\x04\x72\x48\xdb\x51\xb6\x12\x67\x83\x4f\xaf\x8e\x7d\x06" "\x5c\x4a\x60\xed\xa0\x63\x94\x7b\x10\xcf\x5f\x8a\xb4\xc3\x82\x86\xd0" "\xd4\xda\x07\x5f\x1e\xc3\xdc\x02\x24\x66\x5a\xbe\xa8\xc0\x17\xff\x09" "\x76\xac\x4d\x98\xda\xa8\xe0\x8d\x72\xdf\xa4\xe0\x32\x46\xa3\xfa\x81" "\xb6\x8e\x29\x96\x0d\x42\x90\xee\xd8\xfc\x80\xd1\x13\xf6\x61\xe2\x45" "\xba\x20\x22\x68\x78\x6d\x4e\x4b\xb4\x8a\x91\x0f\x51\x66\x58\x0b\x5b" "\xf1\xdb\xb0\xc1\x3f\xbd\x5d\x61\xc1\x46\x35\x7a\xc1\x02\x0e\x38\x00" "\x47\x6e\xee\xcb\x4c\xe9\xe1\x50\x9b\x31\xd7\x31\x4a\xa3\x0f\x3e\xb7" "\x49\xe4\x93\x03\x99\x4e\x63\xf9\x71\x7f\x96\x84\x9c\xf6\x4a\xfe\xd3" "\x80\x0b\xab\xe2\x0b\x27\x67\x7a\x25\x65\xdc\x9e\x59\x30\xe5\x6a\xf6" "\xb0\xae\x16\xd8\x4a\x45\xab\x27\x81\xd9\xfc\xda\x69\x1c\xc5\xa7\xc1" "\xc1\x40\x76\x45\x96\x22\xb1\x44\x3e\xd5\x2c\x85\x08\x32\xc4\x89\x27" "\xd4\x63\x39\x2c\xf2\x9b\x93\xc6\x8f\xd0\x18\xe5\x10\x11\xab\xb4\xcc" "\x05\x65\x81\x62\x8c\x06\x34\xc1\x72\x9c\xd7\xc1\xd6\x54\xb3\x73\x01" "\x73\x4f\x3e\xf3\x6c\xf9\xc5\xd0\xe8\x34\x25\x98\x7a\x20\x3f\x00\xa5" "\x7b\xdf\x41\x7c\xf5\x46\xd0\x3d\x83\x03\xf2\x86\xfd\xd1\x98\x3e\x1a" "\xf6\xb0\xa7\xb4\x33\x92\x3a\xd4\xe3\xde\x2e\x3d\x48\xe0\xae\x1b\xe9" "\x1b\x1c\x2b\x70\x91\xcb\xf8\x0a\x6f\xb2\x3e\x8f\x67\x3f\xe5\xdc\xf0" "\x91\xbd\x4a\x98\x2e\xce\x9b\xea\x6d\x39\xa0\x1b\x59\xf1\xe7\xa8\x13" "\xa1\xa3\x80\x9a\xd8\x1c\x4a\x52\x8e\x9a\x19\x72\x20\x35\xd9\x51\xd9" "\x0f\x83\x79\xc9\xd7\x6f\x24\xf9\x24\xc2\x07\x93\xe8\xa8\xb5\x67\x43" "\xdf\x52\x32\x85\x92\xa9\x9e\x8e\x2e\x0f\xda\x6a\x98\x3e\xaf\xc8\x9b" "\xb7\xc9\xf1\xd1\x67\xf3\x54\x0c\x4a\x0d\x9c\x85\x26\xc6\xc5\x22\xce" "\x40\x38\x09\x2e\xfe\x8e\x32\x2e\x5c\x24\x7f\xa6\xf8\xf0\xa6\xc9\x65" "\x28\x42\x18\x52\xc6\x6f\xd4\x10\x27\x18\x40\x3e\x7d\x16\x66\x67\xef" "\xcc\x4b\x07\x3c\xa0\x91\x53\xb8\x03\x50\x66\x25\x35\x45\x75\x21\xbc" "\x45\xa8\x07\x20\x61\x11\xf7\xfa\xb1\xe1\xe2\x4f\x9d\xeb\x9e\x43\xbd" "\x51\x32\x4a\x13\x10\x87\x3d\x2c\x8b\xf0\x41\xc4\xd2\x53\x92\xf6\x25" "\x38\xf8\x26\x82\x36\x09\x30\xc2\xab\xd8\x6a\xbf\xf6\xf3\x2e\x63\x79" "\xc7\x6a\x45\x32\xa6\x3d\x95\xd1\x40\xbb\xda\x83\x82\xec\xff\xa5\xf0" "\x20\x87\x45\x28\x09\x46\xb2\xc4\x42\x17\x6a\x37\x1d\x80\xc8\x7b\xc4" "\x65\xcb\x4b\x8f\xce\x04\x6f\x01\x57\xa6\x8c\x9e\x68\xb3\x5d\xd3\xa3" "\xbb\xd8\xe3\xa9\xf2\x1c\xf0\x88\x76\xb2\x9b\xf0\xc5\x38\x27\xb9\x68" "\xdb\x33\x06\x1e\xa4\x7c\xc5\x3f\x1a\x42\xaa\xe8\x07\xd1\xcd\x85\x69" "\xfd\x5d\x75\x11\x08\x96\xe7\x49\xac\x65\x3a\x0d\x2d\xd7\x61\xe9\xdc" "\x41\x47\xb4\x92\x49\x79\xd2\x97\x42\xc3\xf9\x8c\x0d\x7e\x87\xde\xc4" "\x22\xeb\xd4\x30\xdb\x3f\xf2\x73\xa8\xb2\x3f\x0e\xef\x32\x09\xa2\x08" "\xa7\x74\xcd\x42\x55\xf2\x33\x52\x51\xb1\x96\xaa\x3e\x72\x45\x0f\xe7" "\x5e\x94\xcc\x15\x38\xc1\xb2\xfd\xcd\x62\x0c\xa6\xfc\xd3\x13\x5d\xfc" "\x77\x21\xc5\x7c\x0e\xa3\x6f\x64\x74\x00\x1e\x01\x5d\x87\x1a\x3d\xd6" "\xa7\xb9\x31\xf1\x4e\x46\x40\xe8\x07\x88\xfa\x85\xf9\x9e\x39\xce\xdf" "\x5d\x1b\x97\xbb\xc7\x31\xa1\xa4\x1f\x5c\x5c\xc1\x17\x10\xf6\x37\x60" "\x7a\xa2\x0a\xc8\x66\x96\x8c\xb8\xfd\xc0\x19\xe3\x96\x0b\xda\x69\x8f" "\xa6\x33\x83\xe5\x45\xe7\xb8\x88\xd0\x9b\x2f\xf9\x0e\xb6\xe7\x95\x90" "\x74\x9c\xf2\x98\x01\xcd\x8d\xcd\xb9\xf5\xd6\x3e\x40\x02\x9e\x10\x6e" "\xa0\x2f\xe4\x6b\x98\x83\xdc\xee\x01\x25\x26\xd1\x33\x30\x03\xd7\xf0" "\x35\xcc\xae\xc7\x01\x06\x20\x1b\xe0\x07\xbe\x2c\xf8\x5e\xf7\x0d\x11" "\xe6\x16\x10\x8a\x65\xfa\x8a\x78\x34\x1b\x30\xb4\x72\xcc\xed\x8a\xc6" "\x3f\x4e\x9e\x73\x7a\x0b\x01\x01\x99\x22\x66\x67\xf5\x2b\xb9\x8a\x45" "\x6f\x10\xf5\x78\xbb\x7c\x3d\x9c\x94\xce\xb5\xab\x5b\x56\x0f\xc1\xf1" "\x63\xc3\x2e\x5d\x45\x2e\x2f\x61\x69\xeb\x66\xdf\x88\x0c\x19\xde\xdf" "\x22\x11\x84\x37\x96\x3b\x00\xd0\x68\xdb\x02\x14\x82\xbd\x26\x3b\x12" "\x56\x5c\xbf\xb7\x0e\x0a\x7d\x3a\x54\x56\xce\x29\x2a\x0c\x5e\x7a\x33" "\xd4\x9f\x7f\x3d\xf5\x93\x81\x9b\x92\x37\x8d\x86\x3b\xfb\xbd\xde\x3e" "\xb5\xfa\x7e\x3a\x4f\xd8\xdd\x0c\xee\xb4\x0b\x20\x48\x9f\x53\xad\x35" "\x18\xc1\x73\x54\x16\x27\x15\x90\x9a\x4d\x52\xf8\x11\xe0\x00\xe3\x15" "\x45\xcb\xb2\x55\xb3\x56\xda\x29\x91\xbc\xf0\x3d\x65\x4b\xd0\xbf\x61" "\x88\xfb\xa9\xc5\xcb\xa1\x9b\x39\xe3\xcf\x24\xf7\x79\xe1\x01\xc8\x9e" "\x54\xcf\xae\x54\xd5\x03\x1c\xb3\x7e\xc2\xe2\xe8\x23\xce\x15\x08\x68" "\x1e\xd9\x61\xe0\x09\xc4\x8e\xb0\x78\x76\x64\x94\x22\x51\xcf\x3a\x5b" "\xff\x49\xac\x1a\xb0\x42\x0c\x0b\xe4\x20\x5d\xc6\x0a\x8b\x09\xdb\xb0" "\x00\xf4\xe7\xe7\xbc\xfe\xa8\x12\x34\x76\x46\xe3\x16\xdc\x37\x23\x39" "\x02\x2d\xc7\x60\xa8\xe4\x55\xbd\x07\x7e\x4a\x7b\x7e\x2b\xa8\x0a\x1d" "\x98\x24\x42\x9b\x7a\xa6\xbf\x5d\xcb\xc6\x12\x56\xed\x6b\xf3\x6f\xc0" "\xcf\x70\x11\x4a\x4c\xe5\xcb\xf8\xf4\xc7\x85\xe0\x2f\x5f\x71\xeb\x31" "\x83\x04\xe2\x35\x34\x96\xff\xbf\x88\x94\x74\xa6\xcc\xe2\x9c", 8192); *(uint64_t*)0x20000880 = 0; *(uint64_t*)0x20000888 = 0; *(uint64_t*)0x20000890 = 0; *(uint64_t*)0x20000898 = 0; *(uint64_t*)0x200008a0 = 0; *(uint64_t*)0x200008a8 = 0; *(uint64_t*)0x200008b0 = 0; *(uint64_t*)0x200008b8 = 0; *(uint64_t*)0x200008c0 = 0; *(uint64_t*)0x200008c8 = 0x20000340; *(uint32_t*)0x20000340 = 0x20; *(uint32_t*)0x20000344 = 0; *(uint64_t*)0x20000348 = 0; *(uint64_t*)0x20000350 = 0; *(uint32_t*)0x20000358 = 0; *(uint32_t*)0x2000035c = 0; *(uint64_t*)0x200008d0 = 0; *(uint64_t*)0x200008d8 = 0; *(uint64_t*)0x200008e0 = 0; *(uint64_t*)0x200008e8 = 0; *(uint64_t*)0x200008f0 = 0; *(uint64_t*)0x200008f8 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200042c0, /*len=*/0x2000, /*res=*/0x20000880); break; case 6: memcpy((void*)0x20004280, "./file0\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20004280ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[2] = res; break; case 7: memcpy((void*)0x200000c0, "./file0\000", 8); syscall(__NR_mknodat, /*dirfd=*/r[2], /*file=*/0x200000c0ul, /*mode=*/0x80ul, /*dev=*/0x700); break; case 8: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200062c0ul, /*len=*/0x2020ul); if (res != -1) r[3] = *(uint64_t*)0x200062c8; break; case 9: *(uint32_t*)0x20000380 = 0xa8; *(uint32_t*)0x20000384 = 0; *(uint64_t*)0x20000388 = r[3]; *(uint64_t*)0x20000390 = 0; *(uint64_t*)0x20000398 = 0; *(uint64_t*)0x200003a0 = 0; *(uint64_t*)0x200003a8 = 0; *(uint32_t*)0x200003b0 = 0; *(uint32_t*)0x200003b4 = 0; *(uint64_t*)0x200003b8 = 0; *(uint64_t*)0x200003c0 = 0; *(uint64_t*)0x200003c8 = 0; *(uint64_t*)0x200003d0 = 0; *(uint64_t*)0x200003d8 = 0; *(uint64_t*)0x200003e0 = 0; *(uint32_t*)0x200003e8 = 0; *(uint32_t*)0x200003ec = 0; *(uint32_t*)0x200003f0 = 0; *(uint32_t*)0x200003f4 = 0; *(uint32_t*)0x200003f8 = 0; *(uint32_t*)0x200003fc = 0; *(uint32_t*)0x20000400 = 0; *(uint32_t*)0x20000404 = 0; *(uint32_t*)0x20000408 = 0; *(uint32_t*)0x2000040c = 0; *(uint64_t*)0x20000410 = 0; *(uint64_t*)0x20000418 = 0; *(uint32_t*)0x20000420 = 0; *(uint32_t*)0x20000424 = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20000380ul, /*len=*/0xa8ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); loop(); return 0; }