file
stringlengths 18
26
| data
stringlengths 2
1.05M
|
---|---|
the_stack_data/225144291.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_print_reverse_alphabet.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bnidia <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/07/08 11:16:00 by bnidia #+# #+# */
/* Updated: 2021/07/08 14:03:42 by bnidia ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_print_reverse_alphabet(void)
{
char letter;
letter = 'z';
while (letter >= 'a')
{
write(1, &letter, 1);
letter--;
}
}
|
the_stack_data/90764965.c |
typedef enum {
FALSE = 0,
TRUE = 1
} bool;
int main() {
bool has_else = TRUE;
if (has_else) {
return 1;
}
return 0;
}
|
the_stack_data/84188.c | #if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)strlen.c 5.2 (Berkeley) 3/9/86";
#endif LIBC_SCCS and not lint
/*
* Returns the number of
* non-NULL bytes in string argument.
*/
strlen(s)
register char *s;
{
register n;
n = 0;
while (*s++)
n++;
return(n);
}
|
the_stack_data/107954279.c | #include <unistd.h>
void
putc(int fd, char c)
{
write(fd, &c, 1);
}
|
the_stack_data/65746.c |
int main(){
return 0;
}
|
the_stack_data/42000.c | const unsigned char gameOverMap[] =
{
0x1A,0x1C,0x0F,0x1D,0x1D,0x00,0x1D,0x1E,0x0B,0x1C,0x1E,
0x1A,0x1C,0x0F,0x1D,0x1D,0x00,0x1D,0x1E,0x0B,0x1C,0x1E
}; |
the_stack_data/43388.c | extern const unsigned char CardMagusKitVersionString[];
extern const double CardMagusKitVersionNumber;
const unsigned char CardMagusKitVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:CardMagusKit PROJECT:Pods-1" "\n";
const double CardMagusKitVersionNumber __attribute__ ((used)) = (double)1.;
|
the_stack_data/85200.c | #include <stdlib.h>
typedef struct {
int x;
} str;
void test(str *s) {
int x;
s = s; // Remove this and the problem goes away
x = s->x;
}
void main() {
str *s = (str *) malloc (sizeof (str));
test (s);
}
|
the_stack_data/193575.c | extern int __VERIFIER_nondet_int();
extern void __VERIFIER_error();
int id(int x) {
if (x==0) return 0;
return id2(x-1) + 1;
}
int id2(int x) {
if (x==0) return 0;
return id(x-1) + 1;
}
void main() {
int input = 5;
int result = id(input);
if (result != 5) {
__VERIFIER_error();
}
}
|
the_stack_data/34886.c | /* Copyright (c) 2008 Dmitry Xmelkov
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of the copyright holders nor the names of
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
/* GCC bug #31644: [avr] can't find a register in class 'BASE_POINTER_REGS'
while reloading 'asm'
This is compile-time bug.
$Id: bug-31644.c 1923 2009-03-07 14:02:24Z dmix $ */
#ifndef __AVR__
int main () { return 0; }
#else
#include <avr/eeprom.h>
uint8_t pwm_tab_1[126];
static uint16_t ee_chan_1_min EEMEM = 140,
ee_chan_1_cent EEMEM = 188,
ee_chan_1_max EEMEM = 240,
ee_chan_1_forw_min EEMEM = 20,
ee_chan_1_forw_max EEMEM = 90,
ee_chan_1_back_max EEMEM = 80;
void fill_pwm_table(int8_t chan_num,
uint8_t pwm[],
int16_t forward_max,
int16_t center,
int16_t reverse_min,
int16_t forward_high,
int16_t forward_low,
int16_t reverse_high)
{
pwm[0] = chan_num;
pwm[1] = forward_max;
pwm[2] = center;
pwm[3] = reverse_min;
pwm[4] = forward_high;
pwm[5] = forward_low;
pwm[6] = reverse_high;
}
void build_pwm_table (void)
{
int16_t center_1,
forward_max_1,
reverse_min_1,
forward_high_1,
forward_low_1,
reverse_high_1;
center_1 = eeprom_read_word (&ee_chan_1_cent);
forward_max_1 = eeprom_read_word (&ee_chan_1_max);
reverse_min_1 = eeprom_read_word (&ee_chan_1_min);
forward_high_1 = eeprom_read_word (&ee_chan_1_forw_max);
forward_low_1 = eeprom_read_word (&ee_chan_1_forw_min);
reverse_high_1 = eeprom_read_word (&ee_chan_1_back_max);
fill_pwm_table (1, pwm_tab_1, forward_max_1, center_1,
reverse_min_1,
forward_high_1, forward_low_1, reverse_high_1);
fill_pwm_table (1, pwm_tab_1, forward_max_1, center_1,
reverse_min_1,
forward_high_1, forward_low_1, reverse_high_1);
}
int main ()
{
build_pwm_table ();
return 0;
}
#endif
|
the_stack_data/72013297.c | /*
* Copyright (C) 2008 The Android Open Source Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <string.h>
#include <unistd.h>
#include <linux/sockios.h>
#include <net/if.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
/*
* Map an interface name into its corresponding index.
* Returns 0 on error, as 0 is not a valid index.
*/
unsigned int if_nametoindex(const char *ifname)
{
int index;
int ctl_sock;
struct ifreq ifr;
memset(&ifr, 0, sizeof(struct ifreq));
strncpy(ifr.ifr_name, ifname, IFNAMSIZ);
ifr.ifr_name[IFNAMSIZ - 1] = 0;
index = 0;
if ((ctl_sock = socket(AF_INET, SOCK_DGRAM, 0)) >= 0) {
if (ioctl(ctl_sock, SIOCGIFINDEX, &ifr) >= 0) {
index = ifr.ifr_ifindex;
}
close(ctl_sock);
}
return index;
}
|
the_stack_data/43888665.c | /* Generated by re2c */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define BSIZE 8192
enum ScanContition {
EStateNormal,
EStateComment,
EStateSkiptoeol,
EStateString,
};
typedef struct Scanner
{
FILE *fp;
unsigned char *cur, *tok, *lim, *eof;
unsigned char buffer[BSIZE];
unsigned char yych;
enum ScanContition cond;
int state;
} Scanner;
size_t fill(Scanner *s, size_t len)
{
size_t got = ~0, cnt;
if (!s->eof && s->lim - s->tok < len)
{
if (s->tok > s->buffer)
{
cnt = s->tok - s->buffer;
memcpy(s->buffer, s->tok, s->lim - s->tok);
s->tok -= cnt;
s->cur -= cnt;
s->lim -= cnt;
cnt = &s->buffer[BSIZE] - s->lim;
}
else
{
cnt = BSIZE;
}
if ((got = fread(s->lim, 1, cnt, s->fp)) != cnt)
{
s->eof = &s->lim[got];
}
s->lim += got;
}
if (s->eof && s->cur + len > s->eof)
{
return ~0; /* not enough input data */
}
return got;
}
size_t init(Scanner *s)
{
s->cur = s->tok = s->lim = s->buffer;
s->eof = 0;
s->cond = EStateNormal;
s->state = -1;
return fill(s, 0);
}
void fputl(const char *s, size_t len, FILE *stream)
{
while(len-- > 0)
{
fputc(*s++, stream);
}
}
void scan(Scanner *s)
{
s->tok = s->cur;
static void *yystable[] = {
&&yyFillLabel0,
&&yyFillLabel1,
&&yyFillLabel2,
&&yyFillLabel3,
};
if (s->state < 0) {
goto yy0;
}
goto *yystable[s->state];
for(;;)
{
s->tok = s->cur;
{
static void *yyctable[4] = {
&&yyc_Normal,
&&yyc_Comment,
&&yyc_Skiptoeol,
&&yyc_String,
};
yy0:
goto *yyctable[s->cond];
/* *********************************** */
yyc_Comment:
s->state = 0;
if ((s->lim - s->cur) < 2) if(fill(s, 2) == ~0) break;
yyFillLabel0:
s->yych = *s->cur;
if (s->yych != '*') goto yy5;
++s->cur;
if ((s->yych = *s->cur) == '/') goto yy6;
yy4:
goto yyc_Comment;
yy5:
s->yych = *++s->cur;
goto yy4;
yy6:
++s->cur;
s->cond = EStateNormal;
continue;
/* *********************************** */
yyc_Normal:
s->state = 1;
if ((s->lim - s->cur) < 4) if(fill(s, 4) == ~0) break;
yyFillLabel1:
s->yych = *s->cur;
{
static void *yytarget[256] = {
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy14, &&yy16, &&yy16, &&yy16, &&yy16, &&yy13,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy12,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy10,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16,
&&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16, &&yy16
};
goto *yytarget[s->yych];
}
yy10:
s->yych = *(s->tok = ++s->cur);
if (s->yych == '?') goto yy27;
yy11:
fputc(s->cur[-1], stdout);
continue;
yy12:
s->yych = *++s->cur;
if (s->yych == '*') goto yy25;
if (s->yych == '/') goto yy23;
goto yy11;
yy13:
s->yych = *(s->tok = ++s->cur);
if (s->yych == '"') goto yy17;
if (s->yych == '\\') goto yy19;
goto yy11;
yy14:
++s->cur;
s->cond = EStateString;
fputc(s->cur[-1], stdout);
continue;
yy16:
s->yych = *++s->cur;
goto yy11;
yy17:
s->yych = *++s->cur;
if (s->yych == '\'') goto yy21;
yy18:
s->cur = s->tok;
goto yy11;
yy19:
s->yych = *++s->cur;
if (s->yych != '"') goto yy18;
s->yych = *++s->cur;
if (s->yych != '\'') goto yy18;
yy21:
++s->cur;
fputl("'\"'", 3, stdout);
continue;
yy23:
++s->cur;
s->cond = EStateSkiptoeol;
goto yyc_Skiptoeol;
yy25:
++s->cur;
s->cond = EStateComment;
goto yyc_Comment;
yy27:
s->yych = *++s->cur;
{
static void *yytarget[256] = {
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy42, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy40,
&&yy28, &&yy30, &&yy18, &&yy18, &&yy18, &&yy44, &&yy18, &&yy38,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy32, &&yy36, &&yy34, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18,
&&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18, &&yy18
};
goto *yytarget[s->yych];
}
yy28:
++s->cur;
fputc('[', stdout);
continue;
yy30:
++s->cur;
fputc(']', stdout);
continue;
yy32:
++s->cur;
fputc('{', stdout);
continue;
yy34:
++s->cur;
fputc('}', stdout);
continue;
yy36:
++s->cur;
fputc('#', stdout);
continue;
yy38:
++s->cur;
fputc('\\', stdout);
continue;
yy40:
++s->cur;
fputc('^', stdout);
continue;
yy42:
++s->cur;
fputc('|', stdout);
continue;
yy44:
++s->cur;
fputc('~', stdout);
continue;
/* *********************************** */
yyc_Skiptoeol:
s->state = 2;
if ((s->lim - s->cur) < 5) if(fill(s, 5) == ~0) break;
yyFillLabel2:
s->yych = *s->cur;
{
static void *yytarget[256] = {
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy52, &&yy54, &&yy54, &&yy51, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy48,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy50, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54,
&&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54, &&yy54
};
goto *yytarget[s->yych];
}
yy48:
s->yych = *(s->tok = ++s->cur);
if (s->yych == '?') goto yy61;
yy49:
goto yyc_Skiptoeol;
yy50:
s->yych = *(s->tok = ++s->cur);
if (s->yych == '\n') goto yy59;
if (s->yych == '\r') goto yy57;
goto yy49;
yy51:
s->yych = *++s->cur;
if (s->yych == '\n') goto yy55;
goto yy49;
yy52:
++s->cur;
s->cond = EStateNormal;
fputc('\n', stdout);
continue;
yy54:
s->yych = *++s->cur;
goto yy49;
yy55:
++s->cur;
s->cond = EStateNormal;
fputc('\r', stdout);
fputc('\n', stdout);
continue;
yy57:
s->yych = *++s->cur;
if (s->yych == '\n') goto yy59;
yy58:
s->cur = s->tok;
goto yy49;
yy59:
++s->cur;
goto yyc_Skiptoeol;
yy61:
s->yych = *++s->cur;
if (s->yych != '/') goto yy58;
s->yych = *++s->cur;
if (s->yych == '\n') goto yy64;
if (s->yych != '\r') goto yy58;
s->yych = *++s->cur;
if (s->yych != '\n') goto yy58;
yy64:
++s->cur;
goto yyc_Skiptoeol;
/* *********************************** */
yyc_String:
s->state = 3;
if ((s->lim - s->cur) < 2) if(fill(s, 2) == ~0) break;
yyFillLabel3:
s->yych = *s->cur;
if (s->yych == '"') goto yy70;
if (s->yych != '\\') goto yy72;
++s->cur;
if ((s->yych = *s->cur) != '\n') goto yy73;
yy69:
fputc(s->cur[-1], stdout);
continue;
yy70:
++s->cur;
s->cond = EStateNormal;
fputc(s->cur[-1], stdout);
continue;
yy72:
s->yych = *++s->cur;
goto yy69;
yy73:
++s->cur;
fputl((const char*)s->cur-2, 2, stdout);
continue;
}
}
}
int main(int argc, char **argv)
{
Scanner in;
if (argc != 2)
{
fprintf(stderr, "%s <file>\n", argv[0]);
return 1;;
}
memset((char*) &in, 0, sizeof(in));
if (!strcmp(argv[1], "-"))
{
in.fp = stdin;
}
else if ((in.fp = fopen(argv[1], "r")) == NULL)
{
fprintf(stderr, "Cannot open file '%s'\n", argv[1]);
return 1;
}
if (init(&in) > 0)
{
scan(&in);
}
if (in.fp != stdin)
{
fclose(in.fp);
}
return 0;
}
|
the_stack_data/154775.c |
/*******************************************************************************
* Ledger Nano S - Secure firmware
* (c) 2019 Ledger
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
********************************************************************************/
#ifdef HAVE_BAGL
#include "bagl.h"
#include <string.h>
#include <stdio.h>
#include "os.h"
/**
Coordinate system for BAGL:
===========================
0 X axis
0 +----->
|
Y axis | #####
v #######
## ##
#######
#####
*/
// --------------------------------------------------------------------------------------
// Checks
// --------------------------------------------------------------------------------------
/*
#ifndef BAGL_COMPONENT_MAXCOUNT
#error BAGL_COMPONENT_MAXCOUNT not set
#endif // !BAGL_COMPONENT_MAXCOUNT
*/
#ifndef BAGL_WIDTH
#error BAGL_WIDTH not set
#endif // !BAGL_WIDTH
#ifndef BAGL_HEIGHT
#error BAGL_HEIGHT not set
#endif // !BAGL_HEIGHT
// --------------------------------------------------------------------------------------
// Definitions
// --------------------------------------------------------------------------------------
#define ICON_WIDTH 0
#ifndef MIN
#define MIN(x,y) ((x)<(y)?(x):(y))
#endif
#ifndef MAX
#define MAX(x,y) ((x)>(y)?(x):(y))
#endif
#ifndef U2BE
#define U2BE(buf, off) ((((buf)[off]&0xFF)<<8) | ((buf)[off+1]&0xFF) )
#endif
#ifndef U4BE
#define U4BE(buf, off) ((U2BE(buf, off)<<16) | (U2BE(buf, off+2)&0xFFFF))
#endif
// --------------------------------------------------------------------------------------
// Variables
// --------------------------------------------------------------------------------------
#ifdef HAVE_BAGL_GLYPH_ARRAY
const bagl_glyph_array_entry_t* G_glyph_array;
unsigned int G_glyph_count;
#endif // HAVE_BAGL_GLYPH_ARRAY
// --------------------------------------------------------------------------------------
// API
// --------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------
void bagl_draw_bg(unsigned int color) {
bagl_component_t c;
memset(&c, 0, sizeof(c));
c.type = BAGL_RECTANGLE;
c.userid = BAGL_NONE;
c.fgcolor = color;
c.x = 0;
c.y = 0;
c.width = BAGL_WIDTH;
c.height = BAGL_HEIGHT;
c.fill = BAGL_FILL;
// draw the rect
bagl_draw_with_context(&c, NULL, 0, 0);
}
#ifdef HAVE_BAGL_GLYPH_ARRAY
// --------------------------------------------------------------------------------------
// internal helper, get the glyph entry from the glyph id (sparse glyph array support)
const bagl_glyph_array_entry_t* bagl_get_glyph(unsigned int icon_id, const bagl_glyph_array_entry_t* glyph_array, unsigned int glyph_count) {
unsigned int i=glyph_count;
while(i--) {
// font id match this entry (non linear)
if (glyph_array[i].icon_id == icon_id) {
return &glyph_array[i];
}
}
// id not found
return NULL;
}
#endif // HAVE_BAGL_GLYPH_ARRAY
// --------------------------------------------------------------------------------------
// internal helper, get the font entry from the font id (sparse font array support)
const bagl_font_t* bagl_get_font(unsigned int font_id) {
unsigned int i=C_bagl_fonts_count;
font_id &= BAGL_FONT_ID_MASK;
while(i--) {
// font id match this entry (non indexed array)
if (PIC_FONT(C_bagl_fonts[i])->font_id == font_id) {
return PIC_FONT(C_bagl_fonts[i]);
}
}
// id not found
return NULL;
}
// --------------------------------------------------------------------------------------
// return the width of a text (first line only) for alignment processing
unsigned short bagl_compute_line_width(unsigned short font_id, unsigned short width, const void * text, unsigned char text_length, unsigned char text_encoding) {
unsigned short xx;
const bagl_font_t *font = bagl_get_font(font_id);
if (font == NULL) {
return 0;
}
// initialize first index
xx = 0;
//printf("display text: %s\n", text);
// depending on encoding
while (text_length--) {
unsigned int ch = 0;
// TODO support other encoding than ascii ISO8859 Latin
switch(text_encoding) {
default:
case BAGL_ENCODING_LATIN1:
ch = *((unsigned char*)text);
text = (void*)(((unsigned char*)text)+1);
break;
}
unsigned char ch_width = 0;
if (ch < font->first_char || ch > font->last_char) {
// only proceed the first line width, not the whole paragraph
if (ch == '\n' || ch == '\r') {
return xx;
}
// else use the low bits as an extra spacing value
if (ch >= 0xC0) {
ch_width = ch&0x3F;
}
else if (ch >= 0x80) {
// open the glyph font
const bagl_font_t *font_symbols = bagl_get_font((ch&0x20)?BAGL_FONT_SYMBOLS_1:BAGL_FONT_SYMBOLS_0);
if (font_symbols != NULL) {
// extract the size of the symbols' font character
ch_width = PIC_CHAR(font_symbols->characters)[ch & 0x1F].char_width;
}
}
}
else {
// compute the index in the bitmap array
ch -= font->first_char;
ch_width = PIC_CHAR(font->characters)[ch].char_width;
}
// retrieve the char bitmap
// go to next line if needed, kerning is not used here
if (width > 0 && xx + ch_width > width) {
return xx;
}
// prepare for next char
xx += ch_width;
}
return xx;
}
// --------------------------------------------------------------------------------------
// draw char until a char fit before reaching width
// TODO support hyphenation ??
int bagl_draw_string(unsigned short font_id, unsigned int fgcolor, unsigned int bgcolor, int x, int y, unsigned int width, unsigned int height, const void* text, unsigned int text_length, unsigned char text_encoding) {
int xx;
unsigned int colors[16];
colors[0] = bgcolor;
colors[1] = fgcolor;
unsigned int ch = 0;
const bagl_font_t *font = bagl_get_font(font_id);
if (font == NULL) {
return 0;
}
#ifdef BAGL_MULTICHROME
if (font->bpp > 1) {
// fgcolor = 0x7e7ecc
// bgcolor = 0xeca529
// $1 = {0xeca529, 0xc6985f, 0xa28b95, 0x7e7ecc}
unsigned int color_count = 1<<(font->bpp);
memset(colors, 0, sizeof(colors));
colors[0] = bgcolor;
colors[color_count-1] = fgcolor;
// compute for all base colors
int off;
for (off = 0; off < 3; off++) {
int cfg = (fgcolor>>(off*8))&0xFF;
int cbg = (bgcolor>>(off*8))&0xFF;
int crange = MAX(cfg,cbg)-MIN(cfg,cbg)+1;
int cinc = crange/(color_count-1UL);
if (cfg > cbg) {
unsigned int i;
for (i=1; i < color_count-1UL; i++) {
colors[i] |= MIN(0xFF, cbg+i*cinc)<<(off*8);
}
}
else {
unsigned int i;
for (i=1; i < color_count-1UL; i++) {
colors[i] |= MIN(0xFF, cfg+(color_count-1UL-i)*cinc)<<(off*8);
}
}
}
}
#endif // BAGL_MULTICHROME // for the blue
// always comparing this way, very optimized etc
width += x;
height += y;
// initialize first index
xx = x;
//printf("display text: %s\n", text);
// depending on encoding
while (text_length--) {
// TODO support other encoding than ascii ISO8859 Latin
switch(text_encoding) {
default:
case BAGL_ENCODING_LATIN1:
// avoid 2 new line on \r and \n for windows familiar users
if (ch == '\r') {
ch = *((unsigned char*)text);
if (ch == '\n') {
text = (void*)(((unsigned int)text)+1);
continue;
}
}
else {
ch = *((unsigned char*)text);
}
text = (void*)(((unsigned int)text)+1);
break;
}
unsigned char ch_height = font->char_height;
unsigned char ch_kerning = 0;
unsigned char ch_width = 0;
const unsigned char * ch_bitmap = NULL;
int ch_y = y;
if (ch < font->first_char || ch > font->last_char) {
//printf("invalid char");
// can't proceed
if (ch == '\n' || ch == '\r') {
y += ch_height; // no interleave
// IGNORED for first line
if (y + ch_height > (int)height) {
// we're writing half height of the last line ... probably better to put some dashes
return (y<<16)|(xx&0xFFFF);
}
// newline starts back at first x offset
xx = x;
continue;
}
if (ch >= 0xC0) {
ch_width = ch & 0x3F;
}
else if (ch >= 0x80) {
// open the glyph font
const bagl_font_t *font_symbols = bagl_get_font((ch&0x20)?BAGL_FONT_SYMBOLS_1:BAGL_FONT_SYMBOLS_0);
if (font_symbols != NULL) {
ch_bitmap = &PIC_BMP(font_symbols->bitmap)[PIC_CHAR(font_symbols->characters)[ch & 0x1F].bitmap_offset];
ch_width = PIC_CHAR(font_symbols->characters)[ch & 0x1F].char_width;
ch_height = font_symbols->char_height;
// align baselines
ch_y = y + font->baseline_height - font_symbols->baseline_height;
}
}
}
else {
ch -= font->first_char;
ch_bitmap = &PIC_BMP(font->bitmap)[PIC_CHAR(font->characters)[ch].bitmap_offset];
ch_width = PIC_CHAR(font->characters)[ch].char_width;
ch_kerning = font->char_kerning;
}
// retrieve the char bitmap
// go to next line if needed
if (xx + ch_width > (int)width) {
y += ch_height; // no interleave
// IGNORED for first line
if (y + ch_height > (int)height) {
// we're writing half height of the last line ... probably better to put some dashes
return (y<<16)|(xx&0xFFFF);
}
// newline starts back at first x offset
xx = x;
ch_y = y;
}
/* IGNORED for first line
if (y + ch_height > height) {
// we're writing half height of the last line ... probably better to put some dashes
return;
}
*/
// chars are storred LSB to MSB in each char, packed chars. horizontal scan
if (ch_bitmap) {
bagl_hal_draw_bitmap_within_rect(xx, ch_y, ch_width, ch_height, (1<<font->bpp), colors, font->bpp, ch_bitmap, font->bpp*ch_width*ch_height); // note, last parameter is computable could be avoided
}
else {
bagl_hal_draw_rect(bgcolor, xx, ch_y, ch_width, ch_height);
}
// prepare for next char
xx += ch_width + ch_kerning;
}
// return newest position, for upcoming printf
return (y<<16)|(xx&0xFFFF);
}
// --------------------------------------------------------------------------------------
// draw round or circle. unaliased.
// if radiusint is !=0 then draw a circle of color outline, and colorint inside
void bagl_draw_circle_helper(unsigned int color, int x_center, int y_center, unsigned int radius, unsigned char octants, unsigned int radiusint, unsigned int colorint) {
/*
128 ***** 32
* *
64 * * 16
* *
* *
4 * * 1
* *
8 ***** 2
*/
int last_x;
int x = radius;
int y = 0;
int decisionOver2 = 1 - x; // Decision criterion divided by 2 evaluated at x=r, y=0
int dradius = radius-radiusint;
last_x = x;
unsigned int drawint = (radiusint > 0 && dradius > 0 /*&& xint <= yint*/);
while( y <= x )
{
if (octants & 1) { //
if (drawint) {
bagl_hal_draw_rect(colorint, x_center, y+y_center, x-(dradius-1), 1);
bagl_hal_draw_rect(color, x_center+x-(dradius-1), y+y_center, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center, y+y_center-1, x, 1);
}
}
if (octants & 2) { //
if (drawint) {
if (last_x != x) {
bagl_hal_draw_rect(colorint, x_center, x+y_center, y-(dradius-1), 1);
}
bagl_hal_draw_rect(color, x_center+y-(dradius-1), x+y_center, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center, x+y_center-1, y, 1);
}
}
if (octants & 4) { //
if (drawint) {
bagl_hal_draw_rect(colorint, x_center-x, y+y_center, x-(dradius-1), 1);
bagl_hal_draw_rect(color, x_center-x-(dradius-1), y+y_center, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center-x, y+y_center-1, x, 1);
}
}
if (octants & 8) { //
if (drawint) {
if (last_x != x) {
bagl_hal_draw_rect(colorint, x_center-y, x+y_center, y-(dradius-1), 1);
}
bagl_hal_draw_rect(color, x_center-y-(dradius-1), x+y_center, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center-y, x+y_center-1, y, 1);
}
}
if (octants & 16) { //
if (drawint) {
bagl_hal_draw_rect(colorint, x_center, y_center-y, x-(dradius-1), 1);
bagl_hal_draw_rect(color, x_center+x-(dradius-1), y_center-y, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center, y_center-y, x, 1);
}
}
if (octants & 32) { //
if (drawint) {
if (last_x != x) {
bagl_hal_draw_rect(colorint, x_center, y_center-x, y-(dradius-1), 1);
}
bagl_hal_draw_rect(color, x_center+y-(dradius-1), y_center-x, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center, y_center-x, y, 1);
}
}
if (octants & 64) { //
if (drawint) {
bagl_hal_draw_rect(colorint, x_center-x, y_center-y, x-(dradius-1), 1);
bagl_hal_draw_rect(color, x_center-x-(dradius-1), y_center-y, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center-x, y_center-y, x, 1);
}
}
if (octants & 128) { //
if (drawint) {
if (last_x != x) {
bagl_hal_draw_rect(colorint, x_center-y, y_center-x, y-(dradius-1), 1);
}
bagl_hal_draw_rect(color, x_center-y-(dradius-1), y_center-x, dradius, 1);
}
else {
bagl_hal_draw_rect(color, x_center-y, y_center-x, y, 1);
}
}
last_x = x;
y++;
if (decisionOver2<=0)
{
decisionOver2 += 2 * y + 1; // Change in decision criterion for y -> y+1
}
else
{
x--;
decisionOver2 += 2 * (y - x) + 1; // Change for y -> y+1, x -> x-1
}
}
}
// --------------------------------------------------------------------------------------
#ifdef HAVE_BAGL_GLYPH_ARRAY
void bagl_set_glyph_array(const bagl_glyph_array_entry_t* array, unsigned int count) {
G_glyph_array = array;
G_glyph_count = count;
}
#endif // HAVE_BAGL_GLYPH_ARRAY
// --------------------------------------------------------------------------------------
void bagl_draw_with_context(const bagl_component_t* component, const void* context, unsigned short context_length, unsigned char context_encoding) {
//unsigned char comp_idx;
int halignment=0;
int valignment=0;
#ifdef HAVE_BAGL_GLYPH_ARRAY
int x,y;
#endif // HAVE_BAGL_GLYPH_ARRAY
unsigned int baseline=0;
unsigned int char_height=0;
int strwidth = 0;
unsigned int ellipsis_1_len = 0;
const char* ellipsis_2_start = NULL;
unsigned int fgcolor=component->fgcolor;
unsigned int bgcolor=component->bgcolor;
#ifdef HAVE_BAGL_GLYPH_ARRAY
const bagl_glyph_array_entry_t* glyph=NULL;
#endif // HAVE_BAGL_GLYPH_ARRAY
// DESIGN NOTE: always consider drawing onto a bg color filled image. (done upon undraw)
/*
// check if userid already exist, if yes, reuse entry
for (comp_idx=0; comp_idx < BAGL_COMPONENT_MAXCOUNT; comp_idx++) {
if (bagl_components[comp_idx].userid == component->userid) {
goto idx_ok;
}
}
// find the first empty entry
for (comp_idx=0; comp_idx < BAGL_COMPONENT_MAXCOUNT; comp_idx++) {
if (bagl_components[comp_idx].userid == BAGL_NONE) {
goto idx_ok;
}
}
// no more space :(
//BAGL_THROW(NO_SPACE);
return;
idx_ok:
*/
// strip the flags to match kinds
unsigned int type = component->type&~(BAGL_TYPE_FLAGS_MASK);
// compute alignment if text provided and requiring special alignment
if (type != BAGL_ICON) {
const bagl_font_t* font = bagl_get_font(component->font_id);
if (font) {
baseline = font->baseline_height;
char_height = font->char_height;
if (context && context_length) {
// compute with some margin to fit other characters and check if ellipsis algorithm is required
strwidth = bagl_compute_line_width(component->font_id, component->width+100, context, context_length, context_encoding);
ellipsis_1_len = context_length;
#ifdef HAVE_BAGL_ELLIPSIS
// ellipsis mode (ensure something is to be splitted!)
if (strwidth > component->width && context_length>4) {
unsigned int robin = 0; // remove char by char either on the left or right side
unsigned int dots_len = bagl_compute_line_width(component->font_id, 100 /*probably larger than ... whatever the font*/, "...", 3, context_encoding);
ellipsis_1_len = context_length/2;
ellipsis_2_start = ((char*)context) + context_length/2;
// split line in 2 halves, strip a char from end of left part, and from start of right part, reassemble with ... , repeat until it fits.
// NOTE: algorithm is wrong if special blank chars are inserted, they should be removed first
while (strwidth > component->width && ellipsis_1_len && (context_length - ((unsigned int)ellipsis_2_start-(unsigned int)context) )) {
unsigned int left_part = bagl_compute_line_width(component->font_id, component->width, context, ellipsis_1_len, context_encoding);
unsigned int right_part = bagl_compute_line_width(component->font_id, component->width, ellipsis_2_start, (context_length - ((unsigned int)ellipsis_2_start-(unsigned int)context) ), context_encoding);
// update to check and to compute alignement if needed
strwidth = left_part + dots_len + right_part;
// only start to split if the middle char if odd context_length removal is not sufficient
if (strwidth > component->width) {
// either remove a left char, OR remove a right char
switch(robin) {
case 0:
// remove a left char
ellipsis_1_len--;
break;
case 1:
// remove a right char
ellipsis_2_start++;
break;
}
robin = (robin+1)%2;
}
}
// we've computed split positions
}
#endif // HAVE_BAGL_ELLIPSIS
switch (component->font_id & BAGL_FONT_ALIGNMENT_HORIZONTAL_MASK ) {
default:
case BAGL_FONT_ALIGNMENT_LEFT:
halignment = 0;
break;
case BAGL_FONT_ALIGNMENT_RIGHT:
halignment = MAX(0,component->width - strwidth);
break;
case BAGL_FONT_ALIGNMENT_CENTER:
// x xalign strwidth width
// ' ' ' '
// ^
// xalign = x+ (width/2) - (strwidth/2) => align -x
halignment = MAX(0,component->width/2 - strwidth/2);
break;
}
switch (component->font_id & BAGL_FONT_ALIGNMENT_VERTICAL_MASK ) {
default:
case BAGL_FONT_ALIGNMENT_TOP:
valignment = 0;
break;
case BAGL_FONT_ALIGNMENT_BOTTOM:
valignment = component->height - baseline;
break;
case BAGL_FONT_ALIGNMENT_MIDDLE:
// y yalign charheight height
// ' ' v ' '
// baseline
// yalign = y+ (height/2) - (baseline/2) => align - y
valignment = component->height/2 - baseline/2 - 1;
break;
}
}
}
}
// only check the type only, ignore the touchable flag
switch(type) {
/*
button (B)
< |Icon|Space|Textstring| >
I.w W.w T.w
I.x = B.x+B.w/2-(I.w+W.w+T.w)/2
W.x = I.x+I.w
T.x = W.x+W.w = I.x+I.w+W.w = B.x+B.w/2-(I.w+W.w+T.w)/2+I.w+W.w = B.x+B.w/2-T.w/2+(I.w+W.w)/2
*/
case BAGL_RECTANGLE:
case BAGL_BUTTON: // optional icon + textbox + rectangle
draw_round_rect: {
unsigned int radius = component->radius;
if (component->fill != BAGL_FILL) {
// inner
// centered top to bottom
bagl_hal_draw_rect(bgcolor,
component->x+radius,
component->y-(type==BAGL_LABELINE?(baseline):0),
component->width-2*radius,
component->height);
// left to center rect
bagl_hal_draw_rect(bgcolor,
component->x,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
radius,
component->height-2*radius);
// center rect to right
bagl_hal_draw_rect(bgcolor,
component->x+component->width-radius-1,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
radius,
component->height-2*radius);
// outline
// 4 rectangles (with last pixel of each corner not set)
bagl_hal_draw_rect(fgcolor,
component->x+radius,
component->y-(type==BAGL_LABELINE?(baseline):0),
component->width-2*radius,
component->stroke); // top
bagl_hal_draw_rect(fgcolor,
component->x+radius,
component->y-(type==BAGL_LABELINE?(baseline):0)+component->height-1,
component->width-2*radius,
component->stroke); // bottom
bagl_hal_draw_rect(fgcolor,
component->x,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
component->stroke,
component->height-2*radius); // left
bagl_hal_draw_rect(fgcolor,
component->x+component->width-1,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
component->stroke,
component->height-2*radius); // right
}
else {
// centered top to bottom
bagl_hal_draw_rect(fgcolor,
component->x+radius,
component->y-(type==BAGL_LABELINE?(baseline):0),
component->width-2*radius,
component->height);
// left to center rect
bagl_hal_draw_rect(fgcolor,
component->x,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
radius,
component->height-2*radius);
// center rect to right
bagl_hal_draw_rect(fgcolor,
component->x+component->width-radius,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
radius,
component->height-2*radius);
}
goto rect;
}
case BAGL_LABELINE:
case BAGL_LABEL: {
// for strings, colors are inverted.
unsigned int radius;
unsigned int icon_width;
fgcolor=component->bgcolor;
bgcolor=component->fgcolor;
rect:
icon_width = 0;
radius = component->radius;
//if (radius > component->width/2 ||radius > component->height/2)
{
radius = MIN(radius, MIN(component->width/2, component->height/2));
}
// draw the background
/* shall not be needed
if (component->fill == BAGL_FILL) {
bagl_hal_draw_rect(component->bgcolor,
component->x+radius,
component->y,
component->width-2*radius,
component->stroke); // top
}
*/
// draw corners
if (radius > 1) {
unsigned int radiusint = 0;
// carve round when not filling
if (component->fill != BAGL_FILL && component->stroke < radius) {
radiusint = radius-component->stroke;
}
bagl_draw_circle_helper(fgcolor,
component->x+radius,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
radius,
BAGL_FILL_CIRCLE_PI2_PI,
radiusint,
bgcolor);
bagl_draw_circle_helper(fgcolor,
component->x+component->width-radius-component->stroke,
component->y-(type==BAGL_LABELINE?(baseline):0)+radius,
radius,
BAGL_FILL_CIRCLE_0_PI2,
radiusint,
bgcolor);
bagl_draw_circle_helper(fgcolor,
component->x+radius,
component->y-(type==BAGL_LABELINE?(baseline):0)+component->height-radius-component->stroke,
radius,
BAGL_FILL_CIRCLE_PI_3PI2,
radiusint,
bgcolor);
bagl_draw_circle_helper(fgcolor,
component->x+component->width-radius-component->stroke,
component->y-(type==BAGL_LABELINE?(baseline):0)+component->height-radius-component->stroke,
radius,
BAGL_FILL_CIRCLE_3PI2_2PI,
radiusint,
bgcolor);
}
// for rectangle/line/... which fallthrough here
if (type != BAGL_LABELINE && type != BAGL_LABEL) {
break;
}
if (context && context_length) {
// debug centering
//bagl_hal_draw_rect(component->fgcolor, component->x, component->y, 2, 2);
unsigned int pos = bagl_draw_string(component->font_id,
component->fgcolor,
component->bgcolor,
component->x + halignment /*+ component->stroke*/,
component->y + (type==BAGL_LABELINE?-(baseline):valignment) /*+ component->stroke*/,
component->width /*- 2*component->stroke*/ - halignment,
component->height /*- 2*component->stroke*/ - (type==BAGL_LABELINE?0/*-char_height*/:valignment),
context,
ellipsis_1_len,
context_encoding);
#ifdef HAVE_BAGL_ELLIPSIS
if (ellipsis_2_start) {
// draw ellipsis
pos = bagl_draw_string(component->font_id,
component->fgcolor,
component->bgcolor,
(pos & 0xFFFF) /*+ component->stroke*/,
component->y + (type==BAGL_LABELINE?-(baseline):valignment) /*+ component->stroke*/,
component->width /*- 2*component->stroke*/ - halignment,
component->height /*- 2*component->stroke*/ - (type==BAGL_LABELINE?0/*-char_height*/:valignment),
"...",
3,
context_encoding);
// draw the right part
pos = bagl_draw_string(component->font_id,
component->fgcolor,
component->bgcolor,
(pos & 0xFFFF) /*+ component->stroke*/,
component->y + (type==BAGL_LABELINE?-(baseline):valignment) /*+ component->stroke*/,
component->width /*- 2*component->stroke*/ - halignment,
component->height /*- 2*component->stroke*/ - (type==BAGL_LABELINE?0/*-char_height*/:valignment),
ellipsis_2_start,
(context_length - ((unsigned int)ellipsis_2_start-(unsigned int)context) ),
context_encoding);
}
#endif // HAVE_BAGL_ELLIPSIS
// debug centering
//bagl_hal_draw_rect(component->fgcolor, component->x+component->width-2, component->y+component->height-2, 2, 2);
}
/*
if (component->stroke > 0) {
goto outline_rect;
}
*/
break;
}
case BAGL_LINE: // a line is just a flat rectangle :p
//case BAGL_RECTANGLE:
if(/*component->fill == BAGL_FILL &&*/ component->radius == 0) {
bagl_hal_draw_rect(component->fgcolor, component->x, component->y, component->width, component->height);
}
else {
goto draw_round_rect;
/*
// not filled, respect the stroke
// left
bagl_hal_draw_rect(component->fgcolor, component->x, component->y, MAX(1,component->stroke), component->height);
// top
bagl_hal_draw_rect(component->fgcolor, component->x, component->y, component->width, MAX(1,component->stroke));
// right
bagl_hal_draw_rect(component->fgcolor, component->x+component->width-MAX(1,component->stroke), component->y, MAX(1,component->stroke), component->height);
// bottom
bagl_hal_draw_rect(component->fgcolor, component->x, component->y+component->height-MAX(1,component->stroke), component->width, MAX(1,component->stroke));
*/
}
break;
#ifdef HAVE_BAGL_GLYPH_ARRAY
case BAGL_ICON: {
x = component->x;
y = component->y;
// icon data follows are in the context
if (component->icon_id != 0) {
// select the default or custom glyph array
if (component->type == BAGL_ICON && context_encoding && G_glyph_array && G_glyph_count > 0) {
glyph = bagl_get_glyph(component->icon_id, G_glyph_array, G_glyph_count);
}
else {
glyph = bagl_get_glyph(component->icon_id, C_glyph_array, C_glyph_count);
}
// 404 glyph not found
if (glyph == NULL) {
break;
}
// color accounted as bytes in the context length
if (context_length) {
if ((1<<glyph->bits_per_pixel)*4 != context_length) {
// invalid color count
break;
}
context_length /= 4;
}
// use default colors
if (!context_length || !context) {
context_length = 1<<(glyph->bits_per_pixel);
context = glyph->default_colors;
}
// center glyph in rect
// draw the glyph from the bitmap using the context for colors
bagl_hal_draw_bitmap_within_rect(x + (component->width / 2 - glyph->width / 2),
y + (component->height / 2 - glyph->height / 2),
glyph->width,
glyph->height,
context_length,
(unsigned int*)context, // Endianness remarkably ignored !
glyph->bits_per_pixel,
glyph->bitmap,
glyph->bits_per_pixel*(glyph->width*glyph->height));
}
else {
// context: <bitperpixel> [color_count*4 bytes (LE encoding)] <icon bitmap (raw scan, LE)>
unsigned int colors[4];
unsigned int bpp = ((unsigned char*)context)[0];
// no space to display that
if (bpp > 2) {
return;
}
unsigned int i=1<<bpp;
while(i--) {
colors[i] = U4BE((unsigned char*)context, 1+i*4);
}
// draw the glyph from the bitmap using the context for colors
bagl_hal_draw_bitmap_within_rect(x,
y,
component->width,
component->height,
1<<bpp,
colors,
bpp,
((unsigned char*)context)+1+(1<<bpp)*4,
bpp*(component->width*component->height));
}
break;
}
#endif // HAVE_BAGL_GLYPH_ARRAY
case BAGL_CIRCLE:
// draw the circle (all 8 octants)
bagl_draw_circle_helper(component->fgcolor, component->x+component->radius, component->y+component->radius, component->radius, 0xFF, ((component->fill != BAGL_FILL && component->stroke < component->radius)?component->radius-component->stroke:0), component->bgcolor);
break;
//case BAGL_NONE:
// performing, but not registering
//bagl_hal_draw_rect(component->fgcolor, component->x, component->y, component->width, component->height);
//return;
case BAGL_NONE:
default:
return;
}
/*
// remember drawn component for user action
memcpy(&bagl_components[comp_idx], component, sizeof(bagl_component_t));
*/
}
// --------------------------------------------------------------------------------------
void bagl_draw_glyph(const bagl_component_t* component, const bagl_icon_details_t* icon_details) {
// no space to display that
if (icon_details->bpp > 2) {
return;
}
/*
// take into account the remaining bits not byte aligned
unsigned int w = ((component->width*component->height*icon_details->bpp)/8);
if (w%8) {
w++;
}
*/
// draw the glyph from the bitmap using the context for colors
bagl_hal_draw_bitmap_within_rect(component->x,
component->y,
icon_details->width,
icon_details->height,
1<<(icon_details->bpp),
(unsigned int*)PIC((unsigned int)icon_details->colors),
icon_details->bpp,
(unsigned char*)PIC((unsigned int)icon_details->bitmap),
icon_details->bpp*(icon_details->width*icon_details->height));
}
// --------------------------------------------------------------------------------------
void bagl_animate(bagl_animated_t* anim, unsigned int timestamp_ms, unsigned int interval_ms) {
// nothing to be animated right now (or no horizontal scrolling speed defined)
if ((anim->next_ms != 0 && anim->next_ms > timestamp_ms) || anim->c.width == 0 || anim->c.icon_id == 0 || (anim->current_x & 0xF0000000)==0x40000000) {
return;
}
// when starting the animation, perform a pause on the left of the string
if (anim->next_ms == 0) {
anim->next_ms = timestamp_ms + (anim->c.stroke&0x7F)*100;
anim->current_x = 0x0;
anim->current_char_idx = 0;
}
unsigned int a,b;
unsigned int valignment=0;
unsigned int baseline=0;
//unsigned int char_height=0;
unsigned int totalwidth = 0;
unsigned int remwidth = 0;
unsigned int charwidth=0;
unsigned int type = anim->c.type&~(BAGL_TYPE_FLAGS_MASK);
// compute alignment if text provided and requiring special alignment
if (anim->text && anim->text_length && (type == BAGL_LABELINE || type == BAGL_LABEL)) {
const bagl_font_t* font = bagl_get_font(anim->c.font_id);
// invalid font, nothing to animate :(
if (font == NULL) {
return;
}
unsigned int maxcharwidth = bagl_compute_line_width(anim->c.font_id, 0, "W", 1, anim->text_encoding)+1;
baseline = font->baseline_height;
//char_height = font->char_height;
totalwidth = bagl_compute_line_width(anim->c.font_id, 0, anim->text, anim->text_length, anim->text_encoding);
// nothing to be animated here, text is already fully drawn in its text box
if (totalwidth <= anim->c.width) {
return;
}
if (anim->current_char_idx > anim->text_length) {
anim->current_char_idx = 0;
}
remwidth = bagl_compute_line_width(anim->c.font_id, 0, anim->text+anim->current_char_idx, anim->text_length-anim->current_char_idx, anim->text_encoding);
charwidth = bagl_compute_line_width(anim->c.font_id, 0, anim->text+anim->current_char_idx, 1, anim->text_encoding);
switch (anim->c.font_id & BAGL_FONT_ALIGNMENT_VERTICAL_MASK ) {
default:
case BAGL_FONT_ALIGNMENT_TOP:
valignment = 0;
break;
case BAGL_FONT_ALIGNMENT_BOTTOM:
valignment = anim->c.height - baseline;
break;
case BAGL_FONT_ALIGNMENT_MIDDLE:
// y yalign charheight height
// ' ' v ' '
// baseline
// yalign = y+ (height/2) - (baseline/2) => align - y
valignment = anim->c.height/2 - baseline/2 - 1;
break;
}
// consider the current char of the string has been displayed on the screen (or at least a part of it)
// viewport | < width > |
// totalwidth | a text that does not fit the viewport |
// rem width |xt that does not fit the viewport | s
//
unsigned int current_char_displayed_width = (anim->current_x & ~(0xF0000000)) - (totalwidth - remwidth);
// draw a bg rectangle on the area before painting the animated value, to clearup glitches on both sides
a = anim->c.y + (type==BAGL_LABELINE?-(baseline):valignment);
b = anim->c.height- (type==BAGL_LABELINE?0/*-char_height*/:valignment);
bagl_draw_string(anim->c.font_id,
anim->c.fgcolor,
anim->c.bgcolor,
anim->c.x - current_char_displayed_width,
a,
anim->c.width + current_char_displayed_width + charwidth /*- 2*component->stroke*/,
b,
anim->text+anim->current_char_idx, anim->text_length-anim->current_char_idx, anim->text_encoding);
// crop the viewport
bagl_hal_draw_rect(anim->c.bgcolor,
anim->c.x-maxcharwidth,
a,
maxcharwidth,
b);
bagl_hal_draw_rect(anim->c.bgcolor,
anim->c.x+anim->c.width,
a,
maxcharwidth,
b);
// report on screen
screen_update();
unsigned int step_ms=interval_ms;
unsigned int step_x=anim->c.icon_id * step_ms/1000;
while(step_x == 0) {
step_ms += interval_ms;
step_x = anim->c.icon_id * step_ms / 1000;
}
switch (anim->current_x & 0xF0000000) {
// left to right
case 0:
anim->next_ms += step_ms;
if (current_char_displayed_width >= charwidth) {
anim->current_char_idx++;
// if text fits, then stop scrolling and wait a bit
if (remwidth - current_char_displayed_width <= anim->c.width) {
anim->current_x = (totalwidth-remwidth+current_char_displayed_width) | 0x10000000;
break;
}
}
anim->current_x += step_x;
break;
// pause after finished left to right
case 0x10000000:
anim->next_ms += (anim->c.stroke&0x7F)*100;
anim->current_x = (totalwidth-remwidth+current_char_displayed_width) | 0x20000000;
break;
// right to left
case 0x20000000:
anim->next_ms += step_ms;
if (current_char_displayed_width >= charwidth) {
// we're displaying from the start
if (remwidth >= totalwidth) {
anim->current_x = 0x30000000;
anim->current_char_idx = 0;
break;
}
anim->current_char_idx--;
}
anim->current_x = ((anim->current_x & ~(0xF0000000)) - step_x) | 0x20000000;
break;
// pause after finished right to left
case 0x30000000:
anim->next_ms += (anim->c.stroke&0x7F)*100;
anim->current_x = 0;
// not going for another scroll anim
if (anim->c.stroke & 0x80) {
anim->current_x = 0x40000000;
}
break;
case 0x40000000:
// stalled, nothing to do
break;
}
}
}
// --------------------------------------------------------------------------------------
void bagl_draw(const bagl_component_t* component) {
// component without text
bagl_draw_with_context(component, NULL, 0, 0);
}
#endif // HAVE_BAGL
|
the_stack_data/68887648.c | #include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
typedef struct cmdlist_s {
const char *cmdpath;
const char *optargs;
const char *defbridge;
} cmdlist_t;
cmdlist_t cmdlist[] = {
{ "/opt/netronome/bin/ovs-ofctl", "-O OpenFlow13", "NFE" },
{ "/usr/local/bin/ovs-ofctl", "-O OpenFlow13", "br0" },
{ "/usr/bin/ovs-ofctl", "", "br-int" },
{ NULL, NULL, NULL }
};
const cmdlist_t *
select_ovs_vsctl_cmd ()
{
cmdlist_t *cp;
for (cp = &cmdlist[0] ; cp->cmdpath != NULL ; cp++) {
struct stat fstat;
int rc = lstat(cp->cmdpath, &fstat);
if (rc < 0)
continue;
if (S_ISREG(fstat.st_mode))
return cp;
}
return NULL;
}
int exec_ovs_vsctl_dump_flows (const cmdlist_t *cp,
const char *fname, const char *brname)
{
char cmd[256];
snprintf(cmd, 254, "%s %s dump-flows %s > %s",
cp->cmdpath, cp->optargs, brname, fname);
return system(cmd);
}
typedef struct of_sample_s {
struct of_sample_s *prev, *next;
struct timeval tv;
uint64_t pkt, oct;
int table;
int priority;
int strnext;
const char *brname;
const char *filt;
const char *action;
} of_sample_t;
void of_string_append (of_sample_t *sp,
const char *str, int maxlen, const char **dpr)
{
/* Get pointer to available string space */
char *dp = &((char *) &sp[1])[sp->strnext];
int len = strlen(str);
if ((maxlen > 0) && (len > maxlen))
len = maxlen;
strncpy(dp, str, len);
sp->strnext += 1 + len;
/* Assign Destination Pointer Reference */
if (dpr != NULL)
*dpr = dp;
}
static of_sample_t *
find_matching_rule (of_sample_t *hp, of_sample_t *ep)
{
of_sample_t *sp;
for (sp = hp->next ; sp != hp ; sp = sp->next) {
if ((strcmp(sp->filt, ep->filt) == 0) &&
(sp->priority == ep->priority) &&
(sp->table == ep->table))
return sp;
}
return NULL;
}
static void
free_list (of_sample_t *hp)
{
while (hp->next != hp) {
of_sample_t *fp = hp->next;
hp->next = fp->next;
free(fp);
}
hp->prev = hp;
}
static inline int
ival_calc (struct timeval tv0, struct timeval tv1)
{
return
(tv1.tv_sec - tv0.tv_sec) * 1000000 +
(tv1.tv_usec - tv0.tv_usec);
}
static void
print_rule_stats (of_sample_t *hp0, of_sample_t *hp1)
{
printf("\n\n\n\n\n\n\n\n"
" [bytes] [pkts] [Mpps] [Gbps] "
"Bridge Tbl Pri Action Rule\n");
double delta = ((double) ival_calc(hp1->tv, hp0->tv)) / 1e6;
of_sample_t *ep0;
for (ep0 = hp0->next ; ep0 != hp0 ; ep0 = ep0->next) {
of_sample_t *ep1 = find_matching_rule(hp1, ep0);
if (ep1 == NULL)
continue;
double pktrate = (double) (ep0->pkt - ep1->pkt) / 1e6 / delta;
double bitrate = (double) (ep0->oct - ep1->oct) * 8.0 / 1e9 / delta;
printf("%15lu %14lu", ep0->oct, ep0->pkt);
printf(" %7.3f %7.3f", pktrate, bitrate);
printf(" %-7s %3u %3u %-16s %s\n",
ep0->brname, ep0->table, ep0->priority, ep0->action, ep0->filt);
}
printf("\n");
}
static const char *
field_strip (char *str)
{
char *eqp = strchr(str, '=');
if (eqp == NULL) return "";
*eqp = 0;
str = &eqp[1];
int sl = strlen(str);
while ((sl > 0) && (str[sl - 1] == ','))
str[--sl] = 0;
return str;
}
static int
read_stat_file (of_sample_t *hp, const char *brname, const char *fname)
{
FILE *fd = fopen(fname, "r");
char line[512];
while (fgets(line, 512, fd) != NULL) {
if (strncmp(line, " cookie=", 8) == 0) {
const char *str = line;
/* Allocate data structure */
int size = sizeof(of_sample_t) + 2 + strlen(str);
of_sample_t *sp = (of_sample_t *) malloc(size);
memset(sp, 0, size);
/* Set Bridge Name */
of_string_append(sp, brname, 0, &sp->brname);
for (;;) {
char fns[512], as[512]; /* Field name string and argument string */
while (isspace(*str))
str++;
const char *fnp = str; /* Field name pointer */
const char *esp = index(str, '='); /* Equal-sign pointer */
const char *asp = &esp[1]; /* Argument field pointer */
const char *efp; /* End-of-field pointer */
const char *nfp = asp; /* Next Field pointer */
if (esp == NULL)
break;
int fn_len = (int) (esp - fnp);
strncpy(fns, fnp, fn_len);
fns[fn_len] = 0;
/* Search to the end of the 'field' */
while (isgraph(*nfp))
nfp++;
/* Step back and eliminate potential commas */
for (efp = nfp ; efp[-1] == ',' ; efp--)
;
int as_len = (int) (efp - asp);
const char *p;
int i;
for (i = 0, p = &esp[1] ; isgraph(*p) && (*p != ',') ; p++, i++)
as[i] = *p;
as[i] = 0;
//printf("field: -%s-%s-\n", fns, as);
/* Check for fields one-by-one */
if (strcmp(fns, "n_packets") == 0) {
sp->pkt = strtoul(as, NULL, 0);
} else
if (strcmp(fns, "n_bytes") == 0) {
sp->oct = strtoul(as, NULL, 0);
} else
if (strcmp(fns, "table") == 0) {
sp->table = strtoul(as, NULL, 0);
} else
if (strcmp(fns, "actions") == 0) {
of_string_append(sp, asp, as_len, &sp->action);
} else
if (strcmp(fns, "priority") == 0) {
sp->priority = strtoul(as, NULL, 0);
/* This field is treated a little bit differently */
const char *cfp = index(p, ',');
if ((cfp == NULL) || (cfp > nfp)) {
sp->filt = "";
} else {
of_string_append(sp, &cfp[1], (int) (efp - cfp), &sp->filt);
}
} /* else
if (strcmp(fns, "in_port") == 0) {
} */
str = nfp;
}
if ((sp->action == NULL) || (sp->filt == NULL)) {
free(sp);
printf("Could not parse: %s\n", line);
continue;
}
// Link-in new entry
sp->prev = hp->prev;
sp->next = hp;
hp->prev->next = sp;
hp->prev = sp;
}
}
fclose(fd);
}
int main (int argc, char *argv[])
{
of_sample_t hp[2], *hp0, *hp1, *tp;
hp0 = hp[0].next = hp[0].prev = &hp[0];
hp1 = hp[1].next = hp[1].prev = &hp[1];
const cmdlist_t *cp = select_ovs_vsctl_cmd();
if (cp == NULL)
return -1;
const char *brname = cp->defbridge;
if (argc == 2)
brname = argv[1];
char fname[128];
sprintf(fname, "/tmp/.ofrates-tmp-file-%s-%d.txt", brname, getpid());
for (;;) {
sleep(1);
gettimeofday(&hp0->tv, NULL);
exec_ovs_vsctl_dump_flows(cp, fname, brname);
read_stat_file(hp0, brname, fname);
print_rule_stats(hp0, hp1);
free_list(hp1);
// Rotate
tp = hp1;
hp1 = hp0;
hp0 = tp;
}
}
|
the_stack_data/154828805.c | /*
* Copyright (c) 2017, 2018, Oracle and/or its affiliates.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to
* endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdlib.h>
int main() {
volatile float *arr = malloc(10 * sizeof(float));
arr[5] = 1.3;
arr[4] = 4.8;
return arr[5] + arr[4];
}
|
the_stack_data/599386.c | #ifdef NDEBUG
#error Assertions unexpectedly disabled.
#endif
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
static void *xcalloc(const size_t count, const size_t size)
{
void *const ret = calloc(count, size);
if (!ret) abort();
return ret;
}
struct DisjointSets {
int *elems; // elems[i] holds the parent or negative size of i
int count;
};
static void ds_init(struct DisjointSets *const dsp, const int element_count)
{
assert(dsp);
assert(element_count > 0);
dsp->elems = xcalloc(element_count, sizeof *dsp->elems);
dsp->count = element_count;
for (int elem = 0; elem < dsp->count; ++elem) dsp->elems[elem] = -1;
}
static void ds_free(struct DisjointSets *const dsp)
{
assert(dsp);
free(dsp->elems);
dsp->elems = NULL;
}
static inline bool ds_detail_exists(const struct DisjointSets *const dsp,
const int elem)
{
assert(dsp);
return 0 <= elem && elem < dsp->count;
}
static int ds_detail_find_set(const struct DisjointSets *const dsp, int elem)
{
assert(dsp);
// Find the ancestor.
int leader = elem;
while (dsp->elems[leader] >= 0) leader = dsp->elems[leader];
// Compress the path.
while (elem != leader) {
const int parent = dsp->elems[elem];
dsp->elems[elem] = leader;
elem = parent;
}
return leader;
}
static void ds_detail_join(const struct DisjointSets *const dsp,
const int parent, const int child)
{
assert(dsp);
dsp->elems[parent] += dsp->elems[child];
dsp->elems[child] = parent;
}
static void ds_union(const struct DisjointSets *const dsp,
int elem1, int elem2)
{
assert(dsp);
assert(ds_detail_exists(dsp, elem1) && ds_detail_exists(dsp, elem2));
// Find the ancestors and stop if they are the same.
elem1 = ds_detail_find_set(dsp, elem1);
elem2 = ds_detail_find_set(dsp, elem2);
if (elem1 == elem2) return;
// Union by (negatively stored) size.
if (dsp->elems[elem2] < dsp->elems[elem1]) {
ds_detail_join(dsp, elem2, elem1);
} else {
ds_detail_join(dsp, elem1, elem2);
}
}
static int ds_size(const struct DisjointSets *const dsp, int elem)
{
assert(dsp);
assert(ds_detail_exists(dsp, elem));
elem = ds_detail_find_set(dsp, elem);
return -dsp->elems[elem];
}
static void run_queries(const struct DisjointSets *const dsp, int query_count)
{
assert(dsp);
assert(query_count > 0);
while (query_count-- > 0) {
char action = '\0';
(void)scanf(" %c", &action);
assert(action == 'M' || action == 'Q');
if (action == 'M') {
// Merge communities.
int elem1 = 0, elem2 = 0;
(void)scanf(" %d %d", &elem1, &elem2);
assert(elem1 > 0 && elem2 > 0);
ds_union(dsp, elem1, elem2);
} else {
// Query size.
int elem = 0;
(void)scanf(" %d", &elem);
assert(elem > 0);
printf("%d\n", ds_size(dsp, elem));
}
}
}
int main(void)
{
int person_count = 0, query_count = 0;
(void)scanf(" %d %d", &person_count, &query_count);
assert(person_count > 0 && query_count > 0);
struct DisjointSets ds = { 0 };
ds_init(&ds, person_count + 1); // +1 for 1-based indexing
run_queries(&ds, query_count);
ds_free(&ds);
}
|
the_stack_data/842972.c | /* Homework C vs. PHP Performance Analysis 3.bubblesort.c
* 2017-2 Internet Programming
* Written by Lee Tae Hee, Dept. of Computer Science and Engineering, Univ. of Seoul
*/
#include <stdio.h>
#include <time.h>
int main() {
time_t start, end;
double gap;
start = clock();
int number[5000];
int tmp;
int lmt = 5000;
for (int i = 0; i < lmt; i++)
number[i] = lmt - i;
for (int i = 0; i < lmt; i++) {
for (int j = 0; j < lmt; j++) {
if (number[i] < number[j]) {
tmp = number[i];
number[i] = number[j];
number[j] = tmp;
}
}
}
end = clock();
gap = (double)(end - start) / (CLOCKS_PER_SEC);
printf("%lf ÃÊ...\n", gap);
}
|
the_stack_data/11293.c | #include <stdio.h>
#include <math.h>
int main(void) {
int n;
scanf("%d\n", &n);
double x = sqrt(5);
printf("%.1lf\n", (pow(1 + x, n) - pow(1 - x, n))/(pow(2, n) * x));
return 0;
} //Don't compile without '-lm' flag
|
the_stack_data/97013698.c | /*
$Id$
$Author$
*/
#include <errno.h>
#include <stdio.h>
#include <time.h>
/*
*** FORTRAN-callable routine to return current date and time information on
*** various UNIX platforms
*/
#undef FORTRANCAPS
#undef FORTRANUNDERSCORE
#if (defined( SUN ) || defined( __sgi ) || defined( DEC ) || defined( linux ))
#define FORTRANUNDERSCORE
#elif (defined( CRAY ) || defined( CRAY_T3E ))
#define FORTRANCAPS
#endif
#if ( defined FORTRANCAPS )
#define get_date_ GET_DATE
#elif ( ! defined FORTRANUNDERSCORE )
#define get_date_ get_date
#endif
void get_date_(int *mon, int *day, int *yr, int *hr, int *min, int *sec)
{
extern int sys_nerr; /* # of system error codes */
#ifdef linux
extern const char *const sys_errlist[]; /* english translation of error codes */
#else
extern char *sys_errlist[]; /* english translation of error codes */
#endif
extern int errno; /* error code # */
time_t clock;
struct tm *tmptr;
if ( ( clock = time( 0 ) ) == -1 ) {
fprintf( stderr, "time failed: %d, %s\n",
errno, sys_errlist[errno] );
exit( -1 );
}
tmptr = localtime(&clock);
*mon = tmptr->tm_mon + 1; /* Change 0-11 range to 1-12 */
*day = tmptr->tm_mday;
*yr = tmptr->tm_year;
*hr = tmptr->tm_hour;
*min = tmptr->tm_min;
*sec = tmptr->tm_sec;
return;
}
|
the_stack_data/3263808.c | int lib2fun(void);
int lib3fun(void);
#if defined _WIN32 || defined __CYGWIN__
#define DLL_PUBLIC __declspec(dllexport)
#else
#if defined __GNUC__
#define DLL_PUBLIC __attribute__ ((visibility("default")))
#else
#pragma message ("Compiler does not support symbol visibility.")
#define DLL_PUBLIC
#endif
#endif
int DLL_PUBLIC libfun(void) {
return lib2fun() + lib3fun();
}
|
the_stack_data/119722.c | // Illustrates a problem with post-incrementing a pointer used in a loop comparison
char MESSAGE[20] = "camelot";
char* const SCREEN = (char*)0x0400;
void main() {
char* msg = MESSAGE;
// Error! The post-increment in the following loop is turned into a pre-increment by the compiler.
while(*msg++) {}
// Now msg should point right after the zero, since the post increment was executed in the last condition that evaluated to zero.
*--msg = 'x';
*++msg = 0;
// This should append an x at the end of the message - instead it replaces the last char of the message.
// Print the resulting message - should be "camelotx" - but the error causes it to be "camelox"
char i=0;
while(MESSAGE[i]) {
SCREEN[i] = MESSAGE[i];
i++;
}
}
|
the_stack_data/739492.c | float func(){
return 13;
}
|
the_stack_data/97012510.c | #include <stdio.h>
#include <assert.h>
#define MAXBUFFSIZE 50
char buff[MAXBUFFSIZE];
void concat(char *,char *);
int strsize(char *);
int main(){
char st[]="word";
char st2[]="word2";
concat(st,st2);
printf("%s\n",buff);
return 0;
}
void concat(char *s,char *t){
int i;
int n = strsize(s)+strsize(t);
if(n<=MAXBUFFSIZE){
for(i=0;(buff[i]=*s)!='\0';i++,s++);
for(;(buff[i]=*t)!='\0';i++,t++);
}
}
int strsize(char *c){
int i;
for(i=0;*c!='\0';c++,i++)
;
return i;
}
|
the_stack_data/153267691.c | /***********************************************************
optmult.c -- 行列の積
***********************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#define N 4 /* 行列の数 */
int nrow[N + 1] = {4, 2, 6, 3, 5}, /* 例えば */
mincost[N][N], split[N][N];
void printresult(int left, int right)
{
if (left == right) printf("A%d", left);
else {
printf("(");
printresult(left, split[left][right]);
printresult(split[left][right] + 1, right);
printf(")");
}
}
int main(void)
{
int i, left, right, length, cost, min, choice;
for (i = 0; i < N; i++) mincost[i][i] = 0;
for (length = 1; length < N; length++) {
for (left = 0; left < N - length; left++) {
right = left + length; min = INT_MAX;
for (i = left; i < right; i++) {
cost = mincost[left][i]
+ mincost[i+1][right]
+ nrow[left]*nrow[i+1]*nrow[right+1];
if (cost < min) {
min = cost; choice = i;
}
}
mincost[left][right] = min;
split[left][right] = choice;
}
}
printf("Minimum cost = %d\n", mincost[0][N - 1]);
printresult(0, N - 1);
return 0;
}
|
the_stack_data/1057104.c | /* Name: Abhay HM
* Date: 15/09/2021
* Info: Program to convert binary to decimal and vice versa.
*/
#include <stdio.h>
#include <string.h>
/* Function for converting decimal to binary */
void print_binary(int number){
for(int i = 31; i >= 0; --i){
if(number & (1 << i)){
printf("1");
}
else{
printf("0");
}
}
printf("\n");
}
/* Function for converting binary to decimal */
void print_decimal(char *number){
int number_int = 0;
unsigned int len = strlen(number);
for(int i = 0; i < len; ++i){
if((number[i] == '1') && (number[i] != '-')){
number_int = number_int | (1 << (len - i - 1));
}
}
if(number[0] == '-'){
number_int = (~number_int) + 1;
}
printf("%d\n",number_int);
}
int main(){
unsigned char binary[32] = {0};
unsigned int choice = 0;
int decimal = 0;
/* Menu for the user */
printf("List of conversions available:\n");
printf("1) Decimal to binary\n");
printf("2) Binary to decimal\n");
printf("Enter your choice:");
scanf("%u",&choice);
/* Case for conversions */
switch(choice){
case 1:{
printf("Enter the decimal number:");
scanf("%d",&decimal);
printf("Number in binary is:");
print_binary(decimal);
}break;
case 2:{
printf("Enter the binary number:");
scanf("%s",binary);
printf("Number in decimal is:");
print_decimal(binary);
}break;
default :{
printf("Invalid choice\n");
}
}
/* Exit */
return 0;
}
|
the_stack_data/121128.c | #include<stdio.h>
int main() {
FILE *fp1, *fp2;
int c, alpha, count, table[728] = {};
int num = 0;
if ((fp1 = fopen("infile.txt","r")) == NULL) { //読み込み用オープン
fprintf(fp1,"infile.txtは見つかりませんでした\n");
}
if ((fp2 = fopen("outalpha.txt","w")) == NULL) { //書き込み用オープン
fprintf(fp2,"outfile.txtは見つかりませんでした\n");
}
alpha = fgetc(fp1);
while((c = fgetc(fp1)) != EOF) { //ファイルの中身がEOFになるまで続ける
if ((c == ' ') || (c == '\n')) { //spaceの場合27番目の要素を+1
c = 26;
num = c + alpha;
table[num]++;
} else if (c >= 97 && c <= 122) {
c = c - 97;
num = c + alpha;
table[num]++;
alpha = c * 26;
}
alpha = c * 27;
}
for (count = 0; count < 728; count++) {
if((count >= 702) && (count <= 728)) {
fprintf(fp2, "%d : _'%c'\n", table[count], count - 605);
} else if ((count % 27) == 26) {
fprintf(fp2, "%d : '%c_'\n", table[count], count / 27 + 97);
} else {
fprintf(fp2, "%d : '%c%c'\n", table[count], count / 27 + 97, count % 27 + 97);
}
}
fclose(fp1); //読み込み用クローズ
fclose(fp2); //書き込み用クローズ
printf("outalpha.txtに出力しました\n");
return 0;
}
|
the_stack_data/184518514.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isacii.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ebouvier <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/04 18:42:36 by ebouvier #+# #+# */
/* Updated: 2018/04/04 18:52:15 by ebouvier ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isascii(int c)
{
return (c >= 0 && c <= 0177);
}
|
the_stack_data/29499.c | /* Generated by CIL v. 1.7.0 */
/* print_CIL_Input is false */
struct _IO_FILE;
struct timeval;
extern void signal(int sig , void *func ) ;
extern float strtof(char const *str , char const *endptr ) ;
typedef struct _IO_FILE FILE;
extern int atoi(char const *s ) ;
extern double strtod(char const *str , char const *endptr ) ;
extern int fclose(void *stream ) ;
extern void *fopen(char const *filename , char const *mode ) ;
extern void abort() ;
extern void exit(int status ) ;
extern int raise(int sig ) ;
extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ;
extern int strcmp(char const *a , char const *b ) ;
extern int rand() ;
extern unsigned long strtoul(char const *str , char const *endptr , int base ) ;
void RandomFunc(unsigned long input[1] , unsigned long output[1] ) ;
extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ;
extern int gettimeofday(struct timeval *tv , void *tz , ...) ;
extern int printf(char const *format , ...) ;
int main(int argc , char *argv[] ) ;
void megaInit(void) ;
extern unsigned long strlen(char const *s ) ;
extern long strtol(char const *str , char const *endptr , int base ) ;
extern unsigned long strnlen(char const *s , unsigned long maxlen ) ;
extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ;
struct timeval {
long tv_sec ;
long tv_usec ;
};
extern void *malloc(unsigned long size ) ;
extern int scanf(char const *format , ...) ;
void megaInit(void)
{
{
}
}
int main(int argc , char *argv[] )
{
unsigned long input[1] ;
unsigned long output[1] ;
int randomFuns_i5 ;
unsigned long randomFuns_value6 ;
int randomFuns_main_i7 ;
{
megaInit();
if (argc != 2) {
printf("Call this program with %i arguments\n", 1);
exit(-1);
} else {
}
randomFuns_i5 = 0;
while (randomFuns_i5 < 1) {
randomFuns_value6 = strtoul(argv[randomFuns_i5 + 1], 0, 10);
input[randomFuns_i5] = randomFuns_value6;
randomFuns_i5 ++;
}
RandomFunc(input, output);
if (output[0] == 4242424242UL) {
printf("You win!\n");
} else {
}
randomFuns_main_i7 = 0;
while (randomFuns_main_i7 < 1) {
printf("%lu\n", output[randomFuns_main_i7]);
randomFuns_main_i7 ++;
}
}
}
void RandomFunc(unsigned long input[1] , unsigned long output[1] )
{
unsigned long state[1] ;
unsigned long local1 ;
unsigned short copy11 ;
{
state[0UL] = (input[0UL] - 51238316UL) - 339126204UL;
local1 = 0UL;
while (local1 < 0UL) {
if (state[0UL] > local1) {
state[0UL] |= (((state[local1] >> ((state[local1] & 15UL) | 1UL)) | (state[local1] << (64 - ((state[local1] & 15UL) | 1UL)))) & 63UL) << 4UL;
copy11 = *((unsigned short *)(& state[local1]) + 1);
*((unsigned short *)(& state[local1]) + 1) = *((unsigned short *)(& state[local1]) + 0);
*((unsigned short *)(& state[local1]) + 0) = copy11;
copy11 = *((unsigned short *)(& state[local1]) + 0);
*((unsigned short *)(& state[local1]) + 0) = *((unsigned short *)(& state[local1]) + 2);
*((unsigned short *)(& state[local1]) + 2) = copy11;
} else {
state[0UL] = (state[0UL] << (((state[0UL] >> 2UL) & 15UL) | 1UL)) | (state[0UL] >> (64 - (((state[0UL] >> 2UL) & 15UL) | 1UL)));
state[0UL] |= ((state[0UL] + state[local1]) & 15UL) << 2UL;
}
local1 ++;
}
output[0UL] = ((state[0UL] >> 13UL) | (state[0UL] << 51UL)) + 563432908449020955UL;
}
}
|
the_stack_data/90766436.c | #include <stdio.h>
void product(float a, float b, float c);
int main()
{
float x,y,z;
printf("Type three numbers, separated by spaces: ");
scanf("%f %f %f",&x,&y,&z);
product(x,y,z);
return(0);
}
void product(float a, float b, float c)
{
float p;
p = a * b * c;
printf("%f * %f * %f = %f\n",a,b,c,p);
}
|
the_stack_data/31388663.c | #include <stdio.h>
#define INT_MAX 1000000000
int t, x, y, a, b;
int main()
{
scanf("%d", &t);
while (t--)
{
scanf("%d %d %d %d", &x, &y, &a, &b);
if ((y - x) % (a + b) == 0)
printf("%d\n", (y - x) / (a + b));
else
printf("-1\n");
}
} |
the_stack_data/32949753.c | /* { dg-do compile } */
/* { dg-options "-O2" } */
extern int dbg_cnt (void);
struct function
{
unsigned int calls_setjmp:1;
};
extern struct function *cfun;
unsigned char
gate_rtl_cprop (void)
{
return !(cfun + 0)->calls_setjmp && dbg_cnt ();
}
/* This should be implementable without performing a bitmask as we can
just use a test imm,mem. So instructions which load the object from
memory and mask off bits are unnecessary. In theory we can just count
the move-with-extension, and and testb instructions. There should be
only one. */
/* { dg-final { scan-assembler-times "movzbl|and|testb" 1 { target { i?86-*-* x86_64-*-*} } } } */
|
the_stack_data/1090304.c | #include <stdio.h>
#include <math.h>
int es_primo(int numero);
int main(){
// int numero = 9;
// printf("Ingresa un numero:");
// scanf("%d", &numero);
// (es_primo(numero)==1)?printf("%d es primo\n", numero):printf("%d no es primo\n", numero);
int primos = 0, no_primos = 0;
for (int numero = 1; numero <= 10000; numero++)
{
if(es_primo(numero)==1){
//printf("%d es primo\n", numero);
primos++;
} else {
//printf("%d no es primo\n", numero);
no_primos++;
}
}
printf("Numero de primos %d, numero no primos %d", primos, no_primos);
return 0;
}
//2,3,5 y 7
//4,6,8 y 9
int es_primo(int numero){
for (int i = 2; i <= sqrt(numero); i++){
if ( numero % i == 0) {
return 0;
}
}
return 1;
} |
the_stack_data/28711.c | #include <stdio.h>
int main()
{
int years, days;
scanf("%d", &years);
days = years * 365;
printf("%d", days);
return 0;
} |
the_stack_data/125139378.c | extern void __VERIFIER_error() __attribute__ ((__noreturn__));
void __VERIFIER_assert(int cond) {
if (!(cond)) {
ERROR: __VERIFIER_error();
}
return;
}
int main(void) {
unsigned int x = 10;
while (x >= 10) {
x += 2;
}
__VERIFIER_assert(!(x % 2));
}
|
the_stack_data/913376.c | #include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node * next;
}*head,*new,*p;
void create(int n);
void displaylist();
void insertatend(int d);
void displaylist();
int main()
{
printf("enter total no of nodes");
int n,d;
scanf("%d",&n);
create(n);
scanf("%d",&d);
insertatend( d);
printf("data in the list\n");
displaylist();
}
void create(int n)
{
int val ,i;
head=(struct node*)malloc(sizeof(struct node));
printf("enter value of node1");
scanf("%d",&val);
head->data=val;
head->next=NULL;
p=head;
for(i=2;i<=n;i++)
{
new=(struct node *)malloc(sizeof(struct node));
printf("enter data of node %d",i);
scanf("%d",&val);
new->data=val;
new->next=NULL;
p->next=new;
p=p->next;
p=new;
p->next=head;
}
printf("circular linked list created successfully\n");
}
void insertatend(int d)
{
new=(struct node *)malloc(sizeof(struct node));
new->data=d;
p=head;
while(p->next!=head)
{
p=p->next;
}
p->next=new;
new->next=head;
}
void displaylist()
{
p=head;
printf("data in list");
do{
printf("%d->",p->data);
p=p->next;
}
while(p!=head);
}
|
the_stack_data/128499.c | /**
*******************************************************************************
* Copyright(c) 2019, Realtek Semiconductor Corporation. All rights reserved.
*******************************************************************************
* @file amebaD_MP_bt40_fw_asic_rom_patch_200120_1451_new.bin
* @date 2020-01-20 14:51
* @patch1 HCI ver: 0x8289, LMP ver: 0xD345, BTCOEX Version: 20151130-0202, SVN ver: 21493
* @patch2 HCI ver: 0x8298, LMP ver: 0xC56E, BTCOEX Version: 20151130-0202, SVN ver: 22682
*/
const unsigned char rtlbt_mp_fw[] = {
0x52, 0x65, 0x61, 0x6c, 0x74, 0x65, 0x63, 0x68, 0xee, 0x2e, 0x00, 0x82,
0x02, 0x00, 0x01, 0x00, 0x02, 0x00, 0x68, 0x33, 0x9c, 0x1c, 0x30, 0x00,
0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xfd, 0x63, 0x05, 0x62, 0x22, 0xb2, 0x40, 0x9a, 0x22, 0xb3, 0x42, 0x34,
0x82, 0x34, 0x80, 0xcb, 0x21, 0xb3, 0x40, 0xcb, 0x21, 0xb3, 0x22, 0xb2,
0x60, 0xda, 0x22, 0xb3, 0x22, 0xb2, 0x60, 0xda, 0x22, 0xb3, 0x23, 0xb2,
0x60, 0xda, 0x23, 0xb3, 0x23, 0xb2, 0x60, 0xda, 0x23, 0xb3, 0x24, 0xb2,
0x60, 0xda, 0x24, 0xb2, 0xe0, 0xf0, 0x61, 0xa2, 0xe0, 0xf0, 0x80, 0xa2,
0x60, 0x33, 0x8d, 0xeb, 0xe0, 0xf0, 0x82, 0xa2, 0x80, 0x34, 0x80, 0x34,
0x6d, 0xec, 0xe0, 0xf0, 0x63, 0xa2, 0x00, 0xf6, 0x60, 0x33, 0x8d, 0xeb,
0x08, 0xf0, 0x01, 0x6c, 0x8b, 0xec, 0x8c, 0xeb, 0x62, 0x34, 0xe0, 0xf0,
0x60, 0xc2, 0xe0, 0xf0, 0x81, 0xc2, 0x00, 0xf6, 0x62, 0x33, 0x82, 0x34,
0xe0, 0xf0, 0x82, 0xc2, 0xe0, 0xf0, 0x63, 0xc2, 0x00, 0x6b, 0x14, 0xb2,
0x60, 0xc2, 0x14, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x13, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x64, 0x73, 0x10, 0x80,
0xa2, 0x01, 0x12, 0x80, 0xa0, 0x01, 0x12, 0x80, 0xd1, 0x40, 0x10, 0x80,
0x3c, 0x09, 0x12, 0x80, 0xed, 0x40, 0x10, 0x80, 0x88, 0x09, 0x12, 0x80,
0xb9, 0x41, 0x10, 0x80, 0xe4, 0x0a, 0x12, 0x80, 0x39, 0x41, 0x10, 0x80,
0xf0, 0x0a, 0x12, 0x80, 0x19, 0x41, 0x10, 0x80, 0x6c, 0x09, 0x12, 0x80,
0xa8, 0x01, 0x12, 0x80, 0x00, 0x5c, 0x12, 0x80, 0xf1, 0x42, 0x10, 0x80,
0xc1, 0x36, 0x00, 0x80, 0x04, 0xb2, 0x05, 0xb3, 0x72, 0xda, 0x05, 0xb3,
0x6c, 0xda, 0x20, 0xe8, 0x00, 0x6a, 0x00, 0x65, 0xdc, 0x23, 0x12, 0x80,
0xdd, 0x42, 0x10, 0x80, 0xc9, 0x42, 0x10, 0x80, 0x20, 0xe8, 0x00, 0x6a,
0xfd, 0x63, 0x05, 0x62, 0x06, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x06, 0xb2,
0x40, 0xa2, 0x03, 0x2a, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0x31, 0x71, 0x10, 0x80, 0x00, 0x5c, 0x12, 0x80,
0x65, 0x53, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x40, 0xac, 0x01, 0xf4,
0x03, 0x72, 0x03, 0x61, 0x04, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97,
0x00, 0x6a, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0xf1, 0x40, 0x10, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0x44, 0xa4, 0x04, 0x67,
0x83, 0xa4, 0x40, 0x32, 0x25, 0x67, 0x89, 0xe2, 0xff, 0xf7, 0x1f, 0x6c,
0x8c, 0xea, 0xff, 0xf4, 0x07, 0x4c, 0x83, 0xea, 0x60, 0xa5, 0x09, 0x60,
0xfe, 0x4c, 0x83, 0xea, 0x18, 0x60, 0x5f, 0xf4, 0x00, 0x72, 0x15, 0x60,
0x7f, 0xf4, 0x0f, 0x72, 0x10, 0x10, 0xff, 0xf4, 0x0d, 0x72, 0x0f, 0x60,
0xff, 0xf4, 0x0e, 0x6c, 0x83, 0xea, 0x07, 0x60, 0xff, 0xf4, 0x07, 0x6c,
0x8b, 0xec, 0x89, 0xe2, 0x01, 0x6c, 0x43, 0xec, 0x02, 0x10, 0x1f, 0xf5,
0x14, 0x72, 0x00, 0x6a, 0x0b, 0x61, 0x5d, 0x67, 0x70, 0xc2, 0x90, 0x67,
0x07, 0xb2, 0x40, 0xea, 0x04, 0x05, 0x7d, 0x67, 0x50, 0xa3, 0x41, 0xc0,
0x40, 0xc1, 0x01, 0x6a, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0xcd, 0x5a, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x04, 0xd0, 0x40, 0xac, 0x04, 0x67, 0xff, 0xf4, 0x0d, 0x72, 0x3d, 0x60,
0xff, 0xf4, 0x0e, 0x6b, 0x63, 0xea, 0x20, 0x60, 0x7f, 0xf4, 0x15, 0x72,
0x36, 0x60, 0x88, 0x4b, 0x63, 0xea, 0x0c, 0x60, 0x5f, 0xf4, 0x00, 0x72,
0x30, 0x60, 0xca, 0x4b, 0x63, 0xea, 0x59, 0x61, 0x7f, 0xf4, 0x0f, 0x6b,
0x6b, 0xeb, 0x69, 0xe2, 0x01, 0x6b, 0x0c, 0x10, 0x7f, 0xf4, 0x18, 0x72,
0x24, 0x60, 0x7f, 0xf4, 0x18, 0x6b, 0x63, 0xea, 0x4c, 0x61, 0xff, 0xf4,
0x00, 0x6b, 0x6b, 0xeb, 0x69, 0xe2, 0x08, 0x6b, 0x43, 0xeb, 0x18, 0x10,
0xff, 0xf4, 0x1c, 0x72, 0x16, 0x60, 0xff, 0xf4, 0x1d, 0x6b, 0x63, 0xea,
0x09, 0x60, 0xf4, 0x4b, 0x63, 0xea, 0x3b, 0x61, 0x02, 0x4b, 0x63, 0xea,
0x0c, 0x61, 0xff, 0xf4, 0x16, 0x72, 0x08, 0x10, 0x5f, 0xf5, 0x05, 0x72,
0x06, 0x60, 0x9f, 0xf5, 0x11, 0x72, 0x07, 0x60, 0x1f, 0xf5, 0x14, 0x72,
0x2c, 0x61, 0x1f, 0xb2, 0x40, 0xea, 0x90, 0x67, 0x31, 0x10, 0x42, 0xa4,
0x0c, 0x72, 0x12, 0x6a, 0x2d, 0x61, 0x63, 0xa4, 0x1b, 0xb2, 0x62, 0xc2,
0x65, 0xa4, 0x84, 0xa4, 0x60, 0x33, 0x8d, 0xeb, 0x62, 0x34, 0x63, 0xc2,
0x84, 0xc2, 0x87, 0xa0, 0xa6, 0xa0, 0x6f, 0xeb, 0x80, 0x34, 0xad, 0xec,
0x85, 0xc2, 0x82, 0x34, 0x86, 0xc2, 0x89, 0xa0, 0xa8, 0xa0, 0x88, 0xc2,
0xa7, 0xc2, 0x8a, 0xa0, 0x89, 0xc2, 0x8b, 0xa0, 0x8a, 0xc2, 0x8c, 0xa0,
0x8b, 0xc2, 0x8e, 0xa0, 0xad, 0xa0, 0x60, 0xca, 0x80, 0x34, 0xad, 0xec,
0x86, 0xca, 0x00, 0x6a, 0x09, 0x10, 0x01, 0x6a, 0x40, 0xc5, 0x00, 0x6a,
0x40, 0xc6, 0x00, 0x6a, 0x05, 0x97, 0x04, 0x90, 0x00, 0xef, 0x03, 0x63,
0x80, 0xa8, 0xa2, 0x67, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x6e, 0x01, 0x6a,
0xf5, 0x17, 0x00, 0x65, 0xad, 0x6d, 0x10, 0x80, 0x20, 0x5c, 0x12, 0x80,
0xf1, 0xd8, 0x00, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x03, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0xc5, 0x63, 0x00, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x03, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0x99, 0xba, 0x00, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x18, 0xb3, 0x19, 0xb2, 0x43, 0xeb, 0x26, 0x61,
0x18, 0xb2, 0x80, 0x9a, 0x18, 0xb3, 0x8e, 0xeb, 0x21, 0x2b, 0x02, 0xaa,
0x17, 0xb5, 0x1d, 0x10, 0x42, 0x45, 0x17, 0xb4, 0x43, 0xec, 0x1a, 0x61,
0xc0, 0xa2, 0xff, 0xf7, 0x1f, 0x6f, 0x43, 0x46, 0x43, 0xe8, 0x14, 0x61,
0x45, 0xe5, 0x23, 0xec, 0x11, 0x61, 0x81, 0xa5, 0x60, 0xa5, 0x80, 0x34,
0x6d, 0xec, 0xec, 0xec, 0xe0, 0xf3, 0x1a, 0x5c, 0x09, 0x60, 0x43, 0xe0,
0x0d, 0xb2, 0x91, 0xe2, 0x03, 0x4d, 0x0d, 0xb2, 0x40, 0xea, 0xec, 0xe8,
0xb1, 0x67, 0xe2, 0x28, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0xf0, 0xdf, 0x10, 0x80, 0x64, 0x73, 0x10, 0x80,
0x68, 0x73, 0x10, 0x80, 0x55, 0xab, 0x23, 0x87, 0x6e, 0x73, 0x10, 0x80,
0xff, 0xdf, 0x10, 0x80, 0xa8, 0x01, 0x12, 0x80, 0x65, 0xf3, 0x00, 0x80,
0x02, 0xb2, 0x20, 0xe8, 0x48, 0xa2, 0x00, 0x65, 0x60, 0x5c, 0x12, 0x80,
0x08, 0xb2, 0xff, 0x6b, 0x8c, 0xeb, 0x86, 0xaa, 0x45, 0xaa, 0x05, 0x4c,
0x58, 0xeb, 0x0a, 0x6a, 0x12, 0xeb, 0x6d, 0xe4, 0x5a, 0xeb, 0x01, 0x2a,
0xe5, 0xe8, 0x20, 0xe8, 0x12, 0xea, 0x00, 0x65, 0x60, 0x5c, 0x12, 0x80,
0x0f, 0xb3, 0x10, 0xb2, 0xb2, 0xa2, 0x45, 0xab, 0x86, 0xab, 0xb8, 0xea,
0x05, 0x4c, 0x12, 0xea, 0x51, 0xe4, 0x0a, 0x6a, 0x5a, 0xec, 0x01, 0x2a,
0xe5, 0xe8, 0x48, 0xa3, 0x6e, 0x83, 0xb7, 0xe2, 0x64, 0x6a, 0x12, 0xec,
0xb8, 0xec, 0x12, 0xec, 0x5a, 0xec, 0x01, 0x2a, 0xe5, 0xe8, 0x12, 0xea,
0x69, 0xe2, 0x40, 0x32, 0x40, 0x32, 0x43, 0x32, 0x20, 0xe8, 0x43, 0x32,
0x60, 0x5c, 0x12, 0x80, 0x04, 0x5c, 0x12, 0x80, 0x05, 0xb4, 0x40, 0xa4,
0x02, 0x6b, 0x4c, 0xeb, 0x00, 0x6a, 0x01, 0x23, 0x41, 0x84, 0x20, 0xe8,
0x00, 0x65, 0x00, 0x65, 0x04, 0x5c, 0x12, 0x80, 0x19, 0xb4, 0x60, 0xa4,
0x02, 0x6a, 0x6c, 0xea, 0x00, 0x6b, 0x01, 0x22, 0x61, 0x84, 0x17, 0xb2,
0x61, 0xc2, 0x15, 0xb3, 0x88, 0xa3, 0xff, 0x6e, 0xa7, 0xa3, 0x83, 0xc2,
0x8c, 0xa3, 0xa2, 0xc2, 0x84, 0xc2, 0x8d, 0xa3, 0x85, 0xc2, 0x8e, 0xa3,
0x86, 0xc2, 0x8f, 0xa3, 0x87, 0xc2, 0x89, 0xa3, 0x88, 0xc2, 0x8a, 0xa3,
0x89, 0xc2, 0x95, 0xa3, 0x8b, 0xc2, 0x96, 0xa3, 0x8c, 0xc2, 0x97, 0xa3,
0x8d, 0xc2, 0x98, 0xa3, 0x8e, 0xc2, 0xff, 0x4c, 0xcc, 0xec, 0x09, 0xb6,
0x80, 0xc6, 0x09, 0xb6, 0x80, 0xc6, 0x09, 0xb6, 0x80, 0xc6, 0x09, 0xb4,
0xa0, 0xc4, 0x84, 0xa3, 0x79, 0xa3, 0x8a, 0xc2, 0x20, 0xe8, 0x79, 0xc2,
0x04, 0x5c, 0x12, 0x80, 0x70, 0x5c, 0x12, 0x80, 0x30, 0x00, 0x12, 0x80,
0x31, 0x00, 0x12, 0x80, 0x29, 0x07, 0x12, 0x80, 0x28, 0x07, 0x12, 0x80,
0xff, 0x63, 0x01, 0xd0, 0xff, 0x6a, 0x4c, 0xed, 0x4c, 0xec, 0xcc, 0xea,
0xb8, 0xea, 0x11, 0xb6, 0x0b, 0xa6, 0x6c, 0xa6, 0xc1, 0xa6, 0x00, 0xf6,
0xe0, 0x37, 0x00, 0xf6, 0xe3, 0x37, 0xd1, 0xe4, 0xf1, 0xe4, 0x12, 0xea,
0x57, 0xe4, 0x00, 0xf6, 0xa0, 0x35, 0x00, 0xf6, 0xa3, 0x35, 0xa2, 0xe8,
0x03, 0x60, 0x00, 0xf6, 0x00, 0x35, 0x04, 0x10, 0x62, 0xed, 0x04, 0x60,
0x00, 0xf6, 0x60, 0x35, 0x00, 0xf6, 0xa3, 0x35, 0x01, 0x90, 0xff, 0x6a,
0xac, 0xea, 0x20, 0xe8, 0x01, 0x63, 0x00, 0x65, 0x70, 0x5c, 0x12, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0xff, 0xf7, 0x1f, 0x68,
0x44, 0x67, 0xac, 0xe8, 0x07, 0x69, 0x2d, 0xe2, 0xff, 0xf7, 0xbf, 0xa3,
0xc0, 0xa3, 0x0d, 0xb3, 0x60, 0x9b, 0xfe, 0x49, 0xa0, 0x35, 0x00, 0xf6,
0x20, 0x31, 0x90, 0x67, 0x04, 0xd2, 0x00, 0xf6, 0x23, 0x31, 0x40, 0xeb,
0xcd, 0xed, 0x02, 0x48, 0xff, 0xf7, 0x1f, 0x6b, 0x01, 0x51, 0x6c, 0xe8,
0x04, 0x92, 0xe9, 0x60, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0x0c, 0x00, 0x12, 0x80, 0x07, 0xb2, 0xab, 0xa2,
0x60, 0xa4, 0x4c, 0xa2, 0x63, 0xed, 0x02, 0x60, 0x20, 0xe8, 0xa0, 0xc4,
0x43, 0xeb, 0x01, 0x60, 0x40, 0xc4, 0x20, 0xe8, 0x00, 0x65, 0x00, 0x65,
0x70, 0x5c, 0x12, 0x80, 0x00, 0x6a, 0x0b, 0xb3, 0x0b, 0xb4, 0x6d, 0xe2,
0xcb, 0xa4, 0xa0, 0xa3, 0x8c, 0xa4, 0xa3, 0xee, 0x02, 0x60, 0xc0, 0xc3,
0x03, 0x10, 0x83, 0xed, 0x01, 0x60, 0x80, 0xc3, 0x01, 0x4a, 0xff, 0x6b,
0x6c, 0xea, 0x02, 0x5a, 0xee, 0x61, 0x20, 0xe8, 0x00, 0x65, 0x00, 0x65,
0x80, 0x5c, 0x12, 0x80, 0x70, 0x5c, 0x12, 0x80, 0x20, 0xe8, 0x00, 0x65,
0x26, 0xb6, 0x27, 0xb2, 0x65, 0xae, 0xb2, 0xa2, 0x86, 0xae, 0xc0, 0xa2,
0xb8, 0xeb, 0x05, 0x4c, 0x12, 0xeb, 0x71, 0xe4, 0x0a, 0x6b, 0x7a, 0xec,
0x01, 0x2b, 0xe5, 0xe8, 0x02, 0x6b, 0xcc, 0xeb, 0x12, 0xec, 0x03, 0x23,
0x6b, 0xa2, 0xff, 0x73, 0x01, 0x61, 0xa8, 0x33, 0x1b, 0xb2, 0x48, 0xa2,
0xc0, 0xf4, 0x18, 0x6d, 0x58, 0xec, 0x12, 0xea, 0x98, 0xeb, 0x12, 0xeb,
0x6a, 0x33, 0x6b, 0xe2, 0x40, 0x32, 0x40, 0x32, 0x43, 0x32, 0x43, 0x32,
0xb8, 0xea, 0x04, 0xf7, 0x10, 0x6b, 0x12, 0xea, 0x3a, 0xf5, 0x09, 0x4a,
0x7a, 0xea, 0x01, 0x2b, 0xe5, 0xe8, 0x12, 0xea, 0x40, 0x32, 0x40, 0x32,
0x43, 0x32, 0x43, 0x32, 0x00, 0x52, 0x0c, 0x61, 0x32, 0x4a, 0x64, 0x6b,
0x7a, 0xea, 0x01, 0x2b, 0xe5, 0xe8, 0x12, 0xea, 0x00, 0xf6, 0x40, 0x32,
0x00, 0xf6, 0x43, 0x32, 0x20, 0xe8, 0x00, 0x65, 0xce, 0x4a, 0x64, 0x6b,
0x7a, 0xea, 0x01, 0x2b, 0xe5, 0xe8, 0x12, 0xea, 0x00, 0xf6, 0x40, 0x32,
0x00, 0xf6, 0x43, 0x32, 0x20, 0xe8, 0x00, 0x65, 0x60, 0x5c, 0x12, 0x80,
0x04, 0x5c, 0x12, 0x80, 0x0c, 0xb2, 0x59, 0xa2, 0xff, 0x6b, 0x6c, 0xec,
0x53, 0xe4, 0x6c, 0xed, 0x6c, 0xec, 0x06, 0x2d, 0x00, 0xf6, 0x80, 0x32,
0x00, 0xf6, 0x43, 0x32, 0x20, 0xe8, 0x00, 0x65, 0x06, 0xb2, 0x40, 0xa2,
0x53, 0xe4, 0x00, 0xf6, 0x80, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x20, 0xe8,
0x00, 0x65, 0x00, 0x65, 0x70, 0x5c, 0x12, 0x80, 0x8b, 0x5c, 0x12, 0x80,
0x09, 0xb2, 0x00, 0xf6, 0x80, 0x34, 0x59, 0xa2, 0x00, 0xf6, 0x83, 0x34,
0xff, 0x6b, 0x84, 0x34, 0x49, 0xe4, 0x6c, 0xed, 0x6c, 0xea, 0x04, 0x25,
0x04, 0xb4, 0x80, 0xa4, 0x89, 0xe2, 0x6c, 0xea, 0x20, 0xe8, 0x00, 0x65,
0x70, 0x5c, 0x12, 0x80, 0x8b, 0x5c, 0x12, 0x80, 0xfc, 0x63, 0x07, 0x62,
0x06, 0xd1, 0x05, 0xd0, 0x14, 0xb0, 0x40, 0x98, 0xff, 0xf7, 0x1f, 0x69,
0xe4, 0x67, 0x01, 0x6c, 0x2c, 0xef, 0xc4, 0x67, 0xac, 0xe9, 0x40, 0xea,
0x43, 0x6d, 0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67, 0xf1, 0x67, 0x40, 0xea,
0x44, 0x6d, 0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67, 0x41, 0x6d, 0x40, 0xea,
0x20, 0x6f, 0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67, 0x46, 0x6d, 0x40, 0xea,
0x10, 0x6f, 0x40, 0x98, 0x01, 0x6c, 0x47, 0x6d, 0xc4, 0x67, 0x40, 0xea,
0x00, 0x6f, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xef, 0x04, 0x63,
0x50, 0x00, 0x12, 0x80, 0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0,
0xff, 0x6a, 0x00, 0x6b, 0xac, 0xea, 0x03, 0x67, 0x1c, 0x6d, 0xc2, 0x67,
0xc7, 0xeb, 0x01, 0x6f, 0xec, 0xee, 0x07, 0x26, 0x79, 0xe4, 0xc0, 0x86,
0xc4, 0xed, 0xcd, 0xe8, 0xfc, 0x4d, 0xff, 0x6e, 0xcc, 0xed, 0x01, 0x4b,
0xff, 0x6e, 0xcc, 0xeb, 0x08, 0x5b, 0xef, 0x61, 0x0d, 0xb1, 0x60, 0x99,
0xff, 0xf7, 0x1f, 0x6a, 0xf0, 0x67, 0x4c, 0xef, 0x04, 0xd2, 0x03, 0x6c,
0x62, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x04, 0x92, 0x60, 0x99, 0x02, 0x37,
0xe2, 0x37, 0x4c, 0xef, 0x03, 0x6c, 0x63, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0x50, 0x00, 0x12, 0x80, 0xff, 0xf7, 0x1f, 0x6a, 0x8c, 0xea, 0x00, 0x6b,
0x68, 0x34, 0xc2, 0x67, 0xc7, 0xec, 0x86, 0x67, 0x0f, 0x6e, 0xcc, 0xec,
0x8e, 0x37, 0x79, 0xe5, 0x03, 0x27, 0x10, 0x6f, 0xeb, 0xef, 0xee, 0xec,
0x80, 0xc6, 0x01, 0x4b, 0xff, 0x6c, 0x8c, 0xeb, 0x04, 0x5b, 0xee, 0x61,
0x20, 0xe8, 0x00, 0x65, 0xfc, 0x63, 0x07, 0x62, 0xff, 0xf7, 0x1f, 0x6a,
0x8c, 0xea, 0x00, 0x6b, 0x68, 0x34, 0xa2, 0x67, 0xa7, 0xec, 0x85, 0x67,
0x0f, 0x6d, 0xac, 0xec, 0x8e, 0x36, 0x04, 0x05, 0x05, 0x26, 0x10, 0x6e,
0xcb, 0xee, 0x75, 0xe5, 0xce, 0xec, 0x01, 0x10, 0x75, 0xe5, 0x80, 0xc5,
0x01, 0x4b, 0xff, 0x6c, 0x8c, 0xeb, 0x04, 0x5b, 0xeb, 0x61, 0x00, 0x6a,
0x9d, 0x67, 0x4d, 0xe4, 0x90, 0x83, 0x07, 0x74, 0x01, 0x61, 0x06, 0x6c,
0x01, 0x6b, 0x8c, 0xeb, 0x04, 0x05, 0x03, 0x23, 0x55, 0xe5, 0x04, 0x6b,
0x02, 0x10, 0x55, 0xe5, 0x05, 0x6b, 0x64, 0xc5, 0x01, 0x4a, 0xff, 0x6b,
0x6c, 0xea, 0x04, 0x5a, 0xeb, 0x61, 0x14, 0xb2, 0x40, 0x9a, 0x03, 0x6c,
0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x02, 0xf0, 0x00, 0x6f, 0xbd, 0x67,
0xeb, 0xef, 0x4c, 0xef, 0x57, 0xa5, 0x76, 0xa5, 0x03, 0x6c, 0x40, 0x32,
0x78, 0x33, 0x44, 0x32, 0x6d, 0xea, 0x74, 0xa5, 0x01, 0x6e, 0x6d, 0xea,
0x75, 0xa5, 0x59, 0x6d, 0x6c, 0x33, 0x6d, 0xea, 0xe1, 0xf7, 0x1f, 0x6b,
0x6c, 0xea, 0x4d, 0xef, 0x06, 0xb2, 0x60, 0x9a, 0xff, 0xf7, 0x1f, 0x6a,
0x40, 0xeb, 0x4c, 0xef, 0x07, 0x97, 0x00, 0xef, 0x04, 0x63, 0x00, 0x65,
0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x0c, 0xb3, 0x80, 0xa3, 0x04, 0x6a, 0x8c, 0xea, 0x02, 0x22, 0x81, 0xab,
0x09, 0x10, 0x0a, 0xb3, 0x81, 0xa3, 0x01, 0x6a, 0x8c, 0xea, 0xff, 0x6c,
0x8c, 0xea, 0x00, 0x6c, 0x01, 0x22, 0x86, 0xab, 0x06, 0xb2, 0x80, 0xca,
0x06, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0x04, 0x5c, 0x12, 0x80, 0x20, 0x5c, 0x12, 0x80, 0xf6, 0x5c, 0x12, 0x80,
0x79, 0x47, 0x10, 0x80, 0xff, 0x6a, 0x4c, 0xed, 0x4c, 0xec, 0x00, 0x6a,
0x0d, 0x10, 0x01, 0x6b, 0x64, 0xec, 0x4d, 0xeb, 0x60, 0x32, 0x40, 0x32,
0x43, 0x32, 0xff, 0xf7, 0x1f, 0x6b, 0x43, 0x32, 0x6c, 0xea, 0x01, 0x4c,
0xff, 0x6b, 0x6c, 0xec, 0x83, 0xed, 0xf1, 0x60, 0x20, 0xe8, 0x00, 0x65,
0xfa, 0x63, 0x0b, 0x62, 0x01, 0x6b, 0x39, 0xb2, 0x6b, 0xeb, 0x60, 0xda,
0x61, 0xda, 0x38, 0xb3, 0x92, 0xa3, 0x74, 0xa3, 0x88, 0xc2, 0x0d, 0x6c,
0x85, 0xca, 0x81, 0xf4, 0x1c, 0x6c, 0x86, 0xca, 0x6e, 0xc2, 0x00, 0x6c,
0x8c, 0x35, 0x33, 0xb2, 0x01, 0x4c, 0xb5, 0xe2, 0x00, 0x6b, 0x06, 0x5c,
0x60, 0xdd, 0x62, 0xcd, 0xf7, 0x61, 0x30, 0xb5, 0xa8, 0xda, 0x30, 0xb5,
0xa0, 0xda, 0x50, 0x6d, 0xa2, 0xca, 0x2f, 0xb4, 0x2f, 0xb5, 0x86, 0xda,
0xaa, 0xda, 0x02, 0x6c, 0x18, 0x6d, 0x8e, 0xca, 0x92, 0xca, 0xb6, 0xca,
0x07, 0x6d, 0x2c, 0xb2, 0xa0, 0xc2, 0x80, 0x6d, 0x2b, 0xb2, 0xab, 0xed,
0xaf, 0xc2, 0x14, 0x6d, 0xa0, 0xc2, 0x2a, 0xb2, 0xc0, 0xa2, 0x2a, 0xb2,
0x29, 0xf6, 0x03, 0x6f, 0xc0, 0xc2, 0x1f, 0xb2, 0x62, 0xda, 0x61, 0xda,
0x60, 0xda, 0x30, 0x6b, 0x67, 0xc2, 0x68, 0xc2, 0x6c, 0xc2, 0x6d, 0xc2,
0x6e, 0xc2, 0x6f, 0xc2, 0x69, 0xc2, 0x6a, 0xc2, 0x01, 0x6b, 0x70, 0xc2,
0x00, 0x6b, 0x71, 0xc2, 0x19, 0x6b, 0x74, 0xc2, 0x5b, 0x6b, 0x75, 0xc2,
0x06, 0x6b, 0x76, 0xc2, 0x08, 0x6b, 0x77, 0xc2, 0x04, 0x6b, 0x78, 0xc2,
0x2c, 0x6b, 0xb2, 0xc2, 0x93, 0xc2, 0x79, 0xc2, 0x04, 0x6a, 0x04, 0xd2,
0x18, 0xb2, 0x05, 0xd2, 0x18, 0xb3, 0x80, 0xa3, 0x01, 0x6a, 0xa0, 0xf3,
0x19, 0x6e, 0x4c, 0xec, 0x06, 0xd4, 0x80, 0xa3, 0x96, 0x35, 0x9a, 0x34,
0x4c, 0xed, 0x4c, 0xec, 0x07, 0xd5, 0x08, 0xd4, 0x61, 0xa3, 0x03, 0x6c,
0x6c, 0xea, 0x09, 0xd2, 0x10, 0xb2, 0x40, 0xea, 0xfd, 0x6d, 0x0b, 0x97,
0x00, 0xef, 0x06, 0x63, 0x60, 0x5c, 0x12, 0x80, 0x04, 0x5c, 0x12, 0x80,
0x30, 0x5c, 0x12, 0x80, 0x18, 0x72, 0x10, 0x80, 0x1c, 0x72, 0x10, 0x80,
0x14, 0x72, 0x10, 0x80, 0xe4, 0x71, 0x10, 0x80, 0x8b, 0x5c, 0x12, 0x80,
0x70, 0x5c, 0x12, 0x80, 0x30, 0x00, 0x12, 0x80, 0x31, 0x00, 0x12, 0x80,
0xe0, 0x71, 0x10, 0x80, 0x20, 0x5c, 0x12, 0x80, 0xed, 0x5a, 0x01, 0x80,
0xf8, 0x63, 0x0f, 0x62, 0x0e, 0xd1, 0x0d, 0xd0, 0x03, 0x6a, 0x18, 0xb0,
0x04, 0xd2, 0x18, 0xb2, 0x05, 0xd2, 0x40, 0xa0, 0x01, 0x6b, 0xff, 0xf7,
0x1f, 0x69, 0x6c, 0xea, 0x06, 0xd2, 0x41, 0x98, 0x87, 0xa0, 0x0a, 0xd3,
0x42, 0x32, 0x2c, 0xea, 0x07, 0xd2, 0x48, 0xa0, 0xfd, 0x6d, 0xe0, 0xf2,
0x06, 0x6e, 0x40, 0x32, 0x8d, 0xea, 0x08, 0xd2, 0x68, 0xf6, 0x0e, 0x6f,
0x0d, 0xb2, 0x40, 0xea, 0x05, 0x6c, 0x40, 0xa0, 0x0a, 0x93, 0x4c, 0xeb,
0x0a, 0x23, 0xa8, 0xa0, 0x47, 0xa0, 0x81, 0x98, 0xa0, 0x35, 0x4d, 0xed,
0x82, 0x34, 0x2c, 0xec, 0x07, 0xb2, 0x40, 0xea, 0x2c, 0xed, 0x0f, 0x97,
0x0e, 0x91, 0x0d, 0x90, 0x00, 0xef, 0x08, 0x63, 0x20, 0x5c, 0x12, 0x80,
0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80, 0x81, 0x46, 0x10, 0x80,
0xf7, 0x63, 0x11, 0x62, 0x10, 0xd1, 0x0f, 0xd0, 0x00, 0xf6, 0x80, 0x34,
0x81, 0xb6, 0xff, 0x6a, 0x00, 0xf6, 0x83, 0x34, 0x4c, 0xec, 0xe1, 0xa6,
0x42, 0xa6, 0xab, 0xa6, 0x6c, 0xa6, 0x49, 0xe7, 0x49, 0xe4, 0x00, 0xf6,
0x40, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x42, 0xed, 0x03, 0x60, 0x00, 0xf6,
0xa0, 0x32, 0x04, 0x10, 0x62, 0xea, 0x04, 0x60, 0x00, 0xf6, 0x60, 0x32,
0x00, 0xf6, 0x43, 0x32, 0x74, 0xb6, 0xff, 0x69, 0x4c, 0xe9, 0xe1, 0xa6,
0x43, 0xa6, 0xab, 0xa6, 0x30, 0xc6, 0x49, 0xe7, 0x49, 0xe4, 0x00, 0xf6,
0x40, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x42, 0xed, 0x6c, 0xa6, 0x03, 0x60,
0x00, 0xf6, 0xa0, 0x32, 0x04, 0x10, 0x62, 0xea, 0x04, 0x60, 0x00, 0xf6,
0x60, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x68, 0xb6, 0xff, 0x68, 0x4c, 0xe8,
0xe1, 0xa6, 0x44, 0xa6, 0xab, 0xa6, 0x11, 0xc6, 0x49, 0xe7, 0x49, 0xe4,
0x00, 0xf6, 0x40, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x42, 0xed, 0x6c, 0xa6,
0x03, 0x60, 0x00, 0xf6, 0xa0, 0x32, 0x04, 0x10, 0x62, 0xea, 0x04, 0x60,
0x00, 0xf6, 0x60, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x5b, 0xb6, 0xff, 0x6f,
0x4c, 0xef, 0x41, 0xa6, 0xab, 0xa6, 0xf2, 0xc6, 0x0a, 0x65, 0x45, 0xa6,
0x6c, 0xa6, 0xc8, 0x67, 0x49, 0xe6, 0x49, 0xe4, 0x00, 0xf6, 0x40, 0x32,
0x00, 0xf6, 0x43, 0x32, 0x42, 0xed, 0x03, 0x60, 0x00, 0xf6, 0xa0, 0x32,
0x04, 0x10, 0x62, 0xea, 0x04, 0x60, 0x00, 0xf6, 0x60, 0x32, 0x00, 0xf6,
0x43, 0x32, 0xff, 0x6e, 0x4c, 0xee, 0x4d, 0xb2, 0x6c, 0xa2, 0xab, 0xa2,
0xd3, 0xc2, 0x2b, 0x65, 0x61, 0xa2, 0x46, 0xa2, 0x0b, 0x65, 0x68, 0x67,
0x49, 0xe3, 0x49, 0xe4, 0x00, 0xf6, 0x40, 0x32, 0x00, 0xf6, 0x43, 0x32,
0x42, 0xed, 0x03, 0x60, 0x00, 0xf6, 0xa0, 0x32, 0x05, 0x10, 0x69, 0x67,
0x62, 0xea, 0x04, 0x60, 0x00, 0xf6, 0x60, 0x32, 0x00, 0xf6, 0x43, 0x32,
0xff, 0x6d, 0x4c, 0xed, 0x3e, 0xb2, 0x6b, 0xa2, 0xb4, 0xc2, 0x0b, 0x65,
0x6c, 0xa2, 0x4b, 0x65, 0x61, 0xa2, 0x47, 0xa2, 0x2b, 0x65, 0x69, 0x67,
0x49, 0xe3, 0x49, 0xe4, 0x00, 0xf6, 0x40, 0x32, 0x00, 0xf6, 0x43, 0x32,
0x68, 0x67, 0x42, 0xeb, 0x03, 0x61, 0x6a, 0x67, 0x62, 0xea, 0x04, 0x60,
0x00, 0xf6, 0x60, 0x32, 0x00, 0xf6, 0x43, 0x32, 0xff, 0x6b, 0x4c, 0xeb,
0x30, 0xb2, 0x75, 0xc2, 0x6b, 0x65, 0x6b, 0xa2, 0x2b, 0x65, 0x6c, 0xa2,
0x0b, 0x65, 0x61, 0xa2, 0x48, 0xa2, 0x4b, 0x65, 0x6a, 0x67, 0x49, 0xe3,
0x49, 0xe4, 0x00, 0xf6, 0x40, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x69, 0x67,
0x42, 0xeb, 0x03, 0x61, 0x68, 0x67, 0x62, 0xea, 0x04, 0x60, 0x00, 0xf6,
0x60, 0x32, 0x00, 0xf6, 0x43, 0x32, 0x23, 0xb3, 0x2b, 0x65, 0x57, 0xc3,
0x4b, 0xa3, 0x6c, 0xa3, 0x0a, 0x65, 0x8b, 0x65, 0x49, 0x67, 0x69, 0x67,
0x41, 0xa2, 0x69, 0xa3, 0x4a, 0x65, 0x2b, 0x65, 0x4a, 0x67, 0x69, 0x67,
0x69, 0xe2, 0x51, 0xe4, 0x00, 0xf6, 0x80, 0x34, 0x00, 0xf6, 0x83, 0x34,
0x48, 0x67, 0x82, 0xea, 0x03, 0x60, 0x00, 0xf6, 0x40, 0x34, 0x05, 0x10,
0x6c, 0x67, 0x62, 0xec, 0x04, 0x60, 0x00, 0xf6, 0x60, 0x34, 0x00, 0xf6,
0x83, 0x34, 0x12, 0xb2, 0x7a, 0xa2, 0x98, 0xc2, 0x02, 0x6c, 0x0b, 0x65,
0x68, 0x67, 0x6c, 0xec, 0x15, 0x24, 0x07, 0x6c, 0x04, 0xd4, 0x09, 0xd6,
0x0d, 0xb4, 0xcb, 0x67, 0x05, 0xd4, 0x08, 0xd7, 0x0a, 0xd5, 0x0b, 0xd6,
0x06, 0xd1, 0x07, 0xd0, 0x56, 0xa2, 0x04, 0x6c, 0x0c, 0xd2, 0x80, 0xf1,
0x02, 0x6e, 0x29, 0xf6, 0x13, 0x6f, 0x07, 0xb2, 0x40, 0xea, 0xfd, 0x6d,
0x11, 0x97, 0x10, 0x91, 0x0f, 0x90, 0x00, 0xef, 0x09, 0x63, 0x00, 0x65,
0x70, 0x5c, 0x12, 0x80, 0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x0e, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x04, 0x6c,
0x3f, 0x6b, 0x4c, 0xeb, 0x0c, 0xb2, 0x68, 0xc2, 0x0c, 0xb2, 0x9a, 0xa2,
0x02, 0x6a, 0x8c, 0xea, 0x0c, 0x22, 0x01, 0x6a, 0x04, 0xd2, 0x0a, 0xb2,
0x05, 0xd2, 0x06, 0xd3, 0x05, 0x6c, 0xfd, 0x6d, 0xc4, 0xf3, 0x15, 0x6f,
0x07, 0xb2, 0x40, 0xea, 0xb8, 0x6e, 0x09, 0x97, 0x00, 0xef, 0x05, 0x63,
0x44, 0x00, 0x12, 0x80, 0x60, 0x5c, 0x12, 0x80, 0x70, 0x5c, 0x12, 0x80,
0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x20, 0xb2, 0x50, 0xa2, 0x37, 0x22, 0x20, 0xb0,
0x20, 0xb3, 0x21, 0xb1, 0x40, 0x98, 0x06, 0x6c, 0x75, 0x6d, 0x04, 0xd2,
0x40, 0x98, 0x01, 0x6e, 0x6c, 0xea, 0x1e, 0xb3, 0x6d, 0xea, 0x40, 0xd8,
0x40, 0x99, 0x40, 0xea, 0x00, 0x65, 0x1c, 0xb3, 0x80, 0x9b, 0x01, 0x6f,
0x4d, 0xef, 0x0c, 0x65, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x05, 0xd3,
0x48, 0x67, 0x75, 0x6d, 0x01, 0x6e, 0x40, 0xea, 0x06, 0x6c, 0x16, 0xb2,
0x40, 0xea, 0x01, 0x6c, 0x40, 0x99, 0x06, 0x6c, 0x75, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x05, 0x93, 0xff, 0xf7, 0x1f, 0x6c, 0x8c, 0xea, 0x60, 0x9b,
0xff, 0xf7, 0x1e, 0x6f, 0x4c, 0xef, 0x06, 0x6c, 0x75, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x0c, 0xb2, 0x40, 0xea, 0x01, 0x6c, 0x04, 0x94, 0x80, 0xd8,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0x04, 0x5c, 0x12, 0x80, 0x00, 0xa0, 0x00, 0xb0, 0xff, 0xff, 0xff, 0xf7,
0x4c, 0x00, 0x12, 0x80, 0x00, 0x00, 0x00, 0x08, 0x50, 0x00, 0x12, 0x80,
0xe5, 0x57, 0x01, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x07, 0xb3, 0x80, 0xa3,
0x20, 0x6a, 0x8c, 0xea, 0x03, 0x22, 0x69, 0xa3, 0x05, 0xb2, 0x72, 0xc2,
0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0x20, 0x5c, 0x12, 0x80, 0x04, 0x5c, 0x12, 0x80, 0xa5, 0x4c, 0x10, 0x80,
0xf9, 0x63, 0x0d, 0x62, 0x0c, 0xd1, 0x0b, 0xd0, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xed, 0x0e, 0xd4, 0x07, 0xd5, 0x40, 0xf1, 0x08, 0x24, 0x40, 0xf1,
0x06, 0x25, 0x00, 0x6b, 0x05, 0xd3, 0x04, 0xd2, 0x3d, 0x11, 0x05, 0x94,
0x0e, 0x95, 0xe1, 0xf7, 0x1f, 0x69, 0x84, 0x32, 0x49, 0xe5, 0x06, 0xd2,
0xc0, 0xaa, 0x44, 0x67, 0x01, 0x4a, 0x44, 0x32, 0x49, 0xe5, 0x00, 0xaa,
0x1e, 0xf0, 0x00, 0x6a, 0xcc, 0xea, 0x0e, 0xf0, 0x00, 0x72, 0xcc, 0xe9,
0xa0, 0xf0, 0x19, 0x60, 0x0e, 0xf0, 0x01, 0x52, 0x1c, 0x60, 0x06, 0xf0,
0x00, 0x72, 0x80, 0xf0, 0x04, 0x60, 0x06, 0xf0, 0x01, 0x52, 0x08, 0x60,
0x02, 0xf0, 0x00, 0x72, 0x50, 0x60, 0x04, 0xf0, 0x00, 0x72, 0x76, 0x60,
0x3c, 0x22, 0x10, 0x11, 0x0a, 0xf0, 0x00, 0x72, 0x80, 0xf0, 0x11, 0x60,
0x0c, 0xf0, 0x00, 0x72, 0x80, 0xf0, 0x1d, 0x60, 0x08, 0xf0, 0x00, 0x72,
0x80, 0xf0, 0x02, 0x60, 0x03, 0x11, 0x16, 0xf0, 0x00, 0x72, 0xa0, 0xf0,
0x0d, 0x60, 0x16, 0xf0, 0x01, 0x6b, 0x62, 0xea, 0x0d, 0x60, 0x12, 0xf0,
0x00, 0x72, 0x80, 0xf0, 0x14, 0x60, 0x14, 0xf0, 0x00, 0x72, 0x80, 0xf0,
0x1e, 0x60, 0x10, 0xf0, 0x00, 0x72, 0x80, 0xf0, 0x08, 0x60, 0xee, 0x10,
0x1a, 0xf0, 0x00, 0x72, 0x70, 0x67, 0xa0, 0xf0, 0x10, 0x60, 0x1a, 0xf0,
0x01, 0x6b, 0x62, 0xea, 0x05, 0x60, 0x18, 0xf0, 0x00, 0x72, 0x80, 0xf0,
0x14, 0x60, 0xe0, 0x10, 0x1c, 0xf0, 0x00, 0x72, 0x30, 0x67, 0xc0, 0xf0,
0x00, 0x60, 0x1e, 0xf0, 0x00, 0x72, 0xc0, 0xf0, 0x17, 0x61, 0x04, 0xd0,
0xd5, 0x10, 0xff, 0x6d, 0x01, 0xf7, 0x00, 0x6c, 0xcc, 0xec, 0xac, 0xee,
0x40, 0x6a, 0xc7, 0x36, 0x4d, 0xee, 0x6f, 0xb2, 0x40, 0x9a, 0xcc, 0xed,
0x82, 0x34, 0x01, 0x6e, 0x40, 0xea, 0xf0, 0x67, 0xc5, 0x10, 0xff, 0x69,
0x86, 0x67, 0x6b, 0xb2, 0x2c, 0xee, 0x01, 0xf7, 0x00, 0x6b, 0x40, 0x6f,
0x40, 0x9a, 0xc7, 0x35, 0x6c, 0xec, 0xed, 0xed, 0x2c, 0xed, 0x09, 0xd3,
0x08, 0xd7, 0x82, 0x34, 0x40, 0xea, 0x01, 0x6e, 0x06, 0x94, 0x09, 0x93,
0x08, 0x97, 0xa0, 0xac, 0x01, 0x6e, 0xac, 0xeb, 0x63, 0x34, 0x04, 0x93,
0x2c, 0xed, 0xa7, 0x35, 0xed, 0xed, 0x6f, 0xef, 0x6c, 0xe8, 0x4c, 0xef,
0x5b, 0xb2, 0x0d, 0xef, 0x00, 0x9a, 0xff, 0xf7, 0x1f, 0x6a, 0x2c, 0xec,
0x2c, 0xed, 0x40, 0xe8, 0x4c, 0xef, 0x9c, 0x10, 0x58, 0xb2, 0xff, 0x6c,
0x40, 0x9a, 0x2c, 0xec, 0x18, 0x10, 0x57, 0xb2, 0x40, 0x9a, 0xff, 0x6b,
0x2c, 0xeb, 0x83, 0x67, 0x40, 0xea, 0x09, 0xd3, 0x04, 0x94, 0x09, 0x93,
0x8f, 0xed, 0x4c, 0xed, 0x50, 0xb2, 0x8c, 0xe8, 0xc0, 0x9a, 0x0d, 0xed,
0xff, 0xf7, 0x1f, 0x6a, 0x83, 0x67, 0x40, 0xee, 0x4c, 0xed, 0x82, 0x10,
0x4d, 0xb2, 0x40, 0x9a, 0x91, 0x67, 0xb0, 0x67, 0x40, 0xea, 0x00, 0x65,
0x7b, 0x10, 0x4b, 0xb2, 0x04, 0x94, 0xff, 0xf7, 0x1f, 0x6b, 0x49, 0xe1,
0xa0, 0xaa, 0x8f, 0xea, 0x8c, 0xe8, 0x6c, 0xed, 0x4c, 0xed, 0x0d, 0xed,
0x44, 0xb2, 0x40, 0x9a, 0x91, 0x67, 0x6c, 0xed, 0xed, 0x17, 0x44, 0xb2,
0x03, 0x10, 0x43, 0xb2, 0x05, 0x10, 0x43, 0xb2, 0x45, 0xe1, 0x00, 0xc9,
0x63, 0x10, 0x41, 0xb2, 0x45, 0xe1, 0x04, 0x95, 0x40, 0xa9, 0xff, 0xf7,
0x1f, 0x6b, 0xaf, 0xec, 0x6c, 0xea, 0x8c, 0xea, 0xac, 0xe8, 0x0d, 0xea,
0x6c, 0xea, 0x40, 0xc9, 0x55, 0x10, 0x90, 0x67, 0x3a, 0xb2, 0x02, 0x10,
0x90, 0x67, 0x3a, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x4d, 0x10, 0x32, 0xb2,
0x40, 0x9a, 0xff, 0x6c, 0x40, 0xea, 0x2c, 0xec, 0x40, 0x32, 0x40, 0x32,
0x43, 0x32, 0x43, 0x32, 0x00, 0x52, 0x42, 0x60, 0x32, 0xb2, 0x40, 0xea,
0x01, 0x6c, 0xff, 0x48, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xe8, 0xed, 0x28,
0x39, 0x10, 0x06, 0x92, 0xff, 0x6e, 0x01, 0xf7, 0x00, 0x6c, 0xa0, 0xaa,
0x40, 0x6a, 0xac, 0xec, 0xcc, 0xed, 0xa7, 0x35, 0x4d, 0xed, 0x21, 0xb2,
0x40, 0x9a, 0x82, 0x34, 0xcc, 0xed, 0x09, 0xd3, 0x40, 0xea, 0x01, 0x6e,
0x0f, 0x6c, 0x4c, 0xec, 0x25, 0x24, 0x24, 0xb2, 0x40, 0xea, 0x01, 0x6c,
0x09, 0x93, 0xff, 0xf7, 0x1f, 0x6a, 0xff, 0x4b, 0x4c, 0xeb, 0xe3, 0x2b,
0x1b, 0x10, 0x06, 0x93, 0x01, 0xf7, 0x00, 0x6c, 0x40, 0x6a, 0xa0, 0xab,
0xff, 0x6b, 0x01, 0x6e, 0xac, 0xec, 0x6c, 0xed, 0xa7, 0x35, 0x4d, 0xed,
0x11, 0xb2, 0x40, 0x9a, 0x6c, 0xed, 0x40, 0xea, 0x82, 0x34, 0x01, 0x6b,
0x4c, 0xeb, 0x08, 0x2b, 0x15, 0xb2, 0x40, 0xea, 0x01, 0x6c, 0xff, 0x49,
0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xe9, 0xe5, 0x29, 0x05, 0x94, 0xff, 0xf7,
0x1f, 0x6a, 0x02, 0x4c, 0x4c, 0xec, 0x05, 0xd4, 0x05, 0x95, 0x07, 0x92,
0x43, 0xed, 0xbf, 0xf6, 0x1e, 0x61, 0x0d, 0x97, 0x0c, 0x91, 0x0b, 0x90,
0x00, 0xef, 0x07, 0x63, 0x50, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80,
0x48, 0x00, 0x12, 0x80, 0x44, 0x00, 0x12, 0x80, 0x0c, 0x00, 0x12, 0x80,
0x00, 0x00, 0x00, 0xb6, 0x00, 0x10, 0x00, 0xb6, 0x00, 0xa0, 0x00, 0xb0,
0xe5, 0x57, 0x01, 0x80, 0xf9, 0x57, 0x01, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x05, 0xb2, 0x8a, 0x9a, 0xb6, 0xaa, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x30, 0x5c, 0x12, 0x80,
0x75, 0x4d, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x05, 0xb2, 0x86, 0x9a,
0xae, 0xaa, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef,
0x03, 0x63, 0x00, 0x65, 0x30, 0x5c, 0x12, 0x80, 0x75, 0x4d, 0x10, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x05, 0xb2, 0x88, 0x9a, 0xb2, 0xaa, 0x05, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65,
0x30, 0x5c, 0x12, 0x80, 0x75, 0x4d, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x07, 0xb2, 0x80, 0x9a, 0xa2, 0xaa, 0x07, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x6c, 0x6b, 0x6b, 0xeb, 0x05, 0xb2, 0xc0, 0xf1, 0x71, 0xc2, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0x30, 0x5c, 0x12, 0x80, 0x75, 0x4d, 0x10, 0x80,
0xa8, 0x01, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x04, 0xd0, 0xff, 0x68,
0x0c, 0xec, 0x08, 0x5c, 0x0b, 0x61, 0xf8, 0x4c, 0x0c, 0xec, 0x1e, 0x6a,
0x58, 0xec, 0xff, 0xf7, 0x1f, 0x6a, 0x12, 0xec, 0x0e, 0x4c, 0x4c, 0xec,
0x09, 0xb2, 0x05, 0x10, 0x14, 0x6a, 0x58, 0xec, 0x08, 0xb2, 0x12, 0xec,
0x0e, 0x4c, 0x40, 0xea, 0x00, 0x65, 0x42, 0x32, 0x03, 0x6b, 0x56, 0x32,
0x6c, 0xea, 0x0c, 0xea, 0x05, 0x97, 0x04, 0x90, 0x00, 0xef, 0x03, 0x63,
0xcd, 0xf6, 0x01, 0x80, 0x75, 0xf6, 0x01, 0x80, 0xf8, 0x63, 0x0f, 0x62,
0x0e, 0xd1, 0x0d, 0xd0, 0x48, 0xb3, 0x00, 0xf6, 0x80, 0x31, 0x9a, 0xa3,
0x02, 0x6a, 0x00, 0xf6, 0x23, 0x31, 0x8c, 0xea, 0x19, 0x22, 0x45, 0xb2,
0x08, 0xa2, 0x61, 0x83, 0x44, 0xb2, 0x40, 0x9a, 0x02, 0x6c, 0x40, 0xea,
0x0a, 0xd3, 0x0a, 0x93, 0x04, 0x6c, 0x04, 0xd4, 0x41, 0xb4, 0x05, 0xd4,
0x09, 0xd2, 0x06, 0xd0, 0x07, 0xd1, 0x08, 0xd3, 0x01, 0x6c, 0xa0, 0xf1,
0x0b, 0x6e, 0x29, 0xf6, 0x11, 0x6f, 0x3d, 0xb2, 0x40, 0xea, 0xfd, 0x6d,
0x37, 0xb2, 0x6f, 0x82, 0x2e, 0xeb, 0x65, 0x23, 0x2f, 0xc2, 0x3a, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x39, 0xb2, 0x40, 0xea, 0x91, 0x67, 0x00, 0x6a,
0x38, 0xb3, 0x31, 0xb4, 0x6d, 0xe2, 0xcb, 0xa4, 0xa0, 0xa3, 0x8c, 0xa4,
0xa3, 0xee, 0x02, 0x60, 0xc0, 0xc3, 0x03, 0x10, 0x83, 0xed, 0x01, 0x60,
0x80, 0xc3, 0x01, 0x4a, 0xff, 0x6b, 0x6c, 0xea, 0x02, 0x5a, 0xee, 0x61,
0x28, 0xb2, 0x71, 0xa2, 0x90, 0xa2, 0x00, 0x68, 0x60, 0x33, 0x8d, 0xeb,
0x2d, 0xb4, 0x60, 0xcc, 0x75, 0xa2, 0x94, 0xa2, 0x60, 0x33, 0x8d, 0xeb,
0x2b, 0xb4, 0x60, 0xcc, 0x73, 0xa2, 0x52, 0xa2, 0x60, 0x33, 0x4d, 0xeb,
0x29, 0xb2, 0x60, 0xca, 0xff, 0x6a, 0x51, 0x4a, 0x58, 0xe8, 0x28, 0xb3,
0x12, 0xea, 0x69, 0xe2, 0x63, 0xa2, 0x01, 0x6a, 0x6c, 0xea, 0x08, 0x22,
0x25, 0xb2, 0x40, 0xea, 0x90, 0x67, 0x25, 0xb3, 0x60, 0x9b, 0x90, 0x67,
0x40, 0xeb, 0xa2, 0x67, 0x01, 0x48, 0xff, 0x6a, 0x4c, 0xe8, 0x0b, 0x58,
0xe9, 0x61, 0x21, 0xb2, 0x40, 0x9a, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0xff, 0x6b, 0x01, 0x4b, 0x4c, 0xeb, 0x16, 0x23, 0x1d, 0xb0,
0x40, 0xa0, 0xff, 0x72, 0x10, 0x60, 0x1c, 0xb2, 0x40, 0x82, 0x2e, 0xea,
0x0c, 0x22, 0x1b, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x40, 0xa0, 0x02, 0x2a,
0x19, 0xb2, 0x03, 0x10, 0x01, 0x72, 0x03, 0x61, 0x18, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x14, 0xb2, 0x20, 0xc2, 0x0f, 0x97, 0x0e, 0x91, 0x0d, 0x90,
0x00, 0xef, 0x08, 0x63, 0x70, 0x5c, 0x12, 0x80, 0x60, 0x5c, 0x12, 0x80,
0x44, 0x00, 0x12, 0x80, 0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80,
0x05, 0x44, 0x10, 0x80, 0x39, 0x4a, 0x10, 0x80, 0x80, 0x5c, 0x12, 0x80,
0xe8, 0x10, 0x00, 0xb6, 0xea, 0x10, 0x00, 0xb6, 0xf0, 0x10, 0x00, 0xb6,
0x00, 0x39, 0x12, 0x80, 0xd9, 0x50, 0x10, 0x80, 0x50, 0x01, 0x12, 0x80,
0x4c, 0x00, 0x12, 0x80, 0xfe, 0x5d, 0x12, 0x80, 0xff, 0x5d, 0x12, 0x80,
0x69, 0x61, 0x10, 0x80, 0x11, 0x6b, 0x10, 0x80, 0x95, 0x6c, 0x10, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x07, 0xb2, 0x50, 0xa2, 0x07, 0x22, 0x07, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x82, 0x67, 0x06, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x04, 0x5c, 0x12, 0x80,
0x7d, 0x45, 0x10, 0x80, 0x25, 0x51, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x55, 0x4c, 0x10, 0x80,
0x9d, 0x52, 0x10, 0x80, 0xfc, 0x63, 0x07, 0x62, 0x17, 0xb5, 0x40, 0x9d,
0x01, 0x4a, 0x07, 0x2a, 0x04, 0xd2, 0x01, 0x6c, 0x15, 0xb6, 0x16, 0xb2,
0x40, 0xea, 0x00, 0x6f, 0x1f, 0x2a, 0x15, 0xb2, 0x53, 0xa2, 0x09, 0x22,
0xe0, 0xf3, 0x08, 0x6d, 0xb8, 0xea, 0x0f, 0xb3, 0x80, 0x9b, 0x12, 0xb2,
0x40, 0xea, 0x12, 0xed, 0x13, 0x2a, 0x0c, 0xb2, 0x41, 0x9a, 0x01, 0x4a,
0x08, 0x2a, 0x04, 0xd2, 0x01, 0x6c, 0x0e, 0xb5, 0x0e, 0xb6, 0x0a, 0xb2,
0x40, 0xea, 0x00, 0x6f, 0x07, 0x2a, 0x06, 0xb2, 0x81, 0x9a, 0xe0, 0xf3,
0x08, 0x6d, 0x08, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x07, 0x97, 0x00, 0xef,
0x04, 0x63, 0x00, 0x65, 0x60, 0x5c, 0x12, 0x80, 0xc9, 0x52, 0x10, 0x80,
0xc9, 0x0d, 0x01, 0x80, 0x04, 0x5c, 0x12, 0x80, 0x19, 0x0d, 0x01, 0x80,
0x64, 0x5c, 0x12, 0x80, 0xa5, 0x4c, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x12, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x12, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x11, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x11, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x10, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x10, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x0e, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0e, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x01, 0x6b, 0x0d, 0xb2, 0x60, 0xc2, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0xa1, 0x48, 0x10, 0x80, 0x4d, 0x50, 0x10, 0x80, 0x6d, 0x50, 0x10, 0x80,
0x49, 0x4d, 0x10, 0x80, 0x31, 0x48, 0x10, 0x80, 0xad, 0x50, 0x10, 0x80,
0xc1, 0x49, 0x10, 0x80, 0x8d, 0x50, 0x10, 0x80, 0x9d, 0x52, 0x10, 0x80,
0xe9, 0x52, 0x10, 0x80, 0x00, 0x5c, 0x12, 0x80, 0x01, 0x6a, 0x4b, 0xea,
0x0a, 0xb3, 0x40, 0xdb, 0x0a, 0xb3, 0x40, 0xdb, 0x0a, 0xb3, 0x40, 0xc3,
0x0a, 0xb3, 0x40, 0xcb, 0x0a, 0xb3, 0x40, 0xc3, 0x00, 0x6c, 0x0a, 0xb3,
0x80, 0xc3, 0x0a, 0xb3, 0x42, 0xdb, 0x43, 0xdb, 0x00, 0x6a, 0x20, 0xe8,
0x48, 0xcb, 0x00, 0x65, 0xa0, 0x5c, 0x12, 0x80, 0xa4, 0x5c, 0x12, 0x80,
0xf9, 0x5c, 0x12, 0x80, 0xfa, 0x5c, 0x12, 0x80, 0xfe, 0x5d, 0x12, 0x80,
0xff, 0x5d, 0x12, 0x80, 0x8c, 0x5c, 0x12, 0x80, 0x10, 0xb3, 0x4c, 0xa3,
0x0b, 0x72, 0x0c, 0x60, 0x0c, 0x5a, 0x03, 0x60, 0x09, 0x72, 0x05, 0x60,
0x02, 0x10, 0x0e, 0x5a, 0x11, 0x61, 0x20, 0xe8, 0x2c, 0x6a, 0x0b, 0xb2,
0x20, 0xe8, 0x50, 0xa2, 0x4b, 0xa3, 0x03, 0x2a, 0x08, 0xb2, 0x20, 0xe8,
0x54, 0xa2, 0x4e, 0x72, 0x06, 0xb2, 0x02, 0x61, 0x20, 0xe8, 0x55, 0xa2,
0x20, 0xe8, 0x51, 0xa2, 0x03, 0xb2, 0x20, 0xe8, 0x56, 0xa2, 0x00, 0x65,
0xd8, 0x5c, 0x12, 0x80, 0x70, 0x5c, 0x12, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x18, 0xb0, 0x40, 0x98, 0xff, 0x69, 0x8c, 0xe9,
0x6e, 0x6d, 0x03, 0x6c, 0x40, 0xea, 0x01, 0x6e, 0x15, 0xb3, 0x40, 0x6f,
0x4d, 0xef, 0x40, 0x9b, 0x03, 0x6c, 0x04, 0xd3, 0x0a, 0x65, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x6e, 0x6d, 0x48, 0x67, 0x40, 0xea, 0x01, 0x6e,
0x40, 0x98, 0x03, 0x6c, 0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93,
0x8f, 0xf7, 0x01, 0x6f, 0xeb, 0xef, 0x4c, 0xef, 0x3c, 0x31, 0x60, 0x9b,
0xff, 0xf7, 0x1f, 0x6a, 0x2d, 0xef, 0x4c, 0xef, 0x03, 0x6c, 0x6e, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x09, 0xb2, 0x40, 0x9a, 0x03, 0x6c, 0x6e, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x07, 0xb3, 0x60, 0x9b, 0xbf, 0xf7, 0x1f, 0x6f,
0x4c, 0xef, 0x03, 0x6c, 0x6e, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0x46, 0xb2, 0x4c, 0xa2,
0x0b, 0x72, 0x1c, 0x60, 0x0c, 0x5a, 0x03, 0x60, 0x09, 0x72, 0x06, 0x60,
0x7d, 0x10, 0x0c, 0x72, 0x35, 0x60, 0x0d, 0x72, 0x55, 0x60, 0x78, 0x10,
0x40, 0xb2, 0x40, 0x9a, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x20, 0x6f, 0x4d, 0xef, 0x3d, 0xb2, 0x60, 0x9a, 0xff, 0xf7, 0x1f, 0x6a,
0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xeb, 0x4c, 0xef, 0x66, 0x10,
0x37, 0xb0, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0xff, 0x6f, 0x35, 0xb1, 0x21, 0x4f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7,
0x1f, 0x6b, 0x6c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xea,
0x04, 0xd3, 0x40, 0x98, 0x06, 0x6c, 0x4d, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x10, 0xf0, 0x00, 0x6f, 0xeb, 0xef, 0x4d, 0xef, 0x00, 0x99, 0x06, 0x6c,
0x4d, 0x6d, 0x42, 0x10, 0x27, 0xb0, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x25, 0xb1, 0x20, 0xf4, 0x00, 0x6f, 0x4d, 0xef,
0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef, 0x00, 0x6c, 0x5e, 0x6d,
0x01, 0x6e, 0x40, 0xea, 0x04, 0xd3, 0x40, 0x98, 0x06, 0x6c, 0x6f, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x08, 0x6f, 0xeb, 0xef, 0x4c, 0xef, 0x01, 0x6a,
0x4d, 0xef, 0x00, 0x99, 0x06, 0x6c, 0x6f, 0x6d, 0xc2, 0x67, 0x21, 0x10,
0x16, 0xb0, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x14, 0xb1, 0x20, 0xf4, 0x00, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7,
0x1f, 0x6b, 0x6c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xea,
0x04, 0xd3, 0x40, 0x98, 0x06, 0x6c, 0x6f, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x08, 0x6f, 0xeb, 0xef, 0x00, 0x99, 0x4c, 0xef, 0x03, 0x6a, 0x4d, 0xef,
0x06, 0x6c, 0x6f, 0x6d, 0x01, 0x6e, 0x04, 0x93, 0x40, 0xe8, 0x6c, 0xef,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0xd8, 0x5c, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0x3b, 0xb2, 0x40, 0x9a,
0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x39, 0xb3, 0x60, 0x9b,
0xfd, 0xf7, 0x1f, 0x6f, 0x00, 0x6c, 0x4c, 0xef, 0x57, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x36, 0xb2, 0x65, 0x9a, 0x36, 0xb2, 0x8f, 0x43, 0x83, 0xea,
0x01, 0x60, 0x35, 0xb3, 0x30, 0xb0, 0x40, 0x98, 0x04, 0xd3, 0x00, 0x6c,
0x42, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x2e, 0xb1, 0x04, 0x93, 0x0f, 0x6c,
0x4c, 0xec, 0x40, 0x99, 0x70, 0x37, 0x8d, 0xef, 0x0a, 0x65, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x48, 0x67, 0x42, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x40, 0x98, 0x02, 0x6c, 0x75, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x04, 0x93, 0x27, 0xb7, 0x40, 0x99, 0x02, 0x6c, 0x6c, 0xef, 0xe2, 0x37,
0xff, 0xf7, 0x1f, 0x6b, 0xf2, 0x37, 0x6c, 0xef, 0x75, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x40, 0x98, 0x02, 0x6c, 0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x80, 0x6f, 0xeb, 0xef, 0x60, 0x99, 0x4c, 0xef, 0x10, 0x6a, 0x4d, 0xef,
0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x02, 0x6c, 0x5f, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x60, 0x99, 0x01, 0x6f, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef,
0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea,
0x60, 0x99, 0xff, 0xf7, 0x1e, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80,
0xd8, 0x5c, 0x12, 0x80, 0xfe, 0xff, 0xff, 0x0f, 0xff, 0xff, 0xff, 0x0f,
0x00, 0xf0, 0xff, 0x0f, 0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0,
0x1e, 0xb2, 0x4c, 0xa2, 0x09, 0x5a, 0x03, 0x61, 0x1d, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x1d, 0xb0, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x1b, 0xb1, 0x02, 0xf0, 0x00, 0x6f, 0x4d, 0xef, 0x40, 0x99,
0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef, 0x04, 0xd3, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x04, 0x93, 0x01, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0x6c, 0xef,
0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93, 0x00, 0x99, 0xff, 0xf7,
0x1e, 0x6f, 0x6c, 0xea, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xe8,
0x01, 0x6e, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63,
0xd8, 0x5c, 0x12, 0x80, 0x0d, 0x55, 0x10, 0x80, 0x4c, 0x00, 0x12, 0x80,
0x50, 0x00, 0x12, 0x80, 0x16, 0xb2, 0x8c, 0xea, 0x02, 0x22, 0x16, 0xb2,
0x01, 0x10, 0x16, 0xb2, 0x16, 0xb3, 0x8d, 0xea, 0x00, 0x6c, 0x6e, 0xea,
0x48, 0x32, 0x64, 0x67, 0x00, 0x52, 0x04, 0x60, 0x13, 0xb6, 0xce, 0xea,
0x13, 0xb6, 0xce, 0xeb, 0x44, 0x36, 0xc0, 0xf7, 0x62, 0x32, 0xcd, 0xea,
0x01, 0x4c, 0xff, 0x6e, 0xcc, 0xec, 0x1e, 0x5c, 0x64, 0x33, 0xf0, 0x61,
0x48, 0x34, 0x80, 0xf7, 0x62, 0x33, 0x6d, 0xec, 0x82, 0x33, 0x80, 0xc5,
0x61, 0xc5, 0x00, 0xf6, 0x82, 0x34, 0x62, 0x33, 0x80, 0xf7, 0x42, 0x32,
0x62, 0xc5, 0x83, 0xc5, 0x20, 0xe8, 0x44, 0xc5, 0x00, 0x00, 0x80, 0x00,
0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x2c, 0x65, 0x23, 0xe1, 0x20,
0xb5, 0x27, 0xae, 0xb0, 0x00, 0x00, 0x00, 0x20, 0xfd, 0x63, 0x05, 0x62,
0x04, 0xd0, 0x11, 0xb2, 0x40, 0xea, 0x05, 0x67, 0x60, 0xa0, 0x04, 0x6a,
0x4b, 0xea, 0x6e, 0xea, 0x40, 0xc0, 0x41, 0x40, 0x60, 0xa2, 0x54, 0x6c,
0x8e, 0xeb, 0x60, 0xc2, 0x42, 0x40, 0x80, 0xa2, 0x34, 0x6b, 0x6b, 0xeb,
0x8e, 0xeb, 0x60, 0xc2, 0x43, 0x40, 0x80, 0xa2, 0x45, 0x6b, 0x6b, 0xeb,
0x8e, 0xeb, 0x60, 0xc2, 0x44, 0xa0, 0x02, 0x6b, 0x05, 0x97, 0x6e, 0xea,
0x44, 0xc0, 0x04, 0x90, 0x00, 0xef, 0x03, 0x63, 0xd5, 0x57, 0x10, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd0, 0x3b, 0xb0, 0x82, 0xa0, 0x41, 0xa0,
0x80, 0x34, 0x4d, 0xec, 0x40, 0xa0, 0x80, 0x34, 0x4d, 0xec, 0x38, 0xb2,
0x40, 0xea, 0x04, 0x05, 0x7d, 0x67, 0x48, 0xab, 0x81, 0xa0, 0xdd, 0x67,
0x4c, 0xcb, 0x49, 0xab, 0xaa, 0xae, 0x4d, 0xcb, 0x40, 0xa0, 0x80, 0x33,
0x68, 0x33, 0x48, 0x32, 0x6d, 0xea, 0x03, 0x6b, 0xac, 0xeb, 0x6d, 0xea,
0x62, 0xa0, 0x4e, 0xce, 0x9a, 0x34, 0x68, 0x32, 0x7e, 0x33, 0x8d, 0xea,
0x05, 0x23, 0x09, 0xf4, 0x00, 0x6b, 0x4d, 0xeb, 0x6f, 0xce, 0x06, 0x10,
0x0a, 0xf0, 0x00, 0x6b, 0x6b, 0xeb, 0x4d, 0xeb, 0x5d, 0x67, 0x6f, 0xca,
0x00, 0x6a, 0x21, 0x10, 0xdd, 0x67, 0x44, 0x35, 0xb5, 0xe6, 0xac, 0xad,
0x01, 0x6e, 0xa7, 0xeb, 0xcc, 0xed, 0x0c, 0x25, 0x0f, 0x6d, 0x77, 0xe5,
0xc4, 0xed, 0xa6, 0x67, 0x8d, 0xed, 0xa0, 0x34, 0x80, 0x34, 0x83, 0x34,
0x83, 0x34, 0xff, 0xf7, 0x1f, 0x6d, 0xac, 0xec, 0x01, 0x4b, 0xff, 0x6d,
0xac, 0xeb, 0x10, 0x5b, 0xe7, 0x61, 0x44, 0x33, 0x01, 0x4a, 0xdd, 0x67,
0xac, 0xea, 0x6d, 0xe6, 0x04, 0x5a, 0x8c, 0xcb, 0x03, 0x60, 0x00, 0x6c,
0x64, 0x67, 0xdc, 0x17, 0x13, 0xb0, 0x7d, 0x67, 0x40, 0x98, 0xec, 0xab,
0x00, 0x6c, 0x51, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x7d, 0x67, 0x40, 0x98,
0xed, 0xab, 0x00, 0x6c, 0x50, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x7d, 0x67,
0x40, 0x98, 0xee, 0xab, 0x00, 0x6c, 0x4f, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x7d, 0x67, 0x40, 0x98, 0xef, 0xab, 0x00, 0x6c, 0x4e, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x09, 0x97, 0x08, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0xd8, 0x5c, 0x12, 0x80, 0x45, 0x58, 0x10, 0x80, 0x50, 0x00, 0x12, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0x20, 0xb0, 0x40, 0x98,
0x02, 0x6c, 0x79, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x1e, 0xb3, 0x41, 0xdb,
0x22, 0x67, 0x40, 0x98, 0x02, 0x6c, 0x04, 0xd3, 0x7a, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0xe1, 0xf7, 0x1f, 0x6c, 0x4c, 0xec, 0x80, 0x34, 0x19, 0xb2,
0x80, 0x34, 0x04, 0x93, 0x2d, 0xec, 0x83, 0xea, 0x81, 0xdb, 0x20, 0x60,
0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x14, 0xb1,
0x01, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef,
0x04, 0xd3, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93, 0x00, 0x99,
0xff, 0xf7, 0x1e, 0x6f, 0x6c, 0xea, 0x00, 0x6c, 0x57, 0x6d, 0x01, 0x6e,
0x40, 0xe8, 0x4c, 0xef, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0x4c, 0x00, 0x12, 0x80, 0xb4, 0x5c, 0x12, 0x80,
0x00, 0x00, 0xf0, 0x0f, 0x50, 0x00, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0xff, 0x6a, 0x8c, 0xea, 0x06, 0xb4, 0x01, 0x2a, 0x06, 0xb4, 0x40, 0x9c,
0x01, 0x4a, 0x03, 0x22, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0xa0, 0x5c, 0x12, 0x80, 0xa4, 0x5c, 0x12, 0x80,
0x75, 0x0d, 0x01, 0x80, 0xfc, 0x63, 0x07, 0x62, 0xff, 0x6a, 0x8c, 0xea,
0x11, 0x22, 0x16, 0xb4, 0x40, 0x9c, 0x01, 0x4a, 0x03, 0x22, 0x15, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x00, 0x6a, 0x04, 0xd2, 0xe2, 0x67, 0x11, 0xb5,
0x12, 0xb6, 0x13, 0xb2, 0x40, 0xea, 0x01, 0x6c, 0x0e, 0xb2, 0x10, 0x10,
0x11, 0xb4, 0x40, 0x9c, 0x01, 0x4a, 0x03, 0x22, 0x0c, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x00, 0x6a, 0x04, 0xd2, 0xe2, 0x67, 0x0c, 0xb5, 0x0d, 0xb6,
0x0a, 0xb2, 0x40, 0xea, 0x01, 0x6c, 0x0a, 0xb2, 0x80, 0x9a, 0xe0, 0xf3,
0x08, 0x6d, 0x0a, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x07, 0x97, 0x00, 0xef,
0x04, 0x63, 0x00, 0x65, 0xa0, 0x5c, 0x12, 0x80, 0x75, 0x0d, 0x01, 0x80,
0x8d, 0x59, 0x10, 0x80, 0xc9, 0x0d, 0x01, 0x80, 0xa4, 0x5c, 0x12, 0x80,
0xa5, 0x5e, 0x10, 0x80, 0x19, 0x0d, 0x01, 0x80, 0xf7, 0x63, 0x11, 0x62,
0x10, 0xd1, 0x0f, 0xd0, 0x13, 0xd5, 0x44, 0xa4, 0x63, 0xa4, 0x04, 0x67,
0x40, 0x32, 0x69, 0xe2, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0xff, 0xf4,
0x06, 0x4b, 0x4e, 0xeb, 0x20, 0xa5, 0x80, 0xf0, 0x10, 0x23, 0xff, 0xf4,
0x06, 0x6b, 0x63, 0xea, 0x0a, 0x60, 0x7f, 0xf4, 0x0f, 0x72, 0x12, 0x60,
0xfe, 0x4b, 0x4e, 0xeb, 0x59, 0x23, 0x5f, 0xf4, 0x00, 0x72, 0x4f, 0x60,
0xda, 0x10, 0xff, 0xf4, 0x0d, 0x72, 0x1a, 0x60, 0x1f, 0xf5, 0x14, 0x72,
0x08, 0x60, 0xff, 0xf4, 0x08, 0x72, 0xc0, 0xf0, 0x09, 0x60, 0xcf, 0x10,
0x21, 0xe4, 0x0f, 0x6a, 0xc8, 0x10, 0x6a, 0xb2, 0x40, 0xa2, 0x21, 0xe4,
0x04, 0x49, 0x42, 0xc0, 0x68, 0xb2, 0x60, 0xaa, 0x63, 0xc0, 0x40, 0xaa,
0x42, 0x32, 0x44, 0xc0, 0x66, 0xb2, 0x40, 0xa2, 0x45, 0xc0, 0xbb, 0x10,
0x65, 0xb2, 0x62, 0xa2, 0x10, 0x2b, 0x65, 0xb3, 0x55, 0xa3, 0x21, 0xe4,
0x07, 0x49, 0x42, 0xc0, 0x01, 0x6a, 0x4b, 0xea, 0x43, 0xc0, 0x44, 0xc0,
0x45, 0xc0, 0x87, 0xa3, 0x86, 0xc0, 0x68, 0xa3, 0x48, 0xc0, 0x67, 0xc0,
0xa8, 0x10, 0x03, 0x73, 0xa0, 0xf0, 0x07, 0x61, 0x63, 0xa2, 0x01, 0x73,
0xa0, 0xf0, 0x03, 0x61, 0x64, 0x82, 0x5a, 0xb6, 0x00, 0x6d, 0x83, 0x67,
0x0d, 0xd3, 0x40, 0xee, 0x0c, 0xd6, 0x21, 0xe0, 0x42, 0xc0, 0x0d, 0x93,
0x0c, 0x96, 0x01, 0x6d, 0x40, 0xee, 0x83, 0x67, 0x43, 0xc0, 0x0d, 0x93,
0x0c, 0x96, 0x00, 0x6d, 0x40, 0xee, 0x83, 0x67, 0x44, 0xc0, 0x03, 0x49,
0x8a, 0x10, 0x50, 0xb2, 0x40, 0xea, 0x21, 0xe0, 0x4f, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x81, 0x10, 0x4e, 0xb0, 0x29, 0xe4, 0x81, 0x98, 0xfc, 0x6d,
0x20, 0xf4, 0x1a, 0x6e, 0x82, 0xc2, 0x81, 0x98, 0x06, 0xf2, 0x0a, 0x6f,
0x82, 0x34, 0x83, 0xc2, 0x83, 0xa8, 0x84, 0xc2, 0x87, 0xa0, 0x85, 0xc2,
0x80, 0x98, 0x86, 0xc2, 0x80, 0x98, 0x82, 0x34, 0x87, 0xc2, 0x81, 0xa8,
0x88, 0xc2, 0x83, 0xa0, 0x89, 0xc2, 0x02, 0x6a, 0x04, 0xd2, 0x42, 0xb2,
0x05, 0xd2, 0x41, 0x98, 0x06, 0xd2, 0x40, 0x98, 0x0d, 0xd3, 0x07, 0xd2,
0x3f, 0xb2, 0x40, 0xea, 0x01, 0x6c, 0x3f, 0xb2, 0x40, 0xa2, 0x0d, 0x93,
0x02, 0x22, 0x60, 0xd8, 0x61, 0xd8, 0x08, 0x49, 0x56, 0x10, 0x38, 0xb0,
0x29, 0xe4, 0x85, 0x98, 0xfc, 0x6d, 0x60, 0xf4, 0x03, 0x6e, 0x82, 0xc2,
0x85, 0x98, 0x06, 0xf2, 0x0b, 0x6f, 0x82, 0x34, 0x83, 0xc2, 0x8b, 0xa8,
0x84, 0xc2, 0x97, 0xa0, 0x85, 0xc2, 0x84, 0x98, 0x86, 0xc2, 0x84, 0x98,
0x82, 0x34, 0x87, 0xc2, 0x89, 0xa8, 0x88, 0xc2, 0x93, 0xa0, 0x89, 0xc2,
0x86, 0x98, 0x8a, 0xc2, 0x86, 0x98, 0x82, 0x34, 0x8b, 0xc2, 0x8d, 0xa8,
0x8c, 0xc2, 0x9b, 0xa0, 0x8d, 0xc2, 0x8e, 0xa8, 0x8e, 0xc2, 0x8e, 0xa8,
0x82, 0x34, 0x8f, 0xc2, 0x8f, 0xa8, 0x90, 0xc2, 0x8f, 0xa8, 0x82, 0x34,
0x91, 0xc2, 0x20, 0xf0, 0x80, 0xa0, 0x92, 0xc2, 0x06, 0x6a, 0x04, 0xd2,
0x20, 0xb2, 0x05, 0xd2, 0x45, 0x98, 0x06, 0xd2, 0x44, 0x98, 0x07, 0xd2,
0x46, 0x98, 0x08, 0xd2, 0x4e, 0xa8, 0x09, 0xd2, 0x4f, 0xa8, 0x0a, 0xd2,
0x20, 0xf0, 0x40, 0x80, 0x0d, 0xd3, 0x0b, 0xd2, 0x19, 0xb2, 0x40, 0xea,
0x01, 0x6c, 0x19, 0xb2, 0x40, 0xa2, 0x0d, 0x93, 0x07, 0x22, 0x00, 0x6a,
0x65, 0xd8, 0x64, 0xd8, 0x66, 0xd8, 0x6f, 0xc8, 0x20, 0xf0, 0x40, 0xc0,
0x11, 0x49, 0x05, 0x10, 0x0b, 0xb2, 0x50, 0xa2, 0x21, 0xe4, 0x42, 0xc0,
0x01, 0x49, 0xff, 0x6a, 0x4c, 0xe9, 0x13, 0x92, 0x20, 0xc2, 0x11, 0x97,
0x10, 0x91, 0x0f, 0x90, 0x00, 0xef, 0x09, 0x63, 0xf4, 0x5c, 0x12, 0x80,
0xf6, 0x5c, 0x12, 0x80, 0xf8, 0x5c, 0x12, 0x80, 0xfc, 0x5c, 0x12, 0x80,
0x04, 0x5c, 0x12, 0x80, 0x55, 0x46, 0x10, 0x80, 0x55, 0x4c, 0x10, 0x80,
0x79, 0x43, 0x10, 0x80, 0xb4, 0x5c, 0x12, 0x80, 0xe0, 0x71, 0x10, 0x80,
0xed, 0x5a, 0x01, 0x80, 0xa8, 0x5c, 0x12, 0x80, 0xf8, 0x63, 0x0f, 0x62,
0x0e, 0xd1, 0x0d, 0xd0, 0x03, 0x6a, 0x04, 0xd2, 0x3a, 0xb2, 0x05, 0xd2,
0x43, 0xa4, 0x64, 0x67, 0xfc, 0x6d, 0x06, 0xd2, 0x44, 0xa4, 0xa0, 0xf3,
0x17, 0x6e, 0x06, 0xf2, 0x1c, 0x6f, 0x07, 0xd2, 0x45, 0xa4, 0x0a, 0xd3,
0x08, 0xd2, 0x34, 0xb2, 0x40, 0xea, 0x04, 0x6c, 0x0a, 0x93, 0x33, 0xb1,
0x33, 0xb0, 0x43, 0xa3, 0x1a, 0x2a, 0x5e, 0x6c, 0x40, 0xe9, 0x01, 0x6d,
0xff, 0xf7, 0x1f, 0x6b, 0x30, 0xf0, 0x01, 0x6e, 0x6c, 0xea, 0xcb, 0xee,
0x4c, 0xee, 0x5e, 0x6c, 0x01, 0x6d, 0x40, 0xe8, 0x0a, 0xd3, 0x57, 0x6c,
0x40, 0xe9, 0x01, 0x6d, 0x0a, 0x93, 0x02, 0xf1, 0x01, 0x6e, 0xcb, 0xee,
0x6c, 0xea, 0x57, 0x6c, 0x01, 0x6d, 0x4c, 0xee, 0x3c, 0x10, 0xe5, 0xa3,
0xc4, 0xa3, 0x3f, 0x6c, 0x00, 0x6d, 0x40, 0xe8, 0x0a, 0xd7, 0x02, 0x6c,
0x40, 0xe9, 0x00, 0x6d, 0x0a, 0x97, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea,
0x1f, 0xf7, 0x01, 0x6b, 0x6b, 0xeb, 0xe0, 0x36, 0x6c, 0xea, 0x4d, 0xee,
0x02, 0x6c, 0x40, 0xe8, 0x00, 0x6d, 0x5e, 0x6c, 0x40, 0xe9, 0x01, 0x6d,
0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0xc2, 0x67, 0x30, 0xf0, 0x01, 0x4b,
0x6d, 0xee, 0x5e, 0x6c, 0x40, 0xe8, 0x01, 0x6d, 0x57, 0x6c, 0x40, 0xe9,
0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0xc2, 0x67, 0x02, 0xf1,
0x01, 0x6b, 0x6d, 0xee, 0x57, 0x6c, 0x40, 0xe8, 0x01, 0x6d, 0x57, 0x6c,
0x40, 0xe9, 0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0x02, 0x6b,
0x6b, 0xeb, 0xc2, 0x67, 0x57, 0x6c, 0x01, 0x6d, 0x6c, 0xee, 0x40, 0xe8,
0x00, 0x65, 0x0f, 0x97, 0x0e, 0x91, 0x0d, 0x90, 0x00, 0xef, 0x08, 0x63,
0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80, 0x39, 0x94, 0x00, 0x80,
0xdd, 0x95, 0x00, 0x80, 0xfc, 0x63, 0x07, 0x62, 0x06, 0xd1, 0x05, 0xd0,
0x20, 0xb2, 0x40, 0xea, 0x00, 0x6c, 0x20, 0xb2, 0x40, 0x9a, 0x00, 0x6c,
0x60, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x1e, 0xb3, 0x60, 0x9b, 0xff, 0xf3,
0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x60, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x1a, 0xb2, 0x6d, 0xa2, 0xff, 0xf7, 0x1f, 0x69, 0x19, 0xb2, 0x1a, 0xb0,
0x0b, 0x23, 0x59, 0x6c, 0x40, 0xea, 0x01, 0x6d, 0x2c, 0xea, 0x00, 0xf2,
0x00, 0x6b, 0xc2, 0x67, 0x59, 0x6c, 0x01, 0x6d, 0x6d, 0xee, 0x0b, 0x10,
0x59, 0x6c, 0x40, 0xea, 0x01, 0x6d, 0x2c, 0xea, 0x00, 0xf2, 0x01, 0x6b,
0x6b, 0xeb, 0xc2, 0x67, 0x59, 0x6c, 0x01, 0x6d, 0x6c, 0xee, 0x40, 0xe8,
0x00, 0x65, 0x0d, 0xb0, 0x57, 0x6c, 0x01, 0x6d, 0x40, 0xe8, 0x70, 0x6e,
0x00, 0x6c, 0xa4, 0x67, 0x40, 0xe8, 0xc4, 0x67, 0x07, 0x97, 0x06, 0x91,
0x05, 0x90, 0x00, 0xef, 0x04, 0x63, 0x00, 0x65, 0x25, 0x5a, 0x10, 0x80,
0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80, 0xd8, 0x5c, 0x12, 0x80,
0x39, 0x94, 0x00, 0x80, 0xdd, 0x95, 0x00, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x3c, 0xb0, 0x3d, 0xb1, 0xe0, 0xf3, 0x07, 0x6a,
0x4f, 0xc8, 0x40, 0x99, 0x00, 0x6c, 0x78, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x1f, 0xf4, 0x00, 0x6b, 0x4c, 0xeb, 0x38, 0xb2, 0xc0, 0xf1, 0x51, 0xa2,
0x62, 0x33, 0x66, 0x33, 0x4d, 0xe3, 0x40, 0x99, 0x20, 0xf0, 0x60, 0xc0,
0x00, 0x6c, 0x76, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xff, 0x6b, 0x4c, 0xeb,
0x04, 0xf7, 0x10, 0x6a, 0x58, 0xeb, 0x40, 0x99, 0x00, 0x6c, 0x79, 0x6d,
0x01, 0x6e, 0x12, 0xeb, 0x62, 0x33, 0x72, 0x33, 0x40, 0xea, 0x6f, 0xc8,
0x62, 0x67, 0x40, 0x99, 0x00, 0x6c, 0x7c, 0x6d, 0x01, 0x6e, 0x40, 0xea,
0x04, 0xd3, 0x28, 0xb4, 0x04, 0x93, 0x80, 0x9c, 0xa5, 0x98, 0x27, 0xb6,
0x91, 0xe3, 0xb7, 0xe4, 0xa3, 0xd8, 0x26, 0xb5, 0xac, 0xa5, 0x85, 0xd8,
0xb0, 0x35, 0xb5, 0xe6, 0xa1, 0xad, 0xb8, 0xec, 0x23, 0xb5, 0xa0, 0x9d,
0xb5, 0xe2, 0xa6, 0xd8, 0x12, 0xec, 0x84, 0xd8, 0x04, 0x24, 0x9b, 0xed,
0x01, 0x2c, 0xe5, 0xe8, 0x12, 0xec, 0x8e, 0xc8, 0x7d, 0xf2, 0x01, 0x6c,
0x83, 0xeb, 0x02, 0x60, 0x83, 0xea, 0x23, 0x61, 0x57, 0x6c, 0x1b, 0xb0,
0x40, 0xe8, 0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x69, 0x2c, 0xea, 0x00, 0xf6,
0x01, 0x6b, 0xc2, 0x67, 0x6b, 0xeb, 0x6c, 0xee, 0x16, 0xb3, 0x04, 0xd3,
0x57, 0x6c, 0x40, 0xeb, 0x01, 0x6d, 0x57, 0x6c, 0x40, 0xe8, 0x01, 0x6d,
0x04, 0x93, 0x2c, 0xea, 0x00, 0xf6, 0x00, 0x6e, 0x57, 0x6c, 0x4d, 0xee,
0x40, 0xeb, 0x01, 0x6d, 0x06, 0xb2, 0x85, 0x9a, 0x08, 0xb3, 0x80, 0xdb,
0x66, 0x9a, 0x0a, 0xb2, 0x60, 0xda, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90,
0x00, 0xef, 0x05, 0x63, 0xb4, 0x5c, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80,
0xa8, 0x01, 0x12, 0x80, 0xac, 0x5c, 0x12, 0x80, 0xbc, 0x72, 0x10, 0x80,
0xd8, 0x5c, 0x12, 0x80, 0xb0, 0x5c, 0x12, 0x80, 0x39, 0x94, 0x00, 0x80,
0xdd, 0x95, 0x00, 0x80, 0xfc, 0x63, 0x07, 0x62, 0x06, 0xd1, 0x05, 0xd0,
0x26, 0xb2, 0x27, 0xb0, 0x40, 0xea, 0x00, 0x65, 0x40, 0xa8, 0xff, 0xf7,
0x1f, 0x72, 0x1b, 0x60, 0x24, 0xb2, 0x40, 0x9a, 0x03, 0x6c, 0x5f, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x60, 0xa8, 0x00, 0xf2, 0x00, 0x6f, 0xeb, 0xef,
0x4c, 0xef, 0xe0, 0xf1, 0x1f, 0x6a, 0x6c, 0xea, 0x4d, 0xef, 0x1e, 0xb2,
0x60, 0x9a, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x03, 0x6c, 0x5f, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x01, 0x6a, 0x4b, 0xea, 0x40, 0xc8, 0x17, 0xb0,
0x40, 0x98, 0x17, 0xb1, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x60, 0x99, 0xfd, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0xff, 0xf6, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x0b, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x00, 0x6c, 0xa4, 0x67, 0x09, 0xb2, 0x40, 0xea, 0xc4, 0x67, 0x07, 0x97,
0x06, 0x91, 0x05, 0x90, 0x00, 0xef, 0x04, 0x63, 0x8d, 0x50, 0x10, 0x80,
0xfa, 0x5c, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80,
0xdd, 0x54, 0x10, 0x80, 0xdd, 0x95, 0x00, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x35, 0xb0, 0x36, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x40, 0x98, 0x70, 0x6f, 0x00, 0x6c, 0x57, 0x6d, 0x33, 0xb1, 0x40, 0xea,
0x01, 0x6e, 0x40, 0x99, 0x00, 0x6c, 0x5c, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x60, 0x98, 0xff, 0xf7, 0x1c, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x5c, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x40, 0x99, 0x00, 0x6c, 0x5a, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x98, 0xff, 0xf4, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x5a, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x26, 0xb3, 0x40, 0xa3, 0xff, 0x72,
0x1a, 0x60, 0x40, 0x99, 0x00, 0x6c, 0x4b, 0x6d, 0x01, 0x6e, 0x40, 0xea,
0x04, 0xd3, 0x04, 0x93, 0x3f, 0x6f, 0xeb, 0xef, 0x80, 0xa3, 0x4c, 0xef,
0x3e, 0x6a, 0x8c, 0xea, 0x00, 0x98, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xef, 0x00, 0x6c, 0x4b, 0x6d, 0x40, 0xe8, 0x01, 0x6e, 0x04, 0x93,
0x01, 0x6a, 0x4b, 0xea, 0x40, 0xc3, 0x16, 0xb0, 0x40, 0x98, 0x13, 0xb1,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xcf, 0xf2,
0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x00, 0x6c, 0xa4, 0x67, 0x0f, 0xb2, 0x40, 0xea, 0xc4, 0x67, 0x40, 0x98,
0x01, 0x6c, 0xc4, 0x67, 0x40, 0xea, 0x60, 0x6d, 0x60, 0x99, 0x01, 0x6c,
0xff, 0xf3, 0x1f, 0x6f, 0x4c, 0xef, 0x60, 0x6d, 0x40, 0xeb, 0xc4, 0x67,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0x50, 0x00, 0x12, 0x80, 0x8d, 0x50, 0x10, 0x80, 0x4c, 0x00, 0x12, 0x80,
0xf9, 0x5c, 0x12, 0x80, 0xdd, 0x95, 0x00, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x79, 0x60, 0x10, 0x80,
0xdd, 0x54, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x05, 0xb2, 0x40, 0xea,
0x01, 0x6c, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef,
0x03, 0x63, 0x00, 0x65, 0x25, 0x5a, 0x10, 0x80, 0x69, 0x61, 0x10, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0xff, 0x6b, 0x04, 0x67,
0x6c, 0xe8, 0xac, 0xeb, 0x35, 0xb2, 0x40, 0xea, 0x04, 0xd3, 0x90, 0x67,
0x34, 0xb2, 0x35, 0xb0, 0x40, 0xea, 0x00, 0x65, 0x40, 0x98, 0x03, 0x6c,
0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x32, 0xb4, 0x40, 0xcc, 0x40, 0x98,
0x31, 0xb1, 0x03, 0x6c, 0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x80, 0x99,
0x1f, 0xf6, 0x00, 0x6f, 0x4c, 0xef, 0x0c, 0x65, 0x48, 0x67, 0x03, 0x6c,
0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93, 0x7f, 0x6e, 0x3f, 0x6c,
0x6c, 0xee, 0x29, 0xb2, 0x40, 0xea, 0x00, 0x6d, 0x40, 0x98, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xff, 0x6f, 0x60, 0x99, 0x01, 0x4f,
0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0x02, 0xf0, 0x00, 0x6f, 0x4d, 0xef, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99,
0x01, 0x6f, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0x60, 0x99,
0xff, 0xf7, 0x1e, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63,
0x6d, 0x50, 0x10, 0x80, 0x6d, 0x54, 0x10, 0x80, 0x4c, 0x00, 0x12, 0x80,
0xfa, 0x5c, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80, 0xdd, 0x95, 0x00, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x04, 0xd0, 0xff, 0x68, 0x5d, 0x67, 0x8c, 0xe8,
0xbc, 0xc2, 0x1e, 0x32, 0x0a, 0x2a, 0x10, 0xb2, 0x02, 0x6b, 0x6c, 0xc2,
0xa8, 0xc2, 0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x7d, 0x67, 0x5c, 0xc3,
0x0b, 0x10, 0x0d, 0xb2, 0x60, 0xa2, 0x0d, 0xb2, 0x40, 0xa2, 0x49, 0xe3,
0xb5, 0xe2, 0x5d, 0x67, 0xbc, 0xc2, 0x0b, 0xb2, 0x40, 0xea, 0x07, 0x04,
0x7d, 0x67, 0x9c, 0xa3, 0x7f, 0x6d, 0x09, 0xb2, 0x40, 0xea, 0x0c, 0xed,
0x05, 0x97, 0x04, 0x90, 0x00, 0xef, 0x03, 0x63, 0xd8, 0x5c, 0x12, 0x80,
0x25, 0x54, 0x10, 0x80, 0xf4, 0x5c, 0x12, 0x80, 0xf8, 0x5c, 0x12, 0x80,
0x25, 0x45, 0x10, 0x80, 0xa9, 0x61, 0x10, 0x80, 0xdc, 0x63, 0x47, 0x62,
0x04, 0xf0, 0x1f, 0x6a, 0x7d, 0x67, 0x48, 0xcb, 0x00, 0x6a, 0x52, 0xc3,
0x07, 0xb2, 0x40, 0xea, 0x04, 0x04, 0x07, 0xb2, 0x40, 0x9a, 0x03, 0x6c,
0x6e, 0x6d, 0x01, 0x6e, 0x40, 0xea, 0x00, 0x6f, 0x47, 0x97, 0x00, 0xef,
0x24, 0x63, 0x00, 0x65, 0xe9, 0x6a, 0x01, 0x80, 0x50, 0x00, 0x12, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x0b, 0xb2, 0x43, 0x9a, 0x01, 0x4a, 0x04, 0x22,
0x0a, 0xb4, 0x0b, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x07, 0xb2, 0x42, 0x9a,
0x01, 0x4a, 0x04, 0x22, 0x08, 0xb4, 0x07, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x07, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0x8c, 0x5c, 0x12, 0x80, 0x98, 0x5c, 0x12, 0x80, 0x75, 0x0d, 0x01, 0x80,
0x94, 0x5c, 0x12, 0x80, 0x0d, 0x63, 0x10, 0x80, 0xfc, 0x63, 0x07, 0x62,
0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0f, 0xb2, 0x68, 0xaa, 0x01, 0x4b,
0x68, 0xca, 0x43, 0x9a, 0x01, 0x4a, 0x04, 0x22, 0x0c, 0xb4, 0x0d, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x00, 0x6c, 0x0a, 0x6a, 0x04, 0xd2, 0x0b, 0xb6,
0x08, 0xb5, 0x0b, 0xb2, 0x40, 0xea, 0xe4, 0x67, 0x05, 0xb2, 0x83, 0x9a,
0x09, 0xb2, 0x40, 0xea, 0x0a, 0x6d, 0x07, 0x97, 0x00, 0xef, 0x04, 0x63,
0x0d, 0x63, 0x10, 0x80, 0x8c, 0x5c, 0x12, 0x80, 0x98, 0x5c, 0x12, 0x80,
0x75, 0x0d, 0x01, 0x80, 0xe1, 0x63, 0x10, 0x80, 0xc9, 0x0d, 0x01, 0x80,
0x19, 0x0d, 0x01, 0x80, 0xdc, 0x63, 0x47, 0x62, 0x04, 0xf0, 0x1e, 0x6a,
0x7d, 0x67, 0x48, 0xcb, 0x03, 0x6a, 0x52, 0xc3, 0x18, 0xb2, 0x88, 0xaa,
0x65, 0xa2, 0x44, 0xa2, 0x7a, 0xec, 0x01, 0x2b, 0xe5, 0xe8, 0x10, 0xeb,
0x4d, 0xe3, 0x5d, 0x67, 0x73, 0xc2, 0x7d, 0x67, 0x25, 0x6a, 0x54, 0xc3,
0x02, 0x6a, 0x55, 0xc3, 0x11, 0xb2, 0x40, 0xea, 0x04, 0x04, 0x11, 0xb2,
0x40, 0x9a, 0x03, 0x6c, 0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x0f, 0xb3,
0xf0, 0xa3, 0x40, 0x6b, 0x03, 0x6c, 0xfc, 0x37, 0x6d, 0xef, 0xcf, 0xf7,
0x01, 0x6b, 0x6b, 0xeb, 0x4c, 0xeb, 0x0b, 0xb2, 0x40, 0x9a, 0x6d, 0xef,
0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef, 0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x47, 0x97, 0x00, 0xef, 0x24, 0x63, 0x00, 0x65, 0x8c, 0x5c, 0x12, 0x80,
0x99, 0x74, 0x01, 0x80, 0x4c, 0x00, 0x12, 0x80, 0x70, 0x5c, 0x12, 0x80,
0x50, 0x00, 0x12, 0x80, 0xfc, 0x63, 0x07, 0x62, 0x06, 0xd1, 0x05, 0xd0,
0x23, 0xb0, 0x40, 0x98, 0x23, 0xb1, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0xfe, 0xf1, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0x01, 0xf6, 0x00, 0x6f, 0x4d, 0xef,
0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0x60, 0x99, 0xff, 0xf7, 0x1d, 0x6f,
0x4c, 0xef, 0x57, 0x6d, 0x01, 0x6e, 0x40, 0xeb, 0x00, 0x6c, 0x0e, 0xb2,
0x40, 0xea, 0x32, 0x6c, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0x02, 0x6f, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x07, 0x97,
0x06, 0x91, 0x05, 0x90, 0x00, 0xef, 0x04, 0x63, 0x4c, 0x00, 0x12, 0x80,
0x50, 0x00, 0x12, 0x80, 0xf9, 0x57, 0x01, 0x80, 0xfa, 0x63, 0x0b, 0x62,
0x0a, 0xd1, 0x09, 0xd0, 0xff, 0x6a, 0x4c, 0xec, 0x4c, 0xed, 0x01, 0x74,
0x04, 0xd4, 0x05, 0xd5, 0xc0, 0xf5, 0x0c, 0xb0, 0xc0, 0xf5, 0x0c, 0xb1,
0x0b, 0x61, 0x40, 0x98, 0x00, 0x6c, 0x5c, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x03, 0x6f, 0x4d, 0xef, 0x60, 0x99, 0x00, 0x6c, 0x5c, 0x6d, 0x0b, 0x10,
0x40, 0x98, 0x00, 0x6c, 0x5a, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99,
0x00, 0xf3, 0x00, 0x6f, 0x4d, 0xef, 0x00, 0x6c, 0x5a, 0x6d, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x80, 0xf5, 0x10, 0xb1, 0x40, 0xeb, 0x01, 0x6e,
0x40, 0x99, 0x00, 0x6c, 0x5e, 0x6d, 0x80, 0xf5, 0x08, 0xb0, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x98, 0xfd, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x5e, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x60, 0xf5, 0x14, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x60, 0xf5, 0x10, 0xb2, 0x00, 0x6c, 0x06, 0xd2, 0x02, 0xf0,
0x00, 0x6e, 0x40, 0xea, 0xa4, 0x67, 0x04, 0x93, 0x06, 0x92, 0x01, 0x73,
0x17, 0x61, 0x40, 0xf5, 0x1c, 0xb4, 0xcb, 0xa4, 0x7f, 0x6b, 0x3f, 0x6c,
0x6c, 0xee, 0x40, 0xea, 0x00, 0x6d, 0x40, 0x99, 0x01, 0x6c, 0xc4, 0x67,
0x40, 0xea, 0x60, 0x6d, 0x00, 0xf4, 0x00, 0x6f, 0x01, 0x6c, 0x4d, 0xef,
0x60, 0x98, 0x60, 0x6d, 0xc4, 0x67, 0xff, 0xf7, 0x1f, 0x6a, 0x1e, 0x10,
0x60, 0x98, 0x70, 0x6f, 0x00, 0x6c, 0x57, 0x6d, 0x01, 0x6e, 0x40, 0xeb,
0x06, 0xd2, 0x20, 0xf5, 0x00, 0xb4, 0xcb, 0xa4, 0x06, 0x92, 0x80, 0x6b,
0x6d, 0xee, 0x3f, 0x6c, 0x40, 0xea, 0x00, 0x6d, 0x40, 0x99, 0x01, 0x6c,
0xc4, 0x67, 0x40, 0xea, 0x60, 0x6d, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea,
0x60, 0x98, 0x01, 0x6c, 0x60, 0x6d, 0xc4, 0x67, 0xff, 0xf3, 0x1f, 0x6f,
0xe0, 0xf4, 0x00, 0xb0, 0x40, 0xeb, 0x4c, 0xef, 0x40, 0x98, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x71, 0x6f, 0xc0, 0xf4, 0x1c, 0xb4,
0xeb, 0xef, 0x4c, 0xef, 0x46, 0xa4, 0xc0, 0xf4, 0x08, 0xb1, 0x70, 0x6b,
0x50, 0x32, 0x6c, 0xea, 0x60, 0x99, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x56, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xa0, 0xf4, 0x0c, 0xb3,
0xe7, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x4c, 0xa3, 0xa0, 0xf4, 0x04, 0xb4,
0x60, 0x99, 0x50, 0x32, 0x49, 0xe4, 0x40, 0xa2, 0x00, 0x6c, 0x56, 0x6d,
0x40, 0x32, 0x58, 0x32, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a, 0x01, 0x6e,
0x40, 0xeb, 0x4c, 0xef, 0x04, 0x93, 0x01, 0x73, 0x50, 0x61, 0x40, 0x98,
0x00, 0x6c, 0x4b, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x3e, 0x6b, 0x4c, 0xeb,
0x60, 0xf4, 0x0c, 0xb4, 0x60, 0xf4, 0x10, 0xb2, 0x60, 0xc2, 0x4c, 0xa4,
0x60, 0xf4, 0x04, 0xb3, 0x50, 0x32, 0x49, 0xe3, 0x40, 0xa2, 0x02, 0x72,
0x1c, 0x61, 0x40, 0x98, 0x00, 0x6c, 0x4b, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x62, 0x67, 0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67, 0x20, 0x99, 0x6d, 0x6d,
0x40, 0xea, 0x06, 0xd3, 0x1f, 0x6f, 0x06, 0x93, 0x4c, 0xef, 0x3f, 0x6a,
0x4b, 0xea, 0x6c, 0xea, 0xe4, 0x37, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x00, 0x6c, 0x4b, 0x6d, 0x01, 0x6e, 0x4c, 0xef, 0x1e, 0x10, 0x03, 0x72,
0x1e, 0x61, 0x40, 0x98, 0x00, 0x6c, 0x4b, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x62, 0x67, 0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67, 0x20, 0x99, 0x6d, 0x6d,
0x40, 0xea, 0x06, 0xd3, 0x06, 0x93, 0xe0, 0xf3, 0x00, 0x6f, 0x4c, 0xef,
0x3f, 0x6a, 0x4b, 0xea, 0x6c, 0xea, 0xf2, 0x37, 0x4d, 0xef, 0xff, 0xf7,
0x1f, 0x6b, 0x00, 0x6c, 0x4b, 0x6d, 0x01, 0x6e, 0x6c, 0xef, 0x40, 0xe9,
0x00, 0x65, 0xf7, 0xb2, 0x4c, 0xa2, 0xf2, 0xb0, 0xf2, 0xb1, 0x1f, 0x2a,
0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x0d, 0x6f,
0xeb, 0xef, 0x4c, 0xef, 0x60, 0x99, 0x04, 0x6a, 0x4d, 0xef, 0xff, 0xf7,
0x1f, 0x6a, 0x00, 0x6c, 0x57, 0x6d, 0x01, 0x6e, 0x40, 0xeb, 0x4c, 0xef,
0x04, 0x93, 0x33, 0x2b, 0x40, 0x98, 0x01, 0x6c, 0x61, 0x6d, 0x40, 0xea,
0xc4, 0x67, 0xe7, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x08, 0xf0, 0x00, 0x6a,
0x1f, 0x10, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x0d, 0x6f, 0xeb, 0xef, 0x4c, 0xef, 0x60, 0x99, 0x08, 0x6a, 0x4d, 0xef,
0xff, 0xf7, 0x1f, 0x6a, 0x00, 0x6c, 0x57, 0x6d, 0x01, 0x6e, 0x40, 0xeb,
0x4c, 0xef, 0x04, 0x93, 0x14, 0x2b, 0x40, 0x98, 0x01, 0x6c, 0x61, 0x6d,
0x40, 0xea, 0xc4, 0x67, 0xe7, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x10, 0xf0,
0x00, 0x6a, 0x4b, 0xea, 0x60, 0x99, 0x4d, 0xef, 0x01, 0x6c, 0xff, 0xf7,
0x1f, 0x6a, 0x61, 0x6d, 0xc4, 0x67, 0x40, 0xeb, 0x4c, 0xef, 0xcd, 0xb0,
0x40, 0x98, 0x00, 0x6c, 0x56, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0xf0,
0x00, 0x6f, 0xcd, 0xb3, 0xeb, 0xef, 0x4c, 0xef, 0x4c, 0xa3, 0xcc, 0xb3,
0xc7, 0xb1, 0x50, 0x32, 0x49, 0xe3, 0x61, 0xaa, 0xe3, 0xf7, 0x1f, 0x6a,
0x00, 0x6c, 0x6c, 0xea, 0x60, 0x99, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x56, 0x6d, 0x01, 0x6e, 0x40, 0xeb, 0x4c, 0xef, 0x04, 0x93, 0x01, 0x73,
0x25, 0x61, 0x40, 0x98, 0x00, 0x6c, 0x56, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x60, 0x99, 0xff, 0xf7, 0x1f, 0x6c, 0x8c, 0xea, 0xfb, 0xf7, 0x1f, 0x6f,
0x4c, 0xef, 0x00, 0x6c, 0x56, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x42, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x10, 0x6f, 0xeb, 0xef,
0x4c, 0xef, 0xb5, 0xb2, 0x67, 0xa2, 0x0f, 0x6a, 0x00, 0x6c, 0x6c, 0xea,
0x60, 0x99, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a, 0x42, 0x6d, 0x01, 0x6e,
0x40, 0xeb, 0x4c, 0xef, 0xae, 0xb3, 0xec, 0xa3, 0xae, 0xb4, 0xaa, 0xb0,
0xf0, 0x37, 0xfd, 0xe4, 0x40, 0x98, 0xe4, 0xaf, 0x06, 0xd3, 0x00, 0x6c,
0x58, 0x6d, 0xa5, 0xb1, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x99, 0x00, 0x6c,
0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x06, 0x93, 0x04, 0x6f, 0xeb, 0xef,
0x4c, 0xef, 0x4c, 0xa3, 0xa3, 0xb4, 0x59, 0x6d, 0x50, 0x32, 0x49, 0xe4,
0x45, 0xaa, 0x03, 0x6c, 0x01, 0x6e, 0x8c, 0xea, 0x4d, 0xef, 0x40, 0x98,
0x0a, 0x65, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x48, 0x67, 0x40, 0xea,
0x00, 0x6c, 0x9d, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x06, 0x93, 0x4a, 0x83,
0x00, 0x52, 0x02, 0x61, 0x49, 0xa3, 0x1b, 0x2a, 0x91, 0xb0, 0x40, 0x98,
0x00, 0x6c, 0x57, 0x6d, 0x90, 0xb1, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99,
0x7f, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x60, 0x99, 0x00, 0x6c, 0x59, 0x6d, 0x01, 0x6e, 0x1f, 0xf6, 0x03, 0x6f,
0x27, 0x10, 0x40, 0x99, 0x00, 0x6c, 0x06, 0xd3, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x80, 0x98, 0x80, 0x6f, 0x4d, 0xef, 0x0c, 0x65, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x48, 0x67, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x40, 0x99, 0x00, 0x6c, 0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x06, 0x93, 0xe0, 0xf1, 0x1d, 0x6f, 0xeb, 0xef, 0x4c, 0xef, 0x4a, 0xa3,
0x7f, 0x6b, 0x00, 0x6c, 0x6c, 0xea, 0x60, 0x98, 0x48, 0x32, 0x4d, 0xef,
0x59, 0x6d, 0x01, 0x6e, 0xff, 0xf7, 0x1f, 0x6a, 0x74, 0xb0, 0x40, 0xeb,
0x4c, 0xef, 0x6c, 0xa0, 0x73, 0xb2, 0x6f, 0xb1, 0x70, 0x33, 0x6d, 0xe2,
0xe2, 0xab, 0x40, 0x99, 0x01, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0xc4, 0x67,
0x4c, 0xa0, 0x69, 0xb0, 0x09, 0x5a, 0x2f, 0x61, 0x40, 0x98, 0x01, 0x6c,
0xc4, 0x67, 0x40, 0xea, 0x60, 0x6d, 0x00, 0xf3, 0x00, 0x6f, 0x4d, 0xef,
0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b, 0x01, 0x6c, 0x6c, 0xef, 0xc4, 0x67,
0x06, 0xd3, 0x40, 0xea, 0x60, 0x6d, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x10, 0xf0, 0x00, 0x6f, 0x06, 0x93, 0xeb, 0xef,
0x4d, 0xef, 0x40, 0x99, 0x6c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x06, 0x93, 0x20, 0x6f, 0x4d, 0xef, 0x00, 0x99, 0x00, 0x6c, 0x5e, 0x6d,
0x01, 0x6e, 0x6c, 0xef, 0x34, 0x10, 0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67,
0x40, 0xea, 0x60, 0x6d, 0x00, 0xf3, 0x01, 0x6f, 0xeb, 0xef, 0x4c, 0xef,
0x00, 0xf2, 0x00, 0x6a, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b,
0x01, 0x6c, 0x6c, 0xef, 0xc4, 0x67, 0x06, 0xd3, 0x40, 0xea, 0x60, 0x6d,
0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x06, 0x93,
0x80, 0x99, 0xef, 0xf7, 0x1f, 0x6f, 0x6c, 0xea, 0x2c, 0x65, 0x4c, 0xef,
0x00, 0x6c, 0x49, 0x67, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x06, 0x93, 0x00, 0x99,
0xdf, 0xf7, 0x1f, 0x6f, 0x6c, 0xea, 0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e,
0x4c, 0xef, 0x40, 0xe8, 0x00, 0x65, 0x39, 0xb3, 0xec, 0xa3, 0x39, 0xb4,
0x34, 0xb0, 0xf0, 0x37, 0xfd, 0xe4, 0x40, 0x98, 0xe6, 0xaf, 0x01, 0x6c,
0xc4, 0x67, 0x06, 0xd3, 0x2f, 0xb1, 0x40, 0xea, 0x5f, 0x6d, 0x40, 0x99,
0x01, 0x6c, 0xc4, 0x67, 0x40, 0xea, 0x60, 0x6d, 0x06, 0x93, 0xff, 0x6f,
0x01, 0x4f, 0xeb, 0xef, 0x4c, 0xef, 0x4c, 0xa3, 0x2d, 0xb3, 0x01, 0x6c,
0x50, 0x32, 0x49, 0xe3, 0x4e, 0xa2, 0x60, 0x98, 0x60, 0x6d, 0x4d, 0xef,
0xff, 0xf7, 0x1f, 0x6a, 0xc4, 0x67, 0x40, 0xeb, 0x4c, 0xef, 0x05, 0x93,
0x0f, 0x2b, 0x40, 0x99, 0x00, 0x6c, 0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x00, 0xf2, 0x00, 0x6f, 0x4d, 0xef, 0x60, 0x98, 0x00, 0x6c, 0x59, 0x6d,
0x01, 0x6e, 0xff, 0xf7, 0x1f, 0x6a, 0x0e, 0x10, 0x40, 0x99, 0x00, 0x6c,
0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea,
0x60, 0x98, 0x00, 0x6c, 0x59, 0x6d, 0x01, 0x6e, 0xff, 0xf5, 0x1f, 0x6f,
0x40, 0xeb, 0x4c, 0xef, 0x11, 0xb2, 0x40, 0x9a, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0xff, 0x6f, 0x01, 0x4f, 0x4d, 0xef, 0x0e, 0xb2,
0x60, 0x9a, 0xff, 0xf7, 0x1f, 0x6a, 0x00, 0x6c, 0x4c, 0xef, 0x57, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x05, 0x94, 0x10, 0xb2, 0x05, 0x2c, 0x04, 0x92,
0x01, 0x72, 0x0f, 0xb2, 0x01, 0x60, 0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x0b, 0x97, 0x0a, 0x91, 0x09, 0x90, 0x00, 0xef, 0x06, 0x63, 0x00, 0x65,
0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80, 0x6d, 0x50, 0x10, 0x80,
0xdd, 0x95, 0x00, 0x80, 0xd8, 0x5c, 0x12, 0x80, 0xbc, 0x72, 0x10, 0x80,
0xf9, 0x5c, 0x12, 0x80, 0x91, 0x58, 0x10, 0x80, 0x45, 0x57, 0x10, 0x80,
0x39, 0x56, 0x10, 0x80, 0x65, 0x64, 0x10, 0x80, 0xf4, 0x63, 0x17, 0x62,
0x16, 0xd1, 0x15, 0xd0, 0x3a, 0xb2, 0x1a, 0xa2, 0x48, 0xa2, 0x7d, 0x67,
0x40, 0xf0, 0x00, 0xc3, 0xff, 0x72, 0x0b, 0x60, 0x00, 0x6b, 0x37, 0xb2,
0x60, 0xc2, 0x37, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x09, 0xe2, 0x7d, 0x67,
0x40, 0xf0, 0x40, 0xc3, 0x0c, 0x10, 0x34, 0xb2, 0x40, 0xa2, 0x41, 0xe0,
0x33, 0xb2, 0x40, 0xa2, 0x41, 0xe0, 0x5d, 0x67, 0x40, 0xf0, 0x00, 0xc2,
0x31, 0xb2, 0x40, 0xea, 0x10, 0x04, 0x31, 0xb1, 0x08, 0x6a, 0x2a, 0xb0,
0x05, 0xd1, 0x04, 0xd2, 0x45, 0xa0, 0x64, 0xa0, 0x04, 0x6c, 0x40, 0x32,
0x6d, 0xea, 0x06, 0xd2, 0x43, 0xa0, 0x62, 0xa0, 0xfc, 0x6d, 0x40, 0x32,
0x6d, 0xea, 0x07, 0xd2, 0x41, 0xa0, 0x60, 0xa0, 0xe0, 0xf3, 0x0a, 0x6e,
0x40, 0x32, 0x6d, 0xea, 0x08, 0xd2, 0x46, 0xa0, 0x25, 0xb3, 0x06, 0xf2,
0x0e, 0x6f, 0x09, 0xd2, 0x47, 0xa0, 0x0a, 0xd2, 0x48, 0xa0, 0x0b, 0xd2,
0x49, 0xa0, 0x0c, 0xd2, 0x4a, 0xa0, 0x12, 0xd3, 0x40, 0xeb, 0x0d, 0xd2,
0x09, 0x6a, 0x05, 0xd1, 0x04, 0xd2, 0x4b, 0xa0, 0x12, 0x93, 0x06, 0xf2,
0x0f, 0x6f, 0x06, 0xd2, 0x4c, 0xa0, 0xfc, 0x6d, 0xe0, 0xf3, 0x14, 0x6e,
0x07, 0xd2, 0x4d, 0xa0, 0x04, 0x6c, 0x08, 0xd2, 0x4e, 0xa0, 0x09, 0xd2,
0x4f, 0xa0, 0x0a, 0xd2, 0x44, 0x98, 0x0b, 0xd2, 0x45, 0x98, 0x0c, 0xd2,
0x4c, 0xa8, 0x0d, 0xd2, 0x5a, 0x80, 0x40, 0xeb, 0x0e, 0xd2, 0x7d, 0x67,
0x40, 0xf0, 0x80, 0xa3, 0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x01, 0x6c,
0xa4, 0x67, 0x0e, 0xb2, 0x40, 0xea, 0x00, 0x6e, 0x17, 0x97, 0x16, 0x91,
0x15, 0x90, 0x00, 0xef, 0x0c, 0x63, 0x00, 0x65, 0xd8, 0x5c, 0x12, 0x80,
0xfe, 0x5d, 0x12, 0x80, 0x25, 0x54, 0x10, 0x80, 0xf4, 0x5c, 0x12, 0x80,
0xf8, 0x5c, 0x12, 0x80, 0x25, 0x45, 0x10, 0x80, 0xe0, 0x71, 0x10, 0x80,
0xed, 0x5a, 0x01, 0x80, 0x6d, 0x54, 0x10, 0x80, 0x05, 0x65, 0x10, 0x80,
0xfb, 0x63, 0x09, 0x62, 0x13, 0xb2, 0x40, 0xea, 0x00, 0x6c, 0x5a, 0x6c,
0x00, 0x6a, 0x12, 0xb3, 0x8b, 0xec, 0x44, 0xdb, 0x46, 0xdb, 0x45, 0xdb,
0x20, 0xf0, 0x80, 0xc3, 0x43, 0xdb, 0x0f, 0xb3, 0x40, 0xdb, 0x0f, 0xb3,
0x40, 0xdb, 0x0f, 0xb3, 0x04, 0xd2, 0x05, 0xd3, 0x06, 0xd2, 0x06, 0xf2,
0x08, 0x6f, 0x04, 0x6c, 0xa0, 0xf2, 0x10, 0x6e, 0x0b, 0xb2, 0x40, 0xea,
0xfc, 0x6d, 0x00, 0x6c, 0xa4, 0x67, 0x0a, 0xb2, 0x40, 0xea, 0xc4, 0x67,
0x09, 0x97, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65, 0x51, 0x5a, 0x10, 0x80,
0xb4, 0x5c, 0x12, 0x80, 0xac, 0x5c, 0x12, 0x80, 0xb0, 0x5c, 0x12, 0x80,
0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80, 0x05, 0x65, 0x10, 0x80,
0xf4, 0x63, 0x17, 0x62, 0x16, 0xd1, 0x15, 0xd0, 0x3a, 0xb2, 0x1a, 0xa2,
0x48, 0xa2, 0x7d, 0x67, 0x40, 0xf0, 0x00, 0xc3, 0xff, 0x72, 0x0b, 0x60,
0x01, 0x6b, 0x37, 0xb2, 0x60, 0xc2, 0x37, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x09, 0xe2, 0x7d, 0x67, 0x40, 0xf0, 0x40, 0xc3, 0x0c, 0x10, 0x34, 0xb2,
0x40, 0xa2, 0x41, 0xe0, 0x33, 0xb2, 0x40, 0xa2, 0x41, 0xe0, 0x5d, 0x67,
0x40, 0xf0, 0x00, 0xc2, 0x31, 0xb2, 0x40, 0xea, 0x10, 0x04, 0x31, 0xb1,
0x08, 0x6a, 0x2a, 0xb0, 0x05, 0xd1, 0x04, 0xd2, 0x45, 0xa0, 0x64, 0xa0,
0x04, 0x6c, 0x40, 0x32, 0x6d, 0xea, 0x06, 0xd2, 0x43, 0xa0, 0x62, 0xa0,
0xfc, 0x6d, 0x40, 0x32, 0x6d, 0xea, 0x07, 0xd2, 0x41, 0xa0, 0x60, 0xa0,
0x80, 0xf2, 0x13, 0x6e, 0x40, 0x32, 0x6d, 0xea, 0x08, 0xd2, 0x46, 0xa0,
0x25, 0xb3, 0x06, 0xf2, 0x0e, 0x6f, 0x09, 0xd2, 0x47, 0xa0, 0x0a, 0xd2,
0x48, 0xa0, 0x0b, 0xd2, 0x49, 0xa0, 0x0c, 0xd2, 0x4a, 0xa0, 0x12, 0xd3,
0x40, 0xeb, 0x0d, 0xd2, 0x09, 0x6a, 0x05, 0xd1, 0x04, 0xd2, 0x4b, 0xa0,
0x12, 0x93, 0x06, 0xf2, 0x0f, 0x6f, 0x06, 0xd2, 0x4c, 0xa0, 0xfc, 0x6d,
0x80, 0xf2, 0x1d, 0x6e, 0x07, 0xd2, 0x4d, 0xa0, 0x04, 0x6c, 0x08, 0xd2,
0x4e, 0xa0, 0x09, 0xd2, 0x4f, 0xa0, 0x0a, 0xd2, 0x44, 0x98, 0x0b, 0xd2,
0x45, 0x98, 0x0c, 0xd2, 0x4c, 0xa8, 0x0d, 0xd2, 0x5a, 0x80, 0x40, 0xeb,
0x0e, 0xd2, 0x7d, 0x67, 0x40, 0xf0, 0x80, 0xa3, 0x0f, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x00, 0x6d, 0x01, 0x6c, 0x0e, 0xb2, 0x40, 0xea, 0xc5, 0x67,
0x17, 0x97, 0x16, 0x91, 0x15, 0x90, 0x00, 0xef, 0x0c, 0x63, 0x00, 0x65,
0xd8, 0x5c, 0x12, 0x80, 0xfe, 0x5d, 0x12, 0x80, 0x25, 0x54, 0x10, 0x80,
0xf4, 0x5c, 0x12, 0x80, 0xf8, 0x5c, 0x12, 0x80, 0x25, 0x45, 0x10, 0x80,
0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80, 0x6d, 0x54, 0x10, 0x80,
0x05, 0x65, 0x10, 0x80, 0xf9, 0x63, 0x0d, 0x62, 0x0c, 0xd1, 0x0b, 0xd0,
0x40, 0xac, 0xff, 0xf4, 0x06, 0x6b, 0x04, 0x67, 0x63, 0xea, 0x1e, 0x60,
0xfe, 0x4b, 0x63, 0xea, 0x20, 0xf1, 0x0f, 0x60, 0xff, 0xf4, 0x00, 0x72,
0x00, 0xf1, 0x14, 0x60, 0xfd, 0x4b, 0x63, 0xea, 0x09, 0x60, 0x7f, 0xf4,
0x10, 0x72, 0xc0, 0xf0, 0x0e, 0x60, 0x7f, 0xf4, 0x18, 0x72, 0x40, 0xf1,
0x06, 0x60, 0x53, 0x11, 0xff, 0xf4, 0x02, 0x72, 0x00, 0xf1, 0x04, 0x60,
0xff, 0xf4, 0x01, 0x72, 0xaa, 0xb2, 0x00, 0xf1, 0x10, 0x61, 0x0a, 0x11,
0xff, 0xf4, 0x11, 0x72, 0x23, 0x60, 0xff, 0xf4, 0x12, 0x6b, 0x63, 0xea,
0x0a, 0x60, 0xff, 0xf4, 0x08, 0x72, 0x3b, 0x60, 0xff, 0xf4, 0x0d, 0x72,
0x57, 0x60, 0xff, 0xf4, 0x07, 0x72, 0x23, 0x60, 0x38, 0x11, 0xff, 0xf4,
0x16, 0x72, 0x10, 0x60, 0xff, 0xf4, 0x17, 0x6b, 0x63, 0xea, 0x04, 0x60,
0xff, 0xf4, 0x12, 0x72, 0x12, 0x60, 0x2d, 0x11, 0x1f, 0xf5, 0x14, 0x72,
0x4c, 0x60, 0x5f, 0xf5, 0x05, 0x72, 0x80, 0xf0, 0x1c, 0x60, 0x25, 0x11,
0x97, 0xb2, 0x32, 0x10, 0x97, 0xb4, 0xa3, 0x40, 0x97, 0xb2, 0x40, 0xea,
0x1b, 0x6e, 0x97, 0xb2, 0x17, 0x11, 0x01, 0x6b, 0x96, 0xb2, 0x6b, 0xeb,
0x60, 0xc2, 0x96, 0xb2, 0x11, 0x11, 0x42, 0xa4, 0x00, 0xf1, 0x13, 0x22,
0x46, 0xa4, 0xff, 0x72, 0x02, 0x60, 0x93, 0xb3, 0x47, 0xc3, 0x47, 0xa0,
0xff, 0x72, 0x02, 0x60, 0x90, 0xb3, 0x48, 0xc3, 0x80, 0x6b, 0x6b, 0xeb,
0x8f, 0xb2, 0x6f, 0xc2, 0x0e, 0x10, 0x43, 0xa4, 0x00, 0xf1, 0x01, 0x2a,
0x44, 0xa4, 0x04, 0x2a, 0x8a, 0xb3, 0x50, 0xc3, 0x00, 0x6c, 0x09, 0x10,
0x01, 0x72, 0x0b, 0x61, 0x01, 0x6b, 0x87, 0xb2, 0x70, 0xc2, 0x88, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x82, 0x67, 0x87, 0xb2, 0x40, 0xea, 0x00, 0x65,
0xee, 0x10, 0x02, 0x72, 0xe0, 0xf0, 0x0b, 0x61, 0x81, 0xb3, 0x9a, 0xa3,
0x02, 0x6a, 0x8d, 0xea, 0x5a, 0xc3, 0xe5, 0x10, 0xff, 0x6e, 0x81, 0xb4,
0xb0, 0x67, 0x78, 0xb2, 0x40, 0xea, 0x03, 0x4e, 0xde, 0x10, 0x43, 0xa4,
0x01, 0x72, 0x0a, 0x61, 0x84, 0xa4, 0x7d, 0xb2, 0x02, 0x6b, 0x80, 0xc2,
0x76, 0xb2, 0xa0, 0xa2, 0xad, 0xeb, 0x60, 0xc2, 0x7a, 0xb3, 0x22, 0x10,
0x02, 0x72, 0x15, 0x61, 0x85, 0xa4, 0x44, 0xa0, 0x04, 0x6b, 0x80, 0x34,
0x4d, 0xec, 0x77, 0xb2, 0x80, 0xca, 0x6f, 0xb2, 0xa0, 0xa2, 0x82, 0xc2,
0xad, 0xeb, 0x60, 0xc2, 0x82, 0x33, 0x63, 0xc2, 0x73, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x80, 0x6b, 0x6b, 0xeb, 0x6a, 0xb2, 0x16, 0x10, 0x03, 0x72,
0x18, 0x61, 0x84, 0xa4, 0x6c, 0xb2, 0x02, 0x6b, 0x80, 0xc2, 0x65, 0xb2,
0xa0, 0xa2, 0xad, 0xeb, 0x60, 0xc2, 0x68, 0xb3, 0x60, 0xa3, 0x6d, 0xe4,
0x00, 0xf6, 0x60, 0x33, 0x00, 0xf6, 0x63, 0x33, 0x61, 0xc2, 0x60, 0xb2,
0x61, 0xc2, 0x80, 0x6b, 0x6b, 0xeb, 0x6f, 0xc2, 0x5f, 0xb2, 0x40, 0xea,
0x00, 0x6c, 0x03, 0x6a, 0x04, 0xd2, 0x63, 0xb2, 0x05, 0xd2, 0x5e, 0xb2,
0x40, 0x82, 0x01, 0x6c, 0x06, 0xd2, 0x5e, 0xb2, 0x40, 0xaa, 0xe0, 0xf4,
0x02, 0x6e, 0x06, 0xf2, 0x1d, 0x6f, 0x07, 0xd2, 0x59, 0xb2, 0x40, 0x82,
0x08, 0xd2, 0x5c, 0xb2, 0x40, 0xea, 0xfc, 0x6d, 0x8a, 0x10, 0x43, 0xa0,
0x80, 0xf0, 0x07, 0x22, 0x64, 0xa0, 0x01, 0x6a, 0x4e, 0xeb, 0x36, 0x2b,
0x57, 0xb2, 0x64, 0xc2, 0x28, 0x6b, 0x65, 0xc2, 0x62, 0xa0, 0x03, 0x5b,
0x0b, 0x61, 0x86, 0xa0, 0x65, 0xa0, 0x28, 0x5c, 0x76, 0x60, 0x77, 0xe4,
0x01, 0x55, 0x73, 0x61, 0x01, 0x4c, 0x64, 0xc2, 0x6f, 0xe4, 0x65, 0xc2,
0x4f, 0xb2, 0xff, 0xf7, 0x1f, 0x6b, 0xff, 0x6c, 0xa0, 0xaa, 0x08, 0xf0,
0x00, 0x6a, 0x7b, 0x4c, 0x6c, 0xed, 0x4d, 0xed, 0x4b, 0xb2, 0x40, 0x9a,
0x40, 0xea, 0x6c, 0xed, 0x47, 0xb2, 0x42, 0x9a, 0x01, 0x4a, 0x04, 0x22,
0x48, 0xb4, 0x49, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x00, 0x6a, 0x04, 0xd2,
0xe2, 0x67, 0x45, 0xb5, 0x46, 0xb6, 0x47, 0xb2, 0x40, 0xea, 0x01, 0x6c,
0x3f, 0xb2, 0x82, 0x9a, 0x45, 0xb2, 0x40, 0xea, 0x64, 0x6d, 0x4d, 0x10,
0x44, 0xb2, 0x46, 0x10, 0x2b, 0xb4, 0xa3, 0x40, 0x2b, 0xb2, 0x40, 0xea,
0x1b, 0x6e, 0x40, 0xa8, 0xff, 0xf4, 0x00, 0x72, 0x40, 0xb2, 0x3c, 0x60,
0x40, 0xb2, 0x3a, 0x10, 0x01, 0x6b, 0x28, 0xb2, 0x6b, 0xeb, 0x60, 0xc2,
0x3e, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x00, 0x6b, 0x3d, 0xb2, 0x60, 0xc2,
0x34, 0x10, 0xff, 0xf4, 0x04, 0x72, 0x1e, 0x61, 0x3b, 0xb2, 0x40, 0x9a,
0x00, 0x6f, 0x02, 0x6c, 0x79, 0x6d, 0x3a, 0xb0, 0x40, 0xea, 0x01, 0x6e,
0x40, 0x98, 0x02, 0x6c, 0x79, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x22, 0x67,
0x40, 0x98, 0x02, 0x6c, 0x7a, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xe1, 0xf7,
0x1f, 0x6b, 0x4c, 0xeb, 0x60, 0x33, 0x60, 0x33, 0x2d, 0xeb, 0x31, 0xb2,
0x61, 0xda, 0x6c, 0x33, 0x60, 0xda, 0x03, 0x10, 0x2f, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x01, 0x6b, 0xd7, 0x17, 0x43, 0xa4, 0x01, 0x72, 0x2d, 0xb2,
0x05, 0x61, 0x84, 0xa4, 0x2c, 0xb2, 0x40, 0xea, 0xa5, 0xa0, 0x05, 0x10,
0x40, 0xea, 0x00, 0x65, 0x02, 0x10, 0x12, 0x6a, 0x01, 0x10, 0x00, 0x6a,
0x0d, 0x97, 0x0c, 0x91, 0x0b, 0x90, 0x00, 0xef, 0x07, 0x63, 0x00, 0x65,
0x05, 0x5e, 0x10, 0x80, 0x01, 0x5d, 0x10, 0x80, 0xd8, 0x5c, 0x12, 0x80,
0x65, 0xf3, 0x00, 0x80, 0x11, 0x6b, 0x10, 0x80, 0xfe, 0x5d, 0x12, 0x80,
0x69, 0x61, 0x10, 0x80, 0x04, 0x5c, 0x12, 0x80, 0x70, 0x5c, 0x12, 0x80,
0x7d, 0x45, 0x10, 0x80, 0x25, 0x51, 0x10, 0x80, 0xfc, 0x5c, 0x12, 0x80,
0xf4, 0x5c, 0x12, 0x80, 0xf8, 0x5c, 0x12, 0x80, 0xf6, 0x5c, 0x12, 0x80,
0x79, 0x47, 0x10, 0x80, 0xe0, 0x71, 0x10, 0x80, 0xed, 0x5a, 0x01, 0x80,
0x8c, 0x5c, 0x12, 0x80, 0x7a, 0x01, 0x00, 0xb6, 0x0c, 0x00, 0x12, 0x80,
0x94, 0x5c, 0x12, 0x80, 0x75, 0x0d, 0x01, 0x80, 0x85, 0x63, 0x10, 0x80,
0xc9, 0x0d, 0x01, 0x80, 0x19, 0x0d, 0x01, 0x80, 0x41, 0x63, 0x10, 0x80,
0x95, 0x6c, 0x10, 0x80, 0x29, 0x6c, 0x10, 0x80, 0x89, 0x61, 0x10, 0x80,
0xa8, 0x5c, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80,
0xb4, 0x5c, 0x12, 0x80, 0xa5, 0x5e, 0x10, 0x80, 0xc1, 0x5f, 0x10, 0x80,
0xa5, 0x62, 0x10, 0x80, 0xfc, 0x63, 0x07, 0x62, 0x06, 0xd1, 0x05, 0xd0,
0x22, 0xb0, 0x40, 0x98, 0x22, 0xb1, 0x00, 0x6c, 0x60, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0xff, 0xf3, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x60, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xef, 0xf7, 0x1f, 0x6f, 0x4c, 0xef,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c,
0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xdf, 0xf7, 0x1f, 0x6f,
0x4c, 0xef, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xeb, 0x00, 0x6c, 0x00, 0x6a,
0x0f, 0xb3, 0x01, 0x6c, 0x8b, 0xec, 0x40, 0xdb, 0x41, 0xdb, 0x42, 0xdb,
0x43, 0xdb, 0x44, 0xdb, 0x0c, 0xb3, 0x80, 0xc3, 0x0c, 0xb3, 0x40, 0xc3,
0x0c, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0c, 0xb3, 0x40, 0xc3, 0x0c, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xef,
0x04, 0x63, 0x00, 0x65, 0x4c, 0x00, 0x12, 0x80, 0x50, 0x00, 0x12, 0x80,
0x8c, 0x5c, 0x12, 0x80, 0xfe, 0x5d, 0x12, 0x80, 0xff, 0x5d, 0x12, 0x80,
0xed, 0x43, 0x10, 0x80, 0xf4, 0x5c, 0x12, 0x80, 0x69, 0x61, 0x10, 0x80,
0x41, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x20, 0x00, 0x00, 0x90, 0x4f, 0x03,
0x00, 0xf0, 0x20, 0x00, 0x00, 0x90, 0x6f, 0x03, 0x00, 0xf0, 0x08, 0x00,
0x02, 0x90, 0x17, 0xf8, 0x34, 0x00, 0x03, 0x10, 0x36, 0x00, 0x00, 0xe2,
0x38, 0x00, 0x01, 0x31, 0x3a, 0x00, 0xe0, 0x05, 0x64, 0x00, 0x40, 0x2e,
0x1a, 0x01, 0x12, 0x36, 0x64, 0x06, 0x27, 0x00, 0x64, 0x06, 0x26, 0x00,
0x42, 0x02, 0xff, 0x05, 0x44, 0x02, 0xf7, 0x63, 0x16, 0x03, 0x53, 0x76,
0x14, 0x03, 0x00, 0x00, 0x74, 0x03, 0x86, 0x06, 0x72, 0x03, 0xd1, 0x04,
0x70, 0x03, 0x57, 0x04, 0x6e, 0x03, 0x1e, 0x04, 0x6c, 0x03, 0x2c, 0x04,
0x6a, 0x03, 0x3f, 0x00, 0x68, 0x03, 0x3f, 0x00, 0x66, 0x03, 0x3f, 0x00,
0x16, 0x00, 0xbe, 0xa6, 0x40, 0x03, 0x8a, 0x03, 0x3a, 0x02, 0xa6, 0x00,
0x3c, 0x02, 0x7e, 0xc0, 0x60, 0x02, 0x36, 0x21, 0x62, 0x02, 0xce, 0x17,
0x08, 0x03, 0x29, 0x29, 0x42, 0x03, 0x01, 0x09, 0x48, 0x03, 0x29, 0x25,
0x56, 0x03, 0x0d, 0x33, 0x5a, 0x03, 0x45, 0x00, 0x1a, 0x06, 0x8b, 0xd3,
0x30, 0x06, 0x26, 0x67, 0x34, 0x06, 0x7f, 0xc8, 0x42, 0x06, 0x4d, 0x43,
0x44, 0x06, 0x8d, 0x46, 0x34, 0x01, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00,
0x60, 0x01, 0x4a, 0x26, 0x64, 0x01, 0x44, 0x3b, 0x66, 0x01, 0xd2, 0x76,
0x08, 0x00, 0xb0, 0x00, 0x66, 0x00, 0x59, 0x40, 0x0a, 0x06, 0xdb, 0x50,
0x0c, 0x06, 0xf2, 0x7b, 0x10, 0x06, 0x8c, 0x55, 0x12, 0x06, 0x0a, 0x28,
0x14, 0x06, 0x27, 0x01, 0x01, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0x00, 0x00,
0x20, 0x38, 0x03, 0x00, 0x63, 0x27, 0x00, 0x00, 0x01, 0x00, 0xb8, 0x05,
0xb8, 0x05, 0x00, 0x00, 0x58, 0x98, 0x03, 0x00, 0xf4, 0xc5, 0x00, 0x00,
0x01, 0x00, 0x98, 0x0a, 0x98, 0x0a, 0x00, 0x00, 0x78, 0xa0, 0x00, 0x00,
0x72, 0xc8, 0x00, 0x00, 0x02, 0x00, 0xb0, 0x01, 0xb0, 0x01, 0x00, 0x00,
0x20, 0x38, 0x03, 0x00, 0x54, 0x5b, 0x00, 0x00, 0x02, 0x00, 0x78, 0x0b,
0x78, 0x0b, 0x00, 0x00, 0x50, 0xc0, 0x00, 0x00, 0x36, 0xe5, 0x00, 0x00,
0x02, 0x00, 0x38, 0x15, 0x38, 0x15, 0x00, 0x00, 0x70, 0xf8, 0x03, 0x00,
0xd3, 0xe9, 0x00, 0x00, 0x03, 0x00, 0x98, 0x02, 0x98, 0x02, 0x00, 0x00,
0x40, 0x5c, 0x01, 0x00, 0xc3, 0xbe, 0x00, 0x00, 0x03, 0x00, 0x40, 0x11,
0x40, 0x11, 0x00, 0x00, 0x58, 0x98, 0x03, 0x00, 0x4e, 0x62, 0x00, 0x00,
0x03, 0x00, 0xe8, 0x1f, 0xe8, 0x1f, 0x00, 0x00, 0x78, 0xa0, 0x00, 0x00,
0xe1, 0x64, 0x00, 0x00, 0x01, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x4f, 0x1d, 0x7c, 0x00, 0x02, 0x02, 0x6a, 0x7c,
0xf5, 0x53, 0x00, 0x00, 0x45, 0xd3, 0x89, 0x82, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xfd, 0x63, 0x05, 0x62, 0x27, 0xb2, 0x40, 0x9a,
0x27, 0xb3, 0x42, 0x34, 0x82, 0x34, 0x80, 0xcb, 0x26, 0xb3, 0x40, 0xcb,
0x26, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x26, 0xb3, 0x26, 0xb2, 0x60, 0xda,
0x26, 0xb3, 0x27, 0xb2, 0x60, 0xda, 0x27, 0xb3, 0x27, 0xb2, 0x60, 0xda,
0x27, 0xb3, 0x28, 0xb2, 0x60, 0xda, 0x28, 0xb3, 0x28, 0xb2, 0x60, 0xda,
0x28, 0xb3, 0x29, 0xb2, 0x60, 0xda, 0x29, 0xb2, 0xa0, 0xf0, 0x6b, 0xa2,
0xa0, 0xf0, 0x8a, 0xa2, 0x60, 0x33, 0x8d, 0xeb, 0xa0, 0xf0, 0x8c, 0xa2,
0x80, 0x34, 0x80, 0x34, 0x6d, 0xec, 0xa0, 0xf0, 0x6d, 0xa2, 0x00, 0xf6,
0x60, 0x33, 0x8d, 0xeb, 0x08, 0xf0, 0x01, 0x6c, 0x8b, 0xec, 0x8c, 0xeb,
0x62, 0x34, 0xa0, 0xf0, 0x6a, 0xc2, 0xa0, 0xf0, 0x8b, 0xc2, 0x00, 0xf6,
0x62, 0x33, 0x82, 0x34, 0xa0, 0xf0, 0x8c, 0xc2, 0xa0, 0xf0, 0x6d, 0xc2,
0x00, 0x6b, 0x19, 0xb2, 0x60, 0xc2, 0x19, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x18, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x18, 0xb3, 0x18, 0xb2, 0x60, 0xda,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x98, 0x5c, 0x10, 0x80,
0x02, 0x02, 0x12, 0x80, 0x00, 0x02, 0x12, 0x80, 0x61, 0x57, 0x10, 0x80,
0xf9, 0x40, 0x10, 0x80, 0x8c, 0x07, 0x12, 0x80, 0x95, 0x43, 0x10, 0x80,
0x88, 0x05, 0x12, 0x80, 0x15, 0x41, 0x10, 0x80, 0xd0, 0x07, 0x12, 0x80,
0x1d, 0x42, 0x10, 0x80, 0x30, 0x09, 0x12, 0x80, 0x81, 0x41, 0x10, 0x80,
0x3c, 0x09, 0x12, 0x80, 0x61, 0x41, 0x10, 0x80, 0xbc, 0x07, 0x12, 0x80,
0x08, 0x02, 0x12, 0x80, 0x00, 0x5c, 0x12, 0x80, 0x0d, 0x43, 0x10, 0x80,
0x09, 0x37, 0x00, 0x80, 0x19, 0x41, 0x10, 0x80, 0xe4, 0x0a, 0x12, 0x80,
0x04, 0xb2, 0x05, 0xb3, 0x72, 0xda, 0x05, 0xb3, 0x6c, 0xda, 0x20, 0xe8,
0x00, 0x6a, 0x00, 0x65, 0xe4, 0x21, 0x12, 0x80, 0xf9, 0x42, 0x10, 0x80,
0xe5, 0x42, 0x10, 0x80, 0x20, 0xe8, 0x00, 0x6a, 0x20, 0xe8, 0x00, 0x6a,
0x20, 0xe8, 0x00, 0x6a, 0xfd, 0x63, 0x05, 0x62, 0x0a, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x0a, 0xb2, 0x40, 0xa2, 0x03, 0x2a, 0x09, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x09, 0xb3, 0x51, 0xa3, 0x70, 0xa3, 0x40, 0x32, 0x6d, 0xea,
0x07, 0xb3, 0x40, 0xcb, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65,
0x85, 0x53, 0x10, 0x80, 0x00, 0x5c, 0x12, 0x80, 0x0d, 0x58, 0x10, 0x80,
0xb8, 0x12, 0x12, 0x80, 0xe8, 0x10, 0x00, 0xb6, 0xfd, 0x63, 0x05, 0x62,
0x40, 0xac, 0x01, 0xf4, 0x03, 0x72, 0x03, 0x61, 0x04, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x05, 0x97, 0x00, 0x6a, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65,
0x21, 0x41, 0x10, 0x80, 0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0,
0x44, 0xa4, 0x63, 0xa4, 0x04, 0x67, 0x40, 0x32, 0x69, 0xe2, 0xff, 0xf7,
0x1f, 0x6b, 0x6c, 0xea, 0x60, 0xa5, 0x9d, 0x67, 0x25, 0x67, 0x70, 0xc4,
0xff, 0xf4, 0x09, 0x6c, 0x83, 0xea, 0x14, 0x60, 0xff, 0xf4, 0x07, 0x6b,
0x63, 0xea, 0x1a, 0x60, 0x7f, 0xf4, 0x0f, 0x72, 0x17, 0x60, 0x89, 0x4b,
0x63, 0xea, 0x03, 0x60, 0x5f, 0xf4, 0x00, 0x72, 0x0f, 0x10, 0xff, 0xf4,
0x04, 0x6b, 0x6b, 0xeb, 0x69, 0xe2, 0x01, 0x6b, 0x43, 0xeb, 0x08, 0x10,
0x1f, 0xf5, 0x14, 0x72, 0x07, 0x60, 0x9f, 0xf5, 0x00, 0x72, 0x09, 0x60,
0xff, 0xf4, 0x0d, 0x72, 0x00, 0x6a, 0x0f, 0x61, 0x90, 0x67, 0x0d, 0xb2,
0x40, 0xea, 0x04, 0x05, 0x0f, 0x10, 0x1f, 0xf7, 0x00, 0x6a, 0xcc, 0xea,
0x71, 0xe0, 0x42, 0x32, 0x42, 0xc4, 0x01, 0x4b, 0x5d, 0x67, 0x70, 0xc2,
0x05, 0x10, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63,
0x7d, 0x67, 0x50, 0xa3, 0x41, 0xc0, 0x40, 0xc1, 0x01, 0x6a, 0xf5, 0x17,
0x71, 0x49, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x04, 0xd0, 0x40, 0xac,
0x04, 0x67, 0xff, 0xf4, 0x0d, 0x72, 0x3d, 0x60, 0xff, 0xf4, 0x0e, 0x6b,
0x63, 0xea, 0x20, 0x60, 0x7f, 0xf4, 0x15, 0x72, 0x36, 0x60, 0x88, 0x4b,
0x63, 0xea, 0x0c, 0x60, 0x5f, 0xf4, 0x00, 0x72, 0x30, 0x60, 0xca, 0x4b,
0x63, 0xea, 0x3e, 0x61, 0x7f, 0xf4, 0x0f, 0x6b, 0x6b, 0xeb, 0x69, 0xe2,
0x01, 0x6b, 0x0c, 0x10, 0x7f, 0xf4, 0x18, 0x72, 0x24, 0x60, 0x7f, 0xf4,
0x18, 0x6b, 0x63, 0xea, 0x31, 0x61, 0xff, 0xf4, 0x00, 0x6b, 0x6b, 0xeb,
0x69, 0xe2, 0x08, 0x6b, 0x43, 0xeb, 0x18, 0x10, 0xff, 0xf4, 0x1c, 0x72,
0x16, 0x60, 0xff, 0xf4, 0x1d, 0x6b, 0x63, 0xea, 0x09, 0x60, 0xf4, 0x4b,
0x63, 0xea, 0x20, 0x61, 0x02, 0x4b, 0x63, 0xea, 0x0c, 0x61, 0xff, 0xf4,
0x16, 0x72, 0x08, 0x10, 0x5f, 0xf5, 0x05, 0x72, 0x06, 0x60, 0x9f, 0xf5,
0x00, 0x72, 0x0a, 0x60, 0x1f, 0xf5, 0x14, 0x72, 0x11, 0x61, 0x0e, 0xb2,
0x40, 0xea, 0x90, 0x67, 0xa2, 0x67, 0x80, 0xa8, 0x00, 0x6e, 0x05, 0x10,
0xc3, 0xa4, 0x12, 0x6d, 0x9f, 0xf5, 0x00, 0x6c, 0xc0, 0x36, 0x09, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x01, 0x6a, 0x05, 0x10, 0x01, 0x6a, 0x40, 0xc5,
0x00, 0x6a, 0x40, 0xc6, 0x00, 0x6a, 0x05, 0x97, 0x04, 0x90, 0x00, 0xef,
0x03, 0x63, 0x00, 0x65, 0x61, 0x4f, 0x10, 0x80, 0x85, 0xd7, 0x00, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x03, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0x15, 0x62, 0x00, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x03, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0x2d, 0xad, 0x00, 0x80, 0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0,
0x18, 0xb3, 0x19, 0xb2, 0x43, 0xeb, 0x26, 0x61, 0x18, 0xb2, 0x80, 0x9a,
0x18, 0xb3, 0x8e, 0xeb, 0x21, 0x2b, 0x02, 0xaa, 0x17, 0xb5, 0x1d, 0x10,
0x42, 0x45, 0x17, 0xb4, 0x43, 0xec, 0x1a, 0x61, 0xc0, 0xa2, 0xff, 0xf7,
0x1f, 0x6f, 0x43, 0x46, 0x43, 0xe8, 0x14, 0x61, 0x45, 0xe5, 0x23, 0xec,
0x11, 0x61, 0x81, 0xa5, 0x60, 0xa5, 0x80, 0x34, 0x6d, 0xec, 0xec, 0xec,
0xe0, 0xf1, 0x04, 0x5c, 0x09, 0x60, 0x43, 0xe0, 0x0d, 0xb2, 0x91, 0xe2,
0x03, 0x4d, 0x0d, 0xb2, 0x40, 0xea, 0xec, 0xe8, 0xb1, 0x67, 0xe2, 0x28,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0xf0, 0xdf, 0x10, 0x80, 0x98, 0x5c, 0x10, 0x80, 0x9c, 0x5c, 0x10, 0x80,
0x55, 0xab, 0x23, 0x87, 0xa2, 0x5c, 0x10, 0x80, 0xff, 0xdf, 0x10, 0x80,
0x08, 0x02, 0x12, 0x80, 0x65, 0xf2, 0x00, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x0e, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0e, 0xb3, 0xff, 0xf7, 0x1f, 0x6c,
0x02, 0xf0, 0x00, 0x6d, 0x40, 0xab, 0xab, 0xed, 0x8c, 0xea, 0xad, 0xea,
0x3f, 0x4d, 0xac, 0xea, 0xc2, 0xf2, 0x01, 0x4d, 0xad, 0xea, 0xdf, 0xf4,
0x00, 0x4d, 0xac, 0xea, 0x0c, 0x6d, 0xad, 0xea, 0x8c, 0xea, 0x40, 0xcb,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0xc1, 0xad, 0x01, 0x80,
0x28, 0x12, 0x00, 0xb6, 0x01, 0x6b, 0x6b, 0xeb, 0x0a, 0xb2, 0x60, 0xc2,
0x01, 0x6a, 0x4b, 0xea, 0x09, 0xb3, 0x40, 0xcb, 0x09, 0xb3, 0x40, 0xc3,
0x00, 0x6b, 0x09, 0xb2, 0x60, 0xc2, 0x01, 0x6b, 0x08, 0xb2, 0x6b, 0xeb,
0x62, 0xda, 0x63, 0xda, 0x00, 0x6b, 0x20, 0xe8, 0x68, 0xca, 0x00, 0x65,
0x39, 0x5c, 0x12, 0x80, 0x3a, 0x5c, 0x12, 0x80, 0x3e, 0x5d, 0x12, 0x80,
0x3f, 0x5d, 0x12, 0x80, 0x04, 0x5c, 0x12, 0x80, 0x0c, 0xb3, 0x4c, 0xa3,
0x09, 0x72, 0x04, 0x60, 0x0b, 0x72, 0x2c, 0x6a, 0x0f, 0x61, 0x03, 0x10,
0x09, 0xb2, 0x20, 0xe8, 0x50, 0xa2, 0x4b, 0xa3, 0x03, 0x2a, 0x07, 0xb2,
0x20, 0xe8, 0x54, 0xa2, 0x4e, 0x72, 0x05, 0xb2, 0x02, 0x61, 0x20, 0xe8,
0x55, 0xa2, 0x51, 0xa2, 0x20, 0xe8, 0x00, 0x65, 0x18, 0x5c, 0x12, 0x80,
0xb8, 0x12, 0x12, 0x80, 0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0,
0x18, 0xb0, 0x40, 0x98, 0xff, 0x69, 0x8c, 0xe9, 0x6e, 0x6d, 0x03, 0x6c,
0x40, 0xea, 0x01, 0x6e, 0x15, 0xb3, 0x40, 0x6f, 0x4d, 0xef, 0x40, 0x9b,
0x03, 0x6c, 0x04, 0xd3, 0x0a, 0x65, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef,
0x6e, 0x6d, 0x48, 0x67, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x98, 0x03, 0x6c,
0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93, 0x8f, 0xf7, 0x01, 0x6f,
0xeb, 0xef, 0x4c, 0xef, 0x3c, 0x31, 0x60, 0x9b, 0xff, 0xf7, 0x1f, 0x6a,
0x2d, 0xef, 0x4c, 0xef, 0x03, 0x6c, 0x6e, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x09, 0xb2, 0x40, 0x9a, 0x03, 0x6c, 0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x07, 0xb3, 0x60, 0x9b, 0xbf, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x03, 0x6c,
0x6e, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x46, 0xb2, 0x4c, 0xa2, 0x0b, 0x72, 0x1c, 0x60,
0x0c, 0x5a, 0x03, 0x60, 0x09, 0x72, 0x06, 0x60, 0x7d, 0x10, 0x0c, 0x72,
0x35, 0x60, 0x0d, 0x72, 0x55, 0x60, 0x78, 0x10, 0x40, 0xb2, 0x40, 0x9a,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x20, 0x6f, 0x4d, 0xef,
0x3d, 0xb2, 0x60, 0x9a, 0xff, 0xf7, 0x1f, 0x6a, 0x00, 0x6c, 0x5e, 0x6d,
0x01, 0x6e, 0x40, 0xeb, 0x4c, 0xef, 0x66, 0x10, 0x37, 0xb0, 0x40, 0x98,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0xff, 0x6f, 0x35, 0xb1,
0x21, 0x4f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef,
0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xea, 0x04, 0xd3, 0x40, 0x98,
0x06, 0x6c, 0x4d, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x10, 0xf0, 0x00, 0x6f,
0xeb, 0xef, 0x4d, 0xef, 0x00, 0x99, 0x06, 0x6c, 0x4d, 0x6d, 0x42, 0x10,
0x27, 0xb0, 0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x25, 0xb1, 0x20, 0xf4, 0x00, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7,
0x1f, 0x6b, 0x6c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xea,
0x04, 0xd3, 0x40, 0x98, 0x06, 0x6c, 0x6f, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x08, 0x6f, 0xeb, 0xef, 0x4c, 0xef, 0x01, 0x6a, 0x4d, 0xef, 0x00, 0x99,
0x06, 0x6c, 0x6f, 0x6d, 0xc2, 0x67, 0x21, 0x10, 0x16, 0xb0, 0x40, 0x98,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x14, 0xb1, 0x20, 0xf4,
0x00, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef,
0x00, 0x6c, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xea, 0x04, 0xd3, 0x40, 0x98,
0x06, 0x6c, 0x6f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x08, 0x6f, 0xeb, 0xef,
0x00, 0x99, 0x4c, 0xef, 0x03, 0x6a, 0x4d, 0xef, 0x06, 0x6c, 0x6f, 0x6d,
0x01, 0x6e, 0x04, 0x93, 0x40, 0xe8, 0x6c, 0xef, 0x09, 0x97, 0x08, 0x91,
0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65, 0x18, 0x5c, 0x12, 0x80,
0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x3b, 0xb2, 0x40, 0x9a, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x39, 0xb3, 0x60, 0x9b, 0xfd, 0xf7, 0x1f, 0x6f,
0x00, 0x6c, 0x4c, 0xef, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x36, 0xb2,
0x65, 0x9a, 0x36, 0xb2, 0x8f, 0x43, 0x83, 0xea, 0x01, 0x60, 0x35, 0xb3,
0x30, 0xb0, 0x40, 0x98, 0x04, 0xd3, 0x00, 0x6c, 0x42, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x2e, 0xb1, 0x04, 0x93, 0x0f, 0x6c, 0x4c, 0xec, 0x40, 0x99,
0x70, 0x37, 0x8d, 0xef, 0x0a, 0x65, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef,
0x00, 0x6c, 0x48, 0x67, 0x42, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x98,
0x02, 0x6c, 0x75, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93, 0x27, 0xb7,
0x40, 0x99, 0x02, 0x6c, 0x6c, 0xef, 0xe2, 0x37, 0xff, 0xf7, 0x1f, 0x6b,
0xf2, 0x37, 0x6c, 0xef, 0x75, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x40, 0x98,
0x02, 0x6c, 0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x80, 0x6f, 0xeb, 0xef,
0x60, 0x99, 0x4c, 0xef, 0x10, 0x6a, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xef, 0x02, 0x6c, 0x5f, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0x01, 0x6f,
0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0x60, 0x99, 0xff, 0xf7,
0x1e, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65,
0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0x18, 0x5c, 0x12, 0x80,
0xfe, 0xff, 0xff, 0x0f, 0xff, 0xff, 0xff, 0x0f, 0x00, 0xf0, 0xff, 0x0f,
0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0, 0x1e, 0xb2, 0x4c, 0xa2,
0x09, 0x5a, 0x03, 0x61, 0x1d, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x1d, 0xb0,
0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x1b, 0xb1,
0x02, 0xf0, 0x00, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0xff, 0xf7, 0x1f, 0x6b,
0x6c, 0xef, 0x04, 0xd3, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x04, 0x93,
0x01, 0x6f, 0x4d, 0xef, 0x40, 0x99, 0x6c, 0xef, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x04, 0x93, 0x00, 0x99, 0xff, 0xf7, 0x1e, 0x6f, 0x6c, 0xea,
0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xe8, 0x01, 0x6e, 0x09, 0x97,
0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x18, 0x5c, 0x12, 0x80,
0xf1, 0x44, 0x10, 0x80, 0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80,
0x16, 0xb2, 0x8c, 0xea, 0x02, 0x22, 0x16, 0xb2, 0x01, 0x10, 0x16, 0xb2,
0x16, 0xb3, 0x8d, 0xea, 0x00, 0x6c, 0x6e, 0xea, 0x48, 0x32, 0x64, 0x67,
0x00, 0x52, 0x04, 0x60, 0x13, 0xb6, 0xce, 0xea, 0x13, 0xb6, 0xce, 0xeb,
0x44, 0x36, 0xc0, 0xf7, 0x62, 0x32, 0xcd, 0xea, 0x01, 0x4c, 0xff, 0x6e,
0xcc, 0xec, 0x1e, 0x5c, 0x64, 0x33, 0xf0, 0x61, 0x48, 0x34, 0x80, 0xf7,
0x62, 0x33, 0x6d, 0xec, 0x82, 0x33, 0x80, 0xc5, 0x61, 0xc5, 0x00, 0xf6,
0x82, 0x34, 0x62, 0x33, 0x80, 0xf7, 0x42, 0x32, 0x62, 0xc5, 0x83, 0xc5,
0x20, 0xe8, 0x44, 0xc5, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x13,
0x00, 0x00, 0x00, 0x2c, 0x65, 0x23, 0xe1, 0x20, 0xb5, 0x27, 0xae, 0xb0,
0x00, 0x00, 0x00, 0x20, 0xfd, 0x63, 0x05, 0x62, 0x04, 0xd0, 0x11, 0xb2,
0x40, 0xea, 0x05, 0x67, 0x60, 0xa0, 0x04, 0x6a, 0x4b, 0xea, 0x6e, 0xea,
0x40, 0xc0, 0x41, 0x40, 0x60, 0xa2, 0x54, 0x6c, 0x8e, 0xeb, 0x60, 0xc2,
0x42, 0x40, 0x80, 0xa2, 0x34, 0x6b, 0x6b, 0xeb, 0x8e, 0xeb, 0x60, 0xc2,
0x43, 0x40, 0x80, 0xa2, 0x45, 0x6b, 0x6b, 0xeb, 0x8e, 0xeb, 0x60, 0xc2,
0x44, 0xa0, 0x02, 0x6b, 0x05, 0x97, 0x6e, 0xea, 0x44, 0xc0, 0x04, 0x90,
0x00, 0xef, 0x03, 0x63, 0xb9, 0x47, 0x10, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd0, 0x3b, 0xb0, 0x82, 0xa0, 0x41, 0xa0, 0x80, 0x34, 0x4d, 0xec,
0x40, 0xa0, 0x80, 0x34, 0x4d, 0xec, 0x38, 0xb2, 0x40, 0xea, 0x04, 0x05,
0x7d, 0x67, 0x48, 0xab, 0x81, 0xa0, 0xdd, 0x67, 0x4c, 0xcb, 0x49, 0xab,
0xaa, 0xae, 0x4d, 0xcb, 0x40, 0xa0, 0x80, 0x33, 0x68, 0x33, 0x48, 0x32,
0x6d, 0xea, 0x03, 0x6b, 0xac, 0xeb, 0x6d, 0xea, 0x62, 0xa0, 0x4e, 0xce,
0x9a, 0x34, 0x68, 0x32, 0x7e, 0x33, 0x8d, 0xea, 0x05, 0x23, 0x09, 0xf4,
0x00, 0x6b, 0x4d, 0xeb, 0x6f, 0xce, 0x06, 0x10, 0x0a, 0xf0, 0x00, 0x6b,
0x6b, 0xeb, 0x4d, 0xeb, 0x5d, 0x67, 0x6f, 0xca, 0x00, 0x6a, 0x21, 0x10,
0xdd, 0x67, 0x44, 0x35, 0xb5, 0xe6, 0xac, 0xad, 0x01, 0x6e, 0xa7, 0xeb,
0xcc, 0xed, 0x0c, 0x25, 0x0f, 0x6d, 0x77, 0xe5, 0xc4, 0xed, 0xa6, 0x67,
0x8d, 0xed, 0xa0, 0x34, 0x80, 0x34, 0x83, 0x34, 0x83, 0x34, 0xff, 0xf7,
0x1f, 0x6d, 0xac, 0xec, 0x01, 0x4b, 0xff, 0x6d, 0xac, 0xeb, 0x10, 0x5b,
0xe7, 0x61, 0x44, 0x33, 0x01, 0x4a, 0xdd, 0x67, 0xac, 0xea, 0x6d, 0xe6,
0x04, 0x5a, 0x8c, 0xcb, 0x03, 0x60, 0x00, 0x6c, 0x64, 0x67, 0xdc, 0x17,
0x13, 0xb0, 0x7d, 0x67, 0x40, 0x98, 0xec, 0xab, 0x00, 0x6c, 0x51, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x7d, 0x67, 0x40, 0x98, 0xed, 0xab, 0x00, 0x6c,
0x50, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x7d, 0x67, 0x40, 0x98, 0xee, 0xab,
0x00, 0x6c, 0x4f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x7d, 0x67, 0x40, 0x98,
0xef, 0xab, 0x00, 0x6c, 0x4e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x09, 0x97,
0x08, 0x90, 0x00, 0xef, 0x05, 0x63, 0x00, 0x65, 0x18, 0x5c, 0x12, 0x80,
0x29, 0x48, 0x10, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x0b, 0xd5, 0x44, 0xa4, 0x63, 0xa4, 0x24, 0x67,
0x40, 0x32, 0x69, 0xe2, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0xff, 0xf4,
0x08, 0x72, 0x00, 0xa5, 0x61, 0x60, 0xff, 0xf4, 0x0a, 0x4b, 0x63, 0xea,
0x07, 0x60, 0x5f, 0xf4, 0x00, 0x72, 0x52, 0x60, 0x7f, 0xf4, 0x0f, 0x72,
0x08, 0x60, 0x5e, 0x10, 0xff, 0xf4, 0x0d, 0x72, 0x16, 0x60, 0x1f, 0xf5,
0x14, 0x72, 0x04, 0x60, 0x57, 0x10, 0x05, 0xe4, 0x0f, 0x6a, 0x50, 0x10,
0x2e, 0xb2, 0x40, 0xa2, 0x05, 0xe4, 0x04, 0x48, 0x42, 0xc1, 0x2d, 0xb2,
0x60, 0xaa, 0x63, 0xc1, 0x40, 0xaa, 0x42, 0x32, 0x44, 0xc1, 0x2b, 0xb2,
0x40, 0xa2, 0x45, 0xc1, 0x43, 0x10, 0x2a, 0xb2, 0x62, 0xa2, 0x13, 0x2b,
0x29, 0xb3, 0xc0, 0xf1, 0x5f, 0xa3, 0x05, 0xe4, 0x07, 0x48, 0x42, 0xc1,
0x01, 0x6a, 0x4b, 0xea, 0x43, 0xc1, 0x44, 0xc1, 0x45, 0xc1, 0x80, 0xf1,
0x9f, 0xa3, 0x86, 0xc1, 0xa0, 0xf1, 0x60, 0xa3, 0x48, 0xc1, 0x67, 0xc1,
0x2d, 0x10, 0x03, 0x73, 0x2d, 0x61, 0x63, 0xa2, 0x01, 0x73, 0x2a, 0x61,
0xc4, 0x82, 0x1e, 0xb3, 0x40, 0x9b, 0x86, 0x67, 0x00, 0x6d, 0x05, 0xd3,
0x40, 0xea, 0x04, 0xd6, 0x05, 0xe1, 0x42, 0xc1, 0x05, 0x93, 0x04, 0x96,
0x01, 0x6d, 0x40, 0x9b, 0x86, 0x67, 0x40, 0xea, 0x03, 0x48, 0x43, 0xc1,
0x05, 0x93, 0x04, 0x96, 0x00, 0x6d, 0x40, 0x9b, 0x40, 0xea, 0x86, 0x67,
0x44, 0xc1, 0x0e, 0x10, 0x12, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x05, 0xe1,
0x11, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x04, 0x10, 0x0c, 0xb2, 0xc0, 0xf1,
0x5a, 0xa2, 0x05, 0xe4, 0x42, 0xc1, 0x01, 0x48, 0xff, 0x6a, 0x4c, 0xe8,
0x0b, 0x92, 0x00, 0xc2, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef,
0x05, 0x63, 0x00, 0x65, 0x34, 0x5c, 0x12, 0x80, 0x36, 0x5c, 0x12, 0x80,
0x38, 0x5c, 0x12, 0x80, 0x3c, 0x5c, 0x12, 0x80, 0x08, 0x02, 0x12, 0x80,
0xac, 0x01, 0x12, 0x80, 0x60, 0x01, 0x12, 0x80, 0x6d, 0xc3, 0x00, 0x80,
0xf8, 0x63, 0x0f, 0x62, 0x0e, 0xd1, 0x0d, 0xd0, 0x03, 0x6a, 0x04, 0xd2,
0x3a, 0xb2, 0x05, 0xd2, 0x43, 0xa4, 0x64, 0x67, 0xfc, 0x6d, 0x06, 0xd2,
0x44, 0xa4, 0xe0, 0xf2, 0x12, 0x6e, 0x06, 0xf2, 0x1c, 0x6f, 0x07, 0xd2,
0x45, 0xa4, 0x0a, 0xd3, 0x08, 0xd2, 0x34, 0xb2, 0x40, 0xea, 0x04, 0x6c,
0x0a, 0x93, 0x33, 0xb1, 0x33, 0xb0, 0x43, 0xa3, 0x1a, 0x2a, 0x5e, 0x6c,
0x40, 0xe9, 0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x6b, 0x30, 0xf0, 0x01, 0x6e,
0x6c, 0xea, 0xcb, 0xee, 0x4c, 0xee, 0x5e, 0x6c, 0x01, 0x6d, 0x40, 0xe8,
0x0a, 0xd3, 0x57, 0x6c, 0x40, 0xe9, 0x01, 0x6d, 0x0a, 0x93, 0x02, 0xf1,
0x01, 0x6e, 0xcb, 0xee, 0x6c, 0xea, 0x57, 0x6c, 0x01, 0x6d, 0x4c, 0xee,
0x3c, 0x10, 0xe5, 0xa3, 0xc4, 0xa3, 0x3f, 0x6c, 0x00, 0x6d, 0x40, 0xe8,
0x0a, 0xd7, 0x02, 0x6c, 0x40, 0xe9, 0x00, 0x6d, 0x0a, 0x97, 0xff, 0xf7,
0x1f, 0x6b, 0x6c, 0xea, 0x1f, 0xf7, 0x01, 0x6b, 0x6b, 0xeb, 0xe0, 0x36,
0x6c, 0xea, 0x4d, 0xee, 0x02, 0x6c, 0x40, 0xe8, 0x00, 0x6d, 0x5e, 0x6c,
0x40, 0xe9, 0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0xc2, 0x67,
0x30, 0xf0, 0x01, 0x4b, 0x6d, 0xee, 0x5e, 0x6c, 0x40, 0xe8, 0x01, 0x6d,
0x57, 0x6c, 0x40, 0xe9, 0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea,
0xc2, 0x67, 0x02, 0xf1, 0x01, 0x6b, 0x6d, 0xee, 0x57, 0x6c, 0x40, 0xe8,
0x01, 0x6d, 0x57, 0x6c, 0x40, 0xe9, 0x01, 0x6d, 0xff, 0xf7, 0x1f, 0x6b,
0x6c, 0xea, 0x02, 0x6b, 0x6b, 0xeb, 0xc2, 0x67, 0x57, 0x6c, 0x01, 0x6d,
0x6c, 0xee, 0x40, 0xe8, 0x00, 0x65, 0x0f, 0x97, 0x0e, 0x91, 0x0d, 0x90,
0x00, 0xef, 0x08, 0x63, 0x14, 0x5b, 0x10, 0x80, 0xc9, 0x59, 0x01, 0x80,
0x0d, 0x8c, 0x00, 0x80, 0xb1, 0x8d, 0x00, 0x80, 0xfc, 0x63, 0x07, 0x62,
0x06, 0xd1, 0x05, 0xd0, 0x27, 0xb2, 0x40, 0x9a, 0x27, 0xb0, 0x40, 0xea,
0x00, 0x65, 0x40, 0xa8, 0xff, 0xf7, 0x1f, 0x72, 0x1b, 0x60, 0x25, 0xb2,
0x40, 0x9a, 0x03, 0x6c, 0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0xa8,
0x00, 0xf2, 0x00, 0x6f, 0xeb, 0xef, 0x4c, 0xef, 0xe0, 0xf1, 0x1f, 0x6a,
0x6c, 0xea, 0x4d, 0xef, 0x1e, 0xb2, 0x60, 0x9a, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xef, 0x03, 0x6c, 0x5f, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x01, 0x6a,
0x4b, 0xea, 0x40, 0xc8, 0x17, 0xb0, 0x40, 0x98, 0x17, 0xb1, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xfd, 0xf7, 0x1f, 0x6f,
0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xff, 0xf6,
0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x0b, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x00, 0x6c, 0xa4, 0x67, 0x0a, 0xb2,
0x40, 0xea, 0xc4, 0x67, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xef,
0x04, 0x63, 0x00, 0x65, 0x44, 0x5d, 0x12, 0x80, 0x3a, 0x5c, 0x12, 0x80,
0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xc1, 0x44, 0x10, 0x80,
0xb1, 0x8d, 0x00, 0x80, 0xfb, 0x63, 0x09, 0x62, 0x08, 0xd1, 0x07, 0xd0,
0x3e, 0xb2, 0x04, 0x67, 0x40, 0x9a, 0xff, 0x6b, 0x6c, 0xe8, 0xac, 0xeb,
0x40, 0xea, 0x04, 0xd3, 0x90, 0x67, 0x3b, 0xb2, 0x3b, 0xb0, 0x40, 0xea,
0x00, 0x65, 0x40, 0x98, 0x03, 0x6c, 0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x38, 0xb4, 0x40, 0xcc, 0x40, 0x98, 0x38, 0xb1, 0x03, 0x6c, 0x5f, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x80, 0x99, 0x1f, 0xf6, 0x00, 0x6f, 0x4c, 0xef,
0x0c, 0x65, 0x48, 0x67, 0x03, 0x6c, 0x5f, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x04, 0x93, 0x7f, 0x6e, 0x3f, 0x6c, 0x6c, 0xee, 0x2f, 0xb3, 0x04, 0xd3,
0x40, 0xeb, 0x00, 0x6d, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x80, 0x99, 0xff, 0x6f, 0x01, 0x4f, 0x0c, 0x65, 0x4d, 0xef,
0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x48, 0x67, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x80, 0x99, 0x02, 0xf0, 0x00, 0x6f, 0x4d, 0xef, 0x0c, 0x65,
0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x48, 0x67, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x80, 0x99, 0x01, 0x6f, 0x4d, 0xef, 0x0c, 0x65, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x48, 0x67, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x00, 0x99, 0xff, 0xf7, 0x1f, 0x6c, 0x8c, 0xea, 0xff, 0xf7, 0x1e, 0x6f,
0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xe8, 0x01, 0x6e, 0x04, 0x93,
0x00, 0x6c, 0x04, 0xf0, 0x00, 0x6e, 0x40, 0xeb, 0xa4, 0x67, 0x09, 0x97,
0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63, 0x48, 0x5d, 0x12, 0x80,
0x51, 0x44, 0x10, 0x80, 0x48, 0x00, 0x12, 0x80, 0x3a, 0x5c, 0x12, 0x80,
0x4c, 0x00, 0x12, 0x80, 0xb1, 0x8d, 0x00, 0x80, 0xfc, 0x63, 0x07, 0x62,
0x06, 0xd1, 0x05, 0xd0, 0x5d, 0x67, 0x20, 0xf0, 0xa4, 0xc2, 0x20, 0xf0,
0x44, 0xa2, 0xff, 0x68, 0x8c, 0xe8, 0xff, 0x72, 0x10, 0xb1, 0x09, 0x61,
0x01, 0x6b, 0x10, 0xb2, 0x6b, 0xeb, 0x68, 0xc2, 0x02, 0x6b, 0x6c, 0xc2,
0x0e, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x60, 0xa1, 0x69, 0xe2, 0x7d, 0x67,
0x20, 0xf0, 0x44, 0xc3, 0x0b, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x09, 0x04,
0x5d, 0x67, 0x20, 0xf0, 0x84, 0xa2, 0x7f, 0x6d, 0x08, 0xb2, 0x40, 0xea,
0x0c, 0xed, 0x07, 0x97, 0x06, 0x91, 0x05, 0x90, 0x00, 0xef, 0x04, 0x63,
0x34, 0x5c, 0x12, 0x80, 0x18, 0x5c, 0x12, 0x80, 0x19, 0x44, 0x10, 0x80,
0x8c, 0x01, 0x12, 0x80, 0x55, 0x4c, 0x10, 0x80, 0xfb, 0x63, 0x09, 0x62,
0x08, 0xd1, 0x07, 0xd0, 0x35, 0xb2, 0x40, 0x9a, 0x35, 0xb0, 0x36, 0xb1,
0x40, 0xea, 0x00, 0x65, 0x40, 0x98, 0x70, 0x6f, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x40, 0x99, 0x00, 0x6c, 0x5c, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x98, 0xff, 0xf7, 0x1c, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x5c, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x99, 0x00, 0x6c, 0x5a, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x60, 0x98, 0xff, 0xf4, 0x1f, 0x6f, 0x4c, 0xef,
0x00, 0x6c, 0x5a, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x25, 0xb3, 0x40, 0xa3,
0xff, 0x72, 0x1a, 0x60, 0x40, 0x99, 0x00, 0x6c, 0x4b, 0x6d, 0x01, 0x6e,
0x40, 0xea, 0x04, 0xd3, 0x04, 0x93, 0x3f, 0x6f, 0xeb, 0xef, 0x80, 0xa3,
0x4c, 0xef, 0x3e, 0x6a, 0x8c, 0xea, 0x00, 0x98, 0x4d, 0xef, 0xff, 0xf7,
0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x4b, 0x6d, 0x40, 0xe8, 0x01, 0x6e,
0x04, 0x93, 0x01, 0x6a, 0x4b, 0xea, 0x40, 0xc3, 0x15, 0xb0, 0x40, 0x98,
0x13, 0xb1, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99,
0xcf, 0xf2, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x00, 0x6c, 0xa4, 0x67, 0x0f, 0xb2, 0x40, 0xea, 0xc4, 0x67,
0x40, 0x98, 0x01, 0x6c, 0xc4, 0x67, 0x40, 0xea, 0x60, 0x6d, 0x60, 0x99,
0x01, 0x6c, 0xff, 0xf3, 0x1f, 0x6f, 0x4c, 0xef, 0x60, 0x6d, 0x40, 0xeb,
0xc4, 0x67, 0x09, 0x97, 0x08, 0x91, 0x07, 0x90, 0x00, 0xef, 0x05, 0x63,
0x44, 0x5d, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0x48, 0x00, 0x12, 0x80,
0x39, 0x5c, 0x12, 0x80, 0xb1, 0x8d, 0x00, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0xd9, 0x4d, 0x10, 0x80,
0xc1, 0x44, 0x10, 0x80, 0xdc, 0x63, 0x47, 0x62, 0x04, 0xf0, 0x1f, 0x6a,
0x7d, 0x67, 0x48, 0xcb, 0x00, 0x6a, 0x52, 0xc3, 0x07, 0xb2, 0x40, 0xea,
0x04, 0x04, 0x07, 0xb2, 0x40, 0x9a, 0x03, 0x6c, 0x6e, 0x6d, 0x01, 0x6e,
0x40, 0xea, 0x00, 0x6f, 0x47, 0x97, 0x00, 0xef, 0x24, 0x63, 0x00, 0x65,
0x05, 0x6a, 0x01, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x0b, 0xb2, 0x43, 0x9a, 0x01, 0x4a, 0x04, 0x22, 0x0a, 0xb4, 0x0b, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x07, 0xb2, 0x42, 0x9a, 0x01, 0x4a, 0x04, 0x22,
0x08, 0xb4, 0x07, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x07, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x04, 0x5c, 0x12, 0x80,
0x10, 0x5c, 0x12, 0x80, 0x75, 0x0c, 0x01, 0x80, 0x0c, 0x5c, 0x12, 0x80,
0xe9, 0x4e, 0x10, 0x80, 0xfa, 0x63, 0x0b, 0x62, 0x0a, 0xd0, 0x40, 0xac,
0xa4, 0x67, 0xff, 0xf4, 0x08, 0x72, 0x3c, 0x60, 0xff, 0xf4, 0x09, 0x6b,
0x63, 0xea, 0x0a, 0x60, 0x7f, 0xf4, 0x18, 0x72, 0xe0, 0xf0, 0x1c, 0x60,
0xff, 0xf4, 0x07, 0x72, 0x18, 0x60, 0x7f, 0xf4, 0x10, 0x72, 0x10, 0x10,
0xff, 0xf4, 0x16, 0x72, 0x10, 0x60, 0xff, 0xf4, 0x17, 0x6b, 0x63, 0xea,
0x04, 0x60, 0xff, 0xf4, 0x0d, 0x72, 0x4a, 0x60, 0xfc, 0x10, 0x1f, 0xf5,
0x14, 0x72, 0x4c, 0x60, 0x5f, 0xf5, 0x05, 0x72, 0xa0, 0xf0, 0x06, 0x60,
0xf4, 0x10, 0x7d, 0xb2, 0x24, 0x10, 0x42, 0xa4, 0xe0, 0xf0, 0x0f, 0x22,
0x46, 0xa4, 0xff, 0x72, 0x03, 0x60, 0x7a, 0xb3, 0x80, 0xf1, 0x5f, 0xc3,
0x47, 0xa5, 0xff, 0x72, 0x03, 0x60, 0x77, 0xb3, 0xa0, 0xf1, 0x40, 0xc3,
0x80, 0x6b, 0x6b, 0xeb, 0x75, 0xb2, 0x6f, 0xc2, 0x73, 0xb2, 0xc0, 0xf1,
0x7a, 0xa2, 0x74, 0xb2, 0x0a, 0x23, 0x15, 0x10, 0x43, 0xa4, 0xc0, 0xf0,
0x16, 0x2a, 0x44, 0xa4, 0x09, 0x2a, 0x6e, 0xb3, 0xc0, 0xf1, 0x5a, 0xc3,
0x6e, 0xb2, 0x40, 0x9a, 0x00, 0x6c, 0x40, 0xea, 0x00, 0x65, 0xcb, 0x10,
0x01, 0x72, 0x0d, 0x61, 0x68, 0xb2, 0x01, 0x6b, 0xc0, 0xf1, 0x7a, 0xc2,
0x68, 0xb2, 0x00, 0x9a, 0x68, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x00, 0x65,
0x40, 0xe8, 0x82, 0x67, 0xbc, 0x10, 0x02, 0x72, 0xa0, 0xf0, 0x19, 0x61,
0x61, 0xb3, 0x99, 0xa3, 0x02, 0x6a, 0x8d, 0xea, 0x59, 0xc3, 0xb3, 0x10,
0xff, 0x6e, 0x61, 0xb4, 0x61, 0xb2, 0x40, 0xea, 0x03, 0x4e, 0xad, 0x10,
0x43, 0xa4, 0x01, 0x72, 0x0c, 0x61, 0x84, 0xa4, 0x5e, 0xb2, 0x02, 0x6b,
0x80, 0xc2, 0x57, 0xb2, 0x80, 0xf1, 0xb4, 0xa2, 0xad, 0xeb, 0x80, 0xf1,
0x74, 0xc2, 0x5b, 0xb3, 0x28, 0x10, 0x02, 0x72, 0x19, 0x61, 0x85, 0xa4,
0x44, 0xa5, 0x04, 0x6b, 0x80, 0x34, 0x4d, 0xec, 0x57, 0xb2, 0x80, 0xca,
0x4e, 0xb2, 0x80, 0xf1, 0xb4, 0xa2, 0x80, 0xf1, 0x96, 0xc2, 0xad, 0xeb,
0x80, 0xf1, 0x74, 0xc2, 0x82, 0x33, 0x80, 0xf1, 0x77, 0xc2, 0x52, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x80, 0x6b, 0x6b, 0xeb, 0x47, 0xb2, 0x19, 0x10,
0x03, 0x72, 0x1c, 0x61, 0x84, 0xa4, 0x4b, 0xb2, 0x02, 0x6b, 0x80, 0xc2,
0x42, 0xb2, 0x80, 0xf1, 0xb4, 0xa2, 0xad, 0xeb, 0x80, 0xf1, 0x74, 0xc2,
0x45, 0xb3, 0x60, 0xa3, 0x6d, 0xe4, 0x00, 0xf6, 0x60, 0x33, 0x00, 0xf6,
0x63, 0x33, 0x80, 0xf1, 0x75, 0xc2, 0x3c, 0xb2, 0x61, 0xc2, 0x80, 0x6b,
0x6b, 0xeb, 0x6f, 0xc2, 0x3a, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x00, 0x6c,
0x03, 0x6a, 0x04, 0xd2, 0x3f, 0xb2, 0x05, 0xd2, 0x3a, 0xb2, 0x40, 0x82,
0x01, 0x6c, 0x06, 0xd2, 0x3a, 0xb2, 0x40, 0xaa, 0xe0, 0xf3, 0x03, 0x6e,
0x06, 0xf2, 0x1d, 0x6f, 0x07, 0xd2, 0x36, 0xb2, 0x40, 0x82, 0x08, 0xd2,
0x38, 0xb2, 0x40, 0xea, 0xfc, 0x6d, 0x4f, 0x10, 0x43, 0xa5, 0x4d, 0x22,
0x64, 0xa5, 0x01, 0x6a, 0x4e, 0xeb, 0x36, 0x2b, 0x34, 0xb2, 0x64, 0xc2,
0x28, 0x6b, 0x65, 0xc2, 0x62, 0xa5, 0x03, 0x5b, 0x0b, 0x61, 0x86, 0xa5,
0x65, 0xa5, 0x28, 0x5c, 0x3c, 0x60, 0x77, 0xe4, 0x01, 0x55, 0x39, 0x61,
0x01, 0x4c, 0x64, 0xc2, 0x6f, 0xe4, 0x65, 0xc2, 0x2c, 0xb2, 0xff, 0xf7,
0x1f, 0x6b, 0xff, 0x6c, 0xa0, 0xaa, 0x08, 0xf0, 0x00, 0x6a, 0x7b, 0x4c,
0x6c, 0xed, 0x4d, 0xed, 0x28, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x6c, 0xed,
0x24, 0xb2, 0x42, 0x9a, 0x01, 0x4a, 0x04, 0x22, 0x25, 0xb4, 0x26, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x00, 0x6a, 0x04, 0xd2, 0xe2, 0x67, 0x22, 0xb5,
0x23, 0xb6, 0x24, 0xb2, 0x40, 0xea, 0x01, 0x6c, 0x1c, 0xb2, 0x82, 0x9a,
0x22, 0xb2, 0x40, 0xea, 0x64, 0x6d, 0x13, 0x10, 0x21, 0xb2, 0x0c, 0x10,
0x43, 0xa4, 0x01, 0x72, 0x20, 0xb2, 0x08, 0x61, 0x84, 0xa4, 0xff, 0x6a,
0x84, 0x34, 0x4c, 0xec, 0x1e, 0xb2, 0x40, 0xea, 0xa5, 0xa5, 0x05, 0x10,
0x40, 0xea, 0x00, 0x65, 0x02, 0x10, 0x12, 0x6a, 0x01, 0x10, 0x00, 0x6a,
0x0b, 0x97, 0x0a, 0x90, 0x00, 0xef, 0x06, 0x63, 0x95, 0x4a, 0x10, 0x80,
0x08, 0x02, 0x12, 0x80, 0xb8, 0x12, 0x12, 0x80, 0x94, 0x01, 0x12, 0x80,
0x9c, 0x01, 0x12, 0x80, 0x3c, 0x5c, 0x12, 0x80, 0x65, 0xf2, 0x00, 0x80,
0x34, 0x5c, 0x12, 0x80, 0x38, 0x5c, 0x12, 0x80, 0x36, 0x5c, 0x12, 0x80,
0xb1, 0x54, 0x10, 0x80, 0x14, 0x5b, 0x10, 0x80, 0xc9, 0x59, 0x01, 0x80,
0x04, 0x5c, 0x12, 0x80, 0x7a, 0x01, 0x00, 0xb6, 0x0c, 0x00, 0x12, 0x80,
0x0c, 0x5c, 0x12, 0x80, 0x75, 0x0c, 0x01, 0x80, 0x05, 0x52, 0x10, 0x80,
0xc9, 0x0c, 0x01, 0x80, 0x19, 0x0c, 0x01, 0x80, 0x1d, 0x4f, 0x10, 0x80,
0x99, 0x4b, 0x10, 0x80, 0x6d, 0x4d, 0x10, 0x80, 0xfc, 0x63, 0x07, 0x62,
0x0f, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0f, 0xb2, 0x68, 0xaa, 0x01, 0x4b,
0x68, 0xca, 0x43, 0x9a, 0x01, 0x4a, 0x04, 0x22, 0x0c, 0xb4, 0x0d, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x00, 0x6c, 0x0a, 0x6a, 0x04, 0xd2, 0x0b, 0xb6,
0x08, 0xb5, 0x0b, 0xb2, 0x40, 0xea, 0xe4, 0x67, 0x05, 0xb2, 0x83, 0x9a,
0x09, 0xb2, 0x40, 0xea, 0x0a, 0x6d, 0x07, 0x97, 0x00, 0xef, 0x04, 0x63,
0xe9, 0x4e, 0x10, 0x80, 0x04, 0x5c, 0x12, 0x80, 0x10, 0x5c, 0x12, 0x80,
0x75, 0x0c, 0x01, 0x80, 0x61, 0x52, 0x10, 0x80, 0xc9, 0x0c, 0x01, 0x80,
0x19, 0x0c, 0x01, 0x80, 0xdc, 0x63, 0x47, 0x62, 0x04, 0xf0, 0x1e, 0x6a,
0x7d, 0x67, 0x48, 0xcb, 0x03, 0x6a, 0x52, 0xc3, 0x18, 0xb2, 0x88, 0xaa,
0x65, 0xa2, 0x44, 0xa2, 0x7a, 0xec, 0x01, 0x2b, 0xe5, 0xe8, 0x10, 0xeb,
0x4d, 0xe3, 0x5d, 0x67, 0x73, 0xc2, 0x7d, 0x67, 0x25, 0x6a, 0x54, 0xc3,
0x02, 0x6a, 0x55, 0xc3, 0x11, 0xb2, 0x40, 0xea, 0x04, 0x04, 0x11, 0xb2,
0x40, 0x9a, 0x03, 0x6c, 0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x0f, 0xb3,
0xf0, 0xa3, 0x40, 0x6b, 0x03, 0x6c, 0xfc, 0x37, 0x6d, 0xef, 0xcf, 0xf7,
0x01, 0x6b, 0x6b, 0xeb, 0x4c, 0xeb, 0x0b, 0xb2, 0x40, 0x9a, 0x6d, 0xef,
0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xef, 0x6e, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0x47, 0x97, 0x00, 0xef, 0x24, 0x63, 0x00, 0x65, 0x04, 0x5c, 0x12, 0x80,
0xb5, 0x73, 0x01, 0x80, 0x48, 0x00, 0x12, 0x80, 0xb8, 0x12, 0x12, 0x80,
0x4c, 0x00, 0x12, 0x80, 0xfc, 0x63, 0x07, 0x62, 0x06, 0xd1, 0x05, 0xd0,
0x23, 0xb0, 0x40, 0x98, 0x23, 0xb1, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0xfe, 0xf1, 0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c,
0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d,
0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0x01, 0xf6, 0x00, 0x6f, 0x4d, 0xef,
0xff, 0xf7, 0x1f, 0x6a, 0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb,
0x01, 0x6e, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea, 0x01, 0x6e,
0xff, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0x60, 0x99, 0xff, 0xf7, 0x1d, 0x6f,
0x4c, 0xef, 0x57, 0x6d, 0x01, 0x6e, 0x40, 0xeb, 0x00, 0x6c, 0x0e, 0xb2,
0x40, 0xea, 0x32, 0x6c, 0x40, 0x98, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xea,
0x01, 0x6e, 0x60, 0x99, 0x02, 0x6f, 0x4d, 0xef, 0xff, 0xf7, 0x1f, 0x6a,
0x4c, 0xef, 0x00, 0x6c, 0x57, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x07, 0x97,
0x06, 0x91, 0x05, 0x90, 0x00, 0xef, 0x04, 0x63, 0x48, 0x00, 0x12, 0x80,
0x4c, 0x00, 0x12, 0x80, 0xd5, 0x56, 0x01, 0x80, 0xfc, 0x63, 0x07, 0x62,
0x06, 0xd1, 0x05, 0xd0, 0x25, 0xb0, 0x40, 0x98, 0x25, 0xb1, 0x00, 0x6c,
0x60, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xff, 0xf3, 0x1f, 0x6f,
0x4c, 0xef, 0x00, 0x6c, 0x60, 0x6d, 0x40, 0xeb, 0x01, 0x6e, 0x40, 0x98,
0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99, 0xef, 0xf7,
0x1f, 0x6f, 0x4c, 0xef, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xeb, 0x01, 0x6e,
0x40, 0x98, 0x00, 0x6c, 0x5e, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x60, 0x99,
0xdf, 0xf7, 0x1f, 0x6f, 0x4c, 0xef, 0x5e, 0x6d, 0x01, 0x6e, 0x40, 0xeb,
0x00, 0x6c, 0x00, 0x6a, 0x12, 0xb3, 0x01, 0x6c, 0x40, 0xdb, 0x41, 0xdb,
0x42, 0xdb, 0x43, 0xdb, 0x44, 0xdb, 0x8b, 0xec, 0x0f, 0xb3, 0x80, 0xc3,
0x01, 0x6b, 0x6b, 0xeb, 0x0e, 0xb4, 0x60, 0xcc, 0x0e, 0xb4, 0x60, 0xc4,
0x0e, 0xb3, 0x40, 0xc3, 0x0e, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x00, 0x65,
0x0d, 0xb3, 0x40, 0xc3, 0x0d, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x07, 0x97,
0x06, 0x91, 0x05, 0x90, 0x00, 0xef, 0x04, 0x63, 0x48, 0x00, 0x12, 0x80,
0x4c, 0x00, 0x12, 0x80, 0x04, 0x5c, 0x12, 0x80, 0x39, 0x5c, 0x12, 0x80,
0x3a, 0x5c, 0x12, 0x80, 0x3e, 0x5d, 0x12, 0x80, 0x3f, 0x5d, 0x12, 0x80,
0x7c, 0x01, 0x12, 0x80, 0x34, 0x5c, 0x12, 0x80, 0xc9, 0x4e, 0x10, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x04, 0xb2, 0x40, 0x9a, 0x04, 0xb4, 0x40, 0xea,
0x02, 0x6d, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x4c, 0x01, 0x12, 0x80,
0xec, 0x5b, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x04, 0xb2, 0x40, 0x9a,
0x04, 0xb4, 0x40, 0xea, 0x02, 0x6d, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63,
0x4c, 0x01, 0x12, 0x80, 0xe8, 0x5b, 0x10, 0x80, 0xff, 0xf7, 0x1f, 0x6a,
0x8c, 0xea, 0x00, 0x6b, 0x68, 0x34, 0xc2, 0x67, 0xc7, 0xec, 0x86, 0x67,
0x0f, 0x6e, 0xcc, 0xec, 0x8e, 0x37, 0x79, 0xe5, 0x03, 0x27, 0x10, 0x6f,
0xeb, 0xef, 0xee, 0xec, 0x80, 0xc6, 0x01, 0x4b, 0xff, 0x6c, 0x8c, 0xeb,
0x04, 0x5b, 0xee, 0x61, 0x20, 0xe8, 0x00, 0x65, 0xfc, 0x63, 0x07, 0x62,
0x06, 0xd0, 0xff, 0xf7, 0x1f, 0x6a, 0x8c, 0xea, 0x00, 0x6b, 0x68, 0x34,
0xa2, 0x67, 0xa7, 0xec, 0x85, 0x67, 0x0f, 0x6d, 0xac, 0xec, 0x8e, 0x35,
0x04, 0x06, 0x05, 0x25, 0x10, 0x6d, 0xab, 0xed, 0x79, 0xe6, 0xae, 0xec,
0x01, 0x10, 0x79, 0xe6, 0x80, 0xc6, 0x01, 0x4b, 0xff, 0x6e, 0xcc, 0xeb,
0x04, 0x5b, 0xeb, 0x61, 0x36, 0xb2, 0xa0, 0xa2, 0x01, 0x75, 0x1e, 0x61,
0x35, 0xb4, 0x79, 0xa4, 0x3e, 0x6f, 0x1d, 0x67, 0x6a, 0x32, 0xec, 0xea,
0xcc, 0xea, 0x03, 0x6e, 0x48, 0x37, 0xcc, 0xeb, 0xed, 0xeb, 0x79, 0xc4,
0xf0, 0x80, 0x03, 0x57, 0x0f, 0x60, 0xf1, 0x80, 0x03, 0x57, 0x0c, 0x60,
0xf2, 0x80, 0x03, 0x57, 0x09, 0x60, 0xf3, 0x80, 0x03, 0x57, 0x06, 0x60,
0x01, 0x6f, 0x4d, 0xef, 0xe8, 0x37, 0xcc, 0xeb, 0xed, 0xeb, 0x79, 0xc4,
0x00, 0x6a, 0x9d, 0x67, 0x4d, 0xe4, 0x01, 0x75, 0x70, 0x83, 0x0b, 0x61,
0x23, 0xb4, 0x99, 0xa4, 0x01, 0x6e, 0x8a, 0x34, 0xcc, 0xec, 0x05, 0x24,
0x02, 0x4b, 0x00, 0xf6, 0x60, 0x33, 0x00, 0xf6, 0x63, 0x33, 0x07, 0x73,
0x01, 0x61, 0x06, 0x6b, 0x01, 0x6c, 0x6c, 0xec, 0x04, 0x06, 0x03, 0x24,
0x59, 0xe6, 0x04, 0x6b, 0x02, 0x10, 0x59, 0xe6, 0x05, 0x6b, 0x64, 0xc6,
0x01, 0x4a, 0xff, 0x6b, 0x6c, 0xea, 0x04, 0x5a, 0xde, 0x61, 0x16, 0xb2,
0x40, 0x9a, 0x03, 0x6c, 0x59, 0x6d, 0x40, 0xea, 0x01, 0x6e, 0x02, 0xf0,
0x00, 0x6f, 0xbd, 0x67, 0xeb, 0xef, 0x4c, 0xef, 0x57, 0xa5, 0x76, 0xa5,
0x03, 0x6c, 0x40, 0x32, 0x78, 0x33, 0x44, 0x32, 0x6d, 0xea, 0x74, 0xa5,
0x01, 0x6e, 0x6d, 0xea, 0x75, 0xa5, 0x59, 0x6d, 0x6c, 0x33, 0x6d, 0xea,
0xe1, 0xf7, 0x1f, 0x6b, 0x6c, 0xea, 0x4d, 0xef, 0x08, 0xb2, 0x60, 0x9a,
0xff, 0xf7, 0x1f, 0x6a, 0x40, 0xeb, 0x4c, 0xef, 0x07, 0x97, 0x06, 0x90,
0x00, 0xef, 0x04, 0x63, 0x40, 0x5d, 0x12, 0x80, 0xb8, 0x12, 0x12, 0x80,
0x48, 0x00, 0x12, 0x80, 0x4c, 0x00, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x11, 0xb2, 0x80, 0xf1, 0x94, 0xa2, 0x04, 0x6b, 0x8c, 0xeb, 0x08, 0x23,
0x80, 0xf1, 0x97, 0xa2, 0x80, 0xf1, 0x76, 0xa2, 0x80, 0x34, 0x6d, 0xec,
0x01, 0x6b, 0x09, 0x10, 0x0b, 0xb5, 0x41, 0xa5, 0x01, 0x6b, 0xff, 0x6c,
0x6c, 0xea, 0x8c, 0xea, 0x00, 0x6c, 0x03, 0x22, 0x86, 0xad, 0x08, 0xb2,
0x60, 0xc2, 0x08, 0xb2, 0x80, 0xca, 0x08, 0xb2, 0x40, 0xea, 0x00, 0x65,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x08, 0x02, 0x12, 0x80,
0x08, 0x13, 0x12, 0x80, 0x40, 0x5d, 0x12, 0x80, 0x36, 0x5c, 0x12, 0x80,
0xb1, 0x54, 0x10, 0x80, 0x0a, 0x6a, 0x5a, 0xed, 0x01, 0x2a, 0xe5, 0xe8,
0x64, 0x6a, 0x12, 0xeb, 0x58, 0xec, 0x04, 0xf7, 0x10, 0x6c, 0x12, 0xea,
0x3e, 0xf6, 0x1c, 0x4a, 0x58, 0xeb, 0x12, 0xeb, 0x9a, 0xeb, 0x01, 0x2c,
0xe5, 0xe8, 0x04, 0xb3, 0xc0, 0xf1, 0xbc, 0xa3, 0x12, 0xea, 0x20, 0xe8,
0xa9, 0xe2, 0x00, 0x65, 0x08, 0x02, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x04, 0xd0, 0x23, 0xb0, 0x23, 0xb2, 0xc0, 0xf1, 0x9c, 0xa0, 0x40, 0x9a,
0x40, 0xea, 0x00, 0x65, 0x80, 0xf1, 0x74, 0xa0, 0x02, 0x6c, 0x6c, 0xec,
0x04, 0x24, 0xa0, 0xf1, 0x63, 0xa0, 0xff, 0x73, 0x07, 0x61, 0x1b, 0xb3,
0xc0, 0xf1, 0x7c, 0xa3, 0xff, 0xf7, 0x1f, 0x6c, 0x68, 0x33, 0x8c, 0xeb,
0x19, 0xb4, 0x88, 0xa4, 0x98, 0xea, 0x12, 0xec, 0x58, 0xeb, 0x04, 0xf7,
0x10, 0x6b, 0x12, 0xea, 0x4a, 0x32, 0x4b, 0xe4, 0x40, 0x32, 0x40, 0x32,
0x43, 0x32, 0x43, 0x32, 0xc0, 0xf4, 0x18, 0x6c, 0x98, 0xea, 0x12, 0xea,
0x3a, 0xf5, 0x09, 0x4a, 0x7a, 0xea, 0x01, 0x2b, 0xe5, 0xe8, 0x12, 0xea,
0x40, 0x32, 0x40, 0x32, 0x43, 0x32, 0x43, 0x32, 0x00, 0x52, 0x02, 0x61,
0x32, 0x4a, 0x01, 0x10, 0xce, 0x4a, 0x64, 0x6b, 0x7a, 0xea, 0x01, 0x2b,
0xe5, 0xe8, 0x05, 0x97, 0x04, 0x90, 0x12, 0xea, 0x00, 0xf6, 0x40, 0x32,
0x00, 0xf6, 0x43, 0x32, 0x00, 0xef, 0x03, 0x63, 0x08, 0x02, 0x12, 0x80,
0x68, 0x01, 0x12, 0x80, 0xf4, 0x12, 0x12, 0x80, 0x0b, 0xb3, 0x80, 0xf1,
0x94, 0xa3, 0x02, 0x6a, 0x8c, 0xea, 0x04, 0x22, 0x80, 0xf1, 0x55, 0x83,
0x20, 0xe8, 0x00, 0x65, 0x07, 0xb4, 0x40, 0xa4, 0x40, 0x6b, 0x4c, 0xeb,
0xff, 0x6a, 0x4c, 0xeb, 0x00, 0x6a, 0x01, 0x23, 0x4b, 0x84, 0x20, 0xe8,
0x00, 0x65, 0x00, 0x65, 0x08, 0x02, 0x12, 0x80, 0x08, 0x13, 0x12, 0x80,
0x0b, 0xb3, 0xab, 0xa3, 0x4c, 0xa3, 0x79, 0xa3, 0x01, 0x6e, 0x6a, 0x33,
0xcc, 0xeb, 0x03, 0x23, 0x60, 0xa4, 0xfe, 0x4b, 0x60, 0xc4, 0x60, 0xa4,
0x63, 0xed, 0x02, 0x60, 0x20, 0xe8, 0xa0, 0xc4, 0x43, 0xeb, 0x01, 0x60,
0x40, 0xc4, 0x20, 0xe8, 0x00, 0x65, 0x00, 0x65, 0xb8, 0x12, 0x12, 0x80,
0x13, 0xb3, 0x14, 0xb2, 0x60, 0xda, 0x14, 0xb3, 0x14, 0xb2, 0x60, 0xda,
0x14, 0xb3, 0x15, 0xb2, 0x60, 0xda, 0x15, 0xb3, 0x15, 0xb2, 0x60, 0xda,
0x15, 0xb3, 0x16, 0xb2, 0x60, 0xda, 0x16, 0xb3, 0x16, 0xb2, 0x60, 0xda,
0x16, 0xb3, 0x17, 0xb2, 0x60, 0xda, 0x17, 0xb3, 0x17, 0xb2, 0x60, 0xda,
0x17, 0xb3, 0x18, 0xb2, 0x60, 0xda, 0x18, 0xb3, 0x18, 0xb2, 0x60, 0xda,
0x18, 0xb3, 0x19, 0xb2, 0x60, 0xda, 0x19, 0xb3, 0x19, 0xb2, 0x20, 0xe8,
0x60, 0xda, 0x00, 0x65, 0xd1, 0x5a, 0x10, 0x80, 0x58, 0x01, 0x12, 0x80,
0xf5, 0x5a, 0x10, 0x80, 0x44, 0x01, 0x12, 0x80, 0x81, 0x5a, 0x10, 0x80,
0x48, 0x01, 0x12, 0x80, 0x51, 0x59, 0x10, 0x80, 0x94, 0x01, 0x12, 0x80,
0x61, 0x56, 0x10, 0x80, 0x9c, 0x01, 0x12, 0x80, 0xfd, 0x56, 0x10, 0x80,
0x7c, 0x01, 0x12, 0x80, 0x79, 0x58, 0x10, 0x80, 0x88, 0x01, 0x12, 0x80,
0x5d, 0x58, 0x10, 0x80, 0xb0, 0x01, 0x12, 0x80, 0x2d, 0x58, 0x10, 0x80,
0x80, 0x01, 0x12, 0x80, 0x31, 0x57, 0x10, 0x80, 0x8c, 0x01, 0x12, 0x80,
0x49, 0x54, 0x10, 0x80, 0x44, 0x5d, 0x12, 0x80, 0x65, 0x54, 0x10, 0x80,
0x48, 0x5d, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x05, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x01, 0x6b, 0x04, 0xb2, 0x60, 0xc2, 0x05, 0x97, 0x00, 0xef,
0x03, 0x63, 0x00, 0x65, 0xe1, 0xc2, 0x00, 0x80, 0x00, 0x5c, 0x12, 0x80,
0xfd, 0x63, 0x05, 0x62, 0x09, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x09, 0xb2,
0x62, 0xa2, 0xff, 0x73, 0x02, 0x61, 0x23, 0x6b, 0x62, 0xc2, 0x06, 0xb2,
0x63, 0xa2, 0xff, 0x73, 0x02, 0x61, 0x23, 0x6b, 0x62, 0xc2, 0x05, 0x97,
0x00, 0xef, 0x03, 0x63, 0x81, 0xc4, 0x00, 0x80, 0xb8, 0x12, 0x12, 0x80,
0xfd, 0x63, 0x05, 0x62, 0xff, 0x6a, 0x4c, 0xec, 0x4c, 0xed, 0x04, 0xb2,
0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65,
0x21, 0xc7, 0x00, 0x80, 0xf7, 0x63, 0x11, 0x62, 0x10, 0xd1, 0x0f, 0xd0,
0x00, 0xf6, 0x80, 0x34, 0x00, 0xf6, 0x83, 0x34, 0x2e, 0xb0, 0x2f, 0xb1,
0x0c, 0xd4, 0x0c, 0x97, 0x82, 0xa0, 0x40, 0x99, 0x00, 0x6d, 0x40, 0xea,
0xc5, 0x67, 0x50, 0xc0, 0x84, 0xa0, 0x0c, 0x97, 0x40, 0x99, 0x00, 0x6d,
0x40, 0xea, 0xc5, 0x67, 0x52, 0xc0, 0x85, 0xa0, 0x0c, 0x97, 0x40, 0x99,
0x00, 0x6d, 0x40, 0xea, 0xc5, 0x67, 0x53, 0xc0, 0x83, 0xa0, 0x0c, 0x97,
0x40, 0x99, 0x00, 0x6d, 0x40, 0xea, 0xc5, 0x67, 0x51, 0xc0, 0x86, 0xa0,
0x0c, 0x97, 0x40, 0x99, 0x00, 0x6d, 0x40, 0xea, 0xc5, 0x67, 0x54, 0xc0,
0x87, 0xa0, 0x0c, 0x97, 0x40, 0x99, 0x00, 0x6d, 0x40, 0xea, 0xc5, 0x67,
0x55, 0xc0, 0x88, 0xa0, 0x0c, 0x97, 0x40, 0x99, 0x00, 0x6d, 0x40, 0xea,
0xc5, 0x67, 0x56, 0xc0, 0x89, 0xa0, 0x40, 0x99, 0x0c, 0x97, 0x00, 0x6d,
0x40, 0xea, 0xc5, 0x67, 0x79, 0xa0, 0x57, 0xc0, 0x02, 0x6a, 0x6c, 0xea,
0x18, 0x22, 0x06, 0x6a, 0x04, 0xd2, 0x10, 0xb2, 0x05, 0xd2, 0x50, 0xa0,
0x04, 0x6c, 0x06, 0xd2, 0x51, 0xa0, 0xc0, 0xf2, 0x1c, 0x6e, 0x29, 0xf6,
0x13, 0x6f, 0x07, 0xd2, 0x52, 0xa0, 0x08, 0xd2, 0x53, 0xa0, 0x09, 0xd2,
0x54, 0xa0, 0x0a, 0xd2, 0x55, 0xa0, 0x0b, 0xd2, 0x07, 0xb2, 0x40, 0xea,
0xfd, 0x6d, 0x11, 0x97, 0x10, 0x91, 0x0f, 0x90, 0x00, 0xef, 0x09, 0x63,
0xb8, 0x12, 0x12, 0x80, 0x84, 0x01, 0x12, 0x80, 0x14, 0x5b, 0x10, 0x80,
0xc9, 0x59, 0x01, 0x80, 0xf7, 0x63, 0x11, 0x62, 0x10, 0xd1, 0x0f, 0xd0,
0x00, 0xf6, 0x80, 0x31, 0x38, 0xb4, 0x79, 0xa4, 0x02, 0x6a, 0x00, 0xf6,
0x23, 0x31, 0x6c, 0xea, 0x1f, 0x22, 0x36, 0xb2, 0x08, 0xa2, 0x36, 0xb2,
0xc0, 0xf1, 0x7c, 0xa2, 0xa1, 0x84, 0x35, 0xb2, 0x40, 0x9a, 0x02, 0x6c,
0x0d, 0xd3, 0x40, 0xea, 0x0c, 0xd5, 0x0c, 0x95, 0x0d, 0x93, 0x05, 0x6c,
0x04, 0xd4, 0x31, 0xb4, 0x05, 0xd4, 0x09, 0xd5, 0x0a, 0xd2, 0x06, 0xd0,
0x07, 0xd3, 0x08, 0xd1, 0x01, 0x6c, 0x20, 0xf2, 0x03, 0x6e, 0x29, 0xf6,
0x12, 0x6f, 0x2c, 0xb2, 0x40, 0xea, 0xfd, 0x6d, 0x25, 0xb0, 0x4f, 0x80,
0x2e, 0xea, 0x40, 0x22, 0x29, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x2f, 0xc0,
0x28, 0xb2, 0x40, 0x9a, 0x40, 0xea, 0x91, 0x67, 0x27, 0xb2, 0x40, 0x9a,
0x40, 0xea, 0x00, 0x65, 0x51, 0xa0, 0x70, 0xa0, 0x40, 0x32, 0x6d, 0xea,
0x24, 0xb3, 0x40, 0xcb, 0x47, 0xa0, 0x66, 0xa0, 0x40, 0x32, 0x6d, 0xea,
0x22, 0xb3, 0x40, 0xcb, 0x45, 0xa0, 0x64, 0xa0, 0x40, 0x32, 0x6d, 0xea,
0x20, 0xb3, 0x40, 0xcb, 0x20, 0xb2, 0x40, 0xf1, 0x08, 0x9a, 0x0f, 0x10,
0x63, 0xa0, 0x01, 0x6a, 0x6c, 0xea, 0x09, 0x22, 0x1d, 0xb2, 0x40, 0x9a,
0x40, 0xea, 0x82, 0xa0, 0x1c, 0xb3, 0x60, 0x9b, 0x82, 0xa0, 0x40, 0xeb,
0xa2, 0x67, 0x40, 0xf1, 0x10, 0x48, 0x1a, 0xb2, 0x60, 0x9a, 0x1a, 0xb2,
0x40, 0x9a, 0x49, 0xe3, 0xff, 0x6b, 0x51, 0x4b, 0x78, 0xea, 0x13, 0xb3,
0x40, 0xf1, 0x68, 0x9b, 0x12, 0xea, 0x49, 0xe3, 0x43, 0xe8, 0xe2, 0x61,
0x11, 0x97, 0x10, 0x91, 0x0f, 0x90, 0x00, 0xef, 0x09, 0x63, 0x00, 0x65,
0xb8, 0x12, 0x12, 0x80, 0xf4, 0x12, 0x12, 0x80, 0x08, 0x02, 0x12, 0x80,
0x40, 0x00, 0x12, 0x80, 0x14, 0x5b, 0x10, 0x80, 0xc9, 0x59, 0x01, 0x80,
0x80, 0x01, 0x12, 0x80, 0x88, 0x01, 0x12, 0x80, 0x90, 0x01, 0x12, 0x80,
0xe8, 0x10, 0x00, 0xb6, 0xea, 0x10, 0x00, 0xb6, 0xf0, 0x10, 0x00, 0xb6,
0xbc, 0x35, 0x12, 0x80, 0xa4, 0x01, 0x12, 0x80, 0xb0, 0x01, 0x12, 0x80,
0x80, 0x05, 0x12, 0x80, 0x7c, 0x05, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62,
0x0d, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x0d, 0xb2, 0x0d, 0x6b, 0x65, 0xca,
0x81, 0xf4, 0x1c, 0x6b, 0x66, 0xca, 0x1a, 0x6b, 0x0a, 0xb2, 0xe0, 0xf1,
0x63, 0xc2, 0x0a, 0xb2, 0x0a, 0xb3, 0x60, 0xda, 0x50, 0x6b, 0x62, 0xca,
0x09, 0xb3, 0x66, 0xda, 0x18, 0x6b, 0x6e, 0xca, 0x05, 0x97, 0x00, 0xef,
0x03, 0x63, 0x00, 0x65, 0xe9, 0xc9, 0x00, 0x80, 0xf4, 0x12, 0x12, 0x80,
0x08, 0x02, 0x12, 0x80, 0xd4, 0x12, 0x12, 0x80, 0xf0, 0x5b, 0x10, 0x80,
0xb8, 0x5b, 0x10, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x06, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x6c, 0x6b, 0x6b, 0xeb, 0x05, 0xb2, 0x20, 0xf1, 0x71, 0xc2,
0x05, 0x97, 0x00, 0xef, 0x03, 0x63, 0x00, 0x65, 0x45, 0xc2, 0x00, 0x80,
0x08, 0x02, 0x12, 0x80, 0xfd, 0x63, 0x05, 0x62, 0x05, 0xb2, 0x40, 0xea,
0x00, 0x65, 0x05, 0xb2, 0x40, 0xea, 0x00, 0x65, 0x05, 0x97, 0x00, 0xef,
0x03, 0x63, 0x00, 0x65, 0xc1, 0xc2, 0x00, 0x80, 0xd1, 0x55, 0x10, 0x80,
0x41, 0x00, 0x00, 0x00, 0x01, 0x00, 0xd8, 0x00, 0xd8, 0x00, 0x00, 0x00,
0x20, 0x38, 0x03, 0x00, 0x63, 0x27, 0x00, 0x00, 0x01, 0x00, 0xb8, 0x05,
0xb8, 0x05, 0x00, 0x00, 0x58, 0x98, 0x03, 0x00, 0xf4, 0xc5, 0x00, 0x00,
0x01, 0x00, 0x98, 0x0a, 0x98, 0x0a, 0x00, 0x00, 0x78, 0xa0, 0x00, 0x00,
0x72, 0xc8, 0x00, 0x00, 0x02, 0x00, 0xb0, 0x01, 0xb0, 0x01, 0x00, 0x00,
0x20, 0x38, 0x03, 0x00, 0x54, 0x5b, 0x00, 0x00, 0x02, 0x00, 0x78, 0x0b,
0x78, 0x0b, 0x00, 0x00, 0x50, 0xc0, 0x00, 0x00, 0x36, 0xe5, 0x00, 0x00,
0x02, 0x00, 0x38, 0x15, 0x38, 0x15, 0x00, 0x00, 0x70, 0xf8, 0x03, 0x00,
0xd3, 0xe9, 0x00, 0x00, 0x03, 0x00, 0x98, 0x02, 0x98, 0x02, 0x00, 0x00,
0x40, 0x5c, 0x01, 0x00, 0xc3, 0xbe, 0x00, 0x00, 0x03, 0x00, 0x40, 0x11,
0x40, 0x11, 0x00, 0x00, 0x58, 0x98, 0x03, 0x00, 0x4e, 0x62, 0x00, 0x00,
0x03, 0x00, 0xe8, 0x1f, 0xe8, 0x1f, 0x00, 0x00, 0x78, 0xa0, 0x00, 0x00,
0xe1, 0x64, 0x00, 0x00, 0x01, 0x00, 0xf8, 0x00, 0xf8, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x4f, 0x1d, 0x7c, 0x00, 0x00, 0xf0, 0x20, 0x00,
0x00, 0x90, 0x4f, 0x03, 0x00, 0xf0, 0x20, 0x00, 0x00, 0x90, 0x6f, 0x03,
0x00, 0xf0, 0x08, 0x00, 0x02, 0x90, 0x17, 0xf8, 0x34, 0x00, 0x03, 0x10,
0x36, 0x00, 0x00, 0xe2, 0x38, 0x00, 0x01, 0x31, 0x3a, 0x00, 0xe0, 0x05,
0x64, 0x00, 0x40, 0x2e, 0x1a, 0x01, 0x12, 0x36, 0x64, 0x06, 0x27, 0x00,
0x64, 0x06, 0x26, 0x00, 0x42, 0x02, 0xff, 0x05, 0x44, 0x02, 0xf7, 0x63,
0x16, 0x03, 0x53, 0x76, 0x14, 0x03, 0x00, 0x00, 0x74, 0x03, 0x86, 0x06,
0x72, 0x03, 0xd1, 0x04, 0x70, 0x03, 0x57, 0x04, 0x6e, 0x03, 0x1e, 0x04,
0x6c, 0x03, 0x2c, 0x04, 0x6a, 0x03, 0x3f, 0x00, 0x68, 0x03, 0x3f, 0x00,
0x66, 0x03, 0x3f, 0x00, 0x16, 0x00, 0xbe, 0xa6, 0x40, 0x03, 0x8a, 0x03,
0x3a, 0x02, 0xa6, 0x00, 0x3c, 0x02, 0x7e, 0xc0, 0x60, 0x02, 0x36, 0x21,
0x62, 0x02, 0xce, 0x17, 0x08, 0x03, 0x29, 0x29, 0x42, 0x03, 0x01, 0x09,
0x48, 0x03, 0x29, 0x25, 0x56, 0x03, 0x0d, 0x33, 0x5a, 0x03, 0x45, 0x00,
0x1a, 0x06, 0x8b, 0xd3, 0x30, 0x06, 0x26, 0x67, 0x34, 0x06, 0x7f, 0xc8,
0x42, 0x06, 0x4d, 0x43, 0x44, 0x06, 0x8d, 0x46, 0x34, 0x01, 0x00, 0x00,
0x38, 0x01, 0x00, 0x00, 0x60, 0x01, 0x4a, 0x26, 0x64, 0x01, 0x44, 0x3b,
0x66, 0x01, 0xd2, 0x76, 0x08, 0x00, 0xb0, 0x00, 0x66, 0x00, 0x59, 0x40,
0x0a, 0x06, 0xdb, 0x50, 0x0c, 0x06, 0xf2, 0x7b, 0x10, 0x06, 0x8c, 0x55,
0x12, 0x06, 0x0a, 0x28, 0x14, 0x06, 0x27, 0x01, 0x02, 0x02, 0x6a, 0x7c,
0x9a, 0x58, 0x00, 0x00, 0x6e, 0xc5, 0x98, 0x82, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xff, 0x0f, 0x01, 0x00, 0x51, 0x04, 0xfd, 0x77
};
unsigned int rtlbt_mp_fw_len = sizeof(rtlbt_mp_fw);
|
the_stack_data/20128.c | // This is a personal academic project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include <stdint.h>
void *memset(void *destination, int32_t c, uint64_t length)
{
uint8_t chr = (uint8_t)c;
char *dst = (char *)destination;
while (length--)
dst[length] = chr;
return destination;
}
void *memcpy(void *destination, const void *source, uint64_t length)
{
/*
* memcpy does not support overlapping buffers, so always do it
* forwards. (Don't change this without adjusting memmove.)
*
* For speedy copying, optimize the common case where both pointers
* and the length are word-aligned, and copy word-at-a-time instead
* of byte-at-a-time. Otherwise, copy by bytes.
*
* The alignment logic below should be portable. We rely on
* the compiler to be reasonably intelligent about optimizing
* the divides and modulos out. Fortunately, it is.
*/
uint64_t i;
if ((uint64_t)destination % sizeof(uint32_t) == 0 &&
(uint64_t)source % sizeof(uint32_t) == 0 &&
length % sizeof(uint32_t) == 0) {
uint32_t *d = (uint32_t *)destination;
const uint32_t *s = (const uint32_t *)source;
for (i = 0; i < length / sizeof(uint32_t); i++)
d[i] = s[i];
} else {
uint8_t *d = (uint8_t *)destination;
const uint8_t *s = (const uint8_t *)source;
for (i = 0; i < length; i++)
d[i] = s[i];
}
return destination;
}
int strcmp(const char *p1, const char *p2)
{
const unsigned char *s1 = (const unsigned char *)p1;
const unsigned char *s2 = (const unsigned char *)p2;
unsigned char c1, c2;
do {
c1 = (unsigned char)*s1++;
c2 = (unsigned char)*s2++;
if (c1 == '\0')
return c1 - c2;
} while (c1 == c2);
return c1 - c2;
}
int strlength(const char *s)
{
const char *it = s;
for (; *it; it++)
;
return it - s;
}
void strcopy(char *dest, char *src)
{
while (*src) {
*dest = *src;
dest++;
src++;
}
*dest = 0;
}
|
the_stack_data/247270.c | /*
* Copyright 2013 the DL Example Authors (Dan Bornstein et alia).
* Licensed AS IS and WITHOUT WARRANTY under the Apache License,
* Version 2.0. Details: <http://www.apache.org/licenses/LICENSE-2.0>
*/
void hook(const char *);
static void init(void) __attribute__((constructor));
static void init(void) {
hook("init() called inside missing-export.");
}
static void shutdown(void) __attribute__((destructor));
static void shutdown(void) {
hook("shutdown() called inside missing-export.");
}
// `run` is intentionally *not* defined in this code.
|
the_stack_data/487486.c | /* Generated by CIL v. 1.3.7 */
/* print_CIL_Input is true */
#line 60 "particle.h"
struct __anonstruct_parm_context_2 {
int particles ;
void *pos_v ;
void *vel_v ;
float *inv_mass ;
float dt ;
};
#line 60 "particle.h"
typedef struct __anonstruct_parm_context_2 parm_context;
#line 108 "particle.c"
struct float4_s {
float data[4] ;
};
#line 108 "particle.c"
typedef struct float4_s float4;
#line 203 "../spu_mfcio.h"
extern void mfc_put(void volatile *ls , unsigned int ea , unsigned int size , unsigned int tag ,
unsigned int tid , unsigned int rid ) ;
#line 211
extern void mfc_get(void volatile *ls , unsigned int ea , unsigned int size , unsigned int tag ,
unsigned int tid , unsigned int rid ) ;
#line 213
extern void mfc_getb(void volatile *ls , unsigned int ea , unsigned int size , unsigned int tag ,
unsigned int tid , unsigned int rid ) ;
#line 252
extern void mfc_write_tag_mask(unsigned int mask ) ;
#line 270
extern void mfc_read_tag_status_all() ;
#line 116 "particle.c"
parm_context volatile ctx ;
#line 117 "particle.c"
float4 volatile pos[2][1024] __attribute__((__aligned__(128))) ;
#line 118 "particle.c"
float4 volatile vel[2][1024] __attribute__((__aligned__(128))) ;
#line 119 "particle.c"
float4 volatile inv_mass[2][256] __attribute__((__aligned__(128))) ;
#line 211
extern int __VERIFIER_nondet_int() ;
#line 211
extern int ( /* missing proto */ __CROVER_ndet_int)() ;
#line 226
extern int ( /* missing proto */ assert)() ;
#line 189 "particle.c"
int spu_main(unsigned long long spu_id __attribute__((__unused__)) , unsigned long long argv )
{ int buffer ;
int next_buffer ;
int cnt ;
int next_cnt ;
unsigned int left ;
float time ;
float dt ;
float4 volatile *ctx_pos_v ;
float4 volatile *ctx_vel_v ;
float4 volatile *next_ctx_pos_v ;
float4 volatile *next_ctx_vel_v ;
float volatile *ctx_inv_mass ;
float volatile *next_ctx_inv_mass ;
unsigned int tags[2] ;
int state ;
int tmp ;
int tmp___0 ;
int tmp___1 ;
int tmp___2 ;
int tmp___3 ;
int tmp___4 ;
unsigned long __cil_tmp25 ;
unsigned long __cil_tmp26 ;
unsigned long __cil_tmp27 ;
unsigned long __cil_tmp28 ;
unsigned long __cil_tmp29 ;
unsigned long __cil_tmp30 ;
unsigned int __cil_tmp31 ;
int __cil_tmp32 ;
unsigned int __cil_tmp33 ;
void *__cil_tmp34 ;
void volatile *__cil_tmp35 ;
unsigned int __cil_tmp36 ;
unsigned int __cil_tmp37 ;
unsigned long __cil_tmp38 ;
unsigned long __cil_tmp39 ;
unsigned int __cil_tmp40 ;
parm_context volatile *__cil_tmp41 ;
unsigned long __cil_tmp42 ;
unsigned long __cil_tmp43 ;
unsigned long __cil_tmp44 ;
unsigned long __cil_tmp45 ;
unsigned long __cil_tmp46 ;
float volatile __cil_tmp47 ;
float __cil_tmp48 ;
unsigned long __cil_tmp49 ;
unsigned long __cil_tmp50 ;
unsigned int __cil_tmp51 ;
int __cil_tmp52 ;
unsigned long __cil_tmp53 ;
unsigned long __cil_tmp54 ;
unsigned int __cil_tmp55 ;
int __cil_tmp56 ;
parm_context volatile *__cil_tmp57 ;
int volatile __cil_tmp58 ;
unsigned long __cil_tmp59 ;
void * volatile __cil_tmp60 ;
unsigned long __cil_tmp61 ;
void * volatile __cil_tmp62 ;
unsigned long __cil_tmp63 ;
float * volatile __cil_tmp64 ;
unsigned long __cil_tmp65 ;
unsigned long __cil_tmp66 ;
float4 volatile (*__cil_tmp67)[1024] ;
void *__cil_tmp68 ;
void volatile *__cil_tmp69 ;
unsigned int __cil_tmp70 ;
unsigned long __cil_tmp71 ;
unsigned long __cil_tmp72 ;
unsigned int __cil_tmp73 ;
unsigned long __cil_tmp74 ;
unsigned long __cil_tmp75 ;
unsigned int __cil_tmp76 ;
unsigned long __cil_tmp77 ;
unsigned long __cil_tmp78 ;
float4 volatile (*__cil_tmp79)[1024] ;
void *__cil_tmp80 ;
void volatile *__cil_tmp81 ;
unsigned int __cil_tmp82 ;
unsigned long __cil_tmp83 ;
unsigned long __cil_tmp84 ;
unsigned int __cil_tmp85 ;
unsigned long __cil_tmp86 ;
unsigned long __cil_tmp87 ;
unsigned int __cil_tmp88 ;
unsigned long __cil_tmp89 ;
unsigned long __cil_tmp90 ;
float4 volatile (*__cil_tmp91)[256] ;
void *__cil_tmp92 ;
void volatile *__cil_tmp93 ;
unsigned int __cil_tmp94 ;
unsigned long __cil_tmp95 ;
unsigned long __cil_tmp96 ;
unsigned int __cil_tmp97 ;
unsigned long __cil_tmp98 ;
unsigned long __cil_tmp99 ;
unsigned int __cil_tmp100 ;
unsigned int __cil_tmp101 ;
unsigned int __cil_tmp102 ;
unsigned long __cil_tmp103 ;
unsigned long __cil_tmp104 ;
unsigned long __cil_tmp105 ;
unsigned long __cil_tmp106 ;
float4 volatile *__cil_tmp107 ;
void *__cil_tmp108 ;
void volatile *__cil_tmp109 ;
unsigned int __cil_tmp110 ;
unsigned long __cil_tmp111 ;
unsigned long __cil_tmp112 ;
unsigned int __cil_tmp113 ;
unsigned long __cil_tmp114 ;
unsigned long __cil_tmp115 ;
unsigned int __cil_tmp116 ;
unsigned long __cil_tmp117 ;
unsigned long __cil_tmp118 ;
unsigned long __cil_tmp119 ;
unsigned long __cil_tmp120 ;
float4 volatile *__cil_tmp121 ;
void *__cil_tmp122 ;
void volatile *__cil_tmp123 ;
unsigned int __cil_tmp124 ;
unsigned long __cil_tmp125 ;
unsigned long __cil_tmp126 ;
unsigned int __cil_tmp127 ;
unsigned long __cil_tmp128 ;
unsigned long __cil_tmp129 ;
unsigned int __cil_tmp130 ;
unsigned long __cil_tmp131 ;
unsigned long __cil_tmp132 ;
unsigned long __cil_tmp133 ;
unsigned long __cil_tmp134 ;
float4 volatile *__cil_tmp135 ;
void *__cil_tmp136 ;
void volatile *__cil_tmp137 ;
unsigned int __cil_tmp138 ;
unsigned long __cil_tmp139 ;
unsigned long __cil_tmp140 ;
unsigned int __cil_tmp141 ;
unsigned long __cil_tmp142 ;
unsigned long __cil_tmp143 ;
unsigned int __cil_tmp144 ;
unsigned long __cil_tmp145 ;
unsigned long __cil_tmp146 ;
unsigned int __cil_tmp147 ;
int __cil_tmp148 ;
unsigned int __cil_tmp149 ;
unsigned long __cil_tmp150 ;
unsigned long __cil_tmp151 ;
unsigned long __cil_tmp152 ;
unsigned long __cil_tmp153 ;
float4 volatile *__cil_tmp154 ;
void *__cil_tmp155 ;
void volatile *__cil_tmp156 ;
unsigned int __cil_tmp157 ;
unsigned long __cil_tmp158 ;
unsigned long __cil_tmp159 ;
unsigned int __cil_tmp160 ;
unsigned long __cil_tmp161 ;
unsigned long __cil_tmp162 ;
unsigned int __cil_tmp163 ;
unsigned long __cil_tmp164 ;
unsigned long __cil_tmp165 ;
unsigned long __cil_tmp166 ;
unsigned long __cil_tmp167 ;
float4 volatile *__cil_tmp168 ;
void *__cil_tmp169 ;
void volatile *__cil_tmp170 ;
unsigned int __cil_tmp171 ;
unsigned long __cil_tmp172 ;
unsigned long __cil_tmp173 ;
unsigned int __cil_tmp174 ;
unsigned long __cil_tmp175 ;
unsigned long __cil_tmp176 ;
unsigned int __cil_tmp177 ;
unsigned long __cil_tmp178 ;
unsigned long __cil_tmp179 ;
unsigned int __cil_tmp180 ;
int __cil_tmp181 ;
unsigned int __cil_tmp182 ;
unsigned long __cil_tmp183 ;
unsigned long __cil_tmp184 ;
unsigned long __cil_tmp185 ;
unsigned long __cil_tmp186 ;
float4 volatile *__cil_tmp187 ;
void *__cil_tmp188 ;
void volatile *__cil_tmp189 ;
unsigned int __cil_tmp190 ;
unsigned long __cil_tmp191 ;
unsigned long __cil_tmp192 ;
unsigned int __cil_tmp193 ;
unsigned long __cil_tmp194 ;
unsigned long __cil_tmp195 ;
unsigned int __cil_tmp196 ;
unsigned long __cil_tmp197 ;
unsigned long __cil_tmp198 ;
unsigned long __cil_tmp199 ;
unsigned long __cil_tmp200 ;
float4 volatile *__cil_tmp201 ;
void *__cil_tmp202 ;
void volatile *__cil_tmp203 ;
unsigned int __cil_tmp204 ;
unsigned long __cil_tmp205 ;
unsigned long __cil_tmp206 ;
unsigned int __cil_tmp207 ;
unsigned long __cil_tmp208 ;
unsigned long __cil_tmp209 ;
unsigned int __cil_tmp210 ;
unsigned long __cil_tmp211 ;
unsigned long __cil_tmp212 ;
unsigned int __cil_tmp213 ;
int __cil_tmp214 ;
unsigned int __cil_tmp215 ;
{
{
#line 204
__cil_tmp25 = 0 * 4UL;
#line 204
__cil_tmp26 = (unsigned long )(tags) + __cil_tmp25;
#line 204
*((unsigned int *)__cil_tmp26) = 0U;
#line 205
__cil_tmp27 = 1 * 4UL;
#line 205
__cil_tmp28 = (unsigned long )(tags) + __cil_tmp27;
#line 205
*((unsigned int *)__cil_tmp28) = 1U;
#line 209
__cil_tmp29 = 0 * 4UL;
#line 209
__cil_tmp30 = (unsigned long )(tags) + __cil_tmp29;
#line 209
__cil_tmp31 = *((unsigned int *)__cil_tmp30);
#line 209
__cil_tmp32 = 1 << __cil_tmp31;
#line 209
__cil_tmp33 = (unsigned int )__cil_tmp32;
#line 209
mfc_write_tag_mask(__cil_tmp33);
#line 210
__cil_tmp34 = (void *)(& ctx);
#line 210
__cil_tmp35 = (void volatile *)__cil_tmp34;
#line 210
__cil_tmp36 = (unsigned int )argv;
#line 210
__cil_tmp37 = (unsigned int )40UL;
#line 210
__cil_tmp38 = 0 * 4UL;
#line 210
__cil_tmp39 = (unsigned long )(tags) + __cil_tmp38;
#line 210
__cil_tmp40 = *((unsigned int *)__cil_tmp39);
#line 210
mfc_get(__cil_tmp35, __cil_tmp36, __cil_tmp37, __cil_tmp40, 0U, 0U);
#line 211
tmp = __VERIFIER_nondet_int();
#line 211
__cil_tmp41 = & ctx;
#line 211
*((int volatile *)__cil_tmp41) = (int volatile )tmp;
#line 211
tmp___0 = __VERIFIER_nondet_int();
#line 211
__cil_tmp42 = (unsigned long )(& ctx) + 8;
#line 211
*((void * volatile *)__cil_tmp42) = (void * volatile )tmp___0;
#line 211
tmp___1 = __VERIFIER_nondet_int();
#line 211
__cil_tmp43 = (unsigned long )(& ctx) + 16;
#line 211
*((void * volatile *)__cil_tmp43) = (void * volatile )tmp___1;
#line 211
tmp___2 = __CROVER_ndet_int();
#line 211
__cil_tmp44 = (unsigned long )(& ctx) + 24;
#line 211
*((float * volatile *)__cil_tmp44) = (float * volatile )tmp___2;
#line 211
tmp___3 = __VERIFIER_nondet_int();
#line 211
__cil_tmp45 = (unsigned long )(& ctx) + 32;
#line 211
*((float volatile *)__cil_tmp45) = (float volatile )tmp___3;
#line 212
mfc_read_tag_status_all();
#line 214
__cil_tmp46 = (unsigned long )(& ctx) + 32;
#line 214
__cil_tmp47 = *((float volatile *)__cil_tmp46);
#line 214
dt = (float )__cil_tmp47;
#line 220
time = (float )0;
#line 222
state = 0;
}
{
#line 224
while (1) {
while_continue: /* CIL Label */ ;
{
#line 224
__cil_tmp48 = (float )10;
#line 224
if (time < __cil_tmp48) {
} else {
#line 224
goto while_break;
}
}
{
#line 226
__cil_tmp49 = 0 * 4UL;
#line 226
__cil_tmp50 = (unsigned long )(tags) + __cil_tmp49;
#line 226
__cil_tmp51 = *((unsigned int *)__cil_tmp50);
#line 226
__cil_tmp52 = __cil_tmp51 == 0U;
#line 226
assert(__cil_tmp52);
#line 227
__cil_tmp53 = 1 * 4UL;
#line 227
__cil_tmp54 = (unsigned long )(tags) + __cil_tmp53;
#line 227
__cil_tmp55 = *((unsigned int *)__cil_tmp54);
#line 227
__cil_tmp56 = __cil_tmp55 == 1U;
#line 227
assert(__cil_tmp56);
}
#line 229
if (state == 0) {
#line 232
__cil_tmp57 = & ctx;
#line 232
__cil_tmp58 = *((int volatile *)__cil_tmp57);
#line 232
left = (unsigned int )__cil_tmp58;
#line 234
if (left < 1024U) {
#line 234
cnt = (int )left;
} else {
#line 234
cnt = 1024;
}
{
#line 236
__cil_tmp59 = (unsigned long )(& ctx) + 8;
#line 236
__cil_tmp60 = *((void * volatile *)__cil_tmp59);
#line 236
ctx_pos_v = (float4 volatile *)__cil_tmp60;
#line 237
__cil_tmp61 = (unsigned long )(& ctx) + 16;
#line 237
__cil_tmp62 = *((void * volatile *)__cil_tmp61);
#line 237
ctx_vel_v = (float4 volatile *)__cil_tmp62;
#line 238
__cil_tmp63 = (unsigned long )(& ctx) + 24;
#line 238
__cil_tmp64 = *((float * volatile *)__cil_tmp63);
#line 238
ctx_inv_mass = (float volatile *)__cil_tmp64;
#line 241
buffer = 0;
#line 242
__cil_tmp65 = 0 * 16384UL;
#line 242
__cil_tmp66 = (unsigned long )(pos) + __cil_tmp65;
#line 242
__cil_tmp67 = (float4 volatile (*)[1024])__cil_tmp66;
#line 242
__cil_tmp68 = (void *)__cil_tmp67;
#line 242
__cil_tmp69 = (void volatile *)__cil_tmp68;
#line 242
__cil_tmp70 = (unsigned int )ctx_pos_v;
#line 242
__cil_tmp71 = (unsigned long )cnt;
#line 242
__cil_tmp72 = __cil_tmp71 * 16UL;
#line 242
__cil_tmp73 = (unsigned int )__cil_tmp72;
#line 242
__cil_tmp74 = 0 * 4UL;
#line 242
__cil_tmp75 = (unsigned long )(tags) + __cil_tmp74;
#line 242
__cil_tmp76 = *((unsigned int *)__cil_tmp75);
#line 242
mfc_getb(__cil_tmp69, __cil_tmp70, __cil_tmp73, __cil_tmp76, 0U, 0U);
#line 243
__cil_tmp77 = 0 * 16384UL;
#line 243
__cil_tmp78 = (unsigned long )(vel) + __cil_tmp77;
#line 243
__cil_tmp79 = (float4 volatile (*)[1024])__cil_tmp78;
#line 243
__cil_tmp80 = (void *)__cil_tmp79;
#line 243
__cil_tmp81 = (void volatile *)__cil_tmp80;
#line 243
__cil_tmp82 = (unsigned int )ctx_vel_v;
#line 243
__cil_tmp83 = (unsigned long )cnt;
#line 243
__cil_tmp84 = __cil_tmp83 * 16UL;
#line 243
__cil_tmp85 = (unsigned int )__cil_tmp84;
#line 243
__cil_tmp86 = 0 * 4UL;
#line 243
__cil_tmp87 = (unsigned long )(tags) + __cil_tmp86;
#line 243
__cil_tmp88 = *((unsigned int *)__cil_tmp87);
#line 243
mfc_get(__cil_tmp81, __cil_tmp82, __cil_tmp85, __cil_tmp88, 0U, 0U);
#line 244
__cil_tmp89 = 0 * 4096UL;
#line 244
__cil_tmp90 = (unsigned long )(inv_mass) + __cil_tmp89;
#line 244
__cil_tmp91 = (float4 volatile (*)[256])__cil_tmp90;
#line 244
__cil_tmp92 = (void *)__cil_tmp91;
#line 244
__cil_tmp93 = (void volatile *)__cil_tmp92;
#line 244
__cil_tmp94 = (unsigned int )ctx_inv_mass;
#line 244
__cil_tmp95 = (unsigned long )cnt;
#line 244
__cil_tmp96 = __cil_tmp95 * 4UL;
#line 244
__cil_tmp97 = (unsigned int )__cil_tmp96;
#line 244
__cil_tmp98 = 0 * 4UL;
#line 244
__cil_tmp99 = (unsigned long )(tags) + __cil_tmp98;
#line 244
__cil_tmp100 = *((unsigned int *)__cil_tmp99);
#line 244
mfc_get(__cil_tmp93, __cil_tmp94, __cil_tmp97, __cil_tmp100, 0U, 0U);
#line 246
state = 1;
}
} else {
}
#line 250
if (state == 1) {
#line 253
if (buffer >= 0) {
#line 253
if (buffer < 2) {
#line 253
tmp___4 = 1;
} else {
#line 253
tmp___4 = 0;
}
} else {
#line 253
tmp___4 = 0;
}
{
#line 253
assert(tmp___4);
}
{
#line 255
__cil_tmp101 = (unsigned int )cnt;
#line 255
if (__cil_tmp101 < left) {
#line 256
__cil_tmp102 = (unsigned int )cnt;
#line 256
left = left - __cil_tmp102;
#line 258
next_ctx_pos_v = ctx_pos_v + cnt;
#line 259
next_ctx_vel_v = ctx_vel_v + cnt;
#line 260
next_ctx_inv_mass = ctx_inv_mass + cnt;
#line 261
if (left < 1024U) {
#line 261
next_cnt = (int )left;
} else {
#line 261
next_cnt = 1024;
}
{
#line 266
next_buffer = buffer ^ 1;
#line 272
__cil_tmp103 = 0 * 16UL;
#line 272
__cil_tmp104 = next_buffer * 16384UL;
#line 272
__cil_tmp105 = __cil_tmp104 + __cil_tmp103;
#line 272
__cil_tmp106 = (unsigned long )(pos) + __cil_tmp105;
#line 272
__cil_tmp107 = (float4 volatile *)__cil_tmp106;
#line 272
__cil_tmp108 = (void *)__cil_tmp107;
#line 272
__cil_tmp109 = (void volatile *)__cil_tmp108;
#line 272
__cil_tmp110 = (unsigned int )next_ctx_pos_v;
#line 272
__cil_tmp111 = (unsigned long )next_cnt;
#line 272
__cil_tmp112 = __cil_tmp111 * 16UL;
#line 272
__cil_tmp113 = (unsigned int )__cil_tmp112;
#line 272
__cil_tmp114 = next_buffer * 4UL;
#line 272
__cil_tmp115 = (unsigned long )(tags) + __cil_tmp114;
#line 272
__cil_tmp116 = *((unsigned int *)__cil_tmp115);
#line 272
mfc_get(__cil_tmp109, __cil_tmp110, __cil_tmp113, __cil_tmp116, 0U, 0U);
#line 275
__cil_tmp117 = 0 * 16UL;
#line 275
__cil_tmp118 = next_buffer * 16384UL;
#line 275
__cil_tmp119 = __cil_tmp118 + __cil_tmp117;
#line 275
__cil_tmp120 = (unsigned long )(vel) + __cil_tmp119;
#line 275
__cil_tmp121 = (float4 volatile *)__cil_tmp120;
#line 275
__cil_tmp122 = (void *)__cil_tmp121;
#line 275
__cil_tmp123 = (void volatile *)__cil_tmp122;
#line 275
__cil_tmp124 = (unsigned int )next_ctx_vel_v;
#line 275
__cil_tmp125 = (unsigned long )next_cnt;
#line 275
__cil_tmp126 = __cil_tmp125 * 16UL;
#line 275
__cil_tmp127 = (unsigned int )__cil_tmp126;
#line 275
__cil_tmp128 = next_buffer * 4UL;
#line 275
__cil_tmp129 = (unsigned long )(tags) + __cil_tmp128;
#line 275
__cil_tmp130 = *((unsigned int *)__cil_tmp129);
#line 275
mfc_get(__cil_tmp123, __cil_tmp124, __cil_tmp127, __cil_tmp130, 0U, 0U);
#line 276
__cil_tmp131 = 0 * 16UL;
#line 276
__cil_tmp132 = next_buffer * 4096UL;
#line 276
__cil_tmp133 = __cil_tmp132 + __cil_tmp131;
#line 276
__cil_tmp134 = (unsigned long )(inv_mass) + __cil_tmp133;
#line 276
__cil_tmp135 = (float4 volatile *)__cil_tmp134;
#line 276
__cil_tmp136 = (void *)__cil_tmp135;
#line 276
__cil_tmp137 = (void volatile *)__cil_tmp136;
#line 276
__cil_tmp138 = (unsigned int )next_ctx_inv_mass;
#line 276
__cil_tmp139 = (unsigned long )next_cnt;
#line 276
__cil_tmp140 = __cil_tmp139 * 4UL;
#line 276
__cil_tmp141 = (unsigned int )__cil_tmp140;
#line 276
__cil_tmp142 = next_buffer * 4UL;
#line 276
__cil_tmp143 = (unsigned long )(tags) + __cil_tmp142;
#line 276
__cil_tmp144 = *((unsigned int *)__cil_tmp143);
#line 276
mfc_get(__cil_tmp137, __cil_tmp138, __cil_tmp141, __cil_tmp144, 0U, 0U);
#line 279
__cil_tmp145 = buffer * 4UL;
#line 279
__cil_tmp146 = (unsigned long )(tags) + __cil_tmp145;
#line 279
__cil_tmp147 = *((unsigned int *)__cil_tmp146);
#line 279
__cil_tmp148 = 1 << __cil_tmp147;
#line 279
__cil_tmp149 = (unsigned int )__cil_tmp148;
#line 279
mfc_write_tag_mask(__cil_tmp149);
#line 280
mfc_read_tag_status_all();
#line 287
__cil_tmp150 = 0 * 16UL;
#line 287
__cil_tmp151 = buffer * 16384UL;
#line 287
__cil_tmp152 = __cil_tmp151 + __cil_tmp150;
#line 287
__cil_tmp153 = (unsigned long )(pos) + __cil_tmp152;
#line 287
__cil_tmp154 = (float4 volatile *)__cil_tmp153;
#line 287
__cil_tmp155 = (void *)__cil_tmp154;
#line 287
__cil_tmp156 = (void volatile *)__cil_tmp155;
#line 287
__cil_tmp157 = (unsigned int )ctx_pos_v;
#line 287
__cil_tmp158 = (unsigned long )cnt;
#line 287
__cil_tmp159 = __cil_tmp158 * 16UL;
#line 287
__cil_tmp160 = (unsigned int )__cil_tmp159;
#line 287
__cil_tmp161 = buffer * 4UL;
#line 287
__cil_tmp162 = (unsigned long )(tags) + __cil_tmp161;
#line 287
__cil_tmp163 = *((unsigned int *)__cil_tmp162);
#line 287
mfc_put(__cil_tmp156, __cil_tmp157, __cil_tmp160, __cil_tmp163, 0U, 0U);
#line 288
__cil_tmp164 = 0 * 16UL;
#line 288
__cil_tmp165 = buffer * 16384UL;
#line 288
__cil_tmp166 = __cil_tmp165 + __cil_tmp164;
#line 288
__cil_tmp167 = (unsigned long )(vel) + __cil_tmp166;
#line 288
__cil_tmp168 = (float4 volatile *)__cil_tmp167;
#line 288
__cil_tmp169 = (void *)__cil_tmp168;
#line 288
__cil_tmp170 = (void volatile *)__cil_tmp169;
#line 288
__cil_tmp171 = (unsigned int )ctx_vel_v;
#line 288
__cil_tmp172 = (unsigned long )cnt;
#line 288
__cil_tmp173 = __cil_tmp172 * 16UL;
#line 288
__cil_tmp174 = (unsigned int )__cil_tmp173;
#line 288
__cil_tmp175 = buffer * 4UL;
#line 288
__cil_tmp176 = (unsigned long )(tags) + __cil_tmp175;
#line 288
__cil_tmp177 = *((unsigned int *)__cil_tmp176);
#line 288
mfc_put(__cil_tmp170, __cil_tmp171, __cil_tmp174, __cil_tmp177, 0U, 0U);
#line 290
ctx_pos_v = next_ctx_pos_v;
#line 291
ctx_vel_v = next_ctx_vel_v;
#line 292
ctx_inv_mass = next_ctx_inv_mass;
#line 294
buffer = next_buffer;
#line 295
cnt = next_cnt;
}
} else {
#line 298
state = 2;
}
}
} else {
}
#line 303
if (state == 2) {
{
#line 305
__cil_tmp178 = buffer * 4UL;
#line 305
__cil_tmp179 = (unsigned long )(tags) + __cil_tmp178;
#line 305
__cil_tmp180 = *((unsigned int *)__cil_tmp179);
#line 305
__cil_tmp181 = 1 << __cil_tmp180;
#line 305
__cil_tmp182 = (unsigned int )__cil_tmp181;
#line 305
mfc_write_tag_mask(__cil_tmp182);
#line 306
mfc_read_tag_status_all();
#line 313
__cil_tmp183 = 0 * 16UL;
#line 313
__cil_tmp184 = buffer * 16384UL;
#line 313
__cil_tmp185 = __cil_tmp184 + __cil_tmp183;
#line 313
__cil_tmp186 = (unsigned long )(pos) + __cil_tmp185;
#line 313
__cil_tmp187 = (float4 volatile *)__cil_tmp186;
#line 313
__cil_tmp188 = (void *)__cil_tmp187;
#line 313
__cil_tmp189 = (void volatile *)__cil_tmp188;
#line 313
__cil_tmp190 = (unsigned int )ctx_pos_v;
#line 313
__cil_tmp191 = (unsigned long )cnt;
#line 313
__cil_tmp192 = __cil_tmp191 * 16UL;
#line 313
__cil_tmp193 = (unsigned int )__cil_tmp192;
#line 313
__cil_tmp194 = buffer * 4UL;
#line 313
__cil_tmp195 = (unsigned long )(tags) + __cil_tmp194;
#line 313
__cil_tmp196 = *((unsigned int *)__cil_tmp195);
#line 313
mfc_put(__cil_tmp189, __cil_tmp190, __cil_tmp193, __cil_tmp196, 0U, 0U);
#line 314
__cil_tmp197 = 0 * 16UL;
#line 314
__cil_tmp198 = buffer * 16384UL;
#line 314
__cil_tmp199 = __cil_tmp198 + __cil_tmp197;
#line 314
__cil_tmp200 = (unsigned long )(vel) + __cil_tmp199;
#line 314
__cil_tmp201 = (float4 volatile *)__cil_tmp200;
#line 314
__cil_tmp202 = (void *)__cil_tmp201;
#line 314
__cil_tmp203 = (void volatile *)__cil_tmp202;
#line 314
__cil_tmp204 = (unsigned int )ctx_vel_v;
#line 314
__cil_tmp205 = (unsigned long )cnt;
#line 314
__cil_tmp206 = __cil_tmp205 * 16UL;
#line 314
__cil_tmp207 = (unsigned int )__cil_tmp206;
#line 314
__cil_tmp208 = buffer * 4UL;
#line 314
__cil_tmp209 = (unsigned long )(tags) + __cil_tmp208;
#line 314
__cil_tmp210 = *((unsigned int *)__cil_tmp209);
#line 314
mfc_put(__cil_tmp203, __cil_tmp204, __cil_tmp207, __cil_tmp210, 0U, 0U);
#line 317
__cil_tmp211 = buffer * 4UL;
#line 317
__cil_tmp212 = (unsigned long )(tags) + __cil_tmp211;
#line 317
__cil_tmp213 = *((unsigned int *)__cil_tmp212);
#line 317
__cil_tmp214 = 1 << __cil_tmp213;
#line 317
__cil_tmp215 = (unsigned int )__cil_tmp214;
#line 317
mfc_write_tag_mask(__cil_tmp215);
#line 318
mfc_read_tag_status_all();
#line 320
time = time + dt;
#line 322
state = 0;
}
} else {
}
}
while_break: /* CIL Label */ ;
}
#line 327
return (0);
}
}
|
the_stack_data/129711.c | #include <stdlib.h>
int main(void)
{
int i;
char *addr;
i = 0;
while (i < 1024)
{
addr = (char*)malloc(1024);
addr[0] = 42;
free(addr);
i++;
}
return (0);
}
|
the_stack_data/28263398.c | #include <stdio.h>
int main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
} |
the_stack_data/822509.c | #include <stdio.h>
int main() {
// for user's input
char ch;
// accept user's input
scanf ("%c", &ch);
// take decision
if ('a' <= ch && ch <= 'z') printf ("LOWER\n");
else if ('A' <= ch && ch <= 'Z') printf ("UPPER\n");
else if ('0' <= ch && ch <= '9') printf ("DIGIT\n");
else printf ("SPECIAL\n");
// successful exit
return 0;
} |
the_stack_data/18722.c | /// Test we close file handle on flush, so the .gcda file can be deleted on
/// Windows while the process is still running. In addition, test we create
/// a new .gcda on flush, so there is a file when the process exists.
// RUN: mkdir -p %t.d && cd %t.d
// RUN: %clang --coverage -o %t %s
// RUN: test -f gcov-dump-and-remove.gcno
// RUN: rm -f gcov-dump-and-remove.gcda && %run %t
// RUN: llvm-cov gcov -t gcov-dump-and-remove.gcda | FileCheck %s
extern void __gcov_dump(void);
extern void __gcov_reset(void);
extern int remove(const char *); // CHECK: -: [[#@LINE]]:extern int remove
int main(void) { // CHECK-NEXT: #####: [[#@LINE]]:
__gcov_dump(); // CHECK-NEXT: #####: [[#@LINE]]:
__gcov_reset(); // CHECK-NEXT: #####: [[#@LINE]]:
if (remove("gcov-dump-and-remove.gcda") != 0) // CHECK-NEXT: #####: [[#@LINE]]:
return 1; // CHECK-NEXT: #####: [[#@LINE]]: return 1;
// CHECK-NEXT: -: [[#@LINE]]:
__gcov_dump(); // CHECK-NEXT: 1: [[#@LINE]]:
__gcov_reset(); // CHECK-NEXT: 1: [[#@LINE]]:
__gcov_dump(); // CHECK-NEXT: 1: [[#@LINE]]:
if (remove("gcov-dump-and-remove.gcda") != 0) // CHECK-NEXT: 1: [[#@LINE]]:
return 1; // CHECK-NEXT: #####: [[#@LINE]]: return 1;
return 0;
}
|
the_stack_data/110293.c | #include <stdio.h>
void print_arr(int *arr, int n);
void move(int *arr, int n, int offset);
int main()
{
int arr[20];
int i, n, offset;
printf("Total number: ");
scanf("%d", &n);
printf("Input %d numbers. \n", n);
for (i = 0; i < n; i++)
scanf("%d", &arr[i]);
printf("Enter your offset: ");
scanf("%d", &offset);
print_arr(arr, n);
move(arr, n, offset);
print_arr(arr, n);
return 0;
}
void print_arr(int *arr, int n)
{
int i;
for (i = 0; i < n; i++)
printf("%d ", arr[i]);
printf("\n");
}
void move(int *arr, int n, int offset)
{
int *p, *arr_end;
arr_end = arr + n;
int last;
while (offset)
{
last = *(arr_end - 1);
for (p = arr_end - 1; p != arr; --p)
*p = *(p - 1);
*arr = last;
--offset;
}
} |
the_stack_data/90826.c | /****************************************************************************
*
* Copyright 2017 Samsung Electronics All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*
****************************************************************************/
/****************************************************************************
*
* Copyright © 2005-2014 Rich Felker, et al.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
***************************************************************************/
/************************************************************************
* Included Files
************************************************************************/
#include <math.h>
#ifdef CONFIG_HAVE_DOUBLE
/************************************************************************
* Public Functions
************************************************************************/
double fmin(double x, double y)
{
if (isnan(x)) {
return y;
}
if (isnan(y)) {
return x;
}
/* handle signed zeros, see C99 Annex F.9.9.2 */
if (signbit(x) != signbit(y)) {
return signbit(x) ? x : y;
}
return x < y ? x : y;
}
#endif
|
the_stack_data/570371.c | #include <stdlib.h>
#pragma pack(1)
struct test {
char a;
int b;
int c;
};
int main() {
struct test t;
t.a = 3;
t.b = 5;
t.c = 0;
long val = *((long *)&t.a);
if (t.a != 3 || t.b != 5 || t.c != 0) {
abort();
}
if (val != 1283L) {
abort();
}
return 0;
}
|
the_stack_data/36075650.c | /**
******************************************************************************
* @file stm32f7xx_ll_dma.c
* @author MCD Application Team
* @brief DMA LL module driver.
******************************************************************************
* @attention
*
* <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of STMicroelectronics nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************
*/
#if defined(USE_FULL_LL_DRIVER)
/* Includes ------------------------------------------------------------------*/
#include "stm32f7xx_ll_dma.h"
#include "stm32f7xx_ll_bus.h"
#ifdef USE_FULL_ASSERT
#include "stm32_assert.h"
#else
#define assert_param(expr) ((void)0U)
#endif
/** @addtogroup STM32F7xx_LL_Driver
* @{
*/
#if defined (DMA1) || defined (DMA2)
/** @defgroup DMA_LL DMA
* @{
*/
/* Private types -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private constants ---------------------------------------------------------*/
/* Private macros ------------------------------------------------------------*/
/** @addtogroup DMA_LL_Private_Macros
* @{
*/
#define IS_LL_DMA_DIRECTION(__VALUE__) (((__VALUE__) == LL_DMA_DIRECTION_PERIPH_TO_MEMORY) || \
((__VALUE__) == LL_DMA_DIRECTION_MEMORY_TO_PERIPH) || \
((__VALUE__) == LL_DMA_DIRECTION_MEMORY_TO_MEMORY))
#define IS_LL_DMA_MODE(__VALUE__) (((__VALUE__) == LL_DMA_MODE_NORMAL) || \
((__VALUE__) == LL_DMA_MODE_CIRCULAR) || \
((__VALUE__) == LL_DMA_MODE_PFCTRL))
#define IS_LL_DMA_PERIPHINCMODE(__VALUE__) (((__VALUE__) == LL_DMA_PERIPH_INCREMENT) || \
((__VALUE__) == LL_DMA_PERIPH_NOINCREMENT))
#define IS_LL_DMA_MEMORYINCMODE(__VALUE__) (((__VALUE__) == LL_DMA_MEMORY_INCREMENT) || \
((__VALUE__) == LL_DMA_MEMORY_NOINCREMENT))
#define IS_LL_DMA_PERIPHDATASIZE(__VALUE__) (((__VALUE__) == LL_DMA_PDATAALIGN_BYTE) || \
((__VALUE__) == LL_DMA_PDATAALIGN_HALFWORD) || \
((__VALUE__) == LL_DMA_PDATAALIGN_WORD))
#define IS_LL_DMA_MEMORYDATASIZE(__VALUE__) (((__VALUE__) == LL_DMA_MDATAALIGN_BYTE) || \
((__VALUE__) == LL_DMA_MDATAALIGN_HALFWORD) || \
((__VALUE__) == LL_DMA_MDATAALIGN_WORD))
#define IS_LL_DMA_NBDATA(__VALUE__) ((__VALUE__) <= 0x0000FFFFU)
#if defined(DMA_CHANNEL_SELECTION_8_15)
#define IS_LL_DMA_CHANNEL(__VALUE__) (((__VALUE__) == LL_DMA_CHANNEL_0) || \
((__VALUE__) == LL_DMA_CHANNEL_1) || \
((__VALUE__) == LL_DMA_CHANNEL_2) || \
((__VALUE__) == LL_DMA_CHANNEL_3) || \
((__VALUE__) == LL_DMA_CHANNEL_4) || \
((__VALUE__) == LL_DMA_CHANNEL_5) || \
((__VALUE__) == LL_DMA_CHANNEL_6) || \
((__VALUE__) == LL_DMA_CHANNEL_7) || \
((__VALUE__) == LL_DMA_CHANNEL_8) || \
((__VALUE__) == LL_DMA_CHANNEL_9) || \
((__VALUE__) == LL_DMA_CHANNEL_10) || \
((__VALUE__) == LL_DMA_CHANNEL_11) || \
((__VALUE__) == LL_DMA_CHANNEL_12) || \
((__VALUE__) == LL_DMA_CHANNEL_13) || \
((__VALUE__) == LL_DMA_CHANNEL_14) || \
((__VALUE__) == LL_DMA_CHANNEL_15))
#else
#define IS_LL_DMA_CHANNEL(__VALUE__) (((__VALUE__) == LL_DMA_CHANNEL_0) || \
((__VALUE__) == LL_DMA_CHANNEL_1) || \
((__VALUE__) == LL_DMA_CHANNEL_2) || \
((__VALUE__) == LL_DMA_CHANNEL_3) || \
((__VALUE__) == LL_DMA_CHANNEL_4) || \
((__VALUE__) == LL_DMA_CHANNEL_5) || \
((__VALUE__) == LL_DMA_CHANNEL_6) || \
((__VALUE__) == LL_DMA_CHANNEL_7))
#endif /* DMA_CHANNEL_SELECTION_8_15 */
#define IS_LL_DMA_PRIORITY(__VALUE__) (((__VALUE__) == LL_DMA_PRIORITY_LOW) || \
((__VALUE__) == LL_DMA_PRIORITY_MEDIUM) || \
((__VALUE__) == LL_DMA_PRIORITY_HIGH) || \
((__VALUE__) == LL_DMA_PRIORITY_VERYHIGH))
#define IS_LL_DMA_ALL_STREAM_INSTANCE(INSTANCE, STREAM) ((((INSTANCE) == DMA1) && \
(((STREAM) == LL_DMA_STREAM_0) || \
((STREAM) == LL_DMA_STREAM_1) || \
((STREAM) == LL_DMA_STREAM_2) || \
((STREAM) == LL_DMA_STREAM_3) || \
((STREAM) == LL_DMA_STREAM_4) || \
((STREAM) == LL_DMA_STREAM_5) || \
((STREAM) == LL_DMA_STREAM_6) || \
((STREAM) == LL_DMA_STREAM_7) || \
((STREAM) == LL_DMA_STREAM_ALL))) ||\
(((INSTANCE) == DMA2) && \
(((STREAM) == LL_DMA_STREAM_0) || \
((STREAM) == LL_DMA_STREAM_1) || \
((STREAM) == LL_DMA_STREAM_2) || \
((STREAM) == LL_DMA_STREAM_3) || \
((STREAM) == LL_DMA_STREAM_4) || \
((STREAM) == LL_DMA_STREAM_5) || \
((STREAM) == LL_DMA_STREAM_6) || \
((STREAM) == LL_DMA_STREAM_7) || \
((STREAM) == LL_DMA_STREAM_ALL))))
#define IS_LL_DMA_FIFO_MODE_STATE(STATE) (((STATE) == LL_DMA_FIFOMODE_DISABLE ) || \
((STATE) == LL_DMA_FIFOMODE_ENABLE))
#define IS_LL_DMA_FIFO_THRESHOLD(THRESHOLD) (((THRESHOLD) == LL_DMA_FIFOTHRESHOLD_1_4) || \
((THRESHOLD) == LL_DMA_FIFOTHRESHOLD_1_2) || \
((THRESHOLD) == LL_DMA_FIFOTHRESHOLD_3_4) || \
((THRESHOLD) == LL_DMA_FIFOTHRESHOLD_FULL))
#define IS_LL_DMA_MEMORY_BURST(BURST) (((BURST) == LL_DMA_MBURST_SINGLE) || \
((BURST) == LL_DMA_MBURST_INC4) || \
((BURST) == LL_DMA_MBURST_INC8) || \
((BURST) == LL_DMA_MBURST_INC16))
#define IS_LL_DMA_PERIPHERAL_BURST(BURST) (((BURST) == LL_DMA_PBURST_SINGLE) || \
((BURST) == LL_DMA_PBURST_INC4) || \
((BURST) == LL_DMA_PBURST_INC8) || \
((BURST) == LL_DMA_PBURST_INC16))
/**
* @}
*/
/* Private function prototypes -----------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @addtogroup DMA_LL_Exported_Functions
* @{
*/
/** @addtogroup DMA_LL_EF_Init
* @{
*/
/**
* @brief De-initialize the DMA registers to their default reset values.
* @param DMAx DMAx Instance
* @param Stream This parameter can be one of the following values:
* @arg @ref LL_DMA_STREAM_0
* @arg @ref LL_DMA_STREAM_1
* @arg @ref LL_DMA_STREAM_2
* @arg @ref LL_DMA_STREAM_3
* @arg @ref LL_DMA_STREAM_4
* @arg @ref LL_DMA_STREAM_5
* @arg @ref LL_DMA_STREAM_6
* @arg @ref LL_DMA_STREAM_7
* @arg @ref LL_DMA_STREAM_ALL
* @retval An ErrorStatus enumeration value:
* - SUCCESS: DMA registers are de-initialized
* - ERROR: DMA registers are not de-initialized
*/
uint32_t LL_DMA_DeInit(DMA_TypeDef *DMAx, uint32_t Stream)
{
DMA_Stream_TypeDef *tmp = (DMA_Stream_TypeDef *)DMA1_Stream0;
ErrorStatus status = SUCCESS;
/* Check the DMA Instance DMAx and Stream parameters*/
assert_param(IS_LL_DMA_ALL_STREAM_INSTANCE(DMAx, Stream));
if (Stream == LL_DMA_STREAM_ALL)
{
if (DMAx == DMA1)
{
/* Force reset of DMA clock */
LL_AHB1_GRP1_ForceReset(LL_AHB1_GRP1_PERIPH_DMA1);
/* Release reset of DMA clock */
LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_DMA1);
}
else if (DMAx == DMA2)
{
/* Force reset of DMA clock */
LL_AHB1_GRP1_ForceReset(LL_AHB1_GRP1_PERIPH_DMA2);
/* Release reset of DMA clock */
LL_AHB1_GRP1_ReleaseReset(LL_AHB1_GRP1_PERIPH_DMA2);
}
else
{
status = ERROR;
}
}
else
{
/* Disable the selected Stream */
LL_DMA_DisableStream(DMAx,Stream);
/* Get the DMA Stream Instance */
tmp = (DMA_Stream_TypeDef *)(__LL_DMA_GET_STREAM_INSTANCE(DMAx, Stream));
/* Reset DMAx_Streamy configuration register */
LL_DMA_WriteReg(tmp, CR, 0U);
/* Reset DMAx_Streamy remaining bytes register */
LL_DMA_WriteReg(tmp, NDTR, 0U);
/* Reset DMAx_Streamy peripheral address register */
LL_DMA_WriteReg(tmp, PAR, 0U);
/* Reset DMAx_Streamy memory address register */
LL_DMA_WriteReg(tmp, M0AR, 0U);
/* Reset DMAx_Streamy memory address register */
LL_DMA_WriteReg(tmp, M1AR, 0U);
/* Reset DMAx_Streamy FIFO control register */
LL_DMA_WriteReg(tmp, FCR, 0x00000021U);
/* Reset Channel register field for DMAx Stream*/
LL_DMA_SetChannelSelection(DMAx, Stream, LL_DMA_CHANNEL_0);
if(Stream == LL_DMA_STREAM_0)
{
/* Reset the Stream0 pending flags */
DMAx->LIFCR = 0x0000003FU;
}
else if(Stream == LL_DMA_STREAM_1)
{
/* Reset the Stream1 pending flags */
DMAx->LIFCR = 0x00000F40U;
}
else if(Stream == LL_DMA_STREAM_2)
{
/* Reset the Stream2 pending flags */
DMAx->LIFCR = 0x003F0000U;
}
else if(Stream == LL_DMA_STREAM_3)
{
/* Reset the Stream3 pending flags */
DMAx->LIFCR = 0x0F400000U;
}
else if(Stream == LL_DMA_STREAM_4)
{
/* Reset the Stream4 pending flags */
DMAx->HIFCR = 0x0000003FU;
}
else if(Stream == LL_DMA_STREAM_5)
{
/* Reset the Stream5 pending flags */
DMAx->HIFCR = 0x00000F40U;
}
else if(Stream == LL_DMA_STREAM_6)
{
/* Reset the Stream6 pending flags */
DMAx->HIFCR = 0x003F0000U;
}
else if(Stream == LL_DMA_STREAM_7)
{
/* Reset the Stream7 pending flags */
DMAx->HIFCR = 0x0F400000U;
}
else
{
status = ERROR;
}
}
return status;
}
/**
* @brief Initialize the DMA registers according to the specified parameters in DMA_InitStruct.
* @note To convert DMAx_Streamy Instance to DMAx Instance and Streamy, use helper macros :
* @arg @ref __LL_DMA_GET_INSTANCE
* @arg @ref __LL_DMA_GET_STREAM
* @param DMAx DMAx Instance
* @param Stream This parameter can be one of the following values:
* @arg @ref LL_DMA_STREAM_0
* @arg @ref LL_DMA_STREAM_1
* @arg @ref LL_DMA_STREAM_2
* @arg @ref LL_DMA_STREAM_3
* @arg @ref LL_DMA_STREAM_4
* @arg @ref LL_DMA_STREAM_5
* @arg @ref LL_DMA_STREAM_6
* @arg @ref LL_DMA_STREAM_7
* @param DMA_InitStruct pointer to a @ref LL_DMA_InitTypeDef structure.
* @retval An ErrorStatus enumeration value:
* - SUCCESS: DMA registers are initialized
* - ERROR: Not applicable
*/
uint32_t LL_DMA_Init(DMA_TypeDef *DMAx, uint32_t Stream, LL_DMA_InitTypeDef *DMA_InitStruct)
{
/* Check the DMA Instance DMAx and Stream parameters*/
assert_param(IS_LL_DMA_ALL_STREAM_INSTANCE(DMAx, Stream));
/* Check the DMA parameters from DMA_InitStruct */
assert_param(IS_LL_DMA_DIRECTION(DMA_InitStruct->Direction));
assert_param(IS_LL_DMA_MODE(DMA_InitStruct->Mode));
assert_param(IS_LL_DMA_PERIPHINCMODE(DMA_InitStruct->PeriphOrM2MSrcIncMode));
assert_param(IS_LL_DMA_MEMORYINCMODE(DMA_InitStruct->MemoryOrM2MDstIncMode));
assert_param(IS_LL_DMA_PERIPHDATASIZE(DMA_InitStruct->PeriphOrM2MSrcDataSize));
assert_param(IS_LL_DMA_MEMORYDATASIZE(DMA_InitStruct->MemoryOrM2MDstDataSize));
assert_param(IS_LL_DMA_NBDATA(DMA_InitStruct->NbData));
assert_param(IS_LL_DMA_CHANNEL(DMA_InitStruct->Channel));
assert_param(IS_LL_DMA_PRIORITY(DMA_InitStruct->Priority));
assert_param(IS_LL_DMA_FIFO_MODE_STATE(DMA_InitStruct->FIFOMode));
/* Check the memory burst, peripheral burst and FIFO threshold parameters only
when FIFO mode is enabled */
if(DMA_InitStruct->FIFOMode != LL_DMA_FIFOMODE_DISABLE)
{
assert_param(IS_LL_DMA_FIFO_THRESHOLD(DMA_InitStruct->FIFOThreshold));
assert_param(IS_LL_DMA_MEMORY_BURST(DMA_InitStruct->MemBurst));
assert_param(IS_LL_DMA_PERIPHERAL_BURST(DMA_InitStruct->PeriphBurst));
}
/*---------------------------- DMAx SxCR Configuration ------------------------
* Configure DMAx_Streamy: data transfer direction, data transfer mode,
* peripheral and memory increment mode,
* data size alignment and priority level with parameters :
* - Direction: DMA_SxCR_DIR[1:0] bits
* - Mode: DMA_SxCR_CIRC bit
* - PeriphOrM2MSrcIncMode: DMA_SxCR_PINC bit
* - MemoryOrM2MDstIncMode: DMA_SxCR_MINC bit
* - PeriphOrM2MSrcDataSize: DMA_SxCR_PSIZE[1:0] bits
* - MemoryOrM2MDstDataSize: DMA_SxCR_MSIZE[1:0] bits
* - Priority: DMA_SxCR_PL[1:0] bits
*/
LL_DMA_ConfigTransfer(DMAx, Stream, DMA_InitStruct->Direction | \
DMA_InitStruct->Mode | \
DMA_InitStruct->PeriphOrM2MSrcIncMode | \
DMA_InitStruct->MemoryOrM2MDstIncMode | \
DMA_InitStruct->PeriphOrM2MSrcDataSize | \
DMA_InitStruct->MemoryOrM2MDstDataSize | \
DMA_InitStruct->Priority
);
if(DMA_InitStruct->FIFOMode != LL_DMA_FIFOMODE_DISABLE)
{
/*---------------------------- DMAx SxFCR Configuration ------------------------
* Configure DMAx_Streamy: fifo mode and fifo threshold with parameters :
* - FIFOMode: DMA_SxFCR_DMDIS bit
* - FIFOThreshold: DMA_SxFCR_FTH[1:0] bits
*/
LL_DMA_ConfigFifo(DMAx, Stream, DMA_InitStruct->FIFOMode, DMA_InitStruct->FIFOThreshold);
/*---------------------------- DMAx SxCR Configuration --------------------------
* Configure DMAx_Streamy: memory burst transfer with parameters :
* - MemBurst: DMA_SxCR_MBURST[1:0] bits
*/
LL_DMA_SetMemoryBurstxfer(DMAx,Stream,DMA_InitStruct->MemBurst);
/*---------------------------- DMAx SxCR Configuration --------------------------
* Configure DMAx_Streamy: peripheral burst transfer with parameters :
* - PeriphBurst: DMA_SxCR_PBURST[1:0] bits
*/
LL_DMA_SetPeriphBurstxfer(DMAx,Stream,DMA_InitStruct->PeriphBurst);
}
/*-------------------------- DMAx SxM0AR Configuration --------------------------
* Configure the memory or destination base address with parameter :
* - MemoryOrM2MDstAddress: DMA_SxM0AR_M0A[31:0] bits
*/
LL_DMA_SetMemoryAddress(DMAx, Stream, DMA_InitStruct->MemoryOrM2MDstAddress);
/*-------------------------- DMAx SxPAR Configuration ---------------------------
* Configure the peripheral or source base address with parameter :
* - PeriphOrM2MSrcAddress: DMA_SxPAR_PA[31:0] bits
*/
LL_DMA_SetPeriphAddress(DMAx, Stream, DMA_InitStruct->PeriphOrM2MSrcAddress);
/*--------------------------- DMAx SxNDTR Configuration -------------------------
* Configure the peripheral base address with parameter :
* - NbData: DMA_SxNDT[15:0] bits
*/
LL_DMA_SetDataLength(DMAx, Stream, DMA_InitStruct->NbData);
/*--------------------------- DMA SxCR_CHSEL Configuration ----------------------
* Configure the peripheral base address with parameter :
* - PeriphRequest: DMA_SxCR_CHSEL[3:0] bits
*/
LL_DMA_SetChannelSelection(DMAx, Stream, DMA_InitStruct->Channel);
return SUCCESS;
}
/**
* @brief Set each @ref LL_DMA_InitTypeDef field to default value.
* @param DMA_InitStruct Pointer to a @ref LL_DMA_InitTypeDef structure.
* @retval None
*/
void LL_DMA_StructInit(LL_DMA_InitTypeDef *DMA_InitStruct)
{
/* Set DMA_InitStruct fields to default values */
DMA_InitStruct->PeriphOrM2MSrcAddress = 0x00000000U;
DMA_InitStruct->MemoryOrM2MDstAddress = 0x00000000U;
DMA_InitStruct->Direction = LL_DMA_DIRECTION_PERIPH_TO_MEMORY;
DMA_InitStruct->Mode = LL_DMA_MODE_NORMAL;
DMA_InitStruct->PeriphOrM2MSrcIncMode = LL_DMA_PERIPH_NOINCREMENT;
DMA_InitStruct->MemoryOrM2MDstIncMode = LL_DMA_MEMORY_NOINCREMENT;
DMA_InitStruct->PeriphOrM2MSrcDataSize = LL_DMA_PDATAALIGN_BYTE;
DMA_InitStruct->MemoryOrM2MDstDataSize = LL_DMA_MDATAALIGN_BYTE;
DMA_InitStruct->NbData = 0x00000000U;
DMA_InitStruct->Channel = LL_DMA_CHANNEL_0;
DMA_InitStruct->Priority = LL_DMA_PRIORITY_LOW;
DMA_InitStruct->FIFOMode = LL_DMA_FIFOMODE_DISABLE;
DMA_InitStruct->FIFOThreshold = LL_DMA_FIFOTHRESHOLD_1_4;
DMA_InitStruct->MemBurst = LL_DMA_MBURST_SINGLE;
DMA_InitStruct->PeriphBurst = LL_DMA_PBURST_SINGLE;
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#endif /* DMA1 || DMA2 */
/**
* @}
*/
#endif /* USE_FULL_LL_DRIVER */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
the_stack_data/1200423.c | extern void abort(void);
void reach_error(){}
/*
* Recursive implementation of prime number test
* (Sieve of Eratosthenes)
*
* Author: Jan Leike
* Date: 2013-07-17
*
*/
extern int __VERIFIER_nondet_int(void);
// Multiplies two integers n and m
int mult(int n, int m) {
if (m < 0) {
return mult(n, -m);
}
if (m == 0) {
return 0;
}
if (m == 1) {
return 1;
}
return n + mult(n, m - 1);
}
// Is n a multiple of m?
int multiple_of(int n, int m) {
if (m < 0) {
return multiple_of(n, -m);
}
if (n < 0) {
return multiple_of(-n, m); // false
}
if (m == 0) {
return 0; // false
}
if (n == 0) {
return 1; // true
}
return multiple_of(n - m, m);
}
int is_prime_(int n, int m);
int is_prime(int n);
// Is n prime?
int is_prime(int n) {
return is_prime_(n, n - 1);
}
int is_prime_(int n, int m) {
if (n <= 1) {
return 0; // false
}
if (n == 2) {
return 1; // true
}
if (n > 2) {
if (m <= 1) {
return 1; // true
} else {
if (multiple_of(n, m) == 0) {
return 0; // false
}
return is_prime_(n, m - 1);
}
}
}
int main() {
int n = __VERIFIER_nondet_int();
if (n < 1 || n > 46340) {
// additional branch to avoid undefined behavior
// (because of signed integer overflow)
return 0;
}
int result = is_prime(n);
int f1 = __VERIFIER_nondet_int();
if (f1 < 1 || f1 > 46340) {
// additional branch to avoid undefined behavior
// (because of signed integer overflow)
return 0;
}
int f2 = __VERIFIER_nondet_int();
if (f2 < 1 || f2 > 46340) {
// additional branch to avoid undefined behavior
// (because of signed integer overflow)
return 0;
}
if (result == 1 && mult(f1, f2) == n && f1 > 1 && f2 > 1) {
ERROR: {reach_error();abort();}
} else {
return 0;
}
}
|
the_stack_data/730123.c | #include <stdio.h>
#include <stdlib.h>
//Fatorial recursivo
int fat(int n);
int main()
{
printf("Fatorial de 5: %d \n", fat(5));
return 0;
}
//maior legibilidade
int fat(int n){
int r = 0;
if(n==1) return 1;
r = n * fat(n - 1);
return r;
}
|
the_stack_data/98574027.c | #include<stdio.h>
int main()
{
int count, group=1;
scanf("%d",&count);
int a;
scanf("%d", &a);
int temp;
temp =a;
int i;
for(i=1;i<=count-1;i++)
{
scanf("%d", &a);
if (temp!=a)
{
group++;
temp =a;
}
else
temp =a;
}
printf("%d", group);
return 0;
}
|
the_stack_data/28262010.c | /* 18/06/2017 */
#include <stdio.h>
#define fumble(d) (*d*2 + *(d+1) - 250)
int eng_to_dec(char* digit){
char decode[] = "_ReVA;UQ9K";
for (int i=0; i<10; i++){
if(fumble(digit) == decode[i]){
return i;
}
}
}
int main(void){
char * test[] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};
for (int i=0; i < 10; i++){
printf("eng_to_dec(\'%s\') #\t => %d\n", test[i], eng_to_dec(test[i]));
}
} |
the_stack_data/639156.c | #include <stdio.h>
#define IN 1
#define OUT 0
int main(int argc, char const *argv[])
{
int c, line_count, word_count, char_count, state;
state = OUT;
line_count = word_count = char_count = 0;
while ((c = getchar()) != EOF) {
char_count++;
if (c == '\n') {
line_count++;
state = OUT;
} else if (c == ' ' || c == '\t') {
state = OUT;
} else if (state == OUT) {
state = IN;
word_count++;
}
}
printf("%d %d %d\n", line_count, word_count, char_count);
return 0;
}
|
the_stack_data/135886.c | #include <stdio.h>
#include <stdlib.h>
/*
Faça um programa para ler do teclado uma quantidade de segundos imprimir na tela a conversao para horas, minutos e segundos.
Exemplo:
Entrada: 3672
Saida: 1:1:12
*/
int main(int argc, char const *argv[])
{
int seg, h, m, s, resto;
printf("\nDigite a quantidade de segundos: ");
scanf("%d", &seg);
h = seg / 3600;
resto = seg % 3600;
m = resto / 60;
s = resto % 60;
printf("%dh:%dm:%ds", h, m, s);
return 0;
} |
the_stack_data/92575.c | /* Copyright (C) 2007-2020 Free Software Foundation, Inc.
This file is part of GNU Binutils.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
/* Linked with ar.o to flag that this program decides at runtime
(using argv[0] if it is is 'ar' or 'ranlib'. */
int is_ranlib = -1;
|
the_stack_data/12637045.c | #include <stdio.h>
int main() {
//Dado o seguinte vetor:
// 1 2 3 4 5 6 7 8
//V {5 1 4 2 7 8 3 6}
//Qual será o conteúdo do vetor V depois de executado o algoritmo abaixo?
//Para i de 8 até 5 passo -1 Faça
// v [i] v [8 - i + 1]
// v [8 - i + 1] aux
//Fim_Para
//v [3] v [1]
//v [v [3]] v [v [2]]
int i;
int aux;
int V[8] = {5, 1, 4, 2, 7, 8, 3, 6};
for (i = 8; i >= 1; i--) {
aux = V[i];
V[i] = V [8 - i + 1];
V[8 - i + 1] = aux;
}
V[3] = V[1];
V[V[3]] = V[V[2]];
printf("O valor de V é %d. \n", V[i]);
//Resuitado V = 5;
} |
the_stack_data/55775.c | void check(struct lfds711_stack_state *ss){
int ids[3];
int size = dump_structure(ss,3,ids);
assert((size == 1 && ids[0]==1) || (size == 2 && ids[0]==1 && ids[2]==1) || (size == 1 && ids[2]==1) || (size == 2 && ids[1]==1 && ids[2]==1));
}
|
the_stack_data/72033.c | int a = 0;
int c = 2;
int func()
{
int b = 1+a*2-c/5;
return 0;
}
int func2(int g,int h,int j)
{
int b = 1+func();
return func();
}
int func3()
{
int d=2;
int b = func2(a,3,d);
return 0;
} |
the_stack_data/218893227.c | // Verify that the analyzer gets the same flags as normal compilation
// (at least for a few key ones).
// RUN: env MACOSX_DEPLOYMENT_TARGET=10.5 %clang -ccc-host-triple i386-apple-darwin9 -### --analyze -o /dev/null %s -msse 2> %t.log
// RUN: FileCheck --input-file=%t.log %s
// CHECK: "-analyze"
// CHECK: "-target-feature" "+sse"
|
the_stack_data/200143851.c | #include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
/*
Recebe uma matriz, junto com a posição de determinado elemento,
e retorna true caso tenha um elemento repetido na mesma linha
ou coluna que esse elemento. Caso contrário, retorna false.
*/
bool temNumeroRepetidoLinhaColuna(int **quebraCabeca, int i, int j, int max){
//Verifica se não tem um número igual na mesma linha
for(int c = 1; c < max; c++){
if(c != j){
if(quebraCabeca[i][j] == quebraCabeca[i][c])
return true;
}
}
//Verifica se não tem um número igual na mesma coluna
for(int l = 1; l < max; l++){
if(l != i){
if(quebraCabeca[i][j] == quebraCabeca[l][j])
return true;
}
}
return false;
}
/*
Função que recebe o quebra-cabeça e a posição de determinado número,
dessa forma, determina se as quatro pistas estão 'vendo' o número
certo de edifícios. Caso estejam, retorna true, caso contrário,
retorna false.
*/
bool pistasVeemNumeroCorretoEdificios(int **quebraCabeca, int i, int j, int max){
int pistaEsquerda = quebraCabeca[i][0];
int pistaCima = quebraCabeca[0][j];
int pistaDireita = quebraCabeca[i][max];
int pistaBaixo = quebraCabeca[max][j];
int maiorEdificil, estaVendo, cont;
int totalElementos = max - 1;
//Verifica se a pista da ESQUERDA 'vê' o número correto de edifícios
maiorEdificil = estaVendo = cont = 0;
for(int c = 1; c < max; c++){
if(quebraCabeca[i][c] != 0){
cont++;
if(quebraCabeca[i][c] > maiorEdificil){
maiorEdificil = quebraCabeca[i][c];
estaVendo++;
}
}
}
if(((estaVendo > pistaEsquerda) && (cont < totalElementos)) ||
((cont == totalElementos) && (estaVendo != pistaEsquerda)))
return false;
//Verifica se a pista de CIMA 'vê' o número correto de edifícios
maiorEdificil = estaVendo = cont = 0;
for(int l = 1; l < max; l++){
if(quebraCabeca[l][j] != 0){
cont++;
if(quebraCabeca[l][j] > maiorEdificil){
maiorEdificil = quebraCabeca[l][j];
estaVendo++;
}
}
}
if(((estaVendo > pistaCima) && (cont < totalElementos)) ||
((cont == totalElementos) && (estaVendo != pistaCima)))
return false;
//Verifica se estamos no final de determinada linha
if(j == (max - 1)){
//Verifica se a pista da DIREITA 'vê' o número correto de edifícios
maiorEdificil = estaVendo = cont = 0;
for(int c = (max - 1); c > 0; c--){
if(quebraCabeca[i][c] != 0){
cont++;
if(quebraCabeca[i][c] > maiorEdificil){
maiorEdificil = quebraCabeca[i][c];
estaVendo++;
}
}
}
if(estaVendo != pistaDireita)
return false;
}
//Verifica se estamos no final de determinada coluna
if(i == (max - 1)){
//Verifica se a pista de BAIXO 'vê' o número correto de edifícios
maiorEdificil = estaVendo = cont = 0;
for(int l = (max - 1); l > 0; l--){
if(quebraCabeca[l][j] != 0){
cont++;
if(quebraCabeca[l][j] > maiorEdificil){
maiorEdificil = quebraCabeca[l][j];
estaVendo++;
}
}
}
if(estaVendo != pistaBaixo)
return false;
}
return true;
}
/*
Função recursiva que utiliza uma estratégia de backtranking para
achar a solução para o 'quebra-cabeça' passado. A função tenta
diversas possibilidades e só retorna true quando a possibilidade
deu certo, caso contrário, retorna false.
*/
bool resolveQuebraCabeca(int tamanhoGrade, int tamanhoQuebraCabeca, int **quebraCabeca, int i, int j){
bool resultado;
if(i > tamanhoGrade)
return true;
//Verifica se algum dos números de 'p' até 'tamanhoGrade' valem na posição [i][j]
for(int p = 1; p <= tamanhoGrade ; p++){
quebraCabeca[i][j] = p;
//Conjunto de verificações para ver se o elemento 'p' é válido no quebra-cabeça ou não
if(!temNumeroRepetidoLinhaColuna(quebraCabeca, i, j, (tamanhoQuebraCabeca - 1))){
if(pistasVeemNumeroCorretoEdificios(quebraCabeca, i, j, (tamanhoQuebraCabeca - 1))){
//Verifica se chegamos no final da linha ou não
if(j == tamanhoGrade)
resultado = resolveQuebraCabeca(tamanhoGrade, tamanhoQuebraCabeca, quebraCabeca, i + 1, 1);
else
resultado = resolveQuebraCabeca(tamanhoGrade, tamanhoQuebraCabeca, quebraCabeca, i, j + 1);
if(resultado)
return resultado;
}
}
}
quebraCabeca[i][j] = 0;
return false;
}
int main(){
int tamanhoGrade, tamanhoQuebraCabeca, **quebraCabeca;
scanf("%d", &tamanhoGrade);
tamanhoQuebraCabeca = tamanhoGrade + 2;
//Aloca memória para a matriz do quebra-cabeça
quebraCabeca = malloc(tamanhoQuebraCabeca * sizeof(int *));
for(int i = 0; i < tamanhoQuebraCabeca; i++)
quebraCabeca[i] = malloc(tamanhoQuebraCabeca * sizeof(int *));
//Lê os valores da matriz do quebra-cabeça
for(int i = 0; i < tamanhoQuebraCabeca; i++)
for(int j = 0; j < tamanhoQuebraCabeca; j++)
scanf("%d", &quebraCabeca[i][j]);
resolveQuebraCabeca(tamanhoGrade, tamanhoQuebraCabeca, quebraCabeca, 1, 1);
//Imprime a resolução do quebra-cabeça
for(int i = 1; i < (tamanhoQuebraCabeca - 1); i++){
for(int j = 1; j < (tamanhoQuebraCabeca - 1); j++)
printf("%d ", quebraCabeca[i][j]);
printf("\n");
}
//Libera a memória alocada da matriz
for(int i = 0; i < tamanhoQuebraCabeca; i++)
free(quebraCabeca[i]);
free(quebraCabeca);
return 0;
} |
the_stack_data/555964.c | #include <stdio.h>
int main(){
int x = 5;
int* p;
p= &x;
*p = 6;
int** q;
q = &p;
printf("%d",**q);
return 0;
} |
the_stack_data/602987.c | #define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#define MAX_INPUT 5
#define INSTRUCTION_SET_MAX 14
#define VAR_Z 0
#define VAR_A 1
#define VAR_B 2
#define VAR_C 3
#define VAR_W 4
struct prog {
int a[INSTRUCTION_SET_MAX];
int b[INSTRUCTION_SET_MAX];
int c[INSTRUCTION_SET_MAX];
};
long int get_z(struct prog p, int step, int w, long int z) {
int x = 0;
long int y = 0;
if ((z % 26 + p.b[step]) == w) {
x = 0;
}
else {
x = 1;
}
int tmp_z = z / p.a[step];
y = tmp_z * ( 25*x + 1 );
z = y + (w + p.c[step]) * x;
return z;
}
void guess_w(struct prog p, int guesses[9], int z, int step) {
int w;
w = ( z % 26 ) + p.b[step];
if (w > 0 && w < 10) {
guesses[0] = w;
} else {
int idx = 0;
// If we can forsee the future
if (step < INSTRUCTION_SET_MAX-1) {
for (int i = 0; i < 9; i++) {
int new_w = 9-i;
int new_z = get_z(p, step, new_w, z);
int new_half_x = ((new_z%26)+p.b[step+1]);
if ( new_half_x >= 1 && new_half_x <= 9) {
guesses[idx++] = new_w;
}
}
}
if (idx == 0) {
for (int i = 0; i < 9; i++) {
guesses[i] = 9-i;
}
}
}
return;
}
void print_input(int input[14]) {
for (int i = 0; i < 14; i++) {
printf("%d", input[i]);
}
printf("\n");
}
bool solve_step(struct prog p, int step, long int z, int input[14]) {
if (step >= INSTRUCTION_SET_MAX) {
if (z == 0) {
print_input(input);
return true;
}
return false;
}
int guesses[9] = {0};
int w;
guess_w(p, guesses, z, step);
int starting_z = z;
for (int i = 0; i < 9; i++) {
z = starting_z;
w = guesses[i];
if (w == 0) break;
int new_input[14];
memcpy(new_input, input, sizeof(int[14]));
new_input[step] = w;
z = get_z(p, step, w, z);
if (solve_step(p, step+1, z, new_input)) {
return true;
}
}
return false;
}
void run(struct prog p) {
// We try to make x == 0
// So in fact we try to make (z%26 + B) == w
int input[14] = { 0 };
solve_step(p, 0, 0, input);
}
int main(int argc, char *argv[]) {
if (argc != 2) {
printf("Missing input file");
return 1;
}
FILE *file = fopen(argv[1], "r");
if (file == NULL) {
printf("Failed to open the input file");
return 1;
}
struct prog p;
char *line = NULL;
size_t n;
int line_nb = 0;
int block = -1;
while(getline(&line, &n, file) != -1) {
if (line[0] == 'i') {
block++;
line_nb = 0;
} else {
char op[4];
char c;
char value[6];
sscanf(line, "%s %c %s\n", op, &c, value);
if (line_nb == 4) {
p.a[block] = atoi(value);
}
else if (line_nb == 5) {
p.b[block] = atoi(value);
}
else if (line_nb == 15) {
p.c[block] = atoi(value);
}
}
line_nb++;
}
free(line);
fclose(file);
run(p);
return 0;
}
|
the_stack_data/143000.c |
void boxfill8(unsigned char *vram, int xsize, unsigned char c, int x0, int y0, int x1, int y1);
int add(int a, int b);
int start(){
char *vram;
int i, xsize, ysize;
vram = (char*)0xa0000;
xsize = 320;
ysize = 200;
for(i=(int)vram; i<=0xaffff; i++){
char *p;
p = (char*)i;
*p = i & 0x0f;
}
// boxfill8(vram, xsize, 1, 20, 20, 120, 120);
loop:
// return add(2, 5);
goto loop;
}
int add(int a, int b){
return a + b;
}
void boxfill8(unsigned char *vram, int xsize, unsigned char c, int x0, int y0, int x1, int y1){
int x,y;
for(y=y0; y<=y1; y++){
for(x=x0; x<=x1; x++){
vram[y*xsize + x] = c;
}
}
return;
}
|
the_stack_data/1155993.c | #include <stdio.h>
int puts(const char *);
int main(int argc, char **argv) {
int i;
printf("#Args = %d. They are:\n", argc-1);
for (i = 1; i < argc; ++i)
puts(argv[i]);
return 0;
}
|
the_stack_data/104829130.c | #include<stdio.h>
#include<stdlib.h>
int funCount(FILE* fi)
{
int count_0=0;
int read;
if(fi!=NULL)
{
while(fscanf(fi,"%d",&read)!=EOF)
{
if(read==0) count_0++;
}
return count_0;
}
else
{
return -1;
}
} |
the_stack_data/225142736.c | #include <stdio.h>
//again we write the following function
int main(){
int a = 5;
if (a==1)
printf("Nice try dude!");
else if (a==2)
printf("Sup");
else{
return a;}
} |
the_stack_data/142388.c | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
int n;
scanf("%d",&n);
int i,j,k;
for(i=n+1;i<110000;i++)
{
k=0;
for(j=2;j<i;j++)
{
if(i%j==0)
{
k++;
}
}
if(k==0)
{
printf("%d",i);
break;
}
}
return 0;
} |
the_stack_data/11075434.c | /***********************************************************************************
* MIT License *
* *
* Copyright (c) 2018 Keri Southwood-Smith *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy *
* of this software and associated documentation files (the "Software"), to deal *
* in the Software without restriction, including without limitation the rights *
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included in all *
* copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE *
* SOFTWARE. *
***********************************************************************************/
#include <stdio.h>
#include <stdlib.h>
void fizzbuzz(int min, int max);
/*
* Classic FizzBuzz problem wherein we print a sequence of numbers, replacing multiples of three
* with "Fizz", multiples of five with "Buzz" and multiples of three AND five with "FizzBuzz."
*/
/***************
*
* Description: Main loop of program
*
* Parameter(s):
* argc - number of arguments provided to program
* argv[] - array of arguments
*
* Returns:
* int to indicate success or failure
*/
int main(int argc, char *argv[])
{
switch (argc)
{
// no arguments given, so print from 1 to 100
case 1:
fizzbuzz(1, 100);
break;
// two arguments, which we interpret as the number to count to
case 2:
fizzbuzz(1, atoi(argv[1]));
break;
// three arguments, so we pass both values regardless of which is larger
case 3:
fizzbuzz(atoi(argv[1]), atoi(argv[2]));
break;
// user didn't correctly enter arguments, print out usage instructions
default:
printf("Usage: %s [max]\n", argv[0]);
printf("Usage: %s [min] [max]\n", argv[0]);
return 1;
}
printf("\n");
return 0;
}
/***************
*
* Description: Counts from min to max inserting Fizz, Buzz or FizzBuzz as appropriate
*
* Parameter(s):
* min: the number to count from
* max: the number to count to
*
* Returns:
* n/a
*/
void fizzbuzz(int min, int max)
{
// for loop won't work if max is larger than min, swap values
if (min > max) // min = 50, max = 15
{
printf("min was greater than max. Swapping.\n\n");
min = min + max; // min = 65, max = 15
max = min - max; // min = 65, max = 50
min = min - max; // min = 15, max = 50
}
// we want to start counting from 1, not 0, so set min to 1
// TODO: remove if we want to handle negative ints and 0
if (min < 1)
{
printf("min must be 1 or greater. Setting min to 1.\n\n");
min = 1;
}
for (int i = min, count = 1; i <= max; i++, count++)
{
if (i % 15 == 0)
{
printf("FizzBuzz");
}
else if (i % 3 == 0)
{
printf("Fizz");
}
else if (i % 5 == 0)
{
printf("Buzz");
}
else
{
printf("%d", i);
}
printf("%s", (count % 20) ? ", " : "\n");
}
return;
}
|
the_stack_data/184200.c | #include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#define MAXINT INT_MAX
const int arrsize = 100;
int main(){
int i, k, a[arrsize];
scanf("%d", &k);
if (k > arrsize) {
printf("Not enough space");
exit(0);
}
for (i = 0; i < k; i++) {
if (!i) a[i] = 1;
else {
if (a[i-1] > MAXINT / (2*i)) {
printf("Overflow");
exit(0);
}
a[i] = 2 * i * a[i-1];
}
}
for (i = 0; i < k; i++)
printf("%d ", a[i]);
return 0;
}
|
the_stack_data/22011579.c | // C99 definition of complex type: _Complex, but will not work with C++
_Complex double x1;
// float a;
// double b;
// long double c;
_Complex double x2 = 1.0;
|
the_stack_data/107953456.c | /*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)valloc.c 8.1 (Berkeley) 6/4/93
* $DragonFly: src/lib/libc/gen/valloc.c,v 1.3 2005/11/13 00:07:42 swildner Exp $
*/
#include <stdlib.h>
#include <unistd.h>
void *
valloc(size_t i)
{
long valsiz = getpagesize(), j;
void *cp = malloc(i + (valsiz-1));
j = ((long)cp + (valsiz-1)) &~ (valsiz-1);
return ((void *)j);
}
|
the_stack_data/62169.c | #include <stdio.h>
#include <string.h>
int main()
{
char *Haab[19]={"pop","no","zip","zotz","tzec","xul","yoxkin","mol","chen","yax","zac","ceh","mac","kankin","muan","pax","koyab","cumhu","uayet"};
char *Tzol[20]={"imix","ik","akbal","kan","chicchan","cimi","manik","lamat","muluk","ok","chuen","eb","ben","ix","mem","cib","caban","eznab","canac","ahau"};
int n,day,year,i,y,m,tday,tdd;
char month[10],d[10];
scanf("%d",&n);
printf("%d\n",n);
while(n--)
{
scanf("%d. %s %d",&day,month,&year);
for(i=0;i<19;i++)
{
if(strcmp(Haab[i],month) == 0)
{
tday=day+1+i*20;
break;
}
}
tday+=year*365;
y=tday/260;
m=tday%13;
if(m == 0)
m=13;
tdd=tday%20;
if(tdd == 0)
tdd=20;
strcpy(d,Tzol[tdd-1]);
if(tday % 260 == 0)
{
printf("%d %s %d\n",m,d,y-1);
continue;
}
printf("%d %s %d\n",m,d,y);
}
return 0;
}
|
the_stack_data/976471.c | #include <string.h>
int palindrome(const char *s)
{
int i,l;
l = strlen(s);
for(i=0; i<l/2; i++)
{
if ( s[i] != s[l-i-1] ) return 0;
}
return 1;
}
|
the_stack_data/115764387.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_iterative_factorial.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: atamraka <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/29 09:23:58 by atamraka #+# #+# */
/* Updated: 2021/05/29 09:35:18 by atamraka ### ########.fr */
/* */
/* ************************************************************************** */
int ft_iterative_factorial(int nb)
{
int counter;
int factorial;
if (nb < 0)
{
return (0);
}
else if (nb == 0)
{
return (1);
}
else
{
counter = nb;
factorial = 1;
while (counter != 0)
{
factorial = factorial * counter;
counter--;
}
return (factorial);
}
}
|
the_stack_data/2664.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
//Declare Helper Functions
void main_menu();
void create_menus();
void help();
void credits();
int main()
{
printf("DT's MENU CREATOR v.0.6\n");
printf("================================================================================");
main_menu();
}
void main_menu()
{
//Declare necessary variables
int yes_no = 0;
//Menu Structure
do
{
//Main menu choices
printf("\nMain Menu\n");
printf("\n1. Create new menu file\n2. Help\n3. Credits\n4. Exit\n\n");
printf("Please enter your choice: ");
scanf("%d",&yes_no);
}while(yes_no < 1 || yes_no >4);
//Select what to do
if (yes_no == 1)
create_menus();
else if (yes_no == 2)
help();
else if (yes_no == 3)
credits();
else
{
printf("\n================================================================================");
printf("\nThank you for using DT's MENU CREATOR\n");
printf("\n================================================================================\n");
system("PAUSE");
}
}
void create_menus()
{
//Declare necessary variables
int filenamelen, add_choices_len, i, j, menu_number, choices_number, yes_no = 0, count = 0;
//Filename necessary dynamic variable
char *text = malloc(200 * sizeof(char));
char *filename, *choices, *choices_text, *add_choices, *menu_title;
char int_to_string[10];
//Get Filename from user
printf("\n================================================================================");
printf("\nPlease enter your desired filename (MAX: 200 characters): ");
scanf(" %[^\n]s",text);
filenamelen = strlen(text) + 1;
filename = (char*)malloc(filenamelen * sizeof(char));
strcpy(filename, text);
strncat(filename, ".h",2);
//File Creation
FILE *f = fopen(filename, "r");
if (f == NULL)
{
f = fopen(filename, "w");
printf("The %s file was created!\n\n",filename);
free(filename);
free(text);
}
else
{
do
{
printf("The file already exist.Do you want to overwrite it?\n");
printf("1. if you want to overwrite it\n2. if you don't want to overwrite it\n");
printf("Please enter your choice: ");
scanf("%d",&yes_no);
}while(yes_no != 1 && yes_no != 2);
}
if (yes_no == 1)
{
f = fopen(filename, "w");
printf("The %s file was created!\n\n",filename);
free(filename);
free(text);
}
else if (yes_no == 2)
{
main_menu();
}
//Menu adder
printf("================================================================================");
printf("\nHow many menus do you want to create? ");
scanf("%d",&menu_number);
while (menu_number <= 0)
{
printf("\nYou must enter a number that is greater than 0");
printf("\nPlease insert your number again: ");
scanf("%d",&menu_number);
}
printf("\n================================================================================");
//Start writing to file
fprintf(f, "#include <stdio.h>\n");
fprintf(f, "#include <stdlib.h>\n\n");
for(i=0;i<menu_number;i++)
{
//Declare Function
fprintf(f, "int menu%d()\n{\n\t",i+1);
//Choices of the menu
printf("\nHow many choices do you want for the menu %d: ",i+1);
scanf("%d",&choices_number);
while (choices_number <= 0)
{
printf("\nYou must enter a number that is greater than 0");
printf("\nHow many choices do you want for the menu %d: ",i+1);
scanf("%d",&choices_number);
}
choices = malloc(choices_number * sizeof(char));
choices_text = malloc(1000 * sizeof(char));
//Function body
//Menu Header
menu_title = malloc(1000* sizeof(char));
printf("\nPlease enter menu title (MAX: 1000 characters): ");
scanf(" %[^\n]s",menu_title);
fprintf(f, "printf(\"\\n");
fprintf(f, "%s",menu_title);
fprintf(f, "\\n\");\n");
free(menu_title);
//Start menu choices
fprintf(f,"\tint choice;\n");
fprintf(f,"\tdo\n\t{\n");
for(j=0;j<choices_number;j++)
{
printf("\nPlease enter your %d choice text (MAX: 1000 characters/choice): ",j+1);
scanf(" %[^\n]s",choices_text);
while (choices_number <= 0)
{
printf("\nYou must enter a number that is greater than 0");
printf("\nPlease enter your %d choice text (MAX: 1000 characters/choice): ",j+1);
scanf("%d",&choices_number);
}
add_choices_len = strlen(choices_text) + 4;
add_choices = (char*)malloc(add_choices_len * sizeof(char));
//Adding number in front of choice
strcpy(add_choices, itoa(j+1,int_to_string,10));
strncat(add_choices, ". ",2);
strncat(add_choices,choices_text,strlen(choices_text));
fprintf(f,"\t\tprintf(\"");
fprintf(f, add_choices);
fprintf(f,"\\n\");\n");
}
fprintf(f,"\t\tprintf(\"\\nPlease enter your choice: \");\n");
fprintf(f,"\t\tscanf(\"%%d\",&choice);\n");
fprintf(f,"\t\tprintf(\"\\n\");\n");
fprintf(f,"\t}while(choice<=0 || choice>%d);\n}\n\n",choices_number);
printf("\n================================================================================");
free(choices);
free(choices_text);
free(add_choices);
}
fclose(f);
main_menu();
}
//Help
void help()
{
printf("\n================================================================================");
printf("\n- Step 1: Create a menu header file with my wizard by entering 1 in main menu.");
printf("\n- Step 2: Complete all the steps in wizard.");
printf("\n- Step 3: Create your .c file.");
printf("\n- Step 4: Add #include \"your_created_filename.h\".");
printf("\n- Step 5: The menu functions has names as menu1, menu2... as many as you created.");
printf("\n- Step 6: All the functions return a number of user choice so that you can add ");
printf("\n a switch case to add functionallity to your code.");
printf("\n- Step 7: That's it! You have fully functional menus.");
printf("\n\nMore info:\nYou can download an example program at general.tsikopoulos.eu.");
printf("\n\nCredits:\nDT's MENU CREATOR v.0.6 - Created by Tsikopoulos Dimitrios \n");
printf("\n================================================================================");
main_menu();
}
//Credits
void credits()
{
printf("\n================================================================================");
printf("\n #########################################");
printf("\n # #");
printf("\n # Created by Tsikopoulos Dimitrios #");
printf("\n # #");
printf("\n # DT's MENU CREATOR v.0.6 #");
printf("\n # #");
printf("\n # Website: general.tsikopoulos.eu #");
printf("\n # #");
printf("\n #########################################");
printf("\n\n================================================================================");
main_menu();
}
|
the_stack_data/312080.c | // RUN: %crabllvm --turn-undef-nondet --lower-unsigned-icmp --inline --devirt-functions=types --externalize-addr-taken-functions --crab-narrowing-iterations=2 --crab-widening-delay=2 --crab-widening-jump-set=0 --crab-check=assert --crab-stats --crab-dom=boxes --crab-track=arr --crab-singleton-aliases --crab-do-not-print-invariants --crab-sanity-checks "%s" 2>&1 | OutputCheck -l debug %s
// CHECK: ^29 Number of total safe checks$
// CHECK: ^ 0 Number of total error checks$
// CHECK: ^ 0 Number of total warning checks$
extern void __VERIFIER_error() __attribute__ ((__noreturn__));
extern char __VERIFIER_nondet_char(void);
extern int __VERIFIER_nondet_int(void);
extern long __VERIFIER_nondet_long(void);
extern void *__VERIFIER_nondet_pointer(void);
extern int __VERIFIER_nondet_int();
int PoCallDriver(int DeviceObject , int Irp );
int KbFilter_PnP(int DeviceObject , int Irp );
int IofCallDriver(int DeviceObject , int Irp );
int KeSetEvent(int Event , int Increment , int Wait );
int KeWaitForSingleObject(int Object , int WaitReason , int WaitMode , int Alertable ,
int Timeout );
int KbFilter_Complete(int DeviceObject , int Irp , int Context );
int KbFilter_CreateClose(int DeviceObject , int Irp );
int KbFilter_DispatchPassThrough(int DeviceObject , int Irp );
int KbFilter_Power(int DeviceObject , int Irp );
int PoCallDriver(int DeviceObject , int Irp );
int KbFilter_InternIoCtl(int DeviceObject , int Irp );
int KernelMode ;
int Executive ;
int DevicePowerState ;
int s ;
int UNLOADED ;
int NP ;
int DC ;
int SKIP1 ;
int SKIP2 ;
int MPR1 ;
int MPR3 ;
int IPC ;
int pended ;
int compFptr ;
int compRegistered ;
int lowerDriverReturn ;
int setEventCalled ;
int customIrp ;
int myStatus ;
void stub_driver_init(void)
{
{
s = NP;
pended = 0;
compFptr = 0;
compRegistered = 0;
lowerDriverReturn = 0;
setEventCalled = 0;
customIrp = 0;
return;
}
}
void _BLAST_init(void)
{
{
UNLOADED = 0;
NP = 1;
DC = 2;
SKIP1 = 3;
SKIP2 = 4;
MPR1 = 5;
MPR3 = 6;
IPC = 7;
s = UNLOADED;
pended = 0;
compFptr = 0;
compRegistered = 0;
lowerDriverReturn = 0;
setEventCalled = 0;
customIrp = 0;
return;
}
}
void IofCompleteRequest(int, int);
void errorFn(void);
int KbFilter_PnP(int DeviceObject , int Irp )
{ int devExt ;
int irpStack ;
int status ;
int event = __VERIFIER_nondet_int() ;
int DeviceObject__DeviceExtension = __VERIFIER_nondet_int() ;
int Irp__Tail__Overlay__CurrentStackLocation = __VERIFIER_nondet_int() ;
int irpStack__MinorFunction = __VERIFIER_nondet_int() ;
int devExt__TopOfStack = __VERIFIER_nondet_int() ;
int devExt__Started ;
int devExt__Removed ;
int devExt__SurpriseRemoved ;
int Irp__IoStatus__Status ;
int Irp__IoStatus__Information ;
int Irp__CurrentLocation = __VERIFIER_nondet_int() ;
int irpSp ;
int nextIrpSp ;
int nextIrpSp__Control ;
int irpSp___0 ;
int irpSp__Context ;
int irpSp__Control ;
long __cil_tmp23 ;
{
status = 0;
devExt = DeviceObject__DeviceExtension;
irpStack = Irp__Tail__Overlay__CurrentStackLocation;
if (irpStack__MinorFunction == 0) {
goto switch_0_0;
} else {
if (irpStack__MinorFunction == 23) {
goto switch_0_23;
} else {
if (irpStack__MinorFunction == 2) {
goto switch_0_2;
} else {
if (irpStack__MinorFunction == 1) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 5) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 3) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 6) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 13) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 4) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 7) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 8) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 9) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 12) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 10) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 11) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 15) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 16) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 17) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 18) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 19) {
goto switch_0_1;
} else {
if (irpStack__MinorFunction == 20) {
goto switch_0_1;
} else {
goto switch_0_1;
if (0) {
switch_0_0:
irpSp = Irp__Tail__Overlay__CurrentStackLocation;
nextIrpSp = Irp__Tail__Overlay__CurrentStackLocation - 1;
nextIrpSp__Control = 0;
if (s != NP) {
{
errorFn();
}
} else {
if (compRegistered != 0) {
{
errorFn();
}
} else {
compRegistered = 1;
}
}
{
irpSp___0 = Irp__Tail__Overlay__CurrentStackLocation - 1;
irpSp__Context = event;
irpSp__Control = 224;
status = IofCallDriver(devExt__TopOfStack,
Irp);
}
{
__cil_tmp23 = (long )status;
if (__cil_tmp23 == 259) {
{
KeWaitForSingleObject(event, Executive,
KernelMode,
0, 0);
}
}
}
if (status >= 0) {
if (myStatus >= 0) {
devExt__Started = 1;
devExt__Removed = 0;
devExt__SurpriseRemoved = 0;
}
}
{
Irp__IoStatus__Status = status;
myStatus = status;
Irp__IoStatus__Information = 0;
IofCompleteRequest(Irp, 0);
}
goto switch_0_break;
switch_0_23:
devExt__SurpriseRemoved = 1;
if (s == NP) {
s = SKIP1;
} else {
{
errorFn();
}
}
{
Irp__CurrentLocation ++;
Irp__Tail__Overlay__CurrentStackLocation ++;
status = IofCallDriver(devExt__TopOfStack,
Irp);
}
goto switch_0_break;
switch_0_2:
devExt__Removed = 1;
if (s == NP) {
s = SKIP1;
} else {
{
errorFn();
}
}
{
Irp__CurrentLocation ++;
Irp__Tail__Overlay__CurrentStackLocation ++;
IofCallDriver(devExt__TopOfStack, Irp);
status = 0;
}
goto switch_0_break;
switch_0_1: ;
if (s == NP) {
s = SKIP1;
} else {
{
errorFn();
}
}
{
Irp__CurrentLocation ++;
Irp__Tail__Overlay__CurrentStackLocation ++;
status = IofCallDriver(devExt__TopOfStack,
Irp);
}
goto switch_0_break;
} else {
switch_0_break: ;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
return (status);
}
}
int main(void)
{ int status ;
int irp = __VERIFIER_nondet_int() ;
int pirp ;
int pirp__IoStatus__Status ;
int irp_choice = __VERIFIER_nondet_int() ;
int devobj = __VERIFIER_nondet_int() ;
int __cil_tmp8 ;
KernelMode = 0;
Executive = 0;
DevicePowerState = 1;
s = 0;
UNLOADED = 0;
NP = 0;
DC = 0;
SKIP1 = 0;
SKIP2 = 0 ;
MPR1 = 0;
MPR3 = 0;
IPC = 0;
pended = 0;
compFptr = 0;
compRegistered = 0;
lowerDriverReturn = 0;
setEventCalled = 0;
customIrp = 0;
myStatus = 0;
{
{
status = 0;
pirp = irp;
_BLAST_init();
}
if (status >= 0) {
s = NP;
customIrp = 0;
setEventCalled = customIrp;
lowerDriverReturn = setEventCalled;
compRegistered = lowerDriverReturn;
pended = compRegistered;
pirp__IoStatus__Status = 0;
myStatus = 0;
if (irp_choice == 0) {
pirp__IoStatus__Status = -1073741637;
myStatus = -1073741637;
}
{
stub_driver_init();
}
{
if (status < 0) {
return (-1);
}
}
int tmp_ndt_1;
tmp_ndt_1 = __VERIFIER_nondet_int();
if (tmp_ndt_1 == 0) {
goto switch_1_0;
} else {
int tmp_ndt_2;
tmp_ndt_2 = __VERIFIER_nondet_int();
if (tmp_ndt_2 == 1) {
goto switch_1_1;
} else {
int tmp_ndt_3;
tmp_ndt_3 = __VERIFIER_nondet_int();
if (tmp_ndt_3 == 3) {
goto switch_1_3;
} else {
int tmp_ndt_4;
tmp_ndt_4 = __VERIFIER_nondet_int();
if (tmp_ndt_4 == 4) {
goto switch_1_4;
} else {
int tmp_ndt_5;
tmp_ndt_5 = __VERIFIER_nondet_int();
if (tmp_ndt_5 == 8) {
goto switch_1_8;
} else {
goto switch_1_default;
if (0) {
switch_1_0:
{
status = KbFilter_CreateClose(devobj, pirp);
}
goto switch_1_break;
switch_1_1:
{
status = KbFilter_CreateClose(devobj, pirp);
}
goto switch_1_break;
switch_1_3:
{
status = KbFilter_PnP(devobj, pirp);
}
goto switch_1_break;
switch_1_4:
{
status = KbFilter_Power(devobj, pirp);
}
goto switch_1_break;
switch_1_8:
{
status = KbFilter_InternIoCtl(devobj, pirp);
}
goto switch_1_break;
switch_1_default: ;
return (-1);
} else {
switch_1_break: ;
}
}
}
}
}
}
}
if (pended == 1) {
if (s == NP) {
s = NP;
} else {
goto _L___2;
}
} else {
_L___2:
if (pended == 1) {
if (s == MPR3) {
s = MPR3;
} else {
goto _L___1;
}
} else {
_L___1:
if (s != UNLOADED) {
if (status != -1) {
if (s != SKIP2) {
if (s != IPC) {
if (s == DC) {
goto _L___0;
}
} else {
goto _L___0;
}
} else {
_L___0:
if (pended == 1) {
if (status != 259) {
{
errorFn();
}
}
} else {
if (s == DC) {
if (status == 259) {
}
} else {
if (status != lowerDriverReturn) {
}
}
}
}
}
}
}
}
return (status);
}
}
void stubMoreProcessingRequired(void)
{
{
if (s == NP) {
s = MPR1;
} else {
{
errorFn();
}
}
return;
}
}
int IofCallDriver(int DeviceObject , int Irp )
{
int returnVal2 ;
int compRetStatus ;
int lcontext = __VERIFIER_nondet_int() ;
long long __cil_tmp7 ;
{
if (compRegistered) {
{
compRetStatus = KbFilter_Complete(DeviceObject, Irp, lcontext);
}
{
__cil_tmp7 = (long long )compRetStatus;
if (__cil_tmp7 == -1073741802) {
{
stubMoreProcessingRequired();
}
}
}
}
int tmp_ndt_6;
tmp_ndt_6 = __VERIFIER_nondet_int();
if (tmp_ndt_6 == 0) {
goto switch_2_0;
} else {
int tmp_ndt_7;
tmp_ndt_7 = __VERIFIER_nondet_int();
if (tmp_ndt_7 == 1) {
goto switch_2_1;
} else {
goto switch_2_default;
if (0) {
switch_2_0:
returnVal2 = 0;
goto switch_2_break;
switch_2_1:
returnVal2 = -1073741823;
goto switch_2_break;
switch_2_default:
returnVal2 = 259;
goto switch_2_break;
} else {
switch_2_break: ;
}
}
}
if (s == NP) {
s = IPC;
lowerDriverReturn = returnVal2;
} else {
if (s == MPR1) {
if (returnVal2 == 259) {
s = MPR3;
lowerDriverReturn = returnVal2;
} else {
s = NP;
lowerDriverReturn = returnVal2;
}
} else {
if (s == SKIP1) {
s = SKIP2;
lowerDriverReturn = returnVal2;
} else {
{
errorFn();
}
}
}
}
return (returnVal2);
}
}
void IofCompleteRequest(int Irp , int PriorityBoost )
{
{
if (s == NP) {
s = DC;
} else {
{
errorFn();
}
}
return;
}
}
int KeSetEvent(int Event , int Increment , int Wait )
{ int l = __VERIFIER_nondet_int() ;
{
setEventCalled = 1;
return (l);
}
}
int KeWaitForSingleObject(int Object , int WaitReason , int WaitMode , int Alertable ,
int Timeout )
{
{
if (s == MPR3) {
if (setEventCalled == 1) {
s = NP;
setEventCalled = 0;
} else {
goto _L;
}
} else {
_L:
if (customIrp == 1) {
s = NP;
customIrp = 0;
} else {
if (s == MPR3) {
{
errorFn();
}
}
}
}
int tmp_ndt_8;
tmp_ndt_8 = __VERIFIER_nondet_int();
if (tmp_ndt_8 == 0) {
goto switch_3_0;
} else {
goto switch_3_default;
if (0) {
switch_3_0:
return (0);
switch_3_default: ;
return (-1073741823);
} else {
}
}
}
}
int KbFilter_Complete(int DeviceObject , int Irp , int Context )
{ int event ;
{
{
event = Context;
KeSetEvent(event, 0, 0);
}
return (-1073741802);
}
}
int KbFilter_CreateClose(int DeviceObject , int Irp )
{ int irpStack__MajorFunction = __VERIFIER_nondet_int() ;
int devExt__UpperConnectData__ClassService = __VERIFIER_nondet_int() ;
int Irp__IoStatus__Status ;
int status ;
int tmp ;
{
status = myStatus;
if (irpStack__MajorFunction == 0) {
goto switch_4_0;
} else {
if (irpStack__MajorFunction == 2) {
goto switch_4_2;
} else {
if (0) {
switch_4_0: ;
if (devExt__UpperConnectData__ClassService == 0) {
status = -1073741436;
}
goto switch_4_break;
switch_4_2: ;
goto switch_4_break;
} else {
switch_4_break: ;
}
}
}
{
Irp__IoStatus__Status = status;
myStatus = status;
tmp = KbFilter_DispatchPassThrough(DeviceObject, Irp);
}
return (tmp);
}
}
int KbFilter_DispatchPassThrough(int DeviceObject , int Irp )
{ int Irp__Tail__Overlay__CurrentStackLocation = __VERIFIER_nondet_int() ;
int Irp__CurrentLocation = __VERIFIER_nondet_int() ;
int DeviceObject__DeviceExtension__TopOfStack = __VERIFIER_nondet_int() ;
int irpStack ;
int tmp ;
{
irpStack = Irp__Tail__Overlay__CurrentStackLocation;
if (s == NP) {
s = SKIP1;
} else {
{
errorFn();
}
}
{
Irp__CurrentLocation ++;
Irp__Tail__Overlay__CurrentStackLocation ++;
tmp = IofCallDriver(DeviceObject__DeviceExtension__TopOfStack, Irp);
}
return (tmp);
}
}
int KbFilter_Power(int DeviceObject , int Irp )
{ int irpStack__MinorFunction = __VERIFIER_nondet_int() ;
int devExt__DeviceState ;
int powerState__DeviceState = __VERIFIER_nondet_int() ;
int Irp__CurrentLocation = __VERIFIER_nondet_int() ;
int Irp__Tail__Overlay__CurrentStackLocation = __VERIFIER_nondet_int() ;
int devExt__TopOfStack = __VERIFIER_nondet_int() ;
int powerType = __VERIFIER_nondet_int() ;
int tmp ;
{
if (irpStack__MinorFunction == 2) {
goto switch_5_2;
} else {
if (irpStack__MinorFunction == 1) {
goto switch_5_1;
} else {
if (irpStack__MinorFunction == 0) {
goto switch_5_0;
} else {
if (irpStack__MinorFunction == 3) {
goto switch_5_3;
} else {
goto switch_5_default;
if (0) {
switch_5_2: ;
if (powerType == DevicePowerState) {
devExt__DeviceState = powerState__DeviceState;
}
switch_5_1: ;
switch_5_0: ;
switch_5_3: ;
switch_5_default: ;
goto switch_5_break;
} else {
switch_5_break: ;
}
}
}
}
}
if (s == NP) {
s = SKIP1;
} else {
{
errorFn();
}
}
{
Irp__CurrentLocation ++;
Irp__Tail__Overlay__CurrentStackLocation ++;
tmp = PoCallDriver(devExt__TopOfStack, Irp);
}
return (tmp);
}
}
int PoCallDriver(int DeviceObject , int Irp )
{
int compRetStatus ;
int returnVal ;
int lcontext = __VERIFIER_nondet_int() ;
unsigned long __cil_tmp7 ;
long __cil_tmp8 ;
{
if (compRegistered) {
{
compRetStatus = KbFilter_Complete(DeviceObject, Irp, lcontext);
}
{
__cil_tmp7 = (unsigned long )compRetStatus;
if (__cil_tmp7 == -1073741802) {
{
stubMoreProcessingRequired();
}
}
}
}
int tmp_ndt_9;
tmp_ndt_9 = __VERIFIER_nondet_int();
if (tmp_ndt_9 == 0) {
goto switch_6_0;
} else {
int tmp_ndt_10;
tmp_ndt_10 = __VERIFIER_nondet_int();
if (tmp_ndt_10 == 1) {
goto switch_6_1;
} else {
goto switch_6_default;
if (0) {
switch_6_0:
returnVal = 0;
goto switch_6_break;
switch_6_1:
returnVal = -1073741823;
goto switch_6_break;
switch_6_default:
returnVal = 259;
goto switch_6_break;
} else {
switch_6_break: ;
}
}
}
if (s == NP) {
s = IPC;
lowerDriverReturn = returnVal;
} else {
if (s == MPR1) {
{
__cil_tmp8 = (long )returnVal;
if (__cil_tmp8 == 259L) {
s = MPR3;
lowerDriverReturn = returnVal;
} else {
s = NP;
lowerDriverReturn = returnVal;
}
}
} else {
if (s == SKIP1) {
s = SKIP2;
lowerDriverReturn = returnVal;
} else {
{
errorFn();
}
}
}
}
return (returnVal);
}
}
int KbFilter_InternIoCtl(int DeviceObject , int Irp )
{ int Irp__IoStatus__Information ;
int irpStack__Parameters__DeviceIoControl__IoControlCode = __VERIFIER_nondet_int() ;
int devExt__UpperConnectData__ClassService = __VERIFIER_nondet_int() ;
int irpStack__Parameters__DeviceIoControl__InputBufferLength = __VERIFIER_nondet_int() ;
int sizeof__CONNECT_DATA = __VERIFIER_nondet_int() ;
int irpStack__Parameters__DeviceIoControl__Type3InputBuffer = __VERIFIER_nondet_int() ;
int sizeof__INTERNAL_I8042_HOOK_KEYBOARD = __VERIFIER_nondet_int() ;
int hookKeyboard__InitializationRoutine = __VERIFIER_nondet_int() ;
int hookKeyboard__IsrRoutine = __VERIFIER_nondet_int() ;
int Irp__IoStatus__Status ;
int hookKeyboard ;
int connectData ;
int status ;
int tmp ;
int __cil_tmp17 ;
int __cil_tmp18 ;
int __cil_tmp19 ;
int __cil_tmp20 = __VERIFIER_nondet_int() ;
int __cil_tmp21 ;
int __cil_tmp22 ;
int __cil_tmp23 ;
int __cil_tmp24 = __VERIFIER_nondet_int() ;
int __cil_tmp25 ;
int __cil_tmp26 ;
int __cil_tmp27 ;
int __cil_tmp28 = __VERIFIER_nondet_int() ;
int __cil_tmp29 = __VERIFIER_nondet_int() ;
int __cil_tmp30 ;
int __cil_tmp31 ;
int __cil_tmp32 = __VERIFIER_nondet_int() ;
int __cil_tmp33 ;
int __cil_tmp34 ;
int __cil_tmp35 = __VERIFIER_nondet_int() ;
int __cil_tmp36 ;
int __cil_tmp37 ;
int __cil_tmp38 = __VERIFIER_nondet_int() ;
int __cil_tmp39 ;
int __cil_tmp40 ;
int __cil_tmp41 = __VERIFIER_nondet_int() ;
int __cil_tmp42 ;
int __cil_tmp43 ;
int __cil_tmp44 = __VERIFIER_nondet_int() ;
int __cil_tmp45 ;
{
status = 0;
Irp__IoStatus__Information = 0;
{
//__cil_tmp17 = 128 << 2;
//__cil_tmp18 = 11 << 16;
//__cil_tmp19 = __cil_tmp18 | __cil_tmp17;
//__cil_tmp20 = __cil_tmp19 | 3;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp20) {
goto switch_7_exp_0;
} else {
{
//__cil_tmp21 = 256 << 2;
//__cil_tmp22 = 11 << 16;
//__cil_tmp23 = __cil_tmp22 | __cil_tmp21;
//__cil_tmp24 = __cil_tmp23 | 3;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp24) {
goto switch_7_exp_1;
} else {
{
//__cil_tmp25 = 4080 << 2;
//__cil_tmp26 = 11 << 16;
//__cil_tmp27 = __cil_tmp26 | __cil_tmp25;
//__cil_tmp28 = __cil_tmp27 | 3;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp28) {
goto switch_7_exp_2;
} else {
{
//__cil_tmp29 = 11 << 16;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp29) {
goto switch_7_exp_3;
} else {
{
//__cil_tmp30 = 32 << 2;
//__cil_tmp31 = 11 << 16;
//__cil_tmp32 = __cil_tmp31 | __cil_tmp30;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp32) {
goto switch_7_exp_4;
} else {
{
//__cil_tmp33 = 16 << 2;
//__cil_tmp34 = 11 << 16;
//__cil_tmp35 = __cil_tmp34 | __cil_tmp33;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp35) {
goto switch_7_exp_5;
} else {
{
//__cil_tmp36 = 2 << 2;
// __cil_tmp37 = 11 << 16;
//__cil_tmp38 = __cil_tmp37 | __cil_tmp36;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp38) {
goto switch_7_exp_6;
} else {
{
// __cil_tmp39 = 8 << 2;
// __cil_tmp40 = 11 << 16;
// __cil_tmp41 = __cil_tmp40 | __cil_tmp39;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp41) {
goto switch_7_exp_7;
} else {
{
// __cil_tmp42 = 1 << 2;
// __cil_tmp43 = 11 << 16;
// __cil_tmp44 = __cil_tmp43 | __cil_tmp42;
if (irpStack__Parameters__DeviceIoControl__IoControlCode == __cil_tmp44) {
goto switch_7_exp_8;
} else {
if (0) {
switch_7_exp_0: ;
if (devExt__UpperConnectData__ClassService != 0) {
status = -1073741757;
goto switch_7_break;
} else {
if (irpStack__Parameters__DeviceIoControl__InputBufferLength < sizeof__CONNECT_DATA) {
status = -1073741811;
goto switch_7_break;
}
}
connectData = irpStack__Parameters__DeviceIoControl__Type3InputBuffer;
goto switch_7_break;
switch_7_exp_1:
status = -1073741822;
goto switch_7_break;
switch_7_exp_2: ;
if (irpStack__Parameters__DeviceIoControl__InputBufferLength < sizeof__INTERNAL_I8042_HOOK_KEYBOARD) {
status = -1073741811;
goto switch_7_break;
}
hookKeyboard = irpStack__Parameters__DeviceIoControl__Type3InputBuffer;
if (hookKeyboard__InitializationRoutine) {
}
if (hookKeyboard__IsrRoutine) {
}
status = 0;
goto switch_7_break;
switch_7_exp_3: ;
switch_7_exp_4: ;
switch_7_exp_5: ;
switch_7_exp_6: ;
switch_7_exp_7: ;
switch_7_exp_8: ;
goto switch_7_break;
} else {
switch_7_break: ;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
{
if (status < 0) {
{
Irp__IoStatus__Status = status;
myStatus = status;
IofCompleteRequest(Irp, 0);
}
return (status);
}
}
{
tmp = KbFilter_DispatchPassThrough(DeviceObject, Irp);
}
return (tmp);
}
}
void errorFn(void)
{
{
ERROR: __VERIFIER_error();
return;
}
}
|
the_stack_data/29825331.c | /* Exercise 1-1. Run the `hello, world` program on your system.
Experiment with leaving out parts of the program, to see what error messages you get. */
#include <stdio.h>
int main()
{
printf("hello, world\n");
return 0;
}
|
the_stack_data/12638053.c |
const unsigned char displayFont[][3] = {
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 },
{ 0x00, 0x00, 0x00 }, // [SPACE]
{ 0x00, 0x1D, 0x00 }, // !
{ 0x18, 0x00, 0x18 }, // "
{ 0x1F, 0x0A, 0x1F }, // #
{ 0x0A, 0x1F, 0x14 }, // $
{ 0x13, 0x04, 0x19 }, // %
{ 0x0A, 0x15, 0x0B }, // &
{ 0x00, 0x18, 0x00 }, // '
{ 0x00, 0x0E, 0x11 }, // (
{ 0x11, 0x0E, 0x00 }, // )
{ 0x15, 0x0E, 0x15 }, // *
{ 0x04, 0x0E, 0x04 }, // +
{ 0x01, 0x02, 0x00 }, // ,
{ 0x04, 0x04, 0x04 }, // -
{ 0x00, 0x03, 0x00 }, // .
{ 0x01, 0x0E, 0x10 }, // /
{ 0x1F, 0x11, 0x1F }, // 0
{ 0x09, 0x1F, 0x01 }, // 1
{ 0x17, 0x15, 0x1D }, // 2
{ 0x11, 0x15, 0x1F }, // 3
{ 0x1C, 0x04, 0x1F }, // 4
{ 0x1D, 0x15, 0x17 }, // 5
{ 0x1F, 0x15, 0x17 }, // 6
{ 0x10, 0x10, 0x1F }, // 7
{ 0x1F, 0x15, 0x1F }, // 8
{ 0x1D, 0x15, 0x1F }, // 9
{ 0x00, 0x0A, 0x00 }, // :
{ 0x01, 0x0A, 0x00 }, // ;
{ 0x04, 0x0A, 0x11 }, // <
{ 0x0A, 0x0A, 0x0A }, // =
{ 0x11, 0x0A, 0x04 }, // >
{ 0x10, 0x15, 0x18 }, // ?
{ 0x0E, 0x15, 0x0D }, // @
{ 0x0F, 0x14, 0x0F }, // A
{ 0x1F, 0x15, 0x0A }, // B
{ 0x0E, 0x11, 0x11 }, // C
{ 0x1F, 0x11, 0x0E }, // D
{ 0x1F, 0x15, 0x15 }, // E
{ 0x1F, 0x14, 0x14 }, // F
{ 0x0E, 0x15, 0x17 }, // G
{ 0x1F, 0x04, 0x1F }, // H
{ 0x11, 0x1F, 0x11 }, // I
{ 0x02, 0x01, 0x1E }, // J
{ 0x1F, 0x04, 0x1B }, // K
{ 0x1F, 0x01, 0x01 }, // L
{ 0x1F, 0x08, 0x1F }, // M
{ 0x1F, 0x0E, 0x1F }, // N
{ 0x0E, 0x11, 0x0E }, // O
{ 0x1F, 0x14, 0x08 }, // P
{ 0x0E, 0x13, 0x0F }, // Q
{ 0x1F, 0x16, 0x0D }, // R
{ 0x09, 0x15, 0x12 }, // S
{ 0x10, 0x1F, 0x10 }, // T
{ 0x1E, 0x01, 0x1F }, // U
{ 0x1e, 0x01, 0x1e }, // V
{ 0x1F, 0x06, 0x1F }, // W
{ 0x1B, 0x04, 0x1B }, // X
{ 0x18, 0x07, 0x18 }, // Y
{ 0x13, 0x15, 0x19 }, // Z
{ 0x00, 0x1F, 0x11 }, // [
{ 0x18, 0x04, 0x03 }, // \
{ 0x00, 0x00, 0x00 },
{ 0x11, 0x1F, 0x00 }, // ]
{ 0x08, 0x10, 0x08 }, // ^
{ 0x01, 0x01, 0x01 }, // _
{ 0x10, 0x08, 0x00 }, // `
{ 0x03, 0x05, 0x07 }, // a
{ 0x1F, 0x05, 0x02 }, // b
{ 0x02, 0x05, 0x05 }, // c
{ 0x02, 0x05, 0x1F }, // d
{ 0x06, 0x0B, 0x0D }, // e
{ 0x04, 0x0F, 0x14 }, // f
{ 0x05, 0x0D, 0x0E }, // g
{ 0x1F, 0x04, 0x03 }, // h
{ 0x00, 0x17, 0x00 }, // i
{ 0x01, 0x01, 0x16 }, // j
{ 0x0F, 0x02, 0x05 }, // k
{ 0x11, 0x1F, 0x01 }, // l
{ 0x07, 0x06, 0x07 }, // m
{ 0x07, 0x04, 0x03 }, // n
{ 0x02, 0x05, 0x02 }, // o
{ 0x07, 0x0A, 0x04 }, // p
{ 0x04, 0x0A, 0x07 }, // q
{ 0x0F, 0x04, 0x04 }, // r
{ 0x05, 0x0F, 0x0A }, // s
{ 0x08, 0x1F, 0x08 }, // t
{ 0x06, 0x01, 0x07 }, // u
{ 0x06, 0x03, 0x06 }, // v
{ 0x07, 0x03, 0x07 }, // w
{ 0x05, 0x02, 0x05 }, // x
{ 0x09, 0x05, 0x0E }, // y
{ 0x0B, 0x0F, 0x0D }, // z
{ 0x04, 0x1B, 0x11 }, // {
{ 0x00, 0x1F, 0x00 }, // |
{ 0x11, 0x1B, 0x04 }, // }
{ 0x08, 0x18, 0x10 }, // ~
{ 0x00, 0x00, 0x00 }, // [DEL]
};
|
the_stack_data/926839.c | #include <stdio.h>
#include <time.h>
#define MAXN 1000
int notprime[MAXN + 5], primes[MAXN + 5], len;
void GetPrime()
{
for (int i = 2; i <= MAXN; i++)
{
if (!notprime[i])
{
primes[len++] = i;
printf("%d\n", i);
}
for (int j = 0; j < len; j++)
{
if (i*primes[j] > MAXN) break;
notprime[i*primes[j]] = 1;
if (i%primes[j] == 0) break;
}
}
}
int main()
{
clock_t StartTime, FinishTime;
StartTime = clock();
GetPrime();
FinishTime = clock();
printf("%.3lf seconds", (double)(FinishTime - StartTime) / CLOCKS_PER_SEC);
//system("pause");
return 0;
}
|
the_stack_data/718673.c | /* { dg-do compile } */
/* { dg-options "-O2 -march=k8" } */
unsigned short good(unsigned short a)
{
return (a >> 8 | a << 8);
}
/* { dg-final { scan-assembler "rol" } } */
|
the_stack_data/82949484.c | #include <stdio.h>
void staticVariable (int n);
int main () {
int i;
printf("Calling:");
staticVariable(1);
printf("Calling:");
staticVariable(10);
printf("Calling:");
staticVariable(100);
printf("Calling:");
staticVariable(1000);
printf("Finished Calling:");
}
void staticVariable (int n) {
int test = 0;
test = test + n;
printf("Variable = %d\n", test);
}
|
the_stack_data/476312.c |
#include <stdio.h>
#include <stdlib.h>
#define X 'X'
#define O '0'
#define WAIT 4
struct node
{
int position;
char character;
struct node *next;
}*start = NULL;
struct node *prev_node = NULL;
void printWelcomeMessage()
{
printf("Tic Tac Toe Game\n");
printf("player 1 (X) - player 2 (O)\n");
printf("\n\n");
}
void insertNode(int position, char character)
{
struct node *current_node = NULL;
current_node = (struct node*)malloc(sizeof(struct node));
if(current_node == NULL)
{
printf("\n[ERROR] Memory cannot be allocated.\n");
exit(0);
}
else
{
current_node->position = position;
current_node->character = character;
current_node->next = NULL;
prev_node->next = current_node;
prev_node = current_node;
}
}
void createBoard()
{
start = (struct node*)malloc(sizeof(struct node));
if(start == NULL)
{
printf("\n[ERROR] Memory cannot be allocated.\n");
exit(0);
}
else
{
start->position = 1;
start->character = '1';
start->next = NULL;
prev_node = start;
}
for (int i=2; i<10; i++)
{
insertNode(i, i+'0');
}
}
int checkPosition(int position)
{
struct node *prev_node = start;
while (prev_node!= NULL)
{
if(prev_node->position == position)
{
if ((prev_node->character==X) || (prev_node->character==O))
{
printf("\n[ERROR] Position %d is already occupied. Please choose another position.\n\n", position);
sleep(WAIT);
return 0;
}
else
{
return 1;
}
}
prev_node = prev_node->next;
}
}
void insertCharacterAtPosition(int position, char character)
{
struct node *prev_node = start;
while (prev_node!= NULL)
{
if(prev_node->position == position)
{
prev_node->character = character;
}
prev_node = prev_node->next;
}
}
int checkWin()
{
struct node *prev_node = start;
char charList[9] = {'1', '2', '3', '4', '5', '6', '7', '8', '9'};
for(int i=0; i<9; i++)
{
charList[i] = prev_node->character;
prev_node = prev_node->next;
}
for(int i=0; i<9; i+=3)
{
if ((charList[i] == charList[i+1]) && (charList[i] == charList[i+2]))
{
return 1;
}
}
// Checking for vertical victory
for(int i=0; i<3; i++)
{
if ((charList[i] == charList[i+3]) && (charList[i+3] == charList[i+6]))
{
return 1;
}
}
// Checking for diagonal victory
if ((charList[0] == charList[4]) && (charList[4] == charList[8]))
{
return 1;
}
else if ((charList[2] == charList[4]) && (charList[4] == charList[6]))
{
return 1;
}
return 0;
}
/*
This function is used to display the welcome message along with the game board.
*/
void display()
{
printWelcomeMessage();
struct node *prev_node;
if(start == NULL)
{
printf("The list is empty");
}
else
{
int counter=0;
prev_node = start;
printf("\n");
while(prev_node!=NULL)
{
for (int i=0; i<3; i++)
{
printf(" | | \n");
for (int j=0; j<3; j++)
{
if (j != 2)
{
printf(" %c |", prev_node->character);
prev_node = prev_node->next;
counter ++;
}
else
{
printf(" %c ", prev_node->character);
prev_node = prev_node->next;
counter++;
}
}
if (counter != 9)
{
printf("\n_____|_____|_____\n");
}
else
{
printf("\n | | \n");
}
}
}
}
}
/*
Main function of the script.
*/
void main()
{
int counter = 0, position=0, num=0;
char character, choice[100];
createBoard();
while (counter < 9)
{
display();
num = counter % 2;
if (num == 0)
{
character = X;
}
else
{
character = O;
}
printf("\nPlayer %d, enter your choice: ", num+1);
gets(choice);
position = atoi(choice);
if ((position >= 1) && (position <= 9))
{
if (checkPosition(position))
{
insertCharacterAtPosition(position, character);
if(checkWin())
{
display();
printf("\nConguratulations !!! Player %d won !!!", num+1);
break;
}
}
else
{
continue;
}
counter++;
}
else
{
printf("\n[ERROR] Invalid input...Please enter a number between 1 and 9\n");
sleep(WAIT);
}
}
if(counter == 9)
{
display();
printf("\nThe match ended with a DRAW !!! Better Luck Next Time !!!");
}
}
|
the_stack_data/125141860.c | #include <stdio.h>
int main()
{
int n, acertos = 0;
int respostas[20];
int gabarito[20];
scanf("%d",&n);
for (int i = 1 ; i <= n; i++)
{
scanf("%d",&respostas[i]);
}
for (int i = 1 ; i <= n; i++)
{
scanf ("%d",&gabarito[i]);
}
for (int i = 1; i <= n; i++)
{
if (respostas[i] == gabarito[i]){
acertos++;
}
}
if (acertos>1) {
printf("%d acertos", acertos);
} else {
printf("%d acerto", acertos);
}
return 0;
}
|
the_stack_data/95450643.c |
//{{BLOCK(shared)
//======================================================================
//
// shared, 16x16@8,
// + palette 10 entries, not compressed
// Total size: 20 = 20
//
// Time-stamp: 2021-01-10, 22:12:04
// Exported by Cearn's GBA Image Transmogrifier, v0.8.6
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
const unsigned short sharedPal[10] __attribute__((aligned(4)))=
{
0x0000,0x56B5,0x7FFF,0x0853,0x0EBA,0x0C63,0x0C7A,0x7DC3,
0x3905,0x1460,
};
//}}BLOCK(shared)
|
the_stack_data/32951030.c | /*
<TAGS>signal_processing filter</TAGS>
DESCRIPTION:
Calculate the Fisher transformation for an array of Pearson's correlation coefficients
Simply the inverse hyperbolic function of each value
see http://en.wikipedia.org/wiki/Fisher_transformation
NOTE: a limit of +-3.8 is put on the transform, which is sufficient accuracy for
correlation coefficients to a precision of 0.001
NOTE: for type-2 correlations (range 0-1), this translates to a range of 0 to 7.6
USES:
Allows hypothesis testing for population correlation coefficients
DEPENDENCY TREE:
No dependencies
ARGUMENTS:
double *data : input array of data (will be transformed)
long n : number of elements in the array
int type :
1: correlations can range from -1 to 1
2: correlations can range from 0 to 1
RETURN VALUE: NONE
Oringinal input data will be transformed
*/
#include <math.h>
void xf_fishertransform2_d(double *data, long n, int type) {
long i;
double aa;
if(n<1) return;
if(type==1) {
for(i=0;i<n;i++) {
aa=data[i];
if(isfinite(aa)) {
aa=atanh(aa);
if(aa<-3.8) aa=-3.8;
else if(aa>3.8) aa=3.8;
data[i]=aa;
}
}
}
else if(type==2) {
for(i=0;i<n;i++) {
aa=data[i];
if(isfinite(aa)) {
aa = atanh ( (2.0*aa) - 1.0 ) ;
if(aa<-3.8) aa=-3.8;
else if(aa>3.8) aa=3.8;
aa+=3.8;
data[i]=aa;
}
}
}
return;
}
|
the_stack_data/30072.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memset.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: avolgin <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/10/29 15:07:16 by avolgin #+# #+# */
/* Updated: 2017/11/01 22:10:56 by avolgin ### ########.fr */
/* */
/* ************************************************************************** */
#include <string.h>
void *ft_memset(void *b, int c, size_t len)
{
char *copy_b;
int i;
unsigned char a;
a = (char)c;
i = 0;
copy_b = b;
while (len--)
{
copy_b[i] = a;
i++;
}
return (b);
}
|
the_stack_data/17734.c | #include <stdio.h>
int main()
{
int i,j,N,cout1 = 1,cout2 = 2, cout3=3;
scanf("%d", &N);
for (i = 0; i < N; i++)
{
printf("%d %d %d PUM\n",cout1,cout2, cout3);
cout1 =cout3+2;
cout2 = cout3+3;
cout3 = cout3+4;
}
return 0;
}
|
the_stack_data/247019145.c | #include <stdio.h>
#include <stdlib.h>
#include<string.h>
#include<math.h>
int a[10000000];
int cmp(const void *s, const void *b)
{
return *(int*)b - *(int*)s;
}
int main()
{
int n,k,r,d,i,t;
scanf("%d",&n);
for(i=0;i<n;i++) scanf("%d",&a[i]);
scanf("%d",&k);
qsort(a,n,sizeof(a[0]), cmp);
d=1;
for(i=0;i<n-1;i++){
if (d==k) break;
if (a[i]>a[i+1]) d++;
}
if (k==1) printf("%d",a[0]);
else printf("%d ",a[i]);
d=1;
r=i;
for(i=0;i<n-1;i++){
if (d==k+1) break;
if (a[i]>a[i+1]) d++;
}
if (k==1) printf("%d",i+1);
else printf("%d",i-r);
return 0;
} |
the_stack_data/242329697.c | #include <stdio.h>
int main()
{
printf("Hello from the external project!");
return 0;
} |
the_stack_data/126707.c |
void foo(int ** dest, int *source)
{
*dest = source;
}
int main()
{
int *p, *q;
*p = 1;
foo(&q, p);
*q = 2;
return 0;
}
|
the_stack_data/101041.c |
//{{BLOCK(win)
//======================================================================
//
// win, 256x256@8,
// + palette 256 entries, not compressed
// + 484 tiles (t|f|p reduced) not compressed
// + regular map (in SBBs), not compressed, 32x32
// Total size: 512 + 30976 + 2048 = 33536
//
// Time-stamp: 2020-11-14, 13:10:28
// Exported by Cearn's GBA Image Transmogrifier, v0.8.3
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
const unsigned short winTiles[15488] __attribute__((aligned(4)))=
{
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x5858,0x5858,0x5858,0x5858,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x3F3F,0x3F3F,0x3F3F,0x373F,0x5858,0x5858,0x5858,0x5858,
0x9393,0x9393,0x9393,0x5893,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x7384,0x7373,0x7373,0x8484,0x738C,0x7373,0x7373,0x7373,
0x7358,0x7373,0x7373,0x7373,0x3758,0x7384,0x7373,0x7373,
0x8C58,0x7384,0x7373,0x7373,0x3158,0x7384,0x7373,0x8473,
0x5893,0x1273,0x7373,0x8484,0x5893,0x8493,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x7373,0x7373,0x8473,0x1284,
0x7373,0x8473,0x8484,0x8484,0x7373,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x5D12,0x1212,0x1212,0x8484,0x1212,
0x8484,0x8484,0x8484,0x7384,0x8484,0x8484,0x8484,0x1284,
0x8484,0x8484,0x8484,0x1284,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x2742,0x2727,0x2727,0x2727,0x4227,0x2727,0x2727,0x2727,
0x425D,0x2727,0x2727,0x2727,0x275D,0x2727,0x2727,0x2727,
0x275D,0x2727,0x2727,0x2727,0x2784,0x2727,0x2727,0x2727,
0x2712,0x2742,0x2727,0x2727,0x8412,0x4227,0x4242,0x2742,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x4227,0x0337,0x3F3F,0x3F3F,0x4227,0x5827,0x5858,0x5858,
0x2727,0x374D,0x9303,0x9393,0x2727,0x494D,0x9303,0x9393,
0x2727,0x374D,0x9303,0x9393,0x4227,0x035D,0x9303,0x9393,
0x4227,0x375D,0x033F,0x9358,0x2727,0x4D42,0x3727,0x5803,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x5858,0x5858,0x5858,0x5858,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x3F93,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x5858,0x5858,0x5858,0x5858,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x933F,0x9393,0x9393,0x9393,
0x273F,0x2727,0x2727,0x2727,0x2A03,0x2742,0x2727,0x2727,
0x5858,0x424A,0x2727,0x2727,0x583F,0x2A03,0x2727,0x2727,
0x3F93,0x2A03,0x2742,0x2727,0x9393,0x2A03,0x274D,0x2727,
0x9393,0x3103,0x4D42,0x2727,0x9393,0x0393,0x2737,0x2727,
0x2727,0x5D27,0x8473,0x8484,0x2727,0x2727,0x7384,0x1284,
0x2727,0x2727,0x735D,0x8484,0x2727,0x2727,0x735D,0x8484,
0x2727,0x2727,0x125D,0x8412,0x2727,0x2727,0x8427,0x8484,
0x2727,0x2727,0x1227,0x8484,0x2727,0x2727,0x8427,0x8484,
0x8484,0x8484,0x8484,0x8484,0x1212,0x1212,0x1212,0x8412,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8412,0x1284,0x1212,0x1212,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x1212,0x8484,0x8484,0x1284,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x8F58,0x8484,0x8484,0x9393,0x0393,0x8473,0x8484,
0x9393,0x5893,0x7358,0x8484,0x9393,0x9393,0x5858,0x0412,
0x9393,0x9393,0x5893,0x1293,0x9393,0x9393,0x9393,0x9358,
0x9393,0x9393,0x9393,0x5893,0x9393,0x9393,0x9393,0x9393,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8404,0x8484,0x8484,0x8484,0x0473,0x8484,0x8484,0x8484,
0x8C58,0x0412,0x8484,0x8484,0x0358,0x8F93,0x8473,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x1284,0x5D12,0x5D5D,0x2727,0x8484,0x1284,0x1212,0x8412,
0x8484,0x8484,0x8484,0x1284,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x4242,0x2727,0x2727,0x2727,0x275D,0x4227,0x2727,0x2727,
0x1212,0x2784,0x2742,0x2727,0x8484,0x1212,0x275D,0x2742,
0x8484,0x8484,0x1212,0x4227,0x8484,0x8484,0x8484,0x5D12,
0x8484,0x8484,0x8484,0x7384,0x8484,0x8484,0x8484,0x8484,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x275D,0x2727,0x2727,0x2727,0x8473,0x2727,0x2727,0x2727,
0x2727,0x2727,0x4D42,0x0349,0x2727,0x2727,0x4227,0x9327,
0x2727,0x2727,0x2727,0x8F42,0x2727,0x2727,0x2727,0x4942,
0x2727,0x2727,0x2727,0x494D,0x2727,0x2727,0x2727,0x494D,
0x2727,0x2727,0x2727,0x4942,0x2727,0x2727,0x2727,0x3742,
0x9393,0x9393,0x9393,0x9393,0x9358,0x9393,0x9393,0x9393,
0x9303,0x9393,0x9393,0x9393,0x9303,0x9393,0x9393,0x9393,
0x9303,0x9393,0x9393,0x9393,0x9303,0x9393,0x9393,0x9393,
0x9303,0x9393,0x9393,0x9393,0x9303,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x3F93,0x9393,0x9393,0x9393,0x3F93,
0x9393,0x9393,0x9393,0x3F3F,0x9393,0x9393,0x3F93,0x313F,
0x9393,0x9393,0x3F93,0x3F3F,0x9393,0x3F93,0x3F3F,0x3131,
0x3F93,0x3F3F,0x5631,0x5656,0x3F3F,0x563F,0x5656,0x2256,
0x3F3F,0x3156,0x2256,0x2222,0x563F,0x5656,0x2222,0x6262,
0x5631,0x2256,0x6222,0x6262,0x5656,0x2222,0x6262,0x7C62,
0x3F3F,0x3F3F,0x3F3F,0x313F,0x5656,0x5656,0x5656,0x5656,
0x5656,0x2256,0x5656,0x5656,0x2222,0x2222,0x2222,0x2222,
0x6262,0x6262,0x6262,0x6262,0x6262,0x6262,0x6262,0x6262,
0x4A4A,0x757C,0x7C75,0x4A7C,0x4545,0x4545,0x4545,0x4545,
0x3F3F,0x933F,0x9393,0x9393,0x3131,0x3F3F,0x3F3F,0x9393,
0x5656,0x3156,0x3F3F,0x933F,0x5622,0x5656,0x3F56,0x3F3F,
0x2222,0x5622,0x5656,0x3F56,0x6262,0x2222,0x5656,0x3F56,
0x6262,0x2262,0x5622,0x5656,0x4A7C,0x6262,0x2222,0x5656,
0x9393,0x9393,0x0303,0x425D,0x9393,0x583F,0x0303,0x425D,
0x3F93,0x5858,0x5D49,0x2727,0x5893,0x5D3F,0x424D,0x2727,
0x0393,0x4D2A,0x2727,0x2727,0x0393,0x4D2A,0x2727,0x2727,
0x5893,0x5D93,0x2727,0x2727,0x3F93,0x5803,0x4227,0x2727,
0x2727,0x2727,0x8427,0x8484,0x2727,0x2727,0x8427,0x8484,
0x2727,0x2727,0x8427,0x8412,0x2727,0x2727,0x5D42,0x8412,
0x2727,0x2727,0x2727,0x7384,0x2727,0x2727,0x4227,0x8427,
0x2727,0x2727,0x2727,0x2742,0x2727,0x2727,0x2727,0x2727,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8473,0x8484,0x8484,0x8484,
0x735D,0x8484,0x8484,0x8484,0x5D42,0x8484,0x8484,0x8484,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x3F93,0x0358,0x0303,0x5803,0x033F,0x5603,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x5893,0x0358,0x0303,0x5803,
0x0303,0x223F,0x6222,0x3F62,0x7C62,0x6975,0x6969,0x1F69,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x933F,0x9393,0x9393,0x9393,
0x9303,0x9393,0x9393,0x9393,0x0331,0x3F58,0x9393,0x9393,
0x9393,0x5858,0x5858,0x7393,0x9393,0x9393,0x5893,0x5858,
0x9393,0x9393,0x9393,0x5893,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x8484,0x8484,0x8484,0x8484,0x0473,0x8484,0x8484,0x8484,
0x8493,0x8484,0x8484,0x8484,0x8C58,0x8404,0x8484,0x8484,
0x5858,0x848C,0x8404,0x8484,0x5893,0x9358,0x7373,0x0484,
0x9393,0x5893,0x5858,0x7393,0x9393,0x9393,0x9393,0x0358,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x0473,0x8484,0x8484,0x8484,
0x7384,0x425D,0x2727,0x2727,0x8484,0x2712,0x2727,0x2727,
0x8484,0x5D73,0x2742,0x2727,0x8484,0x2712,0x2742,0x2727,
0x8484,0x5D12,0x4227,0x2727,0x8484,0x1284,0x5D12,0x4227,
0x8484,0x8484,0x7384,0x5D12,0x8484,0x8484,0x8484,0x7384,
0x2727,0x2727,0x2727,0x3127,0x2727,0x2727,0x4227,0x585D,
0x2727,0x2727,0x4D27,0x032A,0x2727,0x2727,0x4227,0x8F49,
0x2727,0x2727,0x2727,0x4D27,0x2727,0x2727,0x2727,0x2727,
0x4227,0x2727,0x2727,0x2727,0x5D84,0x4227,0x2727,0x2727,
0x9358,0x9393,0x9393,0x9393,0x9358,0x9393,0x9393,0x9393,
0x0303,0x9358,0x9393,0x9393,0x2A2A,0x5831,0x9393,0x9393,
0x4D4D,0x3F27,0x9358,0x9393,0x2727,0x494D,0x9303,0x9393,
0x2727,0x4942,0x9303,0x9393,0x2727,0x3127,0x9303,0x9393,
0x9393,0x9393,0x3F93,0x3131,0x9393,0x9393,0x3F93,0x5656,
0x9393,0x9393,0x3F3F,0x5656,0x9393,0x9393,0x3F3F,0x5656,
0x9393,0x9393,0x313F,0x5656,0x9393,0x9393,0x313F,0x5656,
0x9393,0x3F93,0x313F,0x2256,0x9393,0x3F93,0x313F,0x2256,
0x2256,0x6222,0x4A62,0x457C,0x2256,0x6262,0x7C4A,0x4545,
0x2222,0x6262,0x457C,0x4545,0x6222,0x4A62,0x4545,0x4545,
0x6222,0x7C62,0x4545,0x4545,0x6222,0x7562,0x4545,0x4545,
0x6222,0x754A,0x4545,0x4545,0x6222,0x754A,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x7545,0x624A,0x2262,0x5622,0x4545,0x4A45,0x6262,0x5622,
0x4545,0x7545,0x6262,0x2222,0x4545,0x4545,0x624A,0x2262,
0x4545,0x4545,0x627C,0x2262,0x4545,0x4545,0x4A45,0x2262,
0x4545,0x4545,0x4A45,0x2262,0x4545,0x4545,0x4A45,0x2262,
0x3F31,0x933F,0x9393,0x9393,0x5656,0x933F,0x9393,0x9393,
0x5656,0x3F3F,0x9393,0x9393,0x5656,0x3F31,0x9393,0x9393,
0x5656,0x3F31,0x9393,0x9393,0x5622,0x3F31,0x9393,0x9393,
0x5622,0x3F56,0x933F,0x9393,0x5622,0x3F56,0x933F,0x9393,
0x9393,0x2A03,0x274D,0x2727,0x5893,0x2758,0x4D4D,0x2727,
0x9393,0x3193,0x2A31,0x2727,0x9393,0x5893,0x0303,0x4D2A,
0x9393,0x9393,0x0393,0x4D2A,0x9393,0x9393,0x5893,0x498F,
0x9393,0x9393,0x3F93,0x0358,0x9393,0x9393,0x9393,0x9393,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,0x2727,
0x4D4D,0x424D,0x2727,0x2727,0x2A2A,0x492A,0x2727,0x2727,
0x0303,0x9303,0x4227,0x2727,0x9393,0x8F03,0x2742,0x2727,
0x4227,0x125D,0x8484,0x8484,0x2727,0x8412,0x8484,0x8484,
0x5D42,0x8412,0x8484,0x8484,0x5D42,0x8412,0x8484,0x8484,
0x5D42,0x8412,0x8484,0x8484,0x2727,0x1284,0x8484,0x8484,
0x2727,0x8412,0x8484,0x8484,0x5D42,0x8473,0x8484,0x8484,
0x6262,0x5862,0x8F03,0x697C,0x6969,0x7C45,0x1F62,0x1F45,
0x7575,0x1F75,0x1F69,0x1F75,0x7575,0x7575,0x7575,0x1F1F,
0x7575,0x7575,0x7575,0x1F1F,0x7575,0x7575,0x1F75,0x1F1F,
0x7575,0x7575,0x1F75,0x1F1F,0x7575,0x1F75,0x1F1F,0x1F1F,
0x6969,0x1F69,0x1F1F,0x691F,0x1F75,0x1F1F,0x1F1F,0x751F,
0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,
0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,
0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,
0x621F,0x033F,0x933F,0x9393,0x4569,0x3F75,0x3F03,0x9393,
0x1F1F,0x7C69,0x5803,0x9393,0x1F1F,0x691F,0x0356,0x9393,
0x1F1F,0x691F,0x0362,0x9393,0x1F1F,0x451F,0x0362,0x9393,
0x1F1F,0x691F,0x0362,0x9393,0x1F1F,0x691F,0x0362,0x9393,
0x9393,0x9393,0x9393,0x5893,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x733F,0x8404,0x8484,0x8484,0x5858,0x0473,0x8404,0x8484,
0x5893,0x3158,0x1273,0x8484,0x9393,0x5893,0x9358,0x8C31,
0x9393,0x9393,0x5893,0x0358,0x9393,0x9393,0x9393,0x9393,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8473,0x8484,0x8484,0x8484,
0x3158,0x8484,0x8484,0x8484,0x0358,0x1231,0x0404,0x8484,
0x9393,0x5858,0x7373,0x7373,0x9393,0x5893,0x5858,0x5858,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x7373,0x8412,0x8484,0x8484,0x5858,0x8C93,0x8473,0x8404,
0x7312,0x5D84,0x4227,0x2727,0x8484,0x1212,0x2784,0x4227,
0x8484,0x8484,0x1212,0x2784,0x8484,0x8484,0x8484,0x1212,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x4227,0x935D,0x9358,0x9393,0x4227,0x5827,0x0303,0x9358,
0x4242,0x2A42,0x318F,0x0358,0x275D,0x4242,0x424D,0x4927,
0x8473,0x4227,0x2727,0x4D42,0x1284,0x2712,0x2742,0x4227,
0x8484,0x8412,0x2727,0x2727,0x8484,0x1284,0x425D,0x2727,
0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,0x9393,
0x9358,0x9393,0x9393,0x9393,0x5858,0x9393,0x9393,0x9393,
0x032A,0x9393,0x9393,0x9393,0x9327,0x9358,0x9393,0x9393,
0x3742,0x9303,0x9393,0x9393,0x2A4D,0x9303,0x9393,0x9393,
0x9393,0x9393,0x313F,0x2256,0x9393,0x9393,0x3F3F,0x5656,
0x9393,0x9393,0x313F,0x5656,0x9393,0x9393,0x3F3F,0x8F56,
0x9393,0x9393,0x3F3F,0x5656,0x9393,0x9393,0x3F93,0x3131,
0x9393,0x9393,0x3F93,0x313F,0x9393,0x9393,0x9393,0x3F3F,
0x6222,0x7562,0x4545,0x4545,0x6222,0x7C62,0x4545,0x4545,
0x6222,0x4A62,0x4545,0x4545,0x2222,0x6262,0x4575,0x4545,
0x2256,0x6262,0x454A,0x4545,0x2256,0x6222,0x4A62,0x4545,
0x5656,0x2222,0x6262,0x754A,0x5656,0x2256,0x6262,0x4A62,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x757C,0x4545,0x4545,0x7C75,
0x4545,0x4545,0x4A45,0x2262,0x4545,0x4545,0x6275,0x2262,
0x4545,0x4545,0x627C,0x2262,0x4545,0x4545,0x624A,0x2262,
0x4545,0x4A45,0x6262,0x2222,0x4545,0x627C,0x2262,0x5622,
0x4A45,0x624A,0x2262,0x5622,0x624A,0x6262,0x2222,0x5656,
0x5622,0x3F56,0x9393,0x9393,0x5622,0x3F31,0x9393,0x9393,
0x5656,0x3F31,0x9393,0x9393,0x5656,0x3F56,0x9393,0x9393,
0x5656,0x3F3F,0x9393,0x9393,0x5656,0x933F,0x9393,0x9393,
0x3F31,0x933F,0x9393,0x9393,0x3F3F,0x933F,0x9393,0x9393,
0x9393,0x9303,0x4227,0x2727,0x5893,0x2A3F,0x2727,0x2727,
0x3F58,0x4D4D,0x2727,0x2727,0x3F58,0x5D49,0x2727,0x2727,
0x5893,0x5D03,0x2742,0x2727,0x0393,0x4231,0x2727,0x2727,
0x5893,0x5D58,0x424D,0x2742,0x9393,0x3F58,0x5D2A,0x275D,
0x5D27,0x8484,0x8484,0x8484,0x5D42,0x8473,0x8484,0x8484,
0x2727,0x7312,0x8484,0x1212,0x4227,0x8427,0x1212,0x275D,
0x2727,0x2742,0x2727,0x2742,0x2727,0x2727,0x2727,0x5D42,
0x2727,0x2727,0x2727,0x5D27,0x2727,0x2727,0x2727,0x5D42,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x1284,0x8484,0x8484,0x8484,
0x8412,0x8484,0x8484,0x8484,0x8473,0x8484,0x8484,0x8484,
0x8412,0x8484,0x8484,0x8484,0x8412,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,
0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x8484,0x7384,
0x8484,0x8484,0x8484,0x8C04,0x8484,0x8484,0x8484,0x8C04,
0x7575,0x1F75,0x1F1F,0x1F1F,0x7575,0x1F1F,0x1F1F,0x1F1F,
0x1F69,0x7575,0x1F45,0x1F1F,0x7527,0x2769,0x754A,0x1F1F,
0x5D2A,0x2727,0x2A84,0x754A,0x5D5D,0x5D2A,0x5D5D,0x2A2A,
0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,
0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,
0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x1F1F,
0x1F45,0x1F1F,0x1F1F,0x1F1F,0x754A,0x1F45,0x1F1F,0x1F1F,
0x2A2A,0x754A,0x1F45,0x1F1F,0x5D5D,0x5D2A,0x1F27,0x1F1F,
0x1F1F,0x691F,0x034A,0x9358,0x1F1F,0x691F,0x3F75,0x3F58,
0x1F1F,0x691F,0x937C,0x3F58,0x1F1F,0x691F,0x0362,0x3F3F,
0x1F1F,0x1F1F,0x033F,0x3F3F,0x1F1F,0x1F1F,0x0322,0x0303,
0x1F1F,0x1F1F,0x7C1F,0x624A,0x1F1F,0x1F1F,0x691F,0x4569,
0x9393,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F58,0x3F3F,0x3F3F,0x3F3F,
0x0331,0x3F3F,0x3F3F,0x3F3F,0x311F,0x3F03,0x3F3F,0x3F3F,
0x9393,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x5893,0x5858,0x9358,0x128F,0x3F3F,0x3F3F,0x3F3F,0x583F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x8404,0x8484,0x8484,0x8484,0x848C,0x8484,0x8484,0x8484,
0x3F3F,0x128C,0x8484,0x8484,0x3F3F,0x583F,0x848C,0x8484,
0x3F3F,0x3F3F,0x933F,0x128C,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x0709,
0x8484,0x8484,0x5D12,0x2742,0x8484,0x8484,0x1284,0x4227,
0x8484,0x8484,0x1284,0x2712,0x8484,0x8484,0x8484,0x8473,
0x8404,0x8484,0x8484,0x7384,0x1273,0x8484,0x8484,0x8484,
0x3F3F,0x8473,0x8484,0x8484,0x0807,0x4B3F,0x8473,0x8484,
0x2742,0x5893,0x9393,0x9393,0x4D27,0x0349,0x3F3F,0x3F3F,
0x4227,0x585D,0x3F3F,0x3F3F,0x2742,0x374D,0x3F03,0x3F3F,
0x425D,0x274D,0x5858,0x3F3F,0x2712,0x4D42,0x0349,0x3F3F,
0x1212,0x1F27,0x3F27,0x3F58,0x0884,0x3507,0x5D91,0x9358,
0x9393,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x0809,
0x9393,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x0808,
0x9393,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F08,0x3F3F,0x3F3F,0x183F,
0x9393,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x0755,0x098B,0x3F3F,0x3F3F,
0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x933F,0x3F3F,0x3F3F,0x3F3F,0x933F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x563F,0x2256,0x2222,0x6262,0x313F,0x5631,0x2222,0x6279,
0x313F,0x3131,0x5656,0x2222,0x3F93,0x3131,0x3131,0x5656,
0x3F3F,0x3F3F,0x3131,0x8F31,0x3F3F,0x3F3F,0x313F,0x3131,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x4A62,0x4A4A,0x4A4A,0x624A,0x6262,0x6262,0x6262,0x6262,
0x2222,0x6222,0x2262,0x2222,0x2222,0x2222,0x2222,0x2222,
0x8F8F,0x5656,0x5656,0x5656,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3F3F,0x313F,0x3F31,0x3F3F,
0x6262,0x2262,0x5622,0x5656,0x7962,0x2222,0x3156,0x3F31,
0x2222,0x5656,0x3131,0x3F31,0x5656,0x3156,0x3131,0x3F3F,
0x3131,0x3131,0x3F31,0x3F3F,0x3156,0x3F31,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x9393,0x9393,0x9393,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x9393,0x583F,0x0303,0x428F,0x3F3F,0x3F3F,0x0358,0x4D2A,
0x3F3F,0x3F3F,0x033F,0x4D2A,0x3F3F,0x3F3F,0x583F,0x5D93,
0x3F3F,0x3F3F,0x3F3F,0x5858,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x2727,0x2727,0x2727,0x2742,0x2727,0x2727,0x2727,0x2727,
0x2727,0x2742,0x2727,0x4227,0x2742,0x275D,0x2727,0x2727,
0x318F,0x5D03,0x274D,0x2727,0x5858,0x3158,0x4D27,0x2742,
0x3F3F,0x583F,0x4958,0x4D27,0x3F3F,0x3F3F,0x0393,0x4993,
0x8412,0x8484,0x8484,0x8484,0x1284,0x8484,0x8484,0x8484,
0x1227,0x8412,0x8484,0x8484,0x5D42,0x8473,0x8484,0x8484,
0x4227,0x7384,0x8484,0x8484,0x4227,0x1227,0x8484,0x8484,
0x2742,0x5D42,0x8412,0x8484,0x4D27,0x2742,0x8484,0x8484,
0x8484,0x8484,0x8404,0x588F,0x8484,0x8484,0x3F73,0x933F,
0x8484,0x8C84,0x3F3F,0x3F3F,0x8473,0x3F12,0x3F3F,0x3F3F,
0x8C73,0x588C,0x3F3F,0x3F3F,0x3F84,0x3F3F,0x3F3F,0x3F3F,
0x3184,0x3F3F,0x3F3F,0x3F3F,0x3184,0x3F3F,0x3F3F,0x3F3F,
0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,
0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,
0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x942A,0x5D4A,0x2A5D,
0x8F49,0x2B56,0x6273,0x3F8F,0x3F3F,0x0B18,0x3F2B,0x313F,
0x5D5D,0x844A,0x455D,0x1F69,0x5D5D,0x5D5D,0x2727,0x2727,
0x5D5D,0x5D5D,0x2A5D,0x2A2A,0x5D5D,0x5D5D,0x5D5D,0x5D5D,
0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,0x5D5D,
0x2A37,0x5D5D,0x5D5D,0x5D5D,0x313F,0x2A37,0x5D2A,0x4A2A,
0x1F1F,0x1F1F,0x1F1F,0x1F1F,0x4A27,0x4A5D,0x1F75,0x1F1F,
0x2A2A,0x842A,0x1F5D,0x1F1F,0x5D5D,0x5D5D,0x2784,0x1F69,
0x5D5D,0x5D5D,0x5D2A,0x1F1F,0x4A5D,0x5D4A,0x845D,0x454A,
0x124A,0x4A84,0x5D5D,0x5D2A,0x787C,0x7C85,0x5D5D,0x2A5D,
0x7C45,0x3F58,0x3F3F,0x3F3F,0x691F,0x0362,0x3F31,0x3F3F,
0x691F,0x5827,0x3F3F,0x3F3F,0x691F,0x3F7C,0x313F,0x3131,
0x1F1F,0x311F,0x5803,0x313F,0x1F1F,0x7C1F,0x3722,0x5831,
0x6975,0x691F,0x1F69,0x4A75,0x272A,0x451F,0x1F1F,0x4569,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3158,0x3131,0x3131,0x3131,
0x5837,0x3193,0x3131,0x3131,0x4A69,0x9393,0x3131,0x3131,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x3F3F,0x3F3F,0x3F3F,0x0741,0x3F3F,0x3F3F,0x3F3F,0x8B3F,
0x3F3F,0x3F3F,0x3F3F,0x083F,0x3131,0x3131,0x3131,0x8C31,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x0707,0x3F08,0x313F,0x8473,0x0707,0x3155,0x3F3F,0x733F,
0x0707,0x3F5A,0x3F3F,0x183F,0x0707,0x4107,0x3131,0x0831,
0x0755,0x0807,0x3131,0x5A8C,0x0708,0x5A07,0x3131,0x0741,
0x078C,0x0707,0x3141,0x0755,0x5531,0x0707,0x0935,0x0707,
0x0764,0x0707,0x6908,0x032A,0x0755,0x0707,0x2708,0x371F,
0x0707,0x0807,0x1212,0x1F27,0x0707,0x8455,0x1284,0x2712,
0x0707,0x3F08,0x8473,0x7384,0x0707,0x318C,0x8B41,0x0707,
0x3507,0x0931,0x075A,0x0707,0x4107,0x3531,0x0707,0x0707,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F03,0x3F31,0x3F3F,0x3F3F,
0x038F,0x3F3F,0x3F3F,0x3F3F,0x8F42,0x3F03,0x3131,0x3131,
0x1F27,0x582A,0x3158,0x3131,0x6435,0x4A42,0x1837,0x0755,
0x5A07,0x2712,0x6442,0x0707,0x0707,0x1255,0x1E84,0x0707,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3135,0x4131,0x3108,0x3131,
0x8C07,0x0731,0x0707,0x3109,0x3F55,0x5A31,0x0707,0x3141,
0x3F3F,0x3F3F,0x083F,0x0707,0x3F3F,0x3F3F,0x353F,0x0707,
0x3F3F,0x3F3F,0x413F,0x0707,0x3131,0x3131,0x8C31,0x0707,
0x3131,0x3131,0x3131,0x0755,0x3131,0x3131,0x3131,0x0708,
0x3131,0x3131,0x3131,0x0741,0x3131,0x3131,0x3131,0x078C,
0x3F8B,0x3F3F,0x083F,0x0707,0x1807,0x3F3F,0x413F,0x0707,
0x0907,0x3F3F,0x083F,0x0707,0x4107,0x3131,0x5531,0x0707,
0x0807,0x3131,0x0709,0x0707,0x5507,0x3131,0x0708,0x0707,
0x5A07,0x3131,0x0735,0x0707,0x0707,0x3109,0x075A,0x3507,
0x3507,0x3F3F,0x3F3F,0x083F,0x3507,0x3F3F,0x3F3F,0x353F,
0x5507,0x3F3F,0x3F3F,0x8B3F,0x0707,0x318C,0x3131,0x0709,
0x0707,0x3141,0x3131,0x0708,0x0707,0x3108,0x3131,0x0755,
0x0707,0x315A,0x8C31,0x0707,0x0707,0x0907,0x0831,0x0707,
0x0707,0x0807,0x3F3F,0x3F3F,0x0707,0x1807,0x0741,0x3507,
0x0707,0x3F55,0x0741,0x0807,0x0707,0x3108,0x0708,0x4107,
0x0707,0x3109,0x0708,0x0807,0x5507,0x3131,0x3131,0x3131,
0x0807,0x3131,0x0708,0x3507,0x0907,0x3131,0x0755,0x8B07,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3F3F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x0708,0x0955,0x3131,
0x3131,0x0755,0x3507,0x3131,0x3131,0x0735,0x0807,0x0831,
0x3F3F,0x3F3F,0x3F3F,0x074B,0x3F3F,0x3F3F,0x3F3F,0x0741,
0x3F3F,0x3F3F,0x3F3F,0x0741,0x3131,0x3131,0x3131,0x0741,
0x3131,0x3131,0x3131,0x0741,0x4131,0x0908,0x3131,0x0741,
0x0735,0x8B07,0x3131,0x0708,0x0707,0x0707,0x3109,0x0741,
0x5507,0x3F4B,0x3F3F,0x3F3F,0x0707,0x3F09,0x3F3F,0x3F3F,
0x8B07,0x3F3F,0x3F3F,0x3F3F,0x8B07,0x3131,0x3131,0x3131,
0x8B07,0x3131,0x3131,0x3131,0x8B07,0x3131,0x3131,0x3131,
0x8B07,0x3131,0x3131,0x3131,0x8B07,0x3131,0x3131,0x3131,
0x3F3F,0x3F3F,0x313F,0x033F,0x3F3F,0x3F3F,0x3F3F,0x313F,
0x3F3F,0x3F3F,0x3F3F,0x3F3F,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x2A58,0x4242,0x1284,0x8484,0x033F,0x4D2A,0x125D,0x8484,
0x3F3F,0x273F,0x125D,0x8484,0x3131,0x2A58,0x1227,0x8484,
0x3131,0x2A58,0x1227,0x8484,0x3131,0x3793,0x1227,0x8484,
0x3131,0x3131,0x5D27,0x8473,0x3131,0x5831,0x4D5D,0x1284,
0x8F84,0x3F3F,0x3F3F,0x3F3F,0x8C84,0x3F3F,0x3F3F,0x3F3F,
0x7384,0x3F3F,0x3F3F,0x3F3F,0x3784,0x313F,0x3131,0x3131,
0x7384,0x313F,0x3131,0x3131,0x2D41,0x5631,0x3131,0x3131,
0x832D,0x9560,0x3131,0x3131,0x833A,0x9566,0x3131,0x3131,
0x9531,0x683A,0x3F2D,0x3195,0x6095,0x6847,0x9570,0x4B31,
0x3A95,0x6847,0x6670,0x3165,0x6C18,0x3E47,0x6805,0x180B,
0x470C,0x6C6C,0x026C,0x600B,0x473A,0x6C6C,0x026C,0x2F0B,
0x026C,0x6C6C,0x026C,0x2F0B,0x6C47,0x6C6C,0x026C,0x2F0B,
0x3131,0x3F3F,0x8F31,0x943F,0x4B4B,0x4B4B,0x4B4B,0x7931,
0x3156,0x3131,0x3131,0x7D95,0x3195,0x3131,0x3131,0x3479,
0x3195,0x3131,0x564B,0x4879,0x3195,0x4B31,0x7D56,0x4860,
0x3195,0x4B4B,0x4879,0x6F32,0x5695,0x798C,0x5F18,0x4C82,
0x822B,0x4A4E,0x5D4A,0x5D5D,0x8224,0x2F29,0x2A4A,0x5D5D,
0x8282,0x8529,0x3195,0x378F,0x4C77,0x6F32,0x3195,0x3131,
0x4C77,0x4E32,0x5618,0x3131,0x4C77,0x785F,0x9560,0x3131,
0x4C82,0x2952,0x952B,0x4B4B,0x4C4C,0x2952,0x7934,0x8F8F,
0x2A5D,0x755D,0x1F69,0x1F1F,0x5D5D,0x2A2A,0x1F27,0x1F69,
0x2A49,0x5D5D,0x5D5D,0x457C,0x4B3F,0x378F,0x2A2A,0x275D,
0x318F,0x3F31,0x8F3F,0x8473,0x3131,0x8F31,0x4B31,0x8F3F,
0x4B4B,0x4B4B,0x4B4B,0x4B4B,0x8F8F,0x8F8F,0x8F8F,0x8F8F,
0x451F,0x3175,0x3158,0x3131,0x1F1F,0x7545,0x9331,0x4B8C,
0x1F1F,0x6975,0x3175,0x8F93,0x691F,0x751F,0x7C69,0x3F3F,
0x755D,0x1F69,0x451F,0x3F7C,0x2A73,0x1F27,0x1F69,0x4A45,
0x4B4B,0x5D73,0x1F27,0x4569,0x4B8F,0x2A8C,0x4A2A,0x4575,
0x3131,0x3131,0x3131,0x3131,0x4B4B,0x4B4B,0x4B4B,0x4B4B,
0x3131,0x3131,0x3131,0x3131,0x318F,0x3131,0x3131,0x3131,
0x8F3F,0x3131,0x3131,0x3131,0x4B93,0x3131,0x3131,0x3131,
0x5862,0x4B4B,0x4B4B,0x4B4B,0x4B1F,0x8F3F,0x8F8F,0x8F8F,
0x3131,0x3131,0x3131,0x3131,0x4B4B,0x4B4B,0x4B4B,0x4B4B,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x4B4B,0x4B4B,0x4B4B,0x4B4B,0x8F8F,0x8F8F,0x8F8F,0x8F8F,
0x0831,0x0707,0x355A,0x0707,0x094B,0x0707,0x0707,0x0707,
0x3131,0x0755,0x0707,0x0707,0x3131,0x0708,0x0707,0x5507,
0x3131,0x0709,0x0707,0x0807,0x3131,0x8B31,0x0707,0x315A,
0x4B4B,0x554B,0x0707,0x4B08,0x8F8F,0x558F,0x0707,0x8F41,
0x318B,0x5A31,0x0707,0x1841,0x4B08,0x0709,0x5507,0x4B4B,
0x3109,0x0708,0x0807,0x3131,0x3131,0x0708,0x0807,0x3131,
0x3131,0x0708,0x4107,0x3131,0x3131,0x0708,0x4107,0x3131,
0x4B4B,0x0708,0x0807,0x4B4B,0x8F8F,0x0741,0x0807,0x8F8F,
0x078B,0x8407,0x6484,0x0707,0x0708,0x4107,0x0884,0x0707,
0x0741,0x0807,0x0831,0x0707,0x0741,0x0807,0x4131,0x0707,
0x0741,0x0807,0x0831,0x0707,0x0708,0x0807,0x0831,0x0707,
0x0708,0x4107,0x414B,0x0707,0x0755,0x7307,0x098F,0x0707,
0x3F59,0x8B31,0x0707,0x3118,0x8F08,0x8B4B,0x0707,0x4B4B,
0x3108,0x5A31,0x5A07,0x3131,0x3108,0x0731,0x8B07,0x3131,
0x8F41,0x0731,0x8B07,0x3131,0x3108,0x0709,0x5507,0x3131,
0x4B08,0x0709,0x5507,0x4B4B,0x8F35,0x0708,0x0807,0x8F8F,
0x3131,0x3131,0x3131,0x5A31,0x4B4B,0x4B4B,0x4B4B,0x354B,
0x3131,0x3131,0x3131,0x0831,0x3131,0x3131,0x3131,0x0931,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x4B4B,0x4B4B,0x4B4B,0x4B4B,0x8F8F,0x8F8F,0x8F8F,0x8F8F,
0x0707,0x0941,0x0707,0x0907,0x0707,0x0808,0x0707,0x4B55,
0x0707,0x5535,0x0707,0x3108,0x0707,0x075A,0x0707,0x3141,
0x075A,0x0707,0x5A07,0x3131,0x0735,0x0707,0x3507,0x3131,
0x0708,0x0707,0x0807,0x4B4B,0x0741,0x0707,0x0807,0x8F8F,
0x0755,0x0807,0x3531,0x0707,0x0708,0x5507,0x5A18,0x0707,
0x0741,0x0707,0x0708,0x0707,0x0718,0x0707,0x078B,0x5A07,
0x3531,0x0707,0x0707,0x3507,0x0831,0x0707,0x0707,0x0807,
0x414B,0x0707,0x0707,0x0907,0x418F,0x0707,0x0707,0x0907,
0x315A,0x3131,0x0735,0x4107,0x4B08,0x4B4B,0x0735,0x4107,
0x3141,0x3131,0x0735,0x4107,0x3118,0x3131,0x0755,0x4107,
0x3131,0x3131,0x0755,0x4107,0x3131,0x3131,0x0755,0x4107,
0x4B4B,0x4B4B,0x0755,0x4107,0x8F8F,0x8F8F,0x0755,0x4107,
0x3131,0x0735,0x4107,0x0709,0x4B4B,0x0735,0x0807,0x0755,
0x3131,0x0735,0x3507,0x0707,0x3131,0x0735,0x5A07,0x5A07,
0x3131,0x0735,0x0707,0x0807,0x3131,0x0735,0x0707,0x0907,
0x4B4B,0x0735,0x0707,0x4B55,0x8F8F,0x0735,0x0707,0x8F08,
0x0707,0x0707,0x3141,0x0741,0x0707,0x0707,0x4B08,0x0741,
0x5A08,0x0707,0x3108,0x0709,0x5518,0x0707,0x3108,0x0709,
0x5531,0x0707,0x3108,0x0709,0x3531,0x0707,0x3108,0x0931,
0x354B,0x0707,0x4B08,0x4B4B,0x358F,0x0707,0x8F08,0x558F,
0x8B07,0x3131,0x3131,0x3131,0x8B07,0x4B4B,0x4B4B,0x4B4B,
0x8B07,0x3131,0x3131,0x3131,0x5A07,0x3118,0x3131,0x3131,
0x0707,0x3141,0x3131,0x3131,0x0808,0x3131,0x3131,0x3131,
0x4B4B,0x4B4B,0x4B4B,0x4B4B,0x3507,0x8F8F,0x8F8F,0x8F8F,
0x3131,0x3131,0x3131,0x3131,0x4B4B,0x4B4B,0x4B4B,0x4B4B,
0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,0x3131,
0x8F4B,0x4B8F,0x3131,0x3131,0x564B,0x8F95,0x314B,0x3131,
0x2B95,0x7948,0x4B31,0x4B4B,0x6F79,0x6032,0x8C79,0x8F8F,
0x3131,0x3F31,0x273F,0x2B7C,0x4B4B,0x8C4B,0x313F,0x2D22,
0x3131,0x3131,0x9531,0x573F,0x3131,0x3131,0x9531,0x3E60,
0x3131,0x3131,0x9531,0x022B,0x3131,0x3131,0x9531,0x022D,
0x4B4B,0x4B4B,0x5631,0x473A,0x8F8F,0x8F8F,0x8F56,0x4717,
0x6C05,0x182D,0x3195,0x3131,0x476C,0x6057,0x4B95,0x4B4B,
0x4702,0x2B02,0x3195,0x3131,0x6C47,0x2D02,0x9595,0x314B,
0x6C02,0x8547,0x188F,0x4B56,0x6C6C,0x3A47,0x2D66,0x3195,
0x6C6C,0x1747,0x652D,0x9518,0x6C6C,0x3E02,0x573A,0x9566,
0x6C47,0x6C6C,0x6C6C,0x090B,0x6C29,0x6C6C,0x6C6D,0x530B,
0x6C29,0x6C6C,0x6C6E,0x8568,0x6C78,0x163E,0x3E16,0x2E68,
0x6C78,0x6E3E,0x3E6D,0x3E3E,0x6C78,0x6E6D,0x6D6C,0x3E3E,
0x3E78,0x1616,0x2C6D,0x6C3E,0x3E78,0x6D16,0x1616,0x6C3E,
0x6666,0x7995,0x7748,0x4C52,0x0B40,0x8C95,0x8252,0x4C4C,
0x0B3A,0x3E61,0x4C82,0x4C4C,0x683A,0x290B,0x4C82,0x524C,
0x0217,0x526C,0x4C4C,0x524C,0x6C6C,0x8278,0x4C4C,0x524C,
0x6C6C,0x8278,0x4C4C,0x524C,0x6C6C,0x825F,0x4C4C,0x7F4C,
0x4C4C,0x2952,0x7948,0x8C8F,0x4C52,0x324C,0x792E,0x8C8F,
0x4C4C,0x324C,0x8F6F,0x5656,0x7777,0x324C,0x8C4E,0x6079,
0x7777,0x5F4C,0x1878,0x4E56,0x7777,0x524C,0x1829,0x2918,
0x773C,0x5252,0x6029,0x8260,0x3C3C,0x5252,0x3432,0x8285,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8F,0x8C8C,0x8C8C,0x8C8C,0x8F18,0x8C8C,0x8C8C,0x8C8C,
0x2260,0x8C8C,0x8C8C,0x8C8C,0x792B,0x8C8C,0x8C8C,0x8C8C,
0x790C,0x8C8C,0x8C8C,0x8C8C,0x7948,0x8C8C,0x8C8C,0x8C8C,
0x4B8C,0x5D37,0x2A5D,0x275D,0x8C8C,0x378C,0x2A2A,0x5D5D,
0x8C8C,0x4B8C,0x8C4B,0x2A37,0x8C8C,0x8C8C,0x8C8C,0x4B4B,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x568C,0x8C8C,0x8C8C,
0x2745,0x4B93,0x8C8C,0x8C8C,0x6927,0x8C7C,0x8C4B,0x8C8C,
0x5D84,0x2769,0x8C4B,0x8C8C,0x738C,0x2A84,0x8C8C,0x8C8C,
0x4B8C,0x4B4B,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8B8C,0x0707,0x8C08,0x8C8C,0x0708,0x0707,0x8C08,
0x8C8C,0x0708,0x0707,0x8C35,0x8C8C,0x3573,0x0707,0x8C41,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x0773,0x5507,0x098C,0x8C8C,0x358C,0x0707,0x5535,
0x8C8C,0x098C,0x075A,0x0707,0x8C8C,0x8C8C,0x5512,0x0707,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x4B4B,0x8C8C,
0x0707,0x8C55,0x8C8C,0x075A,0x0707,0x8C08,0x8C8C,0x0735,
0x5507,0x8C8C,0x8C8C,0x5A09,0x8C35,0x8C8C,0x8C8C,0x128C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x735A,0x0755,0x0807,0x8C8C,0x0707,0x0707,0x735A,0x8C8C,
0x0707,0x0707,0x8C08,0x8C8C,0x0755,0x0807,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x0773,0x0707,0x5507,0x8C8C,0x558C,0x0707,0x3507,0x8C8C,
0x358C,0x0707,0x0807,0x8C8C,0x128C,0x078B,0x8C35,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x088C,0x0707,0x0707,0x4107,0x098C,0x0707,0x0707,0x0907,
0x8C8C,0x5541,0x5507,0x8C41,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x0755,0x4107,0x8C8C,0x8C8C,0x0735,0x0807,
0x8C8C,0x8C8C,0x0708,0x3507,0x8C8C,0x8C8C,0x5A09,0x0807,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x0735,0x0707,0x8C73,0x8C8C,0x0735,0x8B07,0x8C8C,
0x8C8C,0x0708,0x8B07,0x8C8C,0x8C8C,0x3573,0x0807,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x558C,0x0707,0x8C55,0x8B8C,0x558C,0x0707,0x8C8B,0x5A8C,
0x098C,0x0808,0x8C73,0x078C,0x8C8C,0x8C8C,0x8C8C,0x088C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x0707,0x8C41,0x8C8C,0x8C8C,0x0707,0x8C09,0x8C8C,0x8C8C,
0x0707,0x8C09,0x8C8C,0x8C8C,0x5A07,0x8C09,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x798C,0x8C8C,0x8C8C,0x8C8C,0x798C,
0x8C8C,0x8C8C,0x8C8C,0x568F,0x8C8C,0x8C8C,0x8C8C,0x1879,
0x8C8C,0x8C8C,0x8C8C,0x6079,0x8C8C,0x8C8C,0x8C8C,0x0C79,
0x8C8C,0x8C8C,0x8C8C,0x8579,0x8C8C,0x8C8C,0x8C8C,0x4879,
0x2960,0x6F82,0x8F79,0x8C8C,0x2985,0x8232,0x7918,0x8C8C,
0x296F,0x9252,0x7934,0x8C8C,0x3278,0x924C,0x9448,0x8C79,
0x5F29,0x774C,0x186F,0x7918,0x5229,0x824C,0x246F,0x796F,
0x5229,0x4C4C,0x4C52,0x3482,0x4C32,0x4C4C,0x4C4C,0x5F82,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8C,
0x8C8C,0x8C8C,0x8C8C,0x8C8C,0x8C8F,0x8C8C,0x8C8C,0x8C8C,
0x8C79,0x8C8C,0x8C8C,0x8C8C,0x3722,0x8C8C,0x8C8C,0x8F8C,
0x8C8C,0x8C8C,0x1895,0x023E,0x8F8C,0x8C8F,0x6095,0x0202,
0x8C8C,0x8F8F,0x6695,0x6C02,0x188F,0x562B,0x2D95,0x6C47,
0x6056,0x8F2D,0x3A79,0x6C47,0x2B95,0x1883,0x1722,0x6C47,
0x2D95,0x183E,0x3E37,0x6C02,0x3A22,0x6002,0x0260,0x6C02,
0x6C6C,0x1702,0x6C3E,0x182D,0x6C6C,0x3E6C,0x476C,0x2F57,
0x6D6C,0x6C6C,0x476C,0x2D3E,0x163E,0x3E6D,0x6C6C,0x8302,
0x163E,0x3E6D,0x6C6C,0x3E47,0x163E,0x3E6D,0x6C6C,0x0202,
0x6E3E,0x3E6D,0x6C6C,0x026C,0x6E3E,0x3E6D,0x6C6C,0x476C,
0x3E78,0x6E16,0x3E6D,0x6C6C,0x3E78,0x2C6D,0x3E6D,0x6C6C,
0x3E78,0x5C6D,0x3E6D,0x783E,0x3E78,0x5C6D,0x3E6D,0x166C,
0x3E78,0x2C6D,0x3E6C,0x7E6E,0x6C78,0x6E6C,0x6C6C,0x522C,
0x6C78,0x6E6C,0x6D6C,0x527B,0x3E78,0x6E6C,0x6D6C,0x7F7B,
0x6C78,0x4C5F,0x4C4C,0x7F4C,0x7E52,0x527E,0x4C4C,0x524C,
0x7E4C,0x527E,0x4C4C,0x7E52,0x524C,0x4C52,0x4C4C,0x3C7F,
0x4C4C,0x4C4C,0x4C4C,0x7B52,0x4C4C,0x4C4C,0x524C,0x7B77,
0x4C4C,0x4C4C,0x524C,0x7B3C,0x524C,0x4C4C,0x7F4C,0x3C3C,
0x3C3C,0x5252,0x4832,0x326F,0x777B,0x4C52,0x5F5F,0x325F,
0x527B,0x4C4C,0x4C52,0x3282,0x7F7B,0x4C4C,0x4C52,0x5F4C,
0x5277,0x4C4C,0x4C4C,0x524C,0x4C52,0x524C,0x7E77,0x524C,
0x777F,0x527E,0x7E77,0x4C4C,0x3C52,0x524C,0x7E3C,0x4C4C,
0x222E,0x3737,0x3737,0x3737,0x8C4E,0x3737,0x3737,0x3737,
0x1878,0x3722,0x3737,0x3737,0x6029,0x3779,0x3737,0x3737,
0x2B29,0x3779,0x3737,0x3737,0x0C32,0x3779,0x3737,0x7937,
0x8532,0x3779,0x3737,0x7937,0x4832,0x3779,0x0937,0x2249,
0x8C37,0x738C,0x8C37,0x3737,0x8F37,0x4037,0x9509,0x3737,
0x7973,0x0B18,0x0954,0x3737,0x2222,0x022E,0x0B05,0x2209,
0x0C79,0x6C47,0x0502,0x2249,0x0209,0x6C02,0x0B02,0x792F,
0x4785,0x6C6C,0x686C,0x792F,0x476C,0x6C6C,0x0502,0x7949,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x1937,0x3711,0x3737,0x3737,0x0137,0x6000,
0x3737,0x3737,0x7437,0x7A00,0x3737,0x3737,0x3737,0x5B11,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x0137,0x3400,0x3737,0x3737,0x1137,0x1811,0x3737,0x3737,
0x0074,0x377A,0x3737,0x3737,0x190E,0x2618,0x2600,0x7A18,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x7A37,0x0137,0x6000,0x745B,0x007A,0x1126,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3437,0x6000,0x3737,
0x3734,0x7437,0x1800,0x3737,0x377A,0x7437,0x1100,0x185B,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x0060,0x0E7A,0x607A,0x7400,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x8C37,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x1C8C,0x3737,0x3737,0x3737,0x1C8C,
0x3737,0x3737,0x3737,0x1C8C,0x0160,0x7A18,0x1819,0x0134,
0x3737,0x4B8C,0x492A,0x8C4B,0x4B37,0x2A49,0x4227,0x4B49,
0x8C8C,0x1F5D,0x4227,0x1C42,0x271C,0x2727,0x2727,0x2742,
0x041E,0x2727,0x2727,0x4227,0x041E,0x2704,0x2727,0x2727,
0x041E,0x5D04,0x2727,0x2727,0x0012,0x0480,0x1920,0x2704,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x374B,0x3737,0x3737,0x3737,0x8C8C,0x3737,0x3737,0x3737,
0x8C5D,0x1974,0x3726,0x3737,0x4942,0x8011,0x3737,0x3737,
0x0442,0x7400,0x3737,0x1874,0x4827,0x0000,0x8C19,0x5B19,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x0018,0x377A,0x3737,
0x0174,0x0060,0x3734,0x3737,0x0E19,0x0034,0x377A,0x0026,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x370E,0x0119,0x0118,0x3774,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x0001,0x3718,0x3737,
0x3737,0x0034,0x3718,0x3737,0x1960,0x005B,0x7418,0x1100,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3718,0x3737,0x007A,0x7A00,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x1837,0x1874,0x6001,0x3737,0x2637,0x5B19,0x7426,0x007A,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x185B,0x3737,0x2637,0x0100,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x7437,0x0000,0x3734,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x1837,0x1874,0x2618,0x0026,0x2618,0x5B19,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x6001,0x3737,0x3737,0x3737,0x7426,0x007A,0x7A00,0x0E74,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x8019,0x3737,0x3737,0x3737,
0x2619,0x377A,0x3737,0x3737,0x2600,0x3701,0x0026,0x180E,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x7437,0x2619,0x3737,0x3737,0x1137,0x3780,0x3737,0x3737,
0x0018,0x3774,0x3737,0x3737,0x0080,0x1900,0x0060,0x0E7A,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,0x3737,
0x6037,0x7A00,0x3737,0x3737,0x6037,0x7400,0x3737,0x3737,
0x6037,0x7400,0x3737,0x3737,0x607A,0x7400,0x3737,0x3737,
0x3737,0x378C,0x3737,0x6F37,0x3737,0x3737,0x2237,0x7818,
0x3737,0x6022,0x7960,0x2960,0x3737,0x4879,0x946F,0x2966,
0x3737,0x6F79,0x7929,0x290C,0x3737,0x6F37,0x1832,0x292D,
0x7937,0x7818,0x3482,0x3248,0x7937,0x292B,0x2482,0x326F,
0x4C32,0x5252,0x4C4C,0x924C,0x4C32,0x4C4C,0x4C52,0x774C,
0x525F,0x3C77,0x4C52,0x4C4C,0x4C52,0x3C77,0x4C52,0x4C4C,
0x5252,0x3C77,0x4C52,0x4C4C,0x5252,0x3C3C,0x4C7F,0x4C4C,
0x524C,0x3C3C,0x4C7F,0x4C4C,0x524C,0x7B77,0x4C52,0x4C4C,
0x9434,0x378C,0x3737,0x2237,0x7924,0x3737,0x3737,0x7937,
0x6082,0x3779,0x3737,0x7937,0x4892,0x3794,0x3737,0x7937,
0x2477,0x3722,0x3737,0x2237,0x4C82,0x9418,0x3737,0x4937,
0x824C,0x7960,0x3773,0x3722,0x774C,0x4860,0x9485,0x2F79,
0x5737,0x6647,0x022B,0x6C6C,0x3E2F,0x8547,0x022D,0x6C6C,
0x022B,0x5747,0x0257,0x6C6C,0x022D,0x1747,0x0257,0x6C6C,
0x473A,0x3E02,0x023E,0x6C6C,0x4757,0x6C6C,0x6C6C,0x6C6C,
0x473E,0x6C6C,0x6D6D,0x6C6C,0x026C,0x6C6C,0x166D,0x6C3E,
0x6E3E,0x3E6D,0x6C6C,0x476C,0x6E3E,0x3E16,0x6C6C,0x026C,
0x6E3E,0x3E6E,0x6C6C,0x6C6C,0x6D3E,0x3E6E,0x6C6C,0x6C6C,
0x6C6C,0x6D2C,0x6C6C,0x6C6C,0x3E6C,0x6E2C,0x6C3E,0x6C6C,
0x3E6C,0x2C16,0x6C3E,0x6C6C,0x6C6D,0x2C6D,0x6C6C,0x6C6C,
0x7878,0x166C,0x903E,0x7F3C,0x7878,0x1678,0x6D6C,0x5277,
0x7878,0x1678,0x6D6C,0x4C7E,0x7878,0x1678,0x6D3E,0x4C7E,
0x785F,0x6D78,0x6D3E,0x4C7E,0x5F52,0x7878,0x903E,0x527E,
0x787F,0x7878,0x903E,0x523C,0x785F,0x7878,0x903E,0x7F3C,
0x4C4C,0x4C4C,0x524C,0x3C3C,0x7752,0x527E,0x524C,0x7777,
0x7752,0x5277,0x524C,0x7777,0x7752,0x523C,0x524C,0x7E7E,
0x7E52,0x523C,0x4C4C,0x7E4C,0x524C,0x7E7B,0x4C52,0x4C52,
0x7F4C,0x3C7B,0x4C7F,0x4C52,0x7F4C,0x7B3C,0x4C7F,0x4C52,
0x3C7E,0x4C52,0x4C3C,0x4C4C,0x3C77,0x7E7F,0x527B,0x4C4C,
0x3C77,0x3C7F,0x7F7B,0x4C4C,0x3C3C,0x3C7F,0x7F7B,0x4C4C,
0x3C3C,0x7B7F,0x7F3C,0x4C4C,0x3C3C,0x1D7F,0x523C,0x4C4C,
0x3C3C,0x1D52,0x524C,0x4C52,0x3C3C,0x7B7E,0x527F,0x7E4C,
0x2E32,0x3779,0x1479,0x7914,0x2E32,0x3749,0x8379,0x7940,
0x6F32,0x7937,0x688C,0x2270,0x4E32,0x7937,0x0273,0x8540,
0x4E32,0x7937,0x020C,0x3A05,0x4E32,0x2F22,0x6C47,0x3E3E,
0x4E32,0x0949,0x0202,0x026C,0x4E32,0x2F22,0x0202,0x3E6C,
0x4785,0x6C6C,0x0502,0x792F,0x472B,0x6C6C,0x686C,0x7914,
0x473A,0x6C6C,0x686C,0x796B,0x026C,0x6C6C,0x686C,0x7914,
0x6C02,0x166D,0x686C,0x3770,0x3E6C,0x166D,0x6C3E,0x6B05,
0x166D,0x166D,0x6C3E,0x5468,0x6E6D,0x166D,0x6C3E,0x3E3E,
0x3737,0x3737,0x3737,0x007A,0x3737,0x3737,0x3737,0x0060,
0x3737,0x3737,0x3737,0x1937,0x3737,0x3737,0x3737,0x1918,
0x3779,0x3737,0x3737,0x0060,0x0922,0x4937,0x4949,0x4949,
0x2F14,0x4922,0x4949,0x4949,0x2F05,0x4979,0x4949,0x4949,
0x8000,0x0034,0x1160,0x7A7A,0x6000,0x1101,0x5B37,0x010E,
0x375B,0x5B01,0x5B37,0x0180,0x370E,0x1134,0x1937,0x3434,
0x3726,0x2637,0x0E5B,0x3737,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x1819,0x7A00,0x007A,0x1819,0x1819,0x7A00,0x007A,0x3774,
0x1819,0x7400,0x007A,0x3718,0x0100,0x1800,0x007A,0x3718,
0x0026,0x3701,0x0034,0x3774,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x3737,0x7437,0x0100,0x0111,0x3737,0x7437,0x7400,0x5B26,
0x3737,0x7437,0x6000,0x5B0E,0x3737,0x7437,0x7A00,0x8026,
0x3737,0x3437,0x5B00,0x1819,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x0074,0x5B74,0x600E,0x7A00,0x0074,0x5B60,0x600E,0x5B00,
0x0074,0x1160,0x6001,0x0000,0x0018,0x1901,0x6034,0x1100,
0x0137,0x2600,0x6037,0x8000,0x4949,0x4949,0x4949,0x7A11,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x0019,0x7A7A,0x7A00,0x0000,0x0011,0x7A01,0x5B00,0x0011,
0x1974,0x7A01,0x1900,0x0074,0x1937,0x7A01,0x0E00,0x0060,
0x1937,0x7A26,0x3400,0x0060,0x7A49,0x6018,0x6000,0x7A18,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x0E41,0x0411,0x110E,0x0404,0x2020,0x2000,0x7A00,0x0404,
0x1E20,0x1919,0x0419,0x0404,0x5174,0x000E,0x1E80,0x1E1E,
0x8C7A,0x0034,0x1C60,0x0451,0x4949,0x197A,0x3737,0x3737,
0x4949,0x5B0E,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x7A04,0x4100,0x3F51,0x0019,0x045D,0x4100,0x8D27,0x2619,
0x0404,0x2000,0x6927,0x0119,0x041E,0x2000,0x2727,0x0C19,
0x0404,0x8011,0x1E04,0x0E11,0x3737,0x3737,0x1C49,0x8451,
0x3737,0x3737,0x3737,0x3737,0x4949,0x4949,0x4949,0x4949,
0x3780,0x0060,0x7A74,0x1811,0x3737,0x0060,0x0E74,0x8080,
0x8C1C,0x0060,0x5B74,0x1900,0x185D,0x0060,0x8074,0x1811,
0x2742,0x1949,0x747A,0x2619,0x275D,0x1C27,0x3737,0x0134,
0x3737,0x511C,0x3749,0x4949,0x3749,0x3737,0x4949,0x4949,
0x1800,0x8019,0x005B,0x3726,0x3711,0x5B19,0x1119,0x185B,
0x3760,0x0019,0x2601,0x185B,0x1880,0x0019,0x0E60,0x375B,
0x1819,0x1119,0x0E37,0x3719,0x4909,0x260E,0x3449,0x4974,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x0E5B,0x005B,0x2618,0x000E,0x7A00,0x007A,0x0E18,0x8011,
0x7A00,0x007A,0x3718,0x000E,0x7A11,0x0026,0x1918,0x117A,
0x007A,0x0011,0x7418,0x1100,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x377A,0x7437,0x7419,0x5B0E,0x3760,0x3737,0x2660,0x1900,
0x377A,0x6037,0x7A00,0x1926,0x370E,0x7A37,0x6019,0x0019,
0x3760,0x1837,0x5B19,0x1160,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x0E37,0x5B00,0x6037,0x6000,0x0E37,0x1811,0x7A37,0x3411,
0x0E37,0x375B,0x0137,0x0000,0x0E60,0x375B,0x3437,0x7400,
0x8074,0x3719,0x1837,0x0E19,0x4949,0x4949,0x4949,0x0160,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x7411,0x3737,0x0074,0x190E,0x1800,0x3737,0x0060,0x7A26,
0x377A,0x3737,0x7437,0x1111,0x747A,0x3737,0x1101,0x0034,
0x3400,0x3737,0x2637,0x8000,0x4960,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x1137,0x7A0E,0x3719,0x3737,0x0018,0x7434,0x6000,0x3737,
0x0018,0x7474,0x1800,0x3737,0x1160,0x7A34,0x3711,0x3737,
0x7437,0x1111,0x3760,0x3737,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x5B01,0x007A,0x0E60,0x5B00,0x7A5B,0x0060,0x0E74,0x1811,
0x7A5B,0x0074,0x0E74,0x375B,0x0E26,0x0026,0x0E74,0x375B,
0x007A,0x1911,0x8074,0x3719,0x7A49,0x1918,0x4974,0x4949,
0x1109,0x0011,0x4960,0x4949,0x4949,0x6034,0x4949,0x4949,
0x7437,0x7419,0x5B0E,0x0118,0x3737,0x2660,0x1900,0x1837,
0x6037,0x7A00,0x1926,0x1837,0x7A37,0x6019,0x0019,0x1860,
0x1837,0x5B19,0x1160,0x3774,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x7A19,0x7A37,0x1811,0x6000,0x7A00,0x0E37,0x8080,0x3711,
0x7A00,0x5B37,0x1900,0x3760,0x7A00,0x8037,0x1811,0x1880,
0x5B11,0x7437,0x2619,0x1819,0x4949,0x4949,0x0134,0x4909,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x0001,0x3734,0x0074,0x5B74,0x0018,0x3774,0x0074,0x5B60,
0x0018,0x3774,0x0074,0x1160,0x0018,0x3774,0x0018,0x1901,
0x1137,0x3780,0x0137,0x2600,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x600E,0x7400,0x3737,0x3737,0x600E,0x7400,0x3737,0x3737,
0x6001,0x7400,0x3737,0x3737,0x6034,0x7400,0x3737,0x3737,
0x7437,0x7A00,0x3737,0x3737,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x9437,0x290C,0x4C52,0x5F52,0x7937,0x2948,0x7E52,0x524C,
0x2237,0x322E,0x4C4C,0x4C4C,0x3749,0x326F,0x524C,0x7E7E,
0x3722,0x324E,0x524C,0x3C77,0x0922,0x3278,0x524C,0x3C77,
0x6062,0x5F78,0x524C,0x3C7E,0x2B62,0x7F29,0x4C4C,0x7B4C,
0x4C4C,0x7B52,0x527E,0x4C4C,0x4C4C,0x3C7F,0x7F3C,0x4C4C,
0x4C4C,0x7752,0x527B,0x4C4C,0x4C52,0x5252,0x777B,0x4C52,
0x4C52,0x7F7E,0x3C7B,0x4C7F,0x4C52,0x523C,0x7B3C,0x4C7F,
0x5252,0x7E3C,0x3C77,0x4C7F,0x7F4C,0x773C,0x3C77,0x4C7F,
0x7E4C,0x826F,0x9424,0x2F79,0x4C4C,0x824C,0x604C,0x6694,
0x4C4C,0x4C4C,0x8592,0x2D94,0x4C4C,0x4C4C,0x6F77,0x8594,
0x4C4C,0x4C4C,0x5F82,0x8522,0x4C4C,0x4C4C,0x4C4C,0x3A18,
0x4C4C,0x4C4C,0x824C,0x3A2B,0x524C,0x7E77,0x824C,0x5734,
0x0202,0x6C6C,0x166D,0x3E3E,0x6C02,0x6C6C,0x6E6D,0x3E6C,
0x6C47,0x6C6C,0x6E6C,0x3E6C,0x6C47,0x6C6C,0x2C6C,0x3E6D,
0x6C47,0x6C6C,0x2C3E,0x3E16,0x6C47,0x6C6C,0x2C3E,0x0516,
0x6C47,0x6C6C,0x2C3E,0x056E,0x6C47,0x6C6C,0x6E3E,0x052C,
0x6D6E,0x2C6C,0x6C6C,0x6C6C,0x1616,0x2C3E,0x6C6C,0x6C6C,
0x1616,0x6E6C,0x6C6C,0x6C6C,0x6E16,0x6E6C,0x6C6C,0x6C6C,
0x6E16,0x166C,0x6C3E,0x3E6C,0x6E16,0x166D,0x6C3E,0x3E6C,
0x6E16,0x6D6C,0x6C6C,0x3E6C,0x6E6E,0x6D6C,0x6C6C,0x6C6C,
0x5F3C,0x785F,0x903E,0x7F7B,0x5F7E,0x787F,0x6D3E,0x7F7B,
0x5F5F,0x785F,0x6D3E,0x4C1D,0x525F,0x785F,0x6C78,0x771D,
0x525F,0x7878,0x6C78,0x166E,0x5F5F,0x785F,0x6C78,0x7816,
0x5F5F,0x5F52,0x9005,0x7F7B,0x5F5F,0x5F52,0x2C05,0x7F6E,
0x524C,0x1D4C,0x527E,0x7E52,0x4C4C,0x7B7F,0x7F7B,0x7E52,
0x774C,0x4C52,0x4C1D,0x777F,0x3C52,0x7F4C,0x1D3C,0x777F,
0x7B7F,0x7F3C,0x1D7F,0x7E3C,0x3C7F,0x7F1D,0x7E52,0x3C7B,
0x7F52,0x3C1D,0x7F7F,0x5C77,0x7F4C,0x1D77,0x5252,0x7B7F,
0x773C,0x7B3C,0x4C7F,0x4C3C,0x7E3C,0x3C3C,0x3C7F,0x523C,
0x7E3C,0x777B,0x7B7F,0x4C77,0x773C,0x527B,0x7B7E,0x4C4C,
0x3C77,0x7F3C,0x7B3C,0x4C7F,0x7B7E,0x7F3C,0x3C3C,0x4C7F,
0x3C77,0x527E,0x4C7B,0x4C52,0x3C1D,0x3C7F,0x7F7B,0x4C4C,
0x4E32,0x2F22,0x6C47,0x6C6C,0x4E32,0x2F62,0x6C47,0x6C6C,
0x2E32,0x2E62,0x6C29,0x6C6C,0x4832,0x3285,0x6C6C,0x166C,
0x5F5F,0x784C,0x6C6C,0x166D,0x7E52,0x784C,0x6C6C,0x6E6D,
0x4C4C,0x7852,0x6C6C,0x166D,0x4C4C,0x7852,0x6C6C,0x6E6C,
0x6D6C,0x1616,0x6C3E,0x026C,0x6D3E,0x166E,0x6C3E,0x6D6C,
0x6D3E,0x6D5C,0x6C3E,0x6C6C,0x3E6C,0x6E1D,0x6C3E,0x6C6C,
0x6C6C,0x1616,0x6D6D,0x6D6D,0x6D6D,0x6D6D,0x166D,0x6C16,
0x6D16,0x6D6D,0x6D6C,0x6C6E,0x6D6E,0x6D6C,0x6E6C,0x6C6E,
0x6B68,0x4979,0x4949,0x4949,0x5468,0x4979,0x4949,0x4949,
0x0B02,0x2249,0x4949,0x4949,0x0502,0x796B,0x4949,0x4949,
0x686C,0x7953,0x4949,0x4949,0x686C,0x7914,0x4949,0x4949,
0x686C,0x9414,0x1C1C,0x1C1C,0x026C,0x9414,0x1C1C,0x1C1C,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x1C1C,0x1C1C,0x1C1C,0x491C,0x1C1C,0x1C1C,0x1C1C,0x498D,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x1C49,0x1C1C,0x1C1C,0x1C1C,0x1C49,0x1C1C,0x1C1C,0x1C1C,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x007A,0x4949,0x4949,0x4949,0x197A,
0x4949,0x4949,0x0149,0x0011,0x4949,0x4949,0x7A49,0x1926,
0x1C1C,0x1C1C,0x1C1C,0x1901,0x1C1C,0x1C1C,0x1C1C,0x1901,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4918,0x4949,0x4949,0x4949,0x6001,0x4949,0x4949,0x4949,
0x7401,0x0001,0x6011,0x007A,0x1849,0x7A00,0x260E,0x0060,
0x741C,0x0900,0x1901,0x191C,0x741C,0x0900,0x1101,0x801C,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x7A73,0x3400,0x1949,0x3426,0x0E60,0x7A00,0x0060,0x1960,
0x197A,0x2600,0x5B01,0x091C,0x0019,0x1901,0x7A11,0x111C,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x7A49,0x0149,
0x0011,0x4926,0x007A,0x1126,0x7A7A,0x0900,0x007A,0x1819,
0x000E,0x6000,0x007A,0x1C60,0x7A0E,0x6000,0x007A,0x1C09,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x5B49,0x4911,0x4949,0x4934,0x8049,0x495B,0x4949,
0x7A7A,0x5B00,0x495B,0x0001,0x1909,0x197A,0x495B,0x0E19,
0x0074,0x2660,0x1C5B,0x5B11,0x0074,0x2660,0x1C5B,0x2609,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4926,0x4949,0x1111,0x1849,0x6000,0x4949,0x007A,0x7A18,
0x0980,0x1C1C,0x0009,0x1134,0x6000,0x1C1C,0x261C,0x0019,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x7400,0x0074,0x3400,0x1149,0x6000,0x0E11,0x197A,0x1949,
0x090E,0x3400,0x0074,0x0060,0x0974,0x7400,0x0074,0x0060,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x7A0E,0x490E,0x4949,0x4949,0x017A,0x4919,0x4949,0x4949,
0x017A,0x1C19,0x1C1C,0x1C1C,0x807A,0x8D5B,0x1C1C,0x1C1C,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,0x4949,
0x8D49,0x492A,0x4949,0x621C,0x498D,0x2A49,0x1C1C,0x2F49,
0x6694,0x5229,0x4C4C,0x7B52,0x6694,0x5229,0x4C4C,0x7B7F,
0x6694,0x5232,0x4C4C,0x7B7F,0x2D94,0x5232,0x4C4C,0x3C7F,
0x2D94,0x5232,0x524C,0x7E52,0x2D94,0x5232,0x4C7E,0x5252,
0x2D94,0x5232,0x3C7E,0x7F52,0x664A,0x5232,0x3C52,0x7F77,
0x7F77,0x3C3C,0x3C7E,0x4C52,0x7F3C,0x3C3C,0x7E7E,0x4C52,
0x7F7B,0x3C3C,0x7E7E,0x4C52,0x7F7B,0x7B3C,0x4C4C,0x4C4C,
0x7F7B,0x7B3C,0x524C,0x4C4C,0x4C7B,0x3C3C,0x524C,0x7F4C,
0x3C7B,0x3C77,0x527E,0x7F4C,0x7B3C,0x3C7E,0x527E,0x777F,
0x4C4C,0x4C3C,0x824C,0x5785,0x7E52,0x523C,0x774C,0x5748,
0x7752,0x7F3C,0x824C,0x5748,0x3C7F,0x7F3C,0x824C,0x3E6F,
0x7B52,0x5277,0x4C4C,0x3E7F,0x1D3C,0x4C7F,0x824C,0x6C52,
0x3C1D,0x527F,0x524C,0x6C5F,0x7F1D,0x4C4C,0x5F7E,0x6C3A,
0x6C02,0x6C6C,0x163E,0x052C,0x6C02,0x6C6C,0x6D6C,0x3E2C,
0x6C02,0x6D6D,0x6C3E,0x6C2C,0x3E02,0x1616,0x3E3E,0x6D2C,
0x6C6C,0x6E6D,0x3E6C,0x6E2C,0x6C6C,0x2C3E,0x056D,0x2C6E,
0x6C6C,0x6E3E,0x056E,0x6E6D,0x6C6C,0x163E,0x3E6E,0x6E6C,
0x6E6E,0x6C6C,0x6C6C,0x163E,0x6E6E,0x6C6C,0x6C6C,0x2C05,
0x6E6E,0x6C6D,0x6C6C,0x1D6C,0x1616,0x6C6D,0x056C,0x7B2C,
0x166D,0x6C6D,0x3E6C,0x6D1D,0x6D6D,0x6C6D,0x2C05,0x052C,
0x6D6D,0x0516,0x5C6D,0x3E6C,0x6D16,0x3E6D,0x165C,0x3E3E,
0x5F5F,0x7852,0x6E3E,0x7E2C,0x5F5F,0x787F,0x2C3E,0x782C,
0x7F5F,0x6C5F,0x1D3E,0x3E6D,0x7F5F,0x3E7E,0x2C16,0x6C3E,
0x5F7F,0x3E2C,0x6E2C,0x6C3E,0x6C78,0x1D5C,0x3E2C,0x6C6C,
0x6D16,0x1D25,0x3E3E,0x6C6C,0x5C5C,0x6D25,0x6C05,0x3E3E,
0x4C52,0x3C7F,0x527B,0x4C7F,0x4C82,0x7F4C,0x3C3C,0x527F,
0x8252,0x4C4C,0x7752,0x7F77,0x826C,0x4C4C,0x524C,0x7E3C,
0x786C,0x4C82,0x524C,0x7B4C,0x6C6C,0x4C78,0x4C4C,0x777F,
0x3E6C,0x6C3E,0x524C,0x5252,0x6C6C,0x3C16,0x7192,0x4C52,
0x3C5C,0x3C7F,0x5277,0x4C4C,0x771D,0x3C52,0x4C4C,0x4C4C,
0x3C1D,0x774C,0x4C52,0x4C4C,0x7B1D,0x7E52,0x4C52,0x4C4C,
0x1D5C,0x4C7E,0x4C4C,0x824C,0x5C5C,0x7F77,0x524C,0x5282,
0x5C5C,0x7F7E,0x8252,0x2D4E,0x5C5C,0x527F,0x464C,0x542E,
0x7E4C,0x787F,0x6C6C,0x6E6C,0x4C4C,0x3E5F,0x6C6C,0x163E,
0x327E,0x7605,0x6C6C,0x6D3E,0x7882,0x760B,0x6C6C,0x6D6C,
0x765F,0x570B,0x0217,0x6C6C,0x7676,0x053E,0x6C17,0x3E6C,
0x7639,0x053E,0x6C6C,0x6C6D,0x7624,0x0217,0x166D,0x6E6C,
0x6D2C,0x6D6C,0x1D3E,0x3E7B,0x6C2C,0x6D6C,0x6E05,0x3E2C,
0x6C2C,0x6D6D,0x163E,0x3E16,0x3E6E,0x6D6D,0x6D3E,0x3E6D,
0x6C16,0x6D6D,0x6C3E,0x6D16,0x6C6D,0x6D16,0x6C6C,0x2C16,
0x6D6D,0x6C16,0x6D6D,0x2C6C,0x1616,0x6C16,0x6D16,0x1616,
0x686C,0x2A54,0x1C8D,0x1C1C,0x3E6C,0x6B0B,0x1C62,0x1C1C,
0x6C6C,0x1468,0x8D94,0x8D8D,0x6D6C,0x1468,0x1C62,0x1C1C,
0x1616,0x1468,0x1C62,0x1C1C,0x6C6E,0x1402,0x8D62,0x8D8D,
0x0216,0x6B68,0x2A62,0x2A2A,0x026C,0x6B05,0x1C62,0x6B6B,
0x1C1C,0x1C1C,0x491C,0x158D,0x1C1C,0x1C1C,0x621C,0x3060,
0x8D8D,0x8D8D,0x621C,0x3E0C,0x1C1C,0x1C1C,0x8D8D,0x4E3A,
0x1C1C,0x1C8D,0x4962,0x6F17,0x498D,0x6B51,0x2D2A,0x6F6F,
0x622A,0x216B,0x172F,0x3976,0x516B,0x442B,0x6F53,0x3976,
0x491C,0x1C1C,0x1C1C,0x1C1C,0x4915,0x1C49,0x1C1C,0x1C1C,
0x5133,0x8D49,0x8D8D,0x8D8D,0x0457,0x1C79,0x1C1C,0x1C1C,
0x153A,0x498D,0x1C1C,0x1C1C,0x333A,0x5144,0x8D49,0x8D8D,
0x2E76,0x4457,0x8D2A,0x8D8D,0x2E76,0x4F6F,0x4904,0x8D8D,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x1C1C,0x1C1C,0x1C1C,0x1901,0x1C1C,0x1C1C,0x1C1C,0x007A,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x091C,0x0900,0x8026,0x341C,0x1C74,0x5B01,0x095B,0x091C,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x1100,0x0009,0x0900,0x0060,0x7A00,0x5B1C,0x1C19,0x5B1C,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x1160,0x7A19,0x007A,0x1C09,0x7419,0x7A0E,0x0034,0x1C60,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x0060,0x1960,0x745B,0x7400,0x0E1C,0x1100,0x1C11,0x0001,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x7A00,0x1C1C,0x7A1C,0x1100,0x0926,0x1C1C,0x091C,0x7A00,
0x8D8D,0x8D8D,0x608D,0x6000,0x1C1C,0x1C1C,0x7A1C,0x0900,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D2A,
0x1C1C,0x3411,0x117A,0x111C,0x1C1C,0x1174,0x6011,0x608D,
0x8D8D,0x8D8D,0x8D1C,0x2F8D,0x1C1C,0x1C1C,0x621C,0x852F,
0x1C1C,0x1C1C,0x492A,0x0C0C,0x8D8D,0x2A51,0x0C49,0x0C0C,
0x8D2A,0x2F49,0x0C0C,0x0C0C,0x2B09,0x0C0C,0x0C0C,0x0C0C,
0x5B0E,0x4980,0x1C8D,0x1C1C,0x0600,0x2B0C,0x2A49,0x1C8D,
0x0C0C,0x2B2B,0x2F66,0x8D2A,0x2B0C,0x2B2B,0x662B,0x8D2F,
0x2B0C,0x2B2B,0x2B2B,0x2B66,0x2B0C,0x2B2B,0x2B2B,0x662B,
0x2B0C,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,0x1C1C,
0x8D1C,0x8D8D,0x8D8D,0x8D8D,0x1C8D,0x1C1C,0x1C1C,0x1C1C,
0x2A1C,0x1C1C,0x1C1C,0x1C1C,0x1C2B,0x8D8D,0x8D8D,0x8D8D,
0x6666,0x2A2F,0x8D8D,0x8D8D,0x2B2B,0x2F66,0x2A8D,0x8D8D,
0x1C1C,0x1C1C,0x1C1C,0x491C,0x1C1C,0x1C1C,0x1C1C,0x8D1C,
0x8D8D,0x8D8D,0x1C8D,0x4A1C,0x1C1C,0x1C1C,0x8D1C,0x8D62,
0x1C1C,0x1C1C,0x8D8D,0x4E2F,0x8D8D,0x8D8D,0x8D8D,0x826F,
0x8D8D,0x8D8D,0x4A8D,0x8248,0x8D8D,0x1C8D,0x4A8D,0x826F,
0x0C4A,0x624E,0x2A2A,0x7849,0x6F62,0x6692,0x624A,0x2909,
0x822B,0x4E82,0x622A,0x782F,0x826F,0x825F,0x4A2F,0x7849,
0x5F82,0x825F,0x4A85,0x2E62,0x7E7F,0x827E,0x4A6F,0x0000,
0x3C5F,0x327E,0x005F,0x6969,0x3C5F,0x7E5F,0x9100,0x9191,
0x2F66,0x5229,0x3C52,0x7F3C,0x6F5F,0x5278,0x7E4C,0x527B,
0x9232,0x7F5F,0x7F4C,0x3C7B,0x4C32,0x4C4C,0x7F4C,0x7B3C,
0x4C82,0x4C4C,0x524C,0x7B4C,0x0000,0x4C4C,0x4C4C,0x3C7F,
0x6969,0x4C00,0x4C4C,0x7E52,0x6991,0x0069,0x4C4C,0x524C,
0x7B77,0x7777,0x7F77,0x1D52,0x7B52,0x773C,0x7F3C,0x7B1D,
0x3C7F,0x773C,0x3C7E,0x7F1D,0x777F,0x7E7B,0x1D3C,0x524C,
0x524C,0x3C7B,0x001D,0x0000,0x7F3C,0x5C3C,0x6900,0x6969,
0x7F3C,0x007E,0x9191,0x9191,0x5277,0x3800,0x3838,0x9138,
0x7F77,0x3C77,0x4E82,0x6C2D,0x7F7F,0x3C3C,0x7852,0x6C57,
0x5252,0x7E1D,0x0252,0x6C6C,0x7B7F,0x7F1D,0x5F5F,0x6C78,
0x5C77,0x524C,0x824C,0x6C6C,0x7700,0x4C7F,0x5F82,0x6C6C,
0x0069,0x4C4C,0x824C,0x6C6C,0x0091,0x524C,0x4682,0x3E82,
0x6C6C,0x6D6C,0x6C2C,0x6E3E,0x6C6C,0x3E6C,0x162C,0x1605,
0x6C6C,0x3E6C,0x6E6E,0x6D05,0x6C6C,0x6C6C,0x6E6D,0x6C3E,
0x6C6C,0x6C6C,0x163E,0x056D,0x6C6C,0x6C6C,0x6D3E,0x056D,
0x6C6C,0x6C6C,0x6D6C,0x3E6D,0x6C6C,0x6C6C,0x6C6C,0x6C6D,
0x6D16,0x2C6C,0x052C,0x3E6C,0x6D6E,0x2C2C,0x6C3E,0x163E,
0x6E6E,0x6C5C,0x3E3E,0x5C6C,0x1D6E,0x3E16,0x3E6C,0x6E2C,
0x5C2C,0x6C3E,0x6E3E,0x3E6E,0x1D2C,0x3E05,0x6E6D,0x6C3E,
0x6E1D,0x6D05,0x3E16,0x6C6C,0x6D5C,0x6E6D,0x6C3E,0x6C6C,
0x255C,0x165C,0x6C3E,0x7E16,0x5C5C,0x7B5C,0x0671,0x7125,
0x5C5C,0x925C,0x7192,0x7125,0x5C5C,0x7B5C,0x8282,0x2592,
0x5C5C,0x7B5C,0x9282,0x7182,0x5C25,0x065C,0x9292,0x9292,
0x1D5C,0x7B5C,0x9282,0x8277,0x1717,0x5757,0x4057,0x7030,
0x9282,0x7106,0x0671,0x7782,0x9292,0x9206,0x9271,0x9282,
0x9282,0x9225,0x9271,0x9292,0x9292,0x7125,0x8271,0x9282,
0x8206,0x0606,0x8292,0x0692,0x7125,0x2525,0x7171,0x7171,
0x6771,0x6767,0x7167,0x7146,0x6340,0x1717,0x3E3E,0x1678,
0x1D5C,0x9277,0x4692,0x7617,0x5C5C,0x9206,0x7792,0x7657,
0x5C5C,0x7192,0x4C46,0x763A,0x5C5C,0x7106,0x7846,0x762D,
0x5C5C,0x8292,0x4E71,0x762D,0x5C5C,0x9282,0x2E71,0x7683,
0x2525,0x9271,0x8860,0x4E3A,0x7B2C,0x4871,0x4A7C,0x2B62,
0x7676,0x6C76,0x2C6C,0x166C,0x7676,0x6C76,0x2C68,0x3E6E,
0x7676,0x7676,0x6C6C,0x162C,0x7639,0x7676,0x3E6C,0x2C6D,
0x3939,0x7676,0x023E,0x6C3E,0x3939,0x7676,0x4717,0x3E6C,
0x3917,0x1739,0x2E48,0x6C47,0x3985,0x7643,0x6B2D,0x4717,
0x6E16,0x6D6E,0x6C16,0x6C1D,0x2C6C,0x162C,0x2C6D,0x3E6E,
0x6E6C,0x6E5C,0x2C2C,0x6C3E,0x166E,0x5C5C,0x3E6E,0x6C6C,
0x6E1D,0x2C5C,0x6C05,0x6C6C,0x2C16,0x6D5C,0x6C3E,0x6C6C,
0x1D6C,0x6C5C,0x6C6C,0x166C,0x1D68,0x025C,0x4702,0x3E16,
0x6C3E,0x7068,0x146B,0x1414,0x6C6C,0x7002,0x5353,0x5353,
0x6C6C,0x1402,0x536B,0x5353,0x476C,0x8705,0x5353,0x5353,
0x0247,0x6B14,0x5314,0x5353,0x4047,0x536B,0x5353,0x5353,
0x6B05,0x1453,0x5353,0x5353,0x5387,0x5314,0x5353,0x5353,
0x1414,0x5466,0x6F85,0x3976,0x1453,0x8587,0x7617,0x3976,
0x5353,0x2D21,0x766F,0x7676,0x5353,0x5714,0x7676,0x7676,
0x8753,0x172D,0x7676,0x7676,0x8753,0x172D,0x7676,0x7676,
0x8753,0x172D,0x7676,0x7676,0x8753,0x6F2D,0x7676,0x7676,
0x2E76,0x406F,0x4915,0x8D8D,0x7676,0x8324,0x2A04,0x8D8D,
0x3939,0x4024,0x4915,0x8D8D,0x3976,0x1739,0x5133,0x8D8D,
0x7676,0x2439,0x0440,0x8D8D,0x7676,0x2439,0x0440,0x512A,
0x7676,0x2476,0x0465,0x5162,0x3939,0x6F76,0x1583,0x2A62,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x512A,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5353,0x2A1C,0x5151,0x5151,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x8851,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x518D,0x8D8D,0x8D8D,0x518D,0x1C2A,
0x8D8D,0x518D,0x8D2A,0x0C2B,0x5151,0x512A,0x0C2F,0x0C0C,
0x8851,0x0C2F,0x0C0C,0x0C0C,0x2B51,0x0C0C,0x0C0C,0x0C0C,
0x8D8D,0x8D8D,0x2A51,0x2B09,0x518D,0x512A,0x6049,0x0C0C,
0x8D2A,0x2B2F,0x0C0C,0x0C0C,0x0C2F,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x2B0C,0x0C0C,0x0C0C,0x0C0C,0x2B2B,
0x0C0C,0x0C0C,0x2B0C,0x2B2B,0x0C0C,0x0C0C,0x2F2B,0x2B2B,
0x0C0C,0x2B0C,0x2B2B,0x2B2B,0x0C0C,0x2B0C,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x0C2B,
0x2B2B,0x662B,0x1C2F,0x5151,0x2B2B,0x2B2B,0x6666,0x1C2F,
0x2B2B,0x2B2B,0x2B2B,0x2B66,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x2B0C,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x5151,0x8D8D,0x8D8D,0x8D8D,
0x8D2F,0x512A,0x8D8D,0x8D8D,0x2B66,0x1C2F,0x2A8D,0x8D51,
0x2B2B,0x6666,0x2F2B,0x2A51,0x2B2B,0x2B2B,0x662B,0x2F2B,
0x2B2B,0x2B2B,0x2B2B,0x662B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,0x8D8D,
0x8D51,0x8D8D,0x8D8D,0x8D8D,0x5151,0x5151,0x5151,0x5151,
0x6B2B,0x5151,0x5151,0x5151,0x6666,0x512F,0x5151,0x5151,
0x8D8D,0x518D,0x2F49,0x326F,0x8D8D,0x2A8D,0x6F2F,0x525F,
0x8D8D,0x628D,0x5249,0x7E32,0x8D8D,0x4A8D,0x5F2F,0x7E7F,
0x8D8D,0x4A8D,0x7F2F,0x5F7F,0x5151,0x4A51,0x8285,0x5F5F,
0x5151,0x8D88,0x825F,0x7E7E,0x5151,0x2F4A,0x825F,0x7B3C,
0x3C5F,0x007E,0x3838,0x900D,0x775F,0x003C,0x9038,0x0D0D,
0x5F52,0x003C,0x0D38,0x6363,0x5F7E,0x003C,0x5938,0x8A63,
0x777E,0x5F3C,0x3800,0x8A63,0x7777,0x5F7E,0x3800,0x8A8A,
0x7E77,0x7E5F,0x3800,0x8A8A,0x7E5F,0x777E,0x3800,0x8A38,
0x3890,0x0091,0x4C4C,0x524C,0x0D90,0x6991,0x4C00,0x524C,
0x900D,0x6991,0x4C00,0x4C4C,0x0D63,0x9138,0x5200,0x5252,
0x0D63,0x9138,0x9200,0x4C82,0x0D63,0x9138,0x9200,0x0092,
0x0D63,0x910D,0x0091,0x0071,0x638A,0x910D,0x0091,0x0071,
0x4C77,0x3800,0x900D,0x3890,0x004C,0x6338,0x0D0D,0x9090,
0x0052,0x8A38,0x0D63,0x900D,0x3800,0x8A63,0x638A,0x900D,
0x3800,0x8A8A,0x638A,0x0D90,0x3838,0x8A8A,0x638A,0x9190,
0x8A38,0x8A8A,0x0D63,0x910D,0x8A38,0x8A8A,0x0D63,0x0F91,
0x6991,0x5200,0x460A,0x5246,0x6991,0x9200,0x460A,0x4671,
0x9169,0x0600,0x4692,0x4671,0x6969,0x7100,0x4646,0x4646,
0x0069,0x460A,0x0A46,0x7171,0x0069,0x9246,0x4646,0x4606,
0x0069,0x4646,0x4646,0x0A71,0x0A00,0x4646,0x4692,0x0A46,
0x6C3E,0x6C6C,0x3E6C,0x166D,0x3E5F,0x6C6C,0x3E6C,0x2C6D,
0x5246,0x6C3E,0x6C6C,0x2C3E,0x4646,0x6C82,0x4702,0x2C3E,
0x0A0A,0x7F46,0x1714,0x6E68,0x0A0A,0x7F46,0x1514,0x1614,
0x0A0A,0x4646,0x152D,0x3915,0x0A0A,0x7F71,0x5387,0x4321,
0x2C5C,0x6C2C,0x6C6C,0x6C6C,0x5C5C,0x3E6D,0x6C6C,0x6C6C,
0x2C25,0x6C05,0x6C6C,0x3C3E,0x2C25,0x6C3E,0x786C,0x927F,
0x2C25,0x3229,0x7F7F,0x7F7F,0x4325,0x7F2D,0x320A,0x7F7F,
0x4325,0x5315,0x7F48,0x327F,0x4325,0x5321,0x8715,0x482D,
0x8340,0x8161,0x8181,0x8181,0x8181,0x6161,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,
0x7070,0x6170,0x6161,0x6161,0x8370,0x6140,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,
0x4F4F,0x4F4F,0x4F4F,0x4F4F,0x6161,0x6161,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x6161,0x4040,0x6161,0x6161,
0x6161,0x4040,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,
0x6181,0x4F70,0x1459,0x1521,0x7070,0x1A81,0x308B,0x3030,
0x7030,0x6161,0x6130,0x7070,0x6161,0x6161,0x6181,0x6130,
0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x6161,0x7061,0x6140,0x6161,
0x2D6B,0x6643,0x6B6B,0x3A6B,0x6161,0x4F40,0x5454,0x8714,
0x6161,0x6181,0x4061,0x6140,0x7030,0x6161,0x6161,0x6161,
0x3061,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,0x6161,
0x6161,0x6161,0x7081,0x6140,0x6A30,0x3672,0x6A63,0x613B,
0x2C68,0x052C,0x6C6C,0x5357,0x1614,0x1539,0x5353,0x536B,
0x4F33,0x1470,0x1414,0x5366,0x8130,0x7081,0x7030,0x5483,
0x6161,0x6161,0x6161,0x3061,0x6161,0x6161,0x7061,0x3070,
0x6161,0x7083,0x7061,0x8170,0x6161,0x7040,0x6161,0x6A61,
0x146B,0x5353,0x5353,0x5353,0x5314,0x5353,0x5353,0x5353,
0x5353,0x5353,0x5353,0x5353,0x1454,0x1414,0x5353,0x5353,
0x3030,0x4040,0x544F,0x1414,0x7281,0x3070,0x3061,0x3030,
0x631A,0x6161,0x6161,0x3061,0x361A,0x8130,0x6161,0x6161,
0x8753,0x6F2D,0x7676,0x3939,0x1453,0x762E,0x7676,0x3939,
0x5353,0x172E,0x762E,0x7676,0x8753,0x172D,0x7676,0x7639,
0x5314,0x2D6B,0x766F,0x3939,0x4070,0x1454,0x763A,0x4343,
0x3061,0x6130,0x3081,0x5740,0x6161,0x3061,0x3070,0x8181,
0x3976,0x6F76,0x2157,0x6B6B,0x3976,0x7676,0x442E,0x1414,
0x3939,0x6F2E,0x2183,0x5353,0x7639,0x6F2E,0x3357,0x5353,
0x2E76,0x6F76,0x533A,0x5353,0x766F,0x8576,0x5314,0x5314,
0x8557,0x6B14,0x536B,0x5353,0x6161,0x4F4F,0x1454,0x1414,
0x518D,0x5151,0x2A51,0x1451,0x5314,0x6B53,0x6B6B,0x1414,
0x1414,0x1414,0x1414,0x5314,0x5353,0x5353,0x5353,0x5353,
0x5353,0x5353,0x5353,0x5353,0x5353,0x5353,0x5353,0x5353,
0x5353,0x5353,0x5353,0x5353,0x5353,0x5353,0x5353,0x5353,
0x1414,0x6B14,0x5151,0x5151,0x5353,0x1414,0x5153,0x5151,
0x5353,0x5353,0x6B14,0x512A,0x5353,0x5353,0x6B14,0x512A,
0x5353,0x5353,0x1414,0x2A6B,0x5353,0x5353,0x1453,0x6B14,
0x5353,0x5353,0x5353,0x1414,0x5353,0x5353,0x5353,0x5353,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x8851,0x5151,0x5151,
0x5314,0x6B6B,0x5151,0x5188,0x1414,0x1414,0x6B53,0x516B,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x8888,0x5151,0x5151,0x8851,0x2B1C,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x8851,
0x5151,0x0451,0x8888,0x1C88,0x8888,0x5188,0x1C1C,0x0C2B,
0x2F51,0x0C2B,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x5151,0x5151,0x5151,0x6B88,0x5151,0x5151,0x8888,0x0C2F,
0x5151,0x8888,0x2B51,0x0C0C,0x5188,0x2F2F,0x0C2B,0x0C0C,
0x0C2B,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C66,0x2B66,0x0C0C,0x2B0C,0x2B2B,0x2B2B,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x2B0C,0x0C66,0x0C0C,
0x0C0C,0x2F2B,0x0C66,0x0C0C,0x2B0C,0x2B2F,0x0C0C,0x0C0C,
0x2F0C,0x0C2B,0x0C0C,0x0C0C,0x2B2F,0x0C0C,0x0C0C,0x0C0C,
0x0C2B,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x2B0C,0x0C0C,0x0C0C,0x0C0C,0x2B0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B66,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x0C2B,0x2B2B,0x2B2B,0x2B2B,0x0C2B,
0x2B2B,0x2B2B,0x2B2B,0x0C2B,0x2B2B,0x2B2B,0x2B2B,0x0C2B,
0x2B2B,0x2B2B,0x2B2B,0x0C2B,0x2B2B,0x2B2B,0x2B2B,0x0C2B,
0x2B2B,0x2B2B,0x2B2B,0x0C0C,0x2B2B,0x2B2B,0x662B,0x0C0C,
0x2B0C,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x2B0C,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x2B0C,0x2B2B,0x2B2B,0x2B2B,0x2B0C,0x2B2B,0x2B2B,0x2B2B,
0x2B0C,0x2B2B,0x2B2B,0x2B2B,0x660C,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2F66,0x5151,0x5151,0x2B2B,0x662B,0x881C,0x5188,
0x2B2B,0x2B2B,0x2F2F,0x2F2F,0x2B2B,0x2B2B,0x662B,0x6666,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x602B,
0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,0x5151,
0x2F2F,0x2F2F,0x2F2F,0x2B2F,0x6666,0x6666,0x2B2B,0x662B,
0x2B2B,0x2B2B,0x532B,0x2187,0x2B2B,0x2B2B,0x8753,0x8787,
0x2B2B,0x8753,0x6B21,0x6B6B,0x6B2F,0x8721,0x1414,0x5414,
0x5151,0x2F4A,0x5F82,0x3C5F,0x5151,0x1551,0x8278,0x5F5F,
0x6B2F,0x2187,0x5F14,0x3282,0x1414,0x8787,0x0015,0x2D3A,
0x8787,0x8787,0x2187,0x0000,0x8787,0x6B6B,0x6B6B,0x9100,
0x8787,0x1414,0x5414,0x0063,0x4F4F,0x6130,0x6130,0x6900,
0x7E7E,0x5F3C,0x005F,0x8A38,0x7B7E,0x7E1D,0x007E,0x8A38,
0x2532,0x825C,0x0032,0x9138,0x6E2D,0x007B,0x9100,0x9191,
0x0000,0x6900,0x9169,0x9191,0x6969,0x9169,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x638A,0x910D,0x0091,0x5900,0x388A,0x6938,0x6969,0x6969,
0x6991,0x6969,0x6969,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x6359,0x6363,0x0D0D,0x0F0F,0x6969,0x0F91,0x380F,0x3838,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x0A00,0x4646,0x7106,0x0A0A,0x0059,0x0600,0x4667,0x4646,
0x0F0F,0x0059,0x6F00,0x2D6F,0x9191,0x0F0F,0x0059,0x2100,
0x9191,0x9191,0x0F91,0x0059,0x9191,0x9191,0x9191,0x0F91,
0x9191,0x9191,0x9191,0x9191,0x9191,0x0F91,0x0F0F,0x910F,
0x7146,0x535F,0x5321,0x4387,0x6F0A,0x2121,0x5314,0x4387,
0x1553,0x5387,0x8787,0x4321,0x1453,0x1414,0x5366,0x2C87,
0x1776,0x1717,0x7617,0x1776,0x3E00,0x6C3E,0x3E17,0x176C,
0x0091,0x1717,0x1717,0x1717,0x9191,0x1700,0x1717,0x1717,
0x3925,0x5321,0x5314,0x1521,0x3925,0x5321,0x5353,0x5353,
0x5025,0x5315,0x5353,0x8753,0x3925,0x1421,0x1414,0x8714,
0x176D,0x1776,0x3950,0x5776,0x1757,0x6C6C,0x176C,0x6C3E,
0x1717,0x1717,0x1717,0x1717,0x1717,0x1717,0x1717,0x1717,
0x6161,0x6161,0x6161,0x6161,0x613B,0x6161,0x6161,0x6161,
0x7061,0x7070,0x6161,0x6161,0x4061,0x3B83,0x3B61,0x3B3B,
0x613B,0x6161,0x3B3B,0x3B3B,0x3B3B,0x3B61,0x6161,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x613B,0x3B3B,0x3B3B,0x3B3B,
0x6161,0x6161,0x6161,0x6161,0x4061,0x6170,0x6161,0x6161,
0x703B,0x6161,0x6161,0x6161,0x6161,0x3B3B,0x3B3B,0x7061,
0x3B3B,0x3B3B,0x3B3B,0x653B,0x3B3B,0x3B3B,0x613B,0x703B,
0x3B3B,0x3B3B,0x3B3B,0x6161,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x6161,0x6161,0x7061,0x6183,0x6161,0x6161,0x7061,0x6140,
0x6161,0x6161,0x613B,0x6161,0x6170,0x613B,0x6161,0x6161,
0x6170,0x3B3B,0x3B3B,0x3B3B,0x3B61,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x636A,0x1A63,0x611A,0x6161,0x636A,0x6A55,0x1A72,0x3B36,
0x6A30,0x616A,0x3061,0x611A,0x6161,0x7061,0x4070,0x611B,
0x613B,0x4061,0x7070,0x4083,0x3B3B,0x703B,0x613B,0x703B,
0x3B3B,0x613B,0x3B3B,0x6161,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x6161,0x6161,0x6161,0x6161,0x613B,0x6161,0x6161,0x703B,
0x6161,0x6161,0x6161,0x403B,0x6161,0x6161,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x3B61,0x6161,0x6161,0x613B,
0x3B3B,0x3B61,0x3B3B,0x7061,0x3B3B,0x6161,0x3B3B,0x403B,
0x3D81,0x7061,0x6140,0x6161,0x3B70,0x7061,0x6140,0x6161,
0x7070,0x6161,0x6161,0x6161,0x7070,0x6161,0x6161,0x6161,
0x6161,0x6161,0x6161,0x7061,0x3B61,0x6161,0x6161,0x8361,
0x6170,0x3B3B,0x3B3B,0x8381,0x6170,0x3B3B,0x613B,0x5761,
0x6161,0x3061,0x6170,0x6161,0x6161,0x6170,0x7061,0x7061,
0x6161,0x6161,0x8383,0x6181,0x6161,0x6161,0x7070,0x6161,
0x7070,0x6170,0x6161,0x613B,0x4083,0x6170,0x6161,0x6161,
0x7057,0x3B61,0x3B3B,0x3B61,0x6183,0x3B61,0x6161,0x613B,
0x6181,0x4061,0x3030,0x6161,0x611A,0x6161,0x3B3B,0x301A,
0x301A,0x8170,0x4065,0x701A,0x7023,0x653B,0x6140,0x3B81,
0x3B70,0x7030,0x6181,0x7061,0x2370,0x1A1A,0x616A,0x7070,
0x6161,0x6A3B,0x4061,0x7057,0x3B61,0x3B3B,0x7061,0x6A72,
0x5470,0x1454,0x5314,0x5353,0x303B,0x4061,0x3B70,0x5470,
0x6161,0x6161,0x6161,0x3070,0x6A70,0x1A1A,0x6123,0x3061,
0x3B70,0x3030,0x7065,0x6161,0x6161,0x3B3B,0x6161,0x613B,
0x7070,0x6161,0x7040,0x6161,0x3B70,0x3B6A,0x7083,0x3B61,
0x5353,0x5353,0x5353,0x5353,0x1414,0x1414,0x5353,0x5353,
0x3B70,0x703B,0x544F,0x1454,0x6170,0x7061,0x7030,0x6140,
0x4040,0x3B81,0x6130,0x3061,0x3B3B,0x301A,0x6140,0x3030,
0x6A61,0x301A,0x613B,0x3B30,0x7061,0x3B3B,0x6161,0x613B,
0x5353,0x5353,0x1414,0x1414,0x5353,0x5353,0x5353,0x1453,
0x1414,0x5353,0x5353,0x5353,0x7030,0x4F70,0x5454,0x1414,
0x3B70,0x6161,0x7070,0x6130,0x7083,0x6161,0x6161,0x7070,
0x7061,0x613B,0x7061,0x6170,0x7061,0x7040,0x6161,0x6161,
0x5314,0x6B6B,0x5151,0x5151,0x1414,0x1414,0x5314,0x6B6B,
0x5353,0x5353,0x1414,0x1414,0x1414,0x5314,0x5353,0x5353,
0x7061,0x4F70,0x5470,0x1454,0x6161,0x3030,0x7070,0x6130,
0x7061,0x3070,0x6161,0x6170,0x3B61,0x3070,0x7061,0x6140,
0x8888,0x8888,0x2F88,0x0C0C,0x2F6B,0x2F2F,0x0C2F,0x0C0C,
0x6614,0x6666,0x0C0C,0x0C0C,0x5353,0x5353,0x5353,0x6653,
0x1414,0x1414,0x1414,0x8753,0x3030,0x7070,0x3B70,0x3B3B,
0x7070,0x3061,0x3B70,0x7070,0x3B61,0x613B,0x6161,0x6161,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x660C,
0x0C0C,0x0C0C,0x2B2B,0x2B2B,0x0C0C,0x2B0C,0x5353,0x5314,
0x5353,0x2F2B,0x5353,0x5353,0x4F3B,0x5454,0x5454,0x5454,
0x3030,0x3061,0x7030,0x7030,0x3030,0x6161,0x7061,0x6170,
0x660C,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x0C2B,0x2B53,0x660C,0x2B66,0x0C66,
0x2B87,0x0C20,0x0C0C,0x0C0C,0x1414,0x662D,0x662B,0x6666,
0x3B61,0x5E33,0x5E89,0x895E,0x7070,0x3333,0x4F61,0x5E33,
0x0C66,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x2020,0x2020,0x6666,0x6666,0x2D66,0x2D2D,
0x8989,0x8989,0x3344,0x4F33,0x895E,0x5E5E,0x5E89,0x5E5E,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,0x0C0C,
0x2020,0x2020,0x2020,0x2020,0x2D2D,0x2D2D,0x2D2D,0x8654,
0x6130,0x7061,0x6161,0x3070,0x895E,0x3344,0x4F33,0x7030,
0x2B66,0x2B2B,0x2B2B,0x2B2B,0x2B66,0x2B2B,0x2B2B,0x2B2B,
0x2B66,0x2B2B,0x2B2B,0x2B2B,0x2B66,0x2B2B,0x2B2B,0x2B2B,
0x2B2B,0x2B2B,0x2B2B,0x662B,0x5410,0x3B54,0x4F4F,0x406A,
0x6130,0x3061,0x8170,0x301A,0x706A,0x7040,0x8140,0x301A,
0x2B2B,0x2B2B,0x0C2B,0x0C0C,0x2B2B,0x2B2B,0x0C2B,0x0C0C,
0x2B2B,0x2B2B,0x0C2B,0x0C0C,0x2B2B,0x2B60,0x2060,0x2020,
0x6666,0x1466,0x5414,0x6554,0x6170,0x301A,0x6161,0x7061,
0x6161,0x3B30,0x3061,0x8161,0x833B,0x1A61,0x6130,0x7070,
0x0C0C,0x2B2B,0x2B2B,0x2B2B,0x0C0C,0x2B2B,0x2B2B,0x2B2B,
0x2020,0x6020,0x602B,0x2B60,0x662B,0x5386,0x8614,0x5486,
0x3023,0x811A,0x1A61,0x301A,0x1A30,0x811A,0x6161,0x1A6A,
0x1A1A,0x616A,0x3061,0x8170,0x8181,0x4030,0x8161,0x1A1A,
0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x2B2B,0x602B,0x6060,0x2B2B,
0x2B2B,0x6666,0x5414,0x4F54,0x403B,0x6130,0x6161,0x6161,
0x6130,0x6161,0x6161,0x6130,0x4063,0x6161,0x6161,0x8370,
0x8340,0x6161,0x4061,0x5770,0x6181,0x6161,0x7061,0x6170,
0x602B,0x2F2F,0x2F6B,0x142B,0x1453,0x5414,0x1A33,0x6161,
0x7061,0x6130,0x1A30,0x7061,0x6361,0x811A,0x8161,0x7061,
0x3061,0x4061,0x6170,0x6161,0x8161,0x5761,0x4083,0x6161,
0x8140,0x4070,0x7070,0x6161,0x6170,0x8161,0x6161,0x6161,
0x5433,0x7040,0x3061,0x3030,0x3030,0x301A,0x3061,0x3061,
0x3070,0x6130,0x3070,0x3061,0x1A3B,0x6A1A,0x6161,0x6161,
0x6161,0x6161,0x6161,0x6161,0x6161,0x1A61,0x6130,0x7061,
0x7070,0x3061,0x6130,0x7061,0x8340,0x8161,0x7070,0x6161,
0x1A30,0x3B1A,0x0061,0x9169,0x811A,0x3070,0x6900,0x9191,
0x8161,0x0061,0x9169,0x9191,0x1A30,0x6900,0x9191,0x9191,
0x0030,0x6969,0x9191,0x9191,0x0083,0x9169,0x9191,0x0838,
0x6900,0x9169,0x9191,0x9191,0x6900,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x0027,0x9138,0x9191,0x9191,0x0000,0x910F,0x9191,0x9191,
0x0F0F,0x0091,0x2591,0x910F,0x9138,0x9191,0x0F25,0x0025,
0x9191,0x9191,0x910F,0x0F0F,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9100,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x0027,0x9138,0x9191,0x9191,0x0000,0x910F,0x9191,0x9191,
0x0F0F,0x9191,0x9191,0x9191,0x9191,0x0838,0x9138,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x3838,0x0F0F,0x9191,0x9191,0x3891,0x3838,
0x9191,0x9191,0x9191,0x5991,0x9191,0x910F,0x9191,0x9191,
0x9191,0x3891,0x9138,0x9191,0x9191,0x9191,0x3838,0x5938,
0x9191,0x9191,0x9191,0x3838,0x9191,0x910F,0x9191,0x9191,
0x910F,0x0091,0x1700,0x1717,0x0F38,0x9191,0x0059,0x0000,
0x3859,0x0F38,0x0F0F,0x590F,0x590F,0x5963,0x3838,0x0059,
0x9191,0x6363,0x9090,0x1700,0x5959,0x6359,0x0063,0x1717,
0x5938,0x9159,0x6359,0x5700,0x9191,0x5938,0x5959,0x0059,
0x0017,0x1717,0x1717,0x1717,0x1700,0x1717,0x1717,0x1717,
0x1700,0x1717,0x1717,0x1717,0x5757,0x174E,0x1717,0x1717,
0x7017,0x1740,0x1717,0x1717,0x4017,0x404F,0x4E17,0x1717,
0x5717,0x8170,0x1770,0x1717,0x0000,0x6170,0x6181,0x1717,
0x3B3B,0x613B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B61,0x3B3B,0x3B3B,0x3B3B,0x7040,0x3B3B,0x3B3B,0x3B3B,
0x6A57,0x3B3B,0x3B3B,0x403B,0x6A40,0x3B3B,0x813B,0x6583,
0x3B3B,0x3B3B,0x3B3B,0x4065,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x613B,0x3B40,0x3B3B,0x3B3B,
0x4081,0x4083,0x3B40,0x3B3B,0x8381,0x8357,0x3B3B,0x3B3B,
0x403B,0x3B40,0x3B6A,0x3B3B,0x3B3B,0x3B6A,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x6A3B,0x3B3B,
0x3B3B,0x613B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x7061,0x4065,0x3B3B,0x3B3B,0x703B,0x3B40,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x6A3B,0x6A72,0x3B3B,
0x3B3B,0x7072,0x1A63,0x3B6A,0x3B3B,0x6372,0x1313,0x7263,
0x3B3B,0x3B3B,0x3B3B,0x4061,0x3B3B,0x3B3B,0x3B3B,0x7061,
0x3B3B,0x3B3B,0x3B3B,0x613B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x6140,0x3B3B,0x6161,0x8370,0x6170,0x3B3B,0x3B3B,0x3B3B,
0x3B61,0x3B3B,0x726A,0x613B,0x3B3B,0x6A3B,0x551A,0x3B3B,
0x3B3B,0x6A3B,0x551A,0x6A30,0x3B3B,0x3B3B,0x726A,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x613B,0x3B3B,0x3B3B,0x3B61,0x3B3B,0x613B,0x403B,0x6540,
0x3B61,0x613B,0x8361,0x4057,0x3B3B,0x613B,0x403B,0x3B40,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B65,0x3B3B,0x3B3B,
0x3B3B,0x613B,0x6A3B,0x551A,0x3B3B,0x3B3B,0x6A3B,0x551A,
0x3B81,0x3B61,0x303B,0x6A6A,0x3B61,0x3B3B,0x613B,0x6540,
0x3B3B,0x3B3B,0x813B,0x6583,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x1A6A,0x3B55,0x6181,0x613B,0x1A6A,0x3B55,0x3B3B,0x6161,
0x6A70,0x616A,0x613B,0x4040,0x3B3B,0x6A72,0x6130,0x4065,
0x6A61,0x1A63,0x3B6A,0x6161,0x723B,0x5555,0x3B72,0x3B3B,
0x3B3B,0x6A72,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B61,0x613B,0x7070,0x613B,0x613B,0x6161,0x7083,0x3B61,
0x3B61,0x3B3B,0x613B,0x4061,0x3B61,0x6A3B,0x6540,0x3B61,
0x3B3B,0x613B,0x4065,0x6161,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x6161,0x7070,0x613B,0x3B3B,0x6170,0x3B61,0x8161,0x3B61,
0x6140,0x613B,0x403B,0x6170,0x3B61,0x613B,0x5740,0x6140,
0x3B61,0x3B3B,0x6A3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x613B,
0x3B3B,0x3B3B,0x6161,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x613B,0x3B61,0x7070,0x7061,0x403B,0x3B57,0x7040,0x3B61,
0x4061,0x7083,0x6161,0x6161,0x613B,0x6181,0x3B3B,0x613B,
0x3B61,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x7040,0x3B61,0x3B3B,
0x403B,0x3B40,0x3B3B,0x3B3B,0x653B,0x3B70,0x3B3B,0x3B3B,
0x6170,0x3B61,0x3030,0x613B,0x6161,0x6170,0x3061,0x3B3B,
0x7070,0x4081,0x6165,0x613B,0x4070,0x4081,0x6140,0x613B,
0x403B,0x6183,0x3B61,0x4070,0x7061,0x3B65,0x6161,0x4070,
0x613B,0x3B61,0x3B3B,0x813B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x6161,0x6170,0x6161,0x3030,0x3B3B,0x6170,0x3B3B,
0x3B30,0x613B,0x403B,0x7070,0x3B30,0x3B3B,0x3B70,0x6A72,
0x6181,0x3B3B,0x306A,0x6A63,0x4040,0x3B61,0x1A6A,0x7036,
0x4065,0x3B81,0x3B61,0x401B,0x6161,0x3B3B,0x3B61,0x7065,
0x7070,0x3B3B,0x6540,0x4F3B,0x6161,0x6161,0x7070,0x3B3B,
0x6A6A,0x3B30,0x6161,0x6161,0x6363,0x3B6A,0x6161,0x3B3B,
0x6363,0x616A,0x4070,0x3B61,0x7272,0x3B70,0x4040,0x3B61,
0x3B61,0x3B3B,0x3B3B,0x3B3B,0x6161,0x3B3B,0x613B,0x3B61,
0x5E33,0x3333,0x895E,0x5E5E,0x613B,0x4070,0x5E33,0x4489,
0x3B3B,0x403B,0x4F3B,0x3B61,0x3B3B,0x3B3B,0x3B3B,0x403B,
0x7061,0x8340,0x6170,0x7061,0x3B3B,0x3B3B,0x613B,0x613B,
0x613B,0x6161,0x3B3B,0x4040,0x613B,0x6540,0x3B3B,0x4070,
0x5E5E,0x5E5E,0x5E5E,0x4489,0x3333,0x8944,0x5E44,0x5E5E,
0x703B,0x4F4F,0x3340,0x3333,0x6183,0x3B3B,0x3B3B,0x703B,
0x3B70,0x3B3B,0x6161,0x6161,0x3B61,0x6161,0x6570,0x3B70,
0x3B61,0x813B,0x5783,0x6540,0x3B61,0x3B65,0x4040,0x4040,
0x3333,0x4F4F,0x7061,0x3B72,0x5E5E,0x895E,0x3344,0x4F33,
0x8933,0x895E,0x5E5E,0x5E5E,0x3B3B,0x5E33,0x8989,0x8989,
0x403B,0x5E4F,0x8989,0x8989,0x4F3B,0x5E44,0x8989,0x8989,
0x613B,0x5E44,0x8989,0x8989,0x2381,0x5E4F,0x8989,0x8989,
0x7070,0x1A61,0x8130,0x6570,0x3B61,0x6A3B,0x703B,0x3B61,
0x3344,0x3B61,0x7070,0x6161,0x5E5E,0x335E,0x3B61,0x613B,
0x8989,0x5E5E,0x4F33,0x614F,0x8989,0x8989,0x5E89,0x404F,
0x8989,0x8989,0x8989,0x3333,0x8989,0x8989,0x8989,0x5E5E,
0x1A30,0x4040,0x6181,0x3030,0x3030,0x303B,0x6130,0x3B40,
0x8161,0x1A6A,0x811A,0x7040,0x703B,0x3B61,0x613B,0x613B,
0x4070,0x7070,0x7070,0x3B81,0x613B,0x3B70,0x4070,0x6A61,
0x3B4F,0x6161,0x1A6A,0x3B36,0x2333,0x3B3B,0x306A,0x3B1A,
0x6161,0x6161,0x6161,0x6161,0x3B61,0x6161,0x4061,0x7040,
0x4040,0x6330,0x5761,0x6157,0x3B70,0x7061,0x7040,0x6170,
0x6161,0x3B61,0x6170,0x3B61,0x5555,0x616A,0x3B61,0x613B,
0x1A1A,0x613B,0x3B3B,0x6161,0x6A6A,0x3B40,0x6161,0x3B3B,
0x6A61,0x3655,0x616A,0x6161,0x6A61,0x1A1A,0x616A,0x6161,
0x6161,0x6A6A,0x6161,0x8370,0x7061,0x6140,0x6161,0x8370,
0x4061,0x6140,0x6161,0x6161,0x7061,0x6170,0x3B61,0x6161,
0x613B,0x3B3B,0x3B61,0x6161,0x3B3B,0x7061,0x613B,0x3B3B,
0x7061,0x6161,0x7061,0x0061,0x6161,0x6161,0x6161,0x0061,
0x7270,0x406A,0x6170,0x6900,0x636A,0x1B55,0x8140,0x6900,
0x1A6A,0x6555,0x6161,0x6900,0x6A30,0x616A,0x0061,0x9169,
0x6161,0x6161,0x003B,0x9169,0x3B3B,0x3B3B,0x6900,0x9169,
0x9169,0x9191,0x9191,0x9191,0x9169,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x6991,0x9191,0x9191,0x9191,0x4591,
0x9191,0x9191,0x9191,0x4569,0x0F91,0x9191,0x6991,0x4545,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x4591,0x4545,0x4545,0x4591,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x4545,0x4545,0x4545,0x9191,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,0x4545,
0x4545,0x4545,0x4545,0x6945,0x6969,0x4569,0x4545,0x6945,
0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,0x9191,
0x9191,0x9191,0x9191,0x9191,0x9169,0x9191,0x9191,0x9191,
0x4245,0x9191,0x9191,0x9191,0x4545,0x9142,0x9191,0x9191,
0x4545,0x6969,0x9142,0x9191,0x6969,0x6969,0x4269,0x910F,
0x9191,0x3891,0x9191,0x9191,0x9191,0x9191,0x5938,0x9191,
0x0F91,0x9191,0x3891,0x5959,0x0F91,0x9191,0x3891,0x5959,
0x9191,0x910F,0x9191,0x3891,0x9191,0x0F38,0x0F0F,0x0F0F,
0x9191,0x5991,0x3838,0x3838,0x9191,0x3891,0x5959,0x3838,
0x9191,0x3859,0x3838,0x3838,0x5991,0x6359,0x3838,0x0038,
0x5959,0x5959,0x9063,0x5700,0x5959,0x5959,0x6359,0x0000,
0x5959,0x5959,0x5959,0x0063,0x380F,0x6359,0x6363,0x6363,
0x3838,0x3838,0x2838,0x6328,0x3838,0x2838,0x2828,0x9028,
0x8100,0x6161,0x8161,0x5781,0x6161,0x6161,0x6161,0x3061,
0x6181,0x7061,0x6130,0x6130,0x6170,0x8330,0x6170,0x6161,
0x7040,0x8361,0x6170,0x7061,0x7000,0x7061,0x6161,0x3B61,
0x0063,0x6161,0x6A61,0x1A6A,0x0000,0x3B61,0x636A,0x6163,
0x3B3B,0x6A3B,0x7272,0x3B3B,0x3B3B,0x3B72,0x1A63,0x3B72,
0x3B3B,0x1A72,0x1313,0x7230,0x3B3B,0x7272,0x3655,0x721A,
0x233B,0x7223,0x8E72,0x3B72,0x8323,0x3B3B,0x233B,0x3B3B,
0x2323,0x233B,0x2323,0x3B23,0x3B23,0x2323,0x2323,0x2323,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B23,
0x2323,0x3B3B,0x3B3B,0x233B,0x3B3B,0x3B3B,0x3B3B,0x656A,
0x3B3B,0x3B3B,0x3B3B,0x656A,0x2323,0x2323,0x2323,0x2323,
0x3B3B,0x406A,0x4040,0x8165,0x3B3B,0x8381,0x8383,0x651B,
0x3B3B,0x1B6A,0x6557,0x6565,0x233B,0x2323,0x3B3B,0x6A6A,
0x3B40,0x3B3B,0x3B3B,0x3B3B,0x3B83,0x2323,0x2323,0x2323,
0x6A57,0x3B3B,0x3B3B,0x3B3B,0x6A40,0x233B,0x233B,0x2323,
0x3B3B,0x3672,0x3613,0x6A3B,0x3B3B,0x1A72,0x7036,0x3B72,
0x3B6A,0x723B,0x7272,0x3B3B,0x3B3B,0x233B,0x3B72,0x3B23,
0x3B3B,0x3B3B,0x3B3B,0x2340,0x2323,0x2323,0x3B23,0x6540,
0x3B3B,0x3B3B,0x3B3B,0x8323,0x2323,0x3B23,0x3B3B,0x573B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x233B,0x3B3B,0x4023,0x3B23,0x406A,0x6565,
0x6540,0x3B23,0x656A,0x4057,0x401B,0x3B6A,0x403B,0x3B40,
0x231B,0x3B3B,0x3B3B,0x233B,0x6A1B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B23,0x3B3B,0x3B3B,0x3B3B,0x3B23,0x3B3B,0x3B3B,0x3B3B,
0x3B6A,0x3B3B,0x3B3B,0x3B3B,0x3B23,0x3B3B,0x3B3B,0x3B3B,
0x2323,0x2323,0x2323,0x2323,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x403B,0x6A65,0x653B,0x3B3B,0x3B3B,0x813B,0x1740,0x6A65,
0x3B3B,0x6A3B,0x1765,0x6A65,0x3B3B,0x3B3B,0x403B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x233B,0x3B23,0x3B3B,0x2323,0x653B,0x3B40,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B23,0x3B3B,0x3B3B,0x406A,0x6A40,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x233B,0x3B3B,0x3B3B,0x3B3B,0x4065,
0x3B3B,0x3B3B,0x3B3B,0x5F17,0x3B3B,0x3B3B,0x233B,0x004E,
0x403B,0x3B3B,0x3B3B,0x3B3B,0x8383,0x3B3B,0x3B3B,0x3B3B,
0x4065,0x3B3B,0x3B3B,0x3B3B,0x3B6A,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x6A3B,0x3B23,0x3B3B,0x3B3B,0x6A3B,
0x003C,0x4071,0x3B3B,0x3B3B,0x173C,0x4E00,0x3B3B,0x233B,
0x3B3B,0x3B3B,0x4023,0x3B3B,0x3B3B,0x3B3B,0x6583,0x3B3B,
0x3B3B,0x653B,0x4057,0x3B6A,0x3B40,0x2E6A,0x812E,0x3B3B,
0x4065,0x5781,0x8157,0x3B3B,0x6565,0x406A,0x3B23,0x233B,
0x2323,0x3B3B,0x233B,0x233D,0x3B3B,0x2323,0x233D,0x444F,
0x3B3B,0x3B3B,0x5783,0x3B81,0x3B3B,0x4040,0x5757,0x3B81,
0x3B3B,0x4023,0x6583,0x3B81,0x3B3B,0x3B3B,0x3B40,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x233B,0x3B23,0x3B3B,0x233B,0x4F23,
0x8933,0x3D3B,0x3B3D,0x5E33,0x5E5E,0x3344,0x5E33,0x5E5E,
0x653B,0x3B3B,0x3B3B,0x4040,0x403B,0x3B3B,0x3B3B,0x4083,
0x3B3B,0x3B3B,0x3B3B,0x3B40,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B23,0x3B3B,0x3B3B,0x3B3B,0x3B33,0x2323,0x2323,0x3B23,
0x7E89,0x3C00,0x3B23,0x2476,0x0076,0x0043,0x3976,0x0000,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x653B,0x6140,0x3B3B,0x3B3B,
0x833B,0x3B65,0x3B3B,0x3B3B,0x233B,0x403B,0x3B40,0x3B3B,
0x3B23,0x403B,0x2340,0x2323,0x243B,0x4F4F,0x4F4F,0x4F4F,
0x0000,0x5050,0x5000,0x5E5E,0x5943,0x4389,0x5000,0x8989,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x403B,0x3B3B,
0x403B,0x4040,0x4083,0x3B3B,0x8340,0x4065,0x4057,0x3B6A,
0x2E1B,0x6A83,0x4040,0x3B3B,0x7633,0x8157,0x3B6A,0x8944,
0x0639,0x007E,0x3A00,0x5089,0x0039,0x4306,0x5000,0x0039,
0x403B,0x3B3B,0x403B,0x3B70,0x4065,0x3B3B,0x4081,0x3B40,
0x4083,0x3B81,0x3B40,0x2323,0x233B,0x6523,0x4F65,0x4F4F,
0x3B23,0x3333,0x8944,0x5E5E,0x4F33,0x5E76,0x895E,0x8989,
0x0039,0x5000,0x8989,0x8989,0x4300,0x8959,0x8989,0x5089,
0x3B3B,0x403B,0x3B3B,0x6161,0x3B3B,0x3B3B,0x2323,0x2323,
0x2323,0x3B3B,0x334F,0x3333,0x3333,0x8944,0x5E5E,0x5E5E,
0x5E5E,0x5E5E,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x5900,0x8989,0x8989,0x8989,
0x613B,0x4040,0x3B3B,0x3B3B,0x3B3B,0x4F3B,0x6133,0x5E33,
0x234F,0x4F44,0x5E4F,0x5E89,0x4489,0x4F5E,0x5E4F,0x895E,
0x5E5E,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x4F23,0x8989,0x8989,0x8989,0x334F,0x895E,0x8989,0x8989,
0x895E,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x5089,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x5E5E,0x8989,0x8989,0x5E5E,0x3333,
0x8989,0x5E89,0x3389,0x2323,0x4400,0x4F4F,0x233B,0x3B3B,
0x4F5E,0x3B23,0x6A3B,0x616A,0x5E5E,0x3B33,0x703B,0x3B3B,
0x5E89,0x615E,0x6581,0x4057,0x5E89,0x234F,0x7081,0x7083,
0x335E,0x4023,0x3B3B,0x3B81,0x4F44,0x4023,0x4065,0x3B61,
0x3B3B,0x4081,0x4083,0x3B6A,0x3B3B,0x3B3B,0x3B40,0x3B3B,
0x3B3B,0x3B40,0x6161,0x4040,0x613B,0x3B61,0x613B,0x4040,
0x3B3B,0x3B3B,0x613B,0x4040,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x3B3B,0x3B40,0x3B3B,0x3B3B,0x6A3B,0x6540,0x3B40,0x3B23,
0x3B61,0x6561,0x4065,0x613B,0x3B61,0x6561,0x4057,0x3B3B,
0x3B61,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x613B,0x3B61,0x7061,
0x3B3B,0x3B3B,0x3B3B,0x813B,0x3B3B,0x3B3B,0x3B3B,0x813B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,
0x0061,0x0000,0x6969,0x9191,0x3B3B,0x6900,0x6969,0x9138,
0x3B3B,0x003B,0x3800,0x9191,0x3B65,0x3B3B,0x003B,0x9191,
0x6557,0x3B81,0x003B,0x9191,0x6540,0x3B3B,0x003B,0x0F91,
0x813B,0x4083,0x0081,0x0F91,0x6A3B,0x5740,0x003B,0x0F0F,
0x0F91,0x9191,0x450F,0x4545,0x0F91,0x0F91,0x4569,0x6945,
0x0F0F,0x0F91,0x4569,0x6945,0x380F,0x0F0F,0x6969,0x4269,
0x380F,0x0F0F,0x6969,0x4242,0x3838,0x3838,0x6969,0x4242,
0x5938,0x3838,0x4269,0x4242,0x5938,0x3838,0x4242,0x4242,
0x6969,0x4545,0x4545,0x4545,0x6969,0x4545,0x4545,0x4545,
0x6942,0x4569,0x4545,0x6945,0x6942,0x6969,0x4569,0x6945,
0x4242,0x6969,0x6969,0x6969,0x4242,0x6969,0x6969,0x6969,
0x4242,0x6969,0x4269,0x6969,0x4242,0x6942,0x4269,0x6969,
0x6969,0x6969,0x4569,0x6945,0x6969,0x6969,0x6969,0x6969,
0x6969,0x6969,0x6969,0x6969,0x4269,0x6969,0x6969,0x6969,
0x4269,0x6942,0x6969,0x6969,0x4269,0x4242,0x6969,0x6969,
0x4242,0x4242,0x4242,0x6969,0x4242,0x4242,0x4242,0x6942,
0x6969,0x6969,0x4269,0x0F42,0x6969,0x4269,0x4269,0x3842,
0x6969,0x6969,0x4242,0x1E42,0x4269,0x6969,0x4242,0x1E42,
0x6969,0x4242,0x4242,0x1E42,0x6969,0x4242,0x4242,0x1E1E,
0x4242,0x4242,0x421E,0x1E1E,0x4242,0x4242,0x1E1E,0x1E1E,
0x910F,0x9191,0x6359,0x2863,0x0F0F,0x0F0F,0x590F,0x6363,
0x0F38,0x0F0F,0x0F0F,0x6359,0x0F38,0x0F38,0x0F0F,0x590F,
0x0F1E,0x5938,0x3838,0x3838,0x0F1E,0x380F,0x5959,0x5959,
0x641E,0x380F,0x5938,0x5963,0x641E,0x0F59,0x380F,0x2859,
0x2828,0x6328,0x2828,0x2828,0x2828,0x6328,0x6363,0x6363,
0x6363,0x6363,0x5963,0x6359,0x6363,0x2828,0x5963,0x5959,
0x6338,0x2828,0x2828,0x5959,0x5959,0x2863,0x2828,0x2828,
0x5959,0x2859,0x2828,0x2828,0x6363,0x5959,0x5959,0x6328,
0x6100,0x3B00,0x556A,0x6A55,0x3B00,0x613B,0x2370,0x306A,
0x0063,0x613B,0x7040,0x7061,0x0063,0x4061,0x6140,0x7061,
0x0059,0x3B61,0x613B,0x3B61,0x5959,0x3B00,0x3B3B,0x6561,
0x5928,0x3B00,0x3B3B,0x4061,0x0063,0x6100,0x3B3B,0x3B3B,
0x2323,0x2323,0x3B23,0x2323,0x2323,0x2323,0x1B23,0x2323,
0x2323,0x3B23,0x5765,0x233B,0x6523,0x6A65,0x2323,0x2323,
0x6572,0x721B,0x7223,0x2323,0x2323,0x231B,0x2323,0x6523,
0x2323,0x231B,0x7272,0x6523,0x7223,0x651B,0x7272,0x1B23,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x723D,0x2323,0x2323,0x7272,
0x656A,0x2357,0x2323,0x2323,0x656A,0x6A65,0x2323,0x2323,
0x6A23,0x236A,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x233D,0x7223,0x2365,
0x3D6A,0x231B,0x7223,0x2365,0x1B65,0x231B,0x6523,0x2365,
0x2323,0x2323,0x3B23,0x2E6A,0x2323,0x2323,0x6A23,0x2E23,
0x2323,0x2323,0x3B23,0x1B23,0x2323,0x2323,0x2323,0x3B23,
0x2323,0x2323,0x2323,0x2323,0x3D72,0x7265,0x2323,0x2323,
0x6572,0x7265,0x2323,0x2323,0x6572,0x6A65,0x2372,0x2323,
0x6A1B,0x2323,0x2323,0x2323,0x6A65,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x6A23,
0x2323,0x2323,0x2323,0x836A,0x2323,0x2323,0x2323,0x1B23,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x2323,0x2323,0x2323,0x3B23,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x236A,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x6A57,0x2323,0x2323,0x2323,0x723D,0x2323,0x2323,0x2323,
0x6523,0x8340,0x3B23,0x3B3B,0x6540,0x1B1B,0x3B6A,0x3B3B,
0x2323,0x2365,0x233B,0x2323,0x2323,0x3B6A,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x3B23,
0x2323,0x2323,0x2323,0x6A23,0x2323,0x3D23,0x2323,0x6A23,
0x3B3B,0x3B3B,0x3B3B,0x004E,0x3B3B,0x3B3B,0x3B3B,0x0017,
0x2323,0x2323,0x2323,0x002E,0x236A,0x2323,0x2323,0x0057,
0x4023,0x2365,0x2323,0x0057,0x1B1B,0x2340,0x3D23,0x0057,
0x2E1B,0x7223,0x4F23,0x002E,0x2E1B,0x2372,0x5E44,0x3333,
0x4E1B,0x5700,0x1B17,0x2E4E,0x672E,0x3C71,0x7167,0x573C,
0x0006,0x7E2E,0x7100,0x0889,0x4C00,0x434F,0x3306,0x505E,
0x1B4E,0x4354,0x5E7B,0x3989,0x574E,0x4333,0x897B,0x5089,
0x4417,0x2489,0x8967,0x4489,0x5E5E,0x8989,0x8989,0x8989,
0x2323,0x4F3B,0x8933,0x5E5E,0x0076,0x897B,0x435E,0x3900,
0x5900,0x1006,0x0010,0x6743,0x5006,0x5900,0x0086,0x5043,
0x0000,0x8950,0x1089,0x0606,0x1000,0x1050,0x0639,0x0050,
0x4367,0x5000,0x4389,0x2400,0x3986,0x8986,0x8989,0x8989,
0x8989,0x5E5E,0x895E,0x8989,0x5989,0x0006,0x8910,0x8989,
0x5089,0x7B06,0x8943,0x8989,0x5089,0x4300,0x8950,0x8989,
0x8989,0x0050,0x8943,0x4489,0x7B86,0x2443,0x8967,0x5989,
0x5989,0x0006,0x8950,0x8989,0x8989,0x8989,0x8989,0x8989,
0x6743,0x0086,0x5E39,0x0010,0x0024,0x5059,0x8910,0x0086,
0x0010,0x5006,0x8989,0x0086,0x1089,0x0043,0x8924,0x0086,
0x5043,0x0689,0x8967,0x0086,0x0043,0x0686,0x8906,0x0086,
0x2489,0x0000,0x8910,0x0050,0x8989,0x8989,0x8989,0x8989,
0x8910,0x0059,0x5000,0x8989,0x8910,0x0050,0x4306,0x8989,
0x8910,0x4343,0x6750,0x8989,0x8950,0x5067,0x0010,0x1024,
0x1050,0x0000,0x0000,0x507B,0x5050,0x4467,0x5089,0x4467,
0x4324,0x897B,0x5989,0x3900,0x8989,0x8989,0x8989,0x8989,
0x0050,0x4386,0x4467,0x1089,0x0050,0x0050,0x8950,0x8689,
0x0050,0x4367,0x8989,0x8689,0x0010,0x5900,0x8989,0x8689,
0x0010,0x6700,0x8950,0x8689,0x0086,0x4310,0x4300,0x8659,
0x0010,0x8939,0x0050,0x5050,0x8989,0x8989,0x8989,0x8989,
0x1000,0x8989,0x8989,0x5089,0x1000,0x8989,0x8989,0x0639,
0x1000,0x8989,0x8989,0x4350,0x5000,0x8989,0x8989,0x3989,
0x5000,0x8989,0x8989,0x3989,0x5000,0x8989,0x8989,0x3989,
0x2400,0x8989,0x8989,0x5089,0x8989,0x8989,0x8989,0x8989,
0x3967,0x8986,0x8989,0x8989,0x3900,0x1010,0x0000,0x8950,
0x8967,0x0689,0x5043,0x8967,0x8967,0x0044,0x1050,0x8600,
0x8967,0x0044,0x1010,0x5900,0x8967,0x0689,0x5050,0x8906,
0x1000,0x1089,0x0606,0x5E86,0x8989,0x8989,0x8989,0x335E,
0x8989,0x8989,0x8989,0x8989,0x8989,0x4344,0x0043,0x4459,
0x8989,0x7B39,0x0050,0x2459,0x8989,0x507B,0x0086,0x7110,
0x8989,0x507B,0x0010,0x7150,0x8989,0x4343,0x0043,0x5F17,
0x5E5E,0x0050,0x6706,0x6517,0x3389,0x1723,0x6740,0x2317,
0x8989,0x8989,0x8989,0x5089,0x0006,0x8924,0x5E89,0x0639,
0x5906,0x1000,0x5E33,0x9276,0x337E,0x1700,0x3B23,0x4E23,
0x654E,0x4E00,0x2323,0x4E23,0x2E5F,0x6500,0x2323,0x4E23,
0x7106,0x3B4E,0x3B3B,0x4E3B,0x2323,0x2323,0x2323,0x2323,
0x2467,0x2357,0x3B23,0x3B3B,0x4E00,0x172E,0x0000,0x3B17,
0x6A67,0x0623,0x4E7E,0x3B67,0x2367,0x0057,0x1717,0x5700,
0x8367,0x0057,0x172E,0x6500,0x6567,0x0665,0x4E17,0x3B06,
0x1700,0x173B,0x0606,0x3B57,0x2323,0x3B23,0x3B3B,0x3B3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x677E,0x0017,0x657E,
0x3B3B,0x674E,0x0071,0x7E7E,0x3B3B,0x004E,0x6767,0x677E,
0x2323,0x004E,0x6716,0x7E67,0x653B,0x004E,0x6717,0x2E00,
0x406A,0x0617,0x6783,0x2306,0x233B,0x6565,0x7E40,0x3B4E,
0x6A3B,0x5740,0x403B,0x6A40,0x654E,0x7183,0x4E00,0x673B,
0x4E00,0x7E7E,0x7117,0x673B,0x4E00,0x1767,0x5F71,0x673B,
0x4E00,0x0000,0x4071,0x673B,0x4E00,0x3C06,0x7E65,0x673B,
0x7E06,0x714E,0x7171,0x6723,0x3B3B,0x4E3B,0x3B4E,0x7E3B,
0x3B3B,0x3B3B,0x3B3B,0x3B3B,0x404E,0x174E,0x0083,0x7E4E,
0x715F,0x3C00,0x002E,0x7157,0x6771,0x7106,0x0017,0x7183,
0x4E00,0x713C,0x0017,0x0683,0x5700,0x717E,0x001B,0x674E,
0x3B06,0x677E,0x4E3B,0x9200,0x3B3C,0x176F,0x236A,0x3B65,
0x3B3B,0x6581,0x6557,0x0F00,0x3B4E,0x6A3B,0x1B65,0x0F00,
0x3B7E,0x3B3B,0x403B,0x3800,0x3B7E,0x3B3B,0x6A3B,0x0065,
0x3B4E,0x3B3B,0x3B3B,0x6A6A,0x3B17,0x233B,0x6A23,0x3B3B,
0x3B3B,0x3B3B,0x401B,0x6581,0x233B,0x6A23,0x651B,0x576A,
0x5938,0x3838,0x421E,0x4242,0x5938,0x3859,0x1E38,0x1E42,
0x5963,0x3859,0x1E38,0x1E1E,0x5963,0x3859,0x1E38,0x1E1E,
0x5900,0x5963,0x3838,0x1E1E,0x0023,0x6359,0x3859,0x1E1E,
0x6A65,0x5900,0x5963,0x1E38,0x6523,0x3800,0x6363,0x6459,
0x4242,0x4242,0x4269,0x6969,0x4242,0x4242,0x4242,0x6942,
0x4242,0x4242,0x4242,0x4242,0x421E,0x4242,0x4242,0x4242,
0x1E1E,0x4242,0x4242,0x421E,0x1E64,0x421E,0x4242,0x1E1E,
0x6464,0x1E1E,0x4242,0x1E1E,0x6464,0x1E64,0x1E1E,0x1E42,
0x4242,0x4242,0x4242,0x4242,0x4242,0x4242,0x421E,0x4242,
0x4242,0x4242,0x1E1E,0x4242,0x4242,0x4242,0x1E1E,0x421E,
0x4242,0x4242,0x1E1E,0x1E1E,0x4242,0x1E42,0x1E1E,0x1E1E,
0x421E,0x1E42,0x1E1E,0x1E1E,0x1E1E,0x1E1E,0x1E1E,0x1E1E,
0x4242,0x4242,0x641E,0x1E1E,0x4242,0x421E,0x6442,0x1E1E,
0x4242,0x421E,0x1E42,0x1E64,0x4242,0x1E1E,0x1E42,0x6464,
0x421E,0x1E1E,0x1E1E,0x6464,0x1E1E,0x1E1E,0x1E1E,0x6464,
0x1E1E,0x1E1E,0x1E1E,0x641E,0x1E64,0x1E1E,0x1E1E,0x641E,
0x641E,0x6363,0x3838,0x6338,0x641E,0x2864,0x5963,0x5959,
0x641E,0x2864,0x6390,0x5959,0x6464,0x2864,0x9028,0x6390,
0x6464,0x5964,0x9028,0x9090,0x6464,0x3864,0x2828,0x9063,
0x6464,0x3864,0x2859,0x6363,0x6464,0x5964,0x2859,0x6328,
0x9028,0x2828,0x2828,0x6328,0x2828,0x9090,0x2828,0x2828,
0x6359,0x2828,0x9090,0x9090,0x2863,0x2828,0x9028,0x0090,
0x2828,0x6363,0x2828,0x0028,0x2890,0x6328,0x6363,0x2863,
0x6363,0x2828,0x6328,0x0000,0x6363,0x0063,0x0000,0x3B3B,
0x0063,0x3B3B,0x3B3B,0x3B3B,0x0063,0x403B,0x3B3B,0x3B3B,
0x0000,0x403B,0x3B40,0x3B3B,0x3B3B,0x8300,0x3B65,0x3B3B,
0x3B3B,0x833B,0x3B40,0x3B3B,0x3B00,0x8340,0x3B3B,0x3B3B,
0x6A3B,0x8365,0x3B6A,0x233B,0x6A3B,0x6565,0x3B6A,0x656A,
0x6A23,0x651B,0x7272,0x6523,0x7223,0x651B,0x7272,0x6523,
0x7223,0x1B1B,0x7272,0x1B3D,0x7272,0x1B1B,0x7272,0x1B65,
0x2372,0x1B57,0x7272,0x1B1B,0x1B3D,0x651B,0x7272,0x1B1B,
0x721B,0x3D3D,0x231B,0x1B1B,0x723D,0x1B23,0x721B,0x6557,
0x3D1B,0x2372,0x7223,0x1B72,0x6565,0x236A,0x236A,0x6557,
0x1B23,0x7223,0x2E23,0x6A65,0x1B6A,0x7265,0x6557,0x1B72,
0x1B6A,0x1B1B,0x3D1B,0x651B,0x7272,0x572E,0x2E1B,0x723D,
0x236A,0x2E2E,0x722E,0x2372,0x1B6A,0x6F17,0x7272,0x2323,
0x6A1B,0x2365,0x1B3D,0x231B,0x726A,0x231B,0x5765,0x721B,
0x2323,0x721B,0x2E65,0x6A1B,0x3D3D,0x721B,0x2E65,0x6A1B,
0x1B72,0x6A57,0x2E1B,0x7265,0x1B72,0x231B,0x572E,0x2372,
0x1B6A,0x231B,0x1B2E,0x236A,0x2E6A,0x6A2E,0x1B57,0x7272,
0x3D72,0x231B,0x1B23,0x2372,0x3D72,0x1B2E,0x5765,0x7265,
0x656A,0x1B57,0x2E2E,0x7265,0x1B72,0x3D1B,0x6557,0x236A,
0x1B72,0x721B,0x7272,0x7223,0x1B72,0x721B,0x2323,0x1B72,
0x5772,0x721B,0x7223,0x571B,0x573D,0x233D,0x1B6A,0x722E,
0x2323,0x7223,0x7272,0x6A23,0x2323,0x8E23,0x8E8E,0x728E,
0x7223,0x633D,0x5555,0x3D63,0x7272,0x368E,0x1313,0x8E36,
0x3D65,0x363D,0x1313,0x8E55,0x3D1B,0x1370,0x1313,0x8E70,
0x7272,0x638E,0x1A13,0x238E,0x2372,0x8E72,0x8E8E,0x3D23,
0x2372,0x2323,0x2323,0x7223,0x2323,0x2323,0x7223,0x6523,
0x2372,0x2323,0x7223,0x1B23,0x2372,0x2323,0x7223,0x2E3D,
0x2323,0x2323,0x7223,0x5723,0x233D,0x233D,0x3D3D,0x0833,
0x3D3D,0x3D23,0x4F3D,0x895E,0x3B3D,0x3D3D,0x544F,0x5E89,
0x2323,0x3B23,0x3D3D,0x3D3D,0x3D72,0x5E3B,0x234F,0x334F,
0x1B1B,0x5E33,0x8989,0x5E5E,0x4F2E,0x895E,0x5E5E,0x8989,
0x5E10,0x895E,0x8989,0x8989,0x5E59,0x8989,0x8989,0x8989,
0x8944,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x1B1B,0x233D,0x5E89,0x5E5E,0x3333,0x3333,0x8933,0x8989,
0x5E5E,0x5E5E,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x5E89,0x3D33,0x8989,0x8989,0x4489,0x3B33,
0x8989,0x8989,0x4F3B,0x2333,0x8989,0x8989,0x5E44,0x3D33,
0x8989,0x8989,0x895E,0x233D,0x8989,0x5E89,0x3B5E,0x233D,
0x8989,0x4489,0x3D3B,0x2323,0x8989,0x335E,0x3D3D,0x2323,
0x233B,0x061B,0x0006,0x2357,0x2323,0x2323,0x5717,0x2323,
0x2323,0x2323,0x3B23,0x2323,0x2323,0x2323,0x2365,0x2323,
0x2323,0x6A23,0x651B,0x236A,0x2323,0x2323,0x6523,0x2323,
0x2323,0x2323,0x7272,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x6A23,0x6565,
0x2323,0x2323,0x2323,0x1B23,0x2323,0x2323,0x2323,0x6572,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x656A,0x6A65,0x2323,
0x2323,0x1B6A,0x6A65,0x2323,0x6A6A,0x1B65,0x3B65,0x2323,
0x6A23,0x651B,0x2365,0x2323,0x7265,0x2365,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2372,0x7223,0x2323,
0x2323,0x3B6A,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x6565,0x2323,0x2323,0x6A23,0x571B,0x2365,
0x2323,0x6A23,0x2E65,0x6A65,0x2323,0x7272,0x1B23,0x2323,
0x2323,0x2323,0x2323,0x3B23,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x6523,0x2323,0x2323,0x2323,0x656A,
0x2323,0x2323,0x2323,0x6572,0x2323,0x2323,0x2323,0x1B72,
0x6540,0x2365,0x233B,0x3B6A,0x653B,0x231B,0x2340,0x233B,
0x656A,0x1B83,0x6A65,0x2323,0x2323,0x1B23,0x3B23,0x2323,
0x2323,0x656A,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x7265,0x2323,0x2323,0x2323,0x7265,0x2323,0x2323,0x2323,
0x3B3B,0x6A3B,0x5723,0x572E,0x2323,0x3B3B,0x2E40,0x652E,
0x2323,0x2323,0x6523,0x401B,0x236A,0x2323,0x233B,0x6A3B,
0x1B65,0x2365,0x2323,0x2323,0x2365,0x233B,0x2323,0x2323,
0x236A,0x2323,0x6A3B,0x2323,0x2323,0x7223,0x2365,0x3D65,
0x0065,0x0000,0x6300,0x5963,0x3B40,0x3B6A,0x003B,0x6363,
0x3B3B,0x2323,0x6A23,0x0000,0x2323,0x2323,0x3B23,0x1B40,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x6523,0x7272,0x2323,0x2323,0x1B6A,
0x6464,0x6464,0x1E1E,0x1E1E,0x6463,0x6464,0x1E64,0x1E1E,
0x6300,0x6464,0x6464,0x1E64,0x006A,0x0000,0x0000,0x0000,
0x6523,0x2357,0x656A,0x231B,0x656A,0x2357,0x2323,0x3B23,
0x2323,0x401B,0x233B,0x2323,0x6A65,0x6565,0x236A,0x2323,
0x1E1E,0x1E64,0x1E1E,0x1E1E,0x1E1E,0x641E,0x1E64,0x1E1E,
0x1E1E,0x641E,0x6464,0x6464,0x6464,0x6464,0x6464,0x6464,
0x0000,0x0000,0x0000,0x0000,0x2323,0x7223,0x3672,0x1313,
0x2323,0x2323,0x708E,0x1336,0x2323,0x2323,0x8E23,0x3623,
0x6464,0x1E1E,0x1E1E,0x641E,0x6464,0x6464,0x1E1E,0x6464,
0x641E,0x6464,0x6464,0x6464,0x6464,0x0064,0x0000,0x0000,
0x0000,0x6A00,0x1B65,0x6565,0x2336,0x6A72,0x2E1B,0x1B6A,
0x7236,0x6A72,0x2E2E,0x8381,0x8E1A,0x656A,0x1B83,0x1B23,
0x6464,0x6364,0x5963,0x2828,0x6464,0x2828,0x6328,0x0000,
0x2864,0x0000,0x0000,0x2323,0x0000,0x3B3B,0x3B3B,0x3B3B,
0x233B,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x6A65,0x2323,0x2323,0x2323,0x6A65,0x2323,0x2323,0x2323,
0x0028,0x4000,0x4065,0x233B,0x2300,0x233B,0x3B40,0x403B,
0x2323,0x2323,0x3B23,0x403B,0x3B3B,0x3B3B,0x3B3B,0x233B,
0x2323,0x3B23,0x3B3B,0x233B,0x2323,0x2323,0x2323,0x3B23,
0x2323,0x656A,0x6A65,0x233B,0x2323,0x2323,0x2365,0x1B6A,
0x3B3B,0x3B23,0x3B3B,0x6523,0x3B40,0x3B3B,0x6A23,0x6565,
0x3B65,0x3B3B,0x3B3B,0x3B83,0x3B65,0x3B3B,0x656A,0x6A1B,
0x3B65,0x6A23,0x2E23,0x2323,0x401B,0x6523,0x1740,0x1B6A,
0x2357,0x5723,0x2E1B,0x8365,0x2357,0x656A,0x5757,0x652E,
0x3D6A,0x1B1B,0x1B72,0x7257,0x2E23,0x721B,0x1B72,0x4F57,
0x1B2E,0x3D72,0x1B72,0x233D,0x721B,0x723D,0x2E3D,0x6F72,
0x3D72,0x1B3D,0x1B2E,0x4E2E,0x721B,0x2E1B,0x2E1B,0x2E6F,
0x3D1B,0x1B6F,0x6F1B,0x2E2E,0x2E2E,0x3D2E,0x1B6F,0x2E1B,
0x2E3D,0x1B6F,0x3D6A,0x233D,0x4E2E,0x1B1B,0x3D3D,0x723D,
0x1B4E,0x2E6A,0x233D,0x7223,0x726F,0x2E72,0x721B,0x723D,
0x721B,0x1B72,0x721B,0x1B3D,0x723D,0x1B72,0x721B,0x2E1B,
0x3D3D,0x1B72,0x3D1B,0x1B2E,0x3D72,0x1B72,0x1B1B,0x1B1B,
0x2E72,0x232E,0x722E,0x7223,0x2E65,0x1B3D,0x721B,0x723D,
0x1B1B,0x1B72,0x2372,0x723D,0x1B1B,0x3D3D,0x3D72,0x723D,
0x3D2E,0x7272,0x3D3D,0x3D72,0x721B,0x3D3D,0x723D,0x2E6A,
0x3D1B,0x3D3D,0x1B72,0x2E2E,0x3D72,0x723D,0x2E1B,0x1B2E,
0x571B,0x7272,0x2E65,0x7223,0x1B57,0x726A,0x1B57,0x3D6A,
0x1B2E,0x3D72,0x721B,0x2323,0x1B2E,0x233D,0x2323,0x2323,
0x1B2E,0x723D,0x3D3D,0x3D3D,0x3D2E,0x721B,0x3D3D,0x3D3D,
0x1B1B,0x721B,0x3D3D,0x3D3D,0x1B3D,0x3D3D,0x3D3D,0x3D3D,
0x2323,0x3D23,0x3D72,0x1B1B,0x3D3D,0x3D23,0x3D3D,0x1040,
0x3D3D,0x3D3D,0x443B,0x595E,0x3D23,0x3365,0x5E5E,0x8989,
0x3D3D,0x5E33,0x8989,0x8989,0x3D23,0x8923,0x8989,0x8989,
0x6A3D,0x4454,0x895E,0x8989,0x333D,0x895E,0x8989,0x8989,
0x5E33,0x543D,0x235E,0x443D,0x5E5E,0x3333,0x895E,0x333B,
0x8989,0x8989,0x5E89,0x5E5E,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x895E,0x8989,0x8989,0x8989,0x895E,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,0x8989,
0x8989,0x5E5E,0x3D72,0x2323,0x8989,0x445E,0x2323,0x2323,
0x8989,0x445E,0x3D23,0x233D,0x8989,0x5E89,0x3D3B,0x3D23,
0x8989,0x5E89,0x3333,0x3D44,0x8989,0x8989,0x5E5E,0x445E,
0x8989,0x8989,0x8989,0x5E89,0x8989,0x8989,0x8989,0x335E,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x233D,0x2323,0x2323,0x2323,0x3D23,0x2323,0x2323,0x2323,
0x3D6A,0x2323,0x2323,0x2323,0x3D3D,0x2323,0x2323,0x2323,
0x2323,0x7223,0x2372,0x2323,0x2323,0x2372,0x723D,0x2323,
0x2323,0x2323,0x651B,0x2372,0x2323,0x7223,0x1B23,0x723D,
0x2323,0x3D23,0x6572,0x721B,0x2323,0x2323,0x2323,0x231B,
0x2323,0x2323,0x7223,0x3D1B,0x2323,0x2323,0x7223,0x3D3D,
0x2323,0x2323,0x2372,0x2323,0x2372,0x7265,0x6565,0x7272,
0x6572,0x6A1B,0x651B,0x7272,0x1B72,0x2365,0x2365,0x2323,
0x6572,0x3D3D,0x7265,0x7223,0x2323,0x3D23,0x233D,0x7223,
0x7272,0x2323,0x2323,0x7223,0x2323,0x2323,0x2323,0x6572,
0x7223,0x3D65,0x2372,0x2323,0x3D65,0x2365,0x6565,0x2372,
0x5772,0x6A1B,0x231B,0x2372,0x576A,0x2357,0x6A1B,0x2323,
0x1B65,0x2E1B,0x723D,0x2323,0x1B1B,0x1765,0x3D72,0x2323,
0x3D57,0x1765,0x7265,0x2323,0x721B,0x571B,0x721B,0x2323,
0x2323,0x2323,0x2323,0x6572,0x2323,0x2323,0x2323,0x7223,
0x2323,0x2323,0x2323,0x7223,0x2323,0x2323,0x7223,0x2372,
0x2323,0x2323,0x3D23,0x7223,0x2323,0x3D3D,0x6572,0x721B,
0x2323,0x2323,0x7223,0x3D57,0x2323,0x2323,0x6A23,0x1B57,
0x7223,0x2323,0x2323,0x2323,0x2372,0x2372,0x8E72,0x2372,
0x2323,0x8E23,0x2323,0x8E8E,0x7223,0x1A70,0x3655,0x2363,
0x7223,0x368E,0x1313,0x3613,0x3D3D,0x361A,0x1313,0x1313,
0x8E3D,0x1355,0x1313,0x1313,0x3D72,0x638E,0x1313,0x1313,
0x2323,0x6A23,0x2E65,0x6A65,0x2323,0x6A23,0x171B,0x7223,
0x2323,0x2372,0x5757,0x7265,0x233D,0x576A,0x651B,0x6A1B,
0x7223,0x2E3D,0x1B6A,0x6A1B,0x8E1A,0x5757,0x1B6A,0x721B,
0x8E1A,0x3D57,0x3D72,0x233D,0x3D70,0x7265,0x233D,0x2323,
0x2365,0x2372,0x2323,0x6572,0x1B23,0x7223,0x2323,0x2323,
0x6572,0x7257,0x2323,0x6A23,0x6A23,0x1B57,0x236A,0x6A23,
0x7223,0x5765,0x2372,0x7223,0x2323,0x576A,0x6A1B,0x2323,
0x233D,0x1B6A,0x6A57,0x2323,0x2323,0x3D23,0x3D57,0x2323,
0x6A65,0x1B65,0x236A,0x2323,0x231B,0x1B23,0x2323,0x2323,
0x1B1B,0x1B6A,0x651B,0x2372,0x1B1B,0x1B6A,0x6565,0x7265,
0x5765,0x1B6A,0x7265,0x721B,0x5723,0x1B23,0x6A1B,0x233D,
0x5772,0x6565,0x721B,0x2372,0x5772,0x6565,0x721B,0x2323,
0x2323,0x2323,0x2323,0x8E72,0x2323,0x2323,0x2323,0x7272,
0x2323,0x2323,0x7223,0x6523,0x2323,0x2323,0x7272,0x3D1B,
0x2323,0x2323,0x1B6A,0x7265,0x2323,0x6A23,0x1B1B,0x236A,
0x2323,0x3D72,0x2357,0x2372,0x2323,0x5772,0x721B,0x2323,
0x238E,0x576A,0x1B65,0x6565,0x7223,0x573D,0x1B6A,0x6565,
0x7223,0x1B65,0x1B81,0x721B,0x7272,0x2323,0x1B72,0x7265,
0x2323,0x7272,0x2323,0x2323,0x2323,0x2323,0x7223,0x2372,
0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,0x2323,
0x6A1B,0x2323,0x2323,0x2323,0x6A1B,0x2323,0x2323,0x2323,
0x7265,0x2323,0x2323,0x7223,0x2323,0x2323,0x2323,0x2323,
0x2323,0x2323,0x7223,0x5723,0x2323,0x2323,0x2323,0x576A,
0x2323,0x2323,0x2323,0x6572,0x2323,0x2323,0x2323,0x2323,
0x2323,0x6A23,0x231B,0x8365,0x2323,0x6A23,0x1B65,0x231B,
0x2323,0x7223,0x2E23,0x6A1B,0x2372,0x2323,0x176A,0x7265,
0x723D,0x6A23,0x1765,0x2323,0x6A1B,0x6A23,0x2E1B,0x233D,
0x7257,0x2372,0x1B1B,0x3D65,0x3D57,0x1B6A,0x651B,0x3D1B,
0x401B,0x236A,0x6517,0x402E,0x231B,0x576A,0x6517,0x2357,
0x2357,0x2E1B,0x1B3D,0x811B,0x651B,0x1B57,0x1B65,0x6A65,
0x651B,0x1B23,0x1B1B,0x6523,0x7257,0x576A,0x831B,0x1B6A,
0x6A57,0x1B23,0x571B,0x1B81,0x6A1B,0x1B65,0x1B1B,0x576A,
};
const unsigned short winMap[1024] __attribute__((aligned(4)))=
{
0x3001,0x3001,0x3002,0x8003,0x8004,0x8005,0x4006,0x2007,
0x2007,0x2008,0x3001,0x3001,0x3001,0x3001,0x3001,0x3001,
0x3001,0x3001,0x3001,0x3001,0x3001,0x3009,0x300A,0x3001,
0x3001,0x300B,0x200C,0x800D,0x800E,0x800F,0x0000,0x0000,
0x9010,0x9010,0x9010,0x9011,0x8012,0x8013,0x8014,0x4015,
0x2016,0x2017,0x9018,0x9010,0x9010,0x9010,0x9010,0x9010,
0x9010,0x9010,0x9010,0x9019,0x901A,0x301B,0x301C,0x9419,
0x9010,0x901D,0x201E,0x801F,0x8013,0x8013,0x0000,0x0000,
0x9020,0x9021,0x9022,0x9010,0x9023,0x8024,0x8025,0x8013,
0x8026,0x2027,0x5028,0x9010,0x9010,0x9010,0x9010,0x9010,
0x9010,0x9010,0x9010,0x9029,0x502A,0x402B,0x402C,0x302D,
0x9010,0x902E,0x202F,0x2030,0x8013,0x8013,0x0000,0x0000,
0x6031,0x6032,0x1033,0x9010,0x9010,0x9034,0x3035,0x8036,
0x8037,0x1038,0x2039,0x903A,0x9010,0x9010,0x9010,0x9010,
0x9010,0x9010,0x9010,0x903B,0x203C,0x403D,0x403E,0x203F,
0x9010,0x9010,0x9040,0x2041,0x8042,0x8043,0x0000,0x0000,
0x7044,0x1045,0x1046,0x9047,0x9048,0x9048,0x9048,0x9048,
0x9049,0x004A,0x804B,0x404C,0x9048,0x9048,0x904D,0x904E,
0x904F,0x9050,0x9048,0x9051,0x3052,0x6053,0x6054,0x3055,
0x9048,0x9048,0x9056,0x2057,0x1058,0x8059,0x0000,0x0000,
0x505A,0x505B,0x105C,0x405D,0x305E,0x305F,0x305F,0x305F,
0x305F,0x3060,0x0061,0x6062,0x3063,0x3064,0x3065,0x8066,
0x0067,0x0068,0x3069,0x306A,0x006B,0x305F,0x305F,0x305F,
0x305F,0x305F,0x305F,0x306C,0x506D,0x806E,0x0000,0x0000,
0x306F,0x3070,0x2071,0x5072,0x1073,0x3074,0x3075,0x3075,
0x3075,0x3075,0x3076,0x8077,0x8078,0x5079,0x307A,0x007B,
0x507C,0x507D,0x307E,0x007F,0x0080,0x3075,0x3075,0x3075,
0x3075,0x3075,0x3081,0x3075,0x3082,0x0083,0x0000,0x0000,
0x4084,0x6085,0x4086,0x8087,0x8088,0x4089,0x808A,0x808A,
0x808A,0x808A,0x808B,0x808C,0x008D,0x508E,0x808A,0x708F,
0x8090,0x8091,0x8092,0x8093,0x0094,0x808A,0x808A,0x808A,
0x808A,0x8095,0x2096,0x8097,0x8098,0x6099,0x0000,0x0000,
0x709A,0x709B,0x309C,0x209D,0x309E,0x309F,0x30A0,0x30A1,
0x30A2,0x30A3,0x30A4,0x30A5,0x30A6,0x30A7,0x30A8,0x30A9,
0x30AA,0x30AB,0x30AC,0x30AD,0x30AE,0x30AF,0x30B0,0x30B1,
0x30B2,0x30B3,0x30B4,0x30B5,0x30B6,0x30B7,0x0000,0x0000,
0x70B8,0x40B9,0x70BA,0x30BB,0x80BC,0x30BD,0x30BE,0x10BF,
0x30C0,0x70C1,0x10C2,0x40C3,0x00C4,0x30C5,0x10C6,0x50C7,
0x70C8,0x30C9,0x10CA,0x30CB,0x00CC,0x30CD,0x10CE,0x00CF,
0x00D0,0x30D1,0x40D2,0x40D3,0x00D4,0x60D5,0x0000,0x0000,
0x30D6,0x40D7,0x30D8,0x30D9,0x60DA,0x60DB,0x40DC,0x40DD,
0x40DE,0x40DE,0x40DE,0x40DF,0x40E0,0x40E1,0x40E2,0x40E3,
0x40E4,0x40E5,0x40E6,0x40DE,0x40DE,0x40DE,0x40DE,0x40DE,
0x40E7,0x90E8,0x70E9,0x40EA,0x00EB,0x60EC,0x0000,0x0000,
0x50ED,0x50EE,0x50EF,0x40F0,0x20F1,0x60F2,0x10F3,0x10F4,
0x10F5,0x10F5,0x10F5,0x10F6,0x10F7,0x10F8,0x10F9,0x10FA,
0x70FB,0x10FC,0x00FD,0x10FE,0x10F5,0x10F5,0x10F5,0x10FF,
0x4100,0x6101,0x7102,0x7103,0x6104,0x1105,0x0000,0x0000,
0x5106,0x8107,0x5108,0x7109,0x110A,0x310B,0x110C,0x710D,
0x810E,0x810F,0x8110,0x8110,0x8110,0x8110,0x8111,0x8112,
0x8113,0x0114,0x2115,0x2116,0x8117,0x8118,0x8110,0x8119,
0x511A,0x311B,0x711C,0x911D,0x311E,0x511F,0x0000,0x0000,
0x8120,0x4121,0x8122,0x6123,0x6124,0x6125,0x5126,0x7127,
0x8128,0x1129,0x512A,0x512B,0x512C,0x512D,0x512E,0x012F,
0x0130,0x0131,0x2132,0x0133,0x2134,0x2135,0x5136,0x5137,
0x7138,0x8139,0x513A,0x013B,0x413C,0x213D,0x0000,0x0000,
0x613E,0x613F,0x6140,0x6141,0x6142,0x8143,0x6144,0x8145,
0x5146,0x5147,0x5148,0x1149,0x814A,0x014B,0x014C,0x614D,
0x014E,0x614F,0x2150,0x0151,0x2152,0x2153,0x3154,0x1155,
0x9156,0x9157,0x9158,0x9159,0x015A,0x115B,0x0000,0x0000,
0x315C,0x315D,0x315E,0x315F,0x3160,0x6161,0x3162,0x3163,
0x6164,0x6165,0x6166,0x3167,0x6168,0x3169,0x316A,0x316B,
0x516C,0x316D,0x616E,0x116F,0x6170,0x6171,0x6172,0x6173,
0x9174,0x9175,0x9176,0x9177,0x9178,0x8179,0x0000,0x0000,
0x317A,0x317B,0x317C,0x317D,0x317E,0x317F,0x3180,0x3181,
0x3182,0x3183,0x3184,0x3185,0x3186,0x3187,0x3188,0x3189,
0x318A,0x218B,0x818C,0x518D,0x318E,0x618F,0x6190,0x9191,
0x6192,0x6193,0x6194,0x0195,0x2196,0x6197,0x0000,0x0000,
0x2198,0x2199,0x619A,0x219B,0x119C,0x319D,0x219E,0x319F,
0x11A0,0x21A1,0x81A2,0x41A3,0x81A4,0x81A5,0x81A6,0x61A7,
0x81A8,0x81A9,0x61AA,0x31AB,0x31AC,0x31AD,0x31AE,0x31AF,
0x41B0,0x41B1,0x41B2,0x11B3,0x21B4,0x61B5,0x0000,0x0000,
0x21B6,0x11B7,0x11B8,0x71B9,0x21BA,0x71BB,0x21BC,0x11BD,
0x81BE,0x81BE,0x81BE,0x81BE,0x81BE,0x81BE,0x81BE,0x81BF,
0x31C0,0x21C1,0x21C2,0x21C3,0x21C4,0x61C5,0x31C6,0x61C7,
0x61C8,0x11C9,0x61CA,0x61CB,0x21CC,0x31CD,0x0000,0x0000,
0x61CE,0x31CF,0x71D0,0x11D1,0x21D2,0x31D3,0x51D4,0x81BE,
0x81BE,0x81BE,0x81BE,0x81BE,0x81BE,0x81BE,0x81BE,0x81D5,
0x21D6,0x21D7,0x21D8,0x21D9,0x21DA,0x21DB,0x21DC,0x61DD,
0x61DE,0x21DF,0x81E0,0x11E1,0x21E2,0x11E3,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
};
const unsigned short winPal[256] __attribute__((aligned(4)))=
{
0x0000,0x422D,0x0611,0x7350,0x6B79,0x0A93,0x08C6,0x017F,
0x4A99,0x6355,0x0587,0x06B6,0x4AF3,0x1A37,0x35AA,0x67BF,
0x3296,0x18E5,0x6B57,0x28FF,0x4357,0x5BDA,0x098F,0x1A51,
0x6754,0x0C82,0x26B9,0x22F4,0x6B97,0x08AB,0x677D,0x7BFE,
0x4ED3,0x4FB9,0x7795,0x2336,0x21EE,0x0027,0x2D68,0x73BC,
0x19D5,0x020D,0x7398,0x4F35,0x090D,0x3AF4,0x1EB2,0x5B55,
0x2318,0x7373,0x01CB,0x373A,0x4E8F,0x3A5B,0x299D,0x6F95,
0x577F,0x25F1,0x2AB3,0x2737,0x092A,0x2335,0x0A52,0x7372,
0x2316,0x56F7,0x77DD,0x1D6D,0x3F3B,0x7FFF,0x0546,0x01F0,
0x3290,0x6F96,0x7BB9,0x6F73,0x09AA,0x73DE,0x160E,0x2B38,
0x2A33,0x6BB8,0x09CA,0x4B77,0x3337,0x2A1C,0x7774,0x1EB3,
0x7351,0x3AFB,0x11BF,0x2527,0x084B,0x7399,0x475D,0x09EC,
0x5F13,0x2338,0x77B7,0x2259,0x5F3B,0x2315,0x4B14,0x0063,
0x0253,0x77FF,0x2757,0x5797,0x0A31,0x09D0,0x094E,0x1E4E,
0x2317,0x0507,0x2756,0x6F56,0x56D0,0x7BFD,0x2651,0x056A,
0x0A2E,0x7FB5,0x4A4E,0x090A,0x7BDB,0x6752,0x098B,0x09EA,
0x39EC,0x2758,0x0189,0x22D4,0x6F57,0x36D2,0x3AD8,0x4F98,
0x6FD9,0x435C,0x2ABB,0x1DDE,0x6F74,0x6BB7,0x2375,0x7374,
0x1190,0x6FFF,0x0148,0x7352,0x7FD7,0x7F94,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
};
//}}BLOCK(win)
|
the_stack_data/107951905.c | /*
* libc/gen/_addargs.c
* Add environmental args to argc/argv.
*/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define NBUF 128
/* External. */
extern char *getenv();
extern char *malloc();
/* Forward. */
static char **copyargs();
static int getargs();
static char *scanarg();
/*
* Add "nameHEAD" and "nameTAIL" to the supplied argc/argv.
* Return -1 on failure, 0 if argc/argv unchanged, 1 otherwise.
*/
int
_addargs(name, argcp, argvp) char *name; int *argcp; char ***argvp;
{
register char **cpp, **oargv;
register int oargc, hargc, targc;
char *hp, *tp;
if ((hargc = getargs(name, "HEAD", &hp)) == -1)
return -1;
if ((targc = getargs(name, "TAIL", &tp)) == -1)
return -1;
if (hargc == 0 && targc == 0)
return 0;
oargc = *argcp;
oargv = *argvp;
if ((cpp = (char **)malloc((hargc + oargc + targc + 1) * sizeof(char *))) == NULL)
return -1;
*argcp = hargc + oargc + targc;
*argvp = cpp;
*cpp++ = *oargv++; /* old argv[0] */
if (hargc != 0)
cpp = copyargs(cpp, hp); /* HEAD args */
while (*oargv != NULL)
*cpp++ = *oargv++; /* remainder of old argv[] */
if (targc != 0)
cpp = copyargs(cpp, tp); /* TAIL args */
*cpp = NULL; /* NULL-terminate */
return 1;
}
/*
* NUL-terminate each whitespace-separated arg in p
* and store a pointer to each arg in cpp.
* Return the updated cpp.
*/
static
char **
copyargs(cpp, p) register char **cpp; register char *p;
{
register char c;
while ((c = *p) != '\0') {
if (isspace(c))
*p++ = '\0';
else if (c == '\'' || c == '"') {
*cpp++ = p + 1;
p = scanarg(p);
if (*(p-1) == c)
*(p-1) = '\0';
} else {
*cpp++ = p++;
p = scanarg(p);
}
}
return cpp;
}
/*
* Look for environmental variable "<name><ext>".
* If found, malloc a copy and store its address through cpp.
* Return -1 if malloc fails,
* else return count of whitespace-separated args in result.
*/
static
int
getargs(name, ext, cpp) char *name, *ext; char **cpp;
{
register char *cp, *p;
register int count;
char buf[NBUF];
if ((cp = getenv(strcat(strcpy(buf, name), ext))) == NULL)
return 0;
if ((p = malloc(strlen(cp) + 1)) == NULL)
return -1;
*cpp = strcpy(p, cp);
count = 0;
while (*p != '\0') {
if (!isspace(*p)) {
++count;
p = scanarg(p);
} else
++p;
}
return count;
}
/*
* Scan arg p to next whitespace or NUL.
* Ignore whitespace within args quoted by ' ' or " ".
* Return pointer to following character.
*/
static
char *
scanarg(p) register char *p;
{
register char c;
if ((c = *p) == '\'' || c == '"') {
++p;
while (*p != '\0' && *p++ != c)
;
} else
while (!isspace(*p) && *p != '\0')
++p;
return p;
}
/* end of _addargs.c */
|
the_stack_data/234517758.c | /* Use funopen(3) to provide open_memstream(3) like functionality. */
#ifdef CUSTOM_MEMSTREAM
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
struct memstream {
char **cp;
size_t *lenp;
size_t offset;
};
static void
memstream_grow(struct memstream *ms, size_t newsize)
{
char *buf;
if (newsize > *ms->lenp) {
buf = realloc(*ms->cp, newsize + 1);
if (buf != NULL) {
#ifdef DEBUG
fprintf(stderr, "MS: %p growing from %zd to %zd\n",
ms, *ms->lenp, newsize);
#endif
memset(buf + *ms->lenp + 1, 0, newsize - *ms->lenp);
*ms->cp = buf;
*ms->lenp = newsize;
}
}
}
static int
memstream_read(void *cookie, char *buf, int len)
{
struct memstream *ms;
int tocopy;
ms = cookie;
memstream_grow(ms, ms->offset + len);
tocopy = *ms->lenp - ms->offset;
if (len < tocopy)
tocopy = len;
memcpy(buf, *ms->cp + ms->offset, tocopy);
ms->offset += tocopy;
#ifdef DEBUG
fprintf(stderr, "MS: read(%p, %d) = %d\n", ms, len, tocopy);
#endif
return (tocopy);
}
static int
memstream_write(void *cookie, const char *buf, int len)
{
struct memstream *ms;
int tocopy;
ms = cookie;
memstream_grow(ms, ms->offset + len);
tocopy = *ms->lenp - ms->offset;
if (len < tocopy)
tocopy = len;
memcpy(*ms->cp + ms->offset, buf, tocopy);
ms->offset += tocopy;
#ifdef DEBUG
fprintf(stderr, "MS: write(%p, %d) = %d\n", ms, len, tocopy);
#endif
return (tocopy);
}
static fpos_t
memstream_seek(void *cookie, fpos_t pos, int whence)
{
struct memstream *ms;
#ifdef DEBUG
size_t old;
#endif
ms = cookie;
#ifdef DEBUG
old = ms->offset;
#endif
switch (whence) {
case SEEK_SET:
ms->offset = pos;
break;
case SEEK_CUR:
ms->offset += pos;
break;
case SEEK_END:
ms->offset = *ms->lenp + pos;
break;
}
#ifdef DEBUG
fprintf(stderr, "MS: seek(%p, %zd, %d) %zd -> %zd\n", ms, pos, whence,
old, ms->offset);
#endif
return (ms->offset);
}
static int
memstream_close(void *cookie)
{
free(cookie);
return (0);
}
FILE *
open_memstream(char **cp, size_t *lenp)
{
struct memstream *ms;
int save_errno;
FILE *fp;
*cp = NULL;
*lenp = 0;
ms = malloc(sizeof(*ms));
ms->cp = cp;
ms->lenp = lenp;
ms->offset = 0;
fp = funopen(ms, memstream_read, memstream_write, memstream_seek,
memstream_close);
if (fp == NULL) {
save_errno = errno;
free(ms);
errno = save_errno;
}
return (fp);
}
#endif /* #ifdef CUSTOM_MEMSTREAM */
typedef int make_iso_compilers_happy; |
the_stack_data/148579058.c | #include <stdio.h>
volatile int MAX = 3;
int main() {
char *stuff[] = {"Car","Man", "Wife", };
int i;
for (i = 0; i < MAX; i++){
printf("Value of names [%d] = %s\n", i, stuff[i]);
}
return 0;
}
|
the_stack_data/92324765.c |
int main() {
struct { int *f1[5]; } x;
int i1 = 2;
int *y[5];
int j1 = 2;
x.f1[i1] = y[j1];
return(0);
}
|
the_stack_data/100140707.c | /*P10.8 strcat() function*/
#include<stdio.h>
#include<string.h>
int main(void)
{
char str1[20], str2[20];
printf("Enter two strings : ");
gets(str1);
gets(str2);
strcat(str1,str2);
printf("First string : %s\tSecond string : %s\n",str1,str2);
strcat(str1, "_one");
printf("Now first string is : %s \n",str1);
return 0;
} |
the_stack_data/122016566.c | /* Routine parses command line for nsec and value
returns integer value in nsec variable
*/
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <ctype.h>
/* DRIVER for checking and extending
void cmdln_get_nsec_or_help(int * nsec, int argc, char * argv[]);
int main(int argc, char ** argv){
int nsec=10;
cmdln_get_nsec_or_help( &nsec, argc, argv);
printf("nsec=%d\n", nsec);
}
*/
void cmdln_get_nsec_or_help(int * nsec, int argc, char * argv[]){
// Read one command line argument
// if only digits, argument is value for nsec
// if some form of help request, print Usage
int i,j;
// Line parsing
char digits[10] = { "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" };
int knt = 0;
if ( argc == 2 ) // Only 1 option allowed help or number_of_seconds
{
// Is this an int (nothing but digits)? If so store in nsec. (1.)
// nsec has a default value of 10.
for(j=0;j<strlen(argv[1]);j++) for(i=0;i<10;i++)
if(argv[1][j] == digits[i] ){knt++;};
if(knt == strlen(argv[1])){ *nsec = atoi(argv[1]); } //if all are ints
// Is this a help request?
else if (! strcmp(argv[1], "help") ||
! strcmp(argv[1], "-help") ||
! strcmp(argv[1], "--help") )
printf("Usage: %s [ string [-[-]]help | int seconds] \n", argv[0]);
else { printf(" Did not understand argument \" %s \".\n",argv[1]); exit(1); }
}
if ( argc > 2 ) printf("Usage: %s [ string [-[-]]help | int seconds] \n", argv[0]);
}
|
the_stack_data/115765144.c | #include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <complex.h>
#ifdef complex
#undef complex
#endif
#ifdef I
#undef I
#endif
#if defined(_WIN64)
typedef long long BLASLONG;
typedef unsigned long long BLASULONG;
#else
typedef long BLASLONG;
typedef unsigned long BLASULONG;
#endif
#ifdef LAPACK_ILP64
typedef BLASLONG blasint;
#if defined(_WIN64)
#define blasabs(x) llabs(x)
#else
#define blasabs(x) labs(x)
#endif
#else
typedef int blasint;
#define blasabs(x) abs(x)
#endif
typedef blasint integer;
typedef unsigned int uinteger;
typedef char *address;
typedef short int shortint;
typedef float real;
typedef double doublereal;
typedef struct { real r, i; } complex;
typedef struct { doublereal r, i; } doublecomplex;
#ifdef _MSC_VER
static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;}
static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;}
static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;}
static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;}
#else
static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
#endif
#define pCf(z) (*_pCf(z))
#define pCd(z) (*_pCd(z))
typedef int logical;
typedef short int shortlogical;
typedef char logical1;
typedef char integer1;
#define TRUE_ (1)
#define FALSE_ (0)
/* Extern is for use with -E */
#ifndef Extern
#define Extern extern
#endif
/* I/O stuff */
typedef int flag;
typedef int ftnlen;
typedef int ftnint;
/*external read, write*/
typedef struct
{ flag cierr;
ftnint ciunit;
flag ciend;
char *cifmt;
ftnint cirec;
} cilist;
/*internal read, write*/
typedef struct
{ flag icierr;
char *iciunit;
flag iciend;
char *icifmt;
ftnint icirlen;
ftnint icirnum;
} icilist;
/*open*/
typedef struct
{ flag oerr;
ftnint ounit;
char *ofnm;
ftnlen ofnmlen;
char *osta;
char *oacc;
char *ofm;
ftnint orl;
char *oblnk;
} olist;
/*close*/
typedef struct
{ flag cerr;
ftnint cunit;
char *csta;
} cllist;
/*rewind, backspace, endfile*/
typedef struct
{ flag aerr;
ftnint aunit;
} alist;
/* inquire */
typedef struct
{ flag inerr;
ftnint inunit;
char *infile;
ftnlen infilen;
ftnint *inex; /*parameters in standard's order*/
ftnint *inopen;
ftnint *innum;
ftnint *innamed;
char *inname;
ftnlen innamlen;
char *inacc;
ftnlen inacclen;
char *inseq;
ftnlen inseqlen;
char *indir;
ftnlen indirlen;
char *infmt;
ftnlen infmtlen;
char *inform;
ftnint informlen;
char *inunf;
ftnlen inunflen;
ftnint *inrecl;
ftnint *innrec;
char *inblank;
ftnlen inblanklen;
} inlist;
#define VOID void
union Multitype { /* for multiple entry points */
integer1 g;
shortint h;
integer i;
/* longint j; */
real r;
doublereal d;
complex c;
doublecomplex z;
};
typedef union Multitype Multitype;
struct Vardesc { /* for Namelist */
char *name;
char *addr;
ftnlen *dims;
int type;
};
typedef struct Vardesc Vardesc;
struct Namelist {
char *name;
Vardesc **vars;
int nvars;
};
typedef struct Namelist Namelist;
#define abs(x) ((x) >= 0 ? (x) : -(x))
#define dabs(x) (fabs(x))
#define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
#define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
#define dmin(a,b) (f2cmin(a,b))
#define dmax(a,b) (f2cmax(a,b))
#define bit_test(a,b) ((a) >> (b) & 1)
#define bit_clear(a,b) ((a) & ~((uinteger)1 << (b)))
#define bit_set(a,b) ((a) | ((uinteger)1 << (b)))
#define abort_() { sig_die("Fortran abort routine called", 1); }
#define c_abs(z) (cabsf(Cf(z)))
#define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
#ifdef _MSC_VER
#define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);}
#define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);}
#else
#define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
#define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
#endif
#define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
#define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
#define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
//#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
#define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
#define d_abs(x) (fabs(*(x)))
#define d_acos(x) (acos(*(x)))
#define d_asin(x) (asin(*(x)))
#define d_atan(x) (atan(*(x)))
#define d_atn2(x, y) (atan2(*(x),*(y)))
#define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
#define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); }
#define d_cos(x) (cos(*(x)))
#define d_cosh(x) (cosh(*(x)))
#define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
#define d_exp(x) (exp(*(x)))
#define d_imag(z) (cimag(Cd(z)))
#define r_imag(z) (cimagf(Cf(z)))
#define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define d_log(x) (log(*(x)))
#define d_mod(x, y) (fmod(*(x), *(y)))
#define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
#define d_nint(x) u_nint(*(x))
#define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
#define d_sign(a,b) u_sign(*(a),*(b))
#define r_sign(a,b) u_sign(*(a),*(b))
#define d_sin(x) (sin(*(x)))
#define d_sinh(x) (sinh(*(x)))
#define d_sqrt(x) (sqrt(*(x)))
#define d_tan(x) (tan(*(x)))
#define d_tanh(x) (tanh(*(x)))
#define i_abs(x) abs(*(x))
#define i_dnnt(x) ((integer)u_nint(*(x)))
#define i_len(s, n) (n)
#define i_nint(x) ((integer)u_nint(*(x)))
#define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
#define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
#define pow_si(B,E) spow_ui(*(B),*(E))
#define pow_ri(B,E) spow_ui(*(B),*(E))
#define pow_di(B,E) dpow_ui(*(B),*(E))
#define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
#define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
#define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
#define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; }
#define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
#define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
#define sig_die(s, kill) { exit(1); }
#define s_stop(s, n) {exit(0);}
static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
#define z_abs(z) (cabs(Cd(z)))
#define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
#define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
#define myexit_() break;
#define mycycle() continue;
#define myceiling(w) {ceil(w)}
#define myhuge(w) {HUGE_VAL}
//#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
#define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
/* procedure parameter types for -A and -C++ */
#define F2C_proc_par_types 1
#ifdef __cplusplus
typedef logical (*L_fp)(...);
#else
typedef logical (*L_fp)();
#endif
static float spow_ui(float x, integer n) {
float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static double dpow_ui(double x, integer n) {
double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
#ifdef _MSC_VER
static _Fcomplex cpow_ui(complex x, integer n) {
complex pow={1.0,0.0}; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i;
for(u = n; ; ) {
if(u & 01) pow.r *= x.r, pow.i *= x.i;
if(u >>= 1) x.r *= x.r, x.i *= x.i;
else break;
}
}
_Fcomplex p={pow.r, pow.i};
return p;
}
#else
static _Complex float cpow_ui(_Complex float x, integer n) {
_Complex float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
#endif
#ifdef _MSC_VER
static _Dcomplex zpow_ui(_Dcomplex x, integer n) {
_Dcomplex pow={1.0,0.0}; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1];
for(u = n; ; ) {
if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1];
if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1];
else break;
}
}
_Dcomplex p = {pow._Val[0], pow._Val[1]};
return p;
}
#else
static _Complex double zpow_ui(_Complex double x, integer n) {
_Complex double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
#endif
static integer pow_ii(integer x, integer n) {
integer pow; unsigned long int u;
if (n <= 0) {
if (n == 0 || x == 1) pow = 1;
else if (x != -1) pow = x == 0 ? 1/x : 0;
else n = -n;
}
if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
u = n;
for(pow = 1; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static integer dmaxloc_(double *w, integer s, integer e, integer *n)
{
double m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static integer smaxloc_(float *w, integer s, integer e, integer *n)
{
float m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Fcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0];
zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0];
zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1];
}
}
pCf(z) = zdotc;
}
#else
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
#endif
static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Dcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0];
zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0];
zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1];
}
}
pCd(z) = zdotc;
}
#else
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
#endif
static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Fcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0];
zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0];
zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1];
}
}
pCf(z) = zdotc;
}
#else
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i]) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
#endif
static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Dcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0];
zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0];
zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1];
}
}
pCd(z) = zdotc;
}
#else
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i]) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
#endif
/* -- translated by f2c (version 20000121).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
/* Table of constant values */
static integer c__1 = 1;
static real c_b12 = 1.f;
static integer c_n1 = -1;
/* > \brief \b SGETRS */
/* =========== DOCUMENTATION =========== */
/* Online html documentation available at */
/* http://www.netlib.org/lapack/explore-html/ */
/* > \htmlonly */
/* > Download SGETRS + dependencies */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/sgetrs.
f"> */
/* > [TGZ]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/sgetrs.
f"> */
/* > [ZIP]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/sgetrs.
f"> */
/* > [TXT]</a> */
/* > \endhtmlonly */
/* Definition: */
/* =========== */
/* SUBROUTINE SGETRS( TRANS, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) */
/* CHARACTER TRANS */
/* INTEGER INFO, LDA, LDB, N, NRHS */
/* INTEGER IPIV( * ) */
/* REAL A( LDA, * ), B( LDB, * ) */
/* > \par Purpose: */
/* ============= */
/* > */
/* > \verbatim */
/* > */
/* > SGETRS solves a system of linear equations */
/* > A * X = B or A**T * X = B */
/* > with a general N-by-N matrix A using the LU factorization computed */
/* > by SGETRF. */
/* > \endverbatim */
/* Arguments: */
/* ========== */
/* > \param[in] TRANS */
/* > \verbatim */
/* > TRANS is CHARACTER*1 */
/* > Specifies the form of the system of equations: */
/* > = 'N': A * X = B (No transpose) */
/* > = 'T': A**T* X = B (Transpose) */
/* > = 'C': A**T* X = B (Conjugate transpose = Transpose) */
/* > \endverbatim */
/* > */
/* > \param[in] N */
/* > \verbatim */
/* > N is INTEGER */
/* > The order of the matrix A. N >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in] NRHS */
/* > \verbatim */
/* > NRHS is INTEGER */
/* > The number of right hand sides, i.e., the number of columns */
/* > of the matrix B. NRHS >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in] A */
/* > \verbatim */
/* > A is REAL array, dimension (LDA,N) */
/* > The factors L and U from the factorization A = P*L*U */
/* > as computed by SGETRF. */
/* > \endverbatim */
/* > */
/* > \param[in] LDA */
/* > \verbatim */
/* > LDA is INTEGER */
/* > The leading dimension of the array A. LDA >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[in] IPIV */
/* > \verbatim */
/* > IPIV is INTEGER array, dimension (N) */
/* > The pivot indices from SGETRF; for 1<=i<=N, row i of the */
/* > matrix was interchanged with row IPIV(i). */
/* > \endverbatim */
/* > */
/* > \param[in,out] B */
/* > \verbatim */
/* > B is REAL array, dimension (LDB,NRHS) */
/* > On entry, the right hand side matrix B. */
/* > On exit, the solution matrix X. */
/* > \endverbatim */
/* > */
/* > \param[in] LDB */
/* > \verbatim */
/* > LDB is INTEGER */
/* > The leading dimension of the array B. LDB >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[out] INFO */
/* > \verbatim */
/* > INFO is INTEGER */
/* > = 0: successful exit */
/* > < 0: if INFO = -i, the i-th argument had an illegal value */
/* > \endverbatim */
/* Authors: */
/* ======== */
/* > \author Univ. of Tennessee */
/* > \author Univ. of California Berkeley */
/* > \author Univ. of Colorado Denver */
/* > \author NAG Ltd. */
/* > \date December 2016 */
/* > \ingroup realGEcomputational */
/* ===================================================================== */
/* Subroutine */ int sgetrs_(char *trans, integer *n, integer *nrhs, real *a,
integer *lda, integer *ipiv, real *b, integer *ldb, integer *info)
{
/* System generated locals */
integer a_dim1, a_offset, b_dim1, b_offset, i__1;
/* Local variables */
extern logical lsame_(char *, char *);
extern /* Subroutine */ int strsm_(char *, char *, char *, char *,
integer *, integer *, real *, real *, integer *, real *, integer *
), xerbla_(char *, integer *, ftnlen);
logical notran;
extern /* Subroutine */ int slaswp_(integer *, real *, integer *, integer
*, integer *, integer *, integer *);
/* -- LAPACK computational routine (version 3.7.0) -- */
/* -- LAPACK is a software package provided by Univ. of Tennessee, -- */
/* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
/* December 2016 */
/* ===================================================================== */
/* Test the input parameters. */
/* Parameter adjustments */
a_dim1 = *lda;
a_offset = 1 + a_dim1 * 1;
a -= a_offset;
--ipiv;
b_dim1 = *ldb;
b_offset = 1 + b_dim1 * 1;
b -= b_offset;
/* Function Body */
*info = 0;
notran = lsame_(trans, "N");
if (! notran && ! lsame_(trans, "T") && ! lsame_(
trans, "C")) {
*info = -1;
} else if (*n < 0) {
*info = -2;
} else if (*nrhs < 0) {
*info = -3;
} else if (*lda < f2cmax(1,*n)) {
*info = -5;
} else if (*ldb < f2cmax(1,*n)) {
*info = -8;
}
if (*info != 0) {
i__1 = -(*info);
xerbla_("SGETRS", &i__1, (ftnlen)6);
return 0;
}
/* Quick return if possible */
if (*n == 0 || *nrhs == 0) {
return 0;
}
if (notran) {
/* Solve A * X = B. */
/* Apply row interchanges to the right hand sides. */
slaswp_(nrhs, &b[b_offset], ldb, &c__1, n, &ipiv[1], &c__1);
/* Solve L*X = B, overwriting B with X. */
strsm_("Left", "Lower", "No transpose", "Unit", n, nrhs, &c_b12, &a[
a_offset], lda, &b[b_offset], ldb);
/* Solve U*X = B, overwriting B with X. */
strsm_("Left", "Upper", "No transpose", "Non-unit", n, nrhs, &c_b12, &
a[a_offset], lda, &b[b_offset], ldb);
} else {
/* Solve A**T * X = B. */
/* Solve U**T *X = B, overwriting B with X. */
strsm_("Left", "Upper", "Transpose", "Non-unit", n, nrhs, &c_b12, &a[
a_offset], lda, &b[b_offset], ldb);
/* Solve L**T *X = B, overwriting B with X. */
strsm_("Left", "Lower", "Transpose", "Unit", n, nrhs, &c_b12, &a[
a_offset], lda, &b[b_offset], ldb);
/* Apply row interchanges to the solution vectors. */
slaswp_(nrhs, &b[b_offset], ldb, &c__1, n, &ipiv[1], &c_n1);
}
return 0;
/* End of SGETRS */
} /* sgetrs_ */
|
the_stack_data/859181.c | //Avtor Nikola Stoimenov
//Vtor parcijalen ispit 29.12.2017, termin 1 Grupa 2, prva
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#define MAX 20
int absolutna(int x);
void printBrojna(int *x, int element, int kraj);
void printText(char *x, int element, int kraj);
void funk(char *x, int *y, int element, int kraj);
int main(){
char tekst[] = "Zdravo, k.ako si?";
int niza[MAX];
printText(tekst, 0, strlen(tekst));
funk(tekst, niza, 0, strlen(tekst));
printBrojna(niza, 0, strlen(tekst));
return 0;
}
void funk(char *x, int *y, int element, int kraj){
if(isupper(*(x+element))) *(x+element) = tolower(*(x+element));
if(!isspace(*(x+element))){
if(isspace(*(x+element+1)) || isspace(*(x+element-1))) *(y+element) = 0;
else if(isalnum(*(x+element)) && isalnum(*(x+element+1))) *(y+element) = *(x+element) - *(x+element+1);
else if(isalnum(*(x+element)) && ispunct(*(x+element+1))) *(y+element) = -1;
else *(y+element) = 0;
}
else *(y+element) = 0;
if(element < kraj-1) funk(x, y, element+1, kraj);
}
void printText(char *x, int element, int kraj){
printf("%c", *(x+element));
if(element < kraj) printText(x, element+1, kraj);
}
void printBrojna(int *x, int element, int kraj){
printf("%d ", *(x+element));
if(element < kraj) printBrojna(x, element+1, kraj);
}
int absolutna(int x){
if(x<0) x *= -1;
return x;
}
|
the_stack_data/50137084.c | #include <stdio.h>
#include <ctype.h>
#define ABS(a) ((a) > 0 ? (a) : -(a))
int sign(int a) {
if (a < 0) return -1;
if (a > 0) return 1;
return 0;
}
int is_operand(char c) {
switch (c) {
case '+': return 1;
case '-': return 2;
case '*': return -1;
case '/': return -2;
default: return 0;
}
}
int is_digit(char c) {
return isdigit(c);
}
int is_bracket(char c) {
switch (c) {
case '[': return 1;
case ']': return -1;
case '{': return 2;
case '}': return -2;
case '(': return 3;
case ')': return -3;
default: return 0;
}
}
int check_expression(FILE* in) {
int brackets[4] = {0, 0, 0};
int prev_is_operand = 0;
int prev_is_didit = 0;
int prev_is_bracket = 0;
char prev_c = '\0';
char curr_c;
while (fscanf(in, "%c", &curr_c) == 1 && curr_c != '\0' && curr_c != '\n') {
int curr_is_operand = is_operand(curr_c);
int curr_is_digit = is_digit(curr_c);
int curr_is_bracket = is_bracket(curr_c);
if (curr_is_operand) {
if (curr_is_operand != 2) {
if (prev_c == '\0') {
return 0;
} else if (sign(curr_is_operand) == sign(prev_is_operand)) {
return 0;
}
}
} else if (curr_is_bracket) {
if (curr_is_bracket > 0) {
if (prev_is_didit) {
return 0;
}
} else {
if (prev_is_operand) {
return 0;
}
}
brackets[ABS(curr_is_bracket)] += sign(curr_is_bracket);
for (int i = 1; i < 4; ++i) {
if (brackets[i] < 0) {
return 0;
}
}
} else if (curr_is_digit) {
if (prev_is_bracket < 0) {
return 0;
}
}
prev_c = curr_c;
prev_is_operand = curr_is_operand;
prev_is_didit = curr_is_digit;
prev_is_bracket = curr_is_bracket;
}
if (prev_is_operand) return 0;
return 1;
}
int main() {
printf(check_expression(stdin) ? "YES" : "NO");
printf("\n");
return 0;
} |
the_stack_data/125897.c | /*The following code implements a Binary Search Tree (BST) with a few of its basic operations.*/
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
// #define DEBUG 1 // uncomment for memory debug mode or compile with "-DDEBUG" flag
int allocCount = 0;
struct treeNode
{
int data;
struct treeNode *left;
struct treeNode *right;
};
typedef struct treeNode *NODEPTR;
int countNodeBST(NODEPTR); // counts the number of nodes in the tree
void insertNodeBST(NODEPTR*, int); // inserts a node into the tree
void deleteNodeBST(NODEPTR*, NODEPTR*, NODEPTR*, int, int*); // deletes a node from the tree
int countLeafBST(NODEPTR); // counts the number of leaf nodes in the tree
int calcHeightBST(NODEPTR); // calculates the height of the tree
NODEPTR createTree(int); // creates a new binary search tree
void displayInorderBST(NODEPTR); // displays the inorder traversal of the tree
void displayPreorderBST(NODEPTR); // displays the preorder traversal of the tree
void displayPostorderBST(NODEPTR); // displays the post order traversal of the tree
int searchBST(NODEPTR, NODEPTR*, NODEPTR*, int, int*); // searches the tree for a particular element and returns a pointer to the node and its parent
void initTree(NODEPTR*); // initializes the tree
int max(int, int); // returns the greater of two values
int getNodeDepth(NODEPTR, int); // returns the depth of a given node in the BST
void delRoot(NODEPTR*); // deletes the root of the tree
void displayBST(NODEPTR); // displays the BST
void mirrorBST(NODEPTR*); // mirror the BST
void displayNodesAtDepth(NODEPTR, int, int); // displays all nodes at a given depth
void displayLevelOrderBST(NODEPTR); // displays the level order traversal of the BST
void delBST(NODEPTR*); // deletes a BST
void swapNodes(NODEPTR*, NODEPTR*); // swaps two nodes of the tree
void findLowestCommonAncestor(NODEPTR, int, int, NODEPTR*); // find the lowest common ancestor for two given nodes
void displayLeftViewBST(NODEPTR); // displays the left view of the BST
void getLeftNodeAtDepth(NODEPTR, int, int, int*, int*); // returns the value of the leftmost node at a given depth;
int main()
{
NODEPTR root = NULL, index = NULL, parentIndex = NULL;
initTree(&root);
int choice = 0, x = 0, y = 0, child = 0;
printf("This program implements a binary search tree with the following basic operations.\n");
do
{
printf("\n----------- MENU -------------\n");
printf("\n 1. Create a binary search tree.\n");
printf("\n 2. Insert an element into the binary search tree.\n");
printf("\n 3. Delete an element from the binary search tree.\n");
printf("\n 4. Count the nodes in the binary search tree.\n");
printf("\n 5. Count the leaf nodes in the binary search tree.\n");
printf("\n 6. Find out the height of the binary search tree.\n");
printf("\n 7. Display the inorder traversal of the binary search tree.\n");
printf("\n 8. Display the preorder traversal of the binary search tree.\n");
printf("\n 9. Display the postorder traversal of the binary search tree.\n");
printf("\n 10. Search for an element in the binary search tree.\n");
printf("\n 11. Get the depth of a node with a particular value in the binary search tree.\n");
printf("\n 12. Delete the root of the tree.\n");
printf("\n 13. Display the level order traversal of the binary search tree.\n");
printf("\n 14. Laterally invert the tree. This will break the BST properties and will require reinversion to be restored.\n");
printf("\n 15. Find the lowest common ancestor for two given nodes in the binary search tree.\n");
printf("\n 16. Display the left side view of the binary search tree.\n");
printf("\n 0. EXIT \n");
printf("\n------------------------------\n");
printf("\nPlease enter your choice : ");
scanf("%d",&choice);
switch(choice)
{
case 1: printf("\nPlease enter the first element of the tree.\n");
scanf("%d",&x);
if(root != NULL)
{
printf("Invalid operation attempted! Tree already exists.\n");
break;
}
root = createTree(x);
printf("Element inserted. Tree created successfully.\n");
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 2: printf("Please enter the element to insert.\n");
scanf("%d",&x);
insertNodeBST(&root, x);
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 3: printf("Please enter the element to delete.\n");
scanf("%d",&x);
index = parentIndex = NULL;
child = 0;
deleteNodeBST(&root, &index, &parentIndex, x, &child); // this function is dependent on searchBST() and delRoot()
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 4: printf("The number of nodes in the tree is %d.\n", countNodeBST(root));
break;
case 5: printf("The number of leaf nodes in the tree is %d.\n", countLeafBST(root));
break;
case 6: printf("The height of the tree is %d.\n", calcHeightBST(root));
break;
case 7: if(root == NULL)
{
printf("Tree is empty!\n");
break;
}
displayInorderBST(root);
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 8: if(root == NULL)
{
printf("Tree is empty!\n");
break;
}
displayPreorderBST(root);
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 9: if(root == NULL)
{
printf("Tree is empty!\n");
break;
}
displayPostorderBST(root);
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 10: printf("Please enter the element you want to search for.\n");
scanf("%d",&x);
child = 0;
index = parentIndex = NULL;
if(searchBST(root, &index, &parentIndex, x, &child) == TRUE)
printf("Element found! Parent is %d.", parentIndex->data);
else
printf("Element not found.\n");
break;
case 11: printf("Please enter the element you want the depth of.\n");
scanf("%d",&x);
child = 0;
index = parentIndex = NULL;
if(searchBST(root, &index, &parentIndex, x, &child) == TRUE)
printf("Depth of the element is %d.", getNodeDepth(root, x));
else
printf("Element not found.\n");
break;
case 12: if(root == NULL)
{
printf("Empty tree. Operation aborted.\n");
break;
}
delRoot(&root);
printf("Root deleted successfully.\n");
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 13: displayLevelOrderBST(root);
#ifdef DEBUG
printf("\nTotal number of memory allocations: %d\n", allocCount);
#endif
break;
case 14: mirrorBST(&root);
printf("Tree mirrored successfully.\n");
break;
case 15: printf("Enter the values of the nodes for which you need the lowest common ancestor.\n");
scanf("%d", &x);
scanf("%d", &y);
NODEPTR indexX, parentIndexX, indexY, parentIndexY;
int childX = 0, childY = 0;
int foundX = searchBST(root, &indexX, &parentIndexX, x, &childX);
int foundY = searchBST(root, &indexY, &parentIndexY, y, &childY);
if(foundX == FALSE || foundY == FALSE)
{
printf("Invalid input. Operation failed. Check if the elements searched for are in the BST.\n");
break;
}
findLowestCommonAncestor(root, x, y, &index);
if(index != NULL)
printf("Lowest Common Ancestor is %d.\n", index->data);
break;
case 16: if (root == NULL)
{
printf("Tree is empty.\n");
break;
}
displayLeftViewBST(root);
break;
// case 15: displayBST(root);
// break;
case 0: delBST(&root);
printf("Thank you.\n");
break;
default: printf("\nInvalid choice. Try again.\n");
}
}while(choice != 0);
delBST(&root); // cleanup
#ifdef DEBUG
printf("\nTotal number of unreleased memory allocations: %d\n", allocCount);
#endif
return 0;
} // end
void initTree(NODEPTR* proot)
{
*proot = NULL;
}
NODEPTR createTree(int val) // creates a tree with the user input value as the root
{
NODEPTR tmp;
tmp = malloc(sizeof(struct treeNode));
if(tmp == NULL)
{
perror("Error allocating memory.\n");
exit(EXIT_FAILURE);
}
allocCount++;
tmp->data = val;
tmp->left = tmp->right = NULL;
return tmp;
}
void insertNodeBST(NODEPTR* proot, int val) // recursively inserts an element into the tree
{
if(*proot == NULL)
{
*proot = createTree(val);
printf("Element inserted successfully.\n");
return;
}
if(val < (*proot)->data)
insertNodeBST(&((*proot)->left), val);
else if(val > (*proot)->data)
insertNodeBST(&((*proot)->right), val);
else
{
printf("Operation failed! Element already exists.\n");
return;
}
}
void swapNodes(NODEPTR* pa, NODEPTR* pb)
{
NODEPTR tmp = *pb;
*pb = *pa;
*pa = tmp;
}
void mirrorBST(NODEPTR* proot)
{
if(*proot == NULL)
return;
NODEPTR parent = *proot;
swapNodes(&(parent->left), &(parent->right));
mirrorBST(&(parent->left));
mirrorBST(&(parent->right));
}
void displayLevelOrderBST(NODEPTR root)
{
int maxDepth = calcHeightBST(root);
for(int i = 0; i <= maxDepth; i++)
{
displayNodesAtDepth(root, 0, i);
printf("\n");
}
}
void displayNodesAtDepth(NODEPTR root, int currentDepth, int maxDepth)
{
if(root == NULL)
return;
if(currentDepth == maxDepth)
{
printf("%d ", root->data);
return;
}
displayNodesAtDepth(root->left, currentDepth + 1, maxDepth);
displayNodesAtDepth(root->right, currentDepth + 1, maxDepth);
}
void getLeftNodeAtDepth(NODEPTR root, int currentDepth, int maxDepth, int *isDepthVisited, int *nodeVal)
{
if(root == NULL)
return;
if(currentDepth == maxDepth && !isDepthVisited[currentDepth])
{
isDepthVisited[currentDepth] = TRUE;
*nodeVal = root->data;
return;
}
getLeftNodeAtDepth(root->left, currentDepth + 1, maxDepth, isDepthVisited, nodeVal);
getLeftNodeAtDepth(root->right, currentDepth + 1, maxDepth, isDepthVisited, nodeVal);
}
void displayLeftViewBST(NODEPTR root)
{
int val = -1;
int maxDepth = calcHeightBST(root);
int *isDepthVisited = (int*)malloc(maxDepth * sizeof(maxDepth));
allocCount++;
for (int k = 0; k < maxDepth; k++)
isDepthVisited[k] = FALSE;
for(int i = 0; i <= maxDepth; i++)
{
getLeftNodeAtDepth(root, 0, i, isDepthVisited, &val);
if (val != -1)
printf("%d ", val);
val = -1;
}
free(isDepthVisited);
allocCount--;
}
int countNodeBST(NODEPTR root) // recursively counts the number of nodes in the tree
{
if(root != NULL)
return 1 + countNodeBST(root->left) + countNodeBST(root->right);
else
return 0;
}
int getNodeDepth(NODEPTR root, int val) // recursively calculates the depth of a given node in the tree
{
if(root == NULL || (root->left == NULL && root->right == NULL))
return 0;
if(root->data == val)
return 0;
else if (val < (root->data))
return 1 + getNodeDepth(root->left, val);
else
return 1 + getNodeDepth(root->right, val);
}
void displayPreorderBST(NODEPTR root) // recursively displays the preorder traversal of the tree
{
if(root != NULL)
{
printf("%d ", root->data);
displayPreorderBST(root->left);
displayPreorderBST(root->right);
}
}
void displayPostorderBST(NODEPTR root) // recursively displays the postorder traversal of the tree
{
if(root != NULL)
{
displayPostorderBST(root->left);
displayPostorderBST(root->right);
printf("%d ", root->data);
}
}
void displayInorderBST(NODEPTR root) // recursively displays the inorder traversal of the tree
{
if(root != NULL)
{
displayInorderBST(root->left);
printf("%d ", root->data);
displayInorderBST(root->right);
}
}
int countLeafBST(NODEPTR root) // recursively counts the leaf nodes in the tree
{
if(root == NULL)
return 0;
if(root != NULL)
{
if(root->left == NULL && root->right == NULL)
return 1;
else
return countLeafBST(root->left) + countLeafBST(root->right);
}
}
int searchBST(NODEPTR root, NODEPTR* index, NODEPTR* parentIndex, int val, int* child) // recursively searches the tree for an element
{
NODEPTR tmp = root; // backs up the pointer to the root into a temporary pointer
if(root == NULL)
return FALSE;
if((root->data) == val)
{
if(*parentIndex == NULL)
*parentIndex = root;
*index = root; // returns a pointer to the found element
return TRUE;
}
if(val < (root->data))
{
if(root->left == NULL)
return FALSE;
*parentIndex = root; // backs up the pointer to the parent of the current node
root = root->left;
if((root->data) == val) // checks if the left child is the required element
{
*index = root;
root = tmp;
*child = -1; // -1 for left child
return TRUE;
}
searchBST(root, index, parentIndex, val, child);
}
else
{
if(root->right == NULL)
return FALSE;
*parentIndex = root; // backs up the pointer to the parent of the current node
root = root->right;
if((root->data) == val) // checks if the right child is the required element
{
*index = root;
root = tmp;
*child = 1; // 1 for right child
return TRUE;
}
searchBST(root, index, parentIndex, val, child);
}
}
void findLowestCommonAncestor(NODEPTR root, int x, int y, NODEPTR* lca)
{
if((x <= root->data && y >= root->data) || (y <= root->data && x >= root->data))
{
*lca = root;
return;
}
if(x < root->data && y < root->data)
findLowestCommonAncestor(root->left, x, y, lca);
if(x > root->data && y > root->data)
findLowestCommonAncestor(root->right, x, y, lca);
}
int calcHeightBST(NODEPTR root) // recursively calculates the height of the tree
{
if(root == NULL || (root->left == NULL && root->right == NULL))
return 0;
else
return max(calcHeightBST(root->left), calcHeightBST(root->right)) + 1;
}
int max(int x, int y)
{
if(x > y)
return x;
else
return y;
}
void deleteNodeBST(NODEPTR* proot, NODEPTR* index, NODEPTR* parentIndex, int val, int* child) // deletes a node with specific value
{
if(proot == NULL)
{
printf("Empty tree. Operation aborted.\n");
return;
}
if(searchBST(*proot, index, parentIndex, val, child) == FALSE) // search for the element fails
{
printf("Element not found! Operation failed.\n");
return;
}
else if((*index)->left != NULL && (*index)->right == NULL) // the node to be deleted has only left child
{
if(*child == 1)
(*parentIndex)->right = (*index)->left; // connects the right child of the parent to the left child of the node to be deleted
if(*child == -1)
(*parentIndex)->left = (*index)->left; // connects the left child of the parent to the left child of the node to be deleted
delRoot(index);
return;
}
else if((*index)->left == NULL && (*index)->right != NULL) // the node to be deleted has only right child
{
if(*child == 1)
(*parentIndex)->right = (*index)->right; // connects the right child of the parent to the left child of the node to be deleted
if(*child == -1)
(*parentIndex)->left = (*index)->right; // connects the left child of the parent to the left child of the node to be deleted
delRoot(index);
return;
}
else if((*index)->left == NULL && (*index)->right == NULL && (*parentIndex) == NULL) // the node to be deleted is the only node in the tree
{
*proot = NULL;
delRoot(index);
return;
}
else if(*index == *proot) // if the node to be deleted is the root of the tree
{
delRoot(index); // deletes the root of the tree
*proot = *index; // restores the original pointer to the root of the tree
return;
}
else
{
if((*index)->left == NULL && (*index)->right == NULL) // the node to be deleted has no children
{
if(*child == -1)
(*parentIndex)->left = NULL; // sets the left child of the parent of the element to be deleted to NULL
if(*child == 1)
(*parentIndex)->right = NULL; // sets the right child of the parent of the element to be deleted to NULL
}
if((*index)->left != NULL && (*index)->right != NULL) // the node to be deleted has both children
{
if(*child == -1)
{
delRoot(index);
(*parentIndex)->left = *index; // sets the left child of the parent to the element that has replaced the deleted element
return;
}
if(*child == 1)
{
delRoot(index);
(*parentIndex)->right = *index; // sets the right child of the parent to the element that has replaced the deleted element
return;
}
}
}
}
void delRoot(NODEPTR* proot) // deletes the root node of the tree
{
NODEPTR toDel, parent, tmp;
if((*proot)->left == NULL && (*proot)->right == NULL) // root has no child
{
free(*proot);
allocCount--;
*proot = NULL;
printf("Element deleted successfully.\n");
return;
}
if((*proot)->left != NULL && (*proot)->right == NULL) // root has only left child
{
toDel = *proot;
*proot = (*proot)->left;
free(toDel);
allocCount--;
toDel = NULL;
printf("Element deleted successfully.\n");
return;
}
if(((*proot)->right != NULL && (*proot)->left == NULL) || ((*proot)->right != NULL && (*proot)->left != NULL)) // root has only right child or both children
{
toDel = *proot; // backs up the pointer to the node to be deleted
*proot = (*proot)->right; // traverses to the right child of the node to be deleted
parent = toDel; // holds the pointer to the parent of the current node
if(((*proot)->left == NULL && (*proot)->right == NULL) || ((*proot)->left == NULL && (*proot)->right != NULL)) // the right child has no children or only has right child
{
(*proot)->left = toDel->left;
free(toDel);
allocCount--;
toDel = NULL;
printf("Element deleted successfully.\n");
return;
}
while((*proot)->left != NULL) // the right child has left child or both children
{
parent = *proot;
*proot = (*proot)->left;
}
toDel->data = (*proot)->data;
tmp = parent->left; // traverses to the left of the right child of the node to be deleted
if(tmp->left == NULL && tmp->right != NULL)
parent->left = tmp->right;
else
parent->left = NULL; // sets the left child of the parent to NULL
free(*proot);
allocCount--;
*proot = toDel;
toDel = NULL;
printf("Element deleted successfully.\n");
return;
}
}
void delBST(NODEPTR *proot)
{
if (*proot == NULL)
return;
if((*proot)->left == NULL && (*proot)->right == NULL)
{
free(*proot);
allocCount--;
*proot = NULL;
return;
}
else
{
delBST(&(*proot)->right);
delBST(&(*proot)->left);
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.