// https://syzkaller.appspot.com/bug?id=cd5f9935fc6dc97c061987696dd9d258110e19a4 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } #define MAX_FDS 30 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 #define USB_MAX_FDS 6 struct usb_endpoint_index { struct usb_endpoint_descriptor desc; int handle; }; struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bInterfaceClass; struct usb_endpoint_index eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bDeviceClass; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[USB_MAX_FDS]; static struct usb_device_index* lookup_usb_index(int fd) { for (int i = 0; i < USB_MAX_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) return &usb_devices[i].index; } return NULL; } static int usb_devices_num; static bool parse_usb_descriptor(const char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bDeviceClass = index->dev->bDeviceClass; index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces[index->ifaces_num].bInterfaceClass = iface->bInterfaceClass; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num].desc, buffer + offset, sizeof(iface->eps[iface->eps_num].desc)); iface->eps_num++; } } offset += desc_length; } return true; } static struct usb_device_index* add_usb_index(int fd, const char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= USB_MAX_FDS) return NULL; if (!parse_usb_descriptor(dev, dev_len, &usb_devices[i].index)) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response_in(int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, struct usb_qualifier_descriptor* qual, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_data = (char*)qual; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: break; } break; default: break; } break; default: break; } return false; } typedef bool (*lookup_connect_out_response_t)( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done); static bool lookup_connect_response_out_generic( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done) { switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_SET_CONFIGURATION: *done = true; return true; default: break; } break; } return false; } #define UDC_NAME_LENGTH_MAX 128 struct usb_raw_init { __u8 driver_name[UDC_NAME_LENGTH_MAX]; __u8 device_name[UDC_NAME_LENGTH_MAX]; __u8 speed; }; enum usb_raw_event_type { USB_RAW_EVENT_INVALID = 0, USB_RAW_EVENT_CONNECT = 1, USB_RAW_EVENT_CONTROL = 2, }; struct usb_raw_event { __u32 type; __u32 length; __u8 data[0]; }; struct usb_raw_ep_io { __u16 ep; __u16 flags; __u32 length; __u8 data[0]; }; #define USB_RAW_EPS_NUM_MAX 30 #define USB_RAW_EP_NAME_MAX 16 #define USB_RAW_EP_ADDR_ANY 0xff struct usb_raw_ep_caps { __u32 type_control : 1; __u32 type_iso : 1; __u32 type_bulk : 1; __u32 type_int : 1; __u32 dir_in : 1; __u32 dir_out : 1; }; struct usb_raw_ep_limits { __u16 maxpacket_limit; __u16 max_streams; __u32 reserved; }; struct usb_raw_ep_info { __u8 name[USB_RAW_EP_NAME_MAX]; __u32 addr; struct usb_raw_ep_caps caps; struct usb_raw_ep_limits limits; }; struct usb_raw_eps_info { struct usb_raw_ep_info eps[USB_RAW_EPS_NUM_MAX]; }; #define USB_RAW_IOCTL_INIT _IOW('U', 0, struct usb_raw_init) #define USB_RAW_IOCTL_RUN _IO('U', 1) #define USB_RAW_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_raw_event) #define USB_RAW_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP0_READ _IOWR('U', 4, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor) #define USB_RAW_IOCTL_EP_DISABLE _IOW('U', 6, __u32) #define USB_RAW_IOCTL_EP_WRITE _IOW('U', 7, struct usb_raw_ep_io) #define USB_RAW_IOCTL_EP_READ _IOWR('U', 8, struct usb_raw_ep_io) #define USB_RAW_IOCTL_CONFIGURE _IO('U', 9) #define USB_RAW_IOCTL_VBUS_DRAW _IOW('U', 10, __u32) #define USB_RAW_IOCTL_EPS_INFO _IOR('U', 11, struct usb_raw_eps_info) #define USB_RAW_IOCTL_EP0_STALL _IO('U', 12) #define USB_RAW_IOCTL_EP_SET_HALT _IOW('U', 13, __u32) #define USB_RAW_IOCTL_EP_CLEAR_HALT _IOW('U', 14, __u32) #define USB_RAW_IOCTL_EP_SET_WEDGE _IOW('U', 15, __u32) static int usb_raw_open() { return open("/dev/raw-gadget", O_RDWR); } static int usb_raw_init(int fd, uint32_t speed, const char* driver, const char* device) { struct usb_raw_init arg; strncpy((char*)&arg.driver_name[0], driver, sizeof(arg.driver_name)); strncpy((char*)&arg.device_name[0], device, sizeof(arg.device_name)); arg.speed = speed; return ioctl(fd, USB_RAW_IOCTL_INIT, &arg); } static int usb_raw_run(int fd) { return ioctl(fd, USB_RAW_IOCTL_RUN, 0); } static int usb_raw_configure(int fd) { return ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0); } static int usb_raw_vbus_draw(int fd, uint32_t power) { return ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power); } static int usb_raw_ep0_write(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io); } static int usb_raw_ep0_read(int fd, struct usb_raw_ep_io* io) { return ioctl(fd, USB_RAW_IOCTL_EP0_READ, io); } static int usb_raw_event_fetch(int fd, struct usb_raw_event* event) { return ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event); } static int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor* desc) { return ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc); } static int usb_raw_ep_disable(int fd, int ep) { return ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, ep); } static int usb_raw_ep0_stall(int fd) { return ioctl(fd, USB_RAW_IOCTL_EP0_STALL, 0); } #define USB_MAX_PACKET_SIZE 4096 struct usb_raw_control_event { struct usb_raw_event inner; struct usb_ctrlrequest ctrl; char data[USB_MAX_PACKET_SIZE]; }; struct usb_raw_ep_io_data { struct usb_raw_ep_io inner; char data[USB_MAX_PACKET_SIZE]; }; static void set_interface(int fd, int n) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return; if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) { for (int ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) { int rv = usb_raw_ep_disable( fd, index->ifaces[index->iface_cur].eps[ep].handle); if (rv < 0) { } else { } } } if (n >= 0 && n < index->ifaces_num) { for (int ep = 0; ep < index->ifaces[n].eps_num; ep++) { int rv = usb_raw_ep_enable(fd, &index->ifaces[n].eps[ep].desc); if (rv < 0) { } else { index->ifaces[n].eps[ep].handle = rv; } } index->iface_cur = n; } } static int configure_device(int fd) { struct usb_device_index* index = lookup_usb_index(fd); if (!index) return -1; int rv = usb_raw_vbus_draw(fd, index->bMaxPower); if (rv < 0) { return rv; } rv = usb_raw_configure(fd); if (rv < 0) { return rv; } set_interface(fd, 0); return 0; } static volatile long syz_usb_connect_impl(uint64_t speed, uint64_t dev_len, const char* dev, const struct vusb_connect_descriptors* descs, lookup_connect_out_response_t lookup_connect_response_out) { if (!dev) { return -1; } int fd = usb_raw_open(); if (fd < 0) { return fd; } if (fd >= MAX_FDS) { close(fd); return -1; } struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } char device[32]; sprintf(&device[0], "dummy_udc.%llu", procid); int rv = usb_raw_init(fd, speed, "dummy_udc", &device[0]); if (rv < 0) { return rv; } rv = usb_raw_run(fd); if (rv < 0) { return rv; } bool done = false; while (!done) { struct usb_raw_control_event event; event.inner.type = 0; event.inner.length = sizeof(event.ctrl); rv = usb_raw_event_fetch(fd, (struct usb_raw_event*)&event); if (rv < 0) { return rv; } if (event.inner.type != USB_RAW_EVENT_CONTROL) continue; char* response_data = NULL; uint32_t response_length = 0; struct usb_qualifier_descriptor qual; if (event.ctrl.bRequestType & USB_DIR_IN) { if (!lookup_connect_response_in(fd, descs, &event.ctrl, &qual, &response_data, &response_length)) { usb_raw_ep0_stall(fd); continue; } } else { if (!lookup_connect_response_out(fd, descs, &event.ctrl, &done)) { usb_raw_ep0_stall(fd); continue; } response_data = NULL; response_length = event.ctrl.wLength; } if ((event.ctrl.bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD && event.ctrl.bRequest == USB_REQ_SET_CONFIGURATION) { rv = configure_device(fd); if (rv < 0) { return rv; } } struct usb_raw_ep_io_data response; response.inner.ep = 0; response.inner.flags = 0; if (response_length > sizeof(response.data)) response_length = 0; if (event.ctrl.wLength < response_length) response_length = event.ctrl.wLength; response.inner.length = response_length; if (response_data) memcpy(&response.data[0], response_data, response_length); else memset(&response.data[0], 0, response_length); if (event.ctrl.bRequestType & USB_DIR_IN) { rv = usb_raw_ep0_write(fd, (struct usb_raw_ep_io*)&response); } else { rv = usb_raw_ep0_read(fd, (struct usb_raw_ep_io*)&response); } if (rv < 0) { return rv; } } sleep_ms(200); return fd; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; const char* dev = (const char*)a2; const struct vusb_connect_descriptors* descs = (const struct vusb_connect_descriptors*)a3; return syz_usb_connect_impl(speed, dev_len, dev, descs, &lookup_connect_response_out_generic); } //% 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; } uint64_t r[1] = {0xffffffffffffffff}; 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, "jfs\000", 4); memcpy((void*)0x20005e40, "./file0\000", 8); memcpy( (void*)0x20011d40, "\x78\x9c\xec\xdd\xcb\x6f\x1d\x57\x1d\x07\xf0\xdf\x7d\x3a\x76\x68\x6a\x75" "\x51\x95\x08\x21\x37\x2d\x8f\x52\x9a\x67\x09\x81\x02\x6d\x17\xb0\x60\xd3" "\x05\xca\x16\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x11\x71\xe5\x0d\x0b" "\x56\xfc\x05\x20\x24\x96\x08\xb1\x44\x2c\xf8\x03\xb2\x60\xcb\x8e\x15\x2b" "\x22\x25\x48\xa0\xae\x18\x34\xf6\x39\xc9\x78\x72\x6f\xae\x53\xc7\x77\x6c" "\x9f\xcf\x47\x72\x66\x7e\x73\x66\x7c\xcf\xe4\x7b\x9f\x9e\x99\x7b\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef\x7f\xef\x07\x67" "\x7a\x11\x71\xe9\xe7\x69\xc1\x72\xc4\x67\x62\x10\xd1\x8f\x58\xac\xeb\x95" "\x88\x58\x5c\x59\xce\xeb\x0f\x23\xe2\x85\xd8\x6c\x8e\xe7\x23\x62\xb4\x10" "\x51\x6f\xbf\xf9\xcf\xb3\x11\xaf\x47\xc4\x9d\x63\x11\xf7\xee\xdf\x5a\xad" "\x17\x9f\xdd\x61\x3f\xbe\xfb\xc7\xbf\xff\xee\x87\x47\xdf\xf9\xdb\x1f\x46" "\xa7\xfe\xfb\xa7\x1b\x83\x37\xa6\xad\x77\xf3\xe6\xaf\xfe\xf3\xe7\xdb\xbb" "\xdb\x67\x00\x00\x00\x28\x4d\x55\x55\x55\x2f\x7d\xcc\x3f\x9e\x3e\xdf\xf7" "\xbb\xee\x14\x00\x30\x17\xf9\xf5\xbf\x4a\xf2\xf2\x43\x5f\xff\xfa\x9f\xef" "\xfc\x65\x3f\xf5\x47\xad\x56\xab\xd5\xea\x39\xd4\x4d\xd5\x64\xb7\x9b\x45" "\x44\xac\x37\xb7\xa9\xdf\x33\x38\x1c\x0f\x00\x07\xcc\x7a\x7c\xd2\x75\x17" "\xe8\x90\xfc\x8b\x36\x8c\x88\xa3\x5d\x77\x02\xd8\xd7\x7a\x5d\x77\x80\x3d" "\x71\xef\xfe\xad\xd5\x5e\xca\xb7\xd7\x7c\x3d\x58\xd9\x6a\xcf\xe7\x82\x6c" "\xcb\x7f\xbd\xf7\xe0\xfa\x8e\x69\xd3\x59\xda\xe7\x98\xcc\xeb\xfe\xb5\x11" "\x83\x78\x6e\x4a\x7f\x16\xe7\xd4\x87\xfd\x24\xe7\xdf\x6f\xe7\x7f\x69\xab" "\x7d\x9c\xd6\xdb\xeb\xfc\xe7\x65\x5a\xfe\xe3\xad\x4b\x9f\x8a\x93\xf3\x1f" "\xb4\xf3\x6f\x39\x3c\xf9\xf7\x27\xe6\x5f\xaa\x9c\xff\xf0\x89\xf2\x1f\xc8" "\x1f\x00\x00\x00\x00\x00\xf6\xb1\xfc\xf7\xff\xe5\x8e\x8f\xff\x2e\xec\x7e" "\x57\x76\xe4\x71\xc7\x7f\x57\xe6\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78" "\xda\x76\x3b\xfe\xdf\x03\xc6\xff\x03\x00\x00\x80\x7d\xab\xfe\xac\x5e\xfb" "\xcd\xb1\x87\xcb\xa6\x7d\x17\x5b\xbd\xfc\x62\x2f\xe2\x99\xd6\xfa\x40\x61" "\xd2\xc5\x32\x4b\x5d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4a" "\x32\xdc\x3a\x87\xf7\x62\x2f\x62\x14\x11\xcf\x2c\x2d\x55\x55\x55\xff\x34" "\xb5\xeb\x27\xb5\xdb\xed\x0f\xba\xd2\xf7\x1f\x4a\xd6\xf5\x93\x3c\x00\x00" "\x6c\xb9\x73\xac\x75\x2d\x7f\x2f\xe2\x48\x44\x5c\x4c\xdf\xf5\x37\x5a\x5a" "\x1a\xdd\xd9\x6a\xa9\x16\x17\xf2\xfb\xd9\xf1\xc2\x91\x6a\xb1\xf1\xb9\x36" "\x4f\xeb\x65\x0b\xe3\x1d\xbc\x21\x1e\x8e\xab\xfa\x97\x1d\x69\x6c\xd7\x34" "\xeb\xf3\xf2\xac\xf6\xf6\xef\xab\x6f\x6b\x5c\x0d\x76\xd0\xb1\xf9\xe8\x2a" "\x6d\x00\xd8\xb2\xf5\x6a\x74\xcf\x2b\xd2\x21\x53\x55\xcf\x46\xd7\xef\x72" "\x38\x18\x3c\xfe\x0f\x1f\x8f\x7f\x76\xa2\xeb\xfb\x29\x00\x00\x00\xb0\xf7" "\xaa\xaa\xaa\x7a\xe9\xeb\xbc\x8f\xa7\x63\xfe\xfd\xae\x3b\x05\x00\xcc\x45" "\x7e\xfd\x6f\x1f\x17\x78\x2a\xf5\x20\x9e\xee\xef\x53\xab\xd5\x6a\xb5\x5a" "\xbd\xab\xba\xa9\x9a\xec\x76\xb3\x88\x88\xf5\xe6\x36\xf5\x7b\x06\xc3\xf1" "\x03\xc0\x01\xb3\x1e\x9f\x74\xdd\x05\x3a\x24\xff\xa2\x0d\x23\xe2\x85\xae" "\x3b\x01\xec\x6b\xbd\xae\x3b\xc0\x9e\xb8\x77\xff\xd6\x6a\x2f\xe5\xdb\x6b" "\xbe\x1e\xa4\xf1\xdd\xf3\xb9\x20\xdb\xf2\x5f\xef\x6d\x6e\x97\xb7\x9f\x34" "\x9d\xa5\x7d\x8e\xc9\xbc\xee\x5f\x1b\x31\x88\xe7\xa6\xf4\xe7\xf9\x39\xf5" "\x61\x3f\xc9\xf9\xf7\xdb\xf9\x5f\xda\x6a\x1f\xa7\xf5\xf6\x3a\xff\x79\x99" "\x96\x7f\xbd\x9f\xcb\x1d\xf4\xa7\x6b\x39\xff\x41\x3b\xff\x96\xc3\x93\x7f" "\x7f\x62\xfe\xa5\xca\xf9\x0f\x9f\x28\xff\x81\xfc\x01\x00\x00\x00\x00\x60" "\x1f\xcb\x7f\xff\x5f\x76\xfc\x37\xef\x32\x00\x00\x00\x00\x00\x00\x00\x1c" "\x38\xf7\xee\xdf\x5a\xcd\xd7\xbd\xe6\xe3\xff\x9f\x9b\xb0\x9e\xeb\x3f\x0f" "\xa7\x9c\x7f\x4f\xfe\x45\xca\xf9\xf7\x5b\xf9\x7f\xb9\xb5\xde\xa0\x31\x7f" "\xf7\xed\x87\xf9\xff\xfb\xfe\xad\xd5\xdf\xdf\xf8\xd7\x67\xf3\x74\xa7\xf9" "\x2f\xe4\x99\x5e\xba\x67\xf5\xd2\x3d\xa2\x97\x6e\xa9\x37\x4c\xd3\xdd\xec" "\xdd\xa3\x36\x46\x83\x71\x7d\x4b\xa3\x5e\x7f\x30\x4c\xe7\xfc\x54\xa3\xf7" "\xe2\x4a\x5c\x8d\xb5\x38\xbd\x6d\xdd\x7e\xfa\xff\x78\xd8\x7e\x66\x5b\x7b" "\xdd\xd3\xd1\xb6\xf6\xb3\xdb\xda\x87\x8f\xb4\x9f\xdb\xd6\x3e\x4a\xdf\x3b" "\x50\x2d\xe6\xf6\x93\xb1\x1a\x3f\x89\xab\xf1\xee\x66\x7b\xdd\xb6\x30\x63" "\xff\x8f\xcc\x68\xaf\x66\xb4\xe7\xfc\x07\x1e\xff\x45\xca\xf9\x0f\x1b\x3f" "\x75\xfe\x4b\xa9\xbd\xd7\x9a\xd6\xee\x7e\xdc\x7f\xe4\x71\xdf\x9c\x4e\xba" "\x9d\xb7\xae\x7c\xfe\x97\xa7\xf7\x7e\x77\x66\xda\x88\xc1\x83\x7d\x6b\xaa" "\xf7\xef\x44\x07\xfd\xd9\xfc\x3f\x39\x3a\x8e\x9f\x5d\x5f\xbb\x76\xf2\xe6" "\xe5\x1b\x37\xae\x9d\x89\x34\xd9\xb6\xf4\x6c\xa4\xc9\x53\x96\xf3\x1f\xa5" "\x9f\x07\xcf\xff\x2f\x6d\xb5\xe7\xe7\xfd\xe6\xe3\xf5\xee\xc7\xe3\x27\xce" "\x7f\xbf\xd8\x88\xe1\xd4\xfc\x5f\x6a\xcc\xd7\xfb\xfb\xca\x9c\xfb\xd6\x85" "\x9c\xff\x38\xfd\xe4\xfc\xdf\x4d\xed\x93\x1f\xff\x07\x39\xff\xe9\x8f\xff" "\x57\x3b\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3c\x4e" "\x55\x55\x9b\x97\x88\xbe\x15\x11\xe7\xd3\xf5\x3f\x5d\x5d\x9b\x09\x00\xcc" "\x57\x7e\xfd\xaf\x92\xbc\x5c\xad\x56\xab\xd5\x6a\xf5\xe1\xab\x9b\xaa\xc9" "\xde\x6c\x16\x11\xf1\xd7\xe6\x36\xf5\x7b\x86\x5f\x4c\xfa\x65\x00\xc0\x7e" "\xf6\xbf\x88\xf8\x47\xd7\x9d\xa0\x33\xf2\x2f\x58\xfe\xbe\xbf\x7a\xfa\x72" "\xd7\x9d\x01\xe6\xea\xfa\x87\x1f\xfd\xe8\xf2\xd5\xab\x6b\xd7\xae\x77\xdd" "\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xd3\xca\xe3\x7f\xae\x34\xc6\x7f\x7e" "\x39\x22\x96\x5b\xeb\x6d\x1b\xff\xf5\xed\x58\xd9\xed\xf8\x9f\xc3\x3c\xf3" "\x60\x80\xd1\xa7\x3c\xd0\xf7\x14\x1b\xfd\xf1\xa0\xdf\x18\x6e\xfc\xc5\xd8" "\x1c\x9f\xfb\xe4\xb4\xf1\xbf\x4f\xc4\xe3\xc7\xff\x1e\xce\xb8\xbd\xd1\x8c" "\xf6\xf1\x8c\xf6\x85\x19\xed\x47\x66\xb4\x4f\xbc\xd0\xa3\x21\xe7\xff\x62" "\x63\xbc\xf3\x3a\xff\xe3\xad\xe1\xd7\x4b\x18\xff\xb5\x3d\xe6\x7d\x09\x72" "\xfe\x27\x1a\xf7\xe7\x3a\xff\x2f\xb5\xd6\x6b\xe6\x5f\xfd\xf6\x20\xe7\xdf" "\xdf\x96\xff\xa9\x1b\x1f\xfc\xf4\xd4\xf5\x0f\x3f\x7a\xed\xca\x07\x97\xdf" "\x5f\x7b\x7f\xed\xc7\xe7\xce\x9c\x39\x7d\xee\xfc\xf9\x0b\x17\x2e\x9c\x7a" "\xef\xca\xd5\xb5\xd3\x5b\xff\x76\xd8\xe3\xbd\x95\xf3\xcf\x63\x5f\x3b\x0f" "\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff\x42\xaa\xe5\x5f\x96\x9c\xff" "\x17\x53\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8" "\xbf\x2c\x39\xff\x57\x52\x2d\xff\xb2\xe4\xfc\xbf\x92\x6a\xf9\x97\x25\xe7" "\xff\x6a\xaa\xe5\x5f\x96\x9c\xff\x57\x53\x2d\xff\xb2\xe4\xfc\x5f\x4b\xb5" "\xfc\xcb\x92\xf3\x3f\x99\x6a\xf9\x97\x25\xe7\x7f\x2a\xd5\xf2\x2f\x4b\xce" "\x3f\x1f\xe1\x92\x7f\x59\x72\xfe\xf9\xcc\x06\xf9\x97\x25\xe7\x7f\x36\xd5" "\xf2\x2f\x4b\xce\xff\x5c\xaa\xe5\x5f\x96\x9c\xff\xeb\xa9\x96\x7f\x59\x72" "\xfe\x5f\x4b\xb5\xfc\xcb\x92\xf3\x3f\x9f\x6a\xf9\x97\x25\xe7\xff\xf5\x54" "\xcb\xbf\x2c\x39\xff\x0b\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92" "\xf3\xff\x66\xaa\xe5\x5f\x96\x9c\xff\x1b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a" "\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff\x77\x52\x2d\xff\xb2" "\xe4\xfc\xdf\x4c\xb5\xfc\xcb\xf2\xf0\xfb\xff\xcd\x98\x31\x63\x26\xcf\x74" "\xfd\xcc\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb4\xcd\xe3\x74\xe2" "\xae\xf7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xfe\xcf\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x15\x76\xe0\x40\x00\x00\x00\x00\x00\xc8" "\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x77\x6f\x31\x72" "\xdd\xf5\x1d\xc0\xcf\x5e\xb3\x76\x80\x18\x08\xa9\x93\x9a\xb0\x76\x8c\x31" "\xce\x92\x5d\x5f\xe2\x0b\xad\x8b\x09\xd7\x06\x28\xe5\x12\x0a\xbd\x60\xbb" "\xde\xb5\x59\xf0\x2d\xde\x75\x09\x14\xc9\x46\x81\x12\x09\xa3\xa2\x8a\xaa" "\xa9\xaa\xb6\x80\x50\x9b\x97\x0a\xab\xe2\x81\x56\x14\xe5\xa1\x6a\xd5\xa7" "\xd2\x3e\xd0\x97\x8a\xaa\x12\x52\xa3\x2a\xa0\x40\x85\xd4\xa2\x36\x5b\xcd" "\x39\xff\xff\x7f\x67\x66\x67\x67\xd6\xf1\xd8\x9e\x3d\xff\xcf\x47\xb2\x7f" "\xbb\x33\x67\xe6\x9c\x39\x73\x66\x76\xbf\x63\x7f\x67\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xa0\xd9\xd6\x37\xcd\x7d\x6e\xa8\x28\x8a\xc6\x9f\xf2\xaf\x4d\x45\xf1\xa2" "\xc6\xd7\x1b\x26\x37\x95\xa7\xbd\xfe\x56\x6f\x21\x00\x00\x00\x70\xbd\xfe" "\xaf\xfc\xfb\xb9\x3b\xd2\x09\x47\xd6\x70\xa1\xa6\x65\xfe\xfe\xde\x7f\xfc" "\xc6\xd2\xd2\xd2\x52\xf1\xc1\x91\xdf\x1f\xfb\xd2\xd2\x52\x3a\x63\xb2\x28" "\xc6\x6e\x2b\x8a\xf2\xbc\xe8\xea\xbf\x7f\x68\xa8\x79\x99\xe0\xf1\x62\x62" "\x68\xb8\xe9\xfb\xe1\x1e\xab\x1f\xe9\x71\xfe\x68\x8f\xf3\xc7\x7a\x9c\x3f" "\xde\xe3\xfc\xdb\x7a\x9c\x3f\xd1\xe3\xfc\x15\x3b\x60\x85\x0d\xd5\xeb\x31" "\xe5\x95\x6d\x2f\xbf\xdc\x54\xed\xd2\xe2\xce\x62\xac\x3c\x6f\x7b\x87\x4b" "\x3d\x3e\x74\xdb\xf0\x70\x7c\x2d\xa7\x34\x54\x5e\x66\x69\xec\x64\x31\x5f" "\x9c\x2e\xe6\x8a\x99\x96\xe5\xab\x65\x87\xca\xe5\xbf\xb5\xb5\xb1\xae\xb7" "\x17\x71\x5d\xc3\x4d\xeb\xda\xd2\x38\x42\x7e\xf4\xa9\x13\x71\x1b\x86\xc2" "\x3e\xde\xde\xb2\xae\xe5\xeb\x8c\x7e\xf0\xc6\x62\xf2\xc7\x3f\xfa\xd4\x89" "\x3f\x5b\x7c\xf6\xee\x4e\xb3\xe7\x6e\x68\xb9\xbe\x6a\x3b\x77\x6e\x6b\x6c" "\xe7\x67\xc2\x29\xd5\xb6\x0e\x15\xb7\xa5\x7d\x12\xb7\x73\xb8\x69\x3b\xb7" "\x74\xb8\x4f\x46\x5a\xb6\x73\xa8\xbc\x5c\xe3\xeb\xf6\xed\x7c\x6e\x8d\xdb" "\x39\x52\xee\x99\x0e\x3b\xe4\x06\x6b\xbf\xcf\x27\x8a\xe1\xf2\xeb\xef\x94" "\xfb\x69\xb4\xf9\x65\xbd\xb4\x9f\xb6\x84\xd3\xfe\xfb\xbe\xa2\x28\x2e\x2f" "\x6f\x76\xfb\x32\x2b\xd6\x55\x0c\x17\x1b\x5b\x4e\x19\x5e\xbe\x7f\x26\xaa" "\x23\xb2\x71\x1d\x8d\x43\xe9\x65\xc5\xe8\x35\x1d\xa7\x5b\xd7\x70\x9c\x36" "\xe6\xec\xf6\xd6\xe3\xb4\xfd\x31\x11\xef\xff\xad\xe1\x72\xa3\xab\x6c\x43" "\xf3\xdd\xf4\x83\x4f\x8f\xaf\xb8\xdf\xaf\xf5\x38\x8d\x1a\xb7\x7a\xb5\xc7" "\x4a\xfb\x31\xd8\xef\xc7\xca\x48\xa7\x1b\x77\x13\xac\xbc\x3f\xab\xe3\xe2" "\x3b\xe5\x8d\x7e\xa2\xe3\x31\xb8\x3d\xdc\xfe\x4f\xed\x58\xfd\x18\xec\x78" "\xec\x74\x38\x06\xd3\xed\x6e\x3a\x06\xb7\xf5\x3a\x06\x87\xc7\x47\xca\x6d" "\x4e\x77\xc2\x50\x79\x99\xe5\x63\x70\x77\xcb\xf2\x23\xe5\x9a\x86\xca\xf9" "\xcc\x8e\xee\xc7\xe0\xf4\xe2\x99\xf3\xd3\x0b\x9f\xf8\xe4\xeb\xe6\xcf\x1c" "\x3f\x35\x77\x6a\xee\xec\xde\xdd\xbb\x67\xf6\xee\xdf\x7f\xf0\xe0\xc1\xe9" "\x93\xf3\xa7\xe7\x66\xaa\xbf\x5f\xe0\xde\x1e\x7c\x1b\x8b\xe1\xf4\x18\xd8" "\x16\xf6\x5d\x7c\x0c\xbc\xa6\x6d\xd9\xe6\x43\x75\xe9\x2b\xfd\x7b\x1c\x4e" "\x74\x79\x1c\x6e\x6a\x5b\xb6\xdf\x8f\xc3\xd1\xf6\x1b\x37\x74\x73\x1e\x90" "\x2b\x8f\xe9\xea\xb1\xf1\xfe\xc6\x4e\x9f\xb8\x32\x5c\xac\xf2\x18\x2b\xef" "\x9f\x5d\xd7\xff\x38\x4c\xb7\xbb\xe9\x71\x38\xda\xf4\x38\xec\xf8\x33\xa5" "\xc3\xe3\x70\x74\x0d\x8f\xc3\xc6\x32\xe7\x77\xad\xed\x77\x96\xd1\xa6\x3f" "\x9d\xb6\xe1\x46\xfd\x2c\xd8\xd4\x74\x0c\xb6\xff\x3e\xd2\x7e\x0c\xf6\xfb" "\xf7\x91\x41\x39\x06\x27\xc2\x71\xf1\xaf\xbb\x56\xff\x59\xb0\x25\x6c\xef" "\x13\x53\xd7\xfa\xfb\xc8\xc8\x8a\x63\x30\xdd\xdc\xf0\xdc\xd3\x38\x25\xfd" "\xbe\x3f\x71\xb0\x1c\x9d\x8e\xcb\x7b\x1a\x67\xdc\x3e\x5e\x5c\x5c\x98\xbb" "\xf0\xc0\x63\xc7\x17\x17\x2f\xec\x2e\xc2\xb8\x29\x5e\xde\x74\xac\xb4\x1f" "\xaf\x1b\x9b\x6e\x53\xb1\xe2\x78\x1d\xbe\xe6\xe3\xf5\xc8\xfc\xbd\x4f\xdc" "\xd3\xe1\xf4\x4d\x61\x5f\x4d\xbc\xae\xf1\xd7\xc4\xaa\xf7\x55\x63\x99\x7d" "\x0f\x74\xbf\xaf\xca\x9f\x6e\x9d\xf7\x67\xcb\xa9\x7b\x8a\x30\xfa\xec\x66" "\xef\xcf\x4e\x3f\xcd\x1b\xfb\x33\x65\xc9\x2e\xfb\xb3\xb1\xcc\x67\xa6\xaf" "\xff\x77\xf1\x94\x4b\x9b\x9e\x7f\xc7\x56\x79\xfe\x8d\xb9\xff\xf9\x6a\x7d" "\xe9\xaa\x1e\x1f\x19\x1b\xad\x1e\xbf\x23\x69\xef\x8c\xb5\x3c\x1f\xb7\xde" "\x55\xa3\xe5\x73\xd7\x50\xb9\xee\xe7\xa6\xd7\xf6\x7c\x3c\x16\xfe\xdc\xec" "\xe7\xe3\x3b\xbb\x3c\x1f\x6f\x6e\x5b\xb6\xdf\xcf\xc7\x63\xed\x37\x2e\x3e" "\x1f\x0f\xf5\x7a\xb5\xe3\xfa\xb4\xdf\x9f\x13\xe1\x38\x39\x3d\xd3\xfd\xf9" "\xb8\xb1\xcc\xe6\x3d\xd7\x7a\x4c\x8e\x76\x7d\x3e\xbe\x2f\xcc\xa1\xb0\xff" "\x5f\x1b\x92\x42\xca\x45\x4d\xc7\xce\x6a\xc7\x6d\x5a\xd7\xe8\xe8\x58\xb8" "\x5d\xa3\x71\x0d\xad\xc7\xe9\xde\x96\xe5\xc7\x42\x36\x6b\xac\xeb\xa9\x3d" "\x2f\xec\x38\xdd\x79\x5f\x75\x5d\x23\xe9\xd6\x2d\xbb\x59\xc7\xe9\x64\xdb" "\xb2\xfd\x3e\x4e\xd3\xf3\xd5\x6a\xc7\xe9\x50\xaf\x57\xdf\x5e\x98\xf6\xfb" "\x73\x22\x1c\x17\x77\xee\xed\x7e\x9c\x36\x96\x79\x7a\xdf\xf5\x3f\x77\x6e" "\x88\x5f\x36\x3d\x77\x8e\xf7\x3a\x06\xc7\x46\xc6\x1b\xdb\x3c\x96\x0e\xc2" "\xea\xf9\x7e\x69\x43\x3c\x06\x1f\x28\x4e\x14\xe7\x8a\xd3\xc5\x6c\x79\xee" "\x78\x79\x3c\x0d\x95\xeb\x9a\x7a\x70\x6d\xc7\xe0\x78\xf8\x33\x5a\x74\x7e" "\x61\xf4\x46\x3d\x57\x6e\xee\x72\x0c\xee\x6c\x5b\xb6\xdf\xc7\x60\xfa\x39" "\xb6\xda\xb1\x37\x34\xba\xf2\xc6\xf7\x41\xfb\xfd\x39\x11\x8e\x8b\x27\x1f" "\xec\x7e\x0c\x36\x96\x79\xf3\x81\xfe\xfe\xee\xba\x33\x9c\x92\x96\x69\xfa" "\xdd\xb5\xfd\xf5\xb5\xd5\x5e\xf3\xba\xa7\x6d\x37\xdd\xc8\xd7\xbc\x1a\xdb" "\xf9\xb7\x07\xba\xbf\x36\xdb\x58\xe6\xf4\xc1\x6b\xcd\x99\xdd\xf7\xd3\xfd" "\xe1\x94\xdb\x3b\xec\xa7\xf6\xc7\x6f\xa7\xc7\x54\xe3\xf4\xd9\xe2\xe6\xec" "\xa7\xcd\x61\x3b\x9f\x3d\xb8\xfa\x7e\x6a\x6c\x4f\x63\x99\x2f\x1d\x5a\xe3" "\xf1\x74\xa4\x28\x8a\x4b\x8f\x3e\x54\xbe\xde\x1b\xfe\x7d\xe5\x2f\x2f\x7e" "\xf7\x1b\x2d\xff\xee\xd2\xe9\xdf\x74\x2e\x3d\xfa\xd0\x0f\x5f\x7c\xf2\xef" "\xae\x65\xfb\x01\x58\xff\x9e\xaf\xc6\xc6\xea\x67\x5d\xd3\xbf\x4c\xad\xe5" "\xdf\xff\x01\x00\x00\x80\x75\x21\xe6\xfe\xe1\x30\x13\xf9\x1f\x00\x00\x00" "\x6a\x23\xe6\xfe\xf8\xbf\xc2\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xd1" "\x30\x93\x1e\xf9\xbf\xd7\x7b\xdb\xad\x17\x9b\xdf\xfc\xec\xfc\xf3\x97\x8a" "\xd4\xcc\x5f\x0a\xe2\xf9\x69\x37\x3c\x5c\x2d\x17\x3b\xae\x33\xe1\xfb\xc9" "\xa5\x65\x8d\xd3\x1f\xfa\xda\xdc\x4f\xfe\xfa\xd2\xda\xd6\x3d\x5c\x14\xc5" "\xff\x3e\xfc\xdb\x1d\x97\xdf\xfc\x70\xdc\xae\xca\x64\xd8\xce\xab\x6f\x69" "\x3d\x7d\xe5\x05\x2f\xad\x69\xfd\xc7\x1e\x59\x5e\xae\xb9\x4e\xfc\xe5\x70" "\xfd\xf1\xf6\xac\xf5\x65\xa0\x4e\x15\xdc\x99\xa2\x28\xbe\x75\xc7\x17\xca" "\xf5\x4c\x7e\xe8\x4a\x39\x9f\x7e\xf8\x58\x39\xdf\x7b\xf9\x89\xc7\x1b\xcb" "\x3c\x77\xa8\xfa\x3e\x5e\xfe\x99\x97\x57\xcb\xff\x71\x28\xff\x1e\x39\x79" "\xbc\xe5\xf2\xcf\x84\xfd\xf0\xfd\x30\x67\xde\xd1\x79\x7f\xc4\xcb\x7d\xfd" "\xca\x6b\xb7\x1c\xf8\xc0\xf2\xfa\xe2\xe5\x86\xb6\xbd\xa4\xbc\xd9\x4f\x7e" "\xb8\xba\xde\xf8\x3e\x39\x5f\x7c\xbc\x5a\x3e\xee\xe7\xd5\xb6\xff\x6f\x3e" "\xff\xd4\xd7\x1b\xcb\x3f\xf6\xea\xce\xdb\x7f\x69\xb8\xf3\xf6\x3f\x15\xae" "\xf7\x6b\x61\xfe\xcf\x2b\xab\xe5\x9b\xef\x83\xc6\xf7\xf1\x72\x9f\x0d\xdb" "\x1f\xd7\x17\x2f\xf7\xc0\x57\xbf\xdd\x71\xfb\xaf\x7e\xae\x5a\xfe\xfc\x5b" "\xab\xe5\x8e\x85\x19\xd7\xbf\x33\x7c\xbf\xfd\xad\xcf\xce\x37\xef\xaf\xc7" "\x86\x8e\xb7\xdc\xae\xe2\x6d\xd5\x72\x71\xfd\x33\xdf\xfd\xdd\xf2\xfc\x78" "\x7d\xf1\xfa\xdb\xb7\x7f\xe2\xe8\x95\x96\xfd\xd1\x7e\x7c\x3c\xfd\xcf\xd5" "\xf5\x4c\xb7\x2d\x1f\x4f\x8f\xeb\x89\xfe\xaa\x6d\xfd\x8d\xeb\x69\x3e\x3e" "\xe3\xfa\x9f\xfa\x9d\x63\x2d\xfb\xb9\xd7\xfa\xaf\xbe\xf7\x99\x57\x36\xae" "\xb7\x7d\xfd\xf7\xb7\x2d\x77\xfe\xd1\x5d\xe5\xfa\x97\xaf\xaf\xf5\x1d\x9b" "\xfe\xe4\xb3\x5f\xe8\xb8\xbe\xb8\x3d\x47\xfe\xe2\x7c\xcb\xed\x39\xf2\x9e" "\xf0\x38\x0e\xeb\x7f\xf2\xc3\xe1\x78\x0c\xe7\xff\xf4\x6a\x75\x7d\xed\xef" "\xae\x70\xec\x3d\xad\xcf\x3f\x71\xf9\x2f\x6f\xba\xd4\x72\x7b\xa2\xb7\xff" "\xb8\x5a\xff\xd5\x37\x9c\x2a\xe7\x7f\x4c\xfe\xe4\x0f\x6f\x7f\xd1\x8b\x5f" "\x72\xf9\x55\x8d\x7d\x57\x14\xdf\x79\x5f\x75\x7d\xbd\xd6\x7f\xea\x4f\xcf" "\xb5\x6c\xff\x57\xee\xaa\xf6\x47\x3c\x3f\x76\xf4\xdb\xd7\xbf\x9a\xb8\xfe" "\x0b\x1f\x9f\x3a\x7b\x6e\xe1\xe2\xfc\x6c\xd3\x5e\x2d\xdf\x3b\xe7\x9d\xd5" "\xf6\xdc\x36\xb1\x61\x63\x63\x7b\xef\x08\xcf\xad\xed\xdf\x1f\x3d\xb7\xf8" "\x91\xb9\x0b\x93\x33\x93\x33\x45\x31\x59\xdf\xb7\xd0\x7b\xc1\xbe\x1a\xe6" "\x0f\xab\x71\xf9\x5a\x2f\xbf\xeb\x91\x70\x7f\xde\xf3\x07\xdf\xda\xb8\xe3" "\x9f\x3e\x1f\x4f\xff\x97\xf7\x57\xa7\x5f\x79\x47\xf5\x73\xeb\x35\x61\xb9" "\x2f\x86\xd3\x37\x85\xfb\xef\x7a\xd7\xff\xe4\xd6\xbb\xca\xc7\xf7\xd0\xd3" "\xd5\xf7\x2d\x3d\xf6\x3e\xd8\xb2\xfd\x3f\x0f\xae\x69\xc1\x70\xfb\xdb\x7f" "\x2f\x88\xc7\xfb\xf9\x57\x7c\xa4\xdc\x0f\x8d\xf3\xca\x9f\x1b\xf1\x71\x7d" "\x9d\xdb\xff\xbd\xd9\xea\x7a\xbe\x19\xf6\xeb\x52\x78\x67\xe6\x6d\x77\x2d" "\xaf\xaf\x79\xf9\xf8\xde\x08\x57\xde\x57\x3d\xde\xaf\x7b\xff\x85\xa7\xb9" "\x78\xbf\xfe\x79\xb8\xbf\xdf\xf5\xfd\xea\xfa\xe3\x76\xc5\xdb\xfb\xbd\xf0" "\x7b\xcc\xb7\x37\xb7\x3e\xdf\xc5\xe3\xe3\x9b\x97\x86\xdb\xaf\xbf\x7c\x17" "\x8f\xcb\xe1\xf9\xa4\xb8\x5c\x9d\x1f\x97\x8a\xfb\xfb\xca\x73\x77\x75\xdc" "\xbc\xf8\x3e\x24\xc5\xe5\xbb\xcb\xef\x7f\x2f\x5d\xcf\xdd\xd7\x74\x33\x57" "\xb3\xf0\x89\x85\xe9\xd3\xf3\x67\x2f\x3e\x36\xbd\x38\xb7\xb0\x38\xbd\xf0" "\x89\x4f\x1e\x3d\x73\xee\xe2\xd9\xc5\xa3\xe5\x7b\x79\x1e\xfd\x68\xaf\xcb" "\x2f\x3f\x3f\x6d\x2c\x9f\x9f\x66\xe7\xf6\xef\x2b\xca\x67\xab\x73\xd5\xb8" "\xc1\x6e\xf5\xf6\x9f\x7f\xe4\xc4\xec\x81\x99\x1d\xb3\x73\x27\x8f\x5f\x3c" "\xb9\xf8\xc8\xf9\xb9\x0b\xa7\x4e\x2c\x2c\x9c\x98\x9b\x5d\xd8\x71\xfc\xe4" "\xc9\xb9\x8f\xf7\xba\xfc\xfc\xec\xe1\xdd\x7b\x0e\xed\x3d\xb0\x67\xea\xd4" "\xfc\xec\xe1\x83\x87\x0e\xed\x3d\x34\x35\x7f\xf6\x5c\x63\x33\xaa\x8d\xea" "\x61\xff\xcc\xc7\xa6\xce\x5e\x38\x5a\x5e\x64\xe1\xf0\xbe\x43\xbb\x1f\x7c" "\x70\xdf\xcc\xd4\x99\x73\xb3\x73\x87\x0f\xcc\xcc\x4c\x5d\xec\x75\xf9\xf2" "\x67\xd3\x54\xe3\xd2\xbf\x35\x75\x61\xee\xf4\xf1\xc5\xf9\x33\x73\x53\x0b" "\xf3\x9f\x9c\x3b\xbc\xfb\xd0\xfe\xfd\x7b\x7a\xbe\x1b\xe0\x99\xf3\x27\x17" "\x26\xa7\x2f\x5c\x3c\x3b\x7d\x71\x61\xee\xc2\x74\x75\x5b\x26\x17\xcb\x93" "\x1b\x3f\xfb\x7a\x5d\x9e\x7a\x5a\xf8\xb7\xea\xf7\xd9\x76\x43\xd5\x1b\xf1" "\x15\xef\xbe\x7f\x7f\x7a\x7f\xd6\x86\xaf\x7d\x7a\xd5\xab\xaa\x16\x69\x7b" "\x03\xd1\x67\xc3\x7b\xd1\xfc\xc3\x4b\xcf\x1f\x5c\xcb\xf7\x31\xf7\x8f\x85" "\x99\xde\xff\xca\xbf\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x1e\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11" "\x73\xff\x44\x98\x49\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xee\xfd" "\xff\xd8\x9f\xd7\xff\xcf\x83\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb" "\xff\xeb\xff\xd3\x57\x83\xd6\xff\x8f\xb9\x7f\x43\x51\x64\x99\xff\x01\x00" "\x00\x20\x07\x31\xf7\x6f\x0c\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xbf" "\x3d\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x45\x61\x26\x99\xe4\x7f" "\xfd\xff\x35\xf5\xff\xf7\xf4\x2a\x5c\xe9\xff\xb7\x6e\xbf\xfe\x7f\xe7\xe3" "\x43\xff\xff\x16\xf4\xff\xe3\x9d\xa3\xff\x9f\x0d\xfd\xff\xee\xf4\xff\x7b" "\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\x8b\xc3" "\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x5f\x12\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xdc\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff" "\xa6\x30\x93\x4c\xf2\xbf\xfe\xbf\xcf\xff\xd7\xff\xd7\xff\xaf\x75\xff\xdf" "\xe7\xff\x67\x47\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xab\x41\xeb\xff\xc7\xdc\xff\xd2\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4" "\x20\xe6\xfe\x97\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x3c\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xce\x30\x93\x4c\xf2\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb\xff\xaf\x4f\xfa\xff\xdd\xe9" "\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x0d\x5a\xff\x3f\xe6\xfe" "\x57\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xdf\x15\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\xff\x33\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46" "\xcc\xfd\x9b\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xb5\xec" "\xff\xff\xd1\x7f\xe9\xff\x67\x4a\xff\xbf\x3b\xfd\xff\x1e\xba\xf7\xff\xdf" "\xa0\xff\xdf\x9d\xfe\xbf\xfe\xbf\xfe\x3f\xed\x06\xad\xff\x1f\x73\xff\xdd" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\xf7\x84\x99\xc8\xff\x00" "\x00\x00\x50\x1b\x31\xf7\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73" "\xff\x96\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x5e\xfd\xff\xfb\xc7" "\x33\xe9\xff\xfb\xfc\xff\x6c\xe9\xff\x77\xa7\xff\xdf\xc3\xcd\xf9\xfc\xff" "\xf1\xc6\x5d\xa1\xff\xdf\x7f\xb7\x7a\xfb\xf5\xff\xf5\xff\x59\x69\xd0\xfa" "\xff\x31\xf7\xbf\x32\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\xde" "\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x57\x85\x99\xc8\xff\x00\x00" "\x00\x50\x1b\x31\xf7\x4f\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf3" "\xea\xff\xd7\xf8\xf3\xff\xe3\x61\xa0\xff\x9f\x39\xfd\xff\xee\xf4\xff\x7b" "\xb8\x39\xfd\x7f\x9f\xff\x7f\x83\xdc\xea\xed\xd7\xff\xd7\xff\x67\xa5\x41" "\xeb\xff\xc7\xdc\xbf\x35\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\x7f" "\x5b\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x7d\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\xdb\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x35\xe9\xff\x27\xfa\xff\x79\xd3\xff\xef\x4e\xff\xbf\x18\xee\xba" "\x01\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\x7f\x75" "\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x8e\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\xd7\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7" "\xef\x0c\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5e" "\xbf\xfe\xff\xfa\xa4\xff\xdf\xdd\x8d\xec\xff\x4f\xf4\x61\xfb\x7d\xfe\xbf" "\xfe\xff\x7a\xde\x7e\xfd\x7f\xfd\x7f\x56\x1a\xb4\xfe\x7f\xcc\xfd\xaf\x0d" "\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xdf\x15\x66\x22\xff\x03\x00" "\x00\x40\x6d\xc4\xff\xbf\x59\xfd\xbf\x57\xf9\x1f\x00\x00\x00\xea\x28\xe6" "\xfe\xa9\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7" "\xf5\xeb\xff\xaf\x4f\xfa\xff\xdd\xf9\xfc\xff\x1e\xf4\xff\x63\x7f\xbe\xb1" "\x6d\xfa\xff\xfa\xff\xfa\xff\x5c\xb7\x41\xeb\xff\xc7\xdc\xff\xba\x30\x93" "\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\xa7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x67\xc2" "\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x9d\xd7\xaf\xff" "\xbf\x3e\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xbf\xcf\xff\xd7\xff\xd7\xff\xa7" "\xaf\x06\xad\xff\x1f\x73\xff\xee\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x3d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x7b\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xf7\x85\x99\x64\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x7d\xd2\xff\xef\x4e\xff\xbf" "\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\x3f\x18" "\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x3f\xcc\x44\xfe\x07\x00" "\x00\x80\xda\x88\xb9\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff" "\xc1\x30\x93\x4c\xf2\xbf\xfe\xff\x75\xf5\xff\x27\xe3\x17\x03\xdd\xff\xbf" "\x57\xff\x5f\xff\xbf\x75\xfd\xfa\xff\xfa\xff\x75\xa6\xff\xdf\x9d\xfe\x7f" "\x0f\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xf4\xd5\xa0\xf5\xff\x63\xee\x3f\x14" "\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xfa\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\x9f\x0b\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee" "\xff\xf9\x30\x93\x4c\xf2\xbf\xfe\xbf\xcf\xff\xd7\xff\xd7\xff\xd7\xff\xef" "\xbc\x7e\xfd\xff\xf5\x49\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xb3\xe9\xff\x8f" "\xde\x80\xed\xd7\xff\xd7\xff\x67\xa5\x41\xeb\xff\xc7\xdc\x7f\x38\xcc\x24" "\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x17\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x24" "\xcc\x24\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x9f\x73\xff\xbf\x71\xf0" "\xe8\xff\xd7\x8b\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\x67\xd3\xff\xbf\x11\xdb" "\x5f\xef\xfe\xff\x70\xcf\xdb\xaf\xff\x4f\x27\x83\xd6\xff\x8f\xb9\xff\x8d" "\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x0f\x85\x99\xc8\xff\x00" "\x00\x00\x50\x1b\x31\xf7\xbf\x29\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\xcd\x61\xfe\x34\x9e\x91\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xcf" "\xb9\xff\xef\xf3\xff\xeb\x47\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xf5" "\xff\x7d\xfe\x3f\x7d\x35\x68\xfd\xff\x98\xfb\xdf\x12\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6" "\xfe\xb7\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x3d\xcc\x24\x93" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79\xfd\xfa\xff\xeb\x93" "\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57\x83\xd6" "\xff\x8f\xb9\xff\x17\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\x1f" "\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x47\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\x3b\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x9d\xd7\xaf\xff\xbf\x3e\xe9\xff\x77\xa7\xff\xdf\x83\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x35\x68\xfd\xff\x98\xfb\xdf\x15\x66\x92" "\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x4b\x61\x26\xf2\x3f\x00\x00\x00" "\xd4\x46\xcc\xfd\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\xe5" "\x30\x93\x4c\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xeb" "\xff\xaf\x4f\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x5f\x0d\x5a\xff\x3f\xe6\xfe\xf7\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07" "\x31\xf7\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x7d\x61\x26" "\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xef\x0f\x33\xc9\x24\xff\xeb\xff\x67" "\xd9\xff\x4f\x37\x59\xff\xbf\xa2\xff\xaf\xff\xdf\x69\xfd\xfa\xff\xeb\x93" "\xfe\x7f\x77\xcb\xfd\xff\x1e\x9b\xa6\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff" "\x4f\x1f\x0c\x4c\xff\x7f\x43\xf5\x7d\xcc\xfd\x8f\x84\x99\x64\x92\xff\x01" "\x00\x00\x20\x07\x31\xf7\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\x57\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x18\x66\x92\x49" "\xfe\xd7\xff\xcf\xb2\xff\xef\xf3\xff\xf5\xff\xf5\xff\xf5\xff\x6b\x4b\xff" "\xbf\xbb\x7c\x3f\xff\xbf\xd3\x4f\xea\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xe9\xab\x81\xe9\xff\x87\xef\x63\xee\xff\x50\x98\x49\x26\xf9\x1f\x00\x00" "\x00\x72\x10\x73\xff\xaf\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xff" "\x5a\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xaf\x87\x99\x64\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xaf\xbf\x4f\xfd\xff\xf1\xf8" "\x85\xfe\xff\xcd\xa1\xff\xdf\x5d\xbe\xfd\xff\x35\xd2\xff\xd7\xff\xd7\xff" "\xd7\xff\xa7\xaf\x06\xad\xff\x1f\x73\xff\x6f\x84\x99\x64\x92\xff\x01\x00" "\x00\x20\x07\x31\xf7\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff" "\x68\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xb1\x30\x93\x4c\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xfb\xfc\xff\xf5\x49\xff" "\xbf\x3b\xfd\xff\x1e\x6e\x65\xff\xff\xa7\x4b\xfa\xff\xeb\x7c\xfb\xf5\xff" "\xf5\xff\x59\x69\xd0\xfa\xff\x31\xf7\x1f\x0f\x33\xc9\x24\xff\x03\x00\x00" "\x40\x0e\x62\xee\xff\xcd\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x13" "\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xb3\x61\x26\x99\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb\xd7\xff\x5f\x9f\xf4\xff\xbb" "\xd3\xff\xef\xc1\xe7\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57\x83\xd6\xff\x8f" "\xb9\x7f\x2e\xcc\x24\x93\xfc\x0f\x00\x00\x00\x35\x96\x5e\x0e\x8e\xb9\xff" "\x64\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xa9\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\x8f\x84\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x7d\xd2\xff\xef\x4e\xff\xbf\x07\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\x6a\xd0\xfa\xff\x31\xf7\xcf\x87\x99\x64" "\x92\xff\x01\x00\x00\x20\x07\x31\xf7\x7f\x34\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\xff\x63\xd5\x7f\xcb\x5c\x26\xff\x03\x00\x00\x40\x6d\x7c\xac" "\xfc\x7b\xa2\x38\x1d\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\xef\xbc\x7e\xfd\xff\xf5\x49\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff" "\xf5\xff\xf5\xff\xe9\xab\x41\xeb\xff\xc7\xdc\x7f\x26\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\x6c\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73" "\xff\xb9\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xf3\x61\x26\x99\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb\xd7\xff\x5f\x9f\x56" "\xf4\xef\x47\xaf\xed\xf2\xab\xf6\xff\x67\x0e\x2e\x1e\xd3\xff\xd7\xff\xd7" "\xff\xef\x4a\xff\x5f\xff\x5f\xff\x9f\x76\x83\xd6\xff\x8f\xb9\xff\xd1\x30" "\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x0b\x61\x26\xf2\x3f\x00\x00" "\x00\xd4\x46\xcc\xfd\x0b\x61\x26\xf2\xff\xff\xb3\x77\x57\xcb\x9a\x9c\x55" "\x1c\x87\x3f\xa0\x80\x99\xb3\x5c\x07\x37\xc1\xc5\x70\xcc\x19\xc1\x2d\xb8" "\xc3\xe0\xee\xee\xee\xee\xee\x10\xdc\xdd\xdd\x0f\xa8\xec\x5a\x6b\xd5\x30" "\xd3\xe9\x1e\x32\x9d\xc9\xdb\xef\x7a\x9e\x93\x55\x33\xc9\xae\xfe\x76\xb2" "\x53\xa9\x7f\x25\xbf\x6a\x00\x00\x00\x98\x46\xee\xfe\x7b\xc4\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x97\x9f\xaf\xff\x3f\x26\xef\xff" "\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77" "\xff\xf5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x67\xdc\x62\xff" "\x03\x00\x00\xc0\x34\x72\xf7\xdf\x2b\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\xef\x1d\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\xff\x00\xfd\xff\xb9\x93" "\xfe\x5f\xff\xaf\xff\xbf\x42\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\xae\x46\xeb\xff\x73\xf7\xdf\x27\x6e\x69\xb2\xff\x01\x00\x00" "\xe0\x60\xee\x7a\x4b\xbe\x28\x77\xff\x7d\xe3\x16\xfb\x1f\x00\x00\x00\xa6" "\x91\xbb\xff\x7e\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd\x7f\xff\xb8\xa5" "\xc9\xfe\x3f\x68\xff\x7f\xc7\x9b\xff\x86\xf4\xff\x27\xfd\xff\x7c\xfd\xbf" "\xf7\xff\xeb\xff\xf5\xff\x57\x4c\xff\xbf\x4e\xff\xbf\x61\xa3\xff\x3f\x9d" "\xf4\xff\x6b\xf4\xff\xfa\x7f\xfd\x3f\x97\x1a\xad\xff\xcf\xdd\xff\x80\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x30\x6e\xa9\xfd\x7f\xee\x36" "\xf8\x54\x00\x00\x00\xc0\x9e\x72\xf7\x3f\x28\x6e\xf1\xdf\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\x1f\x1c\xb7\x34\xd9\xff\x07\xed\xff\x57\xbe\x21\xfd\xff" "\x49\xff\xaf\xff\xdf\x78\xbe\xfe\xff\xa0\xfd\xff\xed\x4f\xfa\xff\x2b\xa0" "\xff\x5f\x77\xf5\xfd\xff\x5d\xae\xbb\xfb\xdd\xfa\xf6\xff\xde\xff\xbf\x4e" "\xff\xaf\xff\xd7\xff\x73\xa9\xd1\xfa\xff\xdc\xfd\x37\xc4\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x21\x71\x8b\xfd\x0f\x00\x00\x00\xd3\xc8\xdd" "\xff\xd0\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x58\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf9\xf9\xc3\xf5\xff\xde\xff\x7f" "\x45\xf4\xff\xeb\xbc\xff\x7f\x83\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\xab\xd1" "\xfa\xff\xdc\xfd\x0f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x23" "\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x91\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\xa8\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f" "\xfd\xff\xf2\xf3\xf5\xff\xc7\xa4\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb" "\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\xa3\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\x98\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x6c" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x3f\x2e\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\xe9\xff" "\x37\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd\xff\xf8\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x21\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\x9f\x18\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x4f\x8a" "\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff\x7f" "\x4c\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae\x46\xeb" "\xff\x73\xf7\x5f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x93\xe3" "\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x29\x71\x8b\xfd\x0f\x00\x00\x00" "\xd3\xc8\xdd\xff\xd4\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xf2\xf3\xf5\xff\xc7\xa4\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff\xeb\xff" "\xf5\xff\xec\x6a\xa0\xfe\xff\xa2\xaf\x3a\x77\x7a\x5a\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\x9f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\xcf\x88\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x67\xc6\x2d\x4d\xf6\xbf" "\xfe\x7f\x98\xfe\xff\x2c\xe7\xd3\xff\xeb\xff\x67\xe9\xff\xcf\x5f\xf4\xf7" "\x33\xe9\xff\xf5\xff\xd7\x82\xfe\x7f\x9d\xfe\x7f\x83\xfe\x5f\xff\xaf\xff" "\xd7\xff\xb3\xab\x81\xfa\xff\xb3\x5f\xe7\xee\x7f\x56\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\x9f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\xcf\x89\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xe7\xc6\x2d\x4d\xf6\xbf" "\xfe\x7f\x98\xfe\xff\x8c\xfe\x5f\xff\x3f\x4b\xff\xef\xfd\xff\x97\xd3\xff" "\x5f\x1b\xfa\xff\x75\xfa\xff\x0d\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xae\x46" "\xeb\xff\x73\xf7\x3f\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf" "\x8f\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x17\xc4\x2d\xf6\x3f\x00\x00" "\x00\x1c\xd4\x85\xcb\x7e\x27\x77\xff\x0b\xe3\x96\x26\xfb\x5f\xff\xbf\x6f" "\xff\x7f\xa7\x8b\x7e\x4f\xff\xaf\xff\xbf\xf4\xe7\x43\xff\xaf\xff\xd7\xff" "\xdf\xfa\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d\x8d" "\xd6\xff\xe7\xee\x7f\x51\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f" "\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x2f\x89\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x97\xc6\x2d\x4d\xf6\xbf\xfe\xdf\xfb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xf2\xf3\xf5\xff\xc7\xa4\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff" "\xeb\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\xcb\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f" "\x45\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x32\x6e\x69\xb2\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\xe9" "\xff\x37\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd\xff\xaa" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x3a\x6e\xb1\xff\x01\x00" "\x00\x60\x1a\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\xaf" "\x8d\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x2f\x3f\x5f\xff" "\x7f\x4c\xfa\xff\x75\x57\xdb\xff\xdf\xa0\xff\xd7\xff\xaf\xd0\xff\xeb\xff" "\xf5\xff\x5c\x6a\xb4\xfe\x3f\x77\xff\xeb\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xfa\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\x7f\x43\xdc" "\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xbf\x31\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfc\x7c\xfd\xff\x31\xe9\xff\xd7\x4d\xf6\xfe" "\xff\xdb\xe5\x3f\xbf\xfa\x7f\xfd\xff\x08\x9f\x5f\xff\xaf\xff\xe7\x72\xa3" "\xf5\xff\xb9\xfb\xdf\x14\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x37" "\xc7\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x5b\xe2\x16\xfb\x1f\x00\x00" "\x00\xa6\x91\xbb\xff\xad\x71\x4b\x93\xfd\x7f\xc0\xfe\xff\xfc\xfa\x37\xa4" "\xff\x3f\xe9\xff\xf5\xff\x1b\xcf\xd7\xff\xeb\xff\x67\xa6\xff\x5f\x37\x59" "\xff\xef\xfd\xff\xfa\xff\xa1\x3e\xbf\xfe\x5f\xff\xcf\xe5\x46\xeb\xff\x73" "\xf7\xbf\x2d\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x6f\x8f\x5b\xec" "\x7f\x00\x00\x00\x98\x46\xee\xfe\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23" "\x77\xff\x3b\xe3\x96\x26\xfb\xff\x80\xfd\xbf\xf7\xff\xeb\xff\xf5\xff\xfa" "\xff\x33\xfa\x7f\xfd\xff\x12\xfd\xff\x3a\xfd\xff\x06\xfd\xbf\xfe\x5f\xff" "\x7f\x41\xff\xcf\x9e\x46\xeb\xff\x73\xf7\xbf\x2b\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\xef\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xf7" "\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x7b\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xcb\xcf\xd7\xff\x1f\x93\xfe\x7f\x9d\xfe" "\x7f\x83\xfe\x5f\xff\xaf\xff\xf7\xfe\x7f\x76\x35\x5a\xff\x9f\xbb\xff\x7d" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x7f\xdc\x62\xff\x03\x00" "\x00\xc0\x34\x72\xf7\x7f\x20\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x3f" "\x18\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x7e\xbe\xfe" "\xff\x98\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d\x8d" "\xd6\xff\xe7\xee\xff\x50\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f" "\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x1f\x89\x5b\xec\x7f\x00\x00" "\x00\x98\x46\xee\xfe\x8f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\x97\x9f\xaf\xff\x3f\x26\xfd\xff\x3a\xfd\xff\x06\xfd\x7f\xab\xfe" "\xff\xd2\x7f\x7f\xe9\xff\xf5\xff\xec\x6f\xb4\xfe\x3f\x77\xff\xc7\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf1\xb8\xc5\xfe\x07\x00\x00\x80" "\x43\x5a\xfa\x1f\xc0\x72\xf7\x7f\x22\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9" "\xfb\x3f\x19\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x7e" "\xbe\xfe\xff\x98\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xad\xfa\xff\xbd\x3f\xbf" "\xfe\x5f\xff\xcf\xe5\x46\xeb\xff\x73\xf7\x7f\x2a\x6e\x69\xb2\xff\x01\x00" "\x00\xa0\x83\xdc\xfd\x9f\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xcf" "\xc4\x2d\xf6\x3f\x00\x00\x00\x4c\x23\x77\xff\x67\xe3\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\x27\xed\xff\xaf\xd3\xff\xf7\xa4\xff\x5f\xa7\xff" "\xdf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xec\x6a\xb4\xfe\x3f\x77\xff\xe7\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf9\xb8\xc5\xfe\x07\x00\x00" "\x80\x69\xe4\xee\xff\x42\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\x7f\x31" "\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xd2\xfe\xdf\xfb\xff\x9b" "\xd2\xff\xaf\xd3\xff\x6f\xd0\xff\xeb\xff\x67\xe9\xff\xef\x7c\xd2\xff\x33" "\x84\x6b\xdb\xff\x5f\x7f\x7e\xab\xff\xcf\xdd\xff\xa5\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x7f\x39\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb" "\xbf\x12\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x5f\x8d\x5b\x9a\xec\x7f" "\xfd\xff\xb4\xfd\xff\x1d\x4e\xfa\x7f\xfd\xff\xcd\x3c\x5f\xff\xaf\xff\x9f" "\x99\xfe\x7f\x9d\xfe\x7f\x83\xfe\x5f\xff\x3f\x4b\xff\xef\xfd\xff\x0c\xe2" "\xda\xf6\xff\xdb\xbf\xce\xdd\xff\xb5\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\x7f\x3d\x6e\xb1\xff\x01\x00\x00\x60\x1a\xb9\xfb\x6f\x8c\x5b\xec" "\x7f\x00\x00\x00\x98\x46\xee\xfe\x6f\xc4\x2d\x4d\xf6\xbf\xfe\xff\xda\xf5" "\xff\x37\xfd\xb5\xf3\xfe\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\x75\xe9\xff" "\xd7\xe9\xff\x37\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\x1a\xad\xff\xcf\xdd" "\xff\xcd\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2b\x6e\xb1\xff" "\x01\x00\x00\x60\x1a\xb9\xfb\xbf\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc" "\xfd\xdf\x89\x5b\x9a\xec\x7f\xfd\xff\xb4\xef\xff\xd7\xff\xff\xff\xfd\xff" "\x8d\xfa\xff\xff\xfd\xf3\xf4\xff\xfa\xff\x23\xd2\xff\xaf\xd3\xff\x6f\xd0" "\xff\xeb\xff\xf5\xff\x3b\xf5\xff\xf9\xd3\xac\xff\xef\x6e\xb4\xfe\x3f\x77" "\xff\x77\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xbd\xb8\xc5\xfe" "\x07\x00\x00\x80\x69\xe4\xee\xff\x7e\xdc\x62\xff\x03\x00\x00\xc0\x34\x72" "\xf7\xff\x20\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xf7\xff\xeb\xff\x97" "\x9f\xaf\xff\x3f\x26\xfd\xff\x3a\xfd\xff\x06\xfd\xbf\xfe\x5f\xff\xef\xfd" "\xff\xec\x6a\xb4\xfe\x3f\x77\xff\x0f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x71\xdc\x62" "\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x24\x6e\x69\xb2\xff\xf5\xff\xfa\xff" "\x19\xfa\xff\xa4\xff\xd7\xff\x9f\xf4\xff\xed\xe9\xff\xd7\xe9\xff\x37\xe8" "\xff\xf5\xff\xfa\xff\xea\xff\x4f\x27\xfd\x3f\x57\x6f\xb4\xfe\x3f\x77\xff" "\x4f\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb3\xb8\xc5\xfe\x07" "\x00\x00\x80\x69\xe4\xee\xff\x79\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7" "\xff\x22\x6e\x69\xb2\xff\xf5\xff\xfa\xff\xab\xec\xff\xcf\xd2\xcc\xdb\xba" "\xff\xf7\xfe\x7f\xfd\xbf\xfe\x9f\xa4\xff\x5f\xa7\xff\xdf\xa0\xff\xd7\xff" "\xeb\xff\xbd\xff\x9f\x5d\x8d\xd6\xff\xe7\xee\xff\x65\xdc\xd2\x64\xff\x03" "\x00\x00\x40\x07\xb9\xfb\x7f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd" "\xbf\x8e\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\xdf\xc4\x2d\x4d\xf6\xbf" "\xfe\x5f\xff\x3f\xc3\xfb\xff\xf5\xff\xfa\x7f\xfd\x3f\x49\xff\xbf\x4e\xff" "\xbf\x41\xff\xaf\xff\xd7\xff\xeb\xff\xd9\xd5\x68\xfd\x7f\xee\xfe\xdf\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x77\x71\x8b\xfd\x0f\x00\x00" "\x00\xd3\xc8\xdd\xff\xfb\xb8\xc5\xfe\x07\x00\x00\x80\x69\xe4\xee\xff\x43" "\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf9\xf9\xfa\xff" "\x63\xd2\xff\xaf\xd3\xff\x6f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x76\x35\x5a" "\xff\x9f\xbb\xff\x8f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x53" "\xdc\x62\xff\x03\x00\x00\xc0\x34\x72\xf7\xff\x39\x6e\xb1\xff\x01\x00\x00" "\x60\x1a\xb9\xfb\xff\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x5f\x7e\xbe\xfe\xff\x98\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\x5d\x8d\xd6\xff\xe7\xee\xff\x6b\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xff\x16\xb7\xd8\xff\x00\x00\x00\x30\x8d\xdc\xfd\x7f\x8f" "\x5b\xec\x7f\x00\x00\x00\x98\x46\xee\xfe\x7f\xc4\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x97\x9f\xaf\xff\x3f\x26\xfd\xff\x3a\xfd\xff" "\x06\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x57\xa3\xf5\xff\xb9\xfb\xff\x19\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x7f\xc5\x2d\xf6\x3f\x00\x00\x00" "\x4c\x23\x77\xff\xbf\xe3\x16\xfb\x1f\x00\x00\x00\xa6\x91\xbb\xff\x3f\x71" "\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x27\xe9\xff\x6f\xfa\xa3\xfa\xff\x33" "\xfa\xff\xde\xf4\xff\xeb\xf4\xff\x1b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x5d" "\x8d\xd6\xff\xe7\xee\xff\x6f\x00\x00\x00\xff\xff\x98\x8b\x77\xab", 24424); syz_mount_image(/*fs=*/0x20000000, /*dir=*/0x20005e40, /*flags=*/0x1000802, /*opts=*/0x20000100, /*chdir=*/1, /*size=*/0x5f68, /*img=*/0x20011d40); memcpy((void*)0x20000040, "./file2\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul, /*flags=*/0x14b042ul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint64_t*)0x20000100 = 0x20000080; memset((void*)0x20000080, 255, 1); *(uint64_t*)0x20000108 = 0xfffffdef; syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x20000100ul, /*vlen=*/1ul, /*off_low=*/0x5405, /*off_high=*/0, /*flags=*/0ul); syz_usb_connect(/*speed=*/0, /*dev_len=*/0x36, /*dev=*/0, /*conn_descs=*/0); return 0; }