// https://syzkaller.appspot.com/bug?id=38df7736d3016d975c69553385e7087b3e1d300c
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif

static unsigned long long procid;

//% 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, 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) {
    if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0)
      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;
}

uint64_t r[1] = {0xffffffffffffffff};

int main(void)
{
  syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
  syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul);
  syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul);
  intptr_t res = 0;
  memcpy((void*)0x20001100, "reiserfs\000", 9);
  memcpy((void*)0x20000040, "./file0\000", 8);
  memcpy(
      (void*)0x200022c0,
      "\x78\x9c\xec\xd8\xbd\x8a\x13\x51\x14\x07\xf0\xff\x9d\xa4\xb1\x5a\xb9\xdb"
      "\x0f\x82\x16\x16\x22\xbb\xc4\x17\xd8\x42\x21\x8d\x85\xb5\x8d\x2c\x5b\xb9"
      "\x55\x52\x29\x79\x04\x1f\xc3\xc7\x91\x54\xf6\x21\xbd\x29\x02\xf6\xca\xe4"
      "\x4b\x23\x91\x2d\x12\x48\xf3\xfb\xc1\x65\xee\x1c\xce\xfd\x2a\xcf\x09\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x74\xfa\xc9\x8f\x92\x5c\x36\x49\xdd\xc6"
      "\x9a\x24\x25\x69\xdb\xe9\x70\x9e\xa4\x5d\xff\x26\x8f\xbf\xf5\x9a\x94\xbc"
      "\xbb\x1b\x8e\x5f\x8f\x06\x6f\xc6\x49\x7a\xab\xf4\xd2\x8d\x6e\xd5\x2a\xaf"
      "\x5e\x3f\xad\x75\x50\x07\xf5\xba\xbe\xba\xbc\x79\x56\xc7\x9f\x3e\x7f\xfc"
      "\x70\x7f\x7f\x37\xda\x6c\x5f\xd2\x66\xb6\x9c\xdc\xe6\xed\xe2\xa4\x4f\x29"
      "\x9b\xfb\x00\x00\x00\x00\xfb\x7e\x1d\xe9\xdc\xe7\x03\x00\x00\x00\x0f\x3b"
      "\x4d\x17\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\xe0\x34\xea\x76\xd2\x24\x29\x49\xdb\x4e\x87\xf3\x24\xed\x97\xf3\xde\x0b"
      "\x00\x00\x00\x38\x4e\x49\x93\xf7\x17\x87\xe2\xeb\x36\xc0\x1f\x2f\xf2\xfd"
      "\xa2\xec\xe2\xdd\xf7\x67\xe9\xe6\x57\xf9\x7a\x60\xfd\xc1\xa3\x00\x00\x00"
      "\x80\xff\x2a\x7f\xd5\xe3\xcf\xd3\xdf\xd5\xe5\x5d\xec\x49\xfa\x79\xf9\x68"
      "\x3f\x7f\x71\x93\xf4\x92\x5c\xfd\xb3\xcf\x6c\x39\xb9\xdd\x0e\xc5\x38\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x6f\x76\xe0\x40\x00"
      "\x00\x00\x00\x40\xd0\xfe\xd4\x8b\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\xd4\x01\x00\x00\xff\xff\x44\x25\xd2\xe7",
      4333);
  syz_mount_image(0x20001100, 0x20000040, 0x10002, 0x20000240, 1, 0x10ed,
                  0x200022c0);
  memcpy((void*)0x20000000, "./bus\000", 6);
  res = syscall(__NR_creat, 0x20000000ul, 0ul);
  if (res != -1)
    r[0] = res;
  memcpy((void*)0x20000080, "./file0\000", 8);
  syscall(__NR_creat, 0x20000080ul, 0ul);
  *(uint64_t*)0x20000000 = 0x20001480;
  memcpy(
      (void*)0x20001480,
      "\xd1\xff\xac\xd5\x16\xde\x50\xac\x9d\x15\xbc\x75\x31\x6d\xa4\xde\xfa\x1e"
      "\x72\xf6\x5a\x65\xcd\xd2\x6d\xcc\x38\x9a\xac\xf7\x85\x6d\xa9\xae\xcf\x37"
      "\x65\xd4\xc0\x32\xe1\x96\x0f\xaf\x25\xba\xd9\x06\xb7\xd3\x44\x0b\x6e\x71"
      "\xa8\x2f\x1d\x8f\x8b\x8d\xb3\x5b\x60\x91\xf3\xaf\x94\xc6\xb4\x6b\x9a\xb1"
      "\x0f\xe3\x92\x3f\x26\x87\x71\x07\x8d\x26\x68\xbe\x7b\xd3\xeb\x94\x1d\x4b"
      "\xb5\xba\xa8\x54\x7e\x36\x28\x3a\x06\x5c\xe5\x76\x6c\xbf\xf3\xa8\xfc\x37"
      "\xfc\x45\x07\x64\x3d\x37\x86\xbb\xf2\x31\xd3\xed\x88\xcb\x8b\x01\xea\xb1"
      "\x4e\x43\x72\xcf\x4f\x89\xbd\x1b\x85\x3c\xaa\x5d\x9f\x07\xf5\x23\xb9\xdf"
      "\xa8\xcc\x09\x05\x3f\xf3\x6f\xde\x08\xe9\x6f\xb6\xb3\xac\xc1\x96\xb1\xbd"
      "\x1e\x2d\x3a\x6c\x65\xf5\x85\xdf\x7e\x2b\x8b\x17\x43\x9a\x7a\xb2\x9a\x7d"
      "\xfe\x64\x2c\x2f\x0a\xc7\xa8\x1e\xca\x80\x73\xb5\x59\x66\x3f\x2d\xaf\x7a"
      "\x08\x32\xb2\xb0\x95\x57\x79\x4a\x21\xbf\x11\x48\x31\xf8\xe6\xdb\x39\x22"
      "\xd0\xcd\x16\x9e\x5a\x8b\x4a\xdc\x95\xd7\x32\x2e\xe7\x59\x44\xde\x15\xf5"
      "\x77\x80\xb8\x8f\xef\x7f\x3d\x9b\x25\x67\x05\xcc\xfa\x21\x25\xb4\x3c\xe8"
      "\xe3\xaa\xca\xea\xd9\x63\xcd\xd7\xf7\x92\xf1\x4c\x9b\x24\x49\x3f\x9f\x83"
      "\x0f\x6d\xe8\xda\x93\xbb\xd4\x35\x70\x95\x63\x1a\xde\xc1\x42\x24\xdd\x9b"
      "\xb0\x49\xe8\x26\xf3\xa4\x96\x24\x39\x3e\x6a\x03\x11\x03\xfa\xff\x09\x02"
      "\xba\x88\xae\x30\xaf\x4a\x61\xca\xa7\x7f\xf9\x56\x21\x41\x96\xfc\xf3\xc5"
      "\x53\x6d\x82\x32\x84\x30\x6f\x36\x7a\xfc\xb4\x6f\xb4\x32\x31\x91\x1c\xc5"
      "\x30\x91\x67\x1e\x7d\x85\x3e\xbf\x01\x52\x41\xb1\x8e\x9f\xb6\xac\x6d\x9a"
      "\x7a\x1b\x05\xdf\xd6\xd9\xe5\x6a\x51\x56\x7c\xd8\x83\x7d\xd0\x45\xab\xf6"
      "\xb8\x55\x50\xf0\xdd\x8d\xde\xd4\x31\x47\xab\x9b\xfa\xdc\x18\xb9\x98\x46"
      "\x99\xd5\xd8\x75\xcb\x21\xa9\x5a\x7f\x58\x4d\x8c\x46\x6d\x03\x3d\xf7\x51"
      "\x93\xf9\xae\x58\xb8\x5c\xfa\xcc\x54\xf6\xc6\xe1\x2a\x0d\xeb\xe4\x0e\xe3"
      "\x61\xa8\x39\x56\x3b\xc2\xcb\x64\x27\x16\x72\xa5\x53\x70\xc2\xb0\x35\xb4"
      "\x82\x07\x4c\xe2\x48\x7e\xf8\xa3\xbc\x1c\x68\x85\x6e\x6e\x09\x53\x92\x76"
      "\xd9\x61\xa0\xc6\x47\xf1\xee\x32\x37\x49\x6f\xc9\x96\x23\xe8\xfd\x33\xfa"
      "\xf7\x79\x7d\x86\xa8\x8d\xce\xe1\x52\xd1\x5e\x10\x73\x9b\xcb\xbd\x60\x77"
      "\xb7\x68\x67\xe2\x91\xf3\x50\xd9\x99\x02\x4c\x12\xfa\xf8\x1f\x83\x79\x2f"
      "\x48\xf7\xf6\xdd\x66\xaa\x68\x54\xe4\x60\xef\x7f\x8c\x75\x5f\x3a\x6d\xd7"
      "\x65\x09\xea\x0d\x2d\xb3\x90\x57\xa5\x12\x91\x85\xb2\xfb\x11\x54\x6c\xd5"
      "\xd6\xcc\x59\xf6\x40\xe9\x02\x8a\xe6\xc7\x07\x5f\xba\x5e\x5b\x55\x93\xd7"
      "\xf7\x9e\xc3\x87\x83\x3f\x46\x5d\x09\xbd\xe4\x64\x11\x28\x21\xea\xec\x5e"
      "\x6e\x8f\x2a\xee\x8d\x73\x58\xf9\xc1\x4a\xfe\x20\x18\x85\x6f\x61\x08\x48"
      "\x70\x6c\x71\xcd\xa6\x24\x93\xae\xf2\xe3\x9e\xfb\x71\xb4\xa8\xe8\x04\x84"
      "\x7e\xda\x66\xb2\xb5\xb1\xd7\x5b\x47\x8f\x19\x20\x8e\xe1\xac\x43\xaf\xb2"
      "\xdb\xbb\xa5\xdd\x0f\x29\xf6\x94\x60\x22\xe0\x9f\xb8\x53\xcb\x17\x6c\xa3"
      "\x47\x4b\xa2\xfa\x67\xcb\x24\x5f\xe8\x5e\xc6\x1a\x09\x5d\x6f\xd9\xac\x2a"
      "\xc5\x68\x59\x20\x20\x16\x17\x34\x2f\xe5\x60\x72\x42\x7b\x9b\xd3\x62\x6a"
      "\x1a\x37\x1e\x67\x04\x1f\xcd\xa7\x81\xbe\x0c\x23\x4d\x6f\xeb\x5a\xd5\x00"
      "\xe8\xbc\x70\x74\x38\x1f\xd0\xd0\x49\x83\xa4\xa6\xcd\xb6\xc8\xe0\x3d\x59"
      "\xdc\x50\x92\x5e\x9e\x4b\x24\xe6\xf8\xe4\x55\xf0\x28\x18\x95\x9f\x29\x27"
      "\xf0\xa2\xd9\xff\x62\xec\x3c\x5c\x39\x90\x77\x04\x8f\x7d\x3d\xad\x08\x30"
      "\xb2\xe6\x56\x36\x93\xf2\xf9\xd4\x8e\xca\x8c\x34\x80\x4a\x76\x26\x28\x2a"
      "\x4a\x21\x4d\x13\x78\x69\x93\xc0\x11\xa8\x81\x94\xdb\xf7\xb2\x3e\x25\xf5"
      "\x92\xe6\x21\x86\xc9\xfb\x56\x5f\xac\x76\x32\xde\x35\x61\x53\xc8\x9a\x6b"
      "\xe0\xb6\xb2\x6b\xa4\x8c\x24\x27\x42\x47\x69\xfc\xbd\x7e\xe0\x72\xed\x4b"
      "\xd4\xd0\x73\x1d\x06\xc8\x53\x7d\x61\x6b\x11\x45\xa6\xc7\x0e\xdb\x13\xfb"
      "\x4d\xba\x35\x65\x22\x1b\x3a\x28\x97\xa2\x38\x61\xcd\x0e\x8e\x00\x60\x02"
      "\x1c\xdd\x7d\xe0\x02\xd5\xe7\x85\xe5\xd6\xd3\xd0\x7f\x4e\x44\x5a\xda\x9c"
      "\x8d\x9b\xa8\xb8\x19\xd0\xb5\xc7\xb5\xd1\x5a\x51\x92\xd3\xa8\x3c\x12\x5c"
      "\x8e\x11\x7c\x82\x3a\x9e\x33\x31\x6b\x8c\x91\x54\xe7\x33\x0d\x3a\x86\x50"
      "\x48\xdb\xd9\xc1\x47\x57\x69\x1b\xfe\x56\xf1\x04\x23\xf6\xab\x71\x7b\xec"
      "\x5e\xeb\xea\xc6\xba\x9a\xd1\xae\xb6\xcd\xe0\x9d\x7f\xda\x8e\x47\x5a\x71"
      "\xac\x48\xd4\x6b\x8d\x9a\x40\x87\x9c\x9d\xec\x2d\xb5\xc4\x79\x9e\x5f\xc8"
      "\xe8\xb3\xd4\x19\x03\x1c\x10\x33\xfc\xe8\x8a\xe2\xc9\x3d\x7c\xa6\x2c\x93"
      "\x02\xe6\xb4\x5c\xa8\xdf\xeb\xe5\xb9\x27\x24\xf0\x35\xe8\xe9\xd7\x70\x4e"
      "\xfb\x23\xf4\x45\x99\x9f\xe0\x8c\xfa\x28\x40\x48\x74\xd8\xac\xc8\xd3\x78"
      "\x70\xd3\x94\xd9\xfc\xc8\xdb\xe7\x63\xbc\x85\xc3\x7f\x0f\x3b\xcc\x2c\xbe"
      "\xa4\x20\xcd\x07\x3d\xb5\x98\xe7\xd8\x9c\x14\xa3\x1e\x5b\xf5\x7c\xbe\xfa"
      "\x30\x14\x27\xc9\x30\x91\x50\x5f\x1f\x3e\x5c\xdf\x71\x29\x58\xb2\xe8\xfc"
      "\x56\x68\x4d\x33\x88\x10\x7c\x17\x28\xf0\xe5\xa3\xbe\x21\x64\x24\x60\x71"
      "\x65\x3e\x25\x6e\xd3\xbf\x30\x00\xc1\x73\x01\xda\x9a\x5a\x3d\x9c\xa4\x75"
      "\x86\x7c\x4f\x31\x1a\x24\xe5\xae\x90\x9a\x62\x04\x7a\x9e\x6b\xb7\x1c\xbc"
      "\xb4\xf1\x59\xc2\xef\x0f\x66\xb4\xd0\xf9\xda\x51\xab\xa9\x9c\xd9\x44\x84"
      "\x43\xdd\x27\x73\x62\xaf\x18\xd3\x2f\x11\x1c\x48\xa9\x52\xef\x55\x5b\x2c"
      "\x7c\x58\xb9\x97\xce\x61\xe7\x4c\xc7\x55\x1b\x57\xea\xff\xe4\x11\x21\x9b"
      "\xad\xdf\x49\x09\x26\xd8\xe2\x60\xdc\xd8\x7c\x06\x9e\x61\x71\x95\xc3\x52"
      "\x95\x0f\x9b\x51\xce\x88\xc1\x2c\x4f\x79\x97\xba\x51\x5f\x77\xe6\x8d\x44"
      "\xf8\x31\xcd\xf4\xd7\xee\x8b\x1b\x7c\xed\xcb\x4c\x4f\xc7\xe8\x5b\xa2\x88"
      "\xc8\x55\x5d\x49\xd5\xb4\xb9\xbb\x70\xdc\x4b\x68\x8b\xd1\x2e\x6b\x38\xe3"
      "\x71\x50\xf3\xea\x45\x7a\x76\xb2\x3d\x5a\xbe\x65\x51\xea\x59\x8e\x09\x0a"
      "\xed\x87\x82\x2b\x09\x54\xb8\xdb\x1a\x7c\x60\x5c\x92\x5b\x7f\x92\x40\xb0"
      "\xe7\xa0\x20\xf2\x92\xa1\xfd\x4a\x37\xc7\x41\x39\xbc\x6e\x7f\xf0\x83\x73"
      "\xeb\xfc\x8f\xee\xa3\x71\xae\x0b\x6c\x61\xc7\x15\xf6\xf1\xf4\xb0\xb9\x94"
      "\xc7\xe2\xe1\x29\xf8\x7d\xb9\x59\xaa\xe6\xff\x48\x66\x4d\x82\x4b\x29\xba"
      "\x9f\x25\x58\x90\xf9\xc5\x37\x17\x8d\xb9\xc5\x30\x20\x97\x89\x15\x57\xf8"
      "\x17\x5a\x46\xf3\x08\xb1\xa2\x53\x0a\xa7\x26\xea\x9d\x4c\xfc\xe7\x6d\xb5"
      "\x06\x37\x36\x97\x24\xd0\xc5\xf5\x1c\x97\xed\xb5\x8f\xf5\xeb\x9b\x24\x34"
      "\xb3\x72\x1b\x61\x68\x8b\xa1\x24\x71\xb9\x7c\x6a\x65\xba\x08\x5e\x15\x40"
      "\x65\x68\xac\x85\x25\x90\x70\x1f\x2e\xf8\x45\x1c\x5c\xf1\x19\x1d\x70\xf5"
      "\x1e\xae\xa9\xdd\xc4\xcb\xdd\x74\x28\xf6\x27\xdb\x50\x69\x11\x1f\x65\x06"
      "\x2d\x5c\xc3\x45\x81\x82\x6a\xf3\xe6\x70\x61\x3d\xda\x99\xe3\x1c\x42\x73"
      "\x6a\xab\xd8\x7b\xe5\x6e\x21\x4e\xd6\x06\x86\x2a\x15\x24\x55\xf9\x18\x91"
      "\xb7\x43\x0b\xae\x03\x28\x45\x69\xc2\x34\x58\x8f\x49\x5a\x5e\xcc\x4a\x23"
      "\xfa\xd6\xba\x34\xe2\xee\x9e\xbd\xe8\xc7\xf5\xf6\x2c\x93\x44\x65\x93\x75"
      "\xc2\xa1\xfe\x6f\xa6\xe4\xef\x68\x71\x22\x23\xb9\x47\x1c\x51\x3b\xb1\x14"
      "\x29\xdb\xb8\xa4\x54\x63\xc8\x88\x2f\x46\x22\x75\xee\x0d\xa5\x67\xc6\x0c"
      "\x2d\x80\x38\x84\x3e\x0c\x20\x48\x66\x76\xe9\x97\x8f\x2a\xec\x91\x87\x82"
      "\x0c\x94\xa6\xe7\xe5\x19\xd0\x6d\xaf\x2a\xb1\x98\xf5\xca\xfc\xab\x4d\x9c"
      "\x90\xa4\x79\x80\x09\x06\x19\x2d\x66\xa3\x30\x1a\x34\xfa\x6c\x5a\x93\x1c"
      "\xea\x0a\x47\x9a\x4d\x98\xd8\x6d\x9d\xe3\xe0\x61\x32\x35\x04\xb5\x71\x86"
      "\xdd\x33\xdf\x7a\x16\xcc\xb6\x88\xc0\xde\x20\x36\x66\xcb\x0a\x6b\x54\x3a"
      "\x9d\x06\x9d\xde\xd4\x4a\x3b\x43\x2c\xbb\x71\xda\x92\x1d\xca\xb6\xbe\x1c"
      "\x2d\x74\x94\xd3\xb0\x78\x41\xd9\xb4\xf9\xd6\x59\xb5\xd3\xd3\xb2\xed\x91"
      "\x6f\x91\x58\x8d\x58\x91\x28\xe4\xb2\xd4\x44\x8e\x6a\xab\x5a\x81\x60\xed"
      "\xdc\xa0\xf6\xe0\x22\xab\xb8\x5e\x25\x1a\x11\xcd\x6b\xae\x57\xa0\x9b\x2c"
      "\x43\x4a\xb5\xbd\xf6\x26\x4a\xfb\x20\xd5\xab\x02\x2d\x15\x2e\x34\x5b\xd3"
      "\x2b\xa9\x28\x3a\xa5\xb3\xcd\x91\x18\xbd\x27\x1a\x8a\xc9\x08\x3c\x98\xb8"
      "\xa8\x30\x64\xe6\x54\x28\xf7\xad\x7b\x35\xbf\x1d\x60\xd4\xe7\x03\xf2\x2d"
      "\x2d\x31\x6f\xc1\x2b\xd6\x8b\xcc\xed\x82\xcf\x09\x62\xa3\xd5\x76\x9c\x6a"
      "\x3d\x75\xd5\x9f\x7a\x7b\x76\x45\x46\x61\xfd\x35\x74\xb8\xc8\xe2\x6d\x20"
      "\xc3\x72\x40\x78\x54\x50\x5e\xa6\xc2\x40\x6f\xbd\x8a\x1b\xa7\xbb\x01\x7c"
      "\x56\x52\x28\xaa\x6d\x03\xd1\x8e\xd3\x09\xa3\x08\xff\xb1\xec\xec\x73\xc2"
      "\x46\x41\x3e\x7c\x70\xf2\x50\x70\xea\xfe\xd9\xe7\x0d\x22\xe9\xe8\xb4\x41"
      "\x25\xc4\x4e\xce\xff\x37\xe6\x5b\xf0\x73\xbc\x6f\xad\x1e\xa2\xb7\x26\x75"
      "\xaf\x4b\xf7\x05\x86\xa8\xf7\xe0\xf3\x57\x00\xde\x94\xc8\x02\x52\x28\x97"
      "\x57\x6e\xd1\x15\xfa\x21\xb3\xd2\x3a\x36\x78\x44\x52\x0b\x33\xf5\xb9\xae"
      "\xdc\x02\x45\x09\x67\x65\xf4\xcb\x3b\x2f\xf4\xe5\x4f\x39\xbd\x73\x46\xc2"
      "\x34\x78\x75\xd7\x5a\x93\x1b\x17\xc6\xc4\x24\xdd\xb4\x76\x7e\x0e\x63\xcc"
      "\x77\x25\xa8\xfc\x4b\x1d\xbe\x79\x29\xb2\xf9\x09\xcc\x5b\xe8\xb0\x9e\x63"
      "\x33\x03\x41\xe6\x47\x1d\xca\xc0\xf8\xb4\x46\x93\xd0\x18\x05\xa1\x46\x7b"
      "\x71\x61\x22\x60\xe2\xa2\x73\x86\x1b\x36\x97\x44\x0a\x5f\x75\x49\x77\x96"
      "\xbf\xfc\xf7\x9d\x62\xa4\xa5\x0a\x6e\xd5\xef\x2e\xfe\x8c\x83\x37\x4f\x2e"
      "\xcd\x08\xd8\xd6\x28\xaa\x03\xb0\x1a\x11\xca\xeb\x2b\xde\xcc\x0a\xb2\xab"
      "\xce\xcf\xa1\x56\x27\x97\x9d\x7c\x3f\x9d\xec\x53\x89\xfc\x66\x25\xe9\x57"
      "\xf8\x07\x5e\x23\xe6\x36\xdd\x55\x14\x59\x61\x89\xd5\x68\xe1\x4d\x33\xae"
      "\x51\x8e\x6e\x99\x78\xc6\xa3\x6a\x74\xb4\x9f\xdb\xd1\x26\x00\x95\xc9\xab"
      "\xe4\x47\xe6\x18\x87\x80\x39\xb7\x5e\x30\x5b\x1d\x2c\x9d\xde\xb9\xe5\xce"
      "\xdb\x11\x80\x2e\x08\x33\x73\x9d\x85\x95\xd5\x7d\x74\x9c\x89\x0c\x92\x90"
      "\xcc\xa4\xaa\x96\xe6\x71\x87\x47\x54\x37\x96\xa1\x87\xe5\x4a\x66\xc2\xf7"
      "\x1b\xee\xfd\xdf\x91\x1a\x7a\x74\xb5\x9c\x48\xba\x64\x2d\x5e\xcd\x4d\x41"
      "\x5f\x48\xdf\xbd\xe5\xba\xac\x8a\x4b\xa0\x63\xc1\xb9\x85\xd9\xf9\xf3\x18"
      "\x0e\x8a\x1c\x8b\x2c\xf6\xa2\x5c\x2f\xf1\x76\x88\xcc\x85\x8a\xc8\xb9\xc6"
      "\x79\x60\xf0\x9a\x1c\xa5\xf2\x8f\x8e\x87\x71\x59\xe0\x0f\xe7\xfb\x10\xcc"
      "\xa7\x3b\x39\x15\x08\x89\x5e\x7e\x52\xc2\x2f\x9b\x38\xd7\x3d\xab\xd6\xff"
      "\x7c\x55\xeb\xf4\xe1\x61\x1d\xae\xe8\xd5\x2b\x4c\xee\xe4\x9a\x6d\xf7\xda"
      "\xeb\x81\xbf\x9d\x1c\x94\x3a\x74\xc0\x3d\x3d\xda\x52\xc5\xb9\x9f\x32\x25"
      "\xc1\xb8\x70\x74\xf5\xce\xf6\x18\x78\x78\xbc\x5b\x66\x5e\xc0\x56\x1a\xdc"
      "\xc9\x78\x12\x80\xdd\x1c\x65\x92\x55\x5d\x32\x7a\xfe\xa7\x8b\x21\xbe\xee"
      "\xb6\x6a\x0a\xf3\xea\xb3\x24\x92\x45\xf4\x1c\xdb\xca\x30\x9d\x3f\xba\x5d"
      "\x4b\x34\x53\x19\xdd\x0a\x26\x13\x4c\x0c\x89\x6f\x2c\x8d\x32\xfd\xa2\x86"
      "\x00\x01\x3f\x6a\x4c\x95\xb4\x03\x8f\xab\xa7\x0d\x6c\x48\x0b\x36\x0c\x55"
      "\xbd\xc0\x59\x5f\x7c\xa6\x36\xe8\x55\x21\xba\x50\x5d\x89\x4f\x9c\x5f\x0a"
      "\x90\x71\x9b\xc9\x94\x4f\x38\x6a\xd7\x49\x14\x22\xff\x12\xf3\x4a\x3c\x04"
      "\x87\x08\xd5\x13\x05\xa8\xcc\x5b\x2a\x50\x2a\xc1\x57\x5a\x14\xc7\x5e\x9f"
      "\xb7\x21\x9e\xde\x2f\x6d\x9c\x1b\x36\x22\x30\xb6\x18\x9e\x0d\x8c\xd8\xcc"
      "\xd1\x1f\xd0\x32\x51\x82\xc6\xe4\x6c\x99\x77\xbf\x63\xaa\x02\xf7\x02\x4a"
      "\xeb\x43\x89\xf9\x89\xf5\x73\x3a\x19\x8b\x45\xe4\x32\x9c\x4c\x1a\x53\x8a"
      "\x00\x9f\x21\x6a\xd3\xac\x09\xca\xc3\x95\x47\xb4\xfd\x21\xa5\xd7\x14\x6e"
      "\xa3\x07\xad\x9b\x93\x39\xf3\x9d\x51\x61\xd1\x7b\x59\x86\x0a\x0a\xed\x38"
      "\xcd\x89\xd1\xb6\x8c\x64\x38\x34\x6d\x51\xa3\xa2\x83\x07\x4e\x34\xee\x01"
      "\xd2\xec\xa5\x27\xb1\xb3\x83\x6c\xcd\xf7\xe8\x07\x00\x71\x52\xc7\x9d\x14"
      "\x32\x4e\x3d\x88\x7c\x95\x51\xa9\x44\x75\x27\xdb\x44\x34\x81\x0f\x5b\x0b"
      "\x73\xd8\x55\xf3\x2a\x0c\x89\xaa\x78\x4e\x43\xf4\xc1\x65\x7d\x40\x8d\xd3"
      "\x3f\x88\xae\xae\x1e\x51\x86\xbb\xcc\x2a\x34\x8b\x70\x8e\x3c\xec\x90\x80"
      "\xe1\x2e\xe3\x67\x6b\xeb\x5e\xe8\x6a\x9b\x5c\xc4\xa3\x49\x6c\x24\x2b\x95"
      "\xa2\x48\x90\x6e\xd6\x2f\x98\x4b\x22\x37\x3b\xdf\xd9\x75\x15\x44\x1f\x34"
      "\xe0\x10\x06\xd8\xd1\x24\x4a\xa8\x84\x03\xf2\x07\xcd\x88\x20\xff\xe0\x76"
      "\x34\xfc\x86\xd0\x0f\x87\x1c\x1e\x4c\x9e\x8f\xc1\xa0\x0d\x29\x5e\x36\xd9"
      "\x81\x19\x59\x9b\x62\x37\x9c\xda\x10\xad\xa8\x5e\xfe\x7b\x50\xc5\xf3\x8d"
      "\x8d\x01\x0a\x2c\xd5\x3d\xb9\x00\x93\x9d\xb1\xff\xce\x14\xfe\xff\xb7\x94"
      "\x0d\x12\x84\x2f\x4f\x2b\x50\x7e\x1f\xa4\x9e\x52\x67\x52\xd1\xe3\xd8\x0a"
      "\x0c\x2a\x75\xe8\x70\xd8\x5f\x77\xfd\x91\xfc\x46\xac\x1b\x12\x88\xdd\x33"
      "\x33\x8c\xda\xd1\x54\xd6\xb8\x0b\x5a\x92\x54\x31\x86\x8d\x62\xa3\xfb\x00"
      "\x36\xf2\x8f\xe2\x59\xa3\xf5\x55\xf7\x67\x52\x6a\x9e\xa2\x30\xc3\x38\x43"
      "\xef\xc4\x9a\xc3\x18\x2a\x35\x78\x45\xea\x12\x2d\x60\x6a\xb2\x2c\x9f\x93"
      "\x7b\x2b\x90\x5e\x02\xdd\x1c\xb0\x7d\x38\x0e\x34\x86\xbe\x61\x67\xf0\x0b"
      "\x6e\x6d\x90\xa3\xc1\xd6\xae\xe1\x5d\xa4\x39\xa5\x55\x42\xce\x17\x7e\x49"
      "\x89\x98\xba\x8a\xc6\x9a\x84\x8e\x63\xe4\xc7\x56\x4e\x4d\xc0\x4a\xad\x59"
      "\x5f\xa1\xab\x81\x27\x5e\xda\xfa\x0d\x35\x20\x29\xc3\x04\x20\x0d\x2f\x2c"
      "\x58\x81\xcb\xf5\xa2\x6b\x21\x41\xbd\xb1\x17\x87\x9c\xc1\x1e\x7c\x13\xbd"
      "\x62\xf2\x21\xae\x1a\xc0\x4d\xca\x3d\x8d\x58\xa1\x3c\x13\x05\x57\xec\xf5"
      "\xf3\x61\x84\xc7\x36\x6d\x38\x52\xd0\xcb\xd6\xca\x42\xf2\xa9\x71\xd8\x7c"
      "\x0b\xb2\x04\x09\x7a\xf1\xa3\xab\xda\xb7\xb9\x5d\x07\xfc\xdb\xf5\xf4\x26"
      "\x07\x69\x5d\xed\xcd\x26\xe3\x0b\x8f\xc5\xcf\xd7\xb3\x33\xa9\x5f\x3e\xe6"
      "\x9d\x5b\xa7\x91\x1d\xad\xb1\x39\x42\x85\xc4\x37\xa0\xf2\x6f\xc0\x27\x73"
      "\x7b\xa5\xee\x7d\x63\x33\x3f\x80\xac\xb5\x9f\x1a\x7f\xaf\x2e\xc3\x03\x1c"
      "\x65\x33\x10\x75\x02\xbf\xfc\x92\xd8\x72\x6a\x48\xce\x00\xcd\xb5\xf1\x25"
      "\x8d\x85\xff\x8e\xb7\x2b\xfb\x16\x2e\x12\x20\x22\xf1\xf3\xe8\xa7\x2b\x41"
      "\xd2\x68\x9d\x52\x28\xb1\x13\x0f\xbc\x94\x63\x84\x40\x1f\x3b\xbe\x72\x63"
      "\x14\xbb\x09\xd4\x30\x33\x3a\xd7\x8d\xe0\x7b\x3c\xec\x5c\x18\xa4\xf4\xab"
      "\xb6\x95\x07\xb6\x45\x1c\xa4\xe6\x10\xb8\xfc\x98\x8c\x98\x34\x26\xe0\xcc"
      "\x3b\x9d\x15\x39\x30\x26\xeb\x75\xd3\xd0\x86\x34\xb8\xa7\x49\x5c\xef\x69"
      "\xaa\xb8\x3d\x27\xea\x1b\x5b\x41\xf4\x0b\x99\x6d\xd1\x00\x23\xd8\x1f\x77"
      "\xd6\x11\x92\x93\x0f\xfc\x25\xca\xe1\xe1\x49\x41\x23\x22\xfc\xb0\xaa\x47"
      "\xbe\xe3\xaf\xc4\x4e\xc3\xdd\xa9\x6c\x92\x94\x85\x4e\x2c\xba\xeb\xfe\xa6"
      "\xf9\xa9\x0f\x0b\x37\x97\xd5\xf5\x05\x82\x4b\x4d\xe9\x64\x15\x15\x69\xf8"
      "\x81\xf8\x7f\x9d\xd9\xd3\x0a\x2a\x2f\x9e\xd0\x10\x59\xa9\x09\xcb\xa1\x57"
      "\x90\x29\x03\xc7\x7f\x2f\x3d\x05\x62\x31\xe7\xc7\x48\x3a\x3f\x35\xe0\x43"
      "\x60\xe0\x84\xf0\xd3\xf9\x4a\x92\xc9\x2c\x77\xb3\xf0\x64\x79\xfb\xc4\x17"
      "\x36\x6d\x7f\xe8\x7d\xdf\xcd\xfd\x86\x27\x4f\x87\xa5\xf8\x17\xb0\xf9\x47"
      "\x92\x4c\xbe\x23\x29\xf1\x6f\x6b\x00\xc8\xa0\xab\x96\x16\x4f\x7b\x35\xfe"
      "\xd3\x8a\x38\x83\x80\xaf\x05\xc3\x60\x0a\xbc\x37\xa9\x44\xc9\xe7\x5a\x69"
      "\x17\x28\xc2\x68\x96\xac\x36\x15\x29\x77\x66\xf4\x06\xae\xb0\xf2\xfd\x14"
      "\x7d\x68\xfa\xd3\xfb\x3b\x03\x28\x80\x28\x0e\xbb\x4b\xf8\x92\x52\xa3\x6b"
      "\x0d\x9e\xb3\x93\xda\xae\x72\x82\x9b\x8d\xa8\x70\xb8\x86\x67\x62\x44\x89"
      "\x7d\x53\x22\xb3\x27\x03\xfc\xf1\x38\xb6\x6e\xed\xeb\x30\x24\x66\x6a\x88"
      "\xfd\x99\xd8\x96\x2f\x69\x6a\xb7\xb3\x4e\x19\xce\xd1\xbd\x27\x48\x8a\xa2"
      "\xff\xe5\xbf\xa1\x1f\x8f\x92\x89\xbd\x8c\x05\x2d\x4e\x88\x31\x6c\xc3\x3b"
      "\x02\x55\xef\x1b\xfc\xa4\xc1\x70\x67\xd7\xf7\x81\x75\xc5\x6d\xb4\x81\xfe"
      "\x8d\xc6\xf7\x3b\x1c\xbd\xf9\xd5\x82\x3f\x11\x5c\x9e\x03\xf2\xdf\xd0\x7b"
      "\xc1\xad\x88\x56\x4d\x48\xb1\x8c\xd9\xa3\x0d\x83\xcb\xd5\xe6\xa3\xee\xdc"
      "\xb0\xee\x86\xe5\xdd\x47\xf3\x28\x20\xcb\x74\xdc\xf7\x30\xb2\x05\x2b\x31"
      "\x29\x7b\x52\x9e\x5e\x24\xf0\x42\x33\x5d\x13\x91\x5e\x40\x48\x13\x2f\xe1"
      "\xa1\x01\x84\x1e\x91\x9c\x78\x70\xbb\x68\x0e",
      3521);
  *(uint64_t*)0x20000008 = 0xdc1;
  syscall(__NR_writev, r[0], 0x20000000ul, 1ul);
  return 0;
}