// https://syzkaller.appspot.com/bug?id=da8d0f300157c342f3922aa936635922202b3260 // 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[3] = {0xffffffffffffffff, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000100, "./file0\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x20000100ul, /*mode=*/0ul); break; case 1: memcpy((void*)0x20000140, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000140ul, /*flags=*/2ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200020c0, "./file0\000", 8); memcpy((void*)0x200001c0, "fuse\000", 5); memcpy((void*)0x20000040, "fd", 2); *(uint8_t*)0x20000042 = 0x3d; sprintf((char*)0x20000043, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20000055 = 0x2c; memcpy((void*)0x20000056, "rootmode", 8); *(uint8_t*)0x2000005e = 0x3d; sprintf((char*)0x2000005f, "%023llo", (long long)0x4000); *(uint8_t*)0x20000076 = 0x2c; memcpy((void*)0x20000077, "user_id", 7); *(uint8_t*)0x2000007e = 0x3d; sprintf((char*)0x2000007f, "%020llu", (long long)0); *(uint8_t*)0x20000093 = 0x2c; memcpy((void*)0x20000094, "group_id", 8); *(uint8_t*)0x2000009c = 0x3d; sprintf((char*)0x2000009d, "%020llu", (long long)0); *(uint8_t*)0x200000b1 = 0x2c; *(uint8_t*)0x200000b2 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200020c0ul, /*type=*/0x200001c0ul, /*flags=*/0ul, /*opts=*/0x20000040ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000c3c0ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x2000c3c8; break; case 4: *(uint32_t*)0x20004300 = 0x50; *(uint32_t*)0x20004304 = 0; *(uint64_t*)0x20004308 = r[1]; *(uint32_t*)0x20004310 = 7; *(uint32_t*)0x20004314 = 0x27; *(uint32_t*)0x20004318 = 0; *(uint32_t*)0x2000431c = 0; *(uint16_t*)0x20004320 = 0; *(uint16_t*)0x20004322 = 0; *(uint32_t*)0x20004324 = 0; *(uint32_t*)0x20004328 = 0; *(uint16_t*)0x2000432c = 0; *(uint16_t*)0x2000432e = 0; memset((void*)0x20004330, 0, 32); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20004300ul, /*len=*/0x50ul); break; case 5: memcpy( (void*)0x20002140, "\xa8\x69\x8f\xe7\xc8\x40\x99\x8f\xf2\x96\xb8\x00\x10\x83\xe0\x8d\x47" "\xce\xa0\xb5\xf5\xf1\xd6\x2a\x6b\xa0\x0c\x56\xa0\xc7\x17\x1b\x20\x20" "\x5f\xf3\x58\x4f\xc3\x55\xd2\x7b\x14\xee\xca\xb7\xf1\x2a\xd3\x12\x42" "\xe9\x82\xfb\x39\xb2\x74\x3e\x97\xa2\xfc\x6e\xf5\x60\x62\x84\x57\xaa" "\x60\x83\x7c\xb3\xa8\x2d\x52\x4d\x5c\xaf\x11\x75\x89\xc6\x72\x27\x0b" "\xf8\x1f\x62\xc5\x94\x72\xb4\x83\xf2\x61\x1f\xcc\xdd\xc7\xe3\x3b\xf6" "\x72\xb0\x42\xe6\x70\x91\x91\x97\x6c\x6e\x9b\x5e\x97\x2b\x81\x02\x83" "\xe6\xb0\xfc\x93\x97\xd6\xcf\xec\xc0\xa8\xd1\x85\x07\x0e\xfa\x26\xb5" "\xf3\x03\xe6\xd6\xf0\x44\x72\x4e\x6e\x8a\x06\x64\x9f\xbc\x53\x86\x99" "\x68\x90\xd8\x19\x87\x96\x7a\xee\x5b\x6d\x6c\x44\xb4\x22\x72\x37\xde" "\xa6\xb2\x94\xa6\x1d\xe0\x53\xbc\x50\x65\x15\xa7\x2c\x42\xbc\x4f\x94" "\xd0\xdd\x6b\xc3\xab\x26\x86\x4e\x5a\x4b\xbf\xf0\x35\xd7\x10\xfc\x15" "\x77\xfb\x49\xf5\x40\x30\xf1\xb5\x3a\xc9\x78\x44\x77\x40\xc2\x0a\x12" "\x4a\xfe\x33\xa0\xbb\xe2\x45\x3a\x3a\x7f\x8e\xeb\x6a\xe5\x66\xd1\xeb" "\xb1\x71\x81\xe2\x75\xc7\x6f\x68\x7b\x00\x3d\x52\x37\xd5\x00\x5c\xe7" "\x3c\x18\x42\x33\xca\x8a\x96\x02\xd6\x63\x63\x02\xcf\x56\x21\x04\xa9" "\x68\xbe\x14\xbb\x18\xa1\xb4\xa2\xe2\x18\xaf\x0f\x2e\xa7\x1a\x14\xbf" "\xae\x6d\xdb\xed\x7a\xa9\x20\x11\x06\x02\xbf\xd5\x1a\x5c\xb2\x25\x0c" "\x54\xca\x9b\x14\xe4\x0d\xbe\xa1\x63\x26\xb3\x31\xe3\x3d\x4e\xba\x35" "\x53\x40\x59\x01\xce\xdc\xbb\xc1\xfd\xb6\x15\x35\x9e\xba\x07\x77\x1e" "\x56\xef\x6a\xcc\x51\x77\x28\xdf\x5f\x84\xc3\xd0\x14\xfd\x27\x3e\x9d" "\x89\xdf\x12\x86\x9c\xd2\x1d\xc1\xd1\x51\x5c\x06\x4f\xf3\xdb\xa3\xb6" "\xc8\x44\x0b\x78\xc3\xc4\xda\xd9\xeb\x09\x33\x3b\xa2\x16\xb3\xd6\xd8" "\xba\xbd\xc5\x9d\x34\x7e\x09\xd2\x5c\xba\x13\xb1\xa6\x91\x92\x1a\x75" "\x6d\x4e\x0f\x93\x5a\x21\x62\x93\x21\x4b\x50\x33\x95\x52\xa8\xa2\xfc" "\x4e\xf5\xb5\x51\x39\x16\xc1\x52\x00\x4a\x22\x19\xf6\x05\x2a\x74\x26" "\x3b\x8d\x21\x6c\x6c\xd2\xc8\x4c\xff\x6d\x3e\x5a\xb8\xa2\xf0\xf2\x80" "\x0c\x69\x74\xf3\x1b\xd1\xdb\xbc\xfc\x3d\x01\x4f\x31\xa7\xf9\x84\x6c" "\x43\x52\x1c\x23\xb9\x6d\x6e\x2c\x7c\xc2\xbd\x5d\xc1\x74\x9d\xd0\x04" "\xce\x2e\xe9\xc4\xe2\x63\x8b\x0b\x50\x33\xa9\xe1\x88\xf5\x37\xb0\xc2" "\x6a\x82\x61\x25\x04\xb2\xaf\x4e\x26\xea\x39\xc7\x43\xef\x3a\x45\x91" "\x62\xe4\xfd\xdf\xaa\xd7\x9b\x85\x04\x4d\x88\xd9\x47\x74\xa5\x09\x63" "\x11\x4a\xb3\x0d\x22\xdd\xda\x2b\x47\xea\x71\x31\x57\xbd\x77\x0f\x4b" "\xdd\x0f\x9b\x82\x9e\x6d\x44\x63\x7b\x5a\x41\x7c\x88\x80\xb6\x2c\xfa" "\x51\xad\xe1\x09\xa1\x3e\x49\x06\xd8\x66\x19\x25\x27\x24\xf0\xbd\x8b" "\xa9\x0f\x02\x15\x47\x25\x47\x0f\x14\x4e\x39\x42\xde\x07\x49\xee\x3f" "\x5e\xef\x7f\x5d\x63\x09\x77\x39\x62\x3f\x11\x0a\x9e\xb4\xb2\x1d\x2f" "\x74\xb3\x4b\xb3\x92\xf3\x73\xe4\xd8\xec\x72\x7d\x65\x42\x4b\x2b\x66" "\x0c\x9a\xbf\x1f\x66\x8d\x7c\xcb\x04\xbe\x1b\x76\x24\x24\x12\xed\x88" "\x4d\xf9\x54\x67\x9a\xa3\x74\x6a\x34\xe0\x11\xbd\x12\x2a\x0d\x46\xc3" "\xa3\xbf\x9b\x6b\x43\x6c\x96\xeb\x59\x93\x73\x5b\x2c\xb4\xb5\x6d\x37" "\x6f\x02\x78\xa7\xb2\x59\xe2\x9f\x19\xe3\x85\x19\x8b\xa6\x48\x10\xe5" "\xb8\xcc\x25\x8e\xdb\x07\x30\x60\x77\x80\x6f\xc2\x41\x69\x9f\x83\x8a" "\x57\xdb\x56\x35\x9c\xec\x57\xe2\xcb\xf6\x64\xb6\x42\x34\x8e\xcf\x74" "\xb0\xb5\xa0\x8b\xad\xc0\xd1\x0e\xe9\xd0\x48\x57\xc5\x52\x4c\xb6\x58" "\x9b\x48\x1c\x44\x32\x4e\xa7\x3f\x2d\xc2\x6a\x87\x88\x3b\x89\xde\xce" "\xa3\xbd\x3f\xb2\x8a\x19\x59\xdb\x90\xe2\x39\xcd\x98\x21\x5b\xfd\xf0" "\xb7\xe9\x32\x58\x2a\x6a\xc7\xd1\x5c\x15\x4a\x9e\x51\x43\xbe\x9a\x49" "\x94\x02\xff\xee\xd7\x9b\x21\x51\x6c\x09\xf5\x83\x7b\x55\xf1\x18\xca" "\x2d\x22\x4a\xd6\x02\x2c\x58\xaf\x48\xe1\x2c\x2d\x2d\xfa\x02\x99\xa2" "\xc2\xc0\x16\x5d\x09\xde\x91\x80\xdb\xd9\xc2\x01\x62\x3f\x67\x23\x87" "\x15\x40\x11\xd8\x78\xab\x28\x17\x66\x35\x53\xe3\xab\x9c\x1c\x05\x07" "\xe0\x12\x92\x61\x75\x13\x18\xa6\xe0\x7d\x54\xd1\xb9\x0c\x90\xa0\x97" "\xd9\x94\xc5\x51\xb5\x52\xc8\x8d\x41\x8b\x12\x7e\xd1\x30\xde\x60\x0f" "\x74\xca\x3c\x23\x45\x1a\xbf\x5f\x09\x53\x78\x51\xca\x65\x7e\x14\xbc" "\x64\x09\xbb\x51\x1e\xaf\xd8\x12\x25\x3b\x58\x2f\x13\x02\x94\xda\x97" "\x3a\xcb\x9e\xfb\xef\x06\x3d\xaa\xe9\x80\xd2\x11\xe4\x0b\xc7\x3c\x0a" "\x09\x8c\xc3\x49\xf9\x0e\x5f\x32\x92\xf4\x87\x3c\xe1\xcf\xb1\xc0\xd3" "\xaa\x92\xa5\x10\x97\x0f\x43\xd2\x77\x2b\x57\x48\x7c\xfe\x2e\x3c\xb7" "\x08\x61\xae\xb3\xef\xaf\x9e\xfe\x73\x5d\x10\xd9\x24\x90\x43\x21\x2a" "\x96\x13\x48\xc1\xd7\xfd\xf3\x66\x60\x92\x72\x45\xa5\xbb\x07\x9d\xef" "\x6e\x5c\x9a\x1d\x8f\x54\x68\x9e\x45\x57\x37\x90\xc2\x15\x5d\xf6\x4a" "\xa0\x6c\x09\x3e\x1f\xc9\x74\x12\x7e\x80\xd5\xb9\xda\x02\x95\x4e\x18" "\xc2\x92\xa5\x2f\x96\x2b\xb9\xf8\x78\x55\x99\xb7\xe1\xa3\x5f\xe1\x53" "\xb6\x02\x2f\x7b\xb1\x95\xf8\xe3\xc6\x09\xda\xfa\x52\xaa\x3e\xb6\xfb" "\x2e\xb8\x2d\x9a\x09\xab\x0d\xe0\xa4\x7f\x92\xee\x97\xb0\x5b\x27\x9e" "\x55\x72\x0e\x3c\x47\x43\xa6\xd5\x6f\x15\x1e\x53\x63\x47\x3d\x46\xce" "\x5f\xb1\xc5\x16\x26\x01\x85\x6f\x8c\x0b\x3e\xb7\xf4\xf5\x50\x29\x28" "\xe4\xbb\x3e\xd9\x4c\xe7\x44\x6f\x64\x57\x8c\x9f\xae\xc8\xa8\x13\x3e" "\x04\x1d\xf7\x40\xac\xf6\xce\x51\x0e\xf7\xb7\x0d\xcf\x7f\x12\xe7\x02" "\x4e\xbd\xd1\x15\x89\x5f\x40\xe6\x84\xf9\x10\x03\xfa\xd9\x67\x93\x5b" "\xe2\xac\x19\xcf\xa0\x57\xf2\xb6\x1a\x6e\x2a\x98\x8e\x03\x81\xf2\x3e" "\xa1\xb2\x04\x01\x3b\x01\x11\xdb\x5f\x9b\x9d\x01\x85\x98\x57\x7a\xce" "\xfd\x7c\x71\x9b\x36\x6b\x8b\xc5\x75\xde\x20\xee\x49\x7c\x8e\xd0\x27" "\x60\x27\x5e\xa9\xce\xb3\x85\x68\xf7\x89\x19\xdf\x95\x76\x52\x96\xd7" "\x5a\x7c\xcc\xe3\x94\x01\x6c\xb0\x28\x81\xa3\xd3\x7d\xe3\x2c\xaf\x64" "\x97\x2c\xfe\xa2\x55\x4a\x59\x1f\x1b\x16\x00\xa9\xb5\xa8\x34\xaf\x50" "\x48\x51\xfc\xb4\x00\x15\x6d\xf3\x44\x8d\x67\x1c\x48\x8e\x3a\xeb\xd1" "\x52\xd0\xcc\x81\xbf\x8e\x8b\xb5\x7b\x1d\x04\x5f\x11\xb5\x58\xcb\xea" "\x05\x19\x75\x70\x25\xfa\xe2\xfc\x2d\x06\x25\x0e\x68\x97\x43\xeb\x8f" "\x13\x87\x11\x19\x4b\xfa\xec\xbe\x35\x12\xbf\x32\x95\x9b\xc6\x83\xe8" "\x4a\xd6\xf8\x5b\x5d\x73\x33\x96\x1c\x2e\x5d\x60\x92\x55\xef\x0d\xb2" "\xb8\xaf\x4d\x9f\x1f\x80\x10\x3f\xf6\xcb\x13\x0e\x0b\x4d\x7a\x95\x70" "\x38\x26\x83\x22\x2b\x70\x9f\xd6\xb3\x4a\xa5\x88\x4b\xf7\xf4\x3e\x00" "\xc4\x06\x0d\xaa\xe2\x42\x6b\xc0\xc5\x55\x70\x57\xcc\xd1\x12\x7e\x15" "\x6b\x5d\xcd\x40\x22\xd8\x23\xfc\x4b\x10\x90\x5a\xd0\x8f\x95\x6f\xf0" "\xe1\xe0\x3e\xad\xee\x4b\x60\xa3\x25\xec\x1d\x97\x19\x3b\xeb\x3f\x0c" "\x06\x0a\xc3\x7f\x05\xf3\x3a\x9d\x53\x36\x74\x31\x78\xa1\x95\xe3\x67" "\x51\xb9\x59\xe4\x7e\x8f\xd3\xcb\xe8\xef\x3b\x35\xda\x1a\x5d\xa9\x2f" "\x21\xc5\x0a\xb2\x26\x49\xe9\x5d\xf6\x53\x3f\x30\x63\x14\xb8\xb2\x16" "\x42\x1f\x87\x67\xfd\x46\x05\x50\xcd\x75\x9d\xd6\x44\x9e\x31\xa4\xb5" "\x87\x33\x8f\xf1\x1e\xec\x30\x80\xb2\xbd\x5c\x3b\x0e\x48\x82\x28\x9f" "\x6b\xd4\xd6\xe7\x22\x27\x5c\x3e\x2b\xe2\x52\x0a\xb3\x41\x6c\x7e\xa8" "\x5f\xa8\x83\x8f\xa9\x88\x52\x4f\xc2\xf6\x4e\x3a\xc7\xdb\x34\x4b\x83" "\xe0\x95\xa3\x43\xad\x16\xd6\x07\xb4\xaa\x5a\xbc\x68\x72\x64\x0c\xba" "\x99\xa3\x17\xe8\xce\x36\xd4\x06\x8d\x71\x28\x50\xa4\x7b\xe0\x05\xc2" "\x8c\x07\xee\x71\xab\xbe\x40\x92\x7a\x3d\xb0\xaf\xa1\xf2\x35\xe3\x13" "\x3c\xb2\x74\x3d\xb3\x94\x04\xf6\xab\x79\x25\xa8\x00\xfe\x5e\x2e\x2d" "\x7b\x2c\xc1\xcb\x20\xf5\x3a\xeb\x41\x8c\x1a\x2c\xd1\x9e\xf2\xa9\x2b" "\x9c\xf2\x1f\xfb\x78\xc5\x27\x81\x79\x13\x2c\xf9\x3e\x4e\x26\x6f\xef" "\x95\xbc\xe9\xd3\xb4\xbd\x3c\xbd\x6a\x03\x0b\x6b\x86\x84\xfe\xad\x87" "\xc1\x79\x3e\x72\xc0\xb4\xc7\xba\xac\xa7\x37\x2f\xaf\x42\x9e\xd2\xb7" "\x33\x87\xb5\xae\xc2\x0d\x9f\xc4\xea\x62\x32\xeb\xf6\xcb\x01\x01\x66" "\x0d\x8c\x7a\x4f\x8b\x44\xaa\x2f\x92\xa3\x60\x9c\x16\x34\xdf\x6e\x30" "\x4e\x96\x29\xbd\x3c\x0b\x2e\x82\x94\x90\x03\x7a\x3a\xf8\x12\x9e\x55" "\x26\xef\x16\x18\xaa\xde\x56\xb9\xdc\x08\x3a\x41\x7f\x21\xe5\xce\x3b" "\x75\x82\x06\x0b\x61\x0d\x4a\x00\x2a\x35\x08\xf9\xb8\xf0\xb7\x00\x44" "\x0c\x79\xea\xaa\x60\x49\x84\xbf\x83\x34\xaf\x9a\xdc\xc0\x4d\x84\x63" "\xa1\x7d\xb0\x36\x83\xc0\x29\xe1\xd6\x83\x5d\x21\x07\x30\xb3\x08\xb4" "\x13\xeb\x6e\xf8\x6d\xc9\x76\x9b\xcb\x51\xc6\x76\x9b\xee\x39\xde\x19" "\x36\x66\xfd\x9a\xcd\xc7\xf6\x6b\x7d\x07\x40\x31\x17\xe4\x3f\x47\xa0" "\xbc\x06\x54\x40\x69\x72\x09\x51\xea\xba\x21\x8c\xe8\xd0\x7a\x82\x5b" "\x0c\xe5\x27\x09\x88\xab\x67\xf5\x3a\xae\xec\x00\xf8\xf3\xee\xea\xe4" "\x28\xaa\xa5\xb8\xcb\x1b\xb1\x4c\x85\xe6\x64\xf7\xfa\xd1\xcb\xe0\xed" "\xbb\x06\xe2\x3c\xe9\x24\x55\x4b\xa0\x9a\x57\x05\x31\xea\x13\x63\xcf" "\x25\x7e\xee\x4c\x02\x9e\xd3\x8f\x18\xbd\xfe\xbb\x0c\xc6\x5f\x40\xbb" "\xe9\x82\x7b\x1f\xe5\x73\xef\xd1\x58\x31\x87\xf3\xb5\x5c\x7c\x5a\x0a" "\xfb\xf4\x0f\x5a\xa0\x1e\x14\x5a\x10\x9b\xb5\xe9\xe7\x5e\x8f\x3d\xf2" "\x37\x44\xc6\xac\x79\xd6\x1b\xaa\x11\x64\xf8\xa3\x24\x1d\x4e\x23\x2d" "\xd6\xad\x62\x2d\x9a\x31\xcc\xf5\x26\x86\xe2\x61\x60\x1c\x41\x89\x51" "\x72\xb9\x57\xee\x12\xac\x62\xfb\x53\xa7\x0e\x18\xe5\x97\xc5\x53\xc0" "\x2e\x49\xeb\x62\x28\x3b\x39\x26\x49\x71\x78\x2b\x22\x5f\x5f\x92\xbd" "\x87\xd6\x25\x2b\xf8\x7e\xa5\x64\x3b\x16\x74\x14\xff\xc3\xb4\x37\x05" "\x37\x47\x16\x3d\xe0\xd4\x7b\xfd\x60\x18\x18\x17\xec\x96\x1a\x32\x02" "\xf3\x74\x48\x98\x26\xbf\xf5\x03\xfc\x34\x2c\x8c\x42\xcd\x3a\x66\x2e" "\xfe\xfd\x48\x64\x4c\xac\xf9\xd9\xaf\x84\x03\xdd\xb8\xbb\x75\xa1\xdb" "\x60\x3b\xb7\xcb\x10\x6a\x9d\x3a\x0a\xaf\xab\xf5\xb9\x4a\x74\x30\x65" "\x8d\xed\x86\x06\xfd\xc5\xad\x17\x9a\x6d\xe2\xc0\xf8\xbc\xa7\x62\xa4" "\x82\x68\x23\x53\xec\xdb\xb6\x1b\x37\xa6\x2c\x95\x5f\xa0\x76\x7d\x93" "\x6d\x7a\xf9\x67\xae\x19\x55\x78\x27\xb9\x31\xe7\xd7\x8f\x74\x0f\x8e" "\x04\x92\x0e\x97\xe6\x44\xe0\xbd\xbe\x04\xa6\x12\x9f\xd5\x02\xfc\x31" "\x05\xf9\x84\x7b\xbe\x2a\xee\x78\x0b\xf8\xc2\xc0\x48\x14\xb5\xd1\xeb" "\x7a\x29\x14\xf5\x5d\x96\x23\x91\xc4\x8e\x15\x9a\x30\x68\xd0\xba\x0d" "\x9f\xff\xea\xbb\xd3\xc5\xc6\x14\x58\x6f\xca\xe2\x65\x13\x1f\x5b\x5e" "\xe7\x72\x2f\x08\x38\x94\x02\xed\x49\x03\x0e\x23\x3f\x16\x3c\x4a\x9b" "\xf2\xfe\x2e\xdb\x40\xc6\x2a\x0b\x44\x4d\xf6\xd1\xf7\x1d\x06\x14\x3d" "\x0e\xaf\x77\xc2\xf2\x1e\x18\xe8\x7f\x51\x54\x96\xd9\x5e\xd5\x37\x13" "\x75\xf5\x04\x98\x09\x60\x6a\xe8\x68\xe8\x43\x2f\x5f\xaa\x15\x0d\x55" "\xca\x27\x9a\x10\x8e\x2a\x69\x9c\x2f\x3c\x17\xda\x22\x8c\x3d\x04\xc2" "\x49\xe1\x76\xa9\xe1\x41\x71\x91\x31\x3f\x87\x48\x66\x83\xbf\xd7\x6e" "\x0d\x22\xf6\xdc\x28\x29\x3a\x2f\xfc\x0e\xd3\x82\xb2\x32\xe4\x52\x10" "\x0d\x54\xb7\x24\x6c\x86\xee\x78\xfa\x94\x52\x3f\x52\x3a\xc1\x81\x02" "\xe9\xab\x3b\xe1\x00\x18\x63\x55\x2b\xc2\xaf\xf0\x02\x32\x34\x1e\x90" "\xaf\x12\xac\x09\x3b\xad\x60\x8a\xd8\xe7\xf1\x46\x62\x75\x6c\xdd\xe5" "\x65\xab\x4a\xfa\xd6\x49\xfd\xbe\x4b\xea\xae\xe1\xa8\x4b\x0e\x6f\xeb" "\x5c\xe3\x15\xc5\xb9\x75\x8f\xf1\x66\x60\x98\x4b\x1e\x3e\x8d\x0f\xdc" "\x55\xfa\xfd\x8c\x9e\x27\x76\xf8\xa2\xfd\x4b\x47\xce\xa5\x2a\x42\x66" "\xa4\x0e\x4a\x6f\x35\xdf\xb7\xd6\x48\x85\x7a\x1d\xcd\x2d\x3b\xbf\x5a" "\x97\xe1\x1f\x4e\xa3\x4a\x96\x1b\x84\xb2\x78\xfa\xc3\xdb\x0d\x89\x85" "\x28\x51\x4b\x6f\xa2\x37\xbc\xc0\xe6\x24\x4f\xb7\x9d\x6b\xf6\x5c\x45" "\x83\x3c\xbe\xd0\xa2\x90\x99\x34\xd8\x5c\x67\xdd\x48\xbe\x04\x89\x4c" "\x39\xc5\x8e\x46\x99\x3f\x82\x37\xd1\xa4\x8d\xb2\xbb\x79\x98\x26\xfa" "\xb1\xfe\x81\xcf\xf3\x7a\x11\xce\x45\xfc\xac\x5f\x91\xce\x6d\x2f\xd8" "\x31\x89\x50\x14\x34\xbe\x49\x51\x47\xf8\x26\x35\x66\xa4\x71\xc2\x87" "\x2b\xe6\xd1\xab\x75\x87\xcd\x8d\xb9\x7e\x5f\x45\xb1\xcf\xee\x6a\x9e" "\xf3\x15\xd7\x9d\x30\xc3\xa2\xd2\xae\x72\xc9\xd9\xbb\x20\xda\xae\xea" "\x1b\x70\x1d\x4a\x84\x37\x41\x1f\xc6\xc2\x61\x93\xb0\xfc\x1e\x47\x7b" "\x4c\x46\x7b\x00\x96\xe5\xb2\x10\xd8\x5a\x27\x0f\xc7\x28\x60\xed\x79" "\x80\x8e\x0f\x77\xf7\x74\x2d\x63\x18\xdf\xf9\xb4\x27\x4a\x49\x72\xff" "\x65\x2a\x0f\x0c\x22\x53\xc5\x4c\x20\xf2\x19\xf3\x39\xd7\xbe\x05\x03" "\xa5\x5a\xaf\x46\x2e\x02\xd6\x3f\x8b\x86\x51\xdd\xdf\xa6\x93\x73\xbb" "\x98\x56\xbd\xc5\x49\xbc\x52\x48\xac\xdc\x02\x74\xab\x5a\xf5\x58\x20" "\x47\xf2\x35\x08\x3b\x4a\x1d\x2f\x42\x16\x2e\xb1\xd4\xbb\x2b\x31\x40" "\x2c\x51\x26\xe4\xdc\x18\xa0\xaf\x93\xf0\xe7\x1f\xa0\x36\x51\x8e\xab" "\x35\x4d\xfd\x56\xf5\xd0\xdf\xf6\xbc\xfb\x30\x0b\x67\x3d\xd5\x75\x38" "\x9f\x7e\xc9\x73\x29\xd3\x1f\x94\x50\x5a\x34\xdd\xbc\x30\x7a\x8d\x42" "\x89\x63\xf9\x7c\xd5\x48\xa2\x38\x0a\xda\x59\x98\xe2\x42\x43\x80\x47" "\x77\x28\x3d\x99\x3f\x5b\xff\xca\x4b\x87\x75\x78\x2c\xe5\x8d\x8e\x83" "\x90\xd5\x90\x45\x5d\x09\x14\x41\x36\x16\xb7\xb9\xfe\x90\xb9\x29\x02" "\x9e\xf8\x9e\xa9\x83\xfe\xa1\xaf\x65\x66\x53\x84\x1d\xd8\xd4\x79\xfa" "\x1b\x2e\xd3\x1b\xaf\x83\xaa\x0d\xa4\xf6\xc8\xfb\x37\xaf\xfe\xca\xab" "\x65\x1d\x21\x1c\xea\x27\x95\x99\xf0\xb5\x87\x07\xe8\x6a\x97\x9d\xa1" "\x08\x33\x59\x9d\x9b\xd8\xcd\x1b\x7e\x9c\xfa\x75\x09\xa6\x00\xb6\x50" "\xdb\xb6\x2f\xe3\xe8\xd9\x14\x11\xba\xee\x67\x7d\xd9\xee\xc3\x70\x7c" "\xa3\xea\x2a\x3f\xb3\x0f\x4f\x4f\xef\x55\xe3\xbb\xfe\x09\xc0\xf2\x53" "\x40\xd7\xbc\x41\x4c\xa9\x9b\x2b\xcf\xdf\xca\x87\x01\x5c\xce\x9b\x2e" "\x2c\xdf\x8a\xab\x55\x01\x85\x89\x72\x70\xd8\x62\xeb\x34\x5d\xb7\xdf" "\x42\x86\xcf\xb8\x5a\x9c\xfb\xa5\x82\x6d\x5d\x04\x5d\x56\x96\xd7\x58" "\x38\xab\x47\x60\xca\xea\x3a\x20\x61\x77\x34\xbf\x61\xe6\x67\x35\x6c" "\xee\x8c\xdb\xfe\xcc\xcd\x5f\x02\x25\x00\xce\xcc\x84\x4b\x80\x4b\x65" "\xf5\x32\x0b\x48\x41\xa4\xb1\x88\x41\xcb\x6a\x1c\x68\x4b\x53\x9a\x2e" "\xae\x2f\x6f\x30\xd4\xc2\x1f\x3d\xd3\xde\x6a\x10\x32\xb6\x2d\x06\x2c" "\x6a\x00\x5c\x9b\x7a\x21\x8f\x70\xde\x34\x1d\xbf\x3c\xf1\x8c\xb2\xb6" "\x26\x2e\xff\x86\x1e\xb9\x79\xcc\xf8\x87\x46\xcf\x10\x0e\x04\xdc\x31" "\xcd\x26\xf1\x15\xf8\xd5\x04\xd7\x1c\x43\xa0\x3c\xe2\x50\xdc\x29\xcb" "\x3a\x5b\xb9\x84\xcd\xd3\xb6\x3e\x1b\x5b\xc3\x99\x07\x59\x97\xa4\x1b" "\x8b\xb4\x63\xab\x78\x16\x61\xf2\xcb\xa9\x80\x15\x34\xfd\x3e\x45\x63" "\xea\xe7\x55\xf2\xc0\x77\xda\x50\x12\x89\xdc\x81\xb9\xe6\xec\x66\x91" "\x1b\x1a\x01\x9e\x9a\x48\x38\x5f\xea\xeb\xcb\xd2\xa7\x92\xf6\x15\xea" "\x0f\x25\x08\x76\xdc\x0e\x0f\x7b\xb6\x2b\xb0\xee\xa9\xbf\xbf\x6f\xe5" "\x03\x71\x78\xe4\xbd\x13\x54\x01\x1e\xde\xc0\x82\xae\x14\xe1\x5e\x23" "\x17\xe3\xa9\x6b\xb3\x16\x82\x57\x4b\xaa\x8e\xb4\xa2\x71\x79\x18\x1f" "\x65\x6e\xfe\x51\x6d\xb6\x95\x35\x86\x90\xb7\x54\xae\x31\xaf\x5e\x4d" "\xc5\xf4\x97\xa8\x12\x81\xab\xc3\xce\xe2\x5a\xd6\x85\xec\x66\x0d\xce" "\xcd\x65\x0f\x60\x3f\xc3\x9f\x62\x6a\xab\xea\x34\x24\x8c\xf6\x74\x57" "\xbf\xb3\xd9\xfb\xf1\xe5\xc1\x99\xda\xe3\x06\xd2\x72\xdf\xfb\xc7\x7a" "\x68\xcc\x72\x97\xcf\x92\x82\x91\x2e\xd5\x3e\x26\xb5\xbf\x09\x18\xe4" "\xeb\x01\x77\x1c\x0c\xd6\x37\xca\x97\xc9\x36\x8a\x58\x25\xec\x36\x42" "\x77\x87\x2f\x9e\xb2\xa9\xd3\x64\x2b\x09\x65\x5e\xeb\x8e\x17\x71\x8f" "\xcf\xc6\xde\x92\x77\x05\xd9\x19\x02\x49\x16\xf2\x05\x5e\x0b\x5a\xd2" "\x01\xac\x1d\xad\x10\x29\xe1\x6b\x15\xf2\xb9\xd8\xdc\x60\x19\x4f\x53" "\x9f\x5a\xf0\x0a\xdf\x01\xb1\x72\x6e\x95\xe9\x06\x22\x6b\x53\x13\x7a" "\x64\x2d\xed\x6d\x86\xd1\xaf\x43\x34\x0e\x2a\xc8\x8c\x5d\x3b\xd7\x84" "\xbe\xea\xb2\xa0\x7a\x36\xf0\x07\x36\xa0\x17\x60\x11\x8f\x77\x31\xc4" "\x9a\x30\x5b\x37\xb5\x51\x01\x37\xef\xa3\x15\xce\x71\x9f\x31\x9f\x99" "\xe8\xb0\xd4\x6d\xdc\x30\x92\x2c\x54\x8a\xa4\xab\x0a\xd7\x93\xda\x1e" "\x69\xad\x7f\x1c\xda\x86\x0e\x8b\xb1\x1d\xa8\x6c\xe7\xcc\x35\xfe\x48" "\x4a\xad\x7c\x9a\x21\x3b\x1d\x6a\xc1\xe3\x47\x2f\xbd\xd6\xca\x17\xb4" "\xf8\x33\x8a\x7c\xed\x68\x2c\x9e\xdc\x87\x46\x08\x2f\x65\x61\x92\x47" "\x27\xd9\x06\x51\x96\x7a\xff\x85\xb1\x91\x53\xd6\x7a\x6f\x16\xa6\xc1" "\xde\x1d\xb5\xff\xb6\x23\x7f\x9d\x6c\x2b\x9d\x3e\x74\xfb\x48\x37\xc0" "\x01\x5b\xdf\xa8\xdb\xbb\x6d\xc2\xf5\xa8\x7e\x34\xff\x51\x69\xa6\x1c" "\x7c\xed\x56\xe5\x08\xa7\xf4\x6d\xc5\x8c\x8c\x1d\x68\x3c\x8e\xc2\x73" "\x80\xe7\xa6\xfa\x89\x6a\xda\x95\x21\x2d\xa0\x8f\xc3\x03\x6c\x4c\x00" "\x2c\xb1\xa8\x91\x16\xe6\x68\x34\x4a\x93\x3f\xd1\x4c\x78\x6a\x16\x3d" "\x5d\x2e\xc9\x03\x93\x45\xd2\x5d\x65\x83\x95\x7b\xe8\x38\x69\x54\x9b" "\x76\xb3\x35\x5e\x78\x7b\x46\x49\xb7\x69\x8c\xe7\x87\x0c\xd0\x4a\x23" "\x15\xbe\x98\xc3\xe8\x4a\x12\xe4\x29\x9c\x9c\x16\x70\x22\xc7\xee\x8e" "\x9b\xf4\x9e\xcb\xa1\xa4\x90\xec\x35\xc1\xc1\xe0\xee\xba\x5c\xc2\xf5" "\x3e\x38\xb6\xaa\x28\xc0\x05\x01\x15\x3a\x7c\x49\x2d\x38\x80\x8c\x2a" "\x99\x9e\x07\x78\x7b\x55\x8e\xe3\x87\xcc\xcc\xe0\x09\xcc\x59\xb5\x6d" "\x6c\x9e\xef\xef\xc9\xa0\xc9\x9a\x86\xeb\x2e\xc0\x36\xbf\x3a\x3e\x53" "\x35\xca\xa0\x4a\xc5\x5b\x9b\x43\x89\xef\x62\x0c\x57\xce\x21\x28\xbe" "\xc0\x24\xfe\x8f\x23\xfd\xbc\xd7\x51\xae\x49\xd8\x4b\xd7\xd7\x69\xb1" "\xfc\x30\x92\x74\x68\xb9\x3a\xd3\x31\xd2\x9c\x31\x18\x54\x6d\xd7\x6f" "\x55\x37\x54\xbc\x7c\x46\x69\xa8\x45\x70\x00\x38\xda\xec\xe7\xfb\x64" "\xd4\x32\x1e\xd4\xdd\x77\xa5\x2e\xb1\x4e\x89\xc0\x55\x57\xa5\xb4\xeb" "\xd6\x83\xb2\x2a\x53\x6a\x70\x10\x33\x6f\xc1\x9e\x9a\x6e\x50\xba\x14" "\xd3\x12\x22\xdc\x75\xc0\xfb\xa2\x9f\x74\xea\xda\xe3\x5d\xd3\x37\xd4" "\xf5\x2c\xaa\x75\xdc\xe4\x40\x5f\x81\x88\x3b\x6f\x5c\x29\x12\xcd\x8c" "\xc4\xcc\x14\x12\x3c\x00\x1a\x8c\xc0\x41\x07\x96\x91\x00\x51\x66\x08" "\x23\x1e\xc7\xa3\xe7\x99\x18\x45\x3c\x60\x4a\x10\xe3\xb5\xab\x01\x23" "\x2e\xf9\x44\x63\x33\xb6\xa2\xfb\x08\xc1\x81\x70\xd3\x88\x83\xec\x57" "\xf9\x4c\x89\x2f\x8d\x1f\xd5\x6b\x09\x15\xd3\xde\x8d\xf8\x52\x66\xa0" "\x38\x6e\x58\xca\xd5\x06\x02\x7c\x7b\x4c\x33\x50\xb0\xb5\x98\xef\x39" "\xfb\x17\x51\xb9\xf4\x3e\xb3\x0b\x5f\x21\x95\x4e\x4b\xda\x56\x2d\x9d" "\x53\x7b\x0a\x1d\x6a\x34\x2e\x6a\x44\xa1\x1b\x20\x7f\x64\xbc\x63\x95" "\x6f\x1d\x11\x5e\x84\xb3\xa6\xec\x05\xd9\xff\xa9\x24\x63\xac\xa8\xc5" "\x24\xe5\x0e\xd5\x59\xf0\x23\x27\xa1\xc4\xc6\xe6\xcb\x41\x81\xc2\xa2" "\xf4\xb0\x2b\x34\x2f\x3a\x5d\xce\x66\xc9\xdf\x0e\x73\x7b\x33\x0f\x1e" "\x02\xfe\x67\x82\x18\x7e\x88\xab\x73\x62\x72\x35\x19\xc8\x28\xda\xb4" "\x9f\xe8\x64\xa8\x46\x21\xf1\x73\x80\xd8\x4b\x1f\xa1\x87\x6b\x04\xd5" "\xea\xe3\xbe\xcf\xf1\x86\xe3\x8d\xfb\xe6\x4c\xd1\x0b\x02\xd4\x3f\xd5" "\x26\xf4\xee\x74\x0d\x9a\x9a\x2d\xe6\xfe\x86\x75\x96\xcd\xf8\xcd\xa8" "\x7d\xff\xb1\xff\x63\xbc\xc8\x2b\x07\x00\x07\x31\x02\xbc\x64\x24\xcd" "\x4f\xf4\xb2\x5b\x07\x30\xbb\xba\xcf\x98\x2e\xfc\x4d\x7a\xde\x12\x83" "\xb0\x44\x69\x81\x3d\xd9\x3f\x8f\x88\x09\x78\xc8\x97\xed\xdf\xf9\x42" "\xc3\x91\xe1\xbc\x4b\x66\xce\x17\x96\xa5\x07\x66\x8d\xd0\x0b\x90\x0a" "\xcb\x22\x67\x09\xf0\xc0\xd4\x0b\x37\x97\x83\xf4\xf1\xba\x2f\x7d\x76" "\xc1\xd4\xe2\xaa\x5d\x2d\xaf\x98\x6f\x75\x62\xd4\x0b\x3f\xa0\xe3\x7c" "\x87\xa0\xa3\xa3\x5d\x14\xd8\x4f\xf4\xe5\x63\x71\xad\xde\x7f\x9c\x82" "\x7f\xce\x74\xb6\x3c\x8a\xba\x9b\x44\xc9\x76\x31\xc5\xfe\x0f\xb4\xa5" "\x19\x99\xc4\xc2\x86\xf7\x1c\xb5\x76\x14\xeb\x3f\x35\x3d\xfc\x7f\x4c" "\xdf\x82\x01\x3a\xfb\x20\xc9\x16\x0f\xcc\xc8\x8e\x44\x19\x02\x78\x49" "\x69\xb5\xd2\x43\x97\x1a\xd0\x12\xe2\xfd\x86\xbc\x25\x03\xf8\x2b\xeb" "\x63\xfa\xb1\x41\x6f\xab\x83\x8b\x07\xe6\x55\x0a\xa8\x11\x83\xac\x8a" "\x73\x90\xe2\xee\x4e\xe5\x5e\x91\x78\xcc\x18\xdf\xa1\xb8\xb8\x18\xa4" "\x54\x68\x82\xeb\x93\x75\xe1\x28\x32\xbb\x17\x9f\x55\x6b\x28\xb6\xca" "\x30\x85\x27\x47\xbe\x53\x92\x3a\x5c\x1d\x0e\x0a\x92\x30\x00\x64\x62" "\xd2\xe3\xcb\x40\x22\x57\x73\xe5\x04\xbe\x67\x37\x72\xc6\x60\x6c\x36" "\x61\xb7\xd2\xe3\xd2\x00\xed\xe0\x7f\x75\xd7\x76\x87\x3a\x11\x20\xa1" "\x14\xb8\x9d\xf7\xcc\x08\x68\x95\xa7\xb6\x93\x92\xd1\x80\x98\xb2\xef" "\xfa\x55\x72\x1b\xcf\xc7\x9a\x95\xe7\x2d\xbd\x63\x9f\x1b\x9f\x0a\x4d" "\xac\x34\xa1\x15\x2b\x0c\x04\x68\x85\xe7\x60\x1c\x39\xa0\xf3\xe8\x06" "\xca\xc7\xc4\x06\x7d\xdb\x9b\xb7\x68\x0a\xcf\x58\xea\x1d\x64\xa5\x5a" "\x5b\x01\x34\x63\x33\x99\x9d\x0c\xc2\x82\x43\xee\x99\xd7\x53\xb2\x1f" "\x7d\xa2\x2d\x64\xe5\x65\xab\x6a\x4f\x45\x4b\x6b\x95\xcb\xa6\x22\x83" "\x1c\x97\x13\xb1\x16\x86\x9b\x9e\x50\xef\xca\x99\x5f\xbe\x43\x73\xe8" "\x5c\xbb\x95\xcd\x83\x08\x68\xef\x3e\xfa\x01\x42\x39\x82\xc6\x2c\x0d" "\x6c\xb4\xed\x0a\x50\xce\xff\x56\x0e\x61\x33\x69\xc6\xb3\x72\xcc\x4e" "\x50\x6b\x31\x4e\x8f\xca\x6a\x81\xc7\x7a\xec\xbf\xb8\x3c\x54\xb1\x20" "\x2a\x16\x06\x11\x63\x05\xfa\xce\x65\x5d\x14\xf3\x5d\x23\x1c\xa0\x16" "\xbf\xa2\xfa\x26\x8f\x6a\x05\xde\xf5\x34\x30\xad\x4f\xbf\xc9\x16\x9d" "\x57\xfa\x55\x88\xc4\x93\x1e\x06\x8c\xdf\x63\xdd\xc3\x3b\x79\xfd\x0f" "\xba\x54\xad\xc8\x0c\x85\x3a\x5e\x7c\xdd\xe0\xb1\xff\x43\x5c\x35\x93" "\x9c\x2f\xb1\x32\x09\x02\x65\xe6\x61\x38\xcd\x86\x39\x70\x2e\xe2\x85" "\xb4\xe9\x63\x45\x45\x44\x36\x07\xa9\xa8\x4f\x8c\x15\x70\x9e\xb9\x67" "\xc2\x06\x2b\x1d\xd0\x18\x27\x09\x1d\x12\xbb\x69\x7d\xb5\x3f\x68\xa3" "\x75\xde\xe3\x6e\x02\x1c\x99\xa6\x98\xbc\x6d\x92\x8a\x93\x0a\x14\x18" "\xe7\x46\x62\x88\x13\xb2\x82\x9a\x36\x7e\xb4\x08\x99\x38\x51\xf2\x4c" "\xc3\x93\xf2\xcc\x07\x84\x0c\x9e\x73\xcd\x2f\x9c\xa7\xde\xd0\xbf\xac" "\x8a\x17\xbc\x03\xfc\x61\x95\xeb\x86\xa0\x94\xc6\x9e\xdd\x41\xd5\xf0" "\xf9\xbd\x31\xb5\x6d\x5d\x2e\x43\x57\x2f\x3f\x8d\x2f\x26\xad\x62\x6e" "\xe9\xea\xaf\xaa\x57\x1d\xed\x28\x6e\x5c\x80\xd5\x65\x81\x25\x4c\x64" "\xa9\x30\xc6\xcd\x65\x06\xfd\x59\xaa\x6e\x78\x78\x04\x0d\x64\x71\x89" "\x3a\x1b\x4d\x5c\x80\xb2\xa2\x0a\x95\xaf\x45\xb0\xf0\x66\x56\x16\x29" "\x62\x29\xbb\x26\x33\xf3\x3c\x18\x5f\x47\x17\x6e\x3f\x86\xb1\x0a\xed" "\xaa\xe4\xb2\x4a\xda\xd9\x36\xc0\xcc\x75\x12\xb9\x0c\xf7\xe7\xde\x27" "\x0e\xdb\x58\x71\x3b\x7b\xa9\x3a\x1c\xf2\xb4\x7d\x8c\xd1\xc0\x04\x11" "\xbd\x20\x10\x64\x55\x8d\x21\x63\x1f\x8e\x57\xad\x46\x78\x0e\xbd\x94" "\x2a\x8b\x66\x8f\xc6\x92\x41\x5f\x61\x74\x08\xcb\x14\xfa\xf4\x9e\xa4" "\x3f\x20\xbb\xb8\x18\x5f\x0c\x0d\xf8\xe4\xe4\x57\xfa\xca\x53\x1d\x31" "\x6a\x12\x7b\xdc\x12\x5e\x24\xd8\xc0\x61\xc0\xf4\xe0\x7e\xf3\x8a\x4d" "\xdc\xa4\x2e\x5e\xd9\xe8\xb7\x7d\x75\x45\xc8\x85\x9a\x02\xdd\x87\x26" "\xf7\x08\x18\x3f\x8b\x11\x27\x2b\xd7\x99\x20\xcf\x64\x6d\x5f\x4b\x37" "\x70\x5b\x2c\x67\x46\x7b\xe9\xf4\x60\x96\xea\xea\x69\x51\x0b\x34\xc5" "\x4d\xb1\x74\x72\x41\xdf\xfb\x94\xd9\x84\xed\xd0\xb1\x60\x7b\xc8\x8c" "\xb4\xf3\xad\x63\xba\x90\xf4\x67\x6c\x1e\x53\x83\xc1\xf4\x50\x5d\xa4" "\xb7\x94\x52\x19\xe3\x2a\xc1\xcd\x5e\xf7\x39\x8c\x3a\x63\xc8\xc2\x8e" "\x7b\xed\x52\x34\x91\xb8\x3a\x27\xc8\x62\x45\x87\x9f\x2c\x46\x2c\xca" "\x3f\x45\xe8\x2f\xd8\x34\x5e\xe7\x77\x0e\x13\xd3\xd3\x06\x41\xc8\xa5" "\x23\xd8\x27\x0f\xde\xc3\xa0\x3b\xe1\xe9\x62\x64\x2d\x93\x94\xba\xfb" "\x8f\x0e\x93\x0a\x6b\x7f\x5e\xd1\xe4\x05\x69\x9b\x8a\xd6\x9a\x62\x21" "\x74\x45\x82\x03\x3a\xa4\x73\x96\x7e\x10\xe9\xfa\x16\xc7\x8d\xb5\x61" "\x2f\x76\xcb\x96\x6b\x3d\xbe\xe2\xbd\xe3\x1e\xc1\xe9\x41\xbe\xcb\x54" "\xe0\xbd\x77\x1f\xc6\x88\xf6\xe7\x16\x92\x5a\xa5\xfd\xb2\xaa\x5c\x4d" "\x5f\x95\x0c\x2e\x0a\xb2\x52\xfa\x9c\xb5\x25\x28\xf5\x2a\x00\x05\x01" "\xa9\x3a\xee\x20\x15\x2c\x52\x6a\x30\x15\x85\xfb\x16\x9c\xc5\x7a\xac" "\x9b\x6f\xf1\x71\x10\x42\x0b\x73\x97\x8a\x78\x5d\x4b\xda\xd4\x7b\x4e" "\xe0\xfb\xaa\xbb\x3e\x3c\xc5\x7a\xb9\xef\x43\xd7\x40\xee\xaf\xa6\x93" "\xab\x32\x66\x94\x1c\x6b\xc2\x26\x6e\x33\xce\xb4\x6c\x94\x1e\x92\x54" "\x3a\xd5\x42\x8d\x9f\x14\x02\x23\x65\x8f\x79\x6f\x9e\x53\xb5\x50\x7a" "\x09\x83\xb8\x1d\x1a\x91\x6b\x11\x04\x78\x3e\x54\x93\xb7\x8c\x99\x99" "\xa4\xdc\xfd\xca\x76\x75\xf9\x71\x1c\xab\x87\xf7\xf9\x9f\xd7\xbe\x5f" "\xc1\x51\x3b\xea\xd5\x50\xbd\x4c\x61\x69\x0b\x52\x74\x81\xc6\x50\xd5" "\x40\xfe\x88\x88\xb2\x45\xc0\xd3\x5f\x1a\x55\x91\x4a\x32\x1f\x13\x34" "\x4f\x4b\xe4\x5c\xfc\x07\xd1\x06\xc5\x47\xce\xc0\x5d\xeb\xc3\x44\xc5" "\x06\xb8\xc3\xad\xb0\x72\x8a\x3f\x19\x23\xbe\x53\x5e\xea\xc5\x49\x27" "\x58\xbd\x51\xea\x3a\xab\x0d\x8d\xf7\x91\x68\xd8\x85\x74\x86\x44\xba" "\x3f\x61\x6e\xf1\x5f\xba\x79\xd8\x18\xa4\x5c\x4d\xa4\x47\x8e\x5a\x1a" "\x68\x2c\xd0\x75\x05\xe3\xb5\xc2\xef\x22\x55\xa8\xfc\x05\x8e\x1a\x4c" "\x06\x83\xc7\x0c\xcf\x0b\x38\xe7\x4e\x6c\xa8\x84\x08\x26\x6d\xd0\x90" "\x40\x9b\xad\x6c\x75\x21\x21\x92\x80\x4d\xc0\x13\xd3\xda\xdc\x4a\xe0" "\xda\xe0\xfa\xbb\x96\x27\xe6\x5f\x62\x18\xf3\xad\x09\xf2\xf4\x36\xb5" "\x28\x44\xaa\x0d\x63\xc5\xbf\x98\x45\x58\x8e\x8a\x1b\x6c\xeb\x38\xd0" "\xdc\x02\x5e\xca\x49\x95\xe9\x0c\xf3\xc7\xac\xd8\x01\xcc\x54\x3f\x6c" "\x26\xed\x92\xc8\x08\x25\x37\xd7\x20\x63\xd1\x73\xf4\x8c\x4f\xd7\xaa" "\xb4\x47\xe3\x3a\x72\x83\x6b\xfc\xed\xb8\xac\xaa\xda\xb1\xce\x91\x62" "\xd8\x2e\x5b\x79\x7f\xda\x85\x4c\x90\xf7\x02\x8c\x31\x37\xe6\xea\x72" "\x81\x5b\x5a\x73\x10\x3e\xfb\x94\x74\xfa\x32\xad\xef\x02\xb8\x17\x4a" "\x71\xe8\x7c\x12\x83\xf5\x20\x21\xb9\xc1\xb4\x43\xc2\xd0\xad\x2d\x97" "\x51\x2a\xf2\xe9\x1e\x9d\x30\x2a\x24\x6b\x4f\x1a\xde\xfb\xa6\x91\x55" "\x14\x4a\xe0\xbd\xe1\xea\xd8\x82\x66\x41\x10\x5b\x74\x51\x98\x26\xfe" "\x55\xfb\x20\x30\xcc\x04\xf6\x4c\x33\x69\x80\x62\x0b\xf2\x3d\xde\x2d" "\x52\x1a\x8a\xb0\xe1\x74\x38\x48\xf1\xbf\x53\xf7\x53\x73\xc7\xbb\xd5" "\x72\x79\x89\x37\x54\xa4\x41\x19\x05\x5f\xd1\x27\x8c\xea\x2f\xbd\x32" "\x4e\xc6\x14\x48\x84\x19\xb7\x89\xc9\x31\xeb\xfa\xcb\xd4\x2c\x9e\xf9" "\x10\xa7\xbf\xa9\xf5\x31\x70\x66\x7a\xe2\x27\xa3\x13\x16\xb9\x78\x3c" "\x10\x9e\x6d\x91\x72\xde\xbd\xac\x68\x1b\xb0\xe2\x87\x18\x5d\xdf\x85" "\x85\x4d\x76\x79\xcb\x80\x22\xfd\x26\xef\xcd\x55\xdc\x80\xbe\x8b\xa2" "\xf3\xe6\x26\x68\xf1\x81\x86\xa9\xd9\x03\x24\xe3\x6a\xd8\xe3\x0b\xff" "\x59\xd2\xe9\x74\x5c\xa4\x3b\xe7\xbe\x9e\x24\xfa\x38\x96\xd8\x83\x49" "\x1f\x79\xe7\x2e\x7e\x2e\x4e\x2d\x01\x21\x69\xd2\x1c\x2e\x7b\x70\xed" "\xd7\x07\xb1\x14\x4f\xf8\x7e\x82\x99\xb2\x32\x59\x45\x49\xa3\x40\xa1" "\xa5\xe4\xa2\xf3\x03\xf7\x38\xd1\x26\x64\x73\x51\x6d\x2c\xe1\xa1\x28" "\xaf\x47\xd6\x13\x62\x54\x16\x3c\x82\x24\xa0\xc6\x59\x21\x68\x4d\x33" "\xb6\x33\x0e\xea\x45\x51\xaa\x8c\xb6\xd8\x53\x09\x7d\x98\x12\x3a\xcc" "\xab\x53\x4d\x58\x78\x97\x0d\xcf\x7d\xd9\xbb\xc9\x24\x61\xb4\xc4\xac" "\xe6\x7f\x5c\xe4\x35\x20\x3e\x6b\x39\xf2\xdb\xa9\xff\x50\x4e\x63\x9d" "\x74\x4e\x6c\x3d\xdb\x53\xfc\xef\xec\x0b\x28\xdf\x23\x5c\x2e\x27\xb3" "\x7d\x0f\x66\xec\x19\xed\xc6\xac\xc9\xb7\x10\x29\x38\x51\xfb\x4f\x6d" "\x1b\x32\x4d\xe8\x51\xaa\x36\x8c\x4c\x25\x72\x06\x76\xd8\xcf\x8c\xba" "\x3a\x1f\xcd\xda\x90\x53\xd9\x15\x75\x8c\x76\xb0\x01\x83\x98\xda\x4f" "\x6c\x9a\xe6\xd8\xcc\xb3\x84\xce\x51\x40\x2b\x4f\xfc\xd1\x68\xa4\xb2" "\xe8\x1e\x2c\x64\x23\xdb\xb7\x42\x21\xee\x5f\x6a\x21\xe9\x87\x4f\x3f" "\x3f\xff\x26\x8e\x1e\x28\xce\xc7\x44\xb4\x49\xe8\xbd\x09\x51\x34\x91" "\x86\xa9\xa9\x16\x8a\x46\x29\x82\xae\x68\x1e\x70\xea\xed\x9f\xf0\xda" "\x0a\x91\xba\x37\xe1\x04\x28\x44\x0e\x2b\x6f\xb5\x3a\xd3\x44\x45\xf8" "\x6b\x40\x0b\x68\x7c\x3e\x41\x21\x07\xde\x6c\x49\xad\xfd\x29\x37\x07" "\x14\xbe\x66\x13\x2c\x43\xa5\x88\x74\x8e\xe9\xe8\x81\x89\xf4\xb1\xa3" "\x66\x65\x7c\xe7\x4b\x92\x81\x53\x3e\x12\x9d\x43\x2d\x6f\x8a\xac\xea" "\xbe\x99\x53\xca\xdb\x0f\x2c\x18\x08\xd7\x63\x0d\xec\x47\xb4\x30\x55" "\x59\xed\x0a\x2f\x4e\x17\xc4\x9e\x19\x06\xb0\xfe\xbe\xc4\x7b\x4d\xad" "\x50\x17\x50\x3b\x11\x24\x41\xe8\x80\x4c\x6b\x1e\xa2\x52\xbd\x2d\x44" "\x87\x6c\xcb\xec\xdc\x37\xac\x70\xa2\x1f\xdc\x4d\x2a\x5b\xaa\xc1\x74" "\xdb\x70\xe3\xe1\x37\x0e\x01\xeb\xf1\xa4\x22\x72\x50\x0c\xd8\x40\xaa" "\xa9\x9d\x31\x20\xad\xcd\x30\x89\x7d\x76\xe4\xa7\x7a\x62\x44\xe4\x6e" "\x0b\x4b\x5d\x71\x53\xa0\xc4\x14\x87\xf3\xb7\xc7\x1a\xc1\xb8\x8c\x6d" "\xa4\x12\xa2\x33\x1b\xa0\xae\x4d\x66\x0d\xb3\x75\x05\xfc\xa4\xc8\xa7" "\x53\x62\xe7\x1a\x42\x4c\x16\x8f\xc1\x8e\x1e\x58\xa1\x17\x5b\x18\x85" "\x26\x20\x66\x1d\x24\x76\xd2\x0a\xb5\xe8\xa9\x35\xdd\x9b\x72\xbe\xa4" "\xe4\x81\x18\x2c\xee\xf0\x4f\x5a\xb2\x74\x72\x7c\x37\x84\x1d\x99\xb8" "\xaa\x3d\x32\x72\x48\x75\x40\xf4\x57\xdb\x07\x17\x80\x91\xad\x49\xe5" "\x0b\x7b\xf8\x35\x19\x09\xa8\x3c\x5b\xc8\xa3\xab\xc5\xd9\x41\xd6\xb8" "\xd6\x28\xed\x74\x83\x2c\x21\xc9\x3a\x65\xbe\xf1\xce\xfb\x74\xa2\x03" "\x87\x37\xbb\x8d\x03\xfa\x99\x82\x08\x33\x1a\x8c\xdb\x67\xb0\x5c\xa2" "\x25\xed\x0e\x56\xeb\x6f\x76\xec\x2c\x22\x1d\x9c\x9d\x00\x59\xff\x09" "\x8e\xfa\x80\x11\x68\x00\x09\x64\xae\xe1\x5a\xac\x2c\x65\x2f\xe2\xae" "\x84\xa7\x1a\x0c\x51\xb7\xea\xe1\xcc\x95\x77\x9d\xd5\xc5\x76\x90\x9c" "\xa5\xce\x99\xe9\xee\x43\x7d\x87\x32\x23\x8c\x0d\xc3\x86\xf5\xb0\x31" "\x3b\xbf\x3e\xf2\x50\x4f\x88\x1a\x9c\x84\xc0\x05\xfc\x72\x32\xbe\x24" "\xc8\xf1\xac\x65\x05\xd8\xd4\x5b\x0d\x5a\xf1\x56\x28\x84\x1b\xc3\x85" "\xfc\x53\x2a\xe8\xf9\x00\xd7\xae\x21\x8f\xb1\xb1\x52\xcd\xaf\x9d\x5c" "\x06\x19\x1a\xda\x4b\x0f\x6a\xe9\x76\x3c\xb7\x63\xae\x99\x1d\x9d\xc2" "\x8d\xe2\x7e\xdb\x25\xf6\x49\xae\x9e\xb5\x71\x50\xe9\x54\x69\xe1\xa4" "\xfb\x4f\x52\xd3\x26\x6a\x2c\x3a\xec\xef\xb5\xd2\xd6\xb1\x7d\x48\x31" "\x72\xed\xcd\x2f\xd5\x34\x9f\x0b\x5c\xb0\x38\x17\x51\x10\xe8\x5b\x0f" "\x4e\x1a\x0e\x64\x51\x60\xf6\xc6\x33\x81\x00\x2c\xb7\x57\x51\xf7\x29" "\x0c\x84\x52\xa7\xfe\xbf\x26\x42\x78\xf0\xb5\x56\x83\x1b\x78\x85\x15" "\x98\x90\x4a\x49\x75\x45\x58\xa4\x0d\xc3\x6c\x55\x94\xe3\x05\xa5\xf9" "\x93\x8e\x6a\x0e\x63\xe3\x97\x42\xb3\xc1\xb4\xfe\x30\xcd\x21\x02\xc1" "\x2c\x55\xfe\x00\x42\x4d\xe2\x56\x8b\x5a\x67\xab\x13\x84\x11\xc7\xe7" "\xe9\x4f\x70\xbd\xbf\x09\xdf\x60\xda\xcc\x12\xf7\xa7\x2e\xba\x90\xe1" "\x0e\xb7\x3f\x8f\x3c\xd7\xb5\x44\x38\xf3\x26\x53\x18\x6c\x71\x97\x5f" "\xed\xc5\xc8\x22\xeb\xbd\x01\x97\xdf\xf5\xcc\x7e\xb2\x94\x2c\x8a\xbd" "\xe0\x4b\x57\x0e\x77\xd7\x2c\xfe\x11\x26\xd4\x30\x73\x29\x03\xdc\xfc" "\xc4\xbd\x13\x7c\x05\xee\x93\xb5\x8a\x27\x30\xab\xc4\x96\xc6\xfc\x9a" "\x34\xf5\x09\xb4\x3d\x69\xe5\xc1\xa3\xc1\x8b\x47\xaf\x16\x8f\x4a\x12" "\x9d\xc1\xf2\x43\xee\xa9\xfe\x95\x73\x9d\xdc\x5e\x02\x69\x1e\xeb\xae" "\x81\x47\x01\x9b\x27\xb7\x2e\x0c\x3b\x34\x69\xfc\xea\x1a\x65\x09\x7a" "\xf9\x3a\x52\x20\xfa\x02\x44\x74\x09\x49\x76\xe5\x2b\x5a\x37\x4a\x18" "\xb2\xfc\x3b\x43\x77\x48\xdd\x7c\x46\xc4\x2f\x60\x7c\x74\xe3\x9e\xf5" "\xff\xa3\x76\x4a\xa6\xba\xdc\x1a\x6d\xa1\x95\xa6\x23\x9c\x6d\x5a\xaf" "\xb0\x12\x2f\x95\x57\x08\x28\x10\x87\xec\x0d\x6e\xd0\xca\xf9\x84\x13" "\xca\xbb\xd2\xb9\xb5\xb1\x34\x2b\x3e\x1c\xb8\x5c\xaa\xe6\x02\x92\xc8" "\x61\xaf\x20\x0b\xd7\x93\x9e\xfa\xbb\x69\xdb\xf2\x7c\xb4\x4a\x23\xca" "\x6f\x66\x98\x20\xf7\x0d\x19\x75\xde\x26\x7f\x58\xe2\xb2\xe6\x4e\xf0" "\xb1\x7b\xb0\xb0\x74\xb5\xc9\x1a\xdb\xa8\xf3\x20\x56\x50\xb7\x83\x10" "\x5d\x2a\x43\xc7\x98\xc7\x21\x60\xf2\x87\x15\xf7\x03\x22\x26\xef\xaa" "\xea\xb6\xf3\x9a\x57\xe0\x83\x7a\x1d\x7a\xc9\xdf\x2a\x40\x59\xe5\x1b" "\x8b\x0e\x8f\x03\x87\xaa\xae\xcf\x92\x53\x98\xd0\x06\xe9\x4f\xb9\x8d" "\xb8\x79\xcd\x5f\x41\x92\x64\x08\x66\xc2\x83\x77\x55\x61\x37\x5a\xc7" "\x6b\x3a\xaa\x3f\x9e\x22\x8b\x30\xb6\xe3\x27\x39\x3a\xbe\x17\xd7\x65" "\x9a\x3d\x5a\xb8\x95\x98\x16\x11\x27\xd2\xa4\x3a\xcb\x57\x31\x9c\x9c" "\xc9\x87\xa2\xbe\xd8\x65\x46\xd4\x5b\xe9\x2d\x79\x04\xd1\x03\x07\xd9" "\xf2\xfe\xcf\x33\xbf\xb3\xc4\xf2\x93\x31\xe4\x9b\x38\xa9\x59\x58\x5a" "\xc9\x82\x54\xef\xa4\xbb\x08\x41\xe6\x3b\x07\x9b\xae\x1d\x06\x9d\x50" "\xf0\x87\x58\x48\x9e\x69\x9f\x06\x01\x61\x88\xb5\x5c\xcf\x9e\xcb\x97" "\xf6\xd7\x51\x98\xd9\x57\x6c\x2e\xe8\x1d\x3e\xf1\xac\x3d\xb7\x48\xa6" "\xbf\x1a\xfb\xa6\xd1\x0f\x6b\xd6\xa9\xa5\x89\xcf\xfb\xb3\x48\xd4\xaa" "\x09\x13\x69\x70\x6e\x26\x01\x1e\x80\xa8\xfd\x5d\x57\xfa\x38\xd6\xb8" "\x32\x8d\xe9\x0c\xfb\x8d\x66\x75\xac\x39\xb1\x0d\x64\x6a\x81\x79\xf9" "\xff\x0f\x71\xf5\xd0\x30\x24\x6a\x85\xc6\x82\x8f\xa7\xfd\xc0\x4a\x9f" "\x51\xa7\x42\xe3\x31\x75\xe1\x81\x71\x2d\xa0\x1d\x2c\xdb\xa3\x5f\x82" "\xcf\x83\x6c\xbc\xb8\x4e\x1d\xa5\x7b\x6a\x0c\x2a\x90\x94\x6c\x70\x65" "\xf0\x42\x5b\x01\x5e\xc4\x36\x17\x5e\x22\x20\xc2\x73\xb8\xaa\x68\x48" "\xfe\x23\x51\x42\xc4\x3c\xa8\xdf\x9d\xb4\x56\x59\xfc\x5c\xe8\x4f\xfc" "\xda\x9a\xd0\x58\xb9\xa8\x3e\x77\x8d\x77\x89\x6a\x60\xa4\xd1\xf5\x1a" "\xd1\x4b\x9b\x84\x0c\xb1\x1a\x32\x5e\x70\x74\x08\x47\xf1\xfe\xa6\x14" "\x3d\x4f\x81\x93\xab\xbc\xeb\x2e\x7d\x98\x69\x03\x28\x91\x1f\x53\x87" "\x59\xca\x1e\x81\xb4\xa5\xe4\xf8\x68\x87\x74\xeb\x59\x4f\x28\x11\x7f" "\xb1\x1e\xfd\xe0\x5a\x94\xe4\x37\x1b\x96\x0e\xe0\x5f\xf5\xbd\xd5\x5d" "\x48\x5c\x38\xde\x17\xd5\x66\xcc\xd7\xac\x38\xa1\xcf\xa4\x27\xba\xdb" "\xb9\xd6\x48\xfb\x0a\x29\xb0\x4f\x1d\x90\xac\x9a\x52\x1d\xc1\xe1\xba" "\x40\xf4\x6c\xc4\x36\xb6\xb6\x6e\x98\x06\x08\xed\x73\xf4\x3e\x53\x6f" "\x5d\xed\x26\x37\xda\x3b\x0b\x56\xf0\x0f\xaf\x03\xc9\x35\x06\x69\xcf" "\xac\x4e\x88\x73\xb9\xe5\x0c\x2d\x78\xb7\xf3\x16\x0f\x54\x36\x7c\x4e" "\x01\x10\x0a\x30\xd1\x2b\xee\xe2\xe9\x8f\xd8\xa7\x0d\x07\xe1\xcc\x20" "\xb3\xdb\x2a\xdf\x97\x66\xd7\x48\x06\xf3\x20\x31\x3f\xb9\x2c\x56\xa2" "\xa8\x79\xb7\xc9\xd0\x3f\xe3\xb2\x4b\x6a\xb1\xb3\xe8\xe8\xad\x5c\x15" "\x33\x03\xaf\xab\xd8\x71\xaa\xc8\x8b\x7e\xfd\xd4\x8c\x3f\xb4\x78\x48" "\xf9\x8e\x3d\x17\x6a\x3a\xb6\xb3\xcc\xa8\x46\xea\x32\xd9\x50\xcb\x60" "\x55\x17\x98\x2f\x68\x44\x95\x8b\x92\x83\x02\x47\x0a\x78\x0d\x98\xc4" "\xb1\xa4\xb5\xab\x01\xad\xc8\x95\xc8\x44\xfb\x9a\xc7\x8a\xe8\x99\x8d" "\xe1\xf2\xab\x8d\x0b\x21\xa8\x1e\x55\x85\x60\x1e\xf2\xfe\xe5\x98\xfe" "\xf5\xc0\xca\x9f\x0d\x74\x9c\x15\x6e\xd7\x7d\x85\x8f\x37\x20\x23\xdb" "\x32\x07\x9a\xb1\xd4\x4d\x75\xea\xe1\xb7\x41\x01\xa3\xd3\x1c\x88\x52" "\x11\x15\x26\x64\xa2\xdd\x0b\x3a\x99\x52\xf1\xd6\x4c\x9a\x9f\xfd\x74" "\x80\xd4\x8c\xee\xc1\x3e\x0f\xa1\x8b\xee\x84\x9e\x3b\x0d\xff\xe0\x50" "\x73\xcf\xe7\x6f\xcd\xae\x64\x7c\xa6\x4e\x2c\x48\x64\xd9\xc0\x80\xba" "\x1f\x86\xc9\xc7\xae\x63\x2f\xbb\x3f\x9c\x0d\xe1\xdf\x72\xc3\x72\x12" "\x23\x21\xdf\xb9\x69\xbe\xd7\x43\xff\x4a\x68\x09\xcd\x4b\x8a\xf6\x0d" "\x8b\xb4\x8f\x6f\xaf\xc0\x80\xbb\x4a\x7e\x55\x43\x07\x96\xad\x7e\x1a" "\xb7\xa0\x17\x0b\x92\x59\xe1\x4a\xb2\x87\x5a\x6f\x9d\xe4\x59\x7a\xa5" "\x78\x1f\x0a\x12\xfc\xd6\x58\x84\x85\xbe\x3b\xc6\xf1\x5a\xb5\xd2\x28" "\xb1\x14\x4f\x61\x6f\x5a\x0f\xde\x66\x94\x3e\x5c\xbd\xfb\x51\x1d\xca" "\x3c\x35\x22\x2f\x53\xd6\xce\x02\xc3\xc3\x54\xb5\x07\x19\x29\xc1\x74" "\xd6\x5f\x03\xe9\x50\x1c\x48\x1b\x1e\x4d\x22\x3f\xe9\x42\x4b\x46\x9b" "\x90\x7a\x82\x1e\xf6\xea\xd4\x3c\x88\x52\xce\xa2\x98\xb1\xba\xf1\xca" "\x39\x93\x25\x26\xd9\xa1\xcb\xf5\x70\x6b\xa4\x7d\x69\x4b\xf6\xa4\x51" "\xdb\xff\x97\x27\xf8\x18\x4c\x38\xb3\xc2\xf6\xc5\x0f\x34\x59\xe6\xf7" "\xc3\x2b\xd8\x29\xc1\x2d\x37\x0f\xcd\x19\x40\xc5\x83\xb2\x88\x63\xe7" "\x18\xdb\xe7\x37\x66\x2a\xa6\x71\x47\xc9\x07\x3d\xdb\x3e\xa4\x74\x42" "\xfb\x4f\x8c\xb3\xdb\x2c\x48\x6c\xde\x6a\x48\x0b\xa7\x98\x36\x23\x09" "\x26\x9b\x06\xeb\x5f\x36\x46\x56\x92\x89\x95\x99\xdb\x8b\x8f\x92\x8b" "\x0d\x5f\xfd\x65\x07\x37\xb1\x8c\x0d\xc6\xa2\xb4\xa2\x2f\xf8\x42\x35" "\x5f\x04\x7f\x31\x4f\x22\x4e\x89\x0a\x67\xad\x8d\x92\xfe\x6f\xa4\xcc" "\xa6\x08\x59\xfa\x50\x77\x9f\x36\x39\xbd\x20\xc6\x52\x2a\x84\x68\x0d" "\xe3\xf1\x81\x67\x1c\xe7\x62\x50\x5f\x72\x39\x30\xfd\xdd\xde\xa9\x88" "\x44\x68\xf0\x34\x9c\x3e\xf4\x34\x68\x74\x69\x14\xaf\x91\x51\x1d\xb0" "\x5b\x2e\x8e\xa3\x18\x04\xc3\xcb\x78\xc4\x11\xab\x23\xdf\x80\xed\xac" "\x64\xbd\x6a\x40\x71\x1e\x5e\xd9\x14\x6d\xfd\x0e\x09\x0c\x84\xc4\xd6" "\xaf\x48\x62\x9a\xe7\x46\xed\xdd\x57\xf9\x3f\xa2\xb7\x18\x24\x59\x92" "\xa0\xc4\x41\xed\x78\x28\xc3\x55\x22\xff\x19\x43\xf2\xc4\x6c\x2a\xde" "\x02\x67\xc2\x88\x11\x17\x1c\x13\xf6\xb5\xa9\x70\x4b\x12\x68\x84\xc1" "\x0a\x1c\x46\x71\x90\x8b\x55\xb3\xdd\x1d\xc8\xb9\xb1\x6d\xfa\xa1\x7d" "\xc2\x86\xc7\x23\xa5\xf5\xed\xd8\x78\x67\x3b\x3e\xbe\x9d\x71\x70\x51" "\x31\x79\xde\xa4\xd1\x08\x18\x69\xe8\x1e\xe4\xa0\x1a\x9b\x4b\xb8\xcb" "\x2c\xae\x66\x79\xbb\x68\x71\xb1\xe9\x54\x62\xcb\xef\x80\xf3\x50\x76" "\xef\xc3\xe5\x54\xf8\xd7\xc6\x0f\xf6\xc7\x04\xd5\xec\x9a\x44\xc4\x2f" "\x2b\xce\xb9\x5c\x71\xbf\x55\x38\x55\x77\x22\x94\x8e\x9b\x55\x2e\xa0" "\x00\xa9\x75\x6c\x3d\x84\xbc\x40\xc3\x2e\xe9\x7d\xe6\xa9\xc9", 8192); *(uint64_t*)0x20000c00 = 0; *(uint64_t*)0x20000c08 = 0; *(uint64_t*)0x20000c10 = 0; *(uint64_t*)0x20000c18 = 0; *(uint64_t*)0x20000c20 = 0; *(uint64_t*)0x20000c28 = 0; *(uint64_t*)0x20000c30 = 0; *(uint64_t*)0x20000c38 = 0; *(uint64_t*)0x20000c40 = 0; *(uint64_t*)0x20000c48 = 0; *(uint64_t*)0x20000c50 = 0; *(uint64_t*)0x20000c58 = 0; *(uint64_t*)0x20000c60 = 0; *(uint64_t*)0x20000c68 = 0; *(uint64_t*)0x20000c70 = 0; *(uint64_t*)0x20000c78 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20002140, /*len=*/0x2000, /*res=*/0x20000c00); break; case 6: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000180, "overlay\000", 8); memcpy((void*)0x20000000, "lowerdir", 8); *(uint8_t*)0x20000008 = 0x3d; memcpy((void*)0x20000009, "./file0", 7); *(uint8_t*)0x20000010 = 0x3a; *(uint8_t*)0x20000011 = 0x2f; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000140ul, /*type=*/0x20000180ul, /*flags=*/0ul, /*opts=*/0x20000000ul); break; case 7: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x20008380ul, /*len=*/0x2020ul); if (res != -1) r[2] = *(uint64_t*)0x20008388; break; case 8: memcpy((void*)0x20000240, "./file0/file0\000", 14); syscall(__NR_lstat, /*file=*/0x20000240ul, /*statbuf=*/0ul); break; case 9: *(uint32_t*)0x20000400 = 0xa0; *(uint32_t*)0x20000404 = 0; *(uint64_t*)0x20000408 = r[2]; *(uint64_t*)0x20000410 = 2; *(uint64_t*)0x20000418 = 3; *(uint64_t*)0x20000420 = 0xed0; *(uint64_t*)0x20000428 = 1; *(uint32_t*)0x20000430 = 0x8001; *(uint32_t*)0x20000434 = 0x983d; *(uint64_t*)0x20000438 = 6; *(uint64_t*)0x20000440 = 7; *(uint64_t*)0x20000448 = 7; *(uint64_t*)0x20000450 = -1; *(uint64_t*)0x20000458 = 8; *(uint64_t*)0x20000460 = 1; *(uint32_t*)0x20000468 = 0xe28; *(uint32_t*)0x2000046c = 9; *(uint32_t*)0x20000470 = 0xfff; *(uint32_t*)0x20000474 = 0x8000; *(uint32_t*)0x20000478 = 8; *(uint32_t*)0x2000047c = 0; *(uint32_t*)0x20000480 = 0; *(uint32_t*)0x20000484 = 8; *(uint32_t*)0x20000488 = 0x200; *(uint32_t*)0x2000048c = 0; *(uint64_t*)0x20000490 = 0; *(uint32_t*)0x20000498 = 0x1a; *(uint32_t*)0x2000049c = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20000400ul, /*len=*/0xa0ul); 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; }