// https://syzkaller.appspot.com/bug?id=055babd217bdc413aa4240373fd8c67bc118c4b6 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static long syz_open_procfs(volatile long a0, volatile long a1) { char buf[128]; memset(buf, 0, sizeof(buf)); if (a0 == 0) { snprintf(buf, sizeof(buf), "/proc/self/%s", (char*)a1); } else if (a0 == -1) { snprintf(buf, sizeof(buf), "/proc/thread-self/%s", (char*)a1); } else { snprintf(buf, sizeof(buf), "/proc/self/task/%d/%s", (int)a0, (char*)a1); } int fd = open(buf, O_RDWR); if (fd == -1) fd = open(buf, O_RDONLY); return fd; } //% 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 void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } 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, 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) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); 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) reset_loop_device(loopname); errno = err; return res; } uint64_t r[9] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0x0, 0x0}; 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); intptr_t res = 0; memcpy((void*)0x20000000, "net/raw\000", 8); res = -1; res = syz_open_procfs(/*pid=*/0, /*file=*/0x20000000); if (res != -1) r[0] = res; syscall(__NR_lseek, /*fd=*/r[0], /*offset=*/0x2027daul, /*whence=*/0ul); res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x20005fc0ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint32_t*)0x20005fd0; r[2] = *(uint32_t*)0x20005fd4; r[3] = *(uint32_t*)0x20005fd8; } memcpy((void*)0x20001500, "exfat\000", 6); memcpy((void*)0x20001540, "./file0\000", 8); *(uint16_t*)0x20000040 = r[2]; sprintf((char*)0x20000042, "0x%016llx", (long long)r[1]); memcpy((void*)0x20000054, "\xd0\xc7\xcc\x14\x48\x95\xf6\x9c\x99\xcf\xda\xb5\x0c\xac\xba\x75\x11" "\x6e\x2e\x8e\xfd\xc7\x01\x60\xf4\x5e\x1c\xa6\x75\x5a\xb3\xbd\x86\x3c" "\x92\x0d\x09\x9f\x7c\xa4\x1b\x0f\xdd\x16\xbb\x76\xd9\x8d\xe3\x3d\x6a" "\xe2\x41\x68\x9b\xe2\x43\x1c\xb2\x28\x79\x27\x03\xf9\x57\x68\x97\x7b" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 82); *(uint16_t*)0x200000a6 = r[0]; *(uint64_t*)0x200000a8 = r[3]; *(uint32_t*)0x200000b0 = 0; memcpy( (void*)0x20002a80, "\x78\x9c\xec\xdc\x0b\x98\xcd\x55\xdb\x30\xf0\x75\xaf\xb5\xfe\x8c\x69\xd2" "\x6e\x92\xc3\xb0\xee\x75\xff\xd9\x69\xb0\x4c\x92\xe4\x90\x24\x87\x24\x49" "\x92\x24\xa7\x84\xa4\x49\x92\x84\xc4\x90\x53\xd2\x90\x84\x1c\x27\xc9\x61" "\x08\xc9\x61\x62\x62\x9c\xcf\xe7\xf3\xa1\xc9\x23\x49\x92\x9c\x42\xc2\xfa" "\x2e\x3d\x3d\xaf\x9e\xb7\xe7\xbb\x7a\xbf\xef\xe9\xfb\xbc\xef\x35\xf7\xef" "\xba\xd6\x35\xeb\x9e\xff\xbe\xef\xbd\xd6\xbe\xf7\xcc\xfe\xff\xf7\x5c\xb3" "\xbf\xef\x32\xb4\x66\xe3\x5a\xd5\x1a\x12\x91\xf8\xb7\xc0\xdf\xbf\xa4\x08" "\x21\x62\x84\x10\x03\x85\x10\x37\x09\x21\x02\x21\x44\xb9\xf8\x72\xf1\x57" "\x8f\xe7\x51\x90\xf2\xef\xdd\x09\xfb\x6b\x3d\x91\x7e\xbd\x57\xc0\xae\x27" "\xee\x7f\xce\xc6\xfd\xcf\xd9\xb8\xff\x39\x1b\xf7\x3f\x67\xe3\xfe\xe7\x6c" "\xdc\xff\x9c\x8d\xfb\x9f\xb3\x71\xff\x19\xcb\xc9\xb6\x4c\x2f\x74\x33\x8f" "\x9c\x3b\xf8\xfd\xff\x9c\x8c\x5f\xff\x73\x36\xee\x7f\xce\xc6\xfd\xcf\xd9" "\xb8\xff\x39\x1b\xf7\x3f\x67\xe3\xfe\xe7\x6c\xdc\xff\x9c\x8d\xfb\x9f\xb3" "\x71\xff\x19\xcb\xc9\xae\xf7\xfb\xcf\xff\x73\x46\xee\xdf\x1e\xb1\xeb\xbd" "\x8e\xbf\x76\x5c\xe7\xa7\x1f\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\x18\x63\x8c\xb1\x1c\xe2\x82\xbf\x46\x0b\x21\xfe\x31" "\xbf\xde\xeb\x62\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xd8\x5f\xc7\xe7\xbe\xde" "\x2b\x60\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xd8\xff\x7b\x20\xa4\x50\x42\x8b" "\x40\xe4\x12\xb9\x45\x8c\xc8\x23\x62\xc5\x0d\x22\x4e\xdc\x28\xf2\x8a\x9b" "\x44\x44\xdc\x2c\xe2\xc5\x2d\x22\x9f\xb8\x55\xe4\x17\x05\x44\x41\x51\x48" "\x24\x88\xc2\xa2\x88\x30\x02\x85\x15\x24\x42\x51\x54\x14\x13\x51\x71\x9b" "\x28\x2e\x6e\x17\x89\xa2\x84\x28\x29\x4a\x09\x27\x4a\x8b\x24\x71\x87\x28" "\x23\xee\x14\x65\xc5\x5d\xa2\x9c\xb8\x5b\x94\x17\xf7\x88\x0a\xa2\xa2\xa8" "\x24\x2a\x8b\x7b\x45\x15\x71\x9f\xa8\x2a\xee\x17\xd5\xc4\x03\xa2\xba\xa8" "\x21\x6a\x8a\x5a\xe2\x41\x51\x5b\x3c\x24\xea\x88\x87\x45\x5d\xf1\x88\xa8" "\x27\x1e\x15\xf5\xc5\x63\xa2\x81\x78\x5c\x34\x14\x4f\x88\x46\xe2\x49\xd1" "\x58\x3c\x25\x9a\x88\xa7\x45\x53\xd1\x4c\x34\x17\x2d\x44\xcb\xff\xab\xfc" "\xd7\x45\x0f\xf1\x86\xe8\x29\x7a\x89\x14\xd1\x5b\xf4\x11\x6f\x8a\xbe\xa2" "\x9f\xe8\x2f\x06\x88\x81\xe2\x2d\x31\x48\xbc\x2d\x06\x8b\x77\x44\xaa\x18" "\x22\x86\x8a\x77\xc5\x30\xf1\x9e\x18\x2e\xde\x17\x23\xc4\x48\x31\x4a\x7c" "\x20\x46\x8b\x31\x62\xac\x18\x27\xc6\x8b\x09\x22\x4d\x7c\x28\x26\x8a\x8f" "\xc4\x24\xf1\xb1\x98\x2c\xa6\x88\xa9\x62\x9a\x48\x17\xd3\xc5\x0c\xf1\x89" "\x98\x29\x66\x89\xd9\xe2\x53\x31\x47\x7c\x26\xe6\x8a\x79\x62\xbe\x58\x20" "\x32\xc4\xe7\x62\xa1\x58\x24\x32\xc5\x17\x62\xb1\x58\x22\xb2\xc4\x52\xb1" "\x4c\x2c\x17\x2b\xc4\x4a\xb1\x4a\xac\x16\x6b\xc4\x5a\xb1\x4e\xac\x17\x1b" "\xc4\x46\xb1\x49\x6c\x16\x5b\xc4\x56\xb1\x4d\x6c\x17\x3b\xc4\x4e\xb1\x4b" "\xec\x16\x7b\xc4\x5e\xb1\x4f\xec\x17\x07\xc4\x97\x22\x5b\x7c\xf5\x7f\x98" "\x7f\xfe\x3f\xe5\x77\x05\x01\x02\x24\x48\xd0\xa0\x21\x17\xe4\x82\x18\x88" "\x81\x58\x88\x85\x38\x88\x83\xbc\x90\x17\x22\x10\x81\x78\x88\xff\x8f\x27" "\x4b\x41\x28\x08\x09\x90\x00\x45\xa0\x08\x20\x20\x10\x10\x14\x85\xa2\x10" "\x85\x28\x14\x87\xe2\x90\x08\x89\x50\x12\x4a\x82\x03\x07\x49\x90\x04\x65" "\xe0\x4e\x28\x0b\x65\xa1\x1c\x94\x83\xf2\x50\x1e\x2a\x40\x45\xa8\x08\x95" "\xa1\x32\x54\x81\x2a\x50\x15\xaa\x42\x35\xa8\x06\xd5\xa1\x3a\xd4\x84\x9a" "\xf0\x20\x3c\x08\x0f\x41\x1d\xa8\x03\x75\xa1\x2e\xd4\x83\x7a\x50\x1f\xea" "\x43\x03\x68\x00\x0d\xa1\x21\x34\x82\x46\xd0\x18\x1a\x43\x13\x68\x02\x4d" "\xa1\x29\x34\x87\xe6\xd0\x12\x5a\x42\x2b\x68\x05\xad\xa1\x35\xb4\x85\xb6" "\xd0\x0e\xda\x41\x7b\x68\x0f\xc9\x90\x0c\x1d\xa0\x03\x74\x84\x8e\xd0\x09" "\x3a\x41\x67\xe8\x0c\x5d\xa0\x0b\x74\x85\x6e\xd0\x0d\x5e\x87\xd7\xe1\x0d" "\x78\x03\x7a\x41\x75\xd9\x1b\xfa\x40\x1f\xe8\x0b\x7d\xa1\x3f\x0c\x80\x01" "\xf0\x16\x0c\x82\xb7\xe1\x6d\x78\x07\x52\x61\x08\x0c\x85\x77\xe1\x5d\x78" "\x0f\x86\xc3\x39\x18\x01\x23\x61\x14\x8c\x82\x2a\x72\x0c\x8c\x85\x71\x40" "\x72\x02\xa4\x41\x1a\x4c\x84\x89\x30\x09\x26\xc1\x64\x98\x02\x53\x60\x1a" "\xa4\xc3\x74\x98\x01\x33\x60\x26\xcc\x82\x59\xf0\x29\xcc\x81\xcf\xe0\x33" "\x98\x07\xf3\x60\x01\x64\x40\x06\x2c\x84\x45\x90\x09\x99\xb0\x18\xce\x43" "\x16\x2c\x85\x65\xb0\x1c\x56\xc0\x4a\x58\x01\xab\x61\x0d\xac\x86\x75\xb0" "\x1e\xd6\xc1\x46\xd8\x08\x9b\x61\x33\x6c\x85\xad\xb0\x1d\xb6\xc3\x4e\xd8" "\x09\xbb\x61\x37\xec\x85\xbd\xb0\x1f\xf6\x43\x2a\x64\x43\x36\x1c\x84\x83" "\x70\x08\x0e\xc1\x61\x38\x0c\x47\xe0\x08\x1c\x85\xa3\x70\x0c\x8e\xc1\x71" "\x38\x0e\x27\xe0\x04\x9c\x84\x53\x70\x1a\x4e\xc1\x59\x38\x0b\xe7\xe0\x3c" "\x5c\x80\x0b\x70\x11\x2e\xc2\x25\x78\x35\xe1\xdb\x46\xbb\x4b\xac\x4d\x15" "\xf2\x2a\x2d\xb5\xcc\x25\x73\xc9\x18\x19\x23\x63\x65\xac\x8c\x93\x71\x32" "\xaf\xcc\x2b\x23\x32\x22\xe3\x65\xbc\xcc\x27\xf3\xc9\xfc\x32\xbf\x2c\x28" "\x0b\xca\x04\x99\x20\x8b\xc8\x22\x12\x25\x4a\x92\xa1\x2c\x2a\x8b\xca\xa8" "\x8c\xca\xe2\xb2\xb8\x4c\x94\x89\xb2\xa4\x2c\x29\x9d\x74\x32\x49\x26\xc9" "\x32\xb2\x8c\x2c\x2b\xcb\xca\x72\xf2\x6e\x59\x5e\xde\x23\x2b\xc8\x8a\xb2" "\x8d\xab\x2c\x2b\xcb\x2a\xb2\xad\xab\x2a\xef\x97\xd5\x64\x35\x59\x5d\xd6" "\x90\x35\x65\x2d\x59\x4b\xd6\x96\xb5\x65\x1d\x59\x47\xd6\x95\x75\x65\x3d" "\x59\x4f\xd6\x97\x8f\xc9\x06\xb2\x37\xf4\x87\x27\xe4\xd5\xce\x34\x96\x43" "\xa0\x89\x1c\x0a\x4d\x65\x33\xd9\x5c\xb6\x90\xef\xc1\x33\xb2\x95\x1c\x0e" "\xad\x65\x1b\xd9\x56\x3e\x27\x47\xc2\x08\x68\x2f\x5b\xb9\x64\xf9\xa2\xec" "\x20\xc7\x42\x47\xf9\xb2\x1c\x07\xaf\xc8\xce\x72\x02\x74\x91\xaf\xc9\xae" "\xb2\x9b\xec\x2e\x5f\x97\x3d\x64\x6b\xd7\x53\xf6\x92\x93\xa1\xb7\xec\x23" "\xa7\x41\x5f\xd9\x4f\xf6\x97\x03\xe4\x4c\xa8\x21\xaf\x76\xac\xa6\x7c\x47" "\xa6\xca\x21\x72\xa8\x7c\x57\x2e\x80\xf7\xe4\x70\xf9\xbe\x1c\x21\x47\xca" "\x51\xf2\x03\x39\x5a\x8e\x91\x63\xe5\x38\x39\x5e\x4e\x90\x69\xf2\x43\x39" "\x51\x7e\x24\x27\xc9\x8f\xe5\x64\x39\x45\x4e\x95\xd3\x64\xba\x9c\x2e\x67" "\xc8\x4f\xe4\x4c\x39\x4b\xce\x96\x9f\xca\x39\xf2\x33\x39\x57\xce\x93\xf3" "\xe5\x02\x99\x21\x3f\x97\x0b\xe5\x22\x99\x29\xbf\x90\x8b\xe5\x12\x99\x25" "\x97\xca\x65\x72\xb9\x5c\x21\x57\xca\x55\x72\xb5\x5c\x23\xd7\xca\x75\x72" "\xbd\xdc\x20\x37\xca\x4d\x72\xb3\xdc\x22\xb7\xca\x6d\x72\xbb\xdc\x21\x77" "\xca\x5d\x72\xb7\xdc\x23\xf7\xca\x7d\x72\xbf\x3c\x20\xbf\x94\xd9\xf2\x2b" "\x79\x50\xfe\x4d\x1e\x92\x5f\xcb\xc3\xf2\x1b\x79\x44\x7e\x2b\x8f\xca\xef" "\xe4\x31\xf9\xbd\x3c\x2e\x7f\x90\x27\xe4\x8f\xf2\xa4\x3c\x25\x4f\xcb\x33" "\xf2\xac\xfc\x49\x9e\x03\xf8\xfb\x4f\xb1\xfc\x45\x5e\x92\x97\xe5\x15\xe9" "\xa5\x50\xa0\xa4\x52\x4a\xab\x40\xe5\x52\xb9\x55\x8c\xca\xa3\x62\xd5\x0d" "\x2a\x4e\xdd\xa8\xf2\xaa\x9b\x54\x44\xdd\xac\xe2\xd5\x2d\x2a\x9f\xba\x55" "\xe5\x57\x05\x54\x41\x55\x48\x25\xa8\xc2\xaa\x88\x32\x0a\x95\x55\xa4\x42" "\x55\x54\x15\x53\x51\x75\x9b\x2a\xae\x6e\x57\x89\xaa\x84\x2a\xa9\x4a\x29" "\xa7\x4a\xab\x24\x75\x87\x2a\xa3\xee\x54\x65\xd5\x5d\xaa\x9c\xba\x5b\x95" "\x57\xf7\xa8\x0a\xaa\xa2\xaa\xa4\x2a\xab\x7b\x55\x15\x75\x9f\xaa\xaa\xee" "\x57\xd5\xd4\x03\xaa\xba\xaa\xa1\x6a\xaa\x5a\xea\x41\x55\x5b\x3d\xa4\xea" "\xa8\x87\x55\x5d\xf5\x88\xaa\xa7\x1e\x55\xf5\xd5\x63\xaa\x81\x7a\x5c\x35" "\x54\x4f\xa8\x46\xea\x49\xd5\x58\x3d\xa5\x9a\xa8\xa7\x55\x53\xd5\x4c\x35" "\x57\x2d\x54\x4b\xf5\x8c\x6a\xa5\x9e\x55\xad\x55\x1b\xd5\x56\x3d\xa7\xda" "\xa9\xe7\x55\x7b\xf5\x82\x4a\x56\x2f\xaa\x0e\xea\x25\xd5\x51\xbd\xac\x3a" "\xa9\x57\x54\x67\xf5\xaa\xea\xa2\x5e\x53\x5d\x55\x37\xd5\x5d\x5d\x56\x57" "\x94\x57\x3d\x55\x2f\x95\xa2\x7a\xab\x3e\xea\x4d\xd5\x57\xf5\x53\xfd\xd5" "\x00\x35\x50\xbd\xa5\x06\xa9\xb7\xd5\x60\xf5\x8e\x4a\x55\x43\xd4\x50\xf5" "\xae\x1a\xa6\xde\x53\xc3\xd5\xfb\x6a\x84\x1a\xa9\x46\xa9\x0f\xd4\x68\x35" "\x46\x8d\x55\xe3\xd4\x78\x35\x41\xa5\xa9\x0f\xd5\x44\xf5\x91\x9a\xa4\x3e" "\x56\x93\xd5\x14\x35\x55\x4d\x53\xe9\x6a\xba\xea\xff\x5b\xa5\xd9\xff\x85" "\xfc\x8f\xfe\x45\xfe\xe0\x5f\xef\x7d\xb3\xda\xa2\xb6\xaa\x6d\x6a\xbb\xda" "\xa1\x76\xaa\x5d\x6a\xb7\xda\xa3\xf6\xa8\x7d\x6a\x9f\x3a\xa0\x0e\xa8\x6c" "\x95\xad\x0e\xaa\x83\xea\x90\x3a\xa4\x0e\xab\xc3\xea\x88\x3a\xa2\x8e\xaa" "\xa3\xea\x98\x3a\xa6\x8e\xab\xe3\xea\x84\x3a\xa1\x4e\xaa\x53\xea\x67\x75" "\x46\x9d\x55\x3f\xa9\x73\xea\xbc\x3a\xaf\x7e\x56\x17\xd5\x45\x75\xe9\xb7" "\xc7\x40\x68\xd0\x52\x2b\xad\x75\xa0\x73\xe9\xdc\x3a\x46\xe7\xd1\xb1\xfa" "\x06\x1d\xa7\x6f\xd4\x79\xf5\x4d\x3a\xa2\x6f\xd6\xf1\xfa\x16\x9d\x4f\xdf" "\xaa\xf3\xeb\x02\xba\xa0\x2e\xa4\x13\x74\x61\x5d\x44\x1b\x8d\xda\x6a\xd2" "\xa1\x2e\xaa\x8b\xe9\xa8\xbe\x4d\x17\xd7\xb7\xeb\x44\x5d\x42\x97\xd4\xa5" "\xb4\xd3\xa5\x75\x92\xbe\xe3\xdf\xce\xff\xb3\xf5\xb5\xd4\x2d\x75\x2b\xdd" "\x4a\xb7\xd6\xad\x75\x5b\xdd\x56\xb7\xd3\xed\x74\x7b\xdd\x5e\x27\xeb\x64" "\xdd\x41\x77\xd0\x1d\x75\x47\xdd\x49\x77\xd2\x9d\x75\x67\xdd\x45\x77\xd1" "\x5d\x75\x57\xdd\x5d\x77\xd7\x3d\x74\x0f\xdd\x53\xf7\xd4\x29\x3a\x45\xf7" "\xd1\x6f\xea\xbe\xba\x9f\xee\xaf\x07\xe8\x81\xfa\x2d\x3d\x48\x0f\xd2\x83" "\xf5\x60\x9d\xaa\x53\xf5\x50\x3d\x54\x0f\xd3\xc3\xf4\x70\x3d\x5c\x8f\xd0" "\x23\xf4\x28\x3d\x4a\x8f\xd6\xa3\xf5\x58\x3d\x56\x8f\xd7\xe3\x75\x9a\x4e" "\xd3\x13\xf5\x44\x3d\x49\x4f\xd2\x93\xf5\x64\x3d\x55\x4f\xd5\xe9\x3a\x5d" "\xcf\xd0\x33\xf4\x4c\x3d\x53\xcf\xd6\xb3\xf5\x1c\x3d\x47\xcf\xd5\x73\xf5" "\x7c\x3d\x5f\x67\xe8\x0c\xbd\x50\x2f\xd4\x99\x3a\x53\x2f\xd6\x8b\x75\x96" "\x5e\xaa\x97\xea\xe5\x7a\xb9\x5e\xa9\x57\xea\xd5\x7a\xb5\x5e\xab\xd7\xea" "\xf5\x7a\xbd\xde\xa8\x37\xea\x2c\xbd\x45\x6f\xd1\xdb\xf4\x36\xbd\x43\xef" "\xd0\xbb\xf4\x2e\xbd\x47\xef\xd1\xfb\xf4\x3e\x7d\x40\x1f\xd0\xd9\x3a\x5b" "\x1f\xd4\x07\xf5\x21\x7d\x48\x1f\xd6\x87\xf5\x11\x7d\x44\x1f\xd5\x47\xf5" "\x31\x7d\x4c\x1f\xd7\xc7\xf5\x09\x7d\x42\x9f\xd4\x27\xf5\x69\x7d\x5a\x9f" "\xd5\x67\xf5\x39\x7d\x4e\x5f\xd0\x17\xf4\x45\x7d\x51\x5f\xd2\x97\xf4\x15" "\x7d\xe5\xea\x69\x5f\x20\x03\x19\xe8\x40\x07\xb9\x82\x5c\x41\x4c\x10\x13" "\xc4\x06\xb1\x41\x5c\x10\x17\xe4\x0d\xf2\x06\x91\x20\x12\xc4\x07\xf1\x41" "\xbe\xe0\xd6\x20\x7f\x50\x20\x28\x18\x14\x0a\x12\x82\xc2\x41\x91\xc0\x04" "\x18\xd8\x80\x82\x30\x28\x1a\x14\x0b\xa2\xc1\x6d\x41\xf1\xe0\xf6\x20\x31" "\x28\x11\x94\x0c\x4a\x05\x2e\x28\x1d\x24\x05\x77\x04\x65\x82\x3b\x83\xb2" "\xc1\x5d\x41\xb9\xe0\xee\xa0\x7c\x70\x4f\x50\x21\xa8\x18\x54\x0a\x2a\x07" "\xf7\x06\x55\x82\xfb\x82\xaa\xc1\xfd\x41\xb5\xe0\x81\xa0\x7a\x50\x23\xa8" "\x19\xd4\x0a\x1e\x0c\x6a\x07\x0f\x05\x75\x82\x87\x83\xba\xc1\x23\x41\xbd" "\xe0\xd1\xa0\x7e\xf0\x58\xd0\x20\x78\x3c\x68\x18\x3c\x11\x34\x0a\x9e\x0c" "\x1a\x07\x4f\x05\x4d\x82\xa7\x83\xa6\x41\xb3\xa0\x79\xd0\x22\x68\xf9\x97" "\xd6\xf7\xfe\x5c\x81\x67\x5d\x4f\xd3\xcb\xa4\x98\xde\xa6\x8f\x79\xd3\xf4" "\x35\xfd\x4c\x7f\x33\xc0\x0c\x34\x6f\x99\x41\xe6\x6d\x33\xd8\xbc\x63\x52" "\xcd\x10\x33\xd4\xbc\x6b\x86\x99\xf7\xcc\x70\xf3\xbe\x19\x61\x46\x9a\x51" "\xe6\x03\x33\xda\x8c\x31\x63\xcd\x38\x33\xde\x4c\x30\x69\xe6\x43\x33\xd1" "\x7c\x64\x26\x99\x8f\xcd\x64\x33\xc5\x4c\x35\xd3\x4c\xba\x99\x6e\x66\x98" "\x4f\xcc\x4c\x33\xcb\xcc\x36\x9f\x9a\x39\xe6\x33\x33\xd7\xcc\x33\xf3\xcd" "\x02\x93\x61\x3e\x37\x0b\xcd\x22\x93\x69\xbe\x30\x8b\xcd\x12\x93\x65\x96" "\x9a\x65\x66\xb9\x59\x61\x56\x9a\x55\x66\xb5\x59\x63\xd6\x9a\x75\x66\xbd" "\xd9\x60\x36\x9a\x4d\x66\xb3\xd9\x62\xb6\x9a\x6d\x66\xbb\xd9\x61\x76\x9a" "\x5d\x66\xb7\xd9\x63\xf6\x9a\x7d\x66\xbf\x39\x60\xbe\x34\xd9\xe6\x2b\x73" "\xd0\xfc\xcd\x48\xf1\xb5\x39\x6c\xbe\x31\x47\xcc\xb7\xe6\xa8\xf9\xce\x1c" "\x33\xdf\x9b\xe3\xe6\x07\x73\xc2\xfc\x68\x4e\x9a\x53\xe6\xb4\x39\x63\xce" "\x9a\x9f\xcc\x39\x73\xde\x5c\x30\x3f\x9b\x8b\xe6\x17\x73\xc9\x5c\x36\x57" "\x8c\xbf\x7a\x72\x7f\xf5\xe5\x1d\x35\x6a\xcc\x85\xb9\x30\x06\x63\x30\x16" "\x63\x31\x0e\xe3\x30\x2f\xe6\xc5\x08\x46\x30\x1e\xe3\x31\x1f\xe6\xc3\xfc" "\x98\x1f\x0b\x62\x41\x4c\xc0\x04\x2c\x82\x45\xf0\x2a\x42\xc2\xa2\x58\x14" "\xa3\x18\xc5\xe2\x58\x1c\x13\x31\x11\x4b\x62\x49\x74\xe8\x30\x09\x93\xb0" "\x0c\x96\xc1\xb2\x58\x16\xcb\x61\x39\x2c\x8f\xe5\xb1\x02\x56\xc0\x4a\x58" "\x09\xef\xc5\x7b\xf1\x3e\xbc\x0f\xef\xc7\xfb\xf1\x01\x7c\x00\x6b\x60\x0d" "\xac\x85\xb5\xb0\x36\xd6\xc6\x3a\x58\x07\xeb\x62\x5d\xac\x87\xf5\xb0\x3e" "\xd6\xc7\x06\xd8\x00\x1b\x62\x43\x6c\x84\x8d\xb0\x31\x36\xc6\x26\xd8\x04" "\x9b\x62\x53\x6c\x8e\xcd\xb1\x25\xb6\xc4\x56\xd8\x0a\x5b\x63\x6b\x6c\x8b" "\x6d\xb1\x1d\xb6\xc3\xf6\xd8\x1e\x93\x31\x19\x3b\x60\x07\xec\x88\x1d\xb1" "\x13\x76\xc2\xce\xd8\x19\xbb\x60\x17\xec\x8a\x5d\xb1\x3b\x76\xc7\x1e\xd8" "\x03\x7b\x62\x4f\x4c\xc1\x14\xec\x83\x7d\xb0\x2f\xf6\xc5\xfe\xd8\x1f\x07" "\xe2\x40\x1c\x84\x83\x70\x30\x0e\xc6\x54\x4c\xc5\xa1\x38\x14\x87\xe1\x30" "\x1c\x8e\xc3\x71\x04\x8e\xc4\x51\xf8\x01\x8e\xc6\x31\x38\x16\xc7\xe1\x78" "\x9c\x80\x69\x98\x86\x13\x71\x22\x4e\xc2\x49\x38\x19\x27\xe3\x54\x9c\x8a" "\xe9\x98\x8e\x33\x70\x06\xce\xc4\x99\x38\x1b\x67\xe3\x1c\x9c\x83\x73\x71" "\x2e\xce\xc7\xf9\x98\x81\x19\xb8\x10\x17\x62\x26\x66\xe2\x62\x5c\x8c\x59" "\x98\x85\xcb\x70\x19\xae\xc0\x15\xb8\x0a\x57\xe1\x1a\x5c\x83\xeb\x70\x1d" "\x6e\xc0\x0d\xb8\x09\x37\xe1\x16\xdc\x82\xdb\x70\x1b\xee\xc0\x1d\xb8\x0b" "\x77\xe1\x1e\xdc\x83\xfb\x70\x1f\x1e\xc0\x03\x98\x8d\xd9\x78\x10\x0f\xe2" "\x21\x3c\x84\x87\xf1\x30\x1e\xc1\x23\x78\x14\x8f\xe2\x31\x3c\x86\xc7\xf1" "\x38\x9e\xc0\x13\x78\x12\x4f\xe2\x69\x3c\x8d\x67\xf1\x2c\x9e\xc3\x73\x78" "\x01\x2f\xe0\x45\xfc\x05\x2f\xe1\x65\xbc\x82\x1e\x63\x6c\x1e\x1b\x6b\x6f" "\xb0\x71\xf6\x46\x9b\xd7\xde\x64\xff\x73\x5c\xd0\x16\xb2\x09\xb6\xb0\x2d" "\x62\x8d\xcd\x6f\x0b\xfc\x53\x8c\xd6\xda\x44\x5b\xc2\x96\xb4\xa5\xac\xb3" "\xa5\x6d\x92\xbd\xe3\x0f\x71\x05\x5b\xd1\x56\xb2\x95\xed\xbd\xb6\x8a\xbd" "\xcf\x56\xfd\x43\x5c\xdb\x3e\x64\xeb\xd8\x87\x6d\x5d\xfb\x88\xad\x65\x1f" "\xfc\xa7\xb8\x9e\x7d\xd4\xd6\xb7\x4f\xd9\x06\xf6\x69\xdb\xd0\x36\xb3\x8d" "\x6c\x0b\xdb\xd8\x3e\x65\x9b\xd8\xa7\x6d\x53\xdb\xcc\x36\xb7\x2d\x6c\x3b" "\xfb\xbc\x6d\x6f\x5f\xb0\xc9\xf6\x45\xdb\xc1\xbe\xf4\x87\x78\xa1\x5d\x64" "\xd7\xd8\xb5\x76\x9d\x5d\x6f\xf7\xd9\xfd\xf6\x82\xfd\xd9\x1e\xb3\xdf\xdb" "\x8b\xf6\x17\xdb\xd3\xf6\xb2\x03\xed\x5b\x76\x90\x7d\xdb\x0e\xb6\xef\xd8" "\x54\x3b\xe4\x0f\xf1\x28\xfb\x81\x1d\x6d\xc7\xd8\xb1\x76\x9c\x1d\x6f\x27" "\xfc\x21\x9e\x6a\xa7\xd9\x74\x3b\xdd\xce\xb0\x9f\xd8\x99\x76\xd6\x1f\xe2" "\x0c\xfb\xb9\x9d\x63\x33\xed\x5c\x3b\xcf\xce\xb7\x0b\x7e\x8d\xaf\xae\x29" "\xd3\x7e\x61\x17\xdb\x25\x36\xcb\x2e\xb5\xcb\xec\x72\xbb\xc2\xae\xb4\xab" "\xec\xea\xff\x58\xeb\x72\xbb\xd1\x6e\xb2\x9b\xed\x1e\xbb\xd7\x6e\xb3\xdb" "\xed\x0e\xbb\xd3\xee\xb2\xbb\x7f\x8d\xaf\xee\xe3\x80\xfd\xd2\x66\xdb\xaf" "\xec\x51\xfb\x9d\x3d\x64\xbf\xb6\x87\xed\x71\x7b\xc4\x7e\xfb\x6b\x7c\x75" "\x7f\xc7\xed\x0f\xf6\x84\xfd\xd1\x9e\xb4\xa7\xec\x69\x7b\xc6\x9e\xb5\x3f" "\xd9\x73\xf6\xfc\xaf\xfb\xbf\xba\xf7\x33\xf6\xb2\xbd\x62\xbd\x15\x04\x24" "\x49\x91\xa6\x80\x72\x51\x6e\x8a\xa1\x3c\x14\x4b\x37\x50\x1c\xdd\x48\x79" "\xe9\x26\x8a\xd0\xcd\x14\x4f\xb7\x50\x3e\xba\x95\xf2\x53\x01\x2a\x48\x85" "\x28\x81\x0a\x53\x11\x32\x84\x64\x89\x28\xa4\xa2\x54\x8c\xa2\x74\x1b\x15" "\xa7\xdb\x29\x91\x4a\x50\x49\x2a\x45\x8e\x4a\x53\x12\xdd\x41\x65\xe8\x4e" "\x2a\x4b\x77\x51\x39\xba\x9b\xca\xd3\x3d\x54\x81\x2a\x52\x25\xaa\x4c\xf7" "\x52\x15\xba\x8f\xaa\xd2\xfd\x54\x8d\x1e\xa0\xea\x54\x83\x6a\x52\x2d\x7a" "\x90\x6a\xd3\x43\x54\x87\x1e\xa6\xba\xf4\x08\xd5\xa3\x47\xa9\x3e\x3d\x46" "\x0d\xe8\x71\x6a\x48\x4f\x50\x23\x7a\x92\x1a\xd3\x53\xd4\x84\x9e\xa6\xa6" "\xd4\x8c\x9a\x53\x0b\x6a\x49\xcf\x50\x2b\x7a\x96\x5a\x53\x1b\x6a\x4b\xcf" "\x51\x3b\x7a\x9e\xda\xd3\x0b\x94\x4c\x2f\x52\x07\x7a\x89\x3a\xd2\xcb\xd4" "\x89\x5e\xa1\xce\xf4\x2a\x75\xa1\xd7\xa8\x2b\x75\xa3\xee\xf4\x3a\xf5\xa0" "\x37\xa8\x27\xf5\xa2\x14\xea\x4d\x7d\xe8\x4d\xea\x4b\xfd\xa8\x3f\x0d\xa0" "\x81\xf4\x16\x0d\xa2\xb7\x69\x30\xbd\x43\xa9\x34\x84\x86\xd2\xbb\x34\x8c" "\xde\xa3\xe1\xf4\x3e\x8d\xa0\x91\x34\x8a\x3e\xa0\xd1\x34\x86\xc6\xd2\x38" "\x1a\x4f\x13\x28\x8d\x3e\xa4\x89\xf4\x11\x4d\xa2\x8f\x69\x32\x4d\xa1\xa9" "\x34\x8d\xd2\x69\x3a\xcd\xa0\x4f\x68\x26\xcd\xa2\xd9\xf4\x29\xcd\xa1\xcf" "\x68\x2e\xcd\xa3\xf9\xb4\x80\x32\xe8\x73\x5a\x48\x8b\x28\x93\xbe\xa0\xc5" "\xb4\x84\xb2\x68\x29\x2d\xa3\xe5\xb4\x82\x56\xd2\x2a\x5a\x4d\x6b\x68\x2d" "\xad\xa3\xf5\xb4\x81\x36\xd2\x26\xda\x4c\x5b\x68\x2b\x6d\xa3\xed\xb4\x83" "\x76\xd2\x2e\xda\x4d\x7b\x68\x2f\xed\xa3\xfd\x74\x80\xbe\xa4\x6c\xfa\x8a" "\x0e\xd2\xdf\xe8\x10\x7d\x4d\x87\xe9\x1b\x3a\x42\xdf\xd2\x51\xfa\x8e\x8e" "\xd1\xf7\x74\x9c\x7e\xa0\x13\xf4\x23\x9d\xa4\x53\x74\x9a\xce\xd0\x59\xfa" "\x89\xce\xd1\x79\xba\x40\x3f\xd3\x45\xfa\x85\x2e\xd1\x65\xba\x42\x9e\x44" "\x08\xa1\x0c\x55\xa8\xc3\x20\xcc\x15\xe6\x0e\x63\xc2\x3c\x61\x6c\x78\x43" "\x18\x17\xde\x18\xe6\x0d\x6f\x0a\x23\xe1\xcd\x61\x7c\x78\x4b\x98\x2f\xbc" "\x35\xcc\x1f\x16\x08\x0b\x86\x85\xc2\x84\xb0\x70\x58\x24\x34\x21\x86\x36" "\xa4\x30\x0c\x8b\x86\xc5\xc2\x68\x78\x5b\x58\x3c\xbc\x3d\x4c\x0c\x4b\x84" "\x25\xc3\x52\xa1\x0b\x4b\x87\x49\xe1\x1d\x61\x99\xf0\xce\xb0\x6c\x78\x57" "\x58\x2e\xbc\x3b\x2c\x1f\xde\x13\x56\x08\x2b\x86\x4f\x3d\x52\x39\xbc\x37" "\xac\x12\xde\x17\x56\x0d\xef\x0f\xab\x85\x0f\x84\xd5\xc3\x1a\x61\xcd\xb0" "\x56\xf8\x60\x58\x3b\x7c\x28\xac\x13\x3e\x1c\xd6\x0d\x1f\x09\xcb\x86\x8f" "\x86\xf5\xc3\xc7\xc2\x06\xe1\xe3\x61\xc3\xf0\x89\xb0\x51\xf8\x64\xd8\x38" "\x7c\x2a\x6c\x12\x3e\x1d\x36\x0d\x9b\x85\xcd\xc3\x16\x61\xcb\xf0\x99\xb0" "\x55\xf8\x6c\xd8\x3a\x6c\x13\xb6\x0d\x9f\x0b\xdb\x85\xcf\x87\xed\xc3\x17" "\xc2\xe4\xf0\xc5\xb0\x43\xf8\xd2\x9f\x1e\x4f\x09\x7b\x87\x7d\xc2\x37\xc3" "\x37\x43\xef\x1f\x56\xf3\xa3\x0b\xa2\x19\xd1\xcf\xa3\x0b\xa3\x8b\xa2\x99" "\xd1\x2f\xa2\x8b\xa3\x4b\xa2\x59\xd1\xa5\xd1\x65\xd1\xe5\xd1\x15\xd1\x95" "\xd1\x55\xd1\xd5\xd1\x35\xd1\xb5\xd1\x75\xd1\xf5\xd1\x0d\xd1\x8d\xd1\x4d" "\xd1\xcd\x51\xef\x6b\xe5\x16\x0e\x9c\x74\xca\x69\x17\xb8\x5c\x2e\xb7\x8b" "\x71\x79\x5c\xac\xbb\xc1\xc5\xb9\x1b\x5d\x5e\x77\x93\x8b\xb8\x9b\x5d\xbc" "\xbb\xc5\xe5\x73\xb7\xba\xfc\xae\x80\x2b\xe8\x0a\xb9\x04\x57\xd8\x15\x71" "\xc6\xa1\xb3\x8e\x5c\xe8\x8a\xba\x62\x2e\xea\x6e\x73\xc5\xdd\xed\x2e\xd1" "\x95\x70\x25\x5d\x29\xe7\x5c\x69\x97\xe4\x5a\xb8\x96\xae\xa5\x6b\xe5\x9e" "\x75\xad\x5d\x1b\xd7\xd6\x3d\xe7\x9e\x73\xcf\xbb\xe7\xdd\x0b\xee\x05\xf7" "\xa2\xeb\xe0\x5e\x72\x1d\xdd\xcb\xae\x93\x7b\xc5\x75\x76\xaf\xba\x57\xdd" "\x6b\xae\xab\xeb\xe6\xba\xbb\xd7\x5d\x0f\xf7\x86\xeb\xe9\x7a\xb9\x14\x97" "\xe2\xfa\xb8\x3e\xae\xaf\xeb\xeb\xfa\xbb\xfe\x6e\xa0\x1b\xe8\x06\xb9\x41" "\x6e\xb0\x1b\xec\x52\x5d\xaa\x1b\xea\x86\xba\x61\x6e\x98\x1b\xee\x86\xbb" "\x11\x6e\x84\x1b\xe5\x46\xb9\xd1\x6e\xb4\x1b\xeb\xc6\xba\xf1\x6e\xbc\x4b" "\x73\x69\x6e\xa2\x9b\xe8\x26\xb9\x49\x6e\xb2\x9b\xec\xa6\xba\xa9\x2e\xdd" "\xa5\xbb\x19\x6e\x86\x9b\xe9\x66\xba\xd9\x6e\xb6\x9b\x93\x38\xc7\xcd\x75" "\x73\xdd\x7c\x37\xdf\x65\xb8\x0c\xb7\xd0\x2d\x74\x99\x2e\xd3\x2d\x76\x8b" "\x5d\x96\xcb\x72\xcb\xdc\x32\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" "\xc3\xed\x70\xbb\xdc\x2e\xb7\xc7\xed\x71\xfb\xdc\x3e\x77\xc0\x1d\x70\xd9" "\x2e\xdb\x1d\x74\x07\xdd\x21\x77\xc8\x1d\x76\xdf\xb8\x23\xee\x5b\x77\xd4" "\x7d\xe7\x8e\xb9\xef\xdd\x71\xf7\x83\x3b\xe1\x7e\x74\x27\xdd\x29\x77\xda" "\x9d\x71\x67\xdd\x4f\xee\x9c\x3b\xef\x2e\xb8\x9f\xdd\x45\xf7\x8b\xbb\xe4" "\x2e\xbb\x2b\xce\xbb\xb4\xc8\x87\x91\x89\x91\x8f\x22\x93\x22\x1f\x47\x26" "\x47\xa6\x44\xa6\x46\xa6\x45\xd2\x23\xd3\x23\x33\x22\x9f\x44\x66\x46\x66" "\x45\x66\x47\x3e\x8d\xcc\x89\x7c\x16\x99\x1b\x99\x17\x99\x1f\x59\x10\xc9" "\x88\x7c\x1e\x59\x18\x59\x14\xc9\x8c\x7c\x11\x59\x1c\x59\x12\xc9\x8a\x2c" "\x8d\x2c\x8b\x2c\x8f\xac\x88\xac\x8c\x78\x5f\x78\x5b\xe8\x8b\xfa\x62\x3e" "\xea\x6f\xf3\xc5\xfd\xed\x3e\xd1\x97\xf0\x25\x7d\x29\xef\x7c\x69\x9f\xe4" "\xef\xf0\x65\xfc\x9d\xbe\xac\xbf\xcb\x97\xf3\x77\xfb\xf2\xfe\x1e\x5f\xc1" "\x57\xf4\x95\xfc\xd3\xbe\xa9\x6f\xe6\x9b\xfb\x16\xbe\xa5\x7f\xc6\xb7\xf2" "\xcf\xfa\xd6\xbe\x8d\x6f\xeb\x9f\xf3\xed\xfc\xf3\xbe\xbd\x7f\xc1\x27\xfb" "\x17\x7d\x07\xff\x92\xef\xe8\x5f\xf6\x9d\xfc\x2b\xbe\xb3\x7f\xd5\x77\xf1" "\xaf\xf9\xae\xbe\x9b\xef\xee\x5f\xf7\x3d\xfc\x1b\xbe\xa7\xef\xe5\x53\x7c" "\x6f\xdf\xc7\xbf\xe9\xfb\xfa\x7e\xbe\xbf\x1f\xe0\x07\xfa\xb7\xfc\x20\xff" "\xb6\x1f\xec\xdf\xf1\xa9\x7e\x88\x1f\xea\xdf\xf5\xc3\xfc\x7b\x7e\xb8\x7f" "\xdf\x8f\xf0\x23\xfd\x28\xff\x81\x1f\xed\xc7\xf8\xb1\x7e\x9c\x1f\xef\x27" "\xf8\x34\xff\xa1\x9f\xe8\x3f\xf2\x93\xfc\xc7\x7e\xb2\x9f\xe2\xa7\xfa\x69" "\x3e\xdd\x4f\xf7\x33\xfc\x27\x7e\xa6\x9f\xe5\x67\xfb\x4f\xfd\x1c\xff\x99" "\x9f\xeb\xe7\xf9\xf9\x7e\x81\xcf\xf0\x9f\xfb\x85\x7e\x91\xcf\xf4\x5f\xf8" "\xc5\x7e\x89\xcf\xf2\x4b\xfd\x32\xbf\xdc\xaf\xf0\x2b\xfd\x2a\xbf\xda\xaf" "\xf1\x6b\xfd\x3a\xbf\xde\x6f\xf0\x1b\xfd\x26\xbf\xd9\x6f\xf1\x5b\xfd\x36" "\xbf\xdd\xef\xf0\x3b\xfd\x2e\xbf\xdb\xef\xf1\x7b\xfd\x3e\xbf\xdf\x1f\xf0" "\x5f\xfa\x6c\xff\x95\x3f\xe8\xff\xe6\x0f\xf9\xaf\xfd\x61\xff\x8d\x3f\xe2" "\xbf\xf5\x47\xfd\x77\xfe\x98\xff\xde\x1f\xf7\x3f\xf8\x13\xfe\x47\x7f\xd2" "\x9f\xf2\xa7\xfd\x19\x7f\xd6\xff\xe4\xcf\xf9\xf3\xfe\x82\xff\xd9\x5f\xf4" "\xbf\xf8\x4b\xfe\xb2\xbf\xc2\xff\xb3\xc6\x18\x63\x8c\x31\xf6\x5f\x32\xf0" "\x4f\x8e\xf7\xfe\x17\xdf\x93\xbf\x8d\xab\xfa\x08\x21\x6e\xdc\x5e\xe8\xc8" "\xef\x8f\x2b\x21\xc4\x86\xfc\x7f\x9f\xf7\x93\x09\xed\x22\x42\x88\x17\x7b" "\x75\x79\xe2\x1f\xa3\x7a\xf5\x94\x94\x94\xdf\x6e\x9b\xa5\x44\x50\x6c\x9e" "\x10\x22\x72\x2d\x3f\x97\xb8\x16\x2f\x15\x6d\xc5\xf3\x22\x59\xb4\x11\x65" "\xc4\x3f\xfe\x7c\xf5\x7b\xfd\x64\xb7\x8b\xf4\x27\xf5\xa3\x77\x0b\x11\xfb" "\xbb\x9c\x18\x71\x2d\xbe\x56\xff\xce\x7f\xb9\xff\x7e\x72\xcc\x9c\x3f\xad" "\x3f\x4f\x88\xc4\x62\xd7\x72\xf2\x88\x6b\xf1\xb5\xfa\x65\xff\x37\xf5\x0b" "\xb4\xfa\x93\xfa\x79\xbe\x4e\x13\xa2\xf5\xef\x72\xe2\xc4\xb5\xf8\x5a\xfd" "\x24\xf1\xac\x78\x49\x24\xff\xd3\x2d\x19\x63\x8c\x31\xc6\x18\x63\x8c\xb1" "\xbf\xeb\x27\x2b\x75\xfa\xb3\xeb\xdb\xab\xd7\xe7\x09\xfa\x5a\x4e\x6e\x71" "\x2d\xfe\xfd\xf5\x39\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xfe\x7b\x7a\xa5" "\x5b\xf7\x17\x9e\x49\x4e\x6e\xd3\x89\x27\xff\x1d\x27\xbb\xb9\x4d\x3c\xb9" "\x3e\x93\xeb\xfc\x8b\x89\x31\xc6\x18\x63\x8c\x31\xf6\x97\xbb\x76\xd2\x7f" "\xbd\x57\xc2\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\xe5\x5c\xff\x3f\x3e\x4e\xec\x7a\xef\x91\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\xbb\xde\xfe\x57\x00\x00\x00\xff\xff" "\x08\x19\x2c\x50", 5350); syz_mount_image(/*fs=*/0x20001500, /*dir=*/0x20001540, /*flags=*/0x20010080, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x14e6, /*img=*/0x20002a80); memcpy((void*)0x20000300, "./bus\000", 6); res = syscall(__NR_creat, /*file=*/0x20000300ul, /*mode=*/0ul); if (res != -1) r[4] = res; memcpy((void*)0x20000440, "./bus\000", 6); res = syscall(__NR_open, /*file=*/0x20000440ul, /*flags=*/0ul, /*mode=*/0ul); if (res != -1) r[5] = res; memcpy((void*)0x20000580, "./bus\000", 6); res = syscall(__NR_creat, /*file=*/0x20000580ul, /*mode=*/0ul); if (res != -1) r[6] = res; res = syscall(__NR_io_setup, /*n=*/0x206, /*ctx=*/0x20000200ul); if (res != -1) r[7] = *(uint64_t*)0x20000200; *(uint64_t*)0x20000540 = 0x200000c0; *(uint64_t*)0x200000c0 = 0x15; *(uint32_t*)0x200000c8 = 0; *(uint32_t*)0x200000cc = 0; *(uint16_t*)0x200000d0 = 1; *(uint16_t*)0x200000d2 = 0; *(uint32_t*)0x200000d4 = r[6]; *(uint64_t*)0x200000d8 = 0x20000000; *(uint64_t*)0x200000e0 = 0x1a00001a; *(uint64_t*)0x200000e8 = 0; *(uint64_t*)0x200000f0 = 0; *(uint32_t*)0x200000f8 = 0; *(uint32_t*)0x200000fc = -1; syscall(__NR_io_submit, /*ctx=*/r[7], /*nr=*/8ul, /*iocbpp=*/0x20000540ul); syscall(__NR_fcntl, /*fd=*/r[5], /*cmd=*/4ul, /*flags=*/0x4400ul); syscall(__NR_dup3, /*oldfd=*/r[5], /*newfd=*/r[4], /*flags=*/0ul); res = syscall(__NR_io_setup, /*n=*/6, /*ctx=*/0x20000240ul); if (res != -1) r[8] = *(uint64_t*)0x20000240; *(uint64_t*)0x20000540 = 0x200000c0; *(uint64_t*)0x200000c0 = 0xf04aef; *(uint32_t*)0x200000c8 = 0x3d8; *(uint32_t*)0x200000cc = 4; *(uint16_t*)0x200000d0 = 0; *(uint16_t*)0x200000d2 = 0; *(uint32_t*)0x200000d4 = r[4]; *(uint64_t*)0x200000d8 = 0x20000000; *(uint64_t*)0x200000e0 = 0x200a00; *(uint64_t*)0x200000e8 = 0; *(uint64_t*)0x200000f0 = 0; *(uint32_t*)0x200000f8 = 0; *(uint32_t*)0x200000fc = -1; syscall(__NR_io_submit, /*ctx=*/r[8], /*nr=*/0x3f0aul, /*iocbpp=*/0x20000540ul); return 0; }