// https://syzkaller.appspot.com/bug?id=d38f8eae55e27aaef60b4748bc77ecb712dba4b9 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 4; 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 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_call(int call) { switch (call) { case 0: memcpy((void*)0x200000c0, "exfat\000", 6); memcpy((void*)0x20000200, "./file0\000", 8); memcpy( (void*)0x20002600, "\x78\x9c\xec\xdc\x0b\x98\x4f\xd5\xfa\x38\xf0\xf7\x5d\x6b\xed\x31\xa6" "\x49\xdf\x26\xb9\xaf\xb5\xde\xcd\x37\x0d\x96\x21\x49\x2e\x49\x72\x49" "\x92\x24\x24\x84\x84\xa4\x49\x92\x24\x89\x21\x24\x09\x49\xc8\x75\x92" "\x5c\xc6\x84\xe4\x32\x98\x34\xee\xf7\x4b\xee\x49\x93\x23\x49\x92\x90" "\x90\x64\xfd\x9f\xa9\xce\x4f\xe7\x74\xce\xe9\x9c\xfe\xe7\x77\x9c\xe7" "\x37\xef\xe7\x79\xf6\x63\xbd\xf6\x5e\xef\x7e\xd7\xbc\x33\xdf\xbd\xf7" "\xf7\x99\xf9\x7e\xd5\x63\x44\x9d\xe6\x75\x6b\x36\x21\x22\xf8\x23\xe4" "\x9f\x07\xf8\xf3\x3f\x29\x00\x10\x0b\x00\x83\x01\xe0\x2a\x00\x08\x00" "\xa0\x62\x42\xc5\x84\x9c\xfd\x79\x25\xa6\xfc\xa1\x93\xb0\xff\x25\x4d" "\xd3\x2e\x77\x05\xec\x72\xe2\xfe\xe7\x6e\xdc\xff\xdc\x8d\xfb\x9f\xbb" "\x71\xff\x73\x37\xee\x7f\xee\xc6\xfd\xcf\xdd\xb8\xff\xb9\x1b\xf7\x9f" "\xb1\x5c\x2d\xbd\xf0\xd5\xbc\xe5\xde\x8d\xdf\xff\xcf\xcd\xf8\xfa\x9f" "\xbb\x71\xff\x73\x37\xee\xff\xff\x51\x31\xff\xdc\x61\xdc\xff\xdc\x8d" "\xfb\x9f\xbb\x71\xff\x73\x37\xee\x7f\xee\xc6\xfd\xcf\xdd\xb8\xff\x8c" "\xe5\x6a\xff\xf6\xf7\x94\x37\x9c\xbb\xdc\xef\x69\xf3\xf6\x2f\x6c\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xd8\x7f\xc0\x39\x7f\x89\x02\x80\x3f" "\x8f\x2f\x77\x5d\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\xfb\xf7\xf1\x79" "\x2e\x77\x05\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\xfb\xdf\x87\x20\x40" "\x82\x82\x00\x62\x20\x0f\xc4\x42\x5e\x88\x83\x2b\x20\x1e\xae\x84\x7c" "\x70\x15\x44\xe0\x6a\x48\x80\x6b\x20\x3f\x5c\x0b\x05\xa0\x20\x14\x82" "\xc2\x50\x04\x8a\x42\x31\xd0\x60\xc0\x02\x41\x08\xc5\xa1\x04\x44\xe1" "\x3a\x28\x09\xd7\x43\x22\x94\x82\xd2\x50\x06\x1c\x94\x85\x24\x28\x07" "\xe5\xe1\x06\xa8\x00\x37\x42\x45\xb8\x09\x2a\xc1\xcd\x50\x19\xaa\x40" "\x55\xa8\x06\xb7\x40\x75\xb8\x15\x6a\xc0\x6d\x50\x13\x6e\x87\x5a\x50" "\x1b\xea\x40\x5d\xb8\x03\xea\xc1\x9d\x50\x1f\xee\x82\x06\x70\x37\x34" "\x84\x7b\xa0\x11\xdc\x0b\x8d\xe1\x3e\x68\x02\x4d\xa1\x19\xdc\x0f\xcd" "\xe1\x01\x68\x01\x2d\xa1\x15\x3c\x08\xad\xa1\x0d\xb4\xfd\x43\xf3\x9f" "\x83\xde\xf0\x3c\xf4\x81\xbe\x90\x02\xfd\xa0\x3f\xbc\x00\x03\x60\x20" "\x0c\x82\x17\x61\x30\xbc\x04\x43\xe0\x65\x18\x0a\xaf\xc0\x30\x18\x0e" "\x23\xe0\x55\x18\x09\xaf\xc1\x28\x78\x1d\x46\xc3\x18\x18\x0b\x6f\xc0" "\x38\x18\x0f\x13\x60\x22\x4c\x82\xc9\x90\x0a\x6f\xc2\x14\x78\x0b\xa6" "\xc2\xdb\x30\x0d\xa6\xc3\x0c\x98\x09\x69\x30\x0b\xd2\xe1\x1d\x98\x0d" "\x73\x60\x2e\xbc\x0b\xf3\xe0\x3d\x98\x0f\x0b\x60\x21\x2c\x82\x0c\x58" "\x0c\x4b\x60\x29\x64\xc2\xfb\xb0\x0c\x3e\x80\x2c\x58\x0e\x2b\x60\x25" "\xac\x82\xd5\xb0\x06\xd6\xc2\x3a\x58\x0f\x1b\x60\x23\x6c\x82\xcd\xb0" "\x05\xb6\xc2\x36\xf8\x10\xb6\xc3\x0e\xd8\x09\xbb\x60\x37\xec\x81\xbd" "\xf0\x11\xec\x83\x8f\x61\x3f\x7c\x02\xd9\xf0\xe9\xbf\x38\xff\xec\x5f" "\xcd\xef\x89\x80\x80\x02\x05\x2a\x54\x18\x83\x31\x18\x8b\xb1\x18\x87" "\x71\x18\x8f\xf1\x98\x0f\xf3\x61\x04\x23\x98\x80\x09\x98\x1f\xf3\x63" "\x01\x2c\x80\x85\xb0\x10\x16\xc1\x22\x58\x0c\x8b\xa1\x41\x83\x84\x84" "\xc5\xb1\x38\x46\x31\x8a\x25\xb1\x24\x26\x62\x22\x96\xc6\xd2\xe8\xd0" "\x61\x12\x26\x61\x79\xbc\x01\x2b\x60\x05\xac\x88\x15\xb1\x12\x56\xc2" "\xca\x58\x05\xab\x60\x35\xac\x86\xd5\xb1\x3a\xd6\xc0\x1a\x58\x13\x6b" "\x62\x2d\xac\x85\x75\xb0\x0e\xde\x81\x77\xe0\x9d\x58\x1f\xeb\x63\x03" "\x6c\x80\x0d\xb1\x21\x36\xc2\x46\xd8\x18\x1b\x63\x13\x6c\x82\xcd\xb0" "\x19\x36\xc7\xe6\xd8\x02\x5b\x60\x2b\x6c\x85\xad\xb1\x35\xc6\x62\x5b" "\x6c\x87\xed\xb0\x3d\xb6\xc7\x8e\xd8\x11\x3b\x61\x27\xec\x8c\x9d\x31" "\x19\x93\xb1\x0b\x76\xc1\xae\xd8\x15\xbb\x61\x37\xec\x8e\xdd\x5b\xe6" "\x7c\xb3\xf7\xc4\x67\xf1\x59\x7c\x0e\x9f\xc3\xe7\xf1\x79\xec\x8b\xb5" "\x44\x3f\xec\x8f\xfd\x71\x00\x0e\xc0\x41\xf8\x22\xbe\x88\x2f\xe1\x10" "\x7c\x19\x5f\xc6\x57\x70\x18\x0e\xc7\x11\xf8\x2a\xbe\x8a\xaf\xe1\x28" "\x3c\x83\xa3\x71\x0c\x8e\xc5\xb1\x58\x5d\x8c\xc7\x09\x38\x11\x49\x4c" "\xc6\x54\x4c\xc5\x3c\x30\x05\xa7\xe2\x54\x9c\x86\xd3\x71\x3a\xce\xc4" "\x34\x9c\x85\xe9\x98\x8e\xb3\x71\x0e\xce\xc1\x77\x71\x1e\xbe\x87\xef" "\xe1\x02\x5c\x80\x8b\x30\x03\x33\x70\x09\x2e\xc5\x4c\xcc\xc4\x65\x78" "\x16\xb3\x70\x39\xae\xc0\x95\xb8\x0a\x57\xe3\x2a\x5c\x8b\xeb\x70\x2d" "\x6e\xc0\x8d\xb8\x01\x37\xe3\x66\xdc\x8a\x5b\xf1\x43\xfc\x10\x77\xe0" "\x0e\xdc\x85\xbb\x70\x0f\xee\xc1\x8f\xf0\x23\xfc\xd8\x4b\x00\xcc\xc6" "\x6c\x3c\x80\x07\xf0\x20\x1e\xc4\x43\x78\x08\x0f\xe3\x61\x3c\x82\x47" "\xf0\x28\x1e\xc5\x63\x78\x0c\x8f\xe3\x71\x3c\x81\x27\xf1\x14\x9e\xc4" "\xd3\x78\x1a\xcf\xe0\x59\x3c\x87\xe7\xf0\x3c\x9e\xc7\x0b\x78\x01\x2f" "\xe2\xc5\x9c\x1f\x7e\x91\x43\x09\x25\x62\x44\x8c\x88\x15\xb1\x22\x4e" "\xc4\x89\x78\x11\x2f\xf2\x89\x7c\x22\x22\x22\x22\x41\x24\x88\xfc\x22" "\xbf\x28\x20\x0a\x88\x42\xa2\x90\x28\x22\x8a\x88\x62\xa2\x98\x30\xc2" "\x08\x12\xa1\x28\x2e\x8a\x8b\xa8\x88\x8a\x92\xa2\xa4\x48\x14\x89\xa2" "\xb4\x28\x2d\x9c\x70\x22\x49\x24\x89\xf2\xa2\xbc\xa8\x20\x2a\x88\x8a" "\xe2\x26\x51\x49\xdc\x2c\x2a\x8b\x2a\xa2\x83\xab\x26\xaa\x89\xea\xa2" "\xa3\xab\x21\x6e\x13\x35\x45\x4d\x51\x4b\xd4\x16\x75\x44\x5d\x51\x57" "\xd4\x13\xf5\x44\x7d\x51\x5f\x34\x10\x0d\x44\x43\xd1\x50\x34\x12\xf7" "\x8a\xc6\xa2\x1f\x0e\xc2\xa6\x22\xa7\x33\xcd\xc5\x70\x6c\x21\x46\x60" "\x2b\xf1\xa0\x68\x2d\xda\x88\xd7\xf0\x21\xd1\x4e\x8c\xc2\xf6\xa2\x83" "\xe8\x28\x1e\x11\x63\x70\x34\x76\x16\xed\x5c\xb2\x78\x5c\x74\x11\x13" "\xb0\xab\x78\x52\x4c\xc4\xa7\x44\x77\x31\x19\x7b\x88\x67\x44\x4f\xf1" "\xac\xe8\x25\x9e\x13\xbd\x45\x7b\xd7\x47\xf4\x15\xd3\xb0\x9f\xe8\x2f" "\x66\xe2\x00\x31\x50\x0c\x12\x2f\x8a\xd9\x58\x5b\xe4\x74\xac\x8e\x78" "\x45\x0c\x13\xc3\xc5\x88\x98\x57\xc5\x22\x7c\x4d\x8c\x12\xaf\x8b\xd1" "\x62\x8c\x18\x2b\xde\x10\xe3\xc4\x78\x31\x41\x4c\x14\x93\xc4\x64\x91" "\x2a\xde\x14\x53\xc4\x5b\x62\xaa\x78\x5b\x4c\x13\xd3\xc5\x0c\x31\x53" "\xa4\x89\x59\x22\x5d\xbc\x23\x66\x8b\x39\x62\xae\x78\x57\xcc\x13\xef" "\x89\xf9\x62\x81\x58\x28\x16\x89\x0c\xb1\x58\x2c\x11\x4b\x45\xa6\x78" "\x5f\x2c\x13\x1f\x88\x2c\xb1\x5c\xac\x10\x2b\xc5\x2a\xb1\x5a\xac\x11" "\x6b\xc5\x3a\xb1\x5e\x6c\x10\x1b\xc5\x26\xb1\x59\x6c\x11\x5b\xc5\x36" "\xf1\xa1\xd8\x2e\x76\x88\x9d\x62\x97\xd8\x2d\xf6\x88\xbd\xe2\x23\xb1" "\x4f\x7c\x2c\xf6\x8b\x4f\x44\xb6\xf8\x54\x1c\x10\x7f\x12\x07\xc5\x67" "\xe2\x90\xf8\x5c\x1c\x16\x5f\x88\x23\xe2\x4b\x71\x54\x7c\x25\x8e\x89" "\xaf\xc5\x71\xf1\x8d\x38\x21\x4e\x8a\x53\xe2\x5b\x71\x5a\x7c\x27\xce" "\x88\xb3\xe2\x9c\xf8\x5e\x9c\x17\x3f\x88\x0b\xe2\x47\x71\x51\x78\x01" "\x12\xa5\x90\x52\x2a\x19\xc8\x18\x99\x47\xc6\xca\xbc\x32\x4e\x5e\x21" "\xe3\xe5\x95\x32\x9f\xbc\x4a\x46\xe4\xd5\x32\x41\x5e\x23\xf3\xcb\x6b" "\x65\x01\x59\x50\x16\x52\x85\x65\x11\x59\x54\x16\x93\x5a\x1a\x69\x25" "\xc9\x50\x16\x97\x25\x64\x54\x5e\x27\x4b\xca\xeb\x65\xa2\x2c\x25\x4b" "\xcb\x32\xd2\xc9\xb2\x32\x49\x96\x93\xe5\xe5\x0d\xb2\x82\xbc\x51\x56" "\x94\x37\xc9\x4a\xf2\x66\x59\x59\x56\x91\x55\x65\x35\x79\x8b\xac\x2e" "\x6f\x95\x35\xe4\x6d\xb2\xa6\xbc\x5d\xd6\x92\xb5\x65\x1d\x59\x57\xde" "\x21\xeb\xc9\x3b\x65\x7d\x79\x97\x6c\x20\xef\x96\x0d\xe5\x3d\xb2\x91" "\xbc\x57\x36\x96\xf7\xc9\x26\xb2\xa9\x6c\x26\xef\x97\xcd\xe5\x03\xb2" "\x85\x6c\x29\x5b\xc9\x07\x65\x6b\xd9\x46\xb6\x95\x0f\xc9\x76\xf2\x61" "\xd9\x5e\x76\x90\x1d\xe5\x23\xb2\x93\x7c\x54\x76\x96\x8f\xc9\x64\xf9" "\xb8\xec\x22\x9f\x90\x5d\xe5\x93\xb2\x9b\x7c\x4a\x0a\xf9\xb4\xec\x21" "\x9f\x91\x3d\xe5\xb3\xb2\x97\xfc\x51\x5e\x94\x5e\xf6\x91\x7d\x65\x8a" "\xec\x27\xfb\xcb\x17\xe4\x00\x39\x50\x0e\x92\x2f\xca\xc1\xf2\x25\x39" "\x44\xbe\x2c\x87\xca\x57\xe4\x30\x39\x5c\x8e\x90\xaf\xca\x91\xf2\x35" "\x39\x4a\xbe\x2e\x47\xcb\x31\x72\xac\x7c\x43\x8e\x93\xe3\xe5\x04\x39" "\x51\x4e\x42\xfc\xf9\x12\x2a\xdf\x92\x53\xe5\xdb\x72\x9a\x9c\x2e\x67" "\xc8\x99\x32\x4d\xce\x92\x83\x7e\xc9\x34\xf7\x1f\xcd\x97\x93\x65\xaa" "\x7c\x53\xbe\xf5\x37\xe6\x0f\xfd\xe9\xec\x5b\xe5\x36\xf9\xa1\xdc\x2e" "\x77\xc8\x9d\x72\x97\xdc\x2d\xf7\xc8\xbd\x72\xaf\xdc\x27\xf7\xc9\xfd" "\x72\xbf\xcc\x96\xd9\xf2\x80\x3c\x20\x0f\xca\x83\xf2\x90\x3c\x24\x0f" "\xcb\xc3\xf2\x88\x3c\x22\x73\x5e\x1c\x72\x1c\x97\xc7\xe5\x09\x79\x52" "\x7e\x2f\xbf\x95\xa7\xe5\x77\xf2\x8c\x3c\x2b\xcf\xca\xef\xe5\x79\x79" "\x5e\x5e\xf8\xe5\x6b\x00\x0a\x95\x50\x52\x29\x15\xa8\x18\x95\x47\xc5" "\xaa\xbc\x2a\x4e\x5d\xa1\xe2\xd5\x95\x2a\x9f\xba\x4a\x45\xd4\xd5\x2a" "\x41\x5d\xa3\xf2\xab\x6b\x55\x01\x55\x50\x15\x52\x85\x55\x11\x55\x54" "\x15\x53\x5a\x19\x65\x15\xa9\x50\x15\x57\x25\x54\x54\x5d\xa7\x4a\xaa" "\xeb\x55\xa2\x2a\x55\xee\xab\x9f\x4f\xaf\x92\x54\xb9\x3f\x32\x5f\x95" "\x56\x65\x94\x53\x65\x7f\x9a\xff\x4b\x7d\x79\xfe\x5e\x7d\x6d\x55\x5b" "\xd5\x4e\xb5\x53\xed\x55\x7b\xd5\x51\x75\x54\x9d\x54\x27\xd5\x59\x75" "\x56\xc9\x2a\x59\x75\x51\x5d\x54\x57\xd5\x55\x75\x53\xdd\x54\x77\xd5" "\x5d\xf5\x50\x3d\x54\x4f\xd5\x53\xf5\x52\xbd\x54\x6f\xd5\x5b\xf5\x51" "\x7d\x54\x8a\x4a\x51\xfd\xd5\x0b\x6a\x80\x1a\xa8\x06\xa9\x17\xd5\x60" "\xf5\x92\x1a\xa2\x86\xa8\xa1\x6a\xa8\x1a\xa6\x86\xa9\x11\x6a\x84\x1a" "\xa9\x46\xaa\x51\x6a\x94\x1a\xad\x46\xab\xb1\x6a\xac\x1a\xa7\xc6\xa9" "\x09\x6a\x82\x9a\xa4\x26\xa9\x54\x95\xaa\xa6\xa8\x29\x6a\xaa\x9a\xaa" "\xa6\xa9\x69\x6a\x86\x9a\xa1\xd2\x54\x9a\x4a\x57\xe9\x6a\xb6\x9a\xad" "\xe6\xaa\xb9\x6a\x9e\x9a\xa7\xe6\xab\xf9\x6a\xa1\x5a\xa8\x32\x54\x86" "\x5a\xa2\x96\xa8\x4c\x95\xa9\x96\xa9\x65\x2a\x4b\x2d\x57\xcb\xd5\x4a" "\xb5\x52\xad\x56\xab\xd5\x5a\xb5\x56\xad\x57\xeb\xd5\x46\xb5\x51\x6d" "\x56\x9b\x55\x96\xda\xa6\xb6\xa9\xed\x6a\xbb\xda\xa9\x76\xaa\xdd\x6a" "\xb7\xda\xab\xf6\xaa\x7d\x6a\x9f\xda\xaf\xf6\xab\x6c\x95\xad\x0e\xa8" "\x03\xea\xa0\x3a\xa8\x0e\xa9\x43\xea\xb0\x3a\xac\x8e\xa8\x23\xea\xa8" "\x3a\xaa\x8e\xa9\x63\xea\xb8\x3a\xae\x4e\xa8\x13\xea\x94\x3a\xa5\x4e" "\xab\xd3\xea\x8c\x3a\xa3\xce\xa9\x73\xea\xbc\x3a\xaf\x2e\xa8\x0b\xea" "\xa2\xba\x98\x73\xdb\x17\x88\x40\x04\x2a\x50\x41\x4c\x10\x13\xc4\x06" "\xb1\x41\x5c\x10\x17\xc4\x07\xf1\x41\xbe\x20\x5f\x10\x09\x22\x41\x42" "\x90\x10\xe4\x0f\xae\x0d\x0a\x04\x05\x83\x42\x41\xe1\xa0\x48\x50\x34" "\x28\x16\xe8\xc0\x04\x36\xa0\x20\x0c\x8a\x07\x25\x82\x68\x70\x5d\x50" "\x32\xb8\x3e\x48\x0c\x4a\x05\xa5\x83\x32\x81\x0b\xca\x06\x49\x41\xb9" "\xa0\x7c\x70\x43\x50\x21\xb8\x31\xa8\x18\xdc\x14\x54\x0a\x6e\x0e\x2a" "\x07\x55\x82\xaa\x41\xb5\xe0\x96\xa0\x7a\x70\x6b\x50\x23\xb8\x2d\xa8" "\x19\xdc\x1e\xd4\x0a\x6a\x07\x75\x82\xba\xc1\x1d\x41\xbd\xe0\xce\xa0" "\x7e\x70\x57\xd0\x20\xb8\x3b\x68\x18\xdc\x13\x34\x0a\xee\x0d\x1a\x07" "\xf7\x05\x4d\x82\xa6\x41\xb3\xe0\xfe\xa0\x79\xf0\x40\xd0\x22\x68\x19" "\xb4\x0a\x1e\x0c\x5a\x07\x6d\x82\xb6\xff\xbf\xf9\xc5\xaf\xf3\x7b\x7f" "\xa6\xe0\xc3\xae\x8f\xee\xab\x53\x74\x3f\xdd\x5f\xbf\x10\xfc\x72\x93" "\xac\x07\xeb\x97\xf4\x10\xfd\xb2\x1e\xaa\x5f\xd1\xc3\xf4\x70\x3d\x42" "\xbf\xaa\x47\xea\xd7\xf4\x28\xfd\xba\x1e\xad\xc7\xe8\xb1\xfa\x0d\x3d" "\x4e\x8f\xd7\x13\xf4\x44\x3d\x49\x4f\xd6\xa9\xfa\x4d\x3d\x45\xbf\xa5" "\xa7\xea\xb7\xf5\x34\x3d\x5d\xcf\xd0\x33\x75\x9a\x9e\xa5\xd3\xf5\x3b" "\x7a\xb6\x9e\xa3\xe7\xea\x77\xf5\x3c\xfd\x9e\x9e\xaf\x17\xe8\x85\x7a" "\x91\xce\xd0\x8b\xf5\x12\xbd\x54\x67\xea\xf7\xf5\x32\xfd\x81\xce\xd2" "\xcb\xf5\x0a\xbd\x52\xaf\xd2\xab\xf5\x1a\xbd\x56\xaf\xd3\xeb\xf5\x06" "\xbd\x51\x6f\xd2\x9b\xf5\x16\xbd\x55\x6f\xd3\x1f\xea\xed\x7a\x87\xde" "\xa9\x77\xe9\xdd\x7a\x8f\xde\xab\x3f\xd2\xfb\xf4\xc7\x7a\xbf\xfe\x44" "\x67\xeb\x4f\xf5\x01\xfd\x27\x7d\x50\x7f\xa6\x0f\xe9\xcf\xf5\x61\xfd" "\x85\x3e\xa2\xbf\xd4\x47\xf5\x57\xfa\x98\xfe\x5a\x1f\xd7\xdf\xe8\x13" "\xfa\xa4\x3e\xa5\xbf\xd5\xa7\xf5\x77\xfa\x8c\x3e\xab\xcf\xe9\xef\xf5" "\x79\xfd\x83\xbe\xa0\x7f\xd4\x17\xb5\xcf\xb9\xb9\xcf\xb9\xbc\x1b\x65" "\x94\x89\x31\x31\x26\xd6\xc4\x9a\x38\x13\x67\xe2\x4d\xbc\xc9\x67\xf2" "\x99\x88\x89\x98\x04\x93\x60\xf2\x9b\xfc\xa6\x80\x29\x60\x0a\x99\x42" "\xa6\x88\x29\x62\x8a\x99\x62\x26\x07\x19\x32\xc5\x4d\x71\x13\x35\x51" "\x53\xd2\x94\x34\x89\x26\xd1\x94\x36\xa5\x8d\x33\xce\x24\x99\x24\x53" "\xde\x94\x37\x15\x4c\x05\x53\xd1\x54\x34\x95\x4c\x25\x53\xd9\x54\x36" "\x55\x4d\x55\x73\x8b\xb9\xc5\xdc\x6a\x6e\x35\xb7\x99\xdb\xcc\xed\xe6" "\x76\x53\xdb\xd4\x36\x75\x4d\xce\x53\x4a\x3d\x53\xdf\xd4\x37\x0d\x4c" "\x03\xd3\xd0\x34\x34\x8d\x4c\x23\xd3\xd8\x34\x36\x4d\x4c\x13\xd3\xcc" "\x34\x33\xcd\x4d\x73\xd3\xc2\xb4\x30\xad\x4c\x2b\xd3\xda\xb4\x36\x6d" "\x4d\x5b\xd3\xce\xb4\x33\xed\x4d\x7b\xd3\xd1\x74\x34\x9d\x4c\x27\xd3" "\xd9\x74\x36\xc9\x26\xd9\x74\x31\x5d\x4c\x57\xd3\xd5\x74\x33\xdd\x4c" "\x77\xd3\xdd\xf4\x30\x3d\x4c\x4f\xd3\xd3\xf4\x32\xbd\x4c\x6f\xd3\xdb" "\xf4\x31\x7d\x4c\x8a\x49\x31\xfd\x4d\x7f\x33\xc0\x0c\x30\x83\xcc\x20" "\x33\xd8\x0c\x36\x43\xcc\x10\x33\xd4\x0c\x35\xc3\xcc\x30\x33\xc2\x8c" "\x30\x23\xcd\x48\x33\xca\x8c\x32\xa3\xcd\x18\x33\xd6\xbc\x61\xc6\x99" "\xf1\x66\x82\x99\x68\x26\x99\xc9\x26\xd5\xa4\x9a\x29\x66\x8a\x99\x6a" "\xa6\x9a\x69\x66\x9a\x99\x61\x66\x98\x34\x93\x66\xd2\x4d\xba\x99\x6d" "\x66\x9b\xb9\x66\xae\x99\x67\xe6\x99\xf9\x66\xbe\x59\x68\x16\x9a\x0c" "\x93\x61\x96\x98\x25\x26\xd3\x64\x9a\x65\x66\x99\xc9\x32\x59\x66\x85" "\x59\x61\x56\x99\x55\x66\x8d\x59\x63\xd6\x99\x75\x66\x43\xec\x06\xb3" "\xc9\x6c\x32\x5b\xcc\x16\xb3\xcd\x6c\x33\xdb\xcd\x76\xb3\xd3\xec\x34" "\xbb\xcd\x6e\xb3\xd7\xec\x35\xfb\xcc\x3e\xb3\xdf\xec\x37\xd9\x26\xdb" "\x1c\x30\x07\xcc\x41\x73\xd0\x1c\x32\x87\xcc\x61\x73\xd8\x1c\x31\x47" "\xcc\x51\x73\xd4\x1c\x33\xc7\xcc\x71\x73\xdc\x9c\x30\x27\xcc\x29\x73" "\xca\x9c\x36\xa7\xcd\x19\x73\xc6\x9c\x33\xe7\xcc\x79\xf3\x83\xb9\x60" "\x7e\x34\x17\x8d\x37\xb1\x36\xaf\x8d\xb3\x57\xd8\x78\x7b\xa5\xcd\x67" "\xaf\xb2\x7f\x1d\x17\xb2\x85\x6d\x11\x5b\xd4\x16\xb3\xda\x16\xb0\x05" "\xff\x22\x36\xd6\xda\x44\x5b\xca\x96\xb6\x65\xac\xb3\x65\x6d\x92\x2d" "\xf7\x9b\xb8\xb2\xad\x62\xab\xda\x6a\xf6\x16\x5b\xdd\xde\x6a\x6b\xd8" "\xca\x36\x2f\xfc\x3a\xae\x67\xef\xb4\xf5\xed\x5d\xb6\x81\xbd\xdb\xd6" "\xb5\x77\xfc\x45\xdc\xd0\xde\x63\x1b\xd9\x07\x6c\x63\xdb\xd2\x36\xb1" "\x0f\xda\x66\xb6\x8d\x6d\x6e\x1f\xb0\x2d\x6c\x4b\xdb\xca\x3e\x68\x5b" "\xdb\x36\xb6\x93\x7d\xd4\x76\xb6\x8f\xd9\x64\xfb\xb8\xed\x62\x9f\xf8" "\x4d\xbc\xc4\x2e\xb5\xeb\xec\x7a\xbb\xc1\x6e\xb4\xfb\xec\xc7\xf6\x9c" "\xfd\xde\x1e\xb5\x5f\xd9\xf3\xf6\x07\xdb\xc7\xf6\xb5\x83\xed\x4b\x76" "\x88\x7d\xd9\x0e\xb5\xaf\xd8\x61\x76\xf8\x6f\xe2\xb1\xf6\x0d\x3b\xce" "\x8e\xb7\x13\xec\x44\x3b\xc9\x4e\xfe\x4d\x3c\xc3\xce\xb4\x69\x76\x96" "\x4d\xb7\xef\xd8\xd9\x76\xce\x6f\xe2\x0c\xbb\xd8\xce\xb3\x99\x76\xbe" "\x5d\x60\x17\xda\x45\x3f\xc5\x39\x35\x65\xda\xf7\xed\x32\xfb\x81\xcd" "\xb2\xcb\xed\x0a\xbb\xd2\xae\xb2\xab\xed\x1a\xbb\xf6\x7f\x6a\x5d\x69" "\x37\xdb\x2d\x76\xab\xdd\x6b\x3f\xb2\xdb\xed\x0e\xbb\xd3\xee\xb2\xbb" "\xed\x9e\x9f\xe2\x9c\x75\xec\xb7\x9f\xd8\x6c\xfb\xa9\x3d\x62\xbf\xb4" "\x07\xed\x67\xf6\x90\x3d\x66\x0f\xdb\x2f\x7e\x8a\x73\xd6\x77\xcc\x7e" "\x6d\x8f\xdb\x6f\xec\x09\x7b\xd2\x9e\xb2\xdf\xda\xd3\xf6\x3b\x7b\xc6" "\x9e\xfd\x69\xfd\x39\x6b\xff\xd6\xfe\x68\x2f\x5a\x6f\x81\x90\x04\x49" "\x52\x14\x50\x0c\xe5\xa1\x58\xca\x4b\x71\x74\x05\xc5\xd3\x95\x94\x8f" "\xae\xa2\x08\x5d\x4d\x09\x74\x0d\xe5\xa7\x6b\xa9\x00\x15\xa4\x42\x54" "\x98\x8a\x50\x51\x2a\x46\x9a\x0c\x59\x22\x0a\xa9\x38\x95\xa0\x28\x5d" "\x47\x25\xe9\x7a\x4a\xa4\x52\x54\x9a\xca\x90\xa3\xb2\x94\x44\xe5\xa8" "\x3c\xdd\x40\x15\xe8\x46\xaa\x48\x37\x51\x25\xba\x99\x2a\x53\x15\xaa" "\x4a\xd5\xe8\x16\xaa\x4e\xb7\x52\x0d\xba\x8d\x6a\xd2\xed\x54\x8b\x6a" "\xa7\xd4\xa1\xba\x74\x07\xd5\xa3\x3b\xa9\x3e\xdd\x45\x0d\xe8\x6e\x6a" "\x48\xf7\x50\x23\xba\x97\x1a\xd3\x7d\xd4\x84\x9a\x52\x33\xba\x9f\x9a" "\xd3\x03\x7f\xfe\x4d\x06\x6a\x4d\x6d\xa8\x2d\x3d\x44\xed\xe8\x61\x6a" "\x4f\x1d\xa8\x23\x3d\x42\x9d\xe8\x51\xea\x4c\x8f\x51\x32\x3d\x4e\x5d" "\xe8\x09\xea\x4a\x4f\x52\x37\x7a\x8a\xba\xd3\xd3\xd4\x83\x9e\xa1\x9e" "\xf4\x2c\xf5\xa2\xe7\xa8\x37\x3d\x4f\x7d\xa8\x2f\xa5\x50\x3f\xea\x4f" "\x2f\xd0\x00\x1a\x48\x83\xe8\x45\x1a\x4c\x2f\xd1\x10\x7a\x99\x86\xd2" "\x2b\x34\x8c\x86\xd3\x08\x7a\x95\x46\xd2\x6b\x34\x8a\x72\x4e\x39\x86" "\xc6\xd2\x1b\x34\x8e\xc6\xd3\x04\x9a\x48\x93\x68\x32\xa5\xd2\x9b\x34" "\x85\xde\xa2\xa9\xf4\x36\x4d\xa3\xe9\x34\x83\x66\x52\x1a\xcd\xa2\x74" "\x7a\x87\x66\xd3\x1c\x9a\x4b\xef\xd2\x3c\x7a\x8f\xe6\xd3\x02\x5a\x48" "\x8b\x28\x83\x16\xd3\x12\x5a\x4a\x99\xf4\x3e\x2d\xa3\x0f\x28\x8b\x96" "\xd3\x0a\x5a\x49\xab\x68\x35\xad\xa1\xb5\xb4\x8e\xd6\xd3\x06\xda\x48" "\x9b\x68\x33\x6d\xa1\xad\xb4\x2d\xe7\xca\x44\x3b\x68\x27\xed\xa2\xdd" "\xb4\x87\xf6\xd2\x47\xb4\x8f\x3e\xa6\xfd\xf4\x09\x65\xd3\xa7\x74\x80" "\xfe\x44\x07\xe9\x33\x3a\x44\x9f\xd3\x61\xfa\x82\x8e\xd0\x97\x74\x94" "\xbe\xa2\x63\xf4\x35\x1d\xa7\x6f\xe8\x04\x9d\xa4\x53\xf4\x2d\x9d\xa6" "\xef\xe8\x0c\x9d\xa5\x73\xf4\x3d\x9d\xa7\x1f\xe8\x02\xfd\x48\x17\xc9" "\x13\x84\x18\x8a\x50\x86\x2a\x0c\xc2\x98\x30\x4f\x18\x1b\xe6\x0d\xe3" "\xc2\x2b\xc2\xf8\xf0\xca\x30\x5f\x78\x55\x18\x09\xaf\x0e\x13\xc2\x6b" "\xc2\xfc\xe1\xb5\x61\x81\xb0\x60\x58\x28\x2c\x1c\x16\x09\x8b\x86\xc5" "\x42\x1d\x9a\xd0\x86\x14\x86\x61\xf1\xb0\x44\x18\x0d\xaf\x0b\x4b\x86" "\xd7\x87\x89\x61\xa9\xb0\x74\x58\x26\x74\x61\xd9\x30\x29\x2c\x17\x96" "\x0f\x6f\x08\x2b\x84\x37\x86\x15\xc3\x9b\xc2\x4a\xe1\xcd\x61\xe5\xb0" "\x4a\x58\x35\xac\x16\xde\x12\x56\x0f\x6f\x0d\x6b\x84\xb7\x85\x35\xc3" "\xdb\xc3\x5a\x61\xed\xb0\x4e\x58\x37\xbc\x23\xac\x17\xde\x19\xd6\x0f" "\xef\x0a\x1b\x84\x77\x87\x15\xc2\x7b\xc2\x46\xe1\xbd\x61\xe3\xf0\xbe" "\xb0\x49\xd8\x34\x6c\x16\xde\x1f\x36\x0f\x1f\x08\x5b\x84\x2d\xc3\x56" "\xe1\x83\x61\xeb\xb0\x4d\xd8\x36\x7c\x28\x6c\x17\x3e\x1c\xb6\x0f\x3b" "\x84\x1d\xc3\x47\xc2\x4e\xe1\xa3\x61\xe7\xf0\xb1\x30\x39\x7c\x3c\xec" "\x12\x3e\xf1\xbb\xfb\x53\xc2\x7e\x61\xff\xf0\x85\xf0\x85\xd0\xfb\xbb" "\xe4\xc2\xe8\xa2\x68\x46\x74\x71\x74\x49\x74\x69\x34\x33\xfa\x7e\x74" "\x59\xf4\x83\x68\x56\x74\x79\x74\x45\x74\x65\x74\x55\x74\x75\x74\x4d" "\x74\x6d\x74\x5d\x74\x7d\x74\x43\x74\x63\x74\x53\x74\x73\x74\x4b\x74" "\x6b\xd4\xfb\xba\x79\xc0\xa1\x13\x4e\x3a\xe5\x02\x17\xe3\xf2\xb8\x58" "\x97\xd7\xc5\xb9\x2b\x5c\xbc\xbb\xd2\xe5\x73\x57\xb9\x88\xbb\xda\x25" "\xb8\x6b\x5c\x7e\x77\xad\x2b\xe0\x0a\xba\x42\xae\xb0\x2b\xe2\x8a\xba" "\x62\x4e\x3b\xe3\xac\x23\x17\xba\xe2\xae\x84\x8b\xba\xeb\x5c\x49\x77" "\xbd\x4b\x74\xa5\x5c\x69\x57\xc6\x39\x57\xd6\x25\xb9\x36\xae\xad\x6b" "\xeb\xda\xb9\x87\x5d\x7b\xd7\xc1\x75\x74\x8f\xb8\x47\xdc\xa3\xee\x51" "\xf7\x98\x7b\xcc\x3d\xee\xba\xb8\x27\x5c\x57\xf7\xa4\xeb\xe6\x9e\x72" "\xdd\xdd\xd3\xee\x69\xf7\x8c\xeb\xe9\x9e\x75\xbd\xdc\x73\xae\xb7\x7b" "\xde\xf5\x71\x7d\x5d\x8a\x4b\x71\xfd\x5d\x7f\x37\xc0\x0d\x70\x83\xdc" "\x20\x37\xd8\x0d\x76\x43\xdc\x10\x37\xd4\x0d\x75\xc3\xdc\x30\x37\xc2" "\x8d\x70\x23\xdd\x48\x37\xca\x8d\x72\xa3\xdd\x68\x37\xd6\x8d\x75\xe3" "\xdc\x38\x37\xc1\x4d\x70\x93\xdc\x24\x97\xea\x52\xdd\x14\x37\xc5\x4d" "\x75\x53\xdd\x34\x37\xcd\xcd\x70\x33\x5c\x9a\x4b\x73\xe9\x2e\xdd\xcd" "\x76\xb3\xdd\x5c\x37\xd7\xcd\x73\xf3\xdc\x7c\x37\xdf\x2d\x74\x0b\x5d" "\x86\xcb\x70\x4b\xdc\x12\x97\xe9\x32\xdd\x32\xb7\xcc\x65\xb9\x2c\xb7" "\xc2\xad\x70\xab\xdc\x2a\xb7\xc6\xad\x71\xeb\xdc\x3a\xb7\xc1\x6d\x70" "\x9b\xdc\x26\xb7\xc5\x6d\x71\xdb\xdc\x36\xb7\xdd\x6d\x77\x3b\xdd\x4e" "\xb7\xdb\xed\x76\x7b\xdd\x5e\xb7\xcf\xed\x73\xfb\xdd\x7e\x97\xed\xb2" "\xdd\x01\x77\xc0\x1d\x74\x07\xdd\x21\xf7\xb9\x3b\xec\xbe\x70\x47\xdc" "\x97\xee\xa8\xfb\xca\x1d\x73\x5f\xbb\xe3\xee\x1b\x77\xc2\x9d\x74\xa7" "\xdc\xb7\xee\xb4\xfb\xce\x9d\x71\x67\xdd\x39\xf7\xbd\x3b\xef\x7e\x70" "\x17\xdc\x8f\xee\xa2\xf3\x2e\x35\xf2\x66\x64\x4a\xe4\xad\xc8\xd4\xc8" "\xdb\x91\x69\x91\xe9\x91\x19\x91\x99\x91\xb4\xc8\xac\x48\x7a\xe4\x9d" "\xc8\xec\xc8\x9c\xc8\xdc\xc8\xbb\x91\x79\x91\xf7\x22\xf3\x23\x0b\x22" "\x0b\x23\x8b\x22\x19\x91\xc5\x91\x25\x91\xa5\x91\xcc\xc8\xfb\x91\x65" "\x91\x0f\x22\x59\x91\xe5\x91\x15\x91\x95\x91\x55\x91\xd5\x11\xef\x8b" "\x6e\x0f\x7d\x71\x5f\xc2\x47\xfd\x75\xbe\xa4\xbf\xde\x27\xfa\x52\xbe" "\xb4\x2f\xe3\x9d\x2f\xeb\x93\x7c\x39\x5f\xde\xdf\xe0\x2b\xf8\x1b\x7d" "\x45\x7f\x93\xaf\xe4\x6f\xf6\x95\x7d\x15\x5f\xd5\xb7\xf4\xad\xfc\x83" "\xbe\xb5\x6f\xe3\xdb\xfa\x87\x7c\x3b\xff\xb0\x6f\xef\x3b\xf8\x8e\xfe" "\x11\xdf\xc9\x3f\xea\x3b\xfb\xc7\x7c\xb2\x7f\xdc\x77\xf1\x4f\xf8\xae" "\xfe\x49\xdf\xcd\x3f\xe5\xbb\xfb\xa7\x7d\x0f\xff\x8c\xef\xe9\x9f\xf5" "\xbd\xfc\x73\xbe\xb7\x7f\xde\xf7\xf1\x7d\x7d\x8a\xef\xe7\xfb\xfb\x17" "\xfc\x00\x3f\xd0\x0f\xf2\x2f\xfa\xc1\xfe\x25\x3f\xc4\xbf\xec\x87\xfa" "\x57\xfc\x30\x3f\xdc\x8f\xf0\xaf\xfa\x91\xfe\x35\x3f\xca\xbf\xee\x47" "\xfb\x31\x7e\xac\x7f\xc3\x8f\xf3\xe3\xfd\x04\x3f\xd1\x4f\xf2\x93\x7d" "\xaa\x7f\xd3\x4f\xf1\x6f\xf9\xa9\xfe\x6d\x3f\xcd\x4f\xf7\x33\xfc\x4c" "\x9f\xe6\x67\xf9\x74\xff\x8e\x9f\xed\xe7\xf8\xb9\xfe\x5d\x3f\xcf\xbf" "\xe7\xe7\xfb\x05\x7e\xa1\x5f\xe4\x33\xfc\x62\xbf\xc4\x2f\xf5\x99\xfe" "\x7d\xbf\xcc\x7f\xe0\xb3\xfc\x72\xbf\xc2\xaf\xf4\xab\xfc\x6a\xbf\xc6" "\xaf\xf5\xeb\xfc\x7a\xbf\xc1\x6f\xf4\x9b\xfc\x66\xbf\xc5\x6f\xf5\xdb" "\xfc\x87\x7e\xbb\xdf\xe1\x77\xfa\x5d\x7e\xb7\xdf\xe3\xf7\xfa\x8f\xfc" "\x3e\xff\xb1\xdf\xef\x3f\xf1\xd9\xfe\x53\x7f\xc0\xff\xc9\x1f\xf4\x9f" "\xf9\x43\xfe\x73\x7f\xd8\x7f\xe1\x8f\xf8\x2f\xfd\x51\xff\x95\x3f\xe6" "\xbf\xf6\xc7\xfd\x37\xfe\x84\x3f\xe9\x4f\xf9\x6f\xfd\x69\xff\x9d\x3f" "\xe3\xcf\xfa\x73\xfe\x7b\x7f\xde\xff\xe0\x2f\xf8\x1f\xfd\x45\xfe\x9b" "\x35\xc6\x18\x63\x8c\xb1\x7f\x8a\xfc\x9d\xfd\xfd\xfe\xc6\xff\x89\x5f" "\xb6\x1c\xfd\x01\xe0\xca\x1d\x85\x0f\xff\x75\xce\x4d\x05\x7e\x1e\x0f" "\x14\xfb\xba\x44\x00\xe0\xf1\xbe\x3d\x9a\xfe\x79\x6b\xda\x34\x25\x25" "\x05\xf2\xfe\xb4\x3f\x4b\x42\x50\x62\x01\x00\x44\x2e\xcd\x8f\x81\x4b" "\xf1\x72\xe8\x08\x8f\x42\x32\x74\x80\xf2\x7f\xb3\xbe\x81\xa2\x2a\xd2" "\xdf\xcc\x0f\xff\x93\x3f\x7a\x13\x40\xdc\xaf\xe6\xc4\xc2\xa5\xf8\x52" "\xfe\x1b\xfe\x4e\xfe\x96\x8b\x73\xf2\x9f\xfb\xd5\x39\x7e\x93\x7f\x01" "\x40\x62\x09\xc0\x5f\x3e\x4b\xe1\xa7\x95\x25\x96\xf8\xeb\xfc\x15\xfe" "\x4e\xfe\x3d\x9d\x7e\xa7\xfe\xbc\x9f\xa5\x02\xb4\xff\xd5\x9c\x78\xb8" "\x14\x5f\xca\x9f\x04\x0f\xc3\x13\x90\xfc\x17\x47\x32\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x3f\x1b\x28\xce\xf7\xfc\xbd\xe7\xe7\x9c\xe7\xf3\x22" "\xea\xd2\x9c\x3c\x70\x29\xfe\xbd\xe7\x73\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x5d\x7e\x4f\x3d\xdb\xeb\xb1\x87\x92\x93\x3b\x74\xe3\x41\x6e" "\x18\x20\x00\xfc\x17\x94\xf1\x2f\x0f\xf2\xc0\x3f\x71\x70\xbf\xff\x8a" "\x52\xff\xb9\x41\x2c\xfc\x83\x63\x10\xfe\x43\x65\xfc\xf0\x0f\x8e\xb9" "\xdc\xaf\x4c\x8c\x31\xc6\x18\x63\x8c\xb1\x7f\xb7\x4b\x37\xfd\x97\xbb" "\x12\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x2c\xf7\xfa\x4f\x7c\xe0\xd9\xe5\x5e\x23\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\x76\xb9\xfd\xbf\x00" "\x00\x00\xff\xff\x41\x6a\x5c\x75", 5397); syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000200, /*flags=*/0, /*opts=*/0x20000380, /*chdir=*/0, /*size=*/0x1515, /*img=*/0x20002600); break; case 1: memcpy((void*)0x20000040, "./file0\000", 8); syscall(__NR_chdir, /*dir=*/0x20000040ul); break; case 2: memcpy((void*)0x20000080, "./file2\000", 8); syscall(__NR_creat, /*file=*/0x20000080ul, /*mode=*/0ul); break; case 3: memcpy((void*)0x20000080, "./file2\000", 8); syscall(__NR_creat, /*file=*/0x20000080ul, /*mode=*/0ul); 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); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }