file
stringlengths 18
26
| data
stringlengths 3
1.04M
|
---|---|
the_stack_data/875501.c | /*
* Copyright 2022 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
/*
* Simple buildtest to check for symbol collisions between wincrypt and
* OpenSSL headers
*/
#include <openssl/types.h>
#ifdef _WIN32
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif
# include <windows.h>
# include <wincrypt.h>
# ifndef X509_NAME
# ifndef PEDANTIC
# warning "wincrypt.h no longer defining X509_NAME before OpenSSL headers"
# endif
# endif
#endif
#include <openssl/opensslconf.h>
#ifndef OPENSSL_NO_STDIO
# include <stdio.h>
#endif
#include <openssl/evp.h>
#include <openssl/x509.h>
#include <openssl/x509v3.h>
int main(void)
{
return 0;
}
|
the_stack_data/228472.c | #include <wchar.h>
wchar_t * wmemset(wchar_t * s, wchar_t c, size_t n)
{
size_t i;
for (i = 0; i < n; i++) {
s[i] = c;
}
return s;
}
/*
STDC(199409)
*/
|
the_stack_data/20451116.c | #include<stdio.h>
int main ()
{
int a = 0, b = 0, i = 1;
char ch;
do
{
ch = getchar();
if(i == 1){
a = ch - 48;
}
else if(i == 3){
b = ch - 48;
}
else if(i == 4){
printf("%d\n", a + b);
i = 0;
}
if(ch == '0' || ch == EOF){
//printf("break"); // EOF is ctrl+z in windows
break;
}
i += 1;
}
while(1);
return 0;
}
|
the_stack_data/175142669.c | #include <stdint.h>
#include <stdio.h>
#include <string.h>
uint8_t get_num_strlen(size_t num) {
char buf[UINT8_MAX];
memset(buf, 0, UINT8_MAX);
sprintf(buf, "%zd", num);
return strlen(buf);
}
#ifdef TESTS
#include "test.h"
void test_get_num_strlen() {
test_assert(get_num_strlen(5) == 1);
test_assert(get_num_strlen(50) == 2);
test_assert(get_num_strlen(500) == 3);
test_assert(get_num_strlen(5000) == 4);
test_assert(get_num_strlen(50000) == 5);
}
#endif
|
the_stack_data/161655.c | /* { dg-do compile } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-O -mtune=pentium2 -mavx512f" } */
typedef int v4si __attribute__ ((vector_size (16)));
unsigned
foo (unsigned char i, unsigned x, v4si u, v4si v, v4si w)
{
i &= (unsigned)~x;
v <<= w[x];
return i + u[x] + v[i];
}
|
the_stack_data/146113.c | #include<stdio.h>
int main()
{
int a,b,c,max;
scanf("%d%d%d",&a,&b,&c);
if(a>b)
max=a;
else
max=b;
if(max<c)
max=c;
printf("%d",max);
return 0;
}
|
the_stack_data/111078465.c | /*
* ◆◆◆
* Solution to Homework Problem 2.79 (Page 155)
*
* Write code for a function fiveeighths that , for integer argugments x,
* computes the value of 5x/8, rounded toward zero. It should not overflow,
* Your function should follow the bit-level integer coding rules(page 154)
*/
int fiveeigthths(int x)
{
return (x >> 3) + (x >> 1);
}
|
the_stack_data/9512200.c | #include <ncurses.h>
int main()
{
initscr();
box(stdscr,'*','*');
refresh();
getch();
endwin();
return(0);
}
|
the_stack_data/111077473.c | /****************************************************************************
*
* Copyright 2018 Samsung Electronics All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*
****************************************************************************/
#ifdef OC_MEMORY_TRACE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "oc_list.h"
#include "oc_mem_trace.h"
#include "port/oc_log.h"
#define FUNC_NAME_LEN 30
typedef struct _mem_info
{
int peak;
int current;
OC_LIST_STRUCT(mem_log_list);
} mem_info_s;
typedef struct _mem_logger
{
struct mem_logger_s *next; /* for LIST */
char func[FUNC_NAME_LEN + 1];
int size;
int current;
int peak;
int type; // MEM_TRACE_ALLOC, MEM_TRACE_FREE
void *address;
} mem_logger_s;
static mem_info_s mInfo = {
0,
};
#ifndef OC_DYNAMIC_ALLOCATION
#define LOGGER_ITEM_LEN 1000
mem_logger_s logger_item_list[LOGGER_ITEM_LEN];
int list_index = 0;
#endif /* !OC_DYNAMIC_ALLOCATION */
static void oc_mem_trace_free(void);
void
oc_mem_trace_init(void)
{
mInfo.current = 0;
mInfo.peak = 0;
OC_LIST_STRUCT_INIT(&mInfo, mem_log_list);
}
void
oc_mem_trace_add_pace(const char *func, int size, int type, void *address)
{
if(!mInfo.mem_log_list)
return;
if (type == MEM_TRACE_ALLOC) {
mInfo.current += size;
if (mInfo.current > mInfo.peak) {
mInfo.peak = mInfo.current;
}
} else if (type == MEM_TRACE_FREE) {
mInfo.current -= size;
} else {
OC_ERR("mem trace : UNKNOWN TYPE");
return;
}
#ifdef OC_DYNAMIC_ALLOCATION
mem_logger_s *mem_log_item = (mem_logger_s *)oc_calloc(1, sizeof(mem_logger_s));
#else
/* Only LOGGER_ITEM_LEN mem_log_items are available in static allocation
*/
if (list_index >= LOGGER_ITEM_LEN)
return;
mem_logger_s *mem_log_item = &logger_item_list[list_index++];
#endif
size_t func_name_len = strlen(func);
if (FUNC_NAME_LEN < func_name_len)
func_name_len = FUNC_NAME_LEN;
memcpy(mem_log_item->func, (char *)func, func_name_len);
mem_log_item->func[func_name_len] = '\0';
mem_log_item->size = size;
mem_log_item->current = mInfo.current;
mem_log_item->peak = mInfo.peak;
mem_log_item->type = type;
mem_log_item->address = address;
oc_list_add((&mInfo)->mem_log_list, mem_log_item);
}
void
oc_mem_trace_print_paces(void)
{
int cnt = 0;
mem_logger_s *mem_log_item_link = oc_list_head((&mInfo)->mem_log_list);
PRINT("==================================================================");
PRINT("=================\n");
PRINT(" %2s %-22s %11s %5s %5s %5s %5s \n", "No.", "Func",
"Address", "Size", "Req", "Cur", "Peak");
PRINT("------------------------------------------------------------------");
PRINT("-----------------\n");
while (mem_log_item_link) {
PRINT(" %3d %-26.25s %10p %5d %5s %5d %5d\n", ++cnt,
mem_log_item_link->func, mem_log_item_link->address,
mem_log_item_link->size,
(mem_log_item_link->type == MEM_TRACE_FREE) ? "Free" : "Alloc",
mem_log_item_link->current, mem_log_item_link->peak);
mem_log_item_link = oc_list_item_next(mem_log_item_link);
}
PRINT("===================================================================");
PRINT("================\n");
}
void
oc_mem_trace_shutdown(void)
{
oc_mem_trace_print_paces();
if (mInfo.current) {
PRINT("########################################################\n");
PRINT("####### Unreleased memory size: [%8d bytes] #######\n",
mInfo.current);
PRINT("########################################################\n");
}
oc_mem_trace_free();
}
static void
oc_mem_trace_free(void)
{
mem_logger_s *mem_log_item = oc_list_pop((&mInfo)->mem_log_list);
while (mem_log_item) {
#ifdef OC_DYNAMIC_ALLOCATION
oc_free(mem_log_item);
#endif
mem_log_item = oc_list_pop((&mInfo)->mem_log_list);
}
}
#else /* OC_MEMORY_TRACE */
// TODO : it would be removed if MEMTRACE=0 excludes compiling this file
void
dummy_null_func(void)
{
}
#endif /* !OC_MEMORY_TRACE */
|
the_stack_data/149105.c | // RUN: %clang_cc1 -triple i386-unknown-unknown -mregparm 4 %s -emit-llvm -o %t
// RUN: FileCheck < %t %s
void f1(int a, int b, int c, int d,
int e, int f, int g, int h);
void f2(int a, int b) __attribute((regparm(0)));
void f0() {
// CHECK: call void @f1(i32 inreg 1, i32 inreg 2, i32 inreg 3, i32 inreg 4,
// CHECK: i32 5, i32 6, i32 7, i32 8)
f1(1, 2, 3, 4, 5, 6, 7, 8);
// CHECK: call void @f2(i32 1, i32 2)
f2(1, 2);
}
// CHECK: declare void @f1(i32 inreg, i32 inreg, i32 inreg, i32 inreg,
// CHECK: i32, i32, i32, i32)
// CHECK: declare void @f2(i32, i32)
|
the_stack_data/126704051.c | #include <stdio.h>
#include <stdlib.h>
int MaximoR(int v[],int n);
int maximo(int v[],int n);
int MaxR(int v[],int i, int n);
int main(){
int v[]= {1,5,3,7,9};
int n=5;
for(int i=0; i<n; i++){
printf("%d ",v[i]);
}
printf("Max = %d",MaximoR(v,n));
}
int MaximoR(int v[],int n){
if(n==1){
return v[0];
}
else{
int x = MaximoR(v,n-1);
if(x> v[n-1]){
return x;
}
else{
return v[n-1];
}
}
}
int maximo(int v[], int n){
return MaxR(v,0,n);
}
int MaxR(int v[], int i, int n){
if(i== n-1){
return v[i];
}
else{
int x = MaxR(v,i+1,n);
if(x > v[i]){
return x;
}
else{
return v[i];
}
}
}
|
the_stack_data/187644193.c | #include<stdio.h>
int main(){
printf("SHIP NAME CLASS DEPLOYMENT IN SERVICE\n");
printf("N2 Bomber Heavy Fighter Limited 21 \n");
printf("J-Type 327 Light Combat Unlimited 1 \n");
printf("NX Cruiser Medium Fighter Limited 18 \n");
printf("N1 Starfighter Medium Fighter Unlimited 25 \n");
printf("Royal Cruiser Light Combat Limited 4\n");
return 0;
} |
the_stack_data/268960.c | #include <stdio.h>
int main() {
printf("Bazinga!\n");
return 0;
}
|
the_stack_data/165765157.c | #define IA 16807
#define IM 2147483647
#define AM (1.0/IM)
#define IQ 127773
#define IR 2836
#define NTAB 32
#define NDIV (1+(IM-1)/NTAB)
#define EPS 1.2e-7
#define RNMX (1.0-EPS)
float ran1(long *idum)
{
int j;
long k;
static long iy=0;
static long iv[NTAB];
float temp;
if (*idum <= 0 || !iy) {
if (-(*idum) < 1) *idum=1;
else *idum = -(*idum);
for (j=NTAB+7;j>=0;j--) {
k=(*idum)/IQ;
*idum=IA*(*idum-k*IQ)-IR*k;
if (*idum < 0) *idum += IM;
if (j < NTAB) iv[j] = *idum;
}
iy=iv[0];
}
k=(*idum)/IQ;
*idum=IA*(*idum-k*IQ)-IR*k;
if (*idum < 0) *idum += IM;
j=iy/NDIV;
iy=iv[j];
iv[j] = *idum;
if ((temp=AM*iy) > RNMX) return RNMX;
else return temp;
}
#undef IA
#undef IM
#undef AM
#undef IQ
#undef IR
#undef NTAB
#undef NDIV
#undef EPS
#undef RNMX
/* (C) Copr. 1986-92 Numerical Recipes Software 7&X*. */
|
the_stack_data/9513188.c | /*
Author: Pakkpon Phongthawee
LANG: C
Problem: groupticket1
*/
#include<stdio.h>
int main(){
int user,price;
scanf("%d %d",&user,&price);
printf("%.2f",(user>=20)?price*user*80.0/100:((user/2)*2)*price*90.0/100+(user%2)*price);
return 0;
}
|
the_stack_data/1020065.c | /********************************
* @author: ZYmelaii 项乔栋
* @brief: 数据结构(双语)NOJ T005 - 单链表的删除(严2.29)
* @date: 2022/1/12
*******************************/
/********************************
* Description
* 已知A,B和C为三个非递减有序的线性表,均以单链表作为存储结构。现要求对A表作如下操作:删去那些既在B表中出现又在C表中出现的元素。试对单链表编写实现上述操作的算法,并释放A表中的无用结点空间。
*
* Input
* 第一行输入3个正整数m,n,p(m,n,p<=100),用空格分开,表三个线性表中的元素个数,其后3行依次输入A,B,C表中的元素。
*
* Output
* 输出实现上述操作后的A表。
*
* Sample lnput
* 8 5 6
* 1 2 3 4 5 6 6 7
* 2 3 5 9 12
* 2 4 5 6 12 13
*
* Sample Output
* 1 3 4 6 6 7
*******************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define N 100
#define CLEAR { int c; while ((c = getchar()) != EOF && c != '\n'); }
struct Node { int val, next; };
void buildlist(struct Node *buf, int n, int shift) {
n += shift;
for (int i = shift; i < n; ++i) {
scanf("%d", &buf[i].val);
if (i != 0) {
buf[i - 1].next = i;
}
buf[i].next = -1;
}
}
int intersect(struct Node *buf, int head1, int head2) {
int p = head1, q = head2, r = -1, tail = -1, pq = -1;
while (1) {
while (q != -1 && buf[q].val < buf[p].val) {
q = buf[q].next;
}
if (q == -1) break;
while (p != -1 && buf[p].val < buf[q].val) {
p = buf[p].next;
}
if (p == -1) break;
if (buf[p].val == buf[q].val) {
int np = buf[p].next;
if (pq == -1) {
pq = q;
r = p;
tail = r;
buf[tail].next = -1;
} else if (buf[pq].val != buf[q].val) {
pq = q;
buf[tail].next = p;
tail = p;
buf[tail].next = -1;
}
p = np;
q = buf[q].next;
}
}
return r;
}
void printlist(struct Node *buf, int head) {
int p = head;
while (p != -1) {
printf("%d ", buf[p].val);
p = buf[p].next;
}
putchar('\n');
}
int main(int argc, char const *argv[])
{
int x, y, z;
struct Node buf[3 * N] = { 0 };
scanf("%d%d%d", &x, &y, &z);
buildlist(buf, x, 0);
buildlist(buf, y, N);
buildlist(buf, z, N * 2);
y = intersect(buf, N, N * 2);
x = N * 2;
buf[x] = (struct Node){ 0, 0 };
while (1) {
while (buf[x].next != -1 && buf[buf[x].next].val < buf[y].val) {
x = buf[x].next;
}
if (buf[x].next == -1) break;
while (y != -1 && buf[y].val < buf[buf[x].next].val) {
y = buf[y].next;
}
if (y == -1) break;
if (buf[buf[x].next].val == buf[y].val) {
buf[x].next = buf[buf[x].next].next;
x = buf[x].next;
}
}
printlist(buf, buf[N * 2].next);
return 0;
} |
the_stack_data/1129010.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
void f(int value, int expect) {
if (value != expect) {
ERROR:
goto ERROR;
}
}
int main() {
int a = 4, b = 2, d = 0;
f(d = a && b, 0);
f(d = a || b, 0);
return 0;
}
|
the_stack_data/98470.c | /* This program is designed to read in 3 numbers
the user enters and display them on 3 seperate lines.
Author: Robert Eviston
Date: 7th October 2013
*/
#include <stdio.h>
main()
{
int num1;
int num2;
int num3;
printf("Please enter three numbers: ");
scanf("%d", &num1);
scanf("%d", &num2);
scanf("%d", &num3);
printf("Your numbers are:\n%d\n%d\n%d", num1, num2, num3);
flushall();
getchar();
}
|
the_stack_data/242330813.c | //
#include <stdio.h>
int
main(void)
{
float a, b, c, d, score;
printf("Enter thresholds for A, B, C, D\nin that order, decreasing percentages > ");
scanf("%f%f%f%f", &a, &b, &c, &d);
printf("Thank you. Now enter student score (percent) >");
scanf("%f", &score);
if (score >= a)
printf("Student has a A grade\n");
else if (score >= b && score < a)
printf("Student has a B grade\n");
else if (score >= c && score < b)
printf("Student has a C grade\n");
else if (score >= d && score < c)
printf("Student has a D grade\n");
else
printf("Student has failed the course\n");
return(0);
}
|
the_stack_data/243893344.c | /* memmove example */
#include <string.h>
int main ()
{
char str[] = "memmove can be very useful......";
memmove (str+20,str+15,11);
puts(str+20);
}
|
the_stack_data/211079660.c | #include <stdio.h>
int main()
{
int qtdTrab, numFunc;
float recebeHora, salario;
scanf("%d", & numFunc);
scanf("%d", & qtdTrab);
scanf("%f", & recebeHora);
salario = qtdTrab * recebeHora;
printf("NUMBER = %d\n", numFunc);
printf("SALARY = U$ %.2f\n", salario);
return 0 ;
}
|
the_stack_data/78136.c | #include <limits.h>
#include <stdio.h>
#include <stdlib.h>
//#define MAX_DIGITOS 30
#define MAX 30
long long int factorial(int);
//void factorial(int n, int resultado[MAX_DIGITOS], int *tam_resultado);
int main() {
/* Definiendo "n" con solo "int" el maximo valor que puede tomar es n = 12
Ahora, haciendo modificaciones al tipo de dato y cambiandolo por
"long long int" que tiene un rango maximo de 19 cifras, soporta
hasta n = 20 */
int n;
printf("INGRESE NUMERO ENTRE <0 - 20> PARA CALCULAR EL FACTORIAL : ");
scanf("%i", &n);
long long int valor = factorial(n);
printf("Factorial de %i = %lli\n", n, valor);
return 0;
/*-----------------------------------------------------------------------------------------------------------------------------------------------*/
// int n;
//int resultado[MAX_DIGITOS];
//int tam_resultado;
//printf("INGRESE NUMERO ENTRE <0 - 20> PARA CALCULAR EL FACTORIAL : ");
//scanf("%i", &n);
//factorial(n, resultado, &tam_resultado);
}
/*Version iterativa*/
long long int factorial(int n) {
unsigned long long int resultado = 1;
for (int i = 2; i <= n; i++) {
if((i <= n) && (resultado > (ULLONG_MAX/i))) {
return 0;
}else{
resultado = resultado * i;
}
}
return (resultado);
}
/*Version recursiva*/
/*long long int factorial(int n) {
long long int resultado;
if (n == 1 || n == 0) {
return 1;
} else {
resultado = n * factorial(n - 1);
}
return (resultado);
}*/
/* comparando las 2 versiones del codigo, diria que la iterativa se logra
entender mas a simple vista, aparte que si hubiese algun fallo podria hacer
el ruteo del algoritmo para saber donde esta el error.
Por otra parte, el que es recursivo, ayuda mucho a reducir lo que son las
lineas de codigo y tiene una perspectiva mas compacta y simple */
/*void factorial(int n, int resultado[MAX_DIGITOS], int *tam_resultado) {
long long int numero_final = 1;
for (int i = 2; i <= n; i++) {
if ((i <= n) && (numero_final > (ULLONG_MAX / i))) {
printf("0\n");
} else {
numero_final = numero_final * i;
}
}
}*/
|
the_stack_data/3263267.c | #include <stdio.h>
#include <math.h>
int main (void)
{
int n,d;
float raiz;
printf("Digite um numero para conferir se e primo ou nao: ");
scanf("%d", &n);
printf("--------------\n");
raiz = sqrt(n);
raiz = ceil(raiz);
if (n == 2){
puts("Numero Primo!");
}else{
for (d = 2;d<raiz; d++)
if(n%d == 0) break;
if(n%d == 0)puts("Numero Primo!");
else puts("Numero nao Primo!");
}
return 0;
}
|
the_stack_data/7777.c | /* File: histogram.c
* Purpose: Build a histogram from some random data
*
* Compile: gcc -g -Wall -o histogram histogram.c
* Run: ./histogram <bin_count> <min_meas> <max_meas> <data_count>
*
* Input: None
* Output: A histogram with X's showing the number of measurements
* in each bin
*
* Notes:
* 1. Actual measurements y are in the range min_meas <= y < max_meas
* 2. bin_counts[i] stores the number of measurements x in the range
* 3. bin_maxes[i-1] <= x < bin_maxes[i] (bin_maxes[-1] = min_meas)
* 4. DEBUG compile flag gives verbose output
* 5. The program will terminate if either the number of command line
* arguments is incorrect or if the search for a bin for a
* measurement fails.
*
* IPP: Section 2.7.1 (pp. 66 and ff.)
*/
#include <stdio.h>
#include <stdlib.h>
#include <omp.h>
int thread_count;
void Usage(char prog_name[]);
void Get_args(
char* argv[] /* in */,
int* bin_count_p /* out */,
float* min_meas_p /* out */,
float* max_meas_p /* out */,
int* data_count_p /* out */,
int* thread_count);
void Gen_data(
float min_meas /* in */,
float max_meas /* in */,
float data[] /* out */,
int data_count /* in */);
void Gen_bins(
float min_meas /* in */,
float max_meas /* in */,
float bin_maxes[] /* out */,
int bin_counts[] /* out */,
int bin_count /* in */);
int Which_bin(
float data /* in */,
float bin_maxes[] /* in */,
int bin_count /* in */,
float min_meas /* in */);
void Print_histo(
float bin_maxes[] /* in */,
int bin_counts[] /* in */,
int bin_count /* in */,
float min_meas /* in */);
int main(int argc, char* argv[]) {
int bin_count, i, bin;
float min_meas, max_meas;
float* bin_maxes;
int* bin_counts;
int data_count;
float* data;
/* Check and get command line args */
if (argc != 6) Usage(argv[0]);
Get_args(argv, &bin_count, &min_meas, &max_meas, &data_count, &thread_count);
/* Allocate arrays needed */
bin_maxes = malloc(bin_count*sizeof(float));
bin_counts = malloc(bin_count*sizeof(int));
data = malloc(data_count*sizeof(float));
/* Generate the data */
Gen_data(min_meas, max_meas, data, data_count);
/* Create bins for storing counts */
Gen_bins(min_meas, max_meas, bin_maxes, bin_counts, bin_count);
/* Count number of values in each bin */
#pragma omp parallel for num_threads(thread_count) default(none) \
shared(data_count, data, bin_maxes, bin_count, min_meas, bin_counts) \
private(bin, i)
for (i = 0; i < data_count; i++) {
bin = Which_bin(data[i], bin_maxes, bin_count, min_meas);
#pragma omp critical
bin_counts[bin]++;
}
# ifdef DEBUG
printf("bin_counts = ");
for (i = 0; i < bin_count; i++)
printf("%d ", bin_counts[i]);
printf("\n");
# endif
/* Print the histogram */
Print_histo(bin_maxes, bin_counts, bin_count, min_meas);
free(data);
free(bin_maxes);
free(bin_counts);
return 0;
} /* main */
/*---------------------------------------------------------------------
* Function: Usage
* Purpose: Print a message showing how to run program and quit
* In arg: prog_name: the name of the program from the command line
*/
void Usage(char prog_name[] /* in */) {
fprintf(stderr, "usage: %s ", prog_name);
fprintf(stderr, "<bin_count> <min_meas> <max_meas> <data_count> <thread_count>\n");
exit(0);
} /* Usage */
/*---------------------------------------------------------------------
* Function: Get_args
* Purpose: Get the command line arguments
* In arg: argv: strings from command line
* Out args: bin_count_p: number of bins
* min_meas_p: minimum measurement
* max_meas_p: maximum measurement
* data_count_p: number of measurements
*/
void Get_args(
char* argv[] /* in */,
int* bin_count_p /* out */,
float* min_meas_p /* out */,
float* max_meas_p /* out */,
int* data_count_p /* out */,
int* thread_count) {
*bin_count_p = strtol(argv[1], NULL, 10);
*min_meas_p = strtof(argv[2], NULL);
*max_meas_p = strtof(argv[3], NULL);
*data_count_p = strtol(argv[4], NULL, 10);
*thread_count = strtol(argv[5], NULL, 10);
# ifdef DEBUG
printf("bin_count = %d\n", *bin_count_p);
printf("min_meas = %f, max_meas = %f\n", *min_meas_p, *max_meas_p);
printf("data_count = %d\n", *data_count_p);
# endif
} /* Get_args */
/*---------------------------------------------------------------------
* Function: Gen_data
* Purpose: Generate random floats in the range min_meas <= x < max_meas
* In args: min_meas: the minimum possible value for the data
* max_meas: the maximum possible value for the data
* data_count: the number of measurements
* Out arg: data: the actual measurements
*/
void Gen_data(
float min_meas /* in */,
float max_meas /* in */,
float data[] /* out */,
int data_count /* in */) {
int i;
srandom(0);
#pragma omp parallel for num_threads(thread_count) \
default(none) shared(data, min_meas, max_meas, data_count)
for (i = 0; i < data_count; i++) {
data[i] = min_meas + (max_meas - min_meas) * random() / ((double) RAND_MAX);
}
# ifdef DEBUG
printf("data = ");
for (i = 0; i < data_count; i++)
printf("%4.3f ", data[i]);
printf("\n");
# endif
} /* Gen_data */
/*---------------------------------------------------------------------
* Function: Gen_bins
* Purpose: Compute max value for each bin, and store 0 as the
* number of values in each bin
* In args: min_meas: the minimum possible measurement
* max_meas: the maximum possible measurement
* bin_count: the number of bins
* Out args: bin_maxes: the maximum possible value for each bin
* bin_counts: the number of data values in each bin
*/
void Gen_bins(
float min_meas /* in */,
float max_meas /* in */,
float bin_maxes[] /* out */,
int bin_counts[] /* out */,
int bin_count /* in */) {
float bin_width;
int i;
bin_width = (max_meas - min_meas)/bin_count;
#pragma omp parallel for num_threads(thread_count) \
default(none) \
shared(min_meas, max_meas, bin_maxes, bin_counts, bin_count, bin_width) \
private(i)
for (i = 0; i < bin_count; i++) {
bin_maxes[i] = min_meas + (i+1)*bin_width;
bin_counts[i] = 0;
}
# ifdef DEBUG
printf("bin_maxes = ");
for (i = 0; i < bin_count; i++)
printf("%4.3f ", bin_maxes[i]);
printf("\n");
# endif
} /* Gen_bins */
/*---------------------------------------------------------------------
* Function: Which_bin
* Purpose: Use binary search to determine which bin a measurement
* belongs to
* In args: data: the current measurement
* bin_maxes: list of max bin values
* bin_count: number of bins
* min_meas: the minimum possible measurement
* Return: the number of the bin to which data belongs
* Notes:
* 1. The bin to which data belongs satisfies
*
* bin_maxes[i-1] <= data < bin_maxes[i]
*
* where, bin_maxes[-1] = min_meas
* 2. If the search fails, the function prints a message and exits
*/
int Which_bin(
float data /* in */,
float bin_maxes[] /* in */,
int bin_count /* in */,
float min_meas /* in */) {
int bottom = 0, top = bin_count-1;
int mid;
float bin_max, bin_min;
while (bottom <= top) {
mid = (bottom + top)/2;
bin_max = bin_maxes[mid];
bin_min = (mid == 0) ? min_meas: bin_maxes[mid-1];
if (data >= bin_max)
bottom = mid+1;
else if (data < bin_min)
top = mid-1;
else
return mid;
}
/* Whoops! */
fprintf(stderr, "Data = %f doesn't belong to a bin!\n", data);
fprintf(stderr, "Quitting\n");
exit(-1);
} /* Which_bin */
/*---------------------------------------------------------------------
* Function: Print_histo
* Purpose: Print a histogram. The number of elements in each
* bin is shown by an array of X's.
* In args: bin_maxes: the max value for each bin
* bin_counts: the number of elements in each bin
* bin_count: the number of bins
* min_meas: the minimum possible measurment
*/
void Print_histo(
float bin_maxes[] /* in */,
int bin_counts[] /* in */,
int bin_count /* in */,
float min_meas /* in */) {
int i, j;
float bin_max, bin_min;
for (i = 0; i < bin_count; i++) {
bin_max = bin_maxes[i];
bin_min = (i == 0) ? min_meas: bin_maxes[i-1];
printf("%.3f-%.3f:\t", bin_min, bin_max);
for (j = 0; j < bin_counts[i]; j++)
printf("X");
printf("\n");
}
} /* Print_histo */ |
the_stack_data/12627.c | /* ************************************************************************** */
/* */
/* :::::::: */
/* ft_long_len.c :+: :+: */
/* +:+ */
/* By: alkrusts <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/11/14 13:58:14 by alkrusts #+# #+# */
/* Updated: 2020/11/14 14:48:21 by alkrusts ######## odam.nl */
/* */
/* ************************************************************************** */
#include <limits.h>
int ft_longlen(long nr)
{
int ret;
ret = 0;
if (nr == 0)
return (1);
if (nr == LONG_MIN)
return (0);
if (nr < 0)
{
nr = -nr;
ret++;
}
while (nr >= 1)
{
ret++;
nr = nr / 10;
}
return (ret);
}
|
the_stack_data/35161.c | #include<stdio.h>
int main()
{
unsigned int num[100001]={0};
int n,a,i,k;
scanf("%d",&n);
for(i=0;i<n;++i)
{
scanf("%d",&a);
++num[a];
}
scanf("%d",&k);
for(i=100000;i>=0;--i)
{
if(num[i]!=0)
k--;
if(k<=0)
{
printf("%d %u\n",i,num[i]);
break;
}
}
return 0;
} |
the_stack_data/140766363.c | #include <stdio.h>
int main(void)
{
long long sayi, sonuc = 1;
printf("Faktoriyelinin bulunmasini istediginiz sayiyi giriniz: ");
scanf("%lld", &sayi);
for (long long i = 1; i <= sayi; i++)
{
sonuc *= i;
}
printf("%lld'nin faktoriyeli: %lld", sayi, sonuc);
return 0;
} |
the_stack_data/512836.c | //---------------
// mini-c, by Sam Nipps (c) 2015; modified to create wasm binary code instead by Dave Mugridge 2017.
// MIT license
//---------------
// functions to r/w 8 bits when only 32 bit memory access
int getChar (const char* buffer) {return buffer[0] & 255;}
void writeChar(char* buffer, char ch) { buffer[0] = (buffer[0] & (~255)) | (ch & 0xff) ; }
int puts(const char* s); // fwd decl.
//#include <stdbool.h> // stdbool.h equivalent
#define bool int
int false = 0;
int true = 1;
//#include <ctype.h> // ctype.h equivalent
bool isalpha (char ch) {return ( ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'); }
bool isdigit (char ch) {return ch >= '0' && ch <= '9';}
bool isalnum (char ch) {return isalpha(ch) || isdigit(ch);}
bool ishex (char ch) {return isdigit(ch) || (ch >='a' && ch <= 'f');} // just lower case for the moment
int hexValue(char ch) {return isdigit(ch) ? ch - '0' : ch - 'a' + 10;}
//#include <stdlib.h> // stdlib functions...
void* malloc(int size);
int atoi(char* buffer) { // as used here, buffer will only contain numbers...
int result = 0;
if ( getChar(buffer) == '-')
return -1*atoi(buffer+1);
while (getChar(buffer))
result = result*10 + (getChar(buffer++) - '0');
return result;
}
void* calloc(int num, int size) {
int sizeInBytes = num*size;
void* memory = malloc(sizeInBytes);
int sizeInWords = (sizeInBytes >> 2);
int* ptr = memory;
while (sizeInWords >= 0) {
ptr[sizeInWords] = 0;
sizeInWords--;
}
return memory;
}
void free(void* memory) {} // very simplistic memory allocator; no free space management...
//#include <string.h> // character/string functions
int strlen(char* buffer) {
int count = 0;
while (getChar(buffer++))
count++;
return count;
}
int strcmp(char* s1, char* s2) { // only need ==, != result
while ( getChar(s1) == getChar(s2) ) {
if (getChar(s1) == 0) {
return 0;
}
s1++;
s2++;
}
return -1;
}
char* strdup(char* s1) {
int length = strlen(s1) + 1;
char* s2 = malloc(length);
char* retValue = s2;
while (length--) {
writeChar(s2++, getChar(s1++));
}
return retValue;
}
#include <stdio.h> //Still needed as it defines the struct FILE & linking fails otherwise. But this is fine
FILE* fopen (const char* filename, const char* mode);
int fclose (FILE* stream);
int fgetc (FILE* stream); // char file input
int ungetc (int c, FILE* stream);
int feof (FILE* stream);
int fputc (int c, FILE* stream); // binary file output...
int putchar(int c); // write a character to stdout --
int puti(int i) { // write ascii equiv. of int to stdout
int div = i / 10;
int rem = i % 10;
if (i < 0) {
putchar('-');
puti(-i);
} else {
if (div)
puti(div);
putchar('0' + rem);
}
return 1;
}
int puts(const char* s);
int printfsmall(const char* s, char* s1) {
char ch;
do {
ch = getChar(s++);
if (ch == '%') {
getChar(s++); // just assume it's a '%s' & skip over it
printfsmall(s1, ""); // the second string better not include any formatting)
} else if (ch)
putchar(ch);
} while (ch);
return 1;
}
int puts(const char* s) {
return printfsmall(s, "");
}
int ptr_size = 4;
int word_size = 4;
FILE* output;
//=== Bytecode generation ===
char* bytecode; // remember the starting location
int bytecodeLength;
char* headerCode; // remember the starting location
int headerLength;
char* streamPointer; // generic stream pointer
char* sp; // current bytecode pointer
char* createEmitStream(int maxlen) {
streamPointer = malloc(maxlen);
sp = streamPointer;
return streamPointer;
}
int stream_length() {
return sp - streamPointer;
}
char* emitByte(char op) {
char* retval = sp;
writeChar(sp++, op);
return retval;
}
char* emit2Byte(char op, char p) {
char* retval = emitByte(op);
emitByte(p);
return retval;
}
char* emiti32load(int offset) {
char* retval = emit2Byte(0x28, 0x02);
emitByte(offset);
return retval;
}
char* emiti32store(int offset) {
char* retval = emit2Byte(0x36, 0x02);
emitByte(offset);
return retval;
}
int blockDepth = 0;
int emitBlock(int block_type) {
emit2Byte(0x02, block_type);
blockDepth++;
return blockDepth;
}
int emitLoop(int block_type) {
emit2Byte(0x03, block_type);
blockDepth++;
return blockDepth;
}
void emitEnd() {
emitByte(0x0b); // end
blockDepth--;
}
void emitBranch(int code, int blockNo) {
emit2Byte(code, blockDepth - blockNo); // number of blocks to skip
}
char* emitConst(int value) { // value is 32 bit signed...
//printf("emitConst: %04x\n", (unsigned int) value);
// from https://en.wikipedia.org/wiki/LEB128#Signed_LEB128
char* retval = emitByte(0x41); //i32.const
int more = 1;
//int negative = (value < 0);
int byte;
while(more) {
byte = value & 0x7f; // lowest 7 bits
value = value >> 7;
// following is unnecessary if >> is arithmetic shift
//if (negative) value = value | (- (1 << (32-7))); // sign extend
if (((value==0) && !(byte & 0x40)) || ((value==-1) && (byte & 0x40)))
more = 0;
else
byte = byte | 0x80;
emitByte(byte);
//printf("emit: %02x ", (unsigned char) byte);
}
//printf("\n");
return retval;
}
char* emitLength() { // called to make space for the length; value is subsequently overwritten
char* retval = emitByte(0x55); // preventative: make obvious that's it's not been overwritten
emitByte(0x57);
emitByte(0x58);
emitByte(0x59);
emitByte(0x5a);
return retval;
}
void emitNumberFixup(char* p, int no) {
// turn the number into a 5 char encoded length
int i = 0;
while (i<5) {
char c = no & 0x7f;
if (i !=4) c = c | 0x80; // set the top bit of all but the last byte
writeChar(p++, c);
no = no >> 7;
i++;
}
}
void emitLengthFixup(char* p) {
int byteLength = sp - p - 5; // calculate the no. of bytes between the pointers, offset by the length of the length-field
emitNumberFixup(p, byteLength);
}
void putstring(char *c) {
while ((getChar(c) != 0) && (getChar(c+1) != 0)) {
int upper = hexValue(getChar(c++));
int lower = hexValue(getChar(c++));
emitByte(upper*16 + lower);
}
}
void emit5ByteNumber(int length) {
char* p = emitLength();
emitNumberFixup(p, length);
}
//==== Global Memory Generation ====
char* memory; // remember the starting location
char* mp;
int memoryLength;
void emit4ByteMemory(int n);
char* createMemory(int maxlen) {
memory = malloc(maxlen);
mp = memory;
emit4ByteMemory(0); // Scratch location - used during fn prologue
emit4ByteMemory(1024*64*4-16); // Call stack pointer - start high in memory
return memory;
}
int getGlobalAddress() {
return mp - memory;
}
void emit1ByteMemory(int n) {
writeChar(mp++, n);
}
void emit4ByteMemory(int n) {
if (n > 0) {
//printf("init %i to %i\n", getGlobalAddress(), n);
}
emit1ByteMemory(n >> 0); // little endian
emit1ByteMemory(n >> 8);
emit1ByteMemory(n >> 16);
emit1ByteMemory(n >> 24);
}
void emitStringToMemory(char* s) { // call multiple times to concat strings. MUST call emitStringEndToMemory() to properly terminate.
while (getChar(s)) {
emit1ByteMemory(getChar(s++));
}
}
void emitStringEndToMemory() {
emit1ByteMemory(0); // terminate the string
while (getGlobalAddress() & 3 ) { // round to a 4 byte address
emit1ByteMemory(0);
}
}
void dumpSymTable();
//==== Lexer ====
char* inputname;
FILE* input;
int curln;
char curch;
char* buffer;
int buflength;
int token;
//No enums :(
int token_other = 0;
int token_ident = 1;
int token_int = 2;
int token_str = 3;
int intResult; // lexer does ascii int/hex conversion too.
char next_char () {
if (curch == 10) // '\n'
curln++;
curch = fgetc(input);
//if (curch == 64) { // ampersand - use for debug
// dumpSymTable();
// curch = fgetc(input);
//}
//puts("next_char: "); puti(curch); puts("\n");
return curch;
}
bool prev_char (char before) {
ungetc(curch, input);
curch = before;
return false;
}
void eat_char () {
writeChar(buffer + buflength, curch);
next_char();
buflength++;
}
void decode_char() {
if (curch == '\\') {
next_char();
curch = curch == 'r' ? 13 : curch == 'n' ? 10 : curch == 't' ? 9 : curch; // anyting else, incl. '\\', \', \" just use 2nd char.
}
eat_char();
}
void next () {
//Skip whitespace
while (curch == ' ' || curch == '\r' || curch == '\n' || curch == '\t') // 32 13 10 9 ' ', '\r', '\n', '\t'
next_char();
//Treat preprocessor lines as line comments
if ( curch == '#'
|| (curch == '/' && (next_char() == '/' || prev_char('/')))) {
while (curch != '\n' && !feof(input))
next_char();
//Restart the function (to skip subsequent whitespace, comments and pp)
next();
return;
}
buflength = 0;
token = token_other;
//Identifier or keyword
if (isalpha(curch)) {
token = token_ident;
while ((isalnum(curch) || curch == '_') && !feof(input))
eat_char();
//Integer literal
} else if (isdigit(curch)) { // do ascii to int conversion here - incl. hex format.
token = token_int;
intResult = 0;
eat_char();
if (getChar(buffer) == '0' && curch == 'x') { // it's a hex number.
eat_char();
while (ishex(curch) && !feof(input)) {
intResult = intResult*16 + hexValue(curch);
eat_char();
}
} else {
intResult = getChar(buffer) - '0';
while (isdigit(curch) && !feof(input)) {
intResult = intResult * 10 + curch - '0';
eat_char();
}
}
// character literal
} else if (curch == 39) {
token = token_int;
next_char(); // skip the quote
decode_char();
intResult = getChar(buffer);
next_char(); // assume closing quote too. Should check.... if (curch != 39)
buflength = 0; // reset the buffer
//String literal
} else if (curch == '"') {
token = token_str;
next_char();
while (curch != '"' && !feof(input)) {
decode_char();
}
next_char();
//Two char operators
} else if ( curch == '+' || curch == '-' || curch == '|' || curch == '&'
|| curch == '=' || curch == '!' || curch == '>' || curch == '<') {
eat_char();
if ((curch == getChar(buffer) && curch != '!') || curch == '=')
eat_char();
} else
eat_char();
writeChar(buffer + buflength, 0); // null terminate the token
//printf("DEBUG: next, token = %i, buflength = %i, buffer = %s\n", token, buflength, buffer);
//printfsmall("DEBUG: buffer = %s, intResult = ", buffer); puti(intResult); puts(" token = "); puti(token); puts("\n");
}
void lex_init (char* filename, int maxlen) {
inputname = filename;
input = fopen(filename, "r");
//Get the lexer into a usable state for the parser
curln = 1;
buffer = malloc(maxlen);
next_char();
next();
}
//==== Parser helper functions ====
int errors;
void errorLine() {
//printf("%s:%d: error: ", inputname, curln);
puts(inputname); puts(":"); puti(curln); puts(": error: ");
}
void error (char* format) {
errorLine();
//Accepting an untrusted format string? Naughty!
//printf(format, buffer);
printfsmall(format, buffer);
errors++;
}
void require (bool condition, char* format) {
if (!condition)
error(format);
}
bool see (char* look) {
return (token!=token_str) && !strcmp(buffer, look); // ), and ")" both appear the same in buffer[].
}
bool waiting_for (char* look) {
return !see(look) && !feof(input);
}
void match (char* look) {
if (!see(look)) {
errorLine();
//printf("expected '%s', found '%s'\n", look, buffer);
printfsmall("expected '%s'", look); printfsmall(", found '%s'\n", buffer);
errors++;
}
next();
}
bool try_match (char* look) {
if (see(look)) {
next();
return true;
}
return false;
}
//==== Symbol table ====
char** globals;
int global_no;
int* globalAddr; // the global variable's address in global memory. Only valid if it this symbol table entry is a global var.
int* is_fn; // 0 = it's not a function. -1 = function declaration seen (initially, later negative index into the exports section) . >0 = fn body exists, index into Code section (offset by 1)
int* fn_sig; // index into the Type section for the correct fn signature //ignore the following offset by 1. Therefore 0 if not a fn.
char** locals;
int local_no;
int param_no;
int* offsets;
int bodyCount;
int functionOffset; // imported functions offset the number for functions with a body. -1 indicates it's not been updated yet. It's a crosscheck to ensure things are done in the right order
void sym_init (int max) {
globals = malloc(ptr_size*max);
global_no = 0;
globalAddr = calloc(max, ptr_size); // zero initialise
is_fn = calloc(max, ptr_size); // zero initialise
fn_sig = calloc(max, ptr_size); // zero initialise
locals = malloc(ptr_size*max);
local_no = 0; // none of these 0 initialisations are really needed...
param_no = 0;
bodyCount = 1; // offset the count by one for is_fn[] encoding
offsets = calloc(max, word_size);
functionOffset = -1;
}
int sym_lookup (char** table, int table_size, char* look) {
int i = 0;
while (i < table_size)
if (!strcmp(table[i++], look))
return i-1;
return -1;
}
void new_global (char* ident) {
int varAddr = getGlobalAddress();
//printf("Global: %s = %i\n", ident, varAddr);
globals[global_no] = ident;
globalAddr[global_no++] = varAddr;
}
void new_fn (char* ident, bool returnsValue, int noParams, bool hasBody) {
//printf("new function %s, global_no = %i, bodycount = %i, signature = %i, hasBody = %i\n", ident, global_no, bodyCount, returnsValue + 2*noParams, hasBody);
int existing = sym_lookup(globals, global_no, ident);
if (existing > 0) { // matches an existing entry - delete that entry by "zeroing" impt fields
//puts("matches existing entry & deleting it. index = "); puti(existing); puts("\n");
free(globals[existing]);
globals[existing] = "<del>"; // these are the 2x fields that need to be reset to fully delete the entry. NB - don't set to 0; other functions assume a null terminated string!
is_fn[existing] = 0;
globalAddr[existing] = global_no; // set up a link to the newly created, correct entry - needed when doing call fixups.
}
// add it
is_fn[global_no] = hasBody ? bodyCount++ : -1;
fn_sig[global_no] = returnsValue + (2*noParams); // calculate index into Type Section's function signatures
new_global(ident);
}
int new_local (char* ident) {
locals[local_no] = ident;
offsets[local_no] = local_no;
return local_no++;
}
void new_param (char* ident) {
new_local(ident);
param_no++;
}
void dumpSymTable() {
int i = 0;
puts("Globals dump\n");
int j = global_no;
puti(global_no);
while (i < global_no) {
puts(globals[i++]); puts(" ");
}
puts("\n");
}
//Enter the scope of a new function
void new_scope () {
local_no = 0;
param_no = 0;
}
//==== Codegen call fixups ====
// At the time we generate a Call instruction we don't yet know the function's index
// Therefore record the location of all the call instructions in this table, and go back to fix them all when we know
int* fixupSymTableEntry;
char** fixupBytecodeAddr;
int fixupIndex;
void init_codegen(int max) {
fixupSymTableEntry = calloc(max, ptr_size);
fixupBytecodeAddr = calloc(max, ptr_size);
fixupIndex = 0; // really unnecessary
}
void emitCall(int symtableIndex) {
emitByte(0x10); //call instruction
fixupSymTableEntry[fixupIndex] = symtableIndex;
//puts("enter fixup no "); puti(fixupIndex); puts(", index = "); puti(symtableIndex); puts("\n");
fixupBytecodeAddr[fixupIndex] = emitByte(0x55); // arbitrary no. acting as a sentinel - check on overwriting. Just 1x varuint byte so limited to 127 fns max.
fixupIndex++;
}
void doCallFixups() { // must be called after generateImportSection() as the is_fn values for external functions needs to have been updated.
if (functionOffset < 0) {
puts("functionOffset is < 0; interlock has failed\n");
}
int i = 0;
while (i<fixupIndex) {
int symtableIndex = fixupSymTableEntry[i];
if ( !strcmp("<del>", globals[symtableIndex]) ) {
//puts("Re-routing call to fwd-declared fn. From "); puti(symtableIndex); puts(" to "); puti(globalAddr[symtableIndex]); puts("\n");
symtableIndex = globalAddr[symtableIndex];
}
int callOffset = is_fn[symtableIndex];
if (callOffset < 0) {
callOffset = - callOffset - 1; // it's calling an imported function; invert the number and allow for the offset
} else {
callOffset = callOffset - 1 + functionOffset; // calling a local function, offset the index by the number of imported fuctions. Also it also has an offset
}
char* bytecodeAddr = fixupBytecodeAddr[i];
//printf("dofixups %i: symtableIndex = %i, calloffset = %i, bytecodeAddr = %i\n", i, symtableIndex, callOffset, bytecodeAddr-bytecode);
if ( getChar(bytecodeAddr) != 0x55) {
//printf("Sentinel is invalid - found %i at %i\n", bytecodeAddr[0], bytecodeAddr-bytecode);
puts("Sentinel is invalid - found "); puti(bytecodeAddr[0]); puts(" at "); puti(bytecodeAddr-bytecode); puts("\n");
}
//puts("doCallFixups no. "); puti(i); puts(", addr = "); puti(bytecodeAddr); puts(", offset = "); puti(callOffset); puts("\n");
writeChar(bytecodeAddr, callOffset); // this has to be a byte write, otherwise it will obliterate adjacent bytecode
i++;
}
}
//==== One-pass parser and code generator ====
bool lvalue;
void needs_lvalue (char* msg) {
if (!lvalue)
error(msg);
lvalue = false;
}
int expr (int level, int stackDepth);
//The code generator for expressions works by placing the results on the stack
//Regarding lvalues and assignment:
//An expression which can return an lvalue looks ahead for an
//assignment operator. If it finds one, then it pushes the
//address of its result. Otherwise, it dereferences it.
//The global lvalue flag tracks whether the last operand was an
//lvalue; assignment operators check and reset it.
int factor (int stackDepth) {
int global; // compiler limitation that local vars have to be declared 1st, not inside {}
int local;
int str;
int arg_no;
int stackDelta = 1; // the stack grows by 1 for most factors; the exception is a function call with a void return.
lvalue = false;
if (see("true") || see("false")) {
emitConst( see("true") ? 1 : 0);
next();
} else if (token == token_ident) {
global = sym_lookup(globals, global_no, buffer);
local = sym_lookup(locals, local_no, buffer);
// printf("symbol %s: global= %i, local= %i\n", buffer, global, local);
require(global >= 0 || local >= 0, "no symbol '%s' declared\n");
next();
if (see("=") || see("++") || see("--"))
lvalue = true;
if (global >= 0) {
if (!is_fn[global]) {
// ok, it's an ordinary variable
emitConst(globalAddr[global]);
if (!lvalue) {
emiti32load(0x00); // i32.load offset = 0;
}
} else {
// it's a function call - parse the parameters
match("(");
arg_no = 0;
if (waiting_for(")")) {
do {
expr(0, 0); //start stack counting again for the para. Could add a check that the returned stack is 1
arg_no++;
} while (try_match(","));
}
match(")");
emitCall(global);
if ( !(fn_sig[global] & 1) ) { // bottom bit of signature determines the return value
stackDelta = 0;
}
}
}
else if (local >= 0) { // all locals are in the frame
emit2Byte(0x20, 2); // get_local - 'cached' fp
emitConst(4*(offsets[local]+1)); // position 0 is the old-fp
emitByte(0x6a); // i32.add - now have the address of the local
if (!lvalue) {
emiti32load(0); // TODO Hmm, could optimise the read case by using the offset in load. Only use the calc. for lvalue.
}
}
} else if (token == token_int) {
emitConst(intResult);
next();
} else if (token == token_str) {
str = getGlobalAddress();
while (token == token_str) { //Consecutive string literals are concatenated.
emitStringToMemory(buffer);
next();
}
emitStringEndToMemory();
emitConst(str); // put the address of the string on the stack
} else if (try_match("(")) {
expr(0, 0); // should really verify that the returned stack depth is 1.
match(")");
} else
error("expected an expression, found '%s'\n");
return stackDepth + stackDelta;
}
int object (int stackDepth) {
int arg_no;
stackDepth = factor(stackDepth);
while (true) {
// function parameter processing used to be done here, but is now moved to factor() because of wasm restriction - can't put fn addr on stack
if (try_match("[")) {
// array indexing
// the base address is on the stack
stackDepth = expr(0, stackDepth);
match("]");
if (see("=") || see("++") || see("--"))
lvalue = true;
emitConst(4); // word-size
emitByte(0x6c); // i32.mul -- multiply the index by the word-size
emitByte(0x6a); //i32.add -- and add in the base address to get the final address
if (!lvalue) { // doesn't properly deal with return a[b] ???? The code looks like it should????
emiti32load(0x00); // i32.load offset = 0;
}
stackDepth--; // 2 stack positions are replaced by 1
} else
return stackDepth;
}
return 0; // keep compiler happy when true is defined as a variable, not a constant...
}
int unary (int stackDepth) {
if (try_match("!")) {
//Recurse to allow chains of unary operations, LIFO order
unary(stackDepth);
emitByte(0x45); // i32.eqz - inverts the boolean
} else if (try_match("~")) {
//Recurse to allow chains of unary operations, LIFO order
unary(stackDepth);
emitConst(-1);
emitByte(0x73); // i32.xor with 0 to invert all bits.
}else if (try_match("-")) {
unary(stackDepth);
// there's no i32.neg instruction!
emit2Byte(0x21, 0); // set_local
emitConst(0x00);
emit2Byte(0x20, 0); // get_local
emitByte(0x6b); // i32.sub
} else {
//This function call compiles itself
stackDepth = object(stackDepth);
if (see("++") || see("--")) {
needs_lvalue("assignment operator '%s' requires a modifiable object\n");
emit2Byte(0x22, 0); // tee_local L0
emit2Byte(0x20, 0); // get_local L0
emiti32load(0x00); // i32.load offset = 0;
emit2Byte(0x22, 1); // tee_local L1
emitConst(0x01); //
emitByte(see("++")? 0x6a : 0x6b); // i32.add : i32.sub
emiti32store(0x00); // update the pointer
emit2Byte(0x20, 1); // get_local L1 -- finally put the original value back on the stack
next(); // net result of all this is the stack remains at the same depth
}
}
return stackDepth;
}
void ternary ();
int expr (int level, int stackDepth) {
char instr;
char instrNot;
int shortcircuit;
if (level == 6) {
stackDepth = unary(stackDepth);
return stackDepth;
}
stackDepth = expr(level+1, stackDepth);
while ( level == 5 ? see("*") || see("/") || see("%")
: level == 4 ? see("+") || see("-") || see("&") || see("|") || see("<<") || see(">>")
: level == 3 ? see("==") || see("!=") || see("<") || see(">") || see(">=") || see("<=")
: false) {
instr = see("+") ? 0x6a : see("-") ? 0x6b : see("*") ? 0x6c : see("/") ? 0x6d : see("%") ? 0x6f :
see("&") ? 0x71 : see("|") ? 0x72 : see("<<") ? 0x74 : see(">>") ? 0x75 :
see("==") ? 0x46 : see("!=") ? 0x47 : see("<") ? 0x48 : see(">") ? 0x4a :see(">=") ? 0x4e : 0x4c; // last one is <=
next();
stackDepth = expr(level+1, stackDepth);
emitByte(instr);
stackDepth--; // 2x operand are replaced by one
}
if (level == 2) while (see("||") || see("&&")) {
// would like to just conditionally jump forward, but this isn't easy in wasm.
emit2Byte(0x21, 0); // set_local - we need to both test and optionally restore this value on the stack
shortcircuit = emitBlock(0x7f); // the updated condition result is returned on TOS
emit2Byte(0x20, 0); // get_local - this will be TOS at the end of the block if we don't need to calc. the next expr.
emit2Byte(0x20, 0); // get_local - Get the value to test it
if (see("&&") )
emitByte(0x45); // optionally invert the result
emitBranch(0x0d, shortcircuit);
emitByte(0x1a); // drop the condition result
next();
expr(level+1, 0); // should check that it returns stackDepth == 1
emitEnd(); // end result is that the stackDepth is at the same at exit as at entry, irrespective of the 2x paths
}
if (level == 1 && try_match("?"))
ternary();
if (level == 0 && try_match("=")) {
//lvalue is already on the stack
needs_lvalue("assignment requires a modifiable object\n");
stackDepth = expr(level+1, stackDepth);
emiti32store(0x00); // store, 0 offset
stackDepth = stackDepth - 2; // 2x values removed from the stack
}
return stackDepth;
}
void line ();
void ternary () {
// the result of the <conditional evaluation> is on the stack
// need to save into a local and then create the nested blocks for the <then>, <else> parts
// this code closely matches if_branch() below
emit2Byte(0x21, 0); // set_local
int ifBlock = emitBlock(0x7f); // the block exits with a i32
int elseBlock = emitBlock(0x40); // Block encloses 'then' with 0 results
emitBlock(0x40); // Block encloses 'conditional' with 0 results
emit2Byte(0x20, 0); // get_local
emitByte(0x45); // i32.eqz
emitBranch(0x0d, elseBlock); // br_if
emitEnd(); // end of condition eval.
expr(1, 0); // emit 'then' code
emitBranch(0x0c, ifBlock); // br
emitEnd(); // end of 'then'code
match(":");
expr(1, 0); // emit 'else' code
emitEnd();
}
void if_branch () {
// create code all if stmts as follows:
// Block -- wraps entire if stmt, contains the 'else' code (if any)
// Block -- contains the 'then' code
// Block -- contains the condition evaluation
// ...code to evaluate the condition, with br_if's as required
// ...flow thru. or br_if 0x00 to execute 'then' clause
// end
// ...'then' clause code
// br 0x01 -- exit the outer if stmt block
// end
// ...'else' clause code
// end
int ifBlock = emitBlock(0x40); // Block encloses 'if' with 0 results
int elseBlock = emitBlock(0x40); // Block encloses 'then' with 0 results
emitBlock(0x40); // Block encloses 'conditional' with 0 results
match("if");
match("(");
expr(0, 0);
match(")");
emitByte(0x45); // i32.eqz
emitBranch(0x0d, elseBlock); // br_if
emitEnd(); // end of condition eval.
line(); // emit 'then' code
emitBranch(0x0c, ifBlock); // br
emitEnd(); // end of 'then'code
if (try_match("else"))
line(); // emit 'else' code
emitEnd();
}
void while_loop () {
// Block -- wraps entire while/do stmt
// Loop -- contains the conditional/body for while loop or body/conditional for do loop. while loop illustrated below
// Block
// ...code to evaluate the conditional, with br_if's as required
// ...flow thru. for "true" condition or br_if 0x01 to exit the while
// End
// ... body code
// br to loop
// End
// End
int whileBlock = emitBlock(0x40);
int loopBlock = emitLoop (0x40);
bool do_while = try_match("do");
if (do_while)
line();
emitBlock(0x40); // block enclosing the conditional
match("while");
match("(");
expr(0, 0);
match(")");
emitByte(0x45); // i32.eqz
emitBranch(0x0d, whileBlock); // br_if
emitEnd(); // end of condition eval.
if (do_while)
match(";");
else
line();
emitBranch(0x0c, loopBlock); // br back to beginning of loop
emitEnd(); // end of loopBlock
emitEnd(); // end of whileBlock
}
void decl (int kind);
//See decl() implementation
int decl_module = 1;
int decl_local = 2;
int decl_param = 3;
int return_to;
void line () {
bool ret;
int stackDepth = 0;
if (see("if"))
if_branch();
else if (see("while") || see("do"))
while_loop();
else if (see("int") || see("char") || see("bool") || see("void"))
decl(decl_local);
else if (try_match("{")) {
while (waiting_for("}"))
line();
match("}");
} else {
ret = try_match("return");
if (waiting_for(";"))
stackDepth = expr(0, 0); // set starting stack-depth to 0
if (ret) {
emitBranch(0x0c, return_to);
} else {
// non-zero stackDepth without a return. Need to pop it. Caused by i++ or fn-call with discarded ret-value
if (stackDepth > 0) {
emitByte(0x1a); // drop. Pop the unneeded value off the stack
// printf("Stack non-zero, pop required %i\n", stackDepth);
}
}
match(";");
}
}
void function (char* ident, bool returnsValue) {
//Header
char* length = emitLength(); // the length will be fixed up below
emitByte(1); // no. of local entries - just one as all locals are type i32
emitByte(3); // no. of locals of type i32. We only ever use 3x locals
emitByte(0x7f); // i32 type
return_to = emitBlock(returnsValue ? 0x7f : 0x40); // either 0x7f (i32 return) or 0x40 (void return)
//Prologue: - update the frame
int fp =4;
int temp = 0;
emitConst(temp); // save old value in temp location
emitConst(fp); // get the fp
emiti32load(0);
emiti32store(0);
emitConst(fp); // update the fp
emitConst(fp);
emiti32load(0);
emitByte(0x41); // i32.const
char* frameSize = emitLength(); // fix up the actual size later
emitByte(0x6b); // i32.sub
emiti32store(0);
emitConst(fp); // save old fp in 1st frame location
emiti32load(0);
emitConst(temp);
emiti32load(0);
emiti32store(0);
int i = 0;
while (i < param_no) {
emitConst(fp); // save parameters in the frame
emiti32load(0); // get the fp
emit2Byte(0x20, i); // get_local
emiti32store(4 + (4*i)); // and save it, using the offset feature at last
i++;
}
emitConst(fp); // 'cache' the bp value to speed up para, local var access
emiti32load(0);
emit2Byte(0x21, 2); // set_local
line();
emitEnd(); // where any return statements jump to
//Epilogue:
emitConst(fp); // update the fp
emit2Byte(0x20, 2); // get the old value of fp using the cached fp
emiti32load(0); // offset 0, where old fp is saved
emiti32store(0); // fp is now updated; easy.
emitByte(0x0b); // function terminator
// Now calculate & fix the frame size. The frame comprises: <old fp> *<paras> *<locals>
// local_no already = <no-paras> + <no-locals> -- bad naming....
emitNumberFixup(frameSize, 4*(local_no+1));
emitLengthFixup(length);
}
void decl (int kind) {
//A C declaration comes in three forms:
// - Local decls, which end in a semicolon and can have an initializer.
// - Parameter decls, which do not and cannot.
// - Module decls, which end in a semicolon unless there is a function body.
bool fn = false;
bool returnsValue = false;
bool fn_impl = false;
int local;
if (see("const")) // the stdio function declarations need const type definitions to avoid cl compiler warnings
next();
returnsValue = !see("void");
next(); // skip over the type declaration - int, void, etc.
while (try_match("*"))
returnsValue = true; // void* does return a value
//Owned (freed) by the symbol table
char* ident = strdup(buffer);
next();
//Functions
if (try_match("(")) {
// it's a function
if (kind == decl_module)
new_scope();
//Params
if (waiting_for(")")) do {
decl(decl_param);
} while (try_match(","));
match(")");
new_fn(ident, returnsValue, param_no, see("{")); // this captures all we need - returnType, no-params, body
fn = true;
//Body
if (see("{")) {
require(kind == decl_module, "a function implementation is illegal here\n");
fn_impl = true;
function(ident, returnsValue);
}
//Add it to the symbol table
} else {
if (kind == decl_local) {
local = new_local(ident);
} else {
if (kind == decl_module)
new_global(ident);
else
new_param(ident);
// kind == decl_module ? new_global(ident) : new_param(ident);
}
}
//Initialization
if (see("="))
require(!fn && kind != decl_param,
fn ? "cannot initialize a function\n" : "cannot initialize a parameter\n");
if (kind == decl_module) {
if (try_match("=")) {
if (token == token_int) {
emit4ByteMemory(intResult);
}
else
error("expected a constant expression, found '%s'\n");
next();
//Static data defaults to zero if no initializer
} else if (!fn) {
emit4ByteMemory(0);
}
// it's a variable declaration within a function...
} else if (try_match("=")) {
// replicate code from factor() for loading the local's address. This could be simplified slightly by using the i32.store's offset field
emit2Byte(0x20, 2); // get_local - 'cached' fp
emitConst(4*(offsets[local]+1)); // position 0 is the old-fp
emitByte(0x6a); // i32.add - now have the address of the local
expr(0, 0);
emiti32store(0); // and save the result
}
if (!fn_impl && kind != decl_param && !feof(input))
match(";");
}
//==== wasm binary file format generation ====
void generateFunctionType(int no_paras, int returnType) {
emitByte(0x60); // form
emitByte(no_paras);
int i = 0;
while( i++<no_paras ) {
emitByte(0x7f);
}
emitByte(returnType);
if (returnType) {
emitByte(0x7f);
}
}
void generateTypeSection(int maxParams) {
// Type Section declares all function signatures that will be used in the module.
// For simplicity we're going to just create a list of signatures up to 5 paramaters with/without a return value
// entry meaning
// 0 void result, no paras
// 1 int result, no paras
// 2 void result, 1 para
// 3 int result. 1 para
// 4 void result, 2 para
// 5 int result, 2 para
// So index = returnsResult + 2 x no-paras
// format is: <id> <payload-len><count of entries> <func-type>*
// where <func-type> is: <form><para-count><para-type>*<return-count><return-type>
// For us, form = 0x60, para-type, return-type are always int32 = 0x7f (if present)
emitByte(0x01); // Section Type
char* length = emitLength();
emitByte(2 + (2*maxParams)); // calculate the number of entries
int i = 0;
while( i<=maxParams ) {
generateFunctionType(i, 0);
generateFunctionType(i, 1);
i++;
}
emitLengthFixup(length);
}
void generateFunctionSection() {
emitByte(0x03); // Function Section
char* length = emitLength();
emitByte(bodyCount-1); // remember bodyCount is deliberately off by one
int i = 0;
int xCheck = 0;
while (i < global_no) { // functions are put in the global table
if (is_fn[i]>0) {
emitByte(fn_sig[i]);
xCheck++;
}
i++;
}
if (bodyCount-1 != xCheck)
//printf("function cross-checks don't match: %i vs %i\n", bodyCount-1, xCheck);
puts("function cross-checks don't match\n");
emitLengthFixup(length);
}
void emitString(char* s) {
emitByte(strlen(s));
while (getChar(s) != 0) {
emitByte(getChar(s++));
}
}
void generateImportEntry(char* name, int signature) {
emitString("env");
emitString(name);
emitByte(0x00); // external kind = function
emitByte(signature);
}
void generateImportSection() { // Work even when there are 0 entries
// this call also updates the is_fn[] indicies for the symbol table entries for imported functions.
emitByte(0x02); // Imports Section
char* length = emitLength();
char* noEntries = emitLength();
int entries = 0;
int i = 0;
while (i < global_no) {
if (is_fn[i] < 0) { // it's a fn, with no body defined
is_fn[i] = -(entries+1); // update the function index; it's -ve, and offset by one...
generateImportEntry(globals[i], fn_sig[i]);
entries++;
}
i++;
}
functionOffset = entries;
emitNumberFixup(noEntries, entries);
emitLengthFixup(length);
}
void generateExportEntry(char* name, int kind, int index) {
emitString(name);
emitByte(kind);
emitByte(index);
}
void generateExportsSection() {
emitByte(0x07); // Exports Section
char* length = emitLength();
char* noEntries = emitLength();
generateExportEntry("memory", 0x02, 0x00);
int entries = 1;
int i = 0;
while (i < global_no) {
if (is_fn[i] > 0) { // it's a fn, with a body defined
generateExportEntry(globals[i], 0x00, is_fn[i]-1+functionOffset); // smell - this calc is done twice
entries++;
}
i++;
}
emitNumberFixup(noEntries, entries);
emitLengthFixup(length);
}
void generateDataSection() {
emitByte(11); // Data Section
char* length = emitLength();
emitByte(1); // just 1 data segment
emitByte(0); // the linear memory index, = 0
emitConst(0); // offset of 0
emitByte(0x0b); // terminate with End
int payloadLength = getGlobalAddress();
emit5ByteNumber(payloadLength); // size of data in bytes
char* p = memory;
while (payloadLength) {
emitByte(getChar(p++));
payloadLength--;
}
emitLengthFixup(length);
}
// binary file output
void writeStream(char* ptr, int length, char* header) {
int count = 0;
while (count++<length) { // output the bytes that's been generated...
fputc(getChar(ptr++), output); // write it out to the file
}
}
void program () {
errors = 0;
bytecode = createEmitStream(100000); // start with this - should be big enough
char* count_of_bodies = emitByte(0); // come back & fix this value after having generated code for all the functions. Assume <127 max.
while (!feof(input))
decl(decl_module);
int byteCodeLength = stream_length();
writeChar(count_of_bodies, bodyCount-1); // Overwrite the earlier no. remember bodyCount is off by 1
headerCode = createEmitStream(50000); // create another stream for the header info.
// Generate the header
putstring("0061736d"); // magic
putstring("01000000"); // version
// Generate Section: type
generateTypeSection(4); // up to just 2x parameters to begin with - this is still 5x entries
//Generate Section: Imports
generateImportSection();
doCallFixups(); // update the bytecode with correct call offset. Must be called after generateImportSection()
// Generate Section: Function
generateFunctionSection();
// Generate Section: Table
putstring("048480808000"); // type, length
putstring("01700000"); // count, anyfunc-type, resizable limits
// Generate Section: Memory
putstring("058380808000"); // type, length
putstring("010010"); // count=1, memory_type = resizable limits. Flags=0, so only initial length present = 1 = 64kbytes; 10 = 16 * 64K
// Generate Section: Global
putstring("068180808000"); // type, length
putstring("00"); // count = 0
// Generate Section: Export
generateExportsSection();
// Generate Section: Code
emitByte(0x0a); // Section type = code
emit5ByteNumber(byteCodeLength); // the length of the entire code section
// Write out the wasm file:
writeStream(headerCode, stream_length(), "Header");
writeStream(bytecode, byteCodeLength, "Bytecode");
headerCode = createEmitStream(50000); // create a new stream just for the final Data section
generateDataSection();
writeStream(headerCode, stream_length(), "Data");
}
int main (int argc, char** argv) {
//--argc; ++argv;
//if (argc > 0 && **argv == '-' && (*argv)[1] == 's') { src = 1; --argc; ++argv; }
//if (argc > 0 && **argv == '-' && (*argv)[1] == 'd') { debug = 1; --argc; ++argv; }
//if (argc < 1) { printf("usage: c4 [-s] [-d] file ...\n"); return -1; }
char* ipname;
if (argc == 2) {
ipname = argv[1];
//puts("Usage: cc <Input file>\n");
//return 1;
} else
ipname = "cc.c";
//output = fopen(argv[1], "w");
output = fopen("program.wasm", "wb"); // keep it simple to begin with. Must open with 'b' for binary, otherwise it adds \r to each \n
lex_init(ipname, 256);
sym_init(800);
init_codegen(3000); // one entry for every call - should be enough
createMemory(20000); // should be enough
program();
return errors != 0;
} |
the_stack_data/1245822.c | #include "stdio.h"
int main(void)
{
// string literals are implictly null terminated
char null_terminated[22] = "I am null terminated!";
char not_null_terminated[14] = {'n','o','t',' ','t','e','r','m','i','n','a','t','e','d'};
printf("Printing null terminated string:\n");
printf(null_terminated);
printf("\nPrinting string with no null-termination:\n");
printf(not_null_terminated);
return 0;
} |
the_stack_data/87638504.c | #include <stdio.h>
/**
* sizeOf 运算符
*
* char的长度表示1
* 其余的类型都是它的倍数
* 演示结果:
*
* sizeOf(char) = 1
* sizeOf(short) = 2
* sizeOf(int) = 4
* sizeOf(long) = 8
*
*/
int main(int argc, char const *argv[])
{
printf("sizeOf(char) = %u\n", (unsigned) sizeof(char));
printf("sizeOf(short) = %u\n", (unsigned) sizeof(short));
printf("sizeOf(int) = %u\n", (unsigned) sizeof(int));
printf("sizeOf(long) = %u\n", (unsigned) sizeof(long));
return 0;
}
|
the_stack_data/1164047.c | #include<stdio.h>
#include<math.h>
int main(){
int n,m,i;
m=0;
double y;
scanf("%d",&n);
if (n==2)
printf("3");
else{
int x=n;
while (m==0){
x=x+2;
i=3;
m=1;
y=sqrt(x)+1;
while (i<y){
if(x%i==0)
m=0;
i=i+2;
}
}
printf("%d",x);
return 0;}
} |
the_stack_data/6387774.c | #include <stdio.h>
#include <string.h>
void mysort (int *x, int N);
int main(){
// input
int N; scanf("%d", &N);
int i, j, k, L[N];
for (i = 0; i < N; ++i){
scanf("%d", &L[i]);
}
// compute
mysort(L, N);
int cnt = 0;
for (i = 0; i < N; ++i){
for (j = 0; j < i; ++j){
for (k = 0; k < j; ++k){
if (L[i]!=L[j] && L[j]!=L[k] && L[k]+L[j] > L[i]){
cnt++;
}
}
}
}
// output
printf("%d\n", cnt);
return 0;
}
void mysort (int *x, int N) {
int i, j;
int tmp = 0;
// compute
for (i = 0; i < N; ++i) {
for (j = i; j < N; ++j) {
if (x[i] > x[j]) {
tmp = x[i];
x[i] = x[j];
x[j] = tmp;
}
}
}
}
|
the_stack_data/867908.c | /* { dg-do compile } */
/* { dg-options "-Os -m8bit-idiv" } */
extern void abort (void);
void
test (unsigned int x, unsigned int y, unsigned int q, unsigned int r)
{
if ((x / y) != q || (x % y) != r)
abort ();
}
/* { dg-final { scan-assembler-not "divb" } } */
/* { dg-final { scan-assembler-times "divl" 1 } } */
|
the_stack_data/159515242.c | /*
Copyright (c) 2015, Plume Design Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the Plume Design Inc. 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 Plume Design Inc. 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.
*/
/* Frame (42 bytes) */
static const unsigned char pkt134[42] = {
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x05, /* ........ */
0x1b, 0xd1, 0xa5, 0x7b, 0x08, 0x06, 0x00, 0x01, /* ...{.... */
0x08, 0x00, 0x06, 0x04, 0x00, 0x01, 0x00, 0x05, /* ........ */
0x1b, 0xd1, 0xa5, 0x7b, 0x0a, 0x01, 0x00, 0x2b, /* ...{...+ */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x01, /* ........ */
0x00, 0x0c /* .. */
};
/* Frame (60 bytes) */
static const unsigned char pkt135[60] = {
0x00, 0x05, 0x1b, 0xd1, 0xa5, 0x7b, 0x60, 0xb4, /* .....{`. */
0xf7, 0xf0, 0x35, 0x7e, 0x08, 0x06, 0x00, 0x01, /* ..5~.... */
0x08, 0x00, 0x06, 0x04, 0x00, 0x02, 0x60, 0xb4, /* ......`. */
0xf7, 0xf0, 0x35, 0x7e, 0x0a, 0x01, 0x00, 0x0c, /* ..5~.... */
0x00, 0x05, 0x1b, 0xd1, 0xa5, 0x7b, 0x0a, 0x01, /* .....{.. */
0x00, 0x2b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* .+...... */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* ........ */
0x00, 0x00, 0x00, 0x00 /* .... */
};
/* Generated with sudo arping -U -P 192.168.40.111 */
/* Frame (60 bytes) */
static const unsigned char pkt42[60] = {
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0xe0, /* ........ */
0x4c, 0x20, 0x9f, 0x85, 0x08, 0x06, 0x00, 0x01, /* L ...... */
0x08, 0x00, 0x06, 0x04, 0x00, 0x02, 0x00, 0xe0, /* ........ */
0x4c, 0x20, 0x9f, 0x85, 0xc0, 0xa8, 0x28, 0x6f, /* L ....(o */
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xa8, /* ........ */
0x28, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* (o...... */
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* ........ */
0x00, 0x00, 0x00, 0x00 /* .... */
};
|
the_stack_data/48575381.c | // SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2018, Linaro Limited
*/
#include <ctype.h>
int __builtin_isdigit(int c)
{
if (c >= '0' && c <= '9')
return 1;
return 0;
}
|
the_stack_data/90765082.c | /**
This function allocates an array and reallocates it as necessary using a fixed increment.
The increment DELTA can be tuned to balance efficiency against wasted memory.
**/
#include <stdio.h>
#include <stdlib.h>
#define DELTA 100
int *readints(void) {
int *array;
int size;
int count;
int value;
// Get the initial array, large enough to hold DELTA values;
size = DELTA;
array = malloc((size+1)*sizeof(int)); // Note size+1 instead of size to allow room for NULL character.
if(array == NULL)
return NULL;
// Get values from the standard input
count = 0;
while(scanf("%d", &value) == 1) {
count += 1;
if(count > size) {
size += DELTA;
array = realloc(array, (size+1)*sizeof(int));
if(array == NULL)
return NULL;
}
array[count] = value;
}
// Resize the array to the exact size, then store the count and return the array.
// This never makes the array bigger and so should never fail. (check it anyway!)
if(count < size) {
array = realloc(array, (count+1)*sizeof(int));
if(array == NULL)
return NULL;
}
array[0] = count;
return array;
} |
the_stack_data/225937.c | #include<stdio.h>
#include<string.h>
struct people
{
long long num;
char name[20];
};
int main()
{
int n,t,i,j;
char bian[20];
struct people b[100];
scanf("%d",&n);
for(i=1;i<=n;i++)
{
scanf("%s %lld",b[i].name,&b[i].num);
}
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i;j++)
{
if(b[j].num<b[j+1].num)
{
t=b[j].num;
b[j].num=b[j+1].num;
b[j+1].num=t;
strcpy(bian,b[j].name);
strcpy(b[j].name,b[j+1].name);
strcpy(b[j+1].name,bian);
}
if(b[j].num==b[j+1].num)
{
int bi=strcmp(b[j].name,b[j+1].name);
if(bi>0)
{
strcpy(bian,b[j].name);
strcpy(b[j].name,b[j+1].name);
strcpy(b[j+1].name,bian);
}
}
}
}
for(i=1;i<=n;i++)
{
printf("%s %lld\n",b[i].name,b[i].num);
}
return 0;
}
|
the_stack_data/104152.c | #include <stdio.h> //this is the library for input and output functions and macros
/*Most important thing to keep in mind if, while and for are runs the code inside {}, if () is true*/
/*Main is the most important function, that all C codes must have*/
/*It can take arguements and can return a value*/
/*Program starts inside the main function*/
int main()
{
int var = 1; //variable needs initial value or use do - while statement
/*while is used for loop, code inside the while work while () is true*/
while (var != 0) //while the var is not equal to 0 run the following code
{
printf("Press: 0 out, 1 print Name, 2 print Age, otherwise Height\n");
scanf("%d", &var); //Scanf is used to get input from keyboard, keep in mind & operator
if (var == 0)
printf("Loop is broken\n"); //Since only one line code follows if no need for {}
else if (var == 1)
{
printf("Halil\n");
}
else if (var == 2)
printf("29\n");
else
{
printf("1.80\n");
}
}
/*Another type is infinite loop, break can be used to get out of the loop*/
while (1) //run in infinite loop
{
printf("Guess the Number");
scanf("%d", &var);
if (var > 5)
printf("Lower\n");
else if (var < 5)
printf("Higher\n");
else
{
printf("Correct\n");
break;
}
}
/*do-while runs first then checks the while*/
int down_counter = 20;
do
{
printf("Down Counter is %d\n", down_counter);
down_counter--; //down_counter = down_counter - 1
} while (down_counter % 10 != 0);
/*Note that initially while statement is false, regular while statement wouldn't enter {}*/
/*if-else statements can be built with only if statements*/
/*But if - else if - else statements goes to correct place in one step*/
while (1)
{
printf("Guess the Number");
scanf("%d", &var);
if (var > 10)
{
printf("Higher than 10\n");
}
if (var > 20) //After first step this if is checked
{
printf("Higher than 20\n");
}
if (var == 30) //Then this if checked
{
printf("Correct\n");
break;
}
else //This else only connected to if(var == 30)
{
printf("Wrong !!!\n");
}
}
/*Since if else while work in boolean algebra (&& and), (|| or) and (! not) can be used */
int var1, var2;
while (1)
{
printf("Enter var1 and var2: ");
scanf("%d%d", &var1, &var2);
if ((var1 == 1) && (var2 == 1))
{
printf("Both one\n");
}
if (!var1)
{
printf("Var1 is zero\n");
}
if ((var1 == 0) || (var2 == 0))
{
printf("At least one of them one\n");
}
}
/*Last code will run infinitel, since no out command is given*/
/*This is one of the most possible logical error*/
getch();
return 0;
}
|
the_stack_data/192329734.c | extern int nondet_int(void);
extern char __VERIFIER_nondet_char();
unsigned int possiblyLargeValue(void);
extern void error_method(void);
int main() {
int x = nondet_int();
int y = x + __VERIFIER_nondet_char();
if (possiblyLargeValue()) {
x++;
} else {
y++;
}
if (x > y) {
error_method();
}
if (x < y) {
if (x > 0) {
y++;
}
}
if (x > y) {
if (x == 0) {
y++;
}
}
}
|
the_stack_data/48574009.c | #include <stdio.h>
void star(int);
int main()
{
int n;
printf("Enter order : ");
scanf("%d",&n);
star(n);
}
void star(int n)
{
int i,j;
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i+n*2;j++)
printf(" ");
for(j=1;j<=i;j++)
printf(" *");
printf("\n");
}
for(i=n;i>=1;i--)
{
for(j=1;j<=n-i;j++)
printf(" ");
for(j=1;j<=i+n*2;j++)
printf(" *");
printf("\n");
}
for(i=1;i<=n;i++)
{
for(j=1;j<=n-i;j++)
printf(" ");
for(j=1;j<=i+n*2;j++)
printf(" *");
printf("\n");
}
for(i=n;i>=1;i--)
{
for(j=1;j<=n-i+n*2;j++)
printf(" ");
for(j=1;j<=i;j++)
printf(" *");
printf("\n");
}
}
|
the_stack_data/123614.c | #include <stdio.h>
#include <stdlib.h>
int main()
{
int *mp;
int *ap;
mp = (int*)malloc(100 * sizeof(int));
if (mp == NULL){
printf("out of memory\n");
exit(1);
}
printf("%10d %p\n", *mp, mp);
ap = (int*)calloc(100, sizeof(int));
if (ap == NULL){
printf("out of memory\n");
exit(1);
}
printf("%10d %p\n", *ap, ap);
free(mp);
free(ap);
system("pause");
return 0;
}
|
the_stack_data/117327933.c | #include <stdio.h>
#include <stdlib.h>
int main()
{
int test;
scanf("%d",&test);
while(test > 0)
{
int n;
int count = 0;
scanf("%d",&n);
double arr[n];
for(int i = 0;i < n;i++)
{
scanf("%lf",&arr[i]);
}
for(int i = 0;i < n;i++)
{
for(int j = i + 1;j < n;j++)
{
if(arr[i] >= arr[j]/2.0 && arr[j] >= arr[i]/2.0)
{
count ++;
}
}
}
printf("%d\n",count);
test --;
}
return 0;
}
|
the_stack_data/231393342.c | // Test if CSPGO instrumentation and use pass are invoked.
//
// Ensure Pass PGOInstrumentationGenPass is invoked.
// RUN: %clang_cc1 -O2 -fprofile-instrument=csllvm -fprofile-instrument-path=default.profraw %s -fdebug-pass-manager -emit-llvm -o - 2>&1 | FileCheck %s -check-prefix=CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN
// CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN: Running pass: PGOInstrumentationGenCreateVar on
// CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN: Running pass: PGOInstrumentationGen on
//
// RUN: rm -rf %t && mkdir %t
// RUN: llvm-profdata merge -o %t/noncs.profdata %S/Inputs/pgotestir.proftext
//
// Ensure Pass PGOInstrumentationUsePass and PGOInstrumentationGenPass are invoked.
// RUN: %clang_cc1 -O2 -fprofile-instrument-use-path=%t/noncs.profdata -fprofile-instrument=csllvm -fprofile-instrument-path=default.profraw %s -fdebug-pass-manager -emit-llvm -o - 2>&1 | FileCheck %s -check-prefix=CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN2
// CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN2: Running pass: PGOInstrumentationUse
// CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN2: Running pass: PGOInstrumentationGenCreateVar on
// CHECK-CSPGOGENPASS-INVOKED-INSTR-GEN2: Running pass: PGOInstrumentationGen on
// Ensure Pass PGOInstrumentationUsePass is invoked only once.
// RUN: %clang_cc1 -O2 -fprofile-instrument-use-path=%t/noncs.profdata %s -fdebug-pass-manager -emit-llvm -o - 2>&1 | FileCheck %s -check-prefix=CHECK-PGOUSEPASS-INVOKED-USE
// CHECK-PGOUSEPASS-INVOKED-USE: Running pass: PGOInstrumentationUse
// CHECK-PGOUSEPASS-INVOKED-USE-NOT: Running pass: PGOInstrumentationGenCreateVar
// CHECK-PGOUSEPASS-INVOKED-USE-NOT: Running pass: PGOInstrumentationUse
//
// Ensure Pass PGOInstrumentationUsePass is invoked twice.
// RUN: llvm-profdata merge -o %t/cs.profdata %S/Inputs/pgotestir_cs.proftext
// RUN: %clang_cc1 -O2 -fprofile-instrument-use-path=%t/cs.profdata %s -fdebug-pass-manager -emit-llvm -o - 2>&1 | FileCheck %s -check-prefix=CHECK-PGOUSEPASS-INVOKED-USE2
// CHECK-PGOUSEPASS-INVOKED-USE2: Running pass: PGOInstrumentationUse
// CHECK-PGOUSEPASS-INVOKED-USE2: Running pass: PGOInstrumentationUse
|
the_stack_data/67131.c | // https://www.hackerrank.com/challenges/quicksort1/problem
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
void partition(int ar_size, int * ar)
{
int ar2[ar_size];
int p = ar[0];
int j = 0;
int k = ar_size - 1;
for (int i = 1; i < ar_size; i++) {
if (ar[i] < p) {
printf("%d ", ar[i]);
ar2[j++] = ar[i];
}
else
ar2[k--] = ar[i];
}
// insert p
ar2[j] = p;
for (; j < ar_size; j++) {
printf("%d ", ar2[j]);
}
printf("\n");
}
int main(void)
{
int _ar_size;
scanf("%d", &_ar_size);
int _ar[_ar_size], _ar_i;
for(_ar_i = 0; _ar_i < _ar_size; _ar_i++) {
scanf("%d", &_ar[_ar_i]);
}
partition(_ar_size, _ar);
return 0;
}
|
the_stack_data/40677.c |
#include <stdio.h>
void scilab_rt_contour_d2i2i2d0d0d0s0_(int in00, int in01, double matrixin0[in00][in01],
int in10, int in11, int matrixin1[in10][in11],
int in20, int in21, int matrixin2[in20][in21],
double scalarin0,
double scalarin1,
double scalarin2,
char* scalarin3)
{
int i;
int j;
double val0 = 0;
int val1 = 0;
int val2 = 0;
for (i = 0; i < in00; ++i) {
for (j = 0; j < in01; ++j) {
val0 += matrixin0[i][j];
}
}
printf("%f", val0);
for (i = 0; i < in10; ++i) {
for (j = 0; j < in11; ++j) {
val1 += matrixin1[i][j];
}
}
printf("%d", val1);
for (i = 0; i < in20; ++i) {
for (j = 0; j < in21; ++j) {
val2 += matrixin2[i][j];
}
}
printf("%d", val2);
printf("%f", scalarin0);
printf("%f", scalarin1);
printf("%f", scalarin2);
printf("%s", scalarin3);
}
|
the_stack_data/308194.c | #include <spawn.h>
int posix_spawnattr_init(posix_spawnattr_t *attr)
{
*attr = (posix_spawnattr_t){ 0 };
return 0;
}
|
the_stack_data/1217872.c | /* bcmp
This function is in the public domain. */
/*
@deftypefn Supplemental int bcmp (char *@var{x}, char *@var{y}, int @var{count})
Compares the first @var{count} bytes of two areas of memory. Returns
zero if they are the same, nonzero otherwise. Returns zero if
@var{count} is zero. A nonzero result only indicates a difference,
it does not indicate any sorting order (say, by having a positive
result mean @var{x} sorts before @var{y}).
@end deftypefn
*/
#include <stddef.h>
extern int memcmp(const void *, const void *, size_t);
int
bcmp (const void *s1, const void *s2, size_t count)
{
return memcmp (s1, s2, count);
}
|
the_stack_data/168892031.c | //static char rcsid[] = "$Id$";
//#include <string.h>
//#include "assert.h"
//#include "mem.h"
//#include "chan.h"
//#include "sem.h"
//#define T Chan_T
//struct T {
// const void *ptr;
// int *size;
// Sem_T send, recv, sync;
//};
//T Chan_new(void) {
// T c;
// NEW(c);
// Sem_init(&c->send, 1);
// Sem_init(&c->recv, 0);
// Sem_init(&c->sync, 0);
// return c;
//}
//int Chan_send(Chan_T c, const void *ptr, int size) {
// assert(c);
// assert(ptr);
// assert(size >= 0);
// Sem_wait(&c->send);
// c->ptr = ptr;
// c->size = &size;
// Sem_signal(&c->recv);
// Sem_wait(&c->sync);
// return size;
//}
//int Chan_receive(Chan_T c, void *ptr, int size) {
// int n;
// assert(c);
// assert(ptr);
// assert(size >= 0);
// Sem_wait(&c->recv);
// n = *c->size;
// if (size < n)
// n = size;
// *c->size = n;
// if (n > 0)
// memcpy(ptr, c->ptr, n);
// Sem_signal(&c->sync);
// Sem_signal(&c->send);
// return n;
//}
|
the_stack_data/87477.c | /* Copyright (c) 2010 - 2017, Nordic Semiconductor ASA 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 Nordic Semiconductor ASA 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 NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdarg.h>
#ifdef ENABLE_DEBUG_LOG_SUPPORT
#include "app_trace.h"
#include "nrf_log.h"
void app_trace_init(void)
{
(void)NRF_LOG_INIT();
}
void app_trace_dump(uint8_t * p_buffer, uint32_t len)
{
app_trace_log("\r\n");
for (uint32_t index = 0; index < len; index++)
{
app_trace_log("0x%02X ", p_buffer[index]);
}
app_trace_log("\r\n");
}
#endif // ENABLE_DEBUG_LOG_SUPPORT
/**
*@}
**/
|
the_stack_data/111077538.c | #include <stdio.h>
#include <stdlib.h>
void quickSort(int *numbers, int left, int right)
{
int pivot;
int l_hold = left;
int r_hold = right;
pivot = numbers[left];
while (left < right)
{
while ((numbers[right] >= pivot) && (left < right))
right--;
if (left != right)
{
numbers[left] = numbers[right];
left++;
}
while ((numbers[left] <= pivot) && (left < right))
left++;
if (left != right)
{
numbers[right] = numbers[left];
right--;
}
}
numbers[left] = pivot;
pivot = left;
left = l_hold;
right = r_hold;
if (left < pivot)
quickSort(numbers, left, pivot - 1);
if (right > pivot)
quickSort(numbers, pivot + 1, right);
}
int main()
{
int N;
scanf("%d", &N);
int* mass;
mass = (int *)malloc(N * sizeof(int));
for (int i = 0; i < N; i++)
scanf("%d", &mass[i]);
quickSort(mass, 0, N - 1);
for (int i = 0; i <N; i++)
printf("%d ", mass[i]);
printf("\n");
free(mass);
return 0;
}
|
the_stack_data/120984.c | #include <stdarg.h>
#include <stdio.h>
int fprintf(FILE* restrict f, const char* restrict fmt, ...) {
int ret;
va_list ap;
va_start(ap, fmt);
ret = vfprintf(f, fmt, ap);
va_end(ap);
return ret;
}
|
the_stack_data/661003.c | #include <stdio.h>
int i = 10;
int main() {
// Doesn't bring int i from sub.c
printf("int i in main.c %d", 10);
return 0;
} |
the_stack_data/165764394.c | /* ************************************************************************** */
/* */
/* :::::::: */
/* id_C_main.c :+: :+: */
/* +:+ */
/* By: hyilmaz <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/12/30 18:36:08 by hyilmaz #+# #+# */
/* Updated: 2021/01/07 21:36:34 by hyilmaz ######## odam.nl */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
FILE *fd;
int res;
fd = fopen("logs/results/i_C_return_val", "a+");
if (fd == NULL)
{
printf("Couldn't open file\n");
exit(1);
}
/*
** Printing positive numbers
*/
res = printf("%i\n", 999);//1
fprintf(fd, "%d\n", res);
res = printf("%7i\n", 999);//2
fprintf(fd, "%d\n", res);
res = printf("%.7i\n", 12345);//3
fprintf(fd, "%d\n", res);
res = printf("%.i\n", 12345);//4
fprintf(fd, "%d\n", res);
res = printf("%010.i\n", 12345);//5
fprintf(fd, "%d\n", res);
res = printf("%0.7i\n", 12345);//6
fprintf(fd, "%d\n", res);
res = printf("%7.5i\n", 123);//7
fprintf(fd, "%d\n", res);
res = printf("%7.2i\n", 123);//8
fprintf(fd, "%d\n", res);
res = printf("%4.3i\n", 12345);//9
fprintf(fd, "%d\n", res);
res = printf("%3.4i\n", 12345);//10
fprintf(fd, "%d\n", res);
res = printf("%6.7i\n", 12345);//11
fprintf(fd, "%d\n", res);
res = printf("%2.7i\n", 12345);//12
fprintf(fd, "%d\n", res);
res = printf("%-7.5i\n", 123);//13
fprintf(fd, "%d\n", res);
res = printf("%-7.2i\n", 123);//14
fprintf(fd, "%d\n", res);
res = printf("%-4.3i\n", 12345);//15
fprintf(fd, "%d\n", res);
res = printf("%-3.4i\n", 12345);//16
fprintf(fd, "%d\n", res);
res = printf("%-6.7i\n", 12345);//17
fprintf(fd, "%d\n", res);
res = printf("%-2.7i\n", 12345);//18
fprintf(fd, "%d\n", res);
res = printf("%07.5i\n", 123);//19
fprintf(fd, "%d\n", res);
res = printf("%07.2i\n", 123);//20
fprintf(fd, "%d\n", res);
res = printf("%04.3i\n", 12345);//21
fprintf(fd, "%d\n", res);
res = printf("%03.4i\n", 12345);//22
fprintf(fd, "%d\n", res);
res = printf("%06.7i\n", 12345);//23
fprintf(fd, "%d\n", res);
res = printf("%02.7i\n", 12345);//24
fprintf(fd, "%d\n", res);
/*
** Printing negative numbers
*/
res = printf("%7.5i\n", -123);//25
fprintf(fd, "%d\n", res);
res = printf("%7.2i\n", -123);//26
fprintf(fd, "%d\n", res);
res = printf("%4.3i\n", -12345);//27
fprintf(fd, "%d\n", res);
res = printf("%3.4i\n", -12345);//28
fprintf(fd, "%d\n", res);
res = printf("%7.9i\n", -12345);//29
fprintf(fd, "%d\n", res);
res = printf("%2.9i\n", -12345);//30
fprintf(fd, "%d\n", res);
res = printf("%-7.5i\n", -123);//31
fprintf(fd, "%d\n", res);
res = printf("%-7.2i\n", -123);//32
fprintf(fd, "%d\n", res);
res = printf("%-4.3i\n", -12345);//33
fprintf(fd, "%d\n", res);
res = printf("%-3.4i\n", -12345);//34
fprintf(fd, "%d\n", res);
res = printf("%-7.9i\n", -12345);//35
fprintf(fd, "%d\n", res);
res = printf("%-2.9i\n", -12345);//36
fprintf(fd, "%d\n", res);
res = printf("%07.5i\n", -123);//37
fprintf(fd, "%d\n", res);
res = printf("%07.2i\n", -123);//38
fprintf(fd, "%d\n", res);
res = printf("%04.3i\n", -12345);//39
fprintf(fd, "%d\n", res);
res = printf("%03.4i\n", -12345);//40
fprintf(fd, "%d\n", res);
res = printf("%07.9i\n", -12345);//41
fprintf(fd, "%d\n", res);
res = printf("%02.9i\n", -12345);//42
fprintf(fd, "%d\n", res);
/*
** Printing with equal parameters with dash = 0
** The parameters are: field width, precision and number length.
** The number length includes the '-' sign.
** Thus -123 has length 4.
*/
res = printf("%7.7i\n", 123);//43
fprintf(fd, "%d\n", res);
res = printf("%2.2i\n", 123);//44
fprintf(fd, "%d\n", res);
res = printf("%4.3i\n", 1234);//45
fprintf(fd, "%d\n", res);
res = printf("%3.4i\n", 1234);//46
fprintf(fd, "%d\n", res);
res = printf("%2.2i\n", 12);//47
fprintf(fd, "%d\n", res);
res = printf("%7.7i\n", -123);//48
fprintf(fd, "%d\n", res);
res = printf("%2.2i\n", -123);//49
fprintf(fd, "%d\n", res);
res = printf("%5.3i\n", -1234);//50
fprintf(fd, "%d\n", res);
res = printf("%3.5i\n", -1234);//51
fprintf(fd, "%d\n", res);
res = printf("%3.3i\n", -12);//52
fprintf(fd, "%d\n", res);
res = printf("%-7.7i\n", 123);//53
fprintf(fd, "%d\n", res);
res = printf("%-2.2i\n", 123);//54
fprintf(fd, "%d\n", res);
res = printf("%-4.3i\n", 1234);//55
fprintf(fd, "%d\n", res);
res = printf("%-3.4i\n", 1234);//56
fprintf(fd, "%d\n", res);
res = printf("%-2.2i\n", 12);//57
fprintf(fd, "%d\n", res);
res = printf("%-7.7i\n", -123);//58
fprintf(fd, "%d\n", res);
res = printf("%-2.2i\n", -123);//59
fprintf(fd, "%d\n", res);
res = printf("%-5.3i\n", -1234);//60
fprintf(fd, "%d\n", res);
res = printf("%-3.5i\n", -1234);//61
fprintf(fd, "%d\n", res);
res = printf("%-3.3i\n", -12);//62
fprintf(fd, "%d\n", res);
res = printf("%07.7i\n", 123);//63
fprintf(fd, "%d\n", res);
res = printf("%02.2i\n", 123);//64
fprintf(fd, "%d\n", res);
res = printf("%04.3i\n", 1234);//65
fprintf(fd, "%d\n", res);
res = printf("%03.4i\n", 1234);//66
fprintf(fd, "%d\n", res);
res = printf("%02.2i\n", 12);//67
fprintf(fd, "%d\n", res);
res = printf("%07.7i\n", -123);//68
fprintf(fd, "%d\n", res);
res = printf("%02.2i\n", -123);//69
fprintf(fd, "%d\n", res);
res = printf("%05.3i\n", -1234);//70
fprintf(fd, "%d\n", res);
res = printf("%03.5i\n", -1234);//71
fprintf(fd, "%d\n", res);
res = printf("%03.3i\n", -12);//72
fprintf(fd, "%d\n", res);
/*
** Printing with 0 parameters
*/
res = printf("%0.5i\n", 123);//73
fprintf(fd, "%d\n", res);
res = printf("%7.0i\n", 123);//74
fprintf(fd, "%d\n", res);
res = printf("%0.3i\n", 12345);//75
fprintf(fd, "%d\n", res);
res = printf("%3.0i\n", 12345);//76
fprintf(fd, "%d\n", res);
res = printf("%0.5i\n", -123);//77
fprintf(fd, "%d\n", res);
res = printf("%7.0i\n", -123);//78
fprintf(fd, "%d\n", res);
res = printf("%0.3i\n", -12345);//79
fprintf(fd, "%d\n", res);
res = printf("%3.0i\n", -12345);//80
fprintf(fd, "%d\n", res);
res = printf("%6.0i\n", 0);//81
fprintf(fd, "%d\n", res);
res = printf("%6.i\n", 0);//82
fprintf(fd, "%d\n", res);
res = printf("%0.7i\n", 0);//83
fprintf(fd, "%d\n", res);
res = printf("%0.0i\n", 0);//84
fprintf(fd, "%d\n", res);
res = printf("%0.i\n", 0);//85
fprintf(fd, "%d\n", res);
res = printf("%-7.0i\n", 123);//86
fprintf(fd, "%d\n", res);
res = printf("%-3.0i\n", 12345);//87
fprintf(fd, "%d\n", res);
res = printf("%-7.0i\n", -123);//88
fprintf(fd, "%d\n", res);
res = printf("%-3.0i\n", -12345);//89
fprintf(fd, "%d\n", res);
res = printf("%-6.0i\n", 0);//90
fprintf(fd, "%d\n", res);
res = printf("%-6.i\n", 0);//91
fprintf(fd, "%d\n", res);
res = printf("%00.5i\n", 123);//92
fprintf(fd, "%d\n", res);
res = printf("%07.0i\n", 123);//93
fprintf(fd, "%d\n", res);
res = printf("%00.3i\n", 12345);//94
fprintf(fd, "%d\n", res);
res = printf("%03.0i\n", 12345);//95
fprintf(fd, "%d\n", res);
res = printf("%00.5i\n", -123);//96
fprintf(fd, "%d\n", res);
res = printf("%07.0i\n", -123);//97
fprintf(fd, "%d\n", res);
res = printf("%00.3i\n", -12345);//98
fprintf(fd, "%d\n", res);
res = printf("%03.0i\n", -12345);//99
fprintf(fd, "%d\n", res);
res = printf("%06.0i\n", 0);//100
fprintf(fd, "%d\n", res);
res = printf("%06.i\n", 0);//101
fprintf(fd, "%d\n", res);
res = printf("%00.7i\n", 0);//102
fprintf(fd, "%d\n", res);
res = printf("%00.0i\n", 0);//103
fprintf(fd, "%d\n", res);
res = printf("%00.i\n", 0);//104
fprintf(fd, "%d\n", res);
/*
** Print extreme values
*/
res = printf("%15.5i\n", 2147483647);//105
fprintf(fd, "%d\n", res);
res = printf("%15.15i\n", 2147483647);//106
fprintf(fd, "%d\n", res);
res = printf("%15.5i\n", -2147483647);//107
fprintf(fd, "%d\n", res);
res = printf("%15.15i\n", -2147483647);//108
fprintf(fd, "%d\n", res);
res = printf("%-15.5i\n", 2147483647);//109
fprintf(fd, "%d\n", res);
res = printf("%-15.15i\n", 2147483647);//110
fprintf(fd, "%d\n", res);
res = printf("%-15.5i\n", -2147483647);//111
fprintf(fd, "%d\n", res);
res = printf("%-15.15i\n", -2147483647);//112
fprintf(fd, "%d\n", res);
res = printf("%015.5i\n", 2147483647);//113
fprintf(fd, "%d\n", res);
res = printf("%015.15i\n", 2147483647);//114
fprintf(fd, "%d\n", res);
res = printf("%015.5i\n", -2147483647);//115
fprintf(fd, "%d\n", res);
res = printf("%015.15i\n", -2147483647);//116
fprintf(fd, "%d\n", res);
/*
** Printing with extra zeros
*/
res = printf("%i\n", 001);//117
fprintf(fd, "%d\n", res);
res = printf("%i\n", -001);//118
fprintf(fd, "%d\n", res);
res = printf("%15.5i\n", 001);//119
fprintf(fd, "%d\n", res);
res = printf("%15.15i\n", -001);//120
fprintf(fd, "%d\n", res);
res = printf("%-i\n", 001);//121
fprintf(fd, "%d\n", res);
res = printf("%-i\n", -001);//122
fprintf(fd, "%d\n", res);
res = printf("%-15.5i\n", 001);//123
fprintf(fd, "%d\n", res);
res = printf("%-15.15i\n", -001);//124
fprintf(fd, "%d\n", res);
res = printf("%0i\n", 001);//125
fprintf(fd, "%d\n", res);
res = printf("%0i\n", -001);//126
fprintf(fd, "%d\n", res);
res = printf("%015.5i\n", 001);//127
fprintf(fd, "%d\n", res);
res = printf("%015.15i\n", -001);//128
fprintf(fd, "%d\n", res);
/*
** Printing with '+'
*/
res = printf("%i\n", +123);//129
fprintf(fd, "%d\n", res);
res = printf("%i\n", +0);//130
fprintf(fd, "%d\n", res);
res = printf("%-i\n", +123);//131
fprintf(fd, "%d\n", res);
res = printf("%-i\n", +0);//132
fprintf(fd, "%d\n", res);
res = printf("%0i\n", +123);//133
fprintf(fd, "%d\n", res);
res = printf("%0i\n", +0);//134
fprintf(fd, "%d\n", res);
/*
** Printing with *
*/
res = printf("%*.5i\n", 7, 123);//135
fprintf(fd, "%d\n", res);
res = printf("%7.*i\n", 2, 123);//136
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", 4, 3, 12345);//137
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", -4, 3, 12345);//138
fprintf(fd, "%d\n", res);
res = printf("%-*.*i\n", -4, 3, 12345);//139
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", -8, 3, 12345);//140
fprintf(fd, "%d\n", res);
res = printf("%-*.*i\n", -8, 3, 12345);//141
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", -4, -3, 12345);//142
fprintf(fd, "%d\n", res);
res = printf("%-*.*i\n", -4, -3, 12345);//143
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", -8, -3, 12345);//144
fprintf(fd, "%d\n", res);
res = printf("%-*.*i\n", -8, -3, 12345);//145
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", -4, -10, 12345);//146
fprintf(fd, "%d\n", res);
res = printf("%-*.*i\n", -4, -10, 12345);//147
fprintf(fd, "%d\n", res);
res = printf("%*.*i\n", -8, -10, 12345);//148
fprintf(fd, "%d\n", res);
res = printf("%-*.*i\n", -8, -10, 12345);//149
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", -8, -10, 12345);//150
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", -8, -10, 12345);//151
fprintf(fd, "%d\n", res);
/*
** Printing with text
*/
res = printf("Hello i am %i years old and my length is %i cm\n", 22, 190);//152
fprintf(fd, "%d\n", res);
res = printf("Hello i am %10i years old and my length is %10i cm\n", 22, 190);//153
fprintf(fd, "%d\n", res);
res = printf("Hello i am %-10i years old and my length is %010i cm\n", 22, 190);//154
fprintf(fd, "%d\n", res);
res = printf("Hello i am %.10i years old and my length is %-.15i cm\n", 22, 190);//155
fprintf(fd, "%d\n", res);
res = printf("Hello i am %.i years old and my length is %-.i cm\n", 22, 190);//156
fprintf(fd, "%d\n", res);
res = printf("Hello i am %-20.10i years old and my length is %-10.20i cm\n", 22, 190);//157
fprintf(fd, "%d\n", res);
res = printf("Hello i am %20.10i years old and my length is %10.20i cm\n", 22, 190);//158
fprintf(fd, "%d\n", res);
/*
** Extra tests
*/
res = printf("%0*i\n", -7, -54);//159
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, 0);//160
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, 8);//161
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, -8);//162
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, 12);//163
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, -12);//164
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, 456);//165
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 2, -2, -456);//166
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, 0);//167
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, 8);//168
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, -8);//169
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, 12);//170
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, -12);//171
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, 456);//172
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 3, -2, -456);//173
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, 0);//174
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, 8);//175
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, -8);//176
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, 12);//177
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, -12);//178
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, 456);//179
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -2, -456);//180
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, 0);//181
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, 8);//182
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, -8);//183
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, 12);//184
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, -12);//185
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, 456);//186
fprintf(fd, "%d\n", res);
res = printf("%0*.*i\n", 4, -6, -456);//187
fprintf(fd, "%d\n", res);
res = printf("%i\n", 0);//188
fprintf(fd, "%d\n", res);
res = printf("%3i\n", 0);//189
fprintf(fd, "%d\n", res);
res = printf("%-3i\n", 0);//189
fprintf(fd, "%d\n", res);
return (0);
}
|
the_stack_data/62638040.c | #include <stdio.h>
#include <stdlib.h>
void heapify(int* v,int i, int n){
int l,r,maior;
maior = i;
while(i<n){
l = 2*i+1;
r = 2*i+2;
if(l<n && v[i]<v[l]){
maior = l;
}
if(r<n && v[maior]<v[r]){
maior = r;
}
if(maior == i)
break;
int aux = v[i];
v[i] = v[maior];
v[maior] = aux;
i = maior;
}
}
void make_heap(int* v,size_t n){
int i;
for(i=n/2;i>=0;i--){
heapify(v,i,n);
}
}
void imprime_k_maiores(int* v,size_t n,int k){
int i;
make_heap(v,n);
for(i=0;i<k;i++){
printf("%d\n",v[0]);
int aux = v[n-i-1];
v[n-i-1] = v[0];
v[0] = aux;
heapify(v,0,n-i-1);
}
}
int main(void){
int v[] = {4,1,3,2,16,9,10,14,8,7};
imprime_k_maiores(v,10,4);
return 0;
} |
the_stack_data/154828321.c | /*
* esercizio-2020-05-23-thread-string.c
*
* Created on: May 21, 2020
* Author: marco
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <errno.h>
#include <pthread.h>
// barriera per N threads realizzata con pthread_barrier_t
// vedere anche:
// https://github.com/marcotessarotto/esercizio-C-2020-05-20-barrier
// https://linux.die.net/man/3/pthread_barrier_init
// https://linux.die.net/man/3/pthread_barrier_wait
#define N 3
pthread_barrier_t thread_barrier;
int number_of_threads = N;
pthread_t threads[N];
int conta_vocali(char * content){
int counter=0;
char * p;
p=content;
for(int i=0;i<strlen(content);++i)
if(content[i]=='a' | content[i]=='e' | content[i]=='i' | content[i]=='o' | content[i]=='u' |
content[i]=='A' | content[i]=='E' | content[i]=='I' | content[i]=='O' | content[i]=='U' )
++counter;
return counter;
}
int conta_consonanti(char * content){
int counter=0;
for(int i=0;i<strlen(content);++i)
if(content[i]!='a' && content[i]!='e' && content[i]!='i' && content[i]!='o' && content[i]!='u' &&
content[i]!='A' && content[i]!='E' && content[i]!='I' && content[i]!='O' && content[i]!='U'
&& content[i]!=' ' && content[i]!='\n' && content[i]!='.'&& content[i]!=',' )
++counter;
return counter;
}
int conta_caratteri(char * content){
int counter=0;
char * p;
p=content;
for(int i=0;i<strlen(content);++i)
if( content[i]==' ' | content[i]=='\n' | content[i]==',' | content[i]=='.')
++counter;
return counter;
}
void * thread_function(void * arg) {
int x;
char * content = (char *) arg;
for(int i=0;i<number_of_threads;++i){
if((unsigned long int)pthread_self() == (unsigned long int)threads[i])
if(i==0){
x=conta_vocali(content);
printf("Tread [%d]: numero vocali contante: %d\n",i,x);
}else if(i==1){
x=conta_consonanti(content);
printf("Tread [%d]: numero consonanti contante: %d\n",i,x);
}else if(i==2){
x=conta_caratteri(content);
printf("Tread [%d]: numero altri caratteri contanti: %d\n",i,x);
}
}
printf("Aspetto...\n");
int s = pthread_barrier_wait(&thread_barrier);
printf("Arrivato!\n");
pthread_exit(x);
}
#define CHECK_ERR(a,msg) {if ((a) == -1) { perror((msg)); exit(EXIT_FAILURE); } }
#define CHECK_ERR2(a,msg) {if ((a) != 0) { perror((msg)); exit(EXIT_FAILURE); } }
int main() {
char * content = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Mattis rhoncus urna neque viverra justo nec ultrices. Pretium quam vulputate dignissim suspendisse in est ante. Vitae congue mauris rhoncus aenean. Blandit cursus risus at ultrices mi. Ut lectus arcu bibendum at varius vel pharetra vel. Etiam non quam lacus suspendisse faucibus interdum posuere. Eget sit amet tellus cras adipiscing enim eu turpis egestas. Lectus magna fringilla urna porttitor rhoncus dolor purus non. Sit amet consectetur adipiscing elit duis tristique sollicitudin nibh. Nec tincidunt praesent semper feugiat nibh. Sapien pellentesque habitant morbi tristique senectus et netus et malesuada.";
int s;
// https://linux.die.net/man/3/pthread_barrier_init
s = pthread_barrier_init(&thread_barrier, NULL, N);
CHECK_ERR(s,"pthread_barrier_init")
for (int i=0; i < number_of_threads; i++) {
s = pthread_create(&threads[i], NULL, thread_function, content);
CHECK_ERR2(s,"pthread_create")
}
int res;
int vocali;
int consonanti;
int caratteri;
for (int i=0; i < number_of_threads; i++) {
if(i==0){
s = pthread_join(threads[i], &res);
vocali=res;
CHECK_ERR2(s,"pthread_join");
}
if(i==1){
s = pthread_join(threads[i], &res);
consonanti=res;
CHECK_ERR2(s,"pthread_join");
}
if(i==2){
s = pthread_join(threads[i], &res);
caratteri=res;
CHECK_ERR2(s,"pthread_join");
}
}
printf("Stampo ciò che ho ricevuto: vocali = %d, consonanti= %d, caratteri= %d",vocali,consonanti,caratteri);
// https://linux.die.net/man/3/pthread_barrier_init
s = pthread_barrier_destroy(&thread_barrier);
CHECK_ERR(s,"pthread_barrier_destroy")
printf("bye\n");
return 0;
}
|
the_stack_data/242330958.c | #include <stdio.h>
int main()
{
int a, b, c, mn;
char resp;
do
{
printf("\nentre com a: ");
scanf("%d", &a);
printf("\nentre com b: ");
scanf("%d", &b);
printf("\nentre com c: ");
scanf("%d", &c);
if(a > mn)
mn = a;
if(b > a)
mn = b;
if(c > b)
mn = c;
if(c > a)
mn = c;
printf("deseja continuar (s/n): ");
scanf(" %c", &resp);
}
while(resp=='s');
printf("o maior número é %d", mn);
} |
the_stack_data/243892187.c | /*
* C library for rolling ball background removal.
*
* 02/16
*
* Hazen
*
* Compilation instructions:
*
* Linux:
* gcc -fPIC -g -c -Wall rolling_ball_lib.c
* gcc -shared -Wl,-soname,rolling_ball_lib.so.1 -o rolling_ball_lib.so.1.0.1 rolling_ball_lib.o -lc
*
* Windows (mingw):
* gcc -c rolling_ball_lib.c
* gcc -shared -o rolling_ball_lib.dll rolling_ball_lib.o
*/
/* Include */
#include <stdlib.h>
#include <stdio.h>
/* Structures */
typedef struct{
int ball_size;
double *ball;
} ballData;
/* Function Declarations */
void cleanup(ballData *);
void estimateBg(ballData *, double *, double *, int, int);
ballData* init(double *, int);
/*
* cleanup()
*
* ball_data - Pointer to a ballData structure.
*/
void cleanup(ballData *ball_data)
{
free(ball_data->ball);
free(ball_data);
}
/*
* estimateBg()
*
* ball_data - Pointer to a ballData structure.
* image - The image to estimate the background of.
* background - Pre-initialized storage for the background estimate.
* image_x - The size of the image in x (slow dimension).
* image_y - The size of the image in y (fast dimension).
*/
void estimateBg(ballData *ball_data, double *image, double *background, int image_x, int image_y)
{
int bb,cx,cy,i,j,k,l;
double min,cur;
bb = (ball_data->ball_size - 1)/2;
for(i=0;i<image_x;i++){
for(j=0;j<image_y;j++){
min = image[i*image_y+j];
for(k=0;k<ball_data->ball_size;k++){
cx = i + k - bb;
if (cx < 0) continue;
if (cx >= image_x) continue;
for(l=0;l<ball_data->ball_size;l++){
cy = j + l - bb;
if (cy < 0) continue;
if (cy >= image_y) continue;
cur = image[cx*image_y+cy] - ball_data->ball[k*ball_data->ball_size+l];
if (cur < min){
min = cur;
}
}
}
background[i*image_y+j] = min;
}
}
}
/*
* init()
*
* py_ball - The python ball array (square).
* py_ball_size - The size of py_ball (should be an odd number).
*/
ballData *init(double *py_ball, int py_ball_size)
{
int i;
ballData *ball_data;
ball_data = (ballData *)malloc(sizeof(ballData));
ball_data->ball_size = py_ball_size;
ball_data->ball = (double *)malloc(sizeof(double) * ball_data->ball_size * ball_data->ball_size);
for (i=0;i<(ball_data->ball_size * ball_data->ball_size);i++){
ball_data->ball[i] = py_ball[i];
}
return ball_data;
}
|
the_stack_data/159515309.c | /*
* Created by gt on 11/8/2021 - 15:15.
* Copyright (c) 2021 GTXC. All rights reserved.
*
*
* user defined data type like struct
*
*/
#include <stdio.h>
union mixed {
char c;
float f;
int i;
};
int main() {
union mixed x = {.i = 17};
union mixed *y;
y = &x;
y->c = 'g';
x.c = 'c';
x.i = 1;
x.f = 2.3f;
printf("char: %c\n", x.c);
printf("int: %i\n", x.i);
printf("float: %f\n", x.f);
printf("sizeof x: %lu\n", sizeof x);
return 0;
} |
the_stack_data/140766228.c | /****************************************************************
The author of this software is David M. Gay.
Copyright (C) 2002 by Lucent Technologies
All Rights Reserved
Permission to use, copy, modify, and distribute this software and
its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of Lucent or any of its entities
not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.
LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
****************************************************************/
#include <stdio.h>
int
main(void)
{
union { long double d; unsigned int bits[4]; } u, w;
switch(sizeof(long double)) {
case 16:
w.bits[0] = w.bits[3] = 0;
w.d = 1.;
u.d = 3.;
w.d = w.d / u.d;
if (w.bits[0] && w.bits[3])
printf("cp x.ou0 x.out; cp xL.ou0 xL.out;"
" cp Q.ou1 Q.out; cp pftestQ.out pftest.out\n");
else
printf("cp x.ou0 x.out; cp xL.ou0 xL.out;"
" cp Q.ou0 Q.out; cp pftestx.out pftest.out\n");
break;
case 10:
case 12:
printf("cp x.ou1 x.out; cp xL.ou1 xL.out; cp Q.ou0 Q.out;"
" cp pftestx.out pftest.out\n");
break;
default:
printf("cp x.ou0 x.out; cp xL.ou0 xL.out; cp Q.ou0 Q.out;"
" cp pftestx.out pftest.out\n");
}
return 0;
}
|
the_stack_data/906274.c | /*
***************************************************************************
* MediaTek Inc.
*
* All rights reserved. source code is an unpublished work and the
* use of a copyright notice does not imply otherwise. This source code
* contains confidential trade secret material of MediaTek. Any attemp
* or participation in deciphering, decoding, reverse engineering or in any
* way altering the source code is stricitly prohibited, unless the prior
* written consent of MediaTek, Inc. is obtained.
***************************************************************************
Module Name: whnat
woe_ser.c
*/
/*ser detect related file*/
#ifdef ERR_RECOVERY
#include <linux/kthread.h>
#include "woe.h"
#include "wed_def.h"
#define WED_THREAD_NAME "wed_task"
#define WED_THREAD_PERIOD 100
#define WED_MAX_ERR_CNT 3
#define WED_RECYCLE_DIFF(_period_time) (_period_time * 10)
#define WED_SER_RECOVERY_DEFAULT FALSE
/*
*
*/
static int wed_ser_check(struct wed_entry *wed)
{
struct wed_ser_ctrl *ser_ctrl = &wed->ser_ctrl;
if (ser_ctrl->wpdma_idle_cnt > WED_MAX_ERR_CNT &&
ser_ctrl->tx_dma_err_cnt > WED_MAX_ERR_CNT &&
ser_ctrl->wdma_err_cnt > WED_MAX_ERR_CNT) {
ser_ctrl->wpdma_ser_cnt++;
WHNAT_DBG(WHNAT_DBG_OFF, "%s(): wed_wpdma_tx_drv error !\n", __func__);
return TRUE;
}
if (ser_ctrl->tx_bm_err_cnt > WED_MAX_ERR_CNT) {
ser_ctrl->tx_bm_ser_cnt++;
WHNAT_DBG(WHNAT_DBG_OFF, "%s(): wed_tx_bm error !\n", __func__);
return TRUE;
}
return FALSE;
}
#ifdef WED_TX_SUPPORT
/*
*
*/
void wed_ser_err_cnt_wpdma_update(
struct wed_ser_ctrl *ser_ctrl,
struct wed_ser_state *new_state)
{
struct wed_ser_state *state = &ser_ctrl->state;
/*check WED_WPDMA_TX_DRV*/
if (state->wpdma_stat == 0 && new_state->wpdma_stat == 0) {
if ((state->wpdma_tx0_mib == new_state->wpdma_tx0_mib) &&
(state->wpdma_tx1_mib == new_state->wpdma_tx1_mib)) {
ser_ctrl->wpdma_idle_cnt++;
} else {
ser_ctrl->wpdma_idle_cnt = 0;
}
} else {
ser_ctrl->wpdma_idle_cnt = 0;
}
}
/*
*
*/
void wed_ser_err_cnt_txdma_update(
struct wed_ser_ctrl *ser_ctrl,
struct wed_ser_state *new_state)
{
struct wed_ser_state *state = &ser_ctrl->state;
/*check WED_TX_DMA*/
if ((state->tx_dma_stat == 0xF && new_state->tx_dma_stat == 0xF) &&
((state->tx0_mib == new_state->tx0_mib) &&
(state->tx1_mib == new_state->tx1_mib)))
ser_ctrl->tx_dma_err_cnt++;
else if ((state->tx_dma_stat == 0 && new_state->tx_dma_stat == 0) &&
((state->tx0_mib == new_state->tx0_mib) &&
(state->tx1_mib == new_state->tx1_mib)) &&
((new_state->tx0_cidx != new_state->tx0_didx) ||
(new_state->tx1_cidx != new_state->tx1_didx)))
ser_ctrl->tx_dma_err_cnt++;
else
ser_ctrl->tx_dma_err_cnt = 0;
}
#ifdef WED_HW_TX_SUPPORT
/*
*
*/
void wed_ser_err_cnt_wdma_update(
struct wed_ser_ctrl *ser_ctrl,
struct wed_ser_state *new_state)
{
struct wed_ser_state *state = &ser_ctrl->state;
/*check WED_WDMA_DRV*/
if ((state->wdma_stat == 0x8 && new_state->wdma_stat == 0x8) ||
(state->wdma_stat == 0x5 && new_state->wdma_stat == 0x5)) {
if ((state->wdma_rx0_mib == new_state->wdma_rx0_mib) &&
(state->wdma_rx1_mib == new_state->wdma_rx1_mib)) {
ser_ctrl->wdma_err_cnt++;
} else {
ser_ctrl->wdma_err_cnt = 0;
}
} else {
ser_ctrl->wdma_err_cnt = 0;
}
}
/*
*
*/
void wed_ser_err_cnt_bm_update(
struct wed_ser_ctrl *ser_ctrl,
struct wed_ser_state *new_state)
{
struct wed_ser_state *state = &ser_ctrl->state;
/*check TX_BM*/
#ifdef WED_WDMA_RECYCLE
unsigned int recy_diff = WED_RECYCLE_DIFF(ser_ctrl->period_time);
if (((new_state->wdma_rx0_recycle_mib - state->wdma_rx0_recycle_mib) <= recy_diff) &&
((new_state->wdma_rx1_recycle_mib - state->wdma_rx1_recycle_mib) <= recy_diff))
goto normal;
#else
if (state->wdma_stat != 0x9 || new_state->wdma_stat != 0x9)
goto normal;
if ((state->wdma_rx0_mib != new_state->wdma_rx0_mib) ||
(state->wdma_rx1_mib != new_state->wdma_rx1_mib))
goto normal;
#endif /*WED_WDMA_RECYCLE*/
if (new_state->bm_tx_stat != 0)
goto normal;
if ((state->txbm_to_wdma_mib != new_state->txbm_to_wdma_mib) ||
(state->txfree_to_bm_mib != new_state->txfree_to_bm_mib))
goto normal;
/*error ocured*/
ser_ctrl->tx_bm_err_cnt++;
return;
normal:
ser_ctrl->tx_bm_err_cnt = 0;
}
#endif /*WED_HW_TX_SUPPORT*/
#endif /*WED_TX_SUPPORT*/
/*
*
*/
static void wed_ser_error_cnt_update(
struct wed_entry *wed,
struct wed_ser_state *new_state)
{
struct wed_ser_ctrl *ser_ctrl = &wed->ser_ctrl;
struct wed_ser_state *state = &ser_ctrl->state;
spin_lock(&ser_ctrl->ser_lock);
#ifdef WED_TX_SUPPORT
wed_ser_err_cnt_wpdma_update(ser_ctrl, new_state);
wed_ser_err_cnt_txdma_update(ser_ctrl, new_state);
#ifdef WED_HW_TX_SUPPORT
wed_ser_err_cnt_wdma_update(ser_ctrl, new_state);
wed_ser_err_cnt_bm_update(ser_ctrl, new_state);
#endif /*WED_HW_TX_SUPPORT*/
#endif /*WED_TX_SUPPORT*/
/*update new value to ser ctrl*/
memcpy(state, new_state, sizeof(struct wed_ser_state));
spin_unlock(&ser_ctrl->ser_lock);
}
/*
*
*/
static void wed_ser_detect(struct wed_entry *wed)
{
struct wed_ser_state state;
memset(&state, 0, sizeof(state));
/*update status*/
whnat_hal_ser_update(wed, &state);
/*update error count*/
wed_ser_error_cnt_update(wed, &state);
/*check ser should trigger or not*/
if (wed_ser_check(wed) == TRUE) {
WHNAT_DBG(WHNAT_DBG_OFF, "%s(): wed_ser_detect!!!, wed->irq=%d\n", __func__, wed->irq);
if (wed->ser_ctrl.recovery == TRUE) {
whnat_hal_ser_trigger((struct whnat_entry *)wed->whnat);
} else {
wed_ser_dump(wed);
wed->ser_ctrl.period_time = 1000;
WHNAT_DBG(WHNAT_DBG_OFF, "%s(): not recovery ~, delay periodic check to 1 sec for debug!", __func__);
}
}
return ;
}
/*
*
*/
static int wed_ser_task(void *data)
{
struct wed_entry *wed = data;
struct wed_ser_ctrl *ser_ctrl = &wed->ser_ctrl;
while (!kthread_should_stop()) {
wed_ser_detect(wed);
msleep(ser_ctrl->period_time);
}
WHNAT_DBG(WHNAT_DBG_OFF, "%s(): wed_ser exist, wed->irq=%d!\n", __func__, wed->irq);
return 0;
}
/*
*
*/
void wed_ser_dump(struct wed_entry *wed)
{
struct wed_ser_ctrl *ser_ctrl = &wed->ser_ctrl;
struct wed_ser_state *state = &ser_ctrl->state;
WHNAT_DBG(WHNAT_DBG_OFF, "======wed ser status========\n");
WHNAT_DBG(WHNAT_DBG_OFF, "wpdma_tx_drv_ser_cnt\t:%d\n", ser_ctrl->wpdma_ser_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_ser_cnt\t:%d\n", ser_ctrl->wdma_ser_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_ser_cnt\t:%d\n", ser_ctrl->tx_dma_ser_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "bm_tx_ser_cnt\t\t:%d\n", ser_ctrl->tx_bm_ser_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "======current ser indicate========\n");
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_err_cnt\t:%d\n", ser_ctrl->tx_dma_err_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_err_cnt\t:%d\n", ser_ctrl->wdma_err_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "wpdma_tx_drv_idle_cnt\t:%d\n", ser_ctrl->wpdma_idle_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "bm_err_cnt\t\t:%d\n", ser_ctrl->tx_bm_err_cnt);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_state\t:%d\n", state->tx_dma_stat);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_tx0_mib\t:%d\n", state->tx0_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_tx0_cidx\t:%d\n", state->tx0_cidx);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_tx0_didx\t:%d\n", state->tx0_didx);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_tx1_mib\t:%d\n", state->tx1_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_tx1_cidx\t:%d\n", state->tx1_cidx);
WHNAT_DBG(WHNAT_DBG_OFF, "wed_tx_dma_tx1_didx\t:%d\n", state->tx1_didx);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_state\t:%d\n", state->wdma_stat);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_rx0_mib\t:%d\n", state->wdma_rx0_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_rx1_mib\t:%d\n", state->wdma_rx1_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_rx0_rc_mib\t:%d\n", state->wdma_rx0_recycle_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wdma_rx_drv_rx1_rc_mib\t:%d\n", state->wdma_rx1_recycle_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wpdma_tx_drv_state\t:%d\n", state->wpdma_stat);
WHNAT_DBG(WHNAT_DBG_OFF, "wpdma_tx_drv_tx0_mib\t:%d\n", state->wpdma_tx0_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "wpdma_tx_drv_tx0_mib\t:%d\n", state->wpdma_tx1_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "bm_tx_state\t\t:%d\n", state->bm_tx_stat);
WHNAT_DBG(WHNAT_DBG_OFF, "txfree_to_bm_mib\t:%d\n", state->txfree_to_bm_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "txbm_to_wdma_mib\t:%d\n", state->txbm_to_wdma_mib);
WHNAT_DBG(WHNAT_DBG_OFF, "txbm_to_wdma_diff\t:%d\n",
(state->txbm_to_wdma_mib - state->txfree_to_bm_mib));
}
/*
*
*/
int wed_ser_init(struct wed_entry *wed)
{
int ret = 0;
char name[32] = "";
struct wed_ser_ctrl *ser_ctrl = &wed->ser_ctrl;
struct whnat_entry *whnat = wed->whnat;
snprintf(name, sizeof(name), "%s%d", WED_THREAD_NAME, whnat->idx);
ser_ctrl->ser_task = kthread_create(wed_ser_task, wed, name);
if (IS_ERR(ser_ctrl->ser_task)) {
ser_ctrl->ser_task = NULL;
goto err;
}
ser_ctrl->tx_dma_err_cnt = 0;
ser_ctrl->tx_dma_ser_cnt = 0;
ser_ctrl->wdma_err_cnt = 0;
ser_ctrl->wdma_ser_cnt = 0;
ser_ctrl->wpdma_idle_cnt = 0;
ser_ctrl->wpdma_ser_cnt = 0;
ser_ctrl->tx_bm_err_cnt = 0;
ser_ctrl->tx_bm_ser_cnt = 0;
ser_ctrl->recovery = WED_SER_RECOVERY_DEFAULT;
ser_ctrl->period_time = WED_THREAD_PERIOD;
memset(&ser_ctrl->state, 0, sizeof(ser_ctrl->state));
spin_lock_init(&ser_ctrl->ser_lock);
wake_up_process(ser_ctrl->ser_task);
return 0;
err:
return ret;
}
/*
*
*/
void wed_ser_exit(struct wed_entry *wed)
{
struct wed_ser_ctrl *ser_ctrl = &wed->ser_ctrl;
kthread_stop(ser_ctrl->ser_task);
spin_lock_init(&ser_ctrl->ser_lock);
memset(&ser_ctrl->state, 0, sizeof(ser_ctrl->state));
}
#endif /*ERR_RECOVERY*/
|
the_stack_data/231393209.c | #include<stdio.h>
#include<math.h>
#define f(x)(exp(-x)- 3*log(x))
int main()
{
float a,b;
float x;
scanf("%f %f",&a,&b);
do
{
x = (a+b)/2;
if (f(a)*f(x)<0)
b = x;
else
a = x;
printf("\n %f",x);
} while (fabs(f(x))>0.000001);
return 0;
}
|
the_stack_data/117327878.c | #include <stdio.h>
double min(double a, double b);
int main(void)
{
double num1, num2;
scanf("%lf %lf", &num1, &num2);
printf("%lf\n", min(num1, num2));
return 0;
}
double min(double a, double b)
{
return a < b ? a : b;
} |
the_stack_data/725021.c | int main() {
int i = 0;
while(i<2) {
i++;
}
if (i != 2) {
ERROR: return 1;
}
else {
return 0;
}
}
|
the_stack_data/48574142.c | x(){int y[]={};}
|
the_stack_data/90764241.c | #include<stdio.h>
int main()
{
printf("Hello, World!\n");
return 0;
}
|
the_stack_data/104019.c | #ifndef IN_GENERATED_CCODE
#define IN_GENERATED_CCODE
#define U_DISABLE_RENAMING 1
#include "unicode/umachine.h"
#endif
U_CDECL_BEGIN
const struct {
double bogus;
uint8_t bytes[99344];
} icudt57l_ibm_33722_P12A_P12A_2004_U2_cnv={ 0.0, {
128,0,218,39,20,0,0,0,0,0,2,0,99,110,118,116,
6,2,0,0,57,1,0,0,32,67,111,112,121,114,105,103,
104,116,32,40,67,41,32,50,48,49,54,44,32,73,110,116,
101,114,110,97,116,105,111,110,97,108,32,66,117,115,105,110,
101,115,115,32,77,97,99,104,105,110,101,115,32,67,111,114,
112,111,114,97,116,105,111,110,32,97,110,100,32,111,116,104,
101,114,115,46,32,65,108,108,32,82,105,103,104,116,115,32,
82,101,115,101,114,118,101,100,46,32,0,0,0,0,0,0,
100,0,0,0,105,98,109,45,51,51,55,50,50,95,80,49,
50,65,95,80,49,50,65,45,50,48,48,52,95,85,50,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
186,131,0,0,0,2,1,3,244,254,0,0,2,0,1,0,
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,4,4,215,0,5,0,0,0,0,0,0,0,
32,20,0,0,24,141,0,0,108,171,0,0,8,236,111,1,
192,189,0,0,0,0,0,128,1,0,0,128,2,0,0,128,
3,0,0,128,4,0,0,128,5,0,0,128,6,0,0,128,
7,0,0,128,8,0,0,128,9,0,0,128,10,0,0,128,
11,0,0,128,12,0,0,128,13,0,0,128,14,0,0,128,
15,0,0,128,16,0,0,128,17,0,0,128,18,0,0,128,
19,0,0,128,20,0,0,128,21,0,0,128,22,0,0,128,
23,0,0,128,24,0,0,128,25,0,0,128,26,0,0,128,
27,0,0,128,28,0,0,128,29,0,0,128,30,0,0,128,
31,0,0,128,32,0,0,128,33,0,0,128,34,0,0,128,
35,0,0,128,36,0,0,128,37,0,0,128,38,0,0,128,
39,0,0,128,40,0,0,128,41,0,0,128,42,0,0,128,
43,0,0,128,44,0,0,128,45,0,0,128,46,0,0,128,
47,0,0,128,48,0,0,128,49,0,0,128,50,0,0,128,
51,0,0,128,52,0,0,128,53,0,0,128,54,0,0,128,
55,0,0,128,56,0,0,128,57,0,0,128,58,0,0,128,
59,0,0,128,60,0,0,128,61,0,0,128,62,0,0,128,
63,0,0,128,64,0,0,128,65,0,0,128,66,0,0,128,
67,0,0,128,68,0,0,128,69,0,0,128,70,0,0,128,
71,0,0,128,72,0,0,128,73,0,0,128,74,0,0,128,
75,0,0,128,76,0,0,128,77,0,0,128,78,0,0,128,
79,0,0,128,80,0,0,128,81,0,0,128,82,0,0,128,
83,0,0,128,84,0,0,128,85,0,0,128,86,0,0,128,
87,0,0,128,88,0,0,128,89,0,0,128,90,0,0,128,
91,0,0,128,254,255,96,128,93,0,0,128,94,0,0,128,
95,0,0,128,96,0,0,128,97,0,0,128,98,0,0,128,
99,0,0,128,100,0,0,128,101,0,0,128,102,0,0,128,
103,0,0,128,104,0,0,128,105,0,0,128,106,0,0,128,
107,0,0,128,108,0,0,128,109,0,0,128,110,0,0,128,
111,0,0,128,112,0,0,128,113,0,0,128,114,0,0,128,
115,0,0,128,116,0,0,128,117,0,0,128,118,0,0,128,
119,0,0,128,120,0,0,128,121,0,0,128,122,0,0,128,
123,0,0,128,124,0,0,128,125,0,0,128,254,255,96,128,
127,0,0,128,128,0,0,128,129,0,0,128,130,0,0,128,
131,0,0,128,132,0,0,128,133,0,0,128,134,0,0,128,
135,0,0,128,136,0,0,128,137,0,0,128,138,0,0,128,
139,0,0,128,140,0,0,128,141,0,0,128,0,0,0,2,
68,0,0,3,144,0,0,128,145,0,0,128,146,0,0,128,
147,0,0,128,148,0,0,128,149,0,0,128,150,0,0,128,
151,0,0,128,152,0,0,128,153,0,0,128,154,0,0,128,
155,0,0,128,156,0,0,128,157,0,0,128,158,0,0,128,
159,0,0,128,255,255,112,128,248,25,0,1,86,26,0,1,
180,26,0,1,18,27,0,1,112,27,0,1,206,27,0,1,
44,28,0,1,138,28,0,1,232,28,0,1,70,29,0,1,
164,29,0,1,2,30,0,1,96,30,0,1,190,30,0,1,
28,31,0,1,122,31,0,1,216,31,0,1,54,32,0,1,
148,32,0,1,242,32,0,1,80,33,0,1,174,33,0,1,
12,34,0,1,106,34,0,1,200,34,0,1,38,35,0,1,
132,35,0,1,226,35,0,1,64,36,0,1,158,36,0,1,
252,36,0,1,90,37,0,1,184,37,0,1,22,38,0,1,
116,38,0,1,210,38,0,1,48,39,0,1,142,39,0,1,
236,39,0,1,74,40,0,1,168,40,0,1,6,41,0,1,
100,41,0,1,194,41,0,1,32,42,0,1,126,42,0,1,
220,42,0,1,58,43,0,1,152,43,0,1,246,43,0,1,
84,44,0,1,178,44,0,1,16,45,0,1,110,45,0,1,
204,45,0,1,42,46,0,1,136,46,0,1,230,46,0,1,
68,47,0,1,162,47,0,1,0,48,0,1,94,48,0,1,
188,48,0,1,26,49,0,1,120,49,0,1,214,49,0,1,
52,50,0,1,146,50,0,1,240,50,0,1,78,51,0,1,
172,51,0,1,10,52,0,1,104,52,0,1,198,52,0,1,
36,53,0,1,130,53,0,1,224,53,0,1,62,54,0,1,
156,54,0,1,250,54,0,1,88,55,0,1,182,55,0,1,
20,56,0,1,114,56,0,1,208,56,0,1,46,57,0,1,
140,57,0,1,234,57,0,1,72,58,0,1,166,58,0,1,
4,59,0,1,98,59,0,1,192,59,0,1,30,60,0,1,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,0,0,64,128,1,0,64,128,
2,0,64,128,3,0,64,128,4,0,64,128,5,0,64,128,
6,0,64,128,7,0,64,128,8,0,64,128,9,0,64,128,
10,0,64,128,11,0,64,128,12,0,64,128,13,0,64,128,
14,0,64,128,15,0,64,128,16,0,64,128,17,0,64,128,
18,0,64,128,19,0,64,128,20,0,64,128,21,0,64,128,
22,0,64,128,23,0,64,128,24,0,64,128,25,0,64,128,
26,0,64,128,27,0,64,128,28,0,64,128,29,0,64,128,
30,0,64,128,31,0,64,128,32,0,64,128,33,0,64,128,
34,0,64,128,35,0,64,128,36,0,64,128,37,0,64,128,
38,0,64,128,39,0,64,128,40,0,64,128,41,0,64,128,
42,0,64,128,43,0,64,128,44,0,64,128,45,0,64,128,
46,0,64,128,47,0,64,128,48,0,64,128,49,0,64,128,
50,0,64,128,51,0,64,128,52,0,64,128,53,0,64,128,
54,0,64,128,55,0,64,128,56,0,64,128,57,0,64,128,
58,0,64,128,59,0,64,128,60,0,64,128,61,0,64,128,
62,0,64,128,63,0,64,128,64,0,64,128,65,0,64,128,
66,0,64,128,67,0,64,128,68,0,64,128,69,0,64,128,
70,0,64,128,71,0,64,128,72,0,64,128,73,0,64,128,
74,0,64,128,75,0,64,128,76,0,64,128,77,0,64,128,
78,0,64,128,79,0,64,128,80,0,64,128,81,0,64,128,
82,0,64,128,83,0,64,128,84,0,64,128,85,0,64,128,
86,0,64,128,87,0,64,128,88,0,64,128,89,0,64,128,
90,0,64,128,91,0,64,128,92,0,64,128,93,0,64,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,0,0,64,128,1,0,64,128,
2,0,64,128,3,0,64,128,4,0,64,128,5,0,64,128,
6,0,64,128,7,0,64,128,8,0,64,128,9,0,64,128,
10,0,64,128,11,0,64,128,12,0,64,128,13,0,64,128,
14,0,64,128,15,0,64,128,16,0,64,128,17,0,64,128,
18,0,64,128,19,0,64,128,20,0,64,128,21,0,64,128,
22,0,64,128,23,0,64,128,24,0,64,128,25,0,64,128,
26,0,64,128,27,0,64,128,28,0,64,128,29,0,64,128,
30,0,64,128,31,0,64,128,32,0,64,128,33,0,64,128,
34,0,64,128,35,0,64,128,36,0,64,128,37,0,64,128,
38,0,64,128,39,0,64,128,40,0,64,128,41,0,64,128,
42,0,64,128,43,0,64,128,44,0,64,128,45,0,64,128,
46,0,64,128,47,0,64,128,48,0,64,128,49,0,64,128,
50,0,64,128,51,0,64,128,52,0,64,128,53,0,64,128,
54,0,64,128,55,0,64,128,56,0,64,128,57,0,64,128,
58,0,64,128,59,0,64,128,60,0,64,128,61,0,64,128,
62,0,64,128,63,0,64,128,64,0,64,128,65,0,64,128,
66,0,64,128,67,0,64,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,0,0,0,4,0,0,0,1,
94,0,0,4,94,0,0,4,94,0,0,4,94,0,0,4,
94,0,0,4,94,0,0,4,94,0,0,4,94,0,0,4,
94,0,0,4,94,0,0,4,94,0,0,4,94,0,0,4,
94,0,0,4,94,0,0,1,188,0,0,1,26,1,0,1,
120,1,0,1,214,1,0,1,52,2,0,1,146,2,0,4,
146,2,0,1,240,2,0,1,78,3,0,1,172,3,0,1,
10,4,0,1,104,4,0,1,198,4,0,1,36,5,0,1,
130,5,0,1,224,5,0,1,62,6,0,1,156,6,0,1,
250,6,0,1,88,7,0,1,182,7,0,1,20,8,0,1,
114,8,0,1,208,8,0,1,46,9,0,1,140,9,0,1,
234,9,0,1,72,10,0,1,166,10,0,1,4,11,0,1,
98,11,0,1,192,11,0,1,30,12,0,1,124,12,0,1,
218,12,0,1,56,13,0,1,150,13,0,1,244,13,0,4,
244,13,0,1,82,14,0,1,176,14,0,1,14,15,0,4,
14,15,0,4,14,15,0,1,108,15,0,1,202,15,0,1,
40,16,0,1,134,16,0,1,228,16,0,1,66,17,0,1,
160,17,0,1,254,17,0,1,92,18,0,1,186,18,0,1,
24,19,0,1,118,19,0,1,212,19,0,1,50,20,0,1,
144,20,0,1,238,20,0,1,76,21,0,4,76,21,0,4,
76,21,0,4,76,21,0,4,76,21,0,4,76,21,0,4,
76,21,0,1,170,21,0,1,8,22,0,1,102,22,0,1,
196,22,0,1,34,23,0,1,128,23,0,1,222,23,0,1,
60,24,0,1,154,24,0,1,248,24,0,1,86,25,0,1,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128,
255,255,112,128,255,255,112,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
254,255,96,128,254,255,96,128,254,255,96,128,254,255,96,128,
255,255,112,128,97,255,98,255,99,255,100,255,101,255,102,255,
103,255,104,255,105,255,106,255,107,255,108,255,109,255,110,255,
111,255,112,255,113,255,114,255,115,255,116,255,117,255,118,255,
119,255,120,255,121,255,122,255,123,255,124,255,125,255,126,255,
127,255,128,255,129,255,130,255,131,255,132,255,133,255,134,255,
135,255,136,255,137,255,138,255,139,255,140,255,141,255,142,255,
143,255,144,255,145,255,146,255,147,255,148,255,149,255,150,255,
151,255,152,255,153,255,154,255,155,255,156,255,157,255,158,255,
159,255,162,0,163,0,172,0,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,40,78,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,225,78,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,0,79,254,255,3,79,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,57,79,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,86,79,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,138,79,254,255,254,255,254,255,
146,79,254,255,148,79,254,255,254,255,154,79,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,201,79,254,255,254,255,205,79,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,255,79,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
30,80,34,80,254,255,254,255,254,255,254,255,254,255,254,255,
64,80,254,255,66,80,254,255,70,80,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,112,80,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,148,80,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,216,80,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,74,81,254,255,254,255,
254,255,254,255,254,255,254,255,100,81,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,157,81,254,255,254,255,254,255,
254,255,254,255,254,255,190,81,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,21,82,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,156,82,254,255,254,255,
166,82,254,255,175,82,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,192,82,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,219,82,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
0,83,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,114,83,254,255,254,255,254,255,254,255,
254,255,254,255,147,83,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,178,83,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,221,83,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,156,84,254,255,254,255,254,255,254,255,
169,84,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,255,84,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,134,85,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,101,87,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,172,87,254,255,254,255,199,87,200,87,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,178,88,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,11,89,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,83,89,254,255,91,89,93,89,254,255,254,255,
254,255,99,89,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,164,89,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,186,89,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,86,91,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,192,91,254,255,254,255,254,255,
254,255,254,255,216,91,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,30,92,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,166,92,254,255,254,255,254,255,254,255,186,92,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,39,93,254,255,254,255,254,255,254,255,254,255,66,93,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,109,93,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,184,93,185,93,254,255,254,255,254,255,
208,93,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,33,95,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,52,95,254,255,254,255,254,255,254,255,254,255,
254,255,69,95,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,103,95,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,222,95,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,93,96,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,138,96,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,213,96,254,255,254,255,
254,255,222,96,254,255,254,255,242,96,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,17,97,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,48,97,254,255,254,255,254,255,55,97,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,152,97,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,19,98,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
166,98,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,245,99,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,96,100,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,157,100,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,206,100,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
0,102,254,255,254,255,9,102,254,255,254,255,254,255,21,102,
254,255,254,255,30,102,254,255,254,255,254,255,36,102,254,255,
254,255,254,255,254,255,254,255,46,102,254,255,49,102,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,87,102,254,255,89,102,254,255,254,255,254,255,254,255,
251,102,254,255,254,255,254,255,254,255,115,102,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,153,102,254,255,254,255,254,255,254,255,
160,102,254,255,254,255,254,255,178,102,254,255,254,255,191,102,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,250,102,254,255,
254,255,14,103,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
102,103,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,187,103,254,255,254,255,254,255,
192,103,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
82,104,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,68,104,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,200,104,254,255,207,104,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,104,105,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,152,105,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,226,105,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,48,106,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,70,106,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
115,106,126,106,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
228,106,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,214,107,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
63,108,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,92,108,254,255,254,255,111,108,254,255,254,255,254,255,
254,255,254,255,254,255,134,108,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
218,108,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,4,109,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,111,109,254,255,254,255,254,255,135,109,254,255,
254,255,254,255,150,109,254,255,254,255,254,255,172,109,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
207,109,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,252,109,254,255,254,255,
254,255,254,255,39,110,254,255,254,255,57,110,254,255,60,110,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,92,110,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,191,110,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,136,111,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,181,111,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,245,111,254,255,254,255,254,255,254,255,5,112,254,255,
7,112,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,133,112,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,171,112,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,4,113,254,255,
254,255,254,255,254,255,254,255,15,113,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,70,113,
71,113,254,255,254,255,254,255,254,255,254,255,254,255,92,113,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,193,113,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,113,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
177,114,254,255,190,114,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,36,115,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,119,115,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,189,115,254,255,254,255,
254,255,201,115,254,255,254,255,254,255,210,115,254,255,214,115,
254,255,254,255,254,255,227,115,254,255,254,255,254,255,254,255,
245,115,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,7,116,254,255,254,255,254,255,254,255,254,255,
38,116,254,255,41,116,42,116,254,255,254,255,254,255,46,116,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,98,116,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,137,116,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,159,116,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,47,117,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,111,117,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,155,118,156,118,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,166,118,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,70,119,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,33,120,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,78,120,254,255,254,255,254,255,254,255,254,255,254,255,
100,120,254,255,254,255,254,255,122,120,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,148,121,254,255,254,255,254,255,155,121,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,209,122,254,255,254,255,254,255,235,122,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,158,123,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
72,125,254,255,254,255,254,255,254,255,254,255,254,255,92,125,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,183,125,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,82,126,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
138,126,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,71,127,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,161,127,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,1,131,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,127,131,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,199,131,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
246,131,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
72,132,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,180,132,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,220,132,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,83,133,254,255,89,133,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,107,133,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,245,136,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,28,137,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,18,138,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,55,138,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,121,138,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,167,138,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,190,138,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,223,138,
254,255,254,255,254,255,254,255,246,138,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,83,139,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,240,140,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
18,141,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,207,142,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,103,144,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,39,145,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,215,145,254,255,218,145,222,145,228,145,
229,145,254,255,254,255,254,255,237,145,238,145,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,6,146,254,255,254,255,10,146,254,255,16,146,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,57,146,58,146,60,146,254,255,64,146,254,255,254,255,
254,255,254,255,254,255,254,255,78,146,254,255,81,146,254,255,
89,146,254,255,254,255,254,255,254,255,254,255,103,146,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,119,146,120,146,
254,255,254,255,254,255,254,255,254,255,136,146,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,167,146,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,208,146,211,146,213,146,215,146,254,255,217,146,254,255,
254,255,254,255,224,146,254,255,254,255,254,255,231,146,254,255,
254,255,254,255,254,255,249,146,251,146,255,146,254,255,2,147,
254,255,254,255,254,255,254,255,254,255,254,255,29,147,30,147,
254,255,33,147,254,255,37,147,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,72,147,254,255,254,255,254,255,
254,255,254,255,87,147,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,112,147,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,164,147,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
198,147,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,222,147,254,255,254,255,254,255,254,255,254,255,
254,255,248,147,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,49,148,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,69,148,72,148,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,157,150,
254,255,254,255,254,255,254,255,254,255,254,255,175,150,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,51,151,254,255,67,151,254,255,254,255,79,151,85,151,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,87,152,254,255,254,255,254,255,
254,255,101,152,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
39,153,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,78,154,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,220,154,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,117,155,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,143,155,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,177,155,254,255,254,255,
254,255,187,155,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,0,156,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,107,157,
112,157,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,25,158,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,112,33,113,33,114,33,115,33,116,33,117,33,
118,33,119,33,120,33,121,33,96,33,97,33,98,33,99,33,
100,33,101,33,102,33,103,33,104,33,105,33,7,255,2,255,
49,50,22,33,33,33,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
187,112,252,78,244,80,236,81,7,83,36,83,14,250,138,84,
89,87,15,250,16,250,158,88,254,255,236,91,245,92,83,93,
17,250,183,95,133,96,32,97,78,101,59,102,101,102,18,250,
41,249,1,104,19,250,20,250,107,106,226,106,248,109,242,109,
254,255,40,112,254,255,21,250,22,250,1,117,130,118,158,118,
23,250,254,255,48,121,24,250,25,250,26,250,27,250,231,122,
28,250,254,255,29,250,160,125,214,125,30,250,98,131,31,250,
176,133,32,250,33,250,7,136,254,255,34,250,127,139,244,140,
118,141,35,250,36,250,37,250,222,144,38,250,21,145,39,250,
40,250,146,149,220,249,41,250,59,151,77,151,81,151,254,255,
42,250,43,250,44,250,158,153,217,154,114,155,45,250,209,158,
254,255,254,255,254,255,254,255,254,255,254,255,172,227,173,227,
174,227,175,227,176,227,177,227,178,227,179,227,180,227,181,227,
182,227,183,227,184,227,185,227,186,227,187,227,188,227,189,227,
190,227,191,227,192,227,193,227,194,227,195,227,196,227,197,227,
198,227,199,227,200,227,201,227,202,227,203,227,204,227,205,227,
206,227,207,227,208,227,209,227,210,227,211,227,212,227,213,227,
214,227,215,227,216,227,217,227,218,227,219,227,220,227,221,227,
222,227,223,227,224,227,225,227,226,227,227,227,228,227,229,227,
230,227,231,227,232,227,233,227,234,227,235,227,236,227,237,227,
238,227,239,227,240,227,241,227,242,227,243,227,244,227,245,227,
246,227,247,227,248,227,249,227,250,227,251,227,252,227,253,227,
254,227,255,227,0,228,1,228,2,228,3,228,4,228,5,228,
6,228,7,228,8,228,9,228,10,228,11,228,12,228,13,228,
14,228,15,228,16,228,17,228,18,228,19,228,20,228,21,228,
22,228,23,228,24,228,25,228,26,228,27,228,28,228,29,228,
30,228,31,228,32,228,33,228,34,228,35,228,36,228,37,228,
38,228,39,228,40,228,41,228,42,228,43,228,44,228,45,228,
46,228,47,228,48,228,49,228,50,228,51,228,52,228,53,228,
54,228,55,228,56,228,57,228,58,228,59,228,60,228,61,228,
62,228,63,228,64,228,65,228,66,228,67,228,68,228,69,228,
70,228,71,228,72,228,73,228,74,228,75,228,76,228,77,228,
78,228,79,228,80,228,81,228,82,228,83,228,84,228,85,228,
86,228,87,228,88,228,89,228,90,228,91,228,92,228,93,228,
94,228,95,228,96,228,97,228,98,228,99,228,100,228,101,228,
102,228,103,228,104,228,105,228,106,228,107,228,108,228,109,228,
110,228,111,228,112,228,113,228,114,228,115,228,116,228,117,228,
118,228,119,228,120,228,121,228,122,228,123,228,124,228,125,228,
126,228,127,228,128,228,129,228,130,228,131,228,132,228,133,228,
134,228,135,228,136,228,137,228,138,228,139,228,140,228,141,228,
142,228,143,228,144,228,145,228,146,228,147,228,148,228,149,228,
150,228,151,228,152,228,153,228,154,228,155,228,156,228,157,228,
158,228,159,228,160,228,161,228,162,228,163,228,164,228,165,228,
166,228,167,228,168,228,169,228,170,228,171,228,172,228,173,228,
174,228,175,228,176,228,177,228,178,228,179,228,180,228,181,228,
182,228,183,228,184,228,185,228,186,228,187,228,188,228,189,228,
190,228,191,228,192,228,193,228,194,228,195,228,196,228,197,228,
198,228,199,228,200,228,201,228,202,228,203,228,204,228,205,228,
206,228,207,228,208,228,209,228,210,228,211,228,212,228,213,228,
214,228,215,228,216,228,217,228,218,228,219,228,220,228,221,228,
222,228,223,228,224,228,225,228,226,228,227,228,228,228,229,228,
230,228,231,228,232,228,233,228,234,228,235,228,236,228,237,228,
238,228,239,228,240,228,241,228,242,228,243,228,244,228,245,228,
246,228,247,228,248,228,249,228,250,228,251,228,252,228,253,228,
254,228,255,228,0,229,1,229,2,229,3,229,4,229,5,229,
6,229,7,229,8,229,9,229,10,229,11,229,12,229,13,229,
14,229,15,229,16,229,17,229,18,229,19,229,20,229,21,229,
22,229,23,229,24,229,25,229,26,229,27,229,28,229,29,229,
30,229,31,229,32,229,33,229,34,229,35,229,36,229,37,229,
38,229,39,229,40,229,41,229,42,229,43,229,44,229,45,229,
46,229,47,229,48,229,49,229,50,229,51,229,52,229,53,229,
54,229,55,229,56,229,57,229,58,229,59,229,60,229,61,229,
62,229,63,229,64,229,65,229,66,229,67,229,68,229,69,229,
70,229,71,229,72,229,73,229,74,229,75,229,76,229,77,229,
78,229,79,229,80,229,81,229,82,229,83,229,84,229,85,229,
86,229,87,229,88,229,89,229,90,229,91,229,92,229,93,229,
94,229,95,229,96,229,97,229,98,229,99,229,100,229,101,229,
102,229,103,229,104,229,105,229,106,229,107,229,108,229,109,229,
110,229,111,229,112,229,113,229,114,229,115,229,116,229,117,229,
118,229,119,229,120,229,121,229,122,229,123,229,124,229,125,229,
126,229,127,229,128,229,129,229,130,229,131,229,132,229,133,229,
134,229,135,229,136,229,137,229,138,229,139,229,140,229,141,229,
142,229,143,229,144,229,145,229,146,229,147,229,148,229,149,229,
150,229,151,229,152,229,153,229,154,229,155,229,156,229,157,229,
158,229,159,229,160,229,161,229,162,229,163,229,164,229,165,229,
166,229,167,229,168,229,169,229,170,229,171,229,172,229,173,229,
174,229,175,229,176,229,177,229,178,229,179,229,180,229,181,229,
182,229,183,229,184,229,185,229,186,229,187,229,188,229,189,229,
190,229,191,229,192,229,193,229,194,229,195,229,196,229,197,229,
198,229,199,229,200,229,201,229,202,229,203,229,204,229,205,229,
206,229,207,229,208,229,209,229,210,229,211,229,212,229,213,229,
214,229,215,229,216,229,217,229,218,229,219,229,220,229,221,229,
222,229,223,229,224,229,225,229,226,229,227,229,228,229,229,229,
230,229,231,229,232,229,233,229,234,229,235,229,236,229,237,229,
238,229,239,229,240,229,241,229,242,229,243,229,244,229,245,229,
246,229,247,229,248,229,249,229,250,229,251,229,252,229,253,229,
254,229,255,229,0,230,1,230,2,230,3,230,4,230,5,230,
6,230,7,230,8,230,9,230,10,230,11,230,12,230,13,230,
14,230,15,230,16,230,17,230,18,230,19,230,20,230,21,230,
22,230,23,230,24,230,25,230,26,230,27,230,28,230,29,230,
30,230,31,230,32,230,33,230,34,230,35,230,36,230,37,230,
38,230,39,230,40,230,41,230,42,230,43,230,44,230,45,230,
46,230,47,230,48,230,49,230,50,230,51,230,52,230,53,230,
54,230,55,230,56,230,57,230,58,230,59,230,60,230,61,230,
62,230,63,230,64,230,65,230,66,230,67,230,68,230,69,230,
70,230,71,230,72,230,73,230,74,230,75,230,76,230,77,230,
78,230,79,230,80,230,81,230,82,230,83,230,84,230,85,230,
86,230,87,230,88,230,89,230,90,230,91,230,92,230,93,230,
94,230,95,230,96,230,97,230,98,230,99,230,100,230,101,230,
102,230,103,230,104,230,105,230,106,230,107,230,108,230,109,230,
110,230,111,230,112,230,113,230,114,230,115,230,116,230,117,230,
118,230,119,230,120,230,121,230,122,230,123,230,124,230,125,230,
126,230,127,230,128,230,129,230,130,230,131,230,132,230,133,230,
134,230,135,230,136,230,137,230,138,230,139,230,140,230,141,230,
142,230,143,230,144,230,145,230,146,230,147,230,148,230,149,230,
150,230,151,230,152,230,153,230,154,230,155,230,156,230,157,230,
158,230,159,230,160,230,161,230,162,230,163,230,164,230,165,230,
166,230,167,230,168,230,169,230,170,230,171,230,172,230,173,230,
174,230,175,230,176,230,177,230,178,230,179,230,180,230,181,230,
182,230,183,230,184,230,185,230,186,230,187,230,188,230,189,230,
190,230,191,230,192,230,193,230,194,230,195,230,196,230,197,230,
198,230,199,230,200,230,201,230,202,230,203,230,204,230,205,230,
206,230,207,230,208,230,209,230,210,230,211,230,212,230,213,230,
214,230,215,230,216,230,217,230,218,230,219,230,220,230,221,230,
222,230,223,230,224,230,225,230,226,230,227,230,228,230,229,230,
230,230,231,230,232,230,233,230,234,230,235,230,236,230,237,230,
238,230,239,230,240,230,241,230,242,230,243,230,244,230,245,230,
246,230,247,230,248,230,249,230,250,230,251,230,252,230,253,230,
254,230,255,230,0,231,1,231,2,231,3,231,4,231,5,231,
6,231,7,231,8,231,9,231,10,231,11,231,12,231,13,231,
14,231,15,231,16,231,17,231,18,231,19,231,20,231,21,231,
22,231,23,231,24,231,25,231,26,231,27,231,28,231,29,231,
30,231,31,231,32,231,33,231,34,231,35,231,36,231,37,231,
38,231,39,231,40,231,41,231,42,231,43,231,44,231,45,231,
46,231,47,231,48,231,49,231,50,231,51,231,52,231,53,231,
54,231,55,231,56,231,57,231,58,231,59,231,60,231,61,231,
62,231,63,231,64,231,65,231,66,231,67,231,68,231,69,231,
70,231,71,231,72,231,73,231,74,231,75,231,76,231,77,231,
78,231,79,231,80,231,81,231,82,231,83,231,84,231,85,231,
86,231,87,231,0,48,1,48,2,48,12,255,14,255,251,48,
26,255,27,255,31,255,1,255,155,48,156,48,180,0,64,255,
168,0,62,255,227,255,63,255,253,48,254,48,157,48,158,48,
3,48,221,78,5,48,6,48,7,48,252,48,254,255,16,32,
15,255,60,255,254,255,254,255,92,255,38,32,37,32,24,32,
25,32,28,32,29,32,8,255,9,255,20,48,21,48,59,255,
61,255,91,255,93,255,8,48,9,48,10,48,11,48,12,48,
13,48,14,48,15,48,16,48,17,48,11,255,254,255,177,0,
215,0,247,0,29,255,96,34,28,255,30,255,102,34,103,34,
30,34,52,34,66,38,64,38,176,0,50,32,51,32,3,33,
229,255,4,255,224,255,225,255,5,255,3,255,6,255,10,255,
32,255,167,0,6,38,5,38,203,37,207,37,206,37,199,37,
198,37,161,37,160,37,179,37,178,37,189,37,188,37,59,32,
18,48,146,33,144,33,145,33,147,33,19,48,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,8,34,11,34,134,34,135,34,130,34,131,34,42,34,
41,34,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,39,34,40,34,226,255,210,33,212,33,0,34,3,34,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,32,34,165,34,18,35,2,34,7,34,
97,34,82,34,106,34,107,34,26,34,61,34,29,34,53,34,
43,34,44,34,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,43,33,48,32,111,38,109,38,106,38,32,32,33,32,
182,0,254,255,254,255,254,255,254,255,239,37,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,16,255,17,255,18,255,
19,255,20,255,21,255,22,255,23,255,24,255,25,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,33,255,34,255,
35,255,36,255,37,255,38,255,39,255,40,255,41,255,42,255,
43,255,44,255,45,255,46,255,47,255,48,255,49,255,50,255,
51,255,52,255,53,255,54,255,55,255,56,255,57,255,58,255,
254,255,254,255,254,255,254,255,254,255,254,255,65,255,66,255,
67,255,68,255,69,255,70,255,71,255,72,255,73,255,74,255,
75,255,76,255,77,255,78,255,79,255,80,255,81,255,82,255,
83,255,84,255,85,255,86,255,87,255,88,255,89,255,90,255,
254,255,254,255,254,255,254,255,65,48,66,48,67,48,68,48,
69,48,70,48,71,48,72,48,73,48,74,48,75,48,76,48,
77,48,78,48,79,48,80,48,81,48,82,48,83,48,84,48,
85,48,86,48,87,48,88,48,89,48,90,48,91,48,92,48,
93,48,94,48,95,48,96,48,97,48,98,48,99,48,100,48,
101,48,102,48,103,48,104,48,105,48,106,48,107,48,108,48,
109,48,110,48,111,48,112,48,113,48,114,48,115,48,116,48,
117,48,118,48,119,48,120,48,121,48,122,48,123,48,124,48,
125,48,126,48,127,48,128,48,129,48,130,48,131,48,132,48,
133,48,134,48,135,48,136,48,137,48,138,48,139,48,140,48,
141,48,142,48,143,48,144,48,145,48,146,48,147,48,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,161,48,162,48,163,48,164,48,165,48,166,48,
167,48,168,48,169,48,170,48,171,48,172,48,173,48,174,48,
175,48,176,48,177,48,178,48,179,48,180,48,181,48,182,48,
183,48,184,48,185,48,186,48,187,48,188,48,189,48,190,48,
191,48,192,48,193,48,194,48,195,48,196,48,197,48,198,48,
199,48,200,48,201,48,202,48,203,48,204,48,205,48,206,48,
207,48,208,48,209,48,210,48,211,48,212,48,213,48,214,48,
215,48,216,48,217,48,218,48,219,48,220,48,221,48,222,48,
223,48,224,48,225,48,226,48,227,48,228,48,229,48,230,48,
231,48,232,48,233,48,234,48,235,48,236,48,237,48,238,48,
239,48,240,48,241,48,242,48,243,48,244,48,245,48,246,48,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
145,3,146,3,147,3,148,3,149,3,150,3,151,3,152,3,
153,3,154,3,155,3,156,3,157,3,158,3,159,3,160,3,
161,3,163,3,164,3,165,3,166,3,167,3,168,3,169,3,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
177,3,178,3,179,3,180,3,181,3,182,3,183,3,184,3,
185,3,186,3,187,3,188,3,189,3,190,3,191,3,192,3,
193,3,195,3,196,3,197,3,198,3,199,3,200,3,201,3,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,16,4,17,4,
18,4,19,4,20,4,21,4,1,4,22,4,23,4,24,4,
25,4,26,4,27,4,28,4,29,4,30,4,31,4,32,4,
33,4,34,4,35,4,36,4,37,4,38,4,39,4,40,4,
41,4,42,4,43,4,44,4,45,4,46,4,47,4,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,48,4,49,4,
50,4,51,4,52,4,53,4,81,4,54,4,55,4,56,4,
57,4,58,4,59,4,60,4,61,4,62,4,63,4,64,4,
65,4,66,4,67,4,68,4,69,4,70,4,71,4,72,4,
73,4,74,4,75,4,76,4,77,4,78,4,79,4,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,0,37,2,37,12,37,16,37,
24,37,20,37,28,37,44,37,36,37,52,37,60,37,1,37,
3,37,15,37,19,37,27,37,23,37,35,37,51,37,43,37,
59,37,75,37,32,37,47,37,40,37,55,37,63,37,29,37,
48,37,37,37,56,37,66,37,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,156,78,22,85,3,90,63,150,
192,84,27,97,40,99,246,89,34,144,117,132,28,131,80,122,
170,96,225,99,37,110,237,101,102,132,166,130,245,155,147,104,
39,87,161,101,113,98,155,91,208,89,123,134,244,152,98,125,
190,125,142,155,22,98,159,124,183,136,137,91,181,94,9,99,
151,102,72,104,199,149,141,151,79,103,229,78,10,79,77,79,
157,79,73,80,242,86,55,89,212,89,1,90,9,92,223,96,
15,97,112,97,19,102,5,105,186,112,79,117,112,117,251,121,
173,125,239,125,195,128,14,132,99,136,2,139,85,144,122,144,
59,83,149,78,165,78,223,87,178,128,193,144,239,120,0,78,
241,88,162,110,56,144,50,122,40,131,139,130,47,156,65,81,
112,83,189,84,225,84,224,86,251,89,21,95,242,152,235,109,
228,128,45,133,98,150,112,150,160,150,251,151,11,84,243,83,
135,91,207,112,189,127,194,143,232,150,111,83,92,157,186,122,
17,78,147,120,252,129,38,110,24,86,4,85,29,107,26,133,
59,156,229,89,169,83,102,109,220,116,143,149,66,86,145,78,
75,144,242,150,79,131,12,153,225,83,182,85,48,91,113,95,
32,102,243,102,4,104,56,108,243,108,41,109,91,116,200,118,
78,122,52,152,241,130,91,136,96,138,237,146,178,109,171,117,
202,118,197,153,166,96,1,139,138,141,178,149,142,105,173,83,
134,81,18,87,48,88,68,89,180,91,246,94,40,96,169,99,
244,99,191,108,20,111,142,112,20,113,89,113,213,113,63,115,
1,126,118,130,209,130,151,133,96,144,91,146,27,157,105,88,
188,101,90,108,37,117,249,81,46,89,101,89,128,95,220,95,
188,98,250,101,42,106,39,107,180,107,139,115,193,127,86,137,
44,157,14,157,196,158,161,92,150,108,123,131,4,81,75,92,
182,97,198,129,118,104,97,114,89,78,250,79,120,83,105,96,
41,110,79,122,243,151,11,78,22,83,238,78,85,79,61,79,
161,79,115,79,160,82,239,83,9,86,15,89,193,90,182,91,
225,91,209,121,135,102,156,103,182,103,76,107,179,108,107,112,
194,115,141,121,190,121,60,122,135,123,177,130,219,130,4,131,
119,131,239,131,211,131,102,135,178,138,41,86,168,140,230,143,
78,144,30,151,138,134,196,79,232,92,17,98,89,114,59,117,
229,129,189,130,254,134,192,140,197,150,19,153,213,153,203,78,
26,79,227,137,222,86,74,88,202,88,251,94,235,95,42,96,
148,96,98,96,208,97,18,98,208,98,57,101,65,155,102,102,
176,104,119,109,112,112,76,117,134,118,117,125,165,130,249,135,
139,149,142,150,157,140,241,81,190,82,22,89,179,84,179,91,
22,93,104,97,130,105,175,109,141,120,203,132,87,136,114,138,
167,147,184,154,108,109,168,153,217,134,163,87,255,103,206,134,
14,146,131,82,135,86,4,84,211,94,225,98,185,100,60,104,
56,104,187,107,114,115,186,120,107,122,154,137,210,137,107,141,
3,143,237,144,163,149,148,150,105,151,102,91,179,92,125,105,
77,152,78,152,155,99,32,123,43,106,127,106,182,104,13,156,
95,111,114,82,157,85,112,96,236,98,59,109,7,110,209,110,
91,132,16,137,68,143,20,78,57,156,246,83,27,105,58,106,
132,151,42,104,92,81,195,122,178,132,220,145,140,147,91,86,
40,157,34,104,5,131,49,132,165,124,8,82,197,130,230,116,
126,78,131,79,160,81,210,91,10,82,216,82,231,82,251,93,
154,85,42,88,230,89,140,91,152,91,219,91,114,94,121,94,
163,96,31,97,99,97,190,97,219,99,98,101,209,103,83,104,
250,104,62,107,83,107,87,108,34,111,151,111,69,111,176,116,
24,117,227,118,11,119,255,122,161,123,33,124,233,125,54,127,
240,127,157,128,102,130,158,131,179,137,204,138,171,140,132,144,
81,148,147,149,145,149,162,149,101,150,211,151,40,153,24,130,
56,78,43,84,184,92,204,93,169,115,76,118,60,119,169,92,
235,127,11,141,193,150,17,152,84,152,88,152,1,79,14,79,
113,83,156,85,104,86,250,87,71,89,9,91,196,91,144,92,
12,94,126,94,204,95,238,99,58,103,215,101,226,101,31,103,
203,104,196,104,95,106,48,94,197,107,23,108,125,108,127,117,
72,121,99,91,0,122,0,125,189,95,143,137,24,138,180,140,
119,141,204,142,29,143,226,152,14,154,60,155,128,78,125,80,
0,81,147,89,156,91,47,98,128,98,236,100,58,107,160,114,
145,117,71,121,169,127,251,135,188,138,112,139,172,99,202,131,
160,151,9,84,3,84,171,85,84,104,88,106,112,138,39,120,
117,103,205,158,116,83,162,91,26,129,80,134,6,144,24,78,
69,78,199,78,17,79,202,83,56,84,174,91,19,95,37,96,
81,101,61,103,66,108,114,108,227,108,120,112,3,116,118,122,
174,122,8,123,26,125,254,124,102,125,231,101,91,114,187,83,
69,92,232,93,210,98,224,98,25,99,32,110,90,134,49,138,
221,141,248,146,1,111,166,121,90,155,168,78,171,78,172,78,
155,79,160,79,209,80,71,81,246,122,113,81,246,81,84,83,
33,83,127,83,235,83,172,85,131,88,225,92,55,95,74,95,
47,96,80,96,109,96,31,99,89,101,75,106,193,108,194,114,
237,114,239,119,248,128,5,129,8,130,78,133,247,144,225,147,
255,151,87,153,90,154,240,78,221,81,45,92,129,102,109,105,
64,92,242,102,117,105,137,115,80,104,129,124,197,80,228,82,
71,87,254,93,38,147,164,101,35,107,61,107,52,116,129,121,
189,121,75,123,202,125,185,130,204,131,127,136,95,137,57,139,
209,143,209,145,31,84,128,146,93,78,54,80,229,83,58,83,
215,114,150,115,233,119,230,130,175,142,198,153,200,153,210,153,
119,81,26,97,94,134,176,85,122,122,118,80,211,91,71,144,
133,150,50,78,219,106,231,145,81,92,72,92,152,99,159,122,
147,108,116,151,97,143,170,122,138,113,136,150,130,124,23,104,
112,126,81,104,108,147,242,82,27,84,171,133,19,138,164,127,
205,142,225,144,102,83,136,136,65,121,194,79,190,80,17,82,
68,81,83,85,45,87,234,115,139,87,81,89,98,95,132,95,
117,96,118,97,103,97,169,97,178,99,58,100,108,101,111,102,
66,104,19,110,102,117,61,122,251,124,76,125,153,125,75,126,
107,127,14,131,74,131,205,134,8,138,99,138,102,139,253,142,
26,152,143,157,184,130,206,143,232,155,135,82,31,98,131,100,
192,111,153,150,65,104,145,80,32,107,122,108,84,111,116,122,
80,125,64,136,35,138,8,103,246,78,57,80,38,80,101,80,
124,81,56,82,99,82,167,85,15,87,5,88,204,90,250,94,
178,97,248,97,243,98,114,99,28,105,41,106,125,114,172,114,
46,115,20,120,111,120,121,125,12,119,169,128,139,137,25,139,
226,140,210,142,99,144,117,147,122,150,85,152,19,154,120,158,
67,81,159,83,179,83,123,94,38,95,27,110,144,110,132,115,
254,115,67,125,55,130,0,138,250,138,80,150,78,78,11,80,
228,83,124,84,250,86,209,89,100,91,241,93,171,94,39,95,
56,98,69,101,175,103,86,110,208,114,202,124,180,136,161,128,
225,128,240,131,78,134,135,138,232,141,55,146,199,150,103,152,
19,159,148,78,146,78,13,79,72,83,73,84,62,84,47,90,
140,95,161,95,159,96,167,104,142,106,90,116,129,120,158,138,
164,138,119,139,144,145,94,78,201,155,164,78,124,79,175,79,
25,80,22,80,73,81,108,81,159,82,185,82,254,82,154,83,
227,83,17,84,14,84,137,85,81,87,162,87,125,89,84,91,
93,91,143,91,229,93,231,93,247,93,120,94,131,94,154,94,
183,94,24,95,82,96,76,97,151,98,216,98,167,99,59,101,
2,102,67,102,244,102,109,103,33,104,151,104,203,105,95,108,
42,109,105,109,47,110,157,110,50,117,135,118,108,120,63,122,
224,124,5,125,24,125,94,125,177,125,21,128,3,128,175,128,
177,128,84,129,143,129,42,130,82,131,76,136,97,136,27,139,
162,140,252,140,202,144,117,145,113,146,63,120,252,146,164,149,
77,150,5,152,153,153,216,154,59,157,91,82,171,82,247,83,
8,84,213,88,247,98,224,111,106,140,95,143,185,158,75,81,
59,82,74,84,253,86,64,122,119,145,96,157,210,158,68,115,
9,111,112,129,17,117,253,95,218,96,168,154,219,114,188,143,
100,107,3,152,202,78,240,86,100,87,190,88,90,90,104,96,
199,97,15,102,6,102,57,104,177,104,247,109,213,117,58,125,
110,130,66,155,155,78,80,79,201,83,6,85,111,93,230,93,
238,93,251,103,153,108,115,116,2,120,80,138,150,147,223,136,
80,87,167,94,43,99,181,80,172,80,141,81,0,103,201,84,
94,88,187,89,176,91,105,95,77,98,161,99,61,104,115,107,
8,110,125,112,199,145,128,114,21,120,38,120,109,121,142,101,
48,125,220,131,193,136,9,143,155,150,100,82,40,87,80,103,
106,127,161,140,180,81,66,87,42,150,58,88,138,105,180,128,
178,84,14,93,252,87,149,120,250,157,92,79,74,82,139,84,
62,100,40,102,20,103,245,103,132,122,86,123,34,125,47,147,
92,104,173,155,57,123,25,83,138,81,55,82,223,91,246,98,
174,100,230,100,45,103,186,107,169,133,209,150,144,118,214,155,
76,99,6,147,171,155,191,118,82,102,9,78,152,80,194,83,
113,92,232,96,146,100,99,101,95,104,230,113,202,115,35,117,
151,123,130,126,149,134,131,139,219,140,120,145,16,153,172,101,
171,102,139,107,213,78,212,78,58,79,127,79,58,82,248,83,
242,83,227,85,219,86,235,88,203,89,201,89,255,89,80,91,
77,92,2,94,43,94,215,95,29,96,7,99,47,101,92,91,
175,101,189,101,232,101,157,103,98,107,123,107,15,108,69,115,
73,121,193,121,248,124,25,125,43,125,162,128,2,129,243,129,
150,137,94,138,105,138,102,138,140,138,238,138,199,140,220,140,
204,150,252,152,111,107,139,78,60,79,141,79,80,81,87,91,
250,91,72,97,1,99,66,102,33,107,203,110,187,108,62,114,
189,116,212,117,193,120,58,121,12,128,51,128,234,129,148,132,
158,143,80,108,127,158,15,95,88,139,43,157,250,122,248,142,
141,91,235,150,3,78,241,83,247,87,49,89,201,90,164,91,
137,96,127,110,6,111,190,117,234,140,159,91,0,133,224,123,
114,80,244,103,157,130,97,92,74,133,30,126,14,130,153,81,
4,92,104,99,102,141,156,101,110,113,62,121,23,125,5,128,
29,139,202,142,110,144,199,134,170,144,31,80,250,82,58,92,
83,103,124,112,53,114,76,145,200,145,43,147,229,130,194,91,
49,95,249,96,59,78,214,83,136,91,75,98,49,103,138,107,
233,114,224,115,46,122,107,129,163,141,82,145,150,153,18,81,
215,83,106,84,255,91,136,99,57,106,172,125,0,151,218,86,
206,83,104,84,151,91,49,92,222,93,238,79,1,97,254,98,
50,109,192,121,203,121,66,125,77,126,210,127,237,129,31,130,
144,132,70,136,114,137,144,139,116,142,47,143,49,144,75,145,
108,145,198,150,156,145,192,78,79,79,69,81,65,83,147,95,
14,98,212,103,65,108,11,110,99,115,38,126,205,145,131,146,
212,83,25,89,191,91,209,109,93,121,46,126,155,124,126,88,
159,113,250,81,83,136,240,143,202,79,251,92,37,102,172,119,
227,122,28,130,255,153,198,81,170,95,236,101,111,105,137,107,
243,109,150,110,100,111,254,118,20,125,225,93,117,144,135,145,
6,152,230,81,29,82,64,98,145,102,217,102,26,110,182,94,
210,125,114,127,248,102,175,133,247,133,248,138,169,82,217,83,
115,89,143,94,144,95,85,96,228,146,100,150,183,80,31,81,
221,82,32,83,71,83,236,83,232,84,70,85,49,85,23,86,
104,89,190,89,60,90,181,91,6,92,15,92,17,92,26,92,
132,94,138,94,224,94,112,95,127,98,132,98,219,98,140,99,
119,99,7,102,12,102,45,102,118,102,126,103,162,104,31,106,
53,106,188,108,136,109,9,110,88,110,60,113,38,113,103,113,
199,117,1,119,93,120,1,121,101,121,240,121,224,122,17,123,
167,124,57,125,150,128,214,131,139,132,73,133,93,136,243,136,
31,138,60,138,84,138,115,138,97,140,222,140,164,145,102,146,
126,147,24,148,156,150,152,151,10,78,8,78,30,78,87,78,
151,81,112,82,206,87,52,88,204,88,34,91,56,94,197,96,
254,100,97,103,86,103,68,109,182,114,115,117,99,122,184,132,
114,139,184,145,32,147,49,86,244,87,254,152,237,98,13,105,
150,107,237,113,84,126,119,128,114,130,230,137,223,152,85,135,
177,143,59,92,56,79,225,79,181,79,7,85,32,90,221,91,
233,91,195,95,78,97,47,99,176,101,75,102,238,104,155,105,
120,109,241,109,51,117,185,117,31,119,94,121,230,121,51,125,
227,129,175,130,170,133,170,137,58,138,171,142,155,143,50,144,
221,145,7,151,186,78,193,78,3,82,117,88,236,88,11,92,
26,117,61,92,78,129,10,138,197,143,99,150,109,151,37,123,
207,138,8,152,98,145,243,86,168,83,23,144,57,84,130,87,
37,94,168,99,52,108,138,112,97,119,139,124,224,127,112,136,
66,144,84,145,16,147,24,147,143,150,94,116,196,154,7,93,
105,93,112,101,162,103,168,141,219,150,110,99,73,103,25,105,
197,131,23,152,192,150,254,136,132,111,122,100,248,91,22,78,
44,112,93,117,47,102,196,81,54,82,226,82,211,89,129,95,
39,96,16,98,63,101,116,101,31,102,116,102,242,104,22,104,
99,107,5,110,114,114,31,117,219,118,190,124,86,128,240,88,
253,136,127,137,160,138,147,138,203,138,29,144,146,145,82,151,
89,151,137,101,14,122,6,129,187,150,45,94,220,96,26,98,
165,101,20,102,144,103,243,119,77,122,77,124,62,126,10,129,
172,140,100,141,225,141,95,142,169,120,7,82,217,98,165,99,
66,100,152,98,45,138,131,122,192,123,172,138,234,150,118,125,
12,130,73,135,217,78,72,81,67,83,96,83,163,91,2,92,
22,92,221,93,38,98,71,98,176,100,19,104,52,104,201,108,
69,109,23,109,211,103,92,111,78,113,125,113,203,101,127,122,
173,123,218,125,74,126,168,127,122,129,27,130,57,130,166,133,
110,138,206,140,245,141,120,144,119,144,173,146,145,146,131,149,
174,155,77,82,132,85,56,111,54,113,104,81,133,121,85,126,
179,129,206,124,76,86,81,88,168,92,170,99,254,102,253,102,
90,105,217,114,143,117,142,117,14,121,86,121,223,121,151,124,
32,125,68,125,7,134,52,138,59,150,97,144,32,159,231,80,
117,82,204,83,226,83,9,80,170,85,238,88,79,89,61,114,
139,91,100,92,29,83,227,96,243,96,92,99,131,99,63,99,
187,99,205,100,233,101,249,102,227,93,205,105,253,105,21,111,
229,113,137,78,233,117,248,118,147,122,223,124,207,125,156,125,
97,128,73,131,88,131,108,132,188,132,251,133,197,136,112,141,
1,144,109,144,151,147,28,151,18,154,207,80,151,88,142,97,
211,129,53,133,8,141,32,144,195,79,116,80,71,82,115,83,
111,96,73,99,95,103,44,110,179,141,31,144,215,79,94,92,
202,140,207,101,154,125,82,83,150,136,118,81,195,99,88,91,
107,91,10,92,13,100,81,103,92,144,214,78,26,89,42,89,
112,108,81,138,62,85,21,88,165,89,240,96,83,98,193,103,
53,130,85,105,64,150,196,153,40,154,83,79,6,88,254,91,
16,128,177,92,47,94,133,95,32,96,75,97,52,98,255,102,
240,108,222,110,206,128,127,129,212,130,139,136,184,140,0,144,
46,144,138,150,219,158,219,155,227,78,240,83,39,89,44,123,
141,145,76,152,249,157,221,110,39,112,83,83,68,85,133,91,
88,98,158,98,211,98,162,108,239,111,34,116,23,138,56,148,
193,111,254,138,56,131,231,81,248,134,234,83,233,83,70,79,
84,144,176,143,106,89,49,129,253,93,234,122,191,143,218,104,
55,140,248,114,72,156,61,106,176,138,57,78,88,83,6,86,
102,87,197,98,162,99,230,101,78,107,225,109,91,110,173,112,
237,119,239,122,170,123,187,125,61,128,198,128,203,134,149,138,
91,147,227,86,199,88,62,95,173,101,150,102,128,106,181,107,
55,117,199,138,36,80,229,119,48,87,27,95,101,96,122,102,
96,108,244,117,26,122,110,127,244,129,24,135,69,144,179,153,
201,123,92,117,249,122,81,123,196,132,16,144,233,121,146,122,
54,131,225,90,64,119,45,78,242,78,153,91,224,95,189,98,
60,102,241,103,232,108,107,134,119,136,59,138,78,145,243,146,
208,153,23,106,38,112,42,115,231,130,87,132,175,140,1,78,
70,81,203,81,139,85,245,91,22,94,51,94,129,94,20,95,
53,95,107,95,180,95,242,97,17,99,162,102,29,103,110,111,
82,114,58,117,58,119,116,128,57,129,120,129,118,135,191,138,
220,138,133,141,243,141,154,146,119,149,2,152,229,156,197,82,
87,99,244,118,21,103,136,108,205,115,195,140,174,147,115,150,
37,109,156,88,14,105,204,105,253,143,154,147,219,117,26,144,
90,88,2,104,180,99,251,105,67,79,44,111,216,103,187,143,
38,133,180,125,84,147,63,105,112,111,106,87,247,88,44,91,
44,125,42,114,10,84,227,145,180,157,173,78,78,79,92,80,
117,80,67,82,158,140,72,84,36,88,154,91,29,94,149,94,
173,94,247,94,31,95,140,96,181,98,58,99,208,99,175,104,
64,108,135,120,142,121,11,122,224,125,71,130,2,138,230,138,
68,142,19,144,184,144,45,145,216,145,14,159,229,108,88,100,
226,100,117,101,244,110,132,118,27,123,105,144,209,147,186,110,
242,84,185,95,164,100,77,143,237,143,68,146,120,81,107,88,
41,89,85,92,151,94,251,109,143,126,28,117,188,140,226,142,
91,152,185,112,29,79,191,107,177,111,48,117,251,150,78,81,
16,84,53,88,87,88,172,89,96,92,146,95,151,101,92,103,
33,110,123,118,223,131,237,140,20,144,253,144,77,147,37,120,
58,120,170,82,166,94,31,87,116,89,18,96,18,80,90,81,
172,81,205,81,0,82,16,85,84,88,88,88,87,89,149,91,
246,92,139,93,188,96,149,98,45,100,113,103,67,104,188,104,
223,104,215,118,216,109,111,110,155,109,111,112,200,113,83,95,
216,117,119,121,73,123,84,123,82,123,214,124,113,125,48,82,
99,132,105,133,228,133,14,138,4,139,70,140,15,142,3,144,
15,144,25,148,118,150,45,152,48,154,216,149,205,80,213,82,
12,84,2,88,14,92,167,97,158,100,30,109,179,119,229,122,
244,128,4,132,83,144,133,146,224,92,7,157,63,83,151,95,
179,95,156,109,121,114,99,119,191,121,228,123,210,107,236,114,
173,138,3,104,97,106,248,81,129,122,52,105,74,92,246,156,
235,130,197,91,73,145,30,112,120,86,111,92,199,96,102,101,
140,108,90,140,65,144,19,152,81,84,199,102,13,146,72,89,
163,144,133,81,77,78,234,81,153,133,14,139,88,112,122,99,
75,147,98,105,180,153,4,126,119,117,87,83,96,105,223,142,
227,150,93,108,140,78,60,92,16,95,233,143,2,83,209,140,
137,128,121,134,255,94,229,101,115,78,101,81,130,89,63,92,
238,151,251,78,138,89,205,95,141,138,225,111,176,121,98,121,
231,91,113,132,43,115,177,113,116,94,245,95,123,99,154,100,
195,113,152,124,67,78,252,94,75,78,220,87,162,86,169,96,
195,111,13,125,253,128,51,129,191,129,178,143,151,137,164,134,
244,93,138,98,173,100,135,137,119,103,226,108,62,109,54,116,
52,120,70,90,117,127,173,130,172,153,243,79,195,94,221,98,
146,99,87,101,111,103,195,118,76,114,204,128,186,128,41,143,
77,145,13,80,249,87,146,90,133,104,115,105,100,113,253,114,
183,140,242,88,224,140,106,150,25,144,127,135,228,121,231,119,
41,132,47,79,101,82,90,83,205,98,207,103,202,108,125,118,
148,123,149,124,54,130,132,133,235,143,221,102,32,111,6,114,
27,126,171,131,193,153,166,158,253,81,177,123,114,120,184,123,
135,128,72,123,232,106,97,94,140,128,81,117,96,117,107,81,
98,146,140,110,122,118,151,145,234,154,16,79,112,127,156,98,
79,123,165,149,233,156,122,86,89,88,228,134,188,150,52,79,
36,82,74,83,205,83,219,83,6,94,44,100,145,101,127,103,
62,108,78,108,72,114,175,114,237,115,84,117,65,126,44,130,
233,133,169,140,196,123,198,145,105,113,18,152,239,152,61,99,
105,102,106,117,228,118,208,120,67,133,238,134,42,83,81,83,
38,84,131,89,135,94,124,95,178,96,73,98,121,98,171,98,
144,101,212,107,204,108,178,117,174,118,145,120,216,121,203,125,
119,127,165,128,171,136,185,138,187,140,127,144,94,151,219,152,
11,106,56,124,153,80,62,92,174,95,135,103,216,107,53,116,
9,119,142,127,59,159,202,103,23,122,57,83,139,117,237,154,
102,95,157,129,241,131,152,128,60,95,197,95,98,117,70,123,
60,144,103,104,235,89,155,90,16,125,126,118,44,139,245,79,
106,95,25,106,55,108,2,111,226,116,104,121,104,136,85,138,
121,140,223,94,207,99,197,117,210,121,215,130,40,147,242,146,
156,132,237,134,45,156,193,84,108,95,140,101,92,109,21,112,
167,140,211,140,59,152,79,101,246,116,13,78,216,78,224,87,
43,89,102,90,204,91,168,81,3,94,156,94,22,96,118,98,
119,101,167,101,110,102,110,109,54,114,38,123,80,129,154,129,
153,130,92,139,160,140,230,140,116,141,28,150,68,150,174,79,
171,100,102,107,30,130,97,132,106,133,232,144,1,92,83,105,
168,152,122,132,87,133,15,79,111,82,169,95,69,94,13,103,
143,121,121,129,7,137,134,137,245,109,23,95,85,98,184,108,
207,78,105,114,146,155,6,82,59,84,116,86,179,88,164,97,
110,98,26,113,110,89,137,124,222,124,27,125,240,150,135,101,
94,128,25,78,117,79,117,81,64,88,99,94,115,94,10,95,
196,103,38,78,61,133,137,149,91,150,115,124,1,152,251,80,
193,88,86,118,167,120,37,82,165,119,17,133,134,123,79,80,
9,89,71,114,199,123,232,125,186,143,212,143,77,144,191,79,
201,82,41,90,1,95,173,151,221,79,23,130,234,146,3,87,
85,99,105,107,43,117,220,136,20,143,66,122,223,82,147,88,
85,97,10,98,174,102,205,107,63,124,233,131,35,80,248,79,
5,83,70,84,49,88,73,89,157,91,240,92,239,92,41,93,
150,94,177,98,103,99,62,101,185,101,11,103,213,108,225,108,
249,112,50,120,43,126,222,128,179,130,12,132,236,132,2,135,
18,137,42,138,74,140,166,144,210,146,253,152,243,156,108,157,
79,78,161,78,141,80,86,82,74,87,168,89,61,94,216,95,
217,95,63,98,180,102,27,103,208,103,210,104,146,81,33,125,
170,128,168,129,0,139,140,140,191,140,126,146,50,150,32,84,
44,152,23,83,213,80,92,83,168,88,178,100,52,103,103,114,
102,119,70,122,230,145,195,82,161,108,134,107,0,88,76,94,
84,89,44,103,251,127,225,81,198,118,105,100,232,120,84,155,
187,158,203,87,185,89,39,102,154,103,206,107,233,84,217,105,
85,94,156,129,149,103,170,155,254,103,82,156,93,104,166,78,
227,79,200,83,185,98,43,103,171,108,196,143,173,79,109,126,
191,158,7,78,98,97,128,110,43,111,19,133,115,84,42,103,
69,155,243,93,149,123,172,92,198,91,28,135,74,110,209,132,
20,122,8,129,153,89,141,124,17,108,32,119,217,82,34,89,
33,113,95,114,219,119,39,151,97,157,11,105,127,90,24,90,
165,81,13,84,125,84,14,102,223,118,247,143,152,146,244,156,
234,89,93,114,197,110,77,81,201,104,191,125,236,125,98,151,
186,158,120,100,33,106,2,131,132,89,95,91,219,107,27,115,
242,118,178,125,23,128,153,132,50,81,40,103,217,158,238,118,
98,103,255,82,5,153,36,92,59,98,126,124,176,140,79,85,
182,96,11,125,128,149,1,83,95,78,182,81,28,89,58,114,
54,128,206,145,37,95,226,119,132,83,121,95,4,125,172,133,
51,138,141,142,86,151,243,103,174,133,83,148,9,97,8,97,
185,108,82,118,237,138,56,143,47,85,81,79,42,81,199,82,
203,83,165,91,125,94,160,96,130,97,214,99,9,103,218,103,
103,110,140,109,54,115,55,115,49,117,80,121,213,136,152,138,
74,144,145,144,245,144,196,150,141,135,21,89,136,78,89,79,
14,78,137,138,63,143,16,152,173,80,124,94,150,89,185,91,
184,94,218,99,250,99,193,100,220,102,74,105,216,105,11,109,
182,110,148,113,40,117,175,122,138,127,0,128,73,132,201,132,
129,137,33,139,10,142,101,144,125,150,10,153,126,97,145,98,
50,107,131,108,116,109,204,127,252,127,192,109,133,127,186,135,
248,136,101,103,177,131,60,152,247,150,27,109,97,125,61,132,
106,145,113,78,117,83,80,93,4,107,235,111,205,133,45,134,
167,137,41,82,15,84,101,92,78,103,168,104,6,116,131,116,
226,117,207,136,225,136,204,145,226,150,120,150,139,95,135,115,
203,122,78,132,160,99,101,117,137,82,65,109,156,110,9,116,
89,117,107,120,146,124,134,150,220,122,141,159,182,79,110,97,
197,101,92,134,134,78,174,78,218,80,33,78,204,81,238,91,
153,101,129,104,188,109,31,115,66,118,173,119,28,122,231,124,
111,130,210,138,124,144,207,145,117,150,24,152,155,82,209,125,
43,80,152,83,151,103,203,109,208,113,51,116,232,129,42,143,
163,150,87,156,159,158,96,116,65,88,153,109,47,125,94,152,
228,78,54,79,139,79,183,81,177,82,186,93,28,96,178,115,
60,121,211,130,52,146,183,150,246,150,10,151,151,158,98,159,
166,102,116,107,23,82,163,82,200,112,194,136,201,94,75,96,
144,97,35,111,73,113,62,124,244,125,111,128,238,132,35,144,
44,147,66,84,111,155,211,106,137,112,194,140,239,141,50,151,
180,82,65,90,202,94,4,95,23,103,124,105,148,105,106,109,
15,111,98,114,252,114,237,123,1,128,126,128,75,135,206,144,
109,81,147,158,132,121,139,128,50,147,214,138,45,80,140,84,
113,138,106,107,196,140,7,129,209,96,160,103,242,157,153,78,
152,78,16,156,107,138,193,133,104,133,0,105,126,110,151,120,
85,129,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,12,95,16,78,21,78,42,78,
49,78,54,78,60,78,63,78,66,78,86,78,88,78,130,78,
133,78,107,140,138,78,18,130,13,95,142,78,158,78,159,78,
160,78,162,78,176,78,179,78,182,78,206,78,205,78,196,78,
198,78,194,78,215,78,222,78,237,78,223,78,247,78,9,79,
90,79,48,79,91,79,93,79,87,79,71,79,118,79,136,79,
143,79,152,79,123,79,105,79,112,79,145,79,111,79,134,79,
150,79,24,81,212,79,223,79,206,79,216,79,219,79,209,79,
218,79,208,79,228,79,229,79,26,80,40,80,20,80,42,80,
37,80,5,80,28,79,246,79,33,80,41,80,44,80,254,79,
239,79,17,80,6,80,67,80,71,80,3,103,85,80,80,80,
72,80,90,80,86,80,108,80,120,80,128,80,154,80,133,80,
180,80,178,80,201,80,202,80,179,80,194,80,214,80,222,80,
229,80,237,80,227,80,238,80,249,80,245,80,9,81,1,81,
2,81,22,81,21,81,20,81,26,81,33,81,58,81,55,81,
60,81,59,81,63,81,64,81,82,81,76,81,84,81,98,81,
248,122,105,81,106,81,110,81,128,81,130,81,216,86,140,81,
137,81,143,81,145,81,147,81,149,81,150,81,164,81,166,81,
162,81,169,81,170,81,171,81,179,81,177,81,178,81,176,81,
181,81,189,81,197,81,201,81,219,81,224,81,85,134,233,81,
237,81,240,81,245,81,254,81,4,82,11,82,20,82,14,82,
39,82,42,82,46,82,51,82,57,82,79,82,68,82,75,82,
76,82,94,82,84,82,106,82,116,82,105,82,115,82,127,82,
125,82,141,82,148,82,146,82,113,82,136,82,145,82,168,143,
167,143,172,82,173,82,188,82,181,82,193,82,205,82,215,82,
222,82,227,82,230,82,237,152,224,82,243,82,245,82,248,82,
249,82,6,83,8,83,56,117,13,83,16,83,15,83,21,83,
26,83,35,83,47,83,49,83,51,83,56,83,64,83,70,83,
69,83,23,78,73,83,77,83,214,81,94,83,105,83,110,83,
24,89,123,83,119,83,130,83,150,83,160,83,166,83,165,83,
174,83,176,83,182,83,195,83,18,124,217,150,223,83,252,102,
238,113,238,83,232,83,237,83,250,83,1,84,61,84,64,84,
44,84,45,84,60,84,46,84,54,84,41,84,29,84,78,84,
143,84,117,84,142,84,95,84,113,84,119,84,112,84,146,84,
123,84,128,84,118,84,132,84,144,84,134,84,199,84,162,84,
184,84,165,84,172,84,196,84,200,84,168,84,171,84,194,84,
164,84,190,84,188,84,216,84,229,84,230,84,15,85,20,85,
253,84,238,84,237,84,250,84,226,84,57,85,64,85,99,85,
76,85,46,85,92,85,69,85,86,85,87,85,56,85,51,85,
93,85,153,85,128,85,175,84,138,85,159,85,123,85,126,85,
152,85,158,85,174,85,124,85,131,85,169,85,135,85,168,85,
218,85,197,85,223,85,196,85,220,85,228,85,212,85,20,86,
247,85,22,86,254,85,253,85,27,86,249,85,78,86,80,86,
223,113,52,86,54,86,50,86,56,86,107,86,100,86,47,86,
108,86,106,86,134,86,128,86,138,86,160,86,148,86,143,86,
165,86,174,86,182,86,180,86,194,86,188,86,193,86,195,86,
192,86,200,86,206,86,209,86,211,86,215,86,238,86,249,86,
0,87,255,86,4,87,9,87,8,87,11,87,13,87,19,87,
24,87,22,87,199,85,28,87,38,87,55,87,56,87,78,87,
59,87,64,87,79,87,105,87,192,87,136,87,97,87,127,87,
137,87,147,87,160,87,179,87,164,87,170,87,176,87,195,87,
198,87,212,87,210,87,211,87,10,88,214,87,227,87,11,88,
25,88,29,88,114,88,33,88,98,88,75,88,112,88,192,107,
82,88,61,88,121,88,133,88,185,88,159,88,171,88,186,88,
222,88,187,88,184,88,174,88,197,88,211,88,209,88,215,88,
217,88,216,88,229,88,220,88,228,88,223,88,239,88,250,88,
249,88,251,88,252,88,253,88,2,89,10,89,16,89,27,89,
166,104,37,89,44,89,45,89,50,89,56,89,62,89,210,122,
85,89,80,89,78,89,90,89,88,89,98,89,96,89,103,89,
108,89,105,89,120,89,129,89,157,89,94,79,171,79,163,89,
178,89,198,89,232,89,220,89,141,89,217,89,218,89,37,90,
31,90,17,90,28,90,9,90,26,90,64,90,108,90,73,90,
53,90,54,90,98,90,106,90,154,90,188,90,190,90,203,90,
194,90,189,90,227,90,215,90,230,90,233,90,214,90,250,90,
251,90,12,91,11,91,22,91,50,91,208,90,42,91,54,91,
62,91,67,91,69,91,64,91,81,91,85,91,90,91,91,91,
101,91,105,91,112,91,115,91,117,91,120,91,136,101,122,91,
128,91,131,91,166,91,184,91,195,91,199,91,201,91,212,91,
208,91,228,91,230,91,226,91,222,91,229,91,235,91,240,91,
246,91,243,91,5,92,7,92,8,92,13,92,19,92,32,92,
34,92,40,92,56,92,57,92,65,92,70,92,78,92,83,92,
80,92,79,92,113,91,108,92,110,92,98,78,118,92,121,92,
140,92,145,92,148,92,155,89,171,92,187,92,182,92,188,92,
183,92,197,92,190,92,199,92,217,92,233,92,253,92,250,92,
237,92,140,93,234,92,11,93,21,93,23,93,92,93,31,93,
27,93,17,93,20,93,34,93,26,93,25,93,24,93,76,93,
82,93,78,93,75,93,108,93,115,93,118,93,135,93,132,93,
130,93,162,93,157,93,172,93,174,93,189,93,144,93,183,93,
188,93,201,93,205,93,211,93,210,93,214,93,219,93,235,93,
242,93,245,93,11,94,26,94,25,94,17,94,27,94,54,94,
55,94,68,94,67,94,64,94,78,94,87,94,84,94,95,94,
98,94,100,94,71,94,117,94,118,94,122,94,188,158,127,94,
160,94,193,94,194,94,200,94,208,94,207,94,214,94,227,94,
221,94,218,94,219,94,226,94,225,94,232,94,233,94,236,94,
241,94,243,94,240,94,244,94,248,94,254,94,3,95,9,95,
93,95,92,95,11,95,17,95,22,95,41,95,45,95,56,95,
65,95,72,95,76,95,78,95,47,95,81,95,86,95,87,95,
89,95,97,95,109,95,115,95,119,95,131,95,130,95,127,95,
138,95,136,95,145,95,135,95,158,95,153,95,152,95,160,95,
168,95,173,95,188,95,214,95,251,95,228,95,248,95,241,95,
221,95,179,96,255,95,33,96,96,96,25,96,16,96,41,96,
14,96,49,96,27,96,21,96,43,96,38,96,15,96,58,96,
90,96,65,96,106,96,119,96,95,96,74,96,70,96,77,96,
99,96,67,96,100,96,66,96,108,96,107,96,89,96,129,96,
141,96,231,96,131,96,154,96,132,96,155,96,150,96,151,96,
146,96,167,96,139,96,225,96,184,96,224,96,211,96,180,96,
240,95,189,96,198,96,181,96,216,96,77,97,21,97,6,97,
246,96,247,96,0,97,244,96,250,96,3,97,33,97,251,96,
241,96,13,97,14,97,71,97,62,97,40,97,39,97,74,97,
63,97,60,97,44,97,52,97,61,97,66,97,68,97,115,97,
119,97,88,97,89,97,90,97,107,97,116,97,111,97,101,97,
113,97,95,97,93,97,83,97,117,97,153,97,150,97,135,97,
172,97,148,97,154,97,138,97,145,97,171,97,174,97,204,97,
202,97,201,97,247,97,200,97,195,97,198,97,186,97,203,97,
121,127,205,97,230,97,227,97,246,97,250,97,244,97,255,97,
253,97,252,97,254,97,0,98,8,98,9,98,13,98,12,98,
20,98,27,98,30,98,33,98,42,98,46,98,48,98,50,98,
51,98,65,98,78,98,94,98,99,98,91,98,96,98,104,98,
124,98,130,98,137,98,126,98,146,98,147,98,150,98,212,98,
131,98,148,98,215,98,209,98,187,98,207,98,255,98,198,98,
212,100,200,98,220,98,204,98,202,98,194,98,199,98,155,98,
201,98,12,99,238,98,241,98,39,99,2,99,8,99,239,98,
245,98,80,99,62,99,77,99,28,100,79,99,150,99,142,99,
128,99,171,99,118,99,163,99,143,99,137,99,159,99,181,99,
107,99,105,99,190,99,233,99,192,99,198,99,227,99,201,99,
210,99,246,99,196,99,22,100,52,100,6,100,19,100,38,100,
54,100,29,101,23,100,40,100,15,100,103,100,111,100,118,100,
78,100,42,101,149,100,147,100,165,100,169,100,136,100,188,100,
218,100,210,100,197,100,199,100,187,100,216,100,194,100,241,100,
231,100,9,130,224,100,225,100,172,98,227,100,239,100,44,101,
246,100,244,100,242,100,250,100,0,101,253,100,24,101,28,101,
5,101,36,101,35,101,43,101,52,101,53,101,55,101,54,101,
56,101,75,117,72,101,86,101,85,101,77,101,88,101,94,101,
93,101,114,101,120,101,130,101,131,101,138,139,155,101,159,101,
171,101,183,101,195,101,198,101,193,101,196,101,204,101,210,101,
219,101,217,101,224,101,225,101,241,101,114,103,10,102,3,102,
251,101,115,103,53,102,54,102,52,102,28,102,79,102,68,102,
73,102,65,102,94,102,93,102,100,102,103,102,104,102,95,102,
98,102,112,102,131,102,136,102,142,102,137,102,132,102,152,102,
157,102,193,102,185,102,201,102,190,102,188,102,196,102,184,102,
214,102,218,102,224,102,63,102,230,102,233,102,240,102,245,102,
247,102,15,103,22,103,30,103,38,103,39,103,56,151,46,103,
63,103,54,103,65,103,56,103,55,103,70,103,94,103,96,103,
89,103,99,103,100,103,137,103,112,103,169,103,124,103,106,103,
140,103,139,103,166,103,161,103,133,103,183,103,239,103,180,103,
236,103,179,103,233,103,184,103,228,103,222,103,221,103,226,103,
238,103,185,103,206,103,198,103,231,103,156,106,30,104,70,104,
41,104,64,104,77,104,50,104,78,104,179,104,43,104,89,104,
99,104,119,104,127,104,159,104,143,104,173,104,148,104,157,104,
155,104,131,104,174,106,185,104,116,104,181,104,160,104,186,104,
15,105,141,104,126,104,1,105,202,104,8,105,216,104,34,105,
38,105,225,104,12,105,205,104,212,104,231,104,213,104,54,105,
18,105,4,105,215,104,227,104,37,105,249,104,224,104,239,104,
40,105,42,105,26,105,35,105,33,105,198,104,121,105,119,105,
92,105,120,105,107,105,84,105,126,105,110,105,57,105,116,105,
61,105,89,105,48,105,97,105,94,105,93,105,129,105,106,105,
178,105,174,105,208,105,191,105,193,105,211,105,190,105,206,105,
232,91,202,105,221,105,187,105,195,105,167,105,46,106,145,105,
160,105,156,105,149,105,180,105,222,105,232,105,2,106,27,106,
255,105,10,107,249,105,242,105,231,105,5,106,177,105,30,106,
237,105,20,106,235,105,10,106,18,106,193,106,35,106,19,106,
68,106,12,106,114,106,54,106,120,106,71,106,98,106,89,106,
102,106,72,106,56,106,34,106,144,106,141,106,160,106,132,106,
162,106,163,106,151,106,23,134,187,106,195,106,194,106,184,106,
179,106,172,106,222,106,209,106,223,106,170,106,218,106,234,106,
251,106,5,107,22,134,250,106,18,107,22,107,49,155,31,107,
56,107,55,107,220,118,57,107,238,152,71,107,67,107,73,107,
80,107,89,107,84,107,91,107,95,107,97,107,120,107,121,107,
127,107,128,107,132,107,131,107,141,107,152,107,149,107,158,107,
164,107,170,107,171,107,175,107,178,107,177,107,179,107,183,107,
188,107,198,107,203,107,211,107,223,107,236,107,235,107,243,107,
239,107,190,158,8,108,19,108,20,108,27,108,36,108,35,108,
94,108,85,108,98,108,106,108,130,108,141,108,154,108,129,108,
155,108,126,108,104,108,115,108,146,108,144,108,196,108,241,108,
211,108,189,108,215,108,197,108,221,108,174,108,177,108,190,108,
186,108,219,108,239,108,217,108,234,108,31,109,77,136,54,109,
43,109,61,109,56,109,25,109,53,109,51,109,18,109,12,109,
99,109,147,109,100,109,90,109,121,109,89,109,142,109,149,109,
228,111,133,109,249,109,21,110,10,110,181,109,199,109,230,109,
184,109,198,109,236,109,222,109,204,109,232,109,210,109,197,109,
250,109,217,109,228,109,213,109,234,109,238,109,45,110,110,110,
46,110,25,110,114,110,95,110,62,110,35,110,107,110,43,110,
118,110,77,110,31,110,67,110,58,110,78,110,36,110,255,110,
29,110,56,110,130,110,170,110,152,110,201,110,183,110,211,110,
189,110,175,110,196,110,178,110,212,110,213,110,143,110,165,110,
194,110,159,110,65,111,17,111,76,112,236,110,248,110,254,110,
63,111,242,110,49,111,239,110,50,111,204,110,62,111,19,111,
247,110,134,111,122,111,120,111,129,111,128,111,111,111,91,111,
243,111,109,111,130,111,124,111,88,111,142,111,145,111,194,111,
102,111,179,111,163,111,161,111,164,111,185,111,198,111,170,111,
223,111,213,111,236,111,212,111,216,111,241,111,238,111,219,111,
9,112,11,112,250,111,17,112,1,112,15,112,254,111,27,112,
26,112,116,111,29,112,24,112,31,112,48,112,62,112,50,112,
81,112,99,112,153,112,146,112,175,112,241,112,172,112,184,112,
179,112,174,112,223,112,203,112,221,112,217,112,9,113,253,112,
28,113,25,113,101,113,85,113,136,113,102,113,98,113,76,113,
86,113,108,113,143,113,251,113,132,113,149,113,168,113,172,113,
215,113,185,113,190,113,210,113,201,113,212,113,206,113,224,113,
236,113,231,113,245,113,252,113,249,113,255,113,13,114,16,114,
27,114,40,114,45,114,44,114,48,114,50,114,59,114,60,114,
63,114,64,114,70,114,75,114,88,114,116,114,126,114,130,114,
129,114,135,114,146,114,150,114,162,114,167,114,185,114,178,114,
195,114,198,114,196,114,206,114,210,114,226,114,224,114,225,114,
249,114,247,114,15,80,23,115,10,115,28,115,22,115,29,115,
52,115,47,115,41,115,37,115,62,115,78,115,79,115,216,158,
87,115,106,115,104,115,112,115,120,115,117,115,123,115,122,115,
200,115,179,115,206,115,187,115,192,115,229,115,238,115,222,115,
162,116,5,116,111,116,37,116,248,115,50,116,58,116,85,116,
63,116,95,116,89,116,65,116,92,116,105,116,112,116,99,116,
106,116,118,116,126,116,139,116,158,116,167,116,202,116,207,116,
212,116,241,115,224,116,227,116,231,116,233,116,238,116,242,116,
240,116,241,116,248,116,247,116,4,117,3,117,5,117,12,117,
14,117,13,117,21,117,19,117,30,117,38,117,44,117,60,117,
68,117,77,117,74,117,73,117,91,117,70,117,90,117,105,117,
100,117,103,117,107,117,109,117,120,117,118,117,134,117,135,117,
116,117,138,117,137,117,130,117,148,117,154,117,157,117,165,117,
163,117,194,117,179,117,195,117,181,117,189,117,184,117,188,117,
177,117,205,117,202,117,210,117,217,117,227,117,222,117,254,117,
255,117,252,117,1,118,240,117,250,117,242,117,243,117,11,118,
13,118,9,118,31,118,39,118,32,118,33,118,34,118,36,118,
52,118,48,118,59,118,71,118,72,118,70,118,92,118,88,118,
97,118,98,118,104,118,105,118,106,118,103,118,108,118,112,118,
114,118,118,118,120,118,124,118,128,118,131,118,136,118,139,118,
142,118,150,118,147,118,153,118,154,118,176,118,180,118,184,118,
185,118,186,118,194,118,205,118,214,118,210,118,222,118,225,118,
229,118,231,118,234,118,47,134,251,118,8,119,7,119,4,119,
41,119,36,119,30,119,37,119,38,119,27,119,55,119,56,119,
71,119,90,119,104,119,107,119,91,119,101,119,127,119,126,119,
121,119,142,119,139,119,145,119,160,119,158,119,176,119,182,119,
185,119,191,119,188,119,189,119,187,119,199,119,205,119,215,119,
218,119,220,119,227,119,238,119,252,119,12,120,18,120,38,121,
32,120,42,121,69,120,142,120,116,120,134,120,124,120,154,120,
140,120,163,120,181,120,170,120,175,120,209,120,198,120,203,120,
212,120,190,120,188,120,197,120,202,120,236,120,231,120,218,120,
253,120,244,120,7,121,18,121,17,121,25,121,44,121,43,121,
64,121,96,121,87,121,95,121,90,121,85,121,83,121,122,121,
127,121,138,121,157,121,167,121,75,159,170,121,174,121,179,121,
185,121,186,121,201,121,213,121,231,121,236,121,225,121,227,121,
8,122,13,122,24,122,25,122,32,122,31,122,128,121,49,122,
59,122,62,122,55,122,67,122,87,122,73,122,97,122,98,122,
105,122,157,159,112,122,121,122,125,122,136,122,151,122,149,122,
152,122,150,122,169,122,200,122,176,122,182,122,197,122,196,122,
191,122,131,144,199,122,202,122,205,122,207,122,213,122,211,122,
217,122,218,122,221,122,225,122,226,122,230,122,237,122,240,122,
2,123,15,123,10,123,6,123,51,123,24,123,25,123,30,123,
53,123,40,123,54,123,80,123,122,123,4,123,77,123,11,123,
76,123,69,123,117,123,101,123,116,123,103,123,112,123,113,123,
108,123,110,123,157,123,152,123,159,123,141,123,156,123,154,123,
139,123,146,123,143,123,93,123,153,123,203,123,193,123,204,123,
207,123,180,123,198,123,221,123,233,123,17,124,20,124,230,123,
229,123,96,124,0,124,7,124,19,124,243,123,247,123,23,124,
13,124,246,123,35,124,39,124,42,124,31,124,55,124,43,124,
61,124,76,124,67,124,84,124,79,124,64,124,80,124,88,124,
95,124,100,124,86,124,101,124,108,124,117,124,131,124,144,124,
164,124,173,124,162,124,171,124,161,124,168,124,179,124,178,124,
177,124,174,124,185,124,189,124,192,124,197,124,194,124,216,124,
210,124,220,124,226,124,59,155,239,124,242,124,244,124,246,124,
250,124,6,125,2,125,28,125,21,125,10,125,69,125,75,125,
46,125,50,125,63,125,53,125,70,125,115,125,86,125,78,125,
114,125,104,125,110,125,79,125,99,125,147,125,137,125,91,125,
143,125,125,125,155,125,186,125,174,125,163,125,181,125,199,125,
189,125,171,125,61,126,162,125,175,125,220,125,184,125,159,125,
176,125,216,125,221,125,228,125,222,125,251,125,242,125,225,125,
5,126,10,126,35,126,33,126,18,126,49,126,31,126,9,126,
11,126,34,126,70,126,102,126,59,126,53,126,57,126,67,126,
55,126,50,126,58,126,103,126,93,126,86,126,94,126,89,126,
90,126,121,126,106,126,105,126,124,126,123,126,131,126,213,125,
125,126,174,143,127,126,136,126,137,126,140,126,146,126,144,126,
147,126,148,126,150,126,142,126,155,126,156,126,56,127,58,127,
69,127,76,127,77,127,78,127,80,127,81,127,85,127,84,127,
88,127,95,127,96,127,104,127,105,127,103,127,120,127,130,127,
134,127,131,127,136,127,135,127,140,127,148,127,158,127,157,127,
154,127,163,127,175,127,178,127,185,127,174,127,182,127,184,127,
113,139,197,127,198,127,202,127,213,127,212,127,225,127,230,127,
233,127,243,127,249,127,220,152,6,128,4,128,11,128,18,128,
24,128,25,128,28,128,33,128,40,128,63,128,59,128,74,128,
70,128,82,128,88,128,90,128,95,128,98,128,104,128,115,128,
114,128,112,128,118,128,121,128,125,128,127,128,132,128,134,128,
133,128,155,128,147,128,154,128,173,128,144,81,172,128,219,128,
229,128,217,128,221,128,196,128,218,128,214,128,9,129,239,128,
241,128,27,129,41,129,35,129,47,129,75,129,139,150,70,129,
62,129,83,129,81,129,252,128,113,129,110,129,101,129,102,129,
116,129,131,129,136,129,138,129,128,129,130,129,160,129,149,129,
164,129,163,129,95,129,147,129,169,129,176,129,181,129,190,129,
184,129,189,129,192,129,194,129,186,129,201,129,205,129,209,129,
217,129,216,129,200,129,218,129,223,129,224,129,231,129,250,129,
251,129,254,129,1,130,2,130,5,130,7,130,10,130,13,130,
16,130,22,130,41,130,43,130,56,130,51,130,64,130,89,130,
88,130,93,130,90,130,95,130,100,130,98,130,104,130,106,130,
107,130,46,130,113,130,119,130,120,130,126,130,141,130,146,130,
171,130,159,130,187,130,172,130,225,130,227,130,223,130,210,130,
244,130,243,130,250,130,147,131,3,131,251,130,249,130,222,130,
6,131,220,130,9,131,217,130,53,131,52,131,22,131,50,131,
49,131,64,131,57,131,80,131,69,131,47,131,43,131,23,131,
24,131,133,131,154,131,170,131,159,131,162,131,150,131,35,131,
142,131,135,131,138,131,124,131,181,131,115,131,117,131,160,131,
137,131,168,131,244,131,19,132,235,131,206,131,253,131,3,132,
216,131,11,132,193,131,247,131,7,132,224,131,242,131,13,132,
34,132,32,132,189,131,56,132,6,133,251,131,109,132,42,132,
60,132,90,133,132,132,119,132,107,132,173,132,110,132,130,132,
105,132,70,132,44,132,111,132,121,132,53,132,202,132,98,132,
185,132,191,132,159,132,217,132,205,132,187,132,218,132,208,132,
193,132,198,132,214,132,161,132,33,133,255,132,244,132,23,133,
24,133,44,133,31,133,21,133,20,133,252,132,64,133,99,133,
88,133,72,133,65,133,2,134,75,133,85,133,128,133,164,133,
136,133,145,133,138,133,168,133,109,133,148,133,155,133,234,133,
135,133,156,133,119,133,126,133,144,133,201,133,186,133,207,133,
185,133,208,133,213,133,221,133,229,133,220,133,249,133,10,134,
19,134,11,134,254,133,250,133,6,134,34,134,26,134,48,134,
63,134,77,134,85,78,84,134,95,134,103,134,113,134,147,134,
163,134,169,134,170,134,139,134,140,134,182,134,175,134,196,134,
198,134,176,134,201,134,35,136,171,134,212,134,222,134,233,134,
236,134,223,134,219,134,239,134,18,135,6,135,8,135,0,135,
3,135,251,134,17,135,9,135,13,135,249,134,10,135,52,135,
63,135,55,135,59,135,37,135,41,135,26,135,96,135,95,135,
120,135,76,135,78,135,116,135,87,135,104,135,110,135,89,135,
83,135,99,135,106,135,5,136,162,135,159,135,130,135,175,135,
203,135,189,135,192,135,208,135,214,150,171,135,196,135,179,135,
199,135,198,135,187,135,239,135,242,135,224,135,15,136,13,136,
254,135,246,135,247,135,14,136,210,135,17,136,22,136,21,136,
34,136,33,136,49,136,54,136,57,136,39,136,59,136,68,136,
66,136,82,136,89,136,94,136,98,136,107,136,129,136,126,136,
158,136,117,136,125,136,181,136,114,136,130,136,151,136,146,136,
174,136,153,136,162,136,141,136,164,136,176,136,191,136,177,136,
195,136,196,136,212,136,216,136,217,136,221,136,249,136,2,137,
252,136,244,136,232,136,242,136,4,137,12,137,10,137,19,137,
67,137,30,137,37,137,42,137,43,137,65,137,68,137,59,137,
54,137,56,137,76,137,29,137,96,137,94,137,102,137,100,137,
109,137,106,137,111,137,116,137,119,137,126,137,131,137,136,137,
138,137,147,137,152,137,161,137,169,137,166,137,172,137,175,137,
178,137,186,137,189,137,191,137,192,137,218,137,220,137,221,137,
231,137,244,137,248,137,3,138,22,138,16,138,12,138,27,138,
29,138,37,138,54,138,65,138,91,138,82,138,70,138,72,138,
124,138,109,138,108,138,98,138,133,138,130,138,132,138,168,138,
161,138,145,138,165,138,166,138,154,138,163,138,196,138,205,138,
194,138,218,138,235,138,243,138,231,138,228,138,241,138,20,139,
224,138,226,138,247,138,222,138,219,138,12,139,7,139,26,139,
225,138,22,139,16,139,23,139,32,139,51,139,171,151,38,139,
43,139,62,139,40,139,65,139,76,139,79,139,78,139,73,139,
86,139,91,139,90,139,107,139,95,139,108,139,111,139,116,139,
125,139,128,139,140,139,142,139,146,139,147,139,150,139,153,139,
154,139,58,140,65,140,63,140,72,140,76,140,78,140,80,140,
85,140,98,140,108,140,120,140,122,140,130,140,137,140,133,140,
138,140,141,140,142,140,148,140,124,140,152,140,29,98,173,140,
170,140,189,140,178,140,179,140,174,140,182,140,200,140,193,140,
228,140,227,140,218,140,253,140,250,140,251,140,4,141,5,141,
10,141,7,141,15,141,13,141,16,141,78,159,19,141,205,140,
20,141,22,141,103,141,109,141,113,141,115,141,129,141,153,141,
194,141,190,141,186,141,207,141,218,141,214,141,204,141,219,141,
203,141,234,141,235,141,223,141,227,141,252,141,8,142,9,142,
255,141,29,142,30,142,16,142,31,142,66,142,53,142,48,142,
52,142,74,142,71,142,73,142,76,142,80,142,72,142,89,142,
100,142,96,142,42,142,99,142,85,142,118,142,114,142,124,142,
129,142,135,142,133,142,132,142,139,142,138,142,147,142,145,142,
148,142,153,142,170,142,161,142,172,142,176,142,198,142,177,142,
190,142,197,142,200,142,203,142,219,142,227,142,252,142,251,142,
235,142,254,142,10,143,5,143,21,143,18,143,25,143,19,143,
28,143,31,143,27,143,12,143,38,143,51,143,59,143,57,143,
69,143,66,143,62,143,76,143,73,143,70,143,78,143,87,143,
92,143,98,143,99,143,100,143,156,143,159,143,163,143,173,143,
175,143,183,143,218,143,229,143,226,143,234,143,239,143,135,144,
244,143,5,144,249,143,250,143,17,144,21,144,33,144,13,144,
30,144,22,144,11,144,39,144,54,144,53,144,57,144,248,143,
79,144,80,144,81,144,82,144,14,144,73,144,62,144,86,144,
88,144,94,144,104,144,111,144,118,144,168,150,114,144,130,144,
125,144,129,144,128,144,138,144,137,144,143,144,168,144,175,144,
177,144,181,144,226,144,228,144,72,98,219,144,2,145,18,145,
25,145,50,145,48,145,74,145,86,145,88,145,99,145,101,145,
105,145,115,145,114,145,139,145,137,145,130,145,162,145,171,145,
175,145,170,145,181,145,180,145,186,145,192,145,193,145,201,145,
203,145,208,145,214,145,223,145,225,145,219,145,252,145,245,145,
246,145,30,146,255,145,20,146,44,146,21,146,17,146,94,146,
87,146,69,146,73,146,100,146,72,146,149,146,63,146,75,146,
80,146,156,146,150,146,147,146,155,146,90,146,207,146,185,146,
183,146,233,146,15,147,250,146,68,147,46,147,25,147,34,147,
26,147,35,147,58,147,53,147,59,147,92,147,96,147,124,147,
110,147,86,147,176,147,172,147,173,147,148,147,185,147,214,147,
215,147,232,147,229,147,216,147,195,147,221,147,208,147,200,147,
228,147,26,148,20,148,19,148,3,148,7,148,16,148,54,148,
43,148,53,148,33,148,58,148,65,148,82,148,68,148,91,148,
96,148,98,148,94,148,106,148,41,146,112,148,117,148,119,148,
125,148,90,148,124,148,126,148,129,148,127,148,130,149,135,149,
138,149,148,149,150,149,152,149,153,149,160,149,168,149,167,149,
173,149,188,149,187,149,185,149,190,149,202,149,246,111,195,149,
205,149,204,149,213,149,212,149,214,149,220,149,225,149,229,149,
226,149,33,150,40,150,46,150,47,150,66,150,76,150,79,150,
75,150,119,150,92,150,94,150,93,150,95,150,102,150,114,150,
108,150,141,150,152,150,149,150,151,150,170,150,167,150,177,150,
178,150,176,150,180,150,182,150,184,150,185,150,206,150,203,150,
201,150,205,150,77,137,220,150,13,151,213,150,249,150,4,151,
6,151,8,151,19,151,14,151,17,151,15,151,22,151,25,151,
36,151,42,151,48,151,57,151,61,151,62,151,68,151,70,151,
72,151,66,151,73,151,92,151,96,151,100,151,102,151,104,151,
210,82,107,151,113,151,121,151,133,151,124,151,129,151,122,151,
134,151,139,151,143,151,144,151,156,151,168,151,166,151,163,151,
179,151,180,151,195,151,198,151,200,151,203,151,220,151,237,151,
79,159,242,151,223,122,246,151,245,151,15,152,12,152,56,152,
36,152,33,152,55,152,61,152,70,152,79,152,75,152,107,152,
111,152,112,152,113,152,116,152,115,152,170,152,175,152,177,152,
182,152,196,152,195,152,198,152,233,152,235,152,3,153,9,153,
18,153,20,153,24,153,33,153,29,153,30,153,36,153,32,153,
44,153,46,153,61,153,62,153,66,153,73,153,69,153,80,153,
75,153,81,153,82,153,76,153,85,153,151,153,152,153,165,153,
173,153,174,153,188,153,223,153,219,153,221,153,216,153,209,153,
237,153,238,153,241,153,242,153,251,153,248,153,1,154,15,154,
5,154,226,153,25,154,43,154,55,154,69,154,66,154,64,154,
67,154,62,154,85,154,77,154,91,154,87,154,95,154,98,154,
101,154,100,154,105,154,107,154,106,154,173,154,176,154,188,154,
192,154,207,154,209,154,211,154,212,154,222,154,223,154,226,154,
227,154,230,154,239,154,235,154,238,154,244,154,241,154,247,154,
251,154,6,155,24,155,26,155,31,155,34,155,35,155,37,155,
39,155,40,155,41,155,42,155,46,155,47,155,50,155,68,155,
67,155,79,155,77,155,78,155,81,155,88,155,116,155,147,155,
131,155,145,155,150,155,151,155,159,155,160,155,168,155,180,155,
192,155,202,155,185,155,198,155,207,155,209,155,210,155,227,155,
226,155,228,155,212,155,225,155,58,156,242,155,241,155,240,155,
21,156,20,156,9,156,19,156,12,156,6,156,8,156,18,156,
10,156,4,156,46,156,27,156,37,156,36,156,33,156,48,156,
71,156,50,156,70,156,62,156,90,156,96,156,103,156,118,156,
120,156,231,156,236,156,240,156,9,157,8,157,235,156,3,157,
6,157,42,157,38,157,175,157,35,157,31,157,68,157,21,157,
18,157,65,157,63,157,62,157,70,157,72,157,93,157,94,157,
100,157,81,157,80,157,89,157,114,157,137,157,135,157,171,157,
111,157,122,157,154,157,164,157,169,157,178,157,196,157,193,157,
187,157,184,157,186,157,198,157,207,157,194,157,217,157,211,157,
248,157,230,157,237,157,239,157,253,157,26,158,27,158,30,158,
117,158,121,158,125,158,129,158,136,158,139,158,140,158,146,158,
149,158,145,158,157,158,165,158,169,158,184,158,170,158,173,158,
97,151,204,158,206,158,207,158,208,158,212,158,220,158,222,158,
221,158,224,158,229,158,232,158,239,158,244,158,246,158,247,158,
249,158,251,158,252,158,253,158,7,159,8,159,183,118,21,159,
33,159,44,159,62,159,74,159,82,159,84,159,99,159,95,159,
96,159,97,159,102,159,103,159,108,159,106,159,119,159,114,159,
118,159,149,159,156,159,160,159,47,88,199,105,89,144,100,116,
220,81,153,113,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255,
254,255,254,255,0,224,1,224,2,224,3,224,4,224,5,224,
6,224,7,224,8,224,9,224,10,224,11,224,12,224,13,224,
14,224,15,224,16,224,17,224,18,224,19,224,20,224,21,224,
22,224,23,224,24,224,25,224,26,224,27,224,28,224,29,224,
30,224,31,224,32,224,33,224,34,224,35,224,36,224,37,224,
38,224,39,224,40,224,41,224,42,224,43,224,44,224,45,224,
46,224,47,224,48,224,49,224,50,224,51,224,52,224,53,224,
54,224,55,224,56,224,57,224,58,224,59,224,60,224,61,224,
62,224,63,224,64,224,65,224,66,224,67,224,68,224,69,224,
70,224,71,224,72,224,73,224,74,224,75,224,76,224,77,224,
78,224,79,224,80,224,81,224,82,224,83,224,84,224,85,224,
86,224,87,224,88,224,89,224,90,224,91,224,92,224,93,224,
94,224,95,224,96,224,97,224,98,224,99,224,100,224,101,224,
102,224,103,224,104,224,105,224,106,224,107,224,108,224,109,224,
110,224,111,224,112,224,113,224,114,224,115,224,116,224,117,224,
118,224,119,224,120,224,121,224,122,224,123,224,124,224,125,224,
126,224,127,224,128,224,129,224,130,224,131,224,132,224,133,224,
134,224,135,224,136,224,137,224,138,224,139,224,140,224,141,224,
142,224,143,224,144,224,145,224,146,224,147,224,148,224,149,224,
150,224,151,224,152,224,153,224,154,224,155,224,156,224,157,224,
158,224,159,224,160,224,161,224,162,224,163,224,164,224,165,224,
166,224,167,224,168,224,169,224,170,224,171,224,172,224,173,224,
174,224,175,224,176,224,177,224,178,224,179,224,180,224,181,224,
182,224,183,224,184,224,185,224,186,224,187,224,188,224,189,224,
190,224,191,224,192,224,193,224,194,224,195,224,196,224,197,224,
198,224,199,224,200,224,201,224,202,224,203,224,204,224,205,224,
206,224,207,224,208,224,209,224,210,224,211,224,212,224,213,224,
214,224,215,224,216,224,217,224,218,224,219,224,220,224,221,224,
222,224,223,224,224,224,225,224,226,224,227,224,228,224,229,224,
230,224,231,224,232,224,233,224,234,224,235,224,236,224,237,224,
238,224,239,224,240,224,241,224,242,224,243,224,244,224,245,224,
246,224,247,224,248,224,249,224,250,224,251,224,252,224,253,224,
254,224,255,224,0,225,1,225,2,225,3,225,4,225,5,225,
6,225,7,225,8,225,9,225,10,225,11,225,12,225,13,225,
14,225,15,225,16,225,17,225,18,225,19,225,20,225,21,225,
22,225,23,225,24,225,25,225,26,225,27,225,28,225,29,225,
30,225,31,225,32,225,33,225,34,225,35,225,36,225,37,225,
38,225,39,225,40,225,41,225,42,225,43,225,44,225,45,225,
46,225,47,225,48,225,49,225,50,225,51,225,52,225,53,225,
54,225,55,225,56,225,57,225,58,225,59,225,60,225,61,225,
62,225,63,225,64,225,65,225,66,225,67,225,68,225,69,225,
70,225,71,225,72,225,73,225,74,225,75,225,76,225,77,225,
78,225,79,225,80,225,81,225,82,225,83,225,84,225,85,225,
86,225,87,225,88,225,89,225,90,225,91,225,92,225,93,225,
94,225,95,225,96,225,97,225,98,225,99,225,100,225,101,225,
102,225,103,225,104,225,105,225,106,225,107,225,108,225,109,225,
110,225,111,225,112,225,113,225,114,225,115,225,116,225,117,225,
118,225,119,225,120,225,121,225,122,225,123,225,124,225,125,225,
126,225,127,225,128,225,129,225,130,225,131,225,132,225,133,225,
134,225,135,225,136,225,137,225,138,225,139,225,140,225,141,225,
142,225,143,225,144,225,145,225,146,225,147,225,148,225,149,225,
150,225,151,225,152,225,153,225,154,225,155,225,156,225,157,225,
158,225,159,225,160,225,161,225,162,225,163,225,164,225,165,225,
166,225,167,225,168,225,169,225,170,225,171,225,172,225,173,225,
174,225,175,225,176,225,177,225,178,225,179,225,180,225,181,225,
182,225,183,225,184,225,185,225,186,225,187,225,188,225,189,225,
190,225,191,225,192,225,193,225,194,225,195,225,196,225,197,225,
198,225,199,225,200,225,201,225,202,225,203,225,204,225,205,225,
206,225,207,225,208,225,209,225,210,225,211,225,212,225,213,225,
214,225,215,225,216,225,217,225,218,225,219,225,220,225,221,225,
222,225,223,225,224,225,225,225,226,225,227,225,228,225,229,225,
230,225,231,225,232,225,233,225,234,225,235,225,236,225,237,225,
238,225,239,225,240,225,241,225,242,225,243,225,244,225,245,225,
246,225,247,225,248,225,249,225,250,225,251,225,252,225,253,225,
254,225,255,225,0,226,1,226,2,226,3,226,4,226,5,226,
6,226,7,226,8,226,9,226,10,226,11,226,12,226,13,226,
14,226,15,226,16,226,17,226,18,226,19,226,20,226,21,226,
22,226,23,226,24,226,25,226,26,226,27,226,28,226,29,226,
30,226,31,226,32,226,33,226,34,226,35,226,36,226,37,226,
38,226,39,226,40,226,41,226,42,226,43,226,44,226,45,226,
46,226,47,226,48,226,49,226,50,226,51,226,52,226,53,226,
54,226,55,226,56,226,57,226,58,226,59,226,60,226,61,226,
62,226,63,226,64,226,65,226,66,226,67,226,68,226,69,226,
70,226,71,226,72,226,73,226,74,226,75,226,76,226,77,226,
78,226,79,226,80,226,81,226,82,226,83,226,84,226,85,226,
86,226,87,226,88,226,89,226,90,226,91,226,92,226,93,226,
94,226,95,226,96,226,97,226,98,226,99,226,100,226,101,226,
102,226,103,226,104,226,105,226,106,226,107,226,108,226,109,226,
110,226,111,226,112,226,113,226,114,226,115,226,116,226,117,226,
118,226,119,226,120,226,121,226,122,226,123,226,124,226,125,226,
126,226,127,226,128,226,129,226,130,226,131,226,132,226,133,226,
134,226,135,226,136,226,137,226,138,226,139,226,140,226,141,226,
142,226,143,226,144,226,145,226,146,226,147,226,148,226,149,226,
150,226,151,226,152,226,153,226,154,226,155,226,156,226,157,226,
158,226,159,226,160,226,161,226,162,226,163,226,164,226,165,226,
166,226,167,226,168,226,169,226,170,226,171,226,172,226,173,226,
174,226,175,226,176,226,177,226,178,226,179,226,180,226,181,226,
182,226,183,226,184,226,185,226,186,226,187,226,188,226,189,226,
190,226,191,226,192,226,193,226,194,226,195,226,196,226,197,226,
198,226,199,226,200,226,201,226,202,226,203,226,204,226,205,226,
206,226,207,226,208,226,209,226,210,226,211,226,212,226,213,226,
214,226,215,226,216,226,217,226,218,226,219,226,220,226,221,226,
222,226,223,226,224,226,225,226,226,226,227,226,228,226,229,226,
230,226,231,226,232,226,233,226,234,226,235,226,236,226,237,226,
238,226,239,226,240,226,241,226,242,226,243,226,244,226,245,226,
246,226,247,226,248,226,249,226,250,226,251,226,252,226,253,226,
254,226,255,226,0,227,1,227,2,227,3,227,4,227,5,227,
6,227,7,227,8,227,9,227,10,227,11,227,12,227,13,227,
14,227,15,227,16,227,17,227,18,227,19,227,20,227,21,227,
22,227,23,227,24,227,25,227,26,227,27,227,28,227,29,227,
30,227,31,227,32,227,33,227,34,227,35,227,36,227,37,227,
38,227,39,227,40,227,41,227,42,227,43,227,44,227,45,227,
46,227,47,227,48,227,49,227,50,227,51,227,52,227,53,227,
54,227,55,227,56,227,57,227,58,227,59,227,60,227,61,227,
62,227,63,227,64,227,65,227,66,227,67,227,68,227,69,227,
70,227,71,227,72,227,73,227,74,227,75,227,76,227,77,227,
78,227,79,227,80,227,81,227,82,227,83,227,84,227,85,227,
86,227,87,227,88,227,89,227,90,227,91,227,92,227,93,227,
94,227,95,227,96,227,97,227,98,227,99,227,100,227,101,227,
102,227,103,227,104,227,105,227,106,227,107,227,108,227,109,227,
110,227,111,227,112,227,113,227,114,227,115,227,116,227,117,227,
118,227,119,227,120,227,121,227,122,227,123,227,124,227,125,227,
126,227,127,227,128,227,129,227,130,227,131,227,132,227,133,227,
134,227,135,227,136,227,137,227,138,227,139,227,140,227,141,227,
142,227,143,227,144,227,145,227,146,227,147,227,148,227,149,227,
150,227,151,227,152,227,153,227,154,227,155,227,156,227,157,227,
158,227,159,227,160,227,161,227,162,227,163,227,164,227,165,227,
166,227,167,227,168,227,169,227,170,227,171,227,96,0,160,0,
32,0,32,0,32,0,32,0,32,0,32,0,224,0,20,1,
32,0,32,0,84,1,32,0,32,0,32,0,32,0,32,0,
32,0,120,1,184,1,248,1,56,2,120,2,184,2,248,2,
56,3,120,3,184,3,248,3,56,4,120,4,184,4,248,4,
56,5,120,5,184,5,248,5,56,6,120,6,32,0,32,0,
32,0,32,0,32,0,32,0,32,0,32,0,32,0,32,0,
32,0,32,0,32,0,32,0,32,0,32,0,184,6,248,6,
32,0,32,0,32,0,32,0,50,7,85,7,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,4,0,254,255,
5,0,255,255,6,0,255,255,7,0,255,255,8,0,255,255,
9,0,255,239,10,0,255,255,11,0,255,191,12,0,255,63,
13,0,255,255,14,0,140,17,15,0,83,0,16,0,0,0,
17,0,128,0,18,0,0,0,19,0,128,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,
21,0,254,255,22,0,251,3,23,0,254,255,24,0,251,3,
25,0,0,0,26,0,0,0,27,0,0,0,28,0,2,0,
29,0,255,255,30,0,255,255,31,0,255,255,32,0,255,255,
33,0,2,0,34,0,0,0,35,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,
36,0,1,51,37,0,99,0,38,0,13,8,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,39,0,8,0,
40,0,64,0,41,0,2,8,42,0,0,0,42,0,0,0,
43,0,0,0,44,0,255,3,45,0,255,3,46,0,0,0,
47,0,15,0,48,0,0,0,49,0,0,0,49,0,0,0,
50,0,20,0,51,0,0,0,52,0,0,0,53,0,141,9,
54,0,0,100,55,0,129,31,56,0,48,32,57,0,0,0,
58,0,4,0,59,0,195,12,60,0,0,0,61,0,204,0,
62,0,0,0,63,0,32,0,64,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,
65,0,4,0,66,0,0,0,67,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,68,0,15,144,
69,0,153,57,70,0,57,153,71,0,153,153,72,0,4,8,
73,0,0,0,74,0,0,0,75,0,0,0,74,0,0,0,
75,0,0,0,76,0,3,0,77,0,12,48,78,0,192,200,
79,0,0,0,80,0,0,128,81,0,0,0,82,0,96,0,
83,0,0,0,84,0,0,0,85,0,0,0,86,0,5,0,
87,0,0,0,88,0,0,164,89,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,90,0,239,255,
91,0,63,0,92,0,0,0,93,0,0,0,94,0,254,255,
95,0,255,255,96,0,255,255,97,0,255,255,98,0,255,255,
99,0,15,120,100,0,254,255,101,0,255,255,102,0,255,255,
103,0,255,255,104,0,255,255,105,0,127,120,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,
107,0,0,0,108,0,0,0,109,0,2,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,110,0,139,111,
111,0,243,67,112,0,66,37,113,0,70,155,114,0,44,232,
115,0,224,227,116,0,4,0,117,0,10,64,118,0,101,95,
119,0,54,219,120,0,119,121,121,0,73,4,122,0,215,236,
123,0,240,227,124,0,58,96,125,0,197,24,126,0,11,230,
127,0,3,52,128,0,0,128,129,0,81,55,130,0,200,224,
131,0,235,126,132,0,0,130,133,0,105,152,134,0,72,173,
135,0,86,45,136,0,3,232,137,0,96,128,138,0,28,102,
139,0,147,173,140,0,58,192,141,0,104,197,142,0,96,170,
143,0,86,198,144,0,126,63,145,0,64,2,146,0,205,131,
147,0,97,20,148,0,32,16,149,0,117,33,150,0,33,32,
151,0,18,7,152,0,0,48,153,0,188,64,154,0,36,166,
155,0,98,69,156,0,168,96,157,0,48,10,158,0,23,2,
159,0,116,133,160,0,2,4,161,0,132,156,162,0,251,127,
163,0,21,20,164,0,52,127,165,0,226,17,166,0,101,182,
167,0,239,34,168,0,117,31,169,0,255,96,170,0,112,58,
171,0,64,56,172,0,195,54,173,0,99,103,174,0,217,77,
175,0,178,32,176,0,176,70,177,0,201,15,178,0,152,188,
179,0,80,72,180,0,56,134,181,0,63,160,182,0,136,35,
183,0,22,152,184,0,73,190,185,0,50,82,186,0,171,34,
187,0,164,235,188,0,221,0,189,0,44,199,190,0,231,161,
191,0,225,38,192,0,27,132,193,0,10,143,194,0,235,39,
195,0,158,85,196,0,65,194,197,0,191,137,198,0,20,0,
199,0,72,133,200,0,97,99,201,0,77,8,202,0,12,127,
203,0,208,170,204,0,62,255,205,0,207,5,206,0,26,255,
207,0,3,168,208,0,65,122,209,0,64,123,210,0,69,71,
211,0,2,128,212,0,0,5,213,0,235,56,214,0,81,220,
215,0,5,16,216,0,52,155,217,0,12,113,218,0,151,3,
219,0,0,1,220,0,102,99,221,0,4,164,222,0,208,128,
223,0,81,0,224,0,0,192,225,0,10,67,226,0,113,144,
227,0,200,48,228,0,8,0,229,0,0,88,230,0,217,14,
231,0,0,247,232,0,128,95,233,0,65,0,234,0,176,0,
235,0,16,148,236,0,24,0,237,0,128,98,238,0,64,2,
239,0,208,9,240,0,0,130,241,0,86,1,242,0,4,80,
243,0,1,8,244,0,16,29,245,0,16,5,246,0,193,132,
247,0,16,0,248,0,37,64,249,0,80,16,250,0,15,65,
251,0,138,77,252,0,9,64,253,0,13,166,254,0,25,171,
255,0,76,145,0,1,192,33,1,1,129,9,2,1,133,196,
3,1,3,2,4,1,114,6,5,1,0,128,6,1,4,11,
7,1,8,0,8,1,29,20,9,1,9,0,10,1,201,73,
11,1,92,144,12,1,9,0,13,1,144,22,14,1,101,12,
15,1,32,34,16,1,18,132,17,1,51,36,18,1,3,12,
19,1,150,71,20,1,4,10,21,1,37,66,22,1,40,0,
23,1,136,208,24,1,0,73,25,1,12,79,26,1,162,20,
27,1,170,211,28,1,48,216,29,1,135,62,30,1,4,142,
31,1,97,31,32,1,164,126,33,1,134,65,34,1,144,195,
35,1,187,45,36,1,173,87,37,1,24,33,38,1,30,36,
39,1,72,42,40,1,56,17,41,1,4,78,42,1,64,10,
43,1,27,22,44,1,96,13,45,1,64,136,46,1,10,2,
47,1,2,149,48,1,33,130,49,1,96,16,50,1,67,2,
51,1,0,4,52,1,68,20,53,1,0,128,54,1,0,0,
55,1,4,12,56,1,0,0,57,1,0,112,58,1,6,26,
59,1,193,0,60,1,74,2,61,1,0,12,62,1,0,26,
63,1,64,0,64,1,4,20,65,1,69,64,66,1,41,0,
67,1,243,189,68,1,120,10,69,1,43,5,70,1,169,187,
71,1,160,191,72,1,124,64,73,1,121,131,74,1,253,18,
75,1,29,233,76,1,246,91,77,1,105,197,78,1,246,239,
79,1,74,68,80,1,21,33,81,1,2,255,82,1,99,237,
83,1,43,64,84,1,51,208,85,1,66,2,86,1,0,16,
87,1,19,0,88,1,66,27,89,1,202,93,90,1,160,0,
91,1,0,2,92,1,3,167,93,1,97,44,94,1,128,72,
95,1,242,143,96,1,132,2,97,1,0,0,98,1,4,88,
99,1,13,16,100,1,0,178,101,1,72,0,102,1,148,24,
103,1,1,32,104,1,4,80,105,1,128,55,106,1,0,50,
107,1,77,104,108,1,234,73,109,1,190,104,110,1,76,24,
111,1,66,46,112,1,32,168,113,1,201,33,114,1,185,80,
115,1,176,128,116,1,30,0,117,1,124,255,118,1,154,132,
119,1,224,20,120,1,193,40,121,1,224,1,122,1,14,135,
123,1,73,172,124,1,15,19,125,1,219,221,126,1,26,190,
127,1,251,137,128,1,226,162,129,1,178,81,130,1,34,85,
131,1,202,50,132,1,198,62,133,1,139,146,134,1,191,29,
135,1,143,67,136,1,3,103,137,1,152,50,138,1,40,48,
139,1,192,115,140,1,17,8,141,1,35,169,142,1,0,192,
143,1,101,58,144,1,227,143,145,1,2,4,146,1,78,44,
147,1,37,166,148,1,61,191,149,1,161,0,150,1,58,62,
151,1,212,140,152,1,201,6,153,1,124,49,154,1,224,0,
155,1,42,213,156,1,139,1,157,1,223,14,158,1,75,227,
159,1,34,140,160,1,131,17,161,1,145,240,162,1,148,125,
163,1,40,167,164,1,172,201,165,1,251,64,166,1,132,68,
167,1,83,7,168,1,144,90,169,1,68,68,170,1,200,63,
171,1,1,0,172,1,72,0,173,1,212,245,174,1,1,119,
175,1,95,236,176,1,66,196,177,1,29,137,178,1,131,107,
179,1,40,73,180,1,9,65,181,1,66,210,182,1,29,6,
183,1,254,89,184,1,64,24,185,1,34,58,186,1,228,183,
187,1,159,59,188,1,3,240,189,1,234,192,190,1,134,19,
191,1,2,130,192,1,128,137,193,1,0,228,194,1,0,178,
195,1,161,16,196,1,128,75,197,1,196,12,198,1,9,211,
199,1,68,137,200,1,175,31,201,1,52,72,202,1,89,130,
203,1,69,12,204,1,10,66,205,1,112,4,206,1,64,160,
207,1,200,16,208,1,64,49,209,1,80,68,210,1,4,64,
211,1,0,1,212,1,129,130,213,1,64,5,214,1,8,1,
215,1,44,100,216,1,48,106,217,1,5,26,218,1,166,96,
219,1,20,5,220,1,207,144,221,1,86,100,222,1,33,0,
223,1,0,49,224,1,24,156,225,1,240,203,226,1,32,225,
227,1,226,99,228,1,76,16,229,1,181,1,230,1,140,83,
231,1,131,154,232,1,178,184,233,1,129,50,234,1,122,152,
235,1,132,10,236,1,231,51,237,1,2,12,238,1,205,214,
239,1,56,208,240,1,177,225,241,1,114,152,242,1,30,138,
243,1,132,226,244,1,244,195,245,1,89,4,246,1,154,67,
247,1,194,35,248,1,69,72,249,1,20,211,250,1,146,2,
251,1,64,54,252,1,65,2,253,1,189,255,254,1,9,235,
255,1,240,232,0,2,192,125,1,2,210,165,2,2,66,194,
3,2,75,210,4,2,127,164,5,2,175,208,6,2,160,26,
7,2,161,52,8,2,71,130,9,2,216,11,10,2,83,196,
11,2,27,101,12,2,148,210,13,2,58,200,14,2,30,0,
15,2,200,64,16,2,6,14,17,2,20,51,18,2,95,97,
19,2,31,178,20,2,136,0,21,2,208,192,22,2,42,160,
23,2,152,168,24,2,197,161,25,2,107,22,26,2,80,175,
27,2,180,133,28,2,139,192,29,2,4,6,30,2,51,249,
31,2,4,30,32,2,110,5,33,2,81,162,34,2,0,4,
35,2,56,118,36,2,7,237,37,2,184,115,38,2,6,68,
39,2,50,25,40,2,129,64,41,2,22,200,42,2,138,124,
43,2,9,99,44,2,132,41,45,2,4,170,46,2,36,28,
47,2,156,202,48,2,14,78,49,2,97,39,50,2,208,9,
51,2,0,131,52,2,70,8,53,2,12,193,54,2,17,96,
55,2,129,16,56,2,13,84,57,2,8,9,58,2,14,0,
59,2,10,204,60,2,20,5,61,2,0,12,62,2,48,4,
63,2,68,160,64,2,139,0,65,2,132,103,66,2,136,82,
67,2,25,138,68,2,94,134,69,2,24,139,70,2,89,46,
71,2,96,65,72,2,16,140,73,2,190,156,74,2,97,104,
75,2,92,137,76,2,0,152,77,2,8,0,78,2,0,129,
79,2,154,8,80,2,24,0,81,2,144,193,82,2,7,64,
83,2,161,244,84,2,5,133,85,2,13,100,86,2,78,49,
87,2,77,14,88,2,6,72,89,2,10,255,90,2,50,22,
91,2,168,46,92,2,46,133,93,2,11,0,94,2,16,24,
95,2,132,202,96,2,32,14,97,2,108,105,98,2,50,0,
99,2,0,22,100,2,88,214,101,2,144,3,102,2,160,81,
103,2,104,26,104,2,0,144,105,2,36,17,106,2,225,152,
107,2,38,67,108,2,82,93,109,2,174,31,110,2,160,15,
111,2,40,174,112,2,251,250,113,2,0,87,114,2,8,100,
115,2,64,153,116,2,128,200,117,2,68,192,118,2,5,144,
119,2,65,177,120,2,36,132,121,2,196,164,122,2,52,26,
123,2,58,96,124,2,0,144,125,2,148,193,126,2,70,130,
127,2,58,0,128,2,13,24,129,2,6,193,130,2,34,0,
131,2,16,153,132,2,80,224,133,2,17,21,134,2,87,65,
135,2,130,0,136,2,26,4,137,2,42,2,138,2,79,0,
139,2,48,137,140,2,19,216,141,2,106,68,142,2,162,138,
143,2,34,237,144,2,192,17,145,2,5,64,146,2,0,16,
147,2,2,1,148,2,8,136,149,2,1,49,150,2,32,70,
151,2,4,2,152,2,0,248,153,2,8,15,154,2,0,137,
155,2,0,162,156,2,0,0,157,2,2,34,158,2,16,130,
159,2,16,22,160,2,66,0,161,2,64,16,162,2,192,82,
163,2,96,18,164,2,244,82,165,2,0,32,166,2,16,133,
167,2,48,130,168,2,0,17,169,2,2,66,170,2,10,67,
171,2,181,128,172,2,225,112,173,2,32,218,174,2,64,32,
175,2,1,8,176,2,0,53,177,2,101,252,178,2,193,25,
179,2,4,171,180,2,134,2,181,2,20,98,182,2,135,0,
183,2,68,0,184,2,133,144,185,2,70,66,186,2,92,64,
187,2,133,10,188,2,7,50,189,2,128,51,190,2,0,4,
191,2,192,184,192,2,48,206,193,2,208,192,194,2,48,192,
195,2,128,0,196,2,8,5,197,2,165,13,198,2,144,10,
199,2,64,0,200,2,0,2,201,2,12,40,202,2,5,103,
203,2,68,64,204,2,41,100,205,2,34,65,206,2,232,2,
207,2,0,0,208,2,100,70,209,2,124,132,210,2,2,0,
211,2,32,222,212,2,29,134,213,2,73,64,214,2,8,10,
215,2,0,192,216,2,132,0,217,2,1,32,218,2,0,132,
219,2,16,16,220,2,205,66,221,2,199,1,222,2,58,112,
223,2,42,213,224,2,104,153,225,2,143,29,226,2,80,190,
227,2,18,62,228,2,245,174,229,2,217,129,230,2,196,206,
231,2,18,36,232,2,40,8,233,2,46,115,234,2,172,36,
235,2,52,75,236,2,12,2,237,2,29,212,238,2,2,42,
239,2,0,128,240,2,151,0,241,2,17,8,242,2,196,17,
243,2,68,17,244,2,134,23,245,2,69,125,246,2,221,73,
247,2,73,94,248,2,64,64,249,2,145,135,250,2,76,37,
251,2,196,216,252,2,186,68,253,2,20,73,254,2,146,27,
255,2,0,200,0,3,113,2,1,3,128,21,2,3,193,0,
3,3,0,12,4,3,106,9,5,3,0,194,6,3,0,72,
7,3,2,64,8,3,33,48,9,3,73,186,10,3,128,32,
11,3,128,28,12,3,172,226,13,3,8,16,14,3,4,16,
15,3,52,0,16,3,227,0,17,3,20,132,18,3,32,64,
19,3,0,32,20,3,16,152,21,3,20,20,22,3,194,112,
23,3,170,4,24,3,136,134,25,3,32,84,26,3,98,12,
27,3,19,4,28,3,128,145,29,3,16,32,30,3,130,64,
31,3,6,2,32,3,64,28,33,3,1,84,34,3,131,3,
35,3,233,228,36,3,37,33,37,3,128,132,38,3,51,228,
39,3,16,40,40,3,192,68,41,3,9,230,42,3,3,10,
43,3,38,129,44,3,218,18,45,3,1,8,46,3,1,105,
47,3,144,151,48,3,1,64,49,3,134,248,50,3,77,226,
51,3,129,0,52,3,14,10,53,3,81,166,54,3,26,1,
55,3,236,129,56,3,0,198,57,3,65,132,58,3,184,173,
59,3,46,182,60,3,239,172,61,3,65,135,62,3,84,141,
63,3,2,75,64,3,97,17,65,3,104,2,66,3,96,187,
67,3,87,32,68,3,160,80,69,3,51,4,70,3,192,168,
71,3,180,247,72,3,2,36,73,3,18,1,74,3,211,154,
75,3,0,32,76,3,113,34,77,3,200,0,78,3,129,32,
79,3,158,128,80,3,138,12,81,3,128,225,82,3,9,176,
83,3,81,129,84,3,49,16,85,3,40,64,86,3,14,42,
87,3,165,137,88,3,182,105,89,3,14,98,90,3,37,68,
91,3,68,209,92,3,133,128,93,3,84,77,94,3,117,44,
95,3,177,31,96,3,7,216,97,3,45,134,98,3,124,217,
99,3,65,88,100,3,78,65,101,3,110,34,102,3,0,130,
103,3,8,158,104,3,13,248,105,3,183,237,106,3,128,140,
107,3,102,117,108,3,19,147,109,3,20,8,110,3,50,14,
111,3,4,200,112,3,78,72,113,3,166,110,114,3,74,44,
115,3,116,102,116,3,192,38,117,3,1,186,118,3,12,215,
119,3,93,24,120,3,0,0,121,3,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,120,3,0,0,
121,3,0,0,122,3,0,0,123,3,64,5,124,3,160,112,
125,3,51,129,126,3,129,79,127,3,165,3,128,3,236,85,
129,3,16,100,130,3,26,195,131,3,68,35,132,3,98,20,
133,3,52,0,134,3,67,10,135,3,9,26,136,3,123,24,
137,3,165,19,138,3,2,1,139,3,72,168,140,3,64,4,
141,3,68,197,142,3,6,129,143,3,221,226,144,3,240,26,
145,3,72,45,146,3,38,182,147,3,22,4,148,3,88,80,
149,3,64,110,150,3,50,128,151,3,18,49,152,3,228,7,
153,3,0,12,154,3,8,130,155,3,10,66,156,3,64,72,
157,3,59,128,158,3,96,72,159,3,19,135,160,3,13,133,
161,3,40,52,162,3,25,3,163,3,41,229,164,3,69,35,
165,3,10,135,166,3,169,37,167,3,24,92,168,3,166,119,
169,3,197,217,170,3,0,94,171,3,232,3,172,3,129,0,
173,3,0,167,174,3,84,205,175,3,198,65,176,3,0,40,
177,3,4,162,178,3,96,184,179,3,10,43,180,3,32,0,
181,3,158,218,182,3,234,8,183,3,26,14,184,3,126,66,
185,3,192,17,186,3,8,137,187,3,118,3,188,3,33,134,
189,3,5,1,190,3,4,0,191,3,168,152,192,3,160,70,
193,3,72,196,194,3,5,13,195,3,34,32,196,3,162,84,
197,3,72,145,198,3,1,138,199,3,215,40,200,3,152,120,
201,3,8,0,202,3,5,22,203,3,34,49,204,3,64,67,
205,3,128,8,206,3,78,250,207,3,162,6,208,3,20,8,
209,3,17,146,210,3,2,32,211,3,20,155,212,3,82,46,
213,3,67,22,214,3,0,80,215,3,16,144,216,3,65,0,
217,3,186,133,218,3,66,48,219,3,32,32,220,3,11,79,
221,3,168,7,222,3,8,47,223,3,128,64,224,3,145,5,
225,3,147,26,226,3,80,223,227,3,1,6,228,3,2,162,
229,3,33,48,230,3,48,6,231,3,128,78,232,3,196,12,
233,3,200,4,234,3,4,160,235,3,1,128,236,3,0,96,
237,3,49,212,238,3,128,8,239,3,2,10,240,3,0,28,
241,3,40,0,242,3,24,142,243,3,65,0,244,3,208,106,
245,3,16,202,246,3,16,242,247,3,0,75,248,3,77,39,
249,3,6,21,250,3,32,2,251,3,144,136,252,3,0,90,
253,3,168,130,254,3,73,69,255,3,80,129,0,4,4,32,
1,4,0,128,2,4,4,136,3,4,8,44,4,4,209,8,
5,4,5,0,6,4,1,128,7,4,196,74,8,4,160,224,
9,4,98,0,10,4,142,0,11,4,66,10,12,4,85,48,
13,4,140,106,14,4,14,9,15,4,165,224,16,4,6,41,
17,4,196,66,18,4,20,72,19,4,179,128,20,4,62,128,
21,4,48,179,22,4,2,1,23,4,60,115,24,4,148,20,
25,4,13,112,26,4,32,12,27,4,64,9,28,4,26,48,
29,4,64,192,30,4,81,164,31,4,148,192,32,4,202,141,
33,4,200,5,34,4,194,150,35,4,12,164,36,4,1,0,
37,4,4,52,38,4,200,0,39,4,16,1,40,4,13,85,
41,4,205,169,42,4,40,36,43,4,218,28,44,4,66,1,
45,4,55,72,46,4,77,122,47,4,15,18,48,4,180,50,
49,4,42,69,50,4,251,49,51,4,5,210,52,4,148,184,
53,4,68,220,54,4,215,104,55,4,202,69,56,4,151,80,
57,4,209,46,58,4,67,25,59,4,8,66,60,4,2,210,
61,4,72,157,62,4,64,152,63,4,151,160,64,4,9,84,
65,4,77,6,66,4,0,0,67,4,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,66,4,0,0,
67,4,0,0,68,4,0,0,69,4,128,132,70,4,66,85,
71,4,33,4,72,4,6,28,73,4,0,23,74,4,36,118,
75,4,16,97,76,4,135,255,77,4,221,185,78,4,159,101,
79,4,10,92,80,4,93,36,81,4,17,60,82,4,176,173,
83,4,93,0,84,4,0,0,85,4,0,0,84,4,0,0,
85,4,0,0,86,4,208,40,87,4,219,0,88,4,34,4,
89,4,0,2,90,4,8,1,91,4,8,68,92,4,4,152,
93,4,64,172,94,4,10,141,95,4,40,144,96,4,0,135,
97,4,1,224,98,4,0,4,99,4,49,0,100,4,148,23,
101,4,33,130,102,4,25,0,103,4,84,16,104,4,178,44,
105,4,26,2,106,4,2,156,107,4,3,64,108,4,96,189,
109,4,4,136,110,4,12,8,111,4,0,121,112,4,40,22,
113,4,60,186,114,4,64,134,115,4,8,203,116,4,116,114,
117,4,128,144,118,4,30,0,119,4,0,0,119,4,0,0,
120,4,0,216,121,4,136,225,122,4,135,156,123,4,52,64,
124,4,18,4,125,4,100,174,126,4,145,39,127,4,107,232,
128,4,251,230,129,4,143,64,130,4,102,83,131,4,166,238,
132,4,127,83,133,4,171,227,134,4,228,181,135,4,159,134,
136,4,2,0,137,4,72,133,138,4,34,1,139,4,2,68,
140,4,0,72,141,4,22,33,142,4,160,32,143,4,4,0,
144,4,36,2,145,4,128,32,146,4,5,0,147,4,0,126,
148,4,84,1,149,4,44,22,150,4,172,1,151,4,132,42,
152,4,133,16,153,4,20,140,154,4,48,5,155,4,195,251,
156,4,195,253,157,4,250,96,158,4,96,144,159,4,64,100,
160,4,51,64,161,4,0,18,162,4,144,150,163,4,49,75,
164,4,131,78,165,4,212,0,166,4,130,65,167,4,41,1,
168,4,106,29,169,4,128,32,170,4,128,2,171,4,0,128,
172,4,173,2,173,4,145,38,174,4,12,159,175,4,68,128,
176,4,1,103,177,4,111,217,178,4,36,12,179,4,16,41,
180,4,208,24,181,4,1,80,182,4,33,80,183,4,0,16,
184,4,208,4,185,4,144,112,186,4,1,2,187,4,72,1,
188,4,195,97,189,4,50,1,190,4,0,1,191,4,136,0,
192,4,25,7,193,4,2,8,194,4,98,5,195,4,50,1,
196,4,14,76,197,4,5,4,198,4,161,240,199,4,2,0,
200,4,0,0,201,4,0,0,202,4,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,200,4,0,0,
201,4,0,0,202,4,0,0,203,4,128,0,204,4,141,142,
205,4,94,3,206,4,189,33,207,4,4,90,208,4,136,52,
209,4,112,17,210,4,38,0,211,4,0,0,211,4,0,0,
212,4,0,16,213,4,2,197,214,4,4,136,215,4,21,184,
216,4,1,248,217,4,124,20,218,4,237,37,219,4,96,237,
220,4,176,59,221,4,137,133,222,4,215,27,223,4,243,122,
224,4,98,26,225,4,12,13,226,4,197,10,227,4,209,229,
228,4,74,82,229,4,144,4,230,4,13,107,231,4,92,163,
232,4,102,82,233,4,87,43,234,4,18,22,235,4,114,168,
236,4,1,17,237,4,73,41,238,4,24,0,239,4,72,9,
240,4,8,16,241,4,0,96,242,4,108,136,243,4,110,145,
244,4,143,5,245,4,18,48,246,4,144,57,247,4,64,248,
248,4,176,73,249,4,160,136,250,4,27,0,251,4,0,0,
252,4,0,0,253,4,0,133,254,4,66,0,255,4,88,0,
0,5,0,152,1,5,4,234,2,5,20,112,3,5,40,22,
4,5,29,97,5,5,147,81,6,5,0,96,7,5,36,26,
8,5,167,0,9,5,0,0,10,5,0,0,10,5,0,0,
11,5,192,67,12,5,32,113,13,5,24,16,14,5,114,1,
15,5,39,169,16,5,4,96,17,5,6,137,18,5,34,192,
19,5,12,2,20,5,0,9,21,5,129,64,22,5,45,96,
23,5,160,140,24,5,52,14,25,5,0,0,25,5,0,0,
26,5,0,0,27,5,0,33,28,5,1,17,29,5,17,128,
30,5,26,211,31,5,76,236,32,5,146,8,33,5,64,0,
34,5,0,133,35,5,172,199,36,5,6,24,37,5,62,224,
38,5,18,5,39,5,0,128,40,5,52,0,41,5,8,192,
42,5,206,128,43,5,1,109,44,5,18,10,45,5,65,134,
46,5,86,8,47,5,30,1,48,5,39,0,49,5,81,55,
50,5,61,8,51,5,50,224,52,5,5,78,53,5,192,1,
54,5,132,4,55,5,129,0,56,5,64,1,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,57,5,0,0,
58,5,0,0,59,5,160,26,60,5,89,0,61,5,200,67,
62,5,36,136,63,5,72,29,64,5,0,200,65,5,82,1,
66,5,3,114,67,5,19,152,68,5,5,4,69,5,128,130,
70,5,0,4,71,5,16,138,72,5,20,13,73,5,86,128,
74,5,8,2,75,5,64,160,76,5,4,39,77,5,0,0,
78,5,0,78,79,5,0,0,80,5,0,0,79,5,0,0,
80,5,0,0,81,5,0,0,82,5,32,163,83,5,2,25,
84,5,174,160,85,5,96,38,86,5,0,223,87,5,16,240,
88,5,23,123,89,5,33,129,90,5,208,58,91,5,128,65,
92,5,40,0,93,5,3,16,94,5,0,72,95,5,0,204,
96,5,20,128,97,5,207,20,98,5,196,0,99,5,0,32,
100,5,32,48,101,5,1,0,102,5,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,103,5,255,255,
104,5,255,255,105,5,255,255,106,5,255,255,107,5,255,255,
108,5,255,255,109,5,255,255,110,5,255,255,111,5,255,255,
112,5,255,255,113,5,255,255,114,5,255,255,115,5,255,255,
116,5,255,255,117,5,255,255,118,5,255,255,119,5,255,255,
120,5,255,255,121,5,255,255,122,5,255,255,123,5,255,255,
124,5,255,255,125,5,255,255,126,5,255,255,127,5,255,255,
128,5,255,255,129,5,255,255,130,5,255,255,131,5,255,255,
132,5,255,255,133,5,255,255,134,5,255,255,135,5,255,255,
136,5,255,255,137,5,255,255,138,5,255,255,139,5,255,255,
140,5,255,255,141,5,255,255,142,5,255,255,143,5,255,255,
144,5,255,255,145,5,255,255,146,5,255,255,147,5,255,255,
148,5,255,255,149,5,255,255,150,5,255,255,151,5,255,255,
152,5,255,255,153,5,255,255,154,5,255,255,155,5,255,255,
156,5,255,255,157,5,255,255,158,5,255,255,159,5,255,255,
160,5,255,255,161,5,255,255,162,5,255,255,163,5,255,255,
164,5,255,255,165,5,255,255,166,5,255,255,167,5,255,255,
168,5,255,255,169,5,255,255,170,5,255,255,171,5,255,255,
172,5,255,255,173,5,255,255,174,5,255,255,175,5,255,255,
176,5,255,255,177,5,255,255,178,5,255,255,179,5,255,255,
180,5,255,255,181,5,255,255,182,5,255,255,183,5,255,255,
184,5,255,255,185,5,255,255,186,5,255,255,187,5,255,255,
188,5,255,255,189,5,255,255,190,5,255,255,191,5,255,255,
192,5,255,255,193,5,255,255,194,5,255,255,195,5,255,255,
196,5,255,255,197,5,255,255,198,5,255,255,199,5,255,255,
200,5,255,255,201,5,255,255,202,5,255,255,203,5,255,255,
204,5,255,255,205,5,255,255,206,5,255,255,207,5,255,255,
208,5,255,255,209,5,255,255,210,5,255,255,211,5,255,255,
212,5,255,255,213,5,255,255,214,5,255,255,215,5,255,255,
216,5,255,255,217,5,255,255,218,5,255,255,219,5,255,255,
220,5,255,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,221,5,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,222,5,0,2,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,223,5,0,16,0,0,0,0,
0,0,0,0,224,5,0,192,225,5,255,255,226,5,255,63,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
227,5,254,223,228,5,255,255,229,5,255,255,230,5,255,255,
231,5,255,255,232,5,255,63,233,5,254,255,234,5,255,255,
235,5,255,255,236,5,255,255,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,237,5,47,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,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,0,2,0,3,0,4,0,5,0,6,0,7,0,
8,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,
16,0,17,0,18,0,19,0,20,0,21,0,22,0,23,0,
24,0,25,0,26,0,27,0,28,0,29,0,30,0,31,0,
32,0,33,0,34,0,35,0,36,0,37,0,38,0,39,0,
40,0,41,0,42,0,43,0,44,0,45,0,46,0,47,0,
48,0,49,0,50,0,51,0,52,0,53,0,54,0,55,0,
56,0,57,0,58,0,59,0,60,0,61,0,62,0,63,0,
64,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,
72,0,73,0,74,0,75,0,76,0,77,0,78,0,79,0,
80,0,81,0,82,0,83,0,84,0,85,0,86,0,87,0,
88,0,89,0,90,0,91,0,0,0,93,0,94,0,95,0,
96,0,97,0,98,0,99,0,100,0,101,0,102,0,103,0,
104,0,105,0,106,0,107,0,108,0,109,0,110,0,111,0,
112,0,113,0,114,0,115,0,116,0,117,0,118,0,119,0,
120,0,121,0,122,0,123,0,124,0,125,0,0,0,127,0,
128,0,129,0,130,0,131,0,132,0,133,0,134,0,135,0,
136,0,137,0,138,0,139,0,140,0,141,0,0,0,0,0,
144,0,145,0,146,0,147,0,148,0,149,0,150,0,151,0,
152,0,153,0,154,0,155,0,156,0,157,0,158,0,159,0,
0,0,0,0,224,142,225,142,0,0,0,0,0,0,248,161,
175,161,0,0,0,0,0,0,226,142,0,0,0,0,0,0,
235,161,222,161,0,0,0,0,173,161,0,0,249,162,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,161,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,161,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,161,166,162,166,163,166,164,166,165,166,166,166,167,166,
168,166,169,166,170,166,171,166,172,166,173,166,174,166,175,166,
176,166,177,166,0,0,178,166,179,166,180,166,181,166,182,166,
183,166,184,166,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,193,166,194,166,195,166,196,166,197,166,198,166,199,166,
200,166,201,166,202,166,203,166,204,166,205,166,206,166,207,166,
208,166,209,166,0,0,210,166,211,166,212,166,213,166,214,166,
215,166,216,166,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,167,167,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
161,167,162,167,163,167,164,167,165,167,166,167,168,167,169,167,
170,167,171,167,172,167,173,167,174,167,175,167,176,167,177,167,
178,167,179,167,180,167,181,167,182,167,183,167,184,167,185,167,
186,167,187,167,188,167,189,167,190,167,191,167,192,167,193,167,
209,167,210,167,211,167,212,167,213,167,214,167,216,167,217,167,
218,167,219,167,220,167,221,167,222,167,223,167,224,167,225,167,
226,167,227,167,228,167,229,167,230,167,231,167,232,167,233,167,
234,167,235,167,236,167,237,167,238,167,239,167,240,167,241,167,
0,0,215,167,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
190,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
198,161,199,161,0,0,0,0,200,161,201,161,0,0,0,0,
247,162,248,162,0,0,0,0,0,0,197,161,196,161,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
243,162,0,0,236,161,237,161,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,168,162,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,238,161,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,56,243,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,57,243,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,242,162,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
43,243,44,243,45,243,46,243,47,243,48,243,49,243,50,243,
51,243,52,243,0,0,0,0,0,0,0,0,0,0,0,0,
33,243,34,243,35,243,36,243,37,243,38,243,39,243,40,243,
41,243,42,243,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
171,162,172,162,170,162,173,162,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,205,162,0,0,206,162,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
207,162,0,0,223,162,208,162,0,0,0,0,0,0,224,162,
186,162,0,0,0,0,187,162,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,229,162,0,0,0,0,231,162,231,161,0,0,
220,162,0,0,0,0,0,0,0,0,0,0,0,0,202,162,
203,162,193,162,192,162,233,162,234,162,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,232,161,232,162,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,230,162,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,226,162,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
226,161,225,162,0,0,0,0,0,0,0,0,229,161,230,161,
0,0,0,0,227,162,228,162,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,190,162,191,162,0,0,0,0,188,162,189,162,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,221,162,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,222,162,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
161,168,172,168,162,168,173,168,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,163,168,0,0,0,0,174,168,
164,168,0,0,0,0,175,168,166,168,0,0,0,0,177,168,
165,168,0,0,0,0,176,168,167,168,188,168,0,0,0,0,
183,168,0,0,0,0,178,168,169,168,190,168,0,0,0,0,
185,168,0,0,0,0,180,168,168,168,0,0,0,0,184,168,
189,168,0,0,0,0,179,168,170,168,0,0,0,0,186,168,
191,168,0,0,0,0,181,168,171,168,0,0,0,0,187,168,
0,0,0,0,192,168,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,182,168,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
163,162,162,162,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,165,162,164,162,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,167,162,166,162,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,161,162,254,161,
0,0,0,0,0,0,251,161,0,0,0,0,253,161,252,161,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,162,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,250,161,249,161,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
234,161,0,0,233,161,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,246,162,0,0,0,0,245,162,0,0,244,162,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
161,161,162,161,163,161,183,161,0,0,185,161,186,161,187,161,
210,161,211,161,212,161,213,161,214,161,215,161,216,161,217,161,
218,161,219,161,169,162,174,162,204,161,205,161,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,161,164,162,164,163,164,164,164,165,164,166,164,167,164,
168,164,169,164,170,164,171,164,172,164,173,164,174,164,175,164,
176,164,177,164,178,164,179,164,180,164,181,164,182,164,183,164,
184,164,185,164,186,164,187,164,188,164,189,164,190,164,191,164,
192,164,193,164,194,164,195,164,196,164,197,164,198,164,199,164,
200,164,201,164,202,164,203,164,204,164,205,164,206,164,207,164,
208,164,209,164,210,164,211,164,212,164,213,164,214,164,215,164,
216,164,217,164,218,164,219,164,220,164,221,164,222,164,223,164,
224,164,225,164,226,164,227,164,228,164,229,164,230,164,231,164,
232,164,233,164,234,164,235,164,236,164,237,164,238,164,239,164,
240,164,241,164,242,164,243,164,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,171,161,172,161,181,161,182,161,0,0,
0,0,161,165,162,165,163,165,164,165,165,165,166,165,167,165,
168,165,169,165,170,165,171,165,172,165,173,165,174,165,175,165,
176,165,177,165,178,165,179,165,180,165,181,165,182,165,183,165,
184,165,185,165,186,165,187,165,188,165,189,165,190,165,191,165,
192,165,193,165,194,165,195,165,196,165,197,165,198,165,199,165,
200,165,201,165,202,165,203,165,204,165,205,165,206,165,207,165,
208,165,209,165,210,165,211,165,212,165,213,165,214,165,215,165,
216,165,217,165,218,165,219,165,220,165,221,165,222,165,223,165,
224,165,225,165,226,165,227,165,228,165,229,165,230,165,231,165,
232,165,233,165,234,165,235,165,236,165,237,165,238,165,239,165,
240,165,241,165,242,165,243,165,244,165,245,165,246,165,0,0,
0,0,0,0,0,0,166,161,188,161,179,161,180,161,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,55,243,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
236,176,250,195,0,0,183,188,0,0,0,0,0,0,252,203,
230,190,176,187,229,190,188,178,0,0,212,201,191,205,0,0,
162,208,175,177,0,0,0,0,238,179,163,208,164,192,194,210,
214,181,186,202,0,0,0,0,0,0,0,0,231,190,0,0,
0,0,190,206,0,0,0,0,0,0,0,0,194,202,0,0,
41,176,0,0,164,208,0,0,0,0,230,195,0,0,0,0,
0,0,165,208,250,182,0,0,0,0,0,0,166,208,0,0,
221,180,176,195,0,0,231,188,167,208,0,0,0,0,168,208,
0,0,0,0,169,208,181,199,0,0,215,181,0,0,0,0,
0,0,0,0,0,0,183,199,0,0,227,198,195,184,179,203,
0,0,0,0,0,0,0,0,0,0,201,233,170,208,232,190,
171,208,181,178,0,0,0,0,0,0,229,182,240,184,233,204,
0,0,0,0,166,214,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,240,205,0,0,253,198,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,165,180,0,0,
181,181,0,0,172,208,0,0,0,0,173,208,187,206,0,0,
189,205,232,193,175,208,246,187,243,198,0,0,178,208,0,0,
0,0,190,177,223,184,0,0,222,184,230,176,0,0,0,0,
203,207,202,207,0,0,179,186,161,176,0,0,179,208,180,208,
181,208,180,203,182,208,0,0,242,184,231,176,242,203,0,0,
252,181,0,0,0,0,253,181,254,181,226,196,188,206,0,0,
183,208,0,0,0,0,184,208,0,0,0,0,185,208,0,0,
0,0,0,0,205,191,0,0,0,0,0,0,0,0,0,0,
186,189,206,191,190,208,0,0,188,208,0,0,189,208,216,181,
0,0,0,0,163,186,240,178,0,0,187,208,186,208,169,202,
0,0,0,0,0,0,0,0,198,187,197,187,190,194,191,208,
213,201,231,192,0,0,0,0,0,0,184,161,192,208,194,208,
0,0,72,176,0,0,229,194,225,206,202,176,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,193,208,190,178,0,0,
196,182,0,0,231,195,0,0,0,0,0,0,239,183,195,208,
0,0,0,0,0,0,164,199,34,244,0,0,0,0,0,0,
82,176,235,180,0,0,84,176,0,0,0,0,0,0,0,0,
0,0,196,208,203,176,0,0,0,0,224,184,236,180,250,201,
178,200,217,181,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,241,178,0,0,231,208,193,197,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,199,
198,208,0,0,0,0,0,0,188,200,0,0,226,206,0,0,
173,191,99,176,199,187,0,0,247,187,192,178,0,0,0,0,
0,0,0,0,0,0,209,196,0,0,0,0,162,195,202,208,
0,0,0,0,0,0,0,0,0,0,204,176,227,196,187,189,
180,186,164,205,0,0,206,194,0,0,191,178,110,176,201,208,
0,0,190,205,197,208,199,208,238,186,200,208,164,213,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,208,208,0,0,0,0,0,0,0,0,0,0,211,208,
209,208,0,0,0,0,194,178,0,0,187,202,203,208,0,0,
0,0,0,0,0,0,207,208,243,184,0,0,0,0,200,187,
0,0,0,0,0,0,166,180,0,0,0,0,212,208,0,0,
204,208,0,0,35,177,227,206,0,0,248,187,0,0,205,208,
0,0,210,208,39,177,0,0,41,177,0,0,213,208,0,0,
206,208,0,0,44,177,161,182,0,0,205,176,0,0,0,0,
162,182,193,178,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,165,213,0,0,249,203,238,201,244,184,
0,0,0,0,0,0,0,0,0,0,175,191,183,206,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,202,
0,0,0,0,184,183,165,194,228,178,0,0,0,0,0,0,
0,0,59,177,211,189,0,0,0,0,62,177,217,208,0,0,
222,208,220,208,0,0,0,0,215,208,0,0,0,0,175,194,
218,208,0,0,221,208,219,208,0,0,221,202,0,0,216,208,
0,0,174,191,0,0,243,203,223,208,224,208,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,164,189,237,208,
0,0,0,0,0,0,208,199,0,0,182,201,232,208,0,0,
240,202,0,0,182,178,0,0,0,0,0,0,236,208,72,177,
0,0,0,0,0,0,0,0,0,0,230,208,239,208,0,0,
0,0,210,193,0,0,196,184,0,0,220,199,0,0,199,224,
0,0,238,208,221,197,0,0,227,208,0,0,246,184,0,0,
0,0,245,184,225,208,0,0,0,0,0,0,87,177,218,188,
0,0,233,208,88,177,239,202,205,195,229,208,241,183,0,0,
226,208,234,208,228,208,209,206,235,208,193,207,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,230,182,0,0,
0,0,240,183,0,0,0,0,0,0,0,0,0,0,0,0,
95,177,0,0,97,177,240,208,0,0,0,0,99,177,241,208,
245,208,206,176,0,0,0,0,0,0,0,0,0,0,208,202,
244,208,0,0,0,0,0,0,0,0,243,208,247,208,0,0,
0,0,0,0,246,208,0,0,228,196,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,242,183,0,0,0,0,
0,0,0,0,0,0,0,0,248,208,0,0,0,0,0,0,
116,177,0,0,197,188,0,0,166,194,229,196,246,182,0,0,
249,208,0,0,0,0,0,0,0,0,182,181,0,0,0,0,
250,208,0,0,0,0,0,0,0,0,252,208,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,181,203,0,0,0,0,
0,0,230,183,0,0,0,0,35,178,0,0,0,0,0,0,
177,187,247,200,251,208,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,197,186,195,205,0,0,0,0,
0,0,0,0,254,208,163,209,253,208,196,186,0,0,253,189,
0,0,0,0,0,0,0,0,0,0,0,0,185,183,0,0,
0,0,0,0,164,209,0,0,0,0,207,182,0,0,0,0,
0,0,161,209,162,209,0,0,0,0,175,198,0,0,252,193,
0,0,163,182,0,0,0,0,0,0,205,203,165,209,0,0,
59,178,0,0,189,206,0,0,0,0,0,0,166,209,0,0,
0,0,0,0,0,0,169,209,0,0,167,209,0,0,206,193,
0,0,0,0,0,0,0,0,0,0,168,209,170,209,0,0,
0,0,0,0,0,0,0,0,35,244,172,209,0,0,0,0,
0,0,171,209,0,0,200,202,0,0,0,0,0,0,0,0,
183,181,174,209,175,209,0,0,175,178,0,0,0,0,0,0,
0,0,173,209,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,244,188,0,0,178,209,177,209,176,209,0,0,
214,208,0,0,179,209,0,0,0,0,0,0,0,0,254,189,
0,0,180,209,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,165,205,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,217,204,0,0,0,0,0,0,0,0,182,209,
0,0,0,0,181,209,184,209,183,209,0,0,0,0,185,209,
186,209,244,176,0,0,181,184,187,183,188,189,251,195,164,182,
232,192,247,184,102,178,238,185,188,209,200,204,198,197,0,0,
249,187,0,0,187,209,0,0,189,209,0,0,0,0,0,0,
0,0,0,0,222,197,0,0,245,179,0,0,0,0,0,0,
0,0,0,0,190,209,0,0,109,178,254,198,0,0,0,0,
180,193,192,209,193,209,172,200,248,184,187,207,194,209,0,0,
0,0,166,182,0,0,0,0,0,0,188,202,182,194,241,182,
181,197,0,0,0,0,0,0,243,183,0,0,0,0,0,0,
195,209,0,0,196,209,0,0,0,0,226,198,223,177,0,0,
0,0,199,209,253,186,0,0,198,209,198,186,0,0,200,209,
238,230,201,209,193,203,202,209,0,0,203,209,204,209,233,190,
0,0,204,188,0,0,0,0,0,0,117,178,0,0,0,0,
167,180,0,0,207,209,0,0,205,209,189,204,206,209,0,0,
218,201,208,209,209,209,210,209,223,197,0,0,0,0,0,0,
214,209,212,209,213,209,211,209,227,186,215,209,234,204,228,206,
0,0,0,0,0,0,0,0,0,0,216,209,124,178,0,0,
0,0,0,0,0,0,0,0,168,192,217,209,218,189,0,0,
0,0,218,209,0,0,252,195,191,206,224,197,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,197,210,0,0,
0,0,0,0,0,0,219,209,165,244,197,182,0,0,0,0,
220,209,222,203,0,0,0,0,0,0,0,0,232,189,252,194,
0,0,222,209,228,198,0,0,36,244,223,209,0,0,0,0,
224,209,174,179,0,0,0,0,0,0,225,209,167,182,0,0,
204,198,250,177,208,189,0,0,0,0,161,200,226,209,0,0,
225,197,0,0,0,0,207,191,227,209,0,0,172,202,218,192,
162,180,0,0,169,180,228,209,0,0,0,0,230,209,0,0,
0,0,186,183,0,0,0,0,229,209,53,179,0,0,243,206,
0,0,0,0,0,0,0,0,0,0,233,189,0,0,0,0,
0,0,0,0,0,0,0,0,189,200,204,202,0,0,231,209,
0,0,248,205,232,209,0,0,0,0,0,0,233,209,0,0,
254,197,0,0,0,0,234,209,0,0,0,0,169,192,254,186,
244,183,235,209,201,187,239,185,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,230,196,237,209,0,0,0,0,167,194,
0,0,0,0,239,186,238,209,239,209,176,193,0,0,236,209,
0,0,0,0,0,0,0,0,241,209,0,0,182,203,0,0,
0,0,0,0,0,0,228,185,0,0,0,0,240,209,0,0,
0,0,0,0,0,0,245,183,222,186,237,199,0,0,0,0,
0,0,244,209,242,209,0,0,0,0,0,0,0,0,251,201,
234,190,251,209,228,179,245,209,243,209,207,193,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,247,209,0,0,246,209,
0,0,0,0,0,0,196,179,0,0,0,0,0,0,224,183,
252,209,173,206,0,0,0,0,0,0,248,209,0,0,0,0,
0,0,253,209,250,209,0,0,249,209,0,0,0,0,0,0,
0,0,0,0,0,0,207,206,88,179,0,0,0,0,249,184,
195,178,0,0,0,0,244,206,0,0,0,0,91,179,0,0,
0,0,245,189,216,197,229,185,162,210,163,210,0,0,93,179,
0,0,229,206,0,0,0,0,171,207,165,210,0,0,0,0,
0,0,250,184,0,0,0,0,164,210,0,0,175,179,0,0,
101,179,166,210,0,0,214,203,0,0,188,196,0,0,166,205,
0,0,217,202,0,0,0,0,0,0,167,210,0,0,0,0,
0,0,0,0,213,240,0,0,0,0,176,198,0,0,168,210,
170,180,179,204,0,0,110,179,0,0,161,190,169,210,231,202,
173,210,0,0,170,192,170,210,208,182,0,0,171,210,171,180,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,174,183,174,210,0,0,175,210,0,0,0,0,
176,210,177,210,219,188,0,0,0,0,0,0,251,184,222,204,
123,179,232,204,247,198,0,0,0,0,241,202,178,210,37,244,
179,210,0,0,0,0,0,0,0,0,181,210,0,0,183,210,
182,210,0,0,0,0,0,0,0,0,184,210,189,178,204,203,
0,0,252,186,185,210,0,0,0,0,217,193,0,0,0,0,
162,190,169,182,0,0,186,210,38,244,0,0,0,0,0,0,
0,0,0,0,219,200,0,0,0,0,0,0,0,0,187,210,
0,0,188,210,0,0,189,210,0,0,0,0,0,0,0,0,
190,210,164,201,232,182,229,176,0,0,0,0,0,0,191,198,
191,210,189,189,0,0,233,192,0,0,193,210,192,210,163,190,
225,184,195,210,190,200,0,0,0,0,196,210,0,0,0,0,
0,0,220,200,180,194,238,194,168,182,0,0,0,0,238,198,
177,195,0,0,238,199,0,0,206,203,0,0,198,210,0,0,
234,192,0,0,0,0,0,0,0,0,0,0,181,183,0,0,
0,0,199,210,0,0,0,0,0,0,0,0,200,210,172,177,
245,176,237,180,64,180,168,194,209,181,241,205,0,0,203,210,
183,178,0,0,0,0,202,210,0,0,0,0,0,0,170,182,
0,0,0,0,204,210,0,0,241,204,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,71,180,0,0,0,0,205,210,0,0,
210,206,0,0,252,184,0,0,0,0,0,0,0,0,182,184,
206,210,0,0,0,0,0,0,0,0,208,210,207,210,0,0,
223,191,185,177,0,0,0,0,0,0,222,177,209,210,0,0,
210,210,0,0,80,180,183,184,0,0,0,0,211,210,0,0,
0,0,0,0,0,0,238,181,0,0,0,0,0,0,0,0,
0,0,0,0,178,187,212,210,0,0,0,0,0,0,0,0,
244,203,181,186,218,181,167,205,208,193,191,200,253,188,0,0,
0,0,0,0,0,0,0,0,199,189,0,0,232,188,245,188,
0,0,246,189,0,0,192,200,0,0,94,180,0,0,215,210,
0,0,195,177,209,193,253,184,197,184,231,182,0,0,0,0,
219,210,161,195,254,194,171,182,164,190,220,210,218,210,196,178,
230,194,184,188,203,187,166,177,0,0,0,0,240,179,230,185,
202,187,0,0,221,210,0,0,0,0,0,0,0,0,0,0,
0,0,222,210,0,0,201,181,198,179,0,0,0,0,0,0,
231,185,200,181,223,196,165,177,177,198,190,204,161,185,249,205,
199,197,254,184,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,175,183,0,0,231,210,0,0,227,182,
202,203,0,0,0,0,0,0,0,0,0,0,221,200,0,0,
0,0,230,210,0,0,222,180,225,210,226,210,228,210,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,229,210,0,0,
219,181,225,191,0,0,173,202,227,210,223,210,227,184,0,0,
224,210,0,0,164,207,0,0,0,0,0,0,242,202,0,0,
232,196,226,184,240,185,0,0,0,0,0,0,232,210,0,0,
0,0,221,198,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,210,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
254,188,0,0,246,188,0,0,0,0,0,0,0,0,0,0,
239,210,237,210,0,0,163,204,0,0,234,210,243,210,238,210,
0,0,0,0,0,0,241,210,198,184,191,204,0,0,0,0,
242,210,0,0,0,0,0,0,244,210,0,0,246,210,0,0,
0,0,0,0,40,244,240,186,194,207,0,0,235,210,233,210,
245,210,0,0,240,210,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,42,181,0,0,0,0,0,0,
0,0,0,0,248,210,0,0,163,211,250,210,0,0,0,0,
254,210,47,181,0,0,161,211,251,210,0,0,0,0,190,211,
0,0,0,0,233,186,177,179,0,0,0,0,0,0,0,0,
249,210,0,0,0,0,0,0,165,211,246,176,164,211,0,0,
165,176,202,201,162,211,0,0,252,210,0,0,0,0,247,210,
253,210,200,186,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
166,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,247,176,175,211,0,0,0,0,167,211,168,211,0,0,
165,190,233,203,0,0,0,0,0,0,173,211,172,211,0,0,
0,0,0,0,175,197,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,174,211,0,0,0,0,171,211,0,0,68,181,
0,0,0,0,0,0,0,0,180,177,0,0,182,186,176,191,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,211,
226,197,0,0,0,0,0,0,170,211,0,0,162,176,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,180,211,163,205,
0,0,167,190,0,0,186,211,0,0,0,0,0,0,0,0,
185,211,176,211,0,0,0,0,0,0,0,0,195,194,0,0,
177,211,0,0,0,0,0,0,239,194,182,211,166,190,0,0,
0,0,0,0,0,0,0,0,179,211,0,0,0,0,228,204,
0,0,0,0,0,0,188,183,0,0,0,0,183,211,184,211,
0,0,0,0,0,0,0,0,181,211,187,211,0,0,0,0,
0,0,0,0,0,0,178,211,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,193,211,198,211,0,0,194,211,0,0,
189,211,0,0,0,0,199,211,177,193,0,0,104,181,201,211,
0,0,162,185,191,211,253,195,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
195,211,188,211,173,180,0,0,238,180,229,179,196,211,192,211,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,183,
202,211,200,211,211,193,202,181,172,182,0,0,197,211,0,0,
244,182,0,0,0,0,0,0,0,0,0,0,196,177,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,206,211,204,211,0,0,167,212,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,209,211,0,0,0,0,0,0,
0,0,0,0,203,211,0,0,207,211,0,0,0,0,205,211,
0,0,0,0,0,0,204,187,208,211,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,211,
0,0,216,211,0,0,0,0,0,0,214,211,213,211,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,178,195,0,0,
0,0,197,178,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,210,211,0,0,212,211,168,190,
179,177,0,0,0,0,215,211,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,222,178,0,0,0,0,0,0,0,0,0,0,226,211,
0,0,252,190,222,211,0,0,220,211,0,0,221,211,0,0,
223,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,189,177,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,185,193,0,0,217,211,0,0,
218,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,250,179,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,225,211,0,0,0,0,0,0,
239,180,0,0,228,211,224,211,227,211,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,174,202,0,0,0,0,0,0,
213,198,0,0,184,200,0,0,0,0,0,0,0,0,0,0,
230,211,0,0,0,0,0,0,0,0,0,0,229,211,197,179,
0,0,0,0,231,211,0,0,0,0,0,0,0,0,234,211,
0,0,0,0,0,0,0,0,233,211,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
232,211,0,0,185,199,0,0,0,0,235,211,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,236,211,0,0,
0,0,0,0,0,0,0,0,238,211,0,0,237,211,0,0,
0,0,0,0,0,0,0,0,240,211,0,0,0,0,0,0,
243,211,241,211,239,211,242,211,0,0,0,0,0,0,0,0,
244,211,0,0,0,0,0,0,0,0,0,0,245,211,0,0,
0,0,246,211,0,0,247,211,0,0,0,0,0,0,248,211,
197,209,0,0,252,188,205,187,0,0,0,0,243,178,0,0,
248,176,0,0,0,0,196,195,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,249,211,0,0,
164,186,0,0,207,176,222,191,0,0,0,0,0,0,0,0,
0,0,250,211,199,184,0,0,0,0,241,185,0,0,252,211,
251,211,0,0,0,0,224,202,253,211,0,0,0,0,0,0,
161,212,254,211,0,0,162,212,0,0,163,212,0,0,247,183,
0,0,0,0,224,177,164,212,0,0,0,0,166,212,0,0,
165,212,0,0,0,0,0,0,168,212,0,0,0,0,218,197,
0,0,0,0,0,0,0,0,0,0,0,0,169,212,181,176,
223,186,0,0,0,0,0,0,0,0,189,183,0,0,0,0,
207,195,0,0,0,0,0,0,0,0,0,0,0,0,170,212,
171,212,0,0,0,0,173,212,0,0,0,0,0,0,0,0,
174,212,0,0,228,186,0,0,0,0,0,0,0,0,209,182,
0,0,0,0,183,203,0,0,0,0,0,0,172,212,175,212,
193,186,163,185,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,41,244,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,179,212,0,0,0,0,165,186,66,183,179,195,0,0,
0,0,176,212,218,196,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,212,
0,0,0,0,226,191,0,0,0,0,0,0,0,0,0,0,
178,212,181,212,0,0,191,183,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,182,212,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
183,212,0,0,164,185,192,179,185,212,0,0,0,0,0,0,
0,0,0,0,186,212,0,0,100,183,0,0,0,0,0,0,
187,212,0,0,0,0,184,212,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
177,212,0,0,0,0,188,212,0,0,0,0,189,212,103,183,
104,183,0,0,0,0,228,203,0,0,0,0,235,190,0,0,
0,0,0,0,191,212,192,212,190,212,0,0,194,212,0,0,
0,0,0,0,0,0,0,0,184,199,0,0,0,0,232,176,
214,201,0,0,0,0,195,212,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,253,190,0,0,0,0,185,188,
0,0,221,199,240,180,0,0,235,186,0,0,0,0,0,0,
217,203,0,0,178,198,0,0,0,0,248,183,207,194,0,0,
0,0,0,0,193,212,196,212,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,196,194,0,0,0,0,
0,0,197,212,0,0,0,0,0,0,198,212,0,0,0,0,
0,0,200,212,0,0,0,0,233,196,0,0,0,0,0,0,
0,0,0,0,174,180,0,0,0,0,0,0,0,0,161,244,
225,177,243,202,0,0,0,0,236,190,200,197,0,0,0,0,
0,0,0,0,230,186,0,0,0,0,206,212,0,0,0,0,
189,202,221,206,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,244,178,202,212,0,0,0,0,0,0,0,0,
0,0,186,193,205,212,0,0,227,197,0,0,0,0,201,197,
228,197,185,200,205,196,0,0,0,0,0,0,201,186,0,0,
0,0,0,0,201,212,0,0,0,0,0,0,0,0,0,0,
0,0,246,177,0,0,182,197,0,0,0,0,0,0,0,0,
203,212,0,0,199,212,0,0,0,0,208,191,0,0,0,0,
0,0,207,212,0,0,0,0,0,0,0,0,206,189,0,0,
0,0,0,0,0,0,173,182,0,0,208,212,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,232,202,0,0,0,0,0,0,253,193,
0,0,0,0,0,0,0,0,198,196,0,0,44,244,210,212,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
207,203,0,0,0,0,211,212,0,0,0,0,216,212,0,0,
0,0,0,0,78,184,175,202,0,0,0,0,0,0,0,0,
215,212,209,212,212,212,214,212,0,0,0,0,166,186,0,0,
0,0,201,202,0,0,0,0,0,0,217,212,0,0,197,195,
0,0,0,0,245,178,0,0,237,190,0,0,0,0,0,0,
0,0,219,212,0,0,218,212,0,0,232,185,0,0,220,212,
222,212,221,212,0,0,0,0,224,212,0,0,213,212,226,212,
0,0,0,0,0,0,0,0,225,212,223,212,0,0,0,0,
0,0,0,0,0,0,206,187,209,191,0,0,212,193,227,212,
188,192,237,176,228,199,0,0,0,0,0,0,0,0,219,196,
0,0,229,212,228,212,230,212,231,212,232,212,0,0,0,0,
0,0,0,0,233,212,0,0,0,0,0,0,0,0,0,0,
0,0,209,202,234,212,97,184,0,0,0,0,0,0,198,178,
235,212,0,0,0,0,0,0,0,0,188,205,176,179,0,0,
201,210,200,189,191,194,236,212,235,204,0,0,0,0,0,0,
0,0,0,0,180,204,0,0,0,0,238,212,0,0,231,194,
0,0,183,197,192,194,215,201,239,212,240,212,251,177,0,0,
0,0,186,188,241,212,0,0,0,0,0,0,0,0,208,176,
242,212,0,0,0,0,0,0,0,0,0,0,243,212,0,0,
0,0,0,0,0,0,0,0,226,177,0,0,0,0,241,180,
224,198,244,202,0,0,0,0,0,0,0,0,247,212,213,193,
246,212,192,183,0,0,117,184,219,203,245,212,0,0,229,197,
249,212,0,0,248,212,119,184,0,0,120,184,0,0,0,0,
251,212,0,0,250,212,124,184,0,0,252,177,0,0,252,212,
169,190,254,212,165,195,0,0,253,212,0,0,179,202,0,0,
0,0,0,0,0,0,247,189,219,197,0,0,0,0,0,0,
161,213,0,0,0,0,0,0,0,0,165,185,0,0,0,0,
0,0,162,213,161,199,222,200,209,204,0,0,0,0,0,0,
0,0,0,0,165,199,0,0,0,0,171,213,0,0,0,0,
0,0,0,0,0,0,184,181,0,0,0,0,197,205,0,0,
0,0,175,204,0,0,172,214,0,0,163,213,0,0,0,0,
0,0,0,0,0,0,166,213,47,185,197,194,0,0,0,0,
184,203,0,0,0,0,0,0,202,197,0,0,0,0,0,0,
0,0,0,0,167,213,0,0,0,0,0,0,0,0,0,0,
0,0,229,203,55,185,202,186,0,0,0,0,170,190,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,168,213,0,0,
0,0,208,187,0,0,207,187,0,0,0,0,0,0,0,0,
185,176,200,184,0,0,171,192,209,176,0,0,0,0,0,0,
0,0,172,213,173,213,0,0,170,213,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,184,177,175,180,0,0,
169,213,0,0,197,204,177,201,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,168,176,0,0,
0,0,0,0,0,0,249,176,0,0,0,0,0,0,209,187,
0,0,210,176,0,0,163,176,0,0,0,0,0,0,0,0,
0,0,178,213,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,176,213,0,0,0,0,0,0,0,0,0,0,0,0,
188,204,0,0,179,213,0,0,177,213,0,0,0,0,175,213,
177,191,0,0,0,0,0,0,0,0,174,213,0,0,0,0,
0,0,218,202,0,0,0,0,0,0,0,0,0,0,228,184,
0,0,0,0,0,0,0,0,0,0,183,213,184,213,0,0,
0,0,0,0,0,0,0,0,171,190,0,0,0,0,0,0,
180,213,172,207,0,0,0,0,0,0,0,0,204,199,0,0,
0,0,182,213,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,167,186,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,185,213,0,0,0,0,0,0,216,201,0,0,
0,0,0,0,186,213,0,0,181,213,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,187,204,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,222,199,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,187,213,178,201,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,188,213,192,213,189,213,0,0,
0,0,199,178,191,213,0,0,0,0,0,0,0,0,0,0,
0,0,187,188,0,0,190,213,249,183,0,0,0,0,0,0,
204,213,0,0,0,0,0,0,0,0,0,0,197,213,194,213,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,228,195,0,0,193,213,0,0,0,0,195,213,0,0,
0,0,196,213,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,198,213,199,213,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,242,180,0,0,201,213,200,213,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,202,213,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,238,190,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,205,213,0,0,220,196,0,0,0,0,0,0,
197,177,0,0,203,213,0,0,0,0,0,0,206,213,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,207,213,0,0,
210,213,0,0,0,0,208,213,0,0,209,213,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
210,187,211,213,0,0,0,0,166,185,212,213,62,186,250,187,
184,194,0,0,213,213,214,213,218,187,167,185,0,0,210,204,
0,0,0,0,0,0,168,181,201,184,215,213,216,179,0,0,
0,0,216,213,0,0,185,194,0,0,0,0,0,0,0,0,
217,213,163,214,0,0,218,213,0,0,219,213,0,0,0,0,
220,213,0,0,222,213,0,0,0,0,0,0,0,0,0,0,
223,213,0,0,0,0,224,213,0,0,240,194,0,0,167,177,
233,188,194,176,0,0,215,193,176,180,181,188,0,0,168,185,
0,0,0,0,0,0,0,0,0,0,230,197,0,0,161,189,
177,180,232,195,234,196,184,176,185,181,245,202,0,0,194,188,
0,0,0,0,210,181,235,192,188,188,168,205,225,213,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,220,181,0,0,
203,186,0,0,0,0,178,179,227,177,172,190,200,178,0,0,
226,213,198,205,0,0,0,0,0,0,0,0,0,0,201,189,
91,186,0,0,228,188,227,213,243,180,210,198,169,204,228,213,
0,0,229,213,0,0,0,0,217,201,0,0,0,0,0,0,
231,213,0,0,168,180,247,182,230,213,0,0,0,0,0,0,
97,186,0,0,0,0,178,180,0,0,178,191,235,213,161,187,
0,0,201,178,234,213,0,0,232,213,236,213,233,213,171,199,
205,220,179,191,0,0,237,213,46,244,0,0,192,206,0,0,
238,213,0,0,0,0,240,213,0,0,254,195,239,213,0,0,
163,192,0,0,251,187,0,0,0,0,0,0,208,194,247,188,
0,0,245,201,236,192,0,0,205,188,241,213,173,190,242,213,
243,213,211,176,186,194,210,191,0,0,244,213,179,198,174,190,
0,0,175,190,0,0,245,213,0,0,0,0,237,192,0,0,
0,0,0,0,176,190,0,0,0,0,0,0,107,186,0,0,
246,213,0,0,247,213,0,0,224,204,0,0,0,0,0,0,
248,213,0,0,0,0,0,0,0,0,198,182,0,0,0,0,
0,0,162,189,0,0,0,0,0,0,0,0,0,0,0,0,
249,213,250,213,220,188,172,191,244,198,212,191,248,200,162,199,
201,182,251,213,0,0,0,0,0,0,239,181,252,213,0,0,
254,182,0,0,207,198,176,178,0,0,211,187,253,213,162,214,
161,214,253,182,0,0,254,213,0,0,184,197,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,176,194,0,0,
203,197,200,188,0,0,0,0,216,193,250,205,0,0,0,0,
0,0,0,0,0,0,0,0,164,214,0,0,165,214,214,198,
0,0,179,187,0,0,0,0,0,0,0,0,167,214,0,0,
0,0,168,214,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,169,214,0,0,0,0,0,0,
244,180,170,214,0,0,0,0,171,214,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,172,178,0,0,0,0,0,0,0,0,51,187,0,0,
187,193,228,180,0,0,173,214,168,204,0,0,0,0,0,0,
0,0,210,194,0,0,217,179,0,0,0,0,175,214,177,214,
223,180,0,0,56,187,174,214,176,214,0,0,179,214,0,0,
0,0,0,0,0,0,0,0,0,0,178,214,0,0,180,214,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,181,214,0,0,0,0,0,0,0,0,0,0,0,0,
189,198,174,182,0,0,0,0,0,0,0,0,0,0,0,0,
229,178,182,214,187,214,0,0,0,0,185,214,0,0,247,202,
246,202,0,0,0,0,0,0,0,0,47,244,231,197,0,0,
0,0,0,0,184,214,212,189,0,0,183,214,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,191,
0,0,0,0,0,0,188,214,0,0,0,0,234,186,0,0,
0,0,194,214,0,0,0,0,195,214,189,214,179,179,190,214,
199,214,198,214,197,214,193,214,0,0,0,0,0,0,192,214,
0,0,0,0,196,214,0,0,0,0,0,0,0,0,74,187,
0,0,248,202,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,80,187,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,203,214,200,214,0,0,202,214,0,0,
242,205,0,0,201,214,48,244,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,191,214,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,243,191,0,0,0,0,204,214,94,187,0,0,183,186,
0,0,0,0,0,0,205,214,0,0,0,0,206,214,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,209,214,0,0,208,214,0,0,0,0,207,214,
0,0,0,0,0,0,232,197,186,214,0,0,0,0,0,0,
215,214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,211,214,0,0,0,0,
0,0,0,0,210,214,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,212,214,0,0,213,214,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,214,
116,187,117,187,230,206,0,0,217,214,214,214,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,218,214,0,0,0,0,224,180,219,214,0,0,0,0,
121,187,0,0,221,214,220,214,0,0,0,0,222,214,0,0,
0,0,0,0,0,0,223,214,0,0,238,192,163,189,0,0,
0,0,228,189,0,0,227,193,0,0,169,185,184,186,170,185,
240,181,0,0,0,0,224,214,0,0,0,0,185,186,0,0,
0,0,202,184,225,214,166,204,195,199,226,214,0,0,171,185,
0,0,0,0,0,0,172,180,0,0,167,195,210,182,0,0,
0,0,0,0,212,187,219,201,0,0,0,0,193,200,0,0,
0,0,0,0,0,0,227,214,245,180,0,0,0,0,0,0,
0,0,230,214,0,0,0,0,0,0,0,0,161,196,0,0,
0,0,229,214,228,214,231,214,0,0,235,196,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,227,191,0,0,0,0,
0,0,0,0,0,0,213,187,0,0,202,192,0,0,211,194,
162,181,0,0,0,0,162,196,0,0,0,0,232,214,233,214,
239,190,0,0,0,0,0,0,0,0,185,203,0,0,0,0,
236,214,0,0,0,0,235,214,234,214,253,201,0,0,243,214,
0,0,0,0,0,0,0,0,218,203,0,0,237,214,0,0,
0,0,0,0,0,0,0,0,239,214,235,203,0,0,238,214,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,214,
0,0,168,200,241,214,190,202,242,214,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,179,180,191,202,175,199,244,214,245,214,0,0,
172,185,180,180,246,214,184,184,196,205,169,205,246,180,248,214,
0,0,163,196,0,0,173,185,177,190,0,0,0,0,223,200,
0,0,0,0,178,190,0,0,0,0,0,0,0,0,248,189,
0,0,0,0,0,0,0,0,0,0,236,196,249,202,185,197,
0,0,0,0,174,185,0,0,220,201,0,0,0,0,0,0,
249,214,0,0,0,0,0,0,0,0,0,0,217,197,194,186,
0,0,0,0,0,0,203,184,0,0,237,196,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,195,176,238,189,175,185,
199,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,250,214,251,214,209,199,0,0,0,0,0,0,0,0,
252,214,247,206,173,207,0,0,0,0,0,0,0,0,254,214,
253,214,0,0,0,0,199,179,0,0,0,0,161,215,0,0,
0,0,0,0,164,215,165,215,0,0,163,215,0,0,192,201,
179,190,167,215,166,215,162,215,0,0,0,0,0,0,0,0,
168,215,169,215,0,0,0,0,170,215,0,0,0,0,0,0,
173,215,171,215,0,0,172,215,174,215,0,0,228,177,238,196,
175,215,0,0,250,183,246,178,182,199,0,0,176,215,251,198,
0,0,219,202,0,0,177,215,174,207,0,0,0,0,0,0,
0,0,178,215,192,202,181,215,161,208,177,208,0,0,176,188,
245,198,182,215,0,0,221,181,164,196,250,176,183,215,166,202,
176,185,0,0,0,0,208,195,0,0,0,0,0,0,239,196,
0,0,100,188,0,0,0,0,0,0,239,204,185,184,204,184,
0,0,184,215,0,0,0,0,0,0,185,215,0,0,191,215,
0,0,229,188,0,0,0,0,109,188,165,196,0,0,175,182,
186,215,0,0,0,0,0,0,171,201,0,0,198,195,0,0,
0,0,187,215,0,0,0,0,0,0,116,188,0,0,0,0,
188,215,0,0,176,182,0,0,189,215,0,0,190,215,0,0,
0,0,192,215,0,0,246,197,0,0,0,0,193,215,194,215,
0,0,195,215,0,0,0,0,180,215,179,215,0,0,0,0,
0,0,196,215,193,183,0,0,0,0,0,0,167,201,126,188,
0,0,204,186,183,201,166,196,203,201,197,215,0,0,0,0,
180,190,198,177,0,0,198,215,0,0,0,0,0,0,199,215,
0,0,242,204,0,0,0,0,224,200,0,0,0,0,202,215,
253,177,172,192,201,215,200,215,194,183,212,194,0,0,206,215,
204,215,0,0,203,215,167,206,229,184,0,0,0,0,0,0,
249,189,205,215,204,197,190,189,0,0,0,0,0,0,192,198,
209,215,208,215,0,0,0,0,0,0,0,0,207,215,0,0,
210,215,230,184,0,0,0,0,0,0,0,0,0,0,0,0,
211,215,252,201,219,189,0,0,0,0,212,215,249,200,0,0,
0,0,0,0,0,0,193,198,167,196,0,0,0,0,50,244,
0,0,176,197,0,0,0,0,213,215,171,181,0,0,0,0,
0,0,0,0,0,0,180,191,0,0,172,201,0,0,0,0,
0,0,0,0,0,0,0,0,247,180,166,199,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,214,215,214,187,
186,203,187,203,0,0,0,0,254,177,219,215,66,189,0,0,
233,195,0,0,0,0,0,0,216,215,0,0,0,0,0,0,
0,0,0,0,0,0,247,178,0,0,0,0,0,0,0,0,
173,216,218,215,0,0,0,0,0,0,176,199,0,0,0,0,
217,215,0,0,0,0,215,215,0,0,250,185,0,0,221,215,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,227,215,233,215,
225,215,0,0,220,197,0,0,0,0,230,215,221,201,0,0,
0,0,224,215,0,0,229,215,231,206,215,187,0,0,0,0,
213,194,222,215,0,0,0,0,0,0,222,181,232,215,173,192,
229,177,226,215,248,178,231,215,0,0,0,0,0,0,177,182,
0,0,228,215,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,234,215,0,0,0,0,0,0,0,0,0,0,
0,0,236,215,246,215,244,215,0,0,0,0,241,215,0,0,
0,0,0,0,240,215,248,206,0,0,242,215,0,0,0,0,
178,182,0,0,177,185,0,0,0,0,250,189,0,0,0,0,
0,0,249,215,235,215,0,0,0,0,103,189,0,0,239,215,
223,215,0,0,250,178,243,215,245,215,209,195,0,0,0,0,
168,186,184,178,237,215,248,215,247,215,179,182,0,0,169,194,
230,179,0,0,0,0,0,0,0,0,195,183,0,0,238,215,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,250,215,0,0,253,215,161,216,51,244,0,0,0,0,
0,0,189,188,112,189,167,216,240,196,251,215,0,0,0,0,
0,0,0,0,165,216,0,0,249,178,0,0,163,216,164,216,
0,0,0,0,254,215,162,216,0,0,0,0,0,0,231,184,
170,205,0,0,0,0,181,180,0,0,0,0,217,177,166,216,
0,0,186,199,173,176,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,225,200,220,215,172,216,176,216,229,204,0,0,
169,216,0,0,0,0,0,0,233,197,174,216,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,240,190,175,216,215,198,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,199,207,0,0,171,216,0,0,44,190,0,0,0,0,
177,216,0,0,251,185,0,0,203,192,0,0,48,190,212,176,
170,216,168,216,0,0,218,193,0,0,0,0,0,0,252,215,
180,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
198,194,189,216,51,190,219,193,184,216,0,0,181,216,182,216,
0,0,230,188,185,216,188,216,0,0,0,0,0,0,0,0,
183,216,165,189,0,0,186,216,0,0,0,0,180,216,0,0,
252,204,251,204,0,0,0,0,0,0,190,216,191,216,213,176,
0,0,61,190,0,0,0,0,0,0,179,216,0,0,0,0,
0,0,0,0,242,182,166,176,0,0,0,0,0,0,182,180,
52,244,187,216,0,0,0,0,0,0,0,0,0,0,195,216,
194,216,0,0,0,0,0,0,199,216,0,0,0,0,0,0,
73,190,0,0,0,0,0,0,200,216,0,0,0,0,77,190,
0,0,0,0,0,0,0,0,198,216,201,216,193,216,197,216,
0,0,0,0,202,216,0,0,203,216,0,0,0,0,192,216,
252,187,0,0,196,216,214,194,178,185,178,216,181,191,0,0,
0,0,0,0,0,0,216,216,0,0,233,202,0,0,0,0,
206,216,207,216,208,216,0,0,0,0,215,216,0,0,214,216,
0,0,0,0,253,203,183,180,0,0,212,216,0,0,197,183,
180,179,0,0,0,0,209,216,0,0,0,0,184,206,211,216,
214,176,213,216,0,0,204,216,210,216,217,216,196,183,205,216,
0,0,0,0,0,0,0,0,0,0,0,0,221,205,0,0,
0,0,0,0,171,205,0,0,0,0,0,0,0,0,220,216,
0,0,0,0,224,216,0,0,0,0,0,0,254,193,0,0,
249,206,225,216,0,0,0,0,222,216,0,0,219,216,0,0,
100,190,218,216,223,216,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,176,202,0,0,0,0,180,198,
0,0,198,183,0,0,226,216,221,216,0,0,227,216,0,0,
0,0,0,0,251,183,0,0,0,0,0,0,177,178,0,0,
0,0,0,0,235,216,0,0,0,0,0,0,184,180,0,0,
0,0,0,0,0,0,233,216,0,0,0,0,234,216,169,186,
232,216,230,216,229,216,236,216,228,216,238,216,0,0,0,0,
251,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,240,216,0,0,0,0,239,216,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,168,196,0,0,243,216,0,0,241,216,231,216,
252,183,0,0,242,216,0,0,246,216,245,216,247,216,244,216,
248,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
249,216,250,216,234,202,0,0,252,216,251,216,191,189,0,0,
174,192,230,178,252,178,40,191,253,216,0,0,191,176,0,0,
0,0,0,0,204,192,254,216,0,0,195,236,161,217,225,183,
0,0,162,217,0,0,0,0,0,0,0,0,239,192,0,0,
0,0,0,0,163,217,0,0,0,0,0,0,164,217,186,181,
165,217,0,0,166,217,167,217,215,194,0,0,0,0,0,0,
205,184,0,0,0,0,225,204,0,0,0,0,0,0,188,203,
234,189,168,217,0,0,0,0,0,0,0,0,0,0,240,192,
189,238,226,200,0,0,234,188,0,0,205,186,169,217,0,0,
0,0,0,0,0,0,199,194,0,0,167,202,0,0,0,0,
241,194,0,0,0,0,172,217,0,0,0,0,170,217,0,0,
173,217,0,0,0,0,171,217,0,0,0,0,0,0,0,0,
174,217,0,0,0,0,0,0,0,0,0,0,177,202,0,0,
0,0,183,176,0,0,0,0,0,0,0,0,222,201,0,0,
0,0,227,200,0,0,0,0,175,217,0,0,178,217,181,190,
187,181,0,0,176,217,183,217,182,190,0,0,0,0,0,0,
0,0,177,217,196,199,0,0,0,0,0,0,0,0,0,0,
0,0,222,205,179,217,180,217,184,217,234,197,181,217,179,185,
222,192,0,0,0,0,198,217,180,200,0,0,242,194,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,73,191,0,0,
0,0,0,0,0,0,228,200,173,218,0,0,0,0,0,0,
0,0,250,202,0,0,0,0,0,0,241,196,0,0,0,0,
0,0,245,203,0,0,187,217,161,178,234,195,0,0,0,0,
0,0,0,0,196,217,0,0,0,0,180,195,190,217,197,217,
192,217,199,217,195,217,0,0,194,217,239,199,0,0,188,217,
253,178,186,217,241,181,243,194,182,217,0,0,0,0,185,217,
180,185,219,192,0,0,183,190,193,217,210,199,0,0,0,0,
242,181,200,179,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,231,179,161,191,201,217,206,217,
0,0,202,217,0,0,253,183,0,0,207,217,162,187,233,185,
0,0,0,0,0,0,0,0,0,0,0,0,166,189,189,217,
0,0,253,187,204,217,0,0,0,0,0,0,0,0,216,187,
205,217,196,176,0,0,0,0,200,217,0,0,0,0,0,0,
0,0,169,196,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,243,181,0,0,0,0,0,0,0,0,0,0,180,182,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,217,
167,176,0,0,0,0,195,186,0,0,0,0,0,0,182,191,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,242,196,0,0,0,0,212,200,209,217,222,193,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,170,194,0,0,0,0,171,187,210,217,0,0,212,217,
208,217,0,0,0,0,0,0,0,0,225,202,0,0,189,196,
0,0,0,0,0,0,0,0,220,193,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,202,
206,188,224,217,0,0,223,217,0,0,0,0,248,191,0,0,
0,0,0,0,254,183,0,0,0,0,0,0,217,217,185,190,
0,0,0,0,232,198,177,199,0,0,0,0,0,0,0,0,
215,217,0,0,0,0,221,193,0,0,0,0,0,0,0,0,
248,188,220,217,0,0,0,0,184,190,0,0,214,217,219,217,
0,0,0,0,211,199,0,0,0,0,0,0,213,217,0,0,
161,183,0,0,0,0,221,179,0,0,0,0,0,0,221,217,
171,206,206,186,181,195,218,217,0,0,220,192,0,0,181,185,
228,191,230,177,188,193,216,217,197,181,0,0,0,0,0,0,
0,0,0,0,199,183,0,0,207,196,222,217,0,0,0,0,
0,0,0,0,0,0,223,193,0,0,0,0,225,217,0,0,
227,217,0,0,0,0,183,194,233,217,0,0,228,217,0,0,
0,0,230,217,0,0,0,0,0,0,0,0,0,0,193,201,
243,196,0,0,231,217,0,0,0,0,0,0,172,205,0,0,
0,0,0,0,200,205,185,180,0,0,0,0,0,0,0,0,
0,0,174,176,0,0,229,217,0,0,0,0,0,0,0,0,
0,0,226,217,0,0,0,0,0,0,0,0,248,180,0,0,
0,0,0,0,0,0,0,0,231,177,68,192,232,217,0,0,
0,0,0,0,201,205,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,236,217,0,0,
0,0,0,0,0,0,0,0,0,0,187,194,0,0,243,217,
0,0,0,0,0,0,237,217,0,0,0,0,234,217,241,217,
0,0,0,0,0,0,0,0,211,217,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,238,217,0,0,
242,217,0,0,0,0,0,0,194,200,235,197,0,0,0,0,
0,0,0,0,0,0,0,0,235,217,0,0,239,217,0,0,
0,0,0,0,200,183,0,0,0,0,0,0,241,186,0,0,
0,0,0,0,221,192,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,247,217,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
166,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
100,192,0,0,0,0,0,0,0,0,0,0,0,0,244,217,
0,0,224,203,0,0,0,0,0,0,0,0,0,0,245,217,
0,0,0,0,0,0,0,0,0,0,0,0,246,217,0,0,
206,204,0,0,162,192,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,226,183,0,0,0,0,0,0,0,0,
253,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,181,187,250,217,0,0,249,217,0,0,0,0,
0,0,0,0,178,199,0,0,0,0,116,192,181,198,0,0,
0,0,0,0,0,0,0,0,177,197,251,217,0,0,0,0,
0,0,252,217,0,0,239,201,0,0,197,199,163,187,0,0,
241,192,0,0,208,203,0,0,0,0,0,0,0,0,0,0,
0,0,201,179,0,0,165,218,254,217,0,0,0,0,0,0,
0,0,202,205,167,218,0,0,0,0,163,218,0,0,164,218,
0,0,0,0,0,0,0,0,0,0,224,193,38,193,0,0,
0,0,0,0,162,218,0,0,191,217,0,0,0,0,0,0,
166,218,0,0,161,218,0,0,0,0,0,0,0,0,0,0,
171,218,172,218,167,197,174,218,0,0,0,0,164,187,169,218,
0,0,0,0,0,0,0,0,188,181,0,0,0,0,175,218,
0,0,168,218,179,218,0,0,178,218,0,0,177,218,0,0,
0,0,0,0,180,218,0,0,0,0,182,218,241,190,0,0,
181,218,0,0,0,0,0,0,0,0,185,218,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
183,218,0,0,0,0,0,0,184,218,240,217,0,0,0,0,
0,0,0,0,0,0,187,218,186,218,0,0,0,0,0,0,
0,0,0,0,248,217,188,218,176,218,0,0,0,0,217,187,
0,0,0,0,0,0,0,0,189,218,190,218,192,218,191,218,
193,218,254,178,0,0,182,185,0,0,0,0,252,202,175,192,
0,0,0,0,0,0,0,0,0,0,206,184,0,0,0,0,
195,218,0,0,0,0,0,0,0,0,198,218,53,244,210,201,
0,0,223,181,0,0,0,0,0,0,197,218,196,218,212,199,
199,218,181,182,0,0,0,0,0,0,201,218,200,218,0,0,
0,0,0,0,186,180,182,187,0,0,0,0,216,198,0,0,
0,0,0,0,0,0,0,0,201,183,0,0,0,0,0,0,
244,191,0,0,202,218,0,0,176,192,168,197,0,0,223,201,
203,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,204,218,205,218,0,0,0,0,0,0,184,202,
221,213,198,192,0,0,0,0,204,201,0,0,216,186,0,0,
229,200,195,200,0,0,0,0,0,0,0,0,0,0,205,197,
0,0,193,206,0,0,207,218,208,188,0,0,0,0,208,218,
0,0,182,176,0,0,0,0,212,182,205,192,0,0,224,201,
0,0,0,0,0,0,209,218,194,187,199,195,0,0,219,187,
183,191,0,0,0,0,0,0,0,0,0,0,0,0,210,218,
0,0,253,202,0,0,0,0,247,177,220,187,0,0,0,0,
0,0,213,218,0,0,211,218,214,218,185,206,212,218,0,0,
0,0,0,0,0,0,251,192,215,218,0,0,0,0,178,194,
0,0,0,0,216,218,0,0,0,0,0,0,0,0,250,180,
0,0,218,218,0,0,217,218,0,0,0,0,0,0,0,0,
219,218,220,218,251,180,0,0,0,0,252,198,182,195,236,181,
221,187,225,193,0,0,0,0,220,189,176,176,0,0,0,0,
0,0,221,218,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,162,178,225,218,0,0,0,0,0,0,0,0,
117,193,0,0,183,185,224,218,0,0,0,0,171,186,186,190,
0,0,120,193,223,218,0,0,187,190,0,0,192,204,170,186,
0,0,0,0,0,0,215,176,206,192,124,193,0,0,0,0,
0,0,0,0,0,0,0,0,230,218,0,0,33,194,177,192,
199,177,0,0,0,0,0,0,37,194,213,189,0,0,230,203,
242,186,0,0,0,0,0,0,0,0,188,190,43,194,167,192,
0,0,45,194,0,0,0,0,229,218,227,218,228,218,0,0,
0,0,0,0,0,0,54,244,235,195,0,0,0,0,166,219,
0,0,234,218,254,187,184,185,232,218,0,0,0,0,0,0,
0,0,233,218,0,0,184,191,0,0,0,0,0,0,231,218,
0,0,0,0,175,187,0,0,0,0,0,0,0,0,56,194,
0,0,58,194,0,0,0,0,0,0,236,218,235,218,240,218,
0,0,0,0,241,218,0,0,237,218,55,244,162,179,238,218,
239,218,213,200,0,0,0,0,0,0,0,0,225,201,202,183,
242,218,0,0,0,0,68,194,178,192,0,0,189,190,0,0,
0,0,0,0,210,195,0,0,0,0,0,0,0,0,0,0,
0,0,199,182,0,0,243,218,247,218,0,0,0,0,203,178,
244,218,246,218,0,0,0,0,0,0,0,0,245,218,0,0,
0,0,235,189,0,0,0,0,0,0,0,0,200,195,197,176,
248,218,82,194,0,0,0,0,0,0,249,218,0,0,0,0,
87,194,0,0,170,196,0,0,0,0,0,0,241,206,0,0,
0,0,0,0,0,0,195,187,0,0,0,0,235,202,0,0,
0,0,0,0,91,194,0,0,189,203,0,0,0,0,0,0,
162,219,251,218,0,0,0,0,254,218,0,0,253,218,94,194,
0,0,250,218,0,0,0,0,161,219,0,0,0,0,222,198,
0,0,252,218,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,163,219,0,0,
0,0,236,189,164,219,0,0,203,205,248,199,0,0,0,0,
165,219,0,0,0,0,0,0,0,0,0,0,167,219,0,0,
0,0,168,219,0,0,0,0,0,0,0,0,0,0,0,0,
169,219,0,0,202,182,200,177,185,185,170,219,0,0,171,219,
241,189,226,193,109,194,63,194,216,210,190,193,189,193,216,194,
199,186,0,0,0,0,242,208,0,0,0,0,0,0,0,0,
238,183,173,205,0,0,254,202,0,0,254,201,112,194,172,219,
0,0,0,0,0,0,0,0,243,186,191,196,173,219,175,207,
0,0,0,0,0,0,190,203,0,0,171,196,174,219,252,180,
0,0,0,0,0,0,0,0,0,0,0,0,175,219,176,219,
218,204,0,0,164,204,246,203,220,203,165,187,178,219,0,0,
0,0,235,188,0,0,0,0,209,203,0,0,180,219,183,219,
182,219,0,0,249,180,0,0,0,0,224,181,0,0,179,219,
0,0,181,219,0,0,0,0,0,0,0,0,184,219,0,0,
0,0,249,191,0,0,0,0,0,0,0,0,251,205,201,176,
224,186,188,194,0,0,221,188,0,0,0,0,243,190,0,0,
0,0,187,219,0,0,0,0,206,197,0,0,185,219,171,194,
186,219,242,190,221,204,188,219,189,219,232,205,33,195,0,0,
0,0,0,0,194,219,0,0,0,0,186,185,0,0,213,199,
191,219,236,197,222,218,226,218,0,0,207,181,0,0,199,199,
0,0,0,0,0,0,0,0,193,219,0,0,190,190,196,200,
0,0,0,0,0,0,0,0,0,0,199,219,0,0,250,200,
0,0,190,219,0,0,196,219,195,219,0,0,0,0,0,0,
207,192,0,0,0,0,0,0,0,0,237,203,0,0,211,206,
0,0,0,0,231,203,0,0,204,178,222,187,0,0,0,0,
200,207,198,219,245,191,0,0,0,0,0,0,197,219,0,0,
0,0,192,219,0,0,0,0,0,0,0,0,0,0,207,184,
0,0,0,0,0,0,204,219,202,219,0,0,205,178,200,219,
206,219,212,219,0,0,53,195,0,0,0,0,0,0,0,0,
57,195,200,194,0,0,0,0,193,202,0,0,214,219,0,0,
0,0,0,0,162,201,0,0,0,0,0,0,213,219,240,199,
191,203,187,180,0,0,247,192,192,189,0,0,0,0,0,0,
211,196,0,0,174,205,0,0,0,0,209,219,208,219,0,0,
0,0,0,0,210,219,0,0,207,219,0,0,0,0,215,219,
0,0,205,219,0,0,0,0,203,219,0,0,211,219,201,219,
0,0,236,195,0,0,248,204,198,188,244,186,0,0,0,0,
0,0,0,0,0,0,186,186,0,0,0,0,239,203,193,179,
0,0,58,244,206,196,202,198,201,177,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,242,192,0,0,0,0,180,192,170,183,
0,0,0,0,0,0,0,0,0,0,0,0,217,219,0,0,
0,0,187,185,252,179,0,0,0,0,0,0,0,0,0,0,
0,0,219,219,244,179,225,219,0,0,0,0,0,0,0,0,
0,0,0,0,222,219,0,0,243,192,0,0,0,0,0,0,
203,179,172,186,0,0,0,0,202,179,207,186,0,0,0,0,
220,219,229,183,203,183,237,197,88,195,0,0,218,219,0,0,
198,176,0,0,0,0,0,0,0,0,221,219,223,219,0,0,
205,182,172,183,73,195,188,180,203,181,0,0,0,0,0,0,
0,0,226,219,0,0,0,0,249,186,241,203,0,0,183,187,
0,0,0,0,0,0,227,219,0,0,0,0,0,0,176,201,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,239,219,0,0,179,178,228,219,
0,0,0,0,0,0,0,0,0,0,0,0,245,219,229,219,
0,0,194,206,0,0,236,219,0,0,223,199,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,244,219,0,0,231,219,
0,0,0,0,0,0,180,176,233,219,0,0,0,0,188,185,
0,0,0,0,0,0,235,219,0,0,234,219,0,0,230,219,
241,219,0,0,191,190,0,0,0,0,0,0,237,212,232,184,
252,205,0,0,0,0,0,0,0,0,232,219,0,0,244,196,
163,179,173,186,0,0,224,219,0,0,240,219,225,179,0,0,
0,0,238,219,242,219,0,0,238,197,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,254,180,0,0,178,220,0,0,
124,195,201,204,247,219,253,180,0,0,254,219,0,0,126,195,
0,0,0,0,192,203,0,0,161,220,163,220,0,0,167,220,
249,219,0,0,170,195,0,0,0,0,0,0,0,0,239,197,
171,220,252,219,0,0,168,220,0,0,0,0,0,0,162,220,
0,0,0,0,0,0,0,0,0,0,0,0,185,191,172,220,
0,0,0,0,179,192,0,0,0,0,0,0,0,0,0,0,
0,0,170,220,189,180,0,0,0,0,0,0,0,0,0,0,
208,207,246,219,0,0,0,0,166,220,216,176,0,0,0,0,
248,219,0,0,0,0,186,204,253,219,162,191,199,196,243,219,
0,0,0,0,165,220,0,0,0,0,0,0,0,0,0,0,
0,0,250,191,175,220,241,179,161,184,0,0,0,0,0,0,
0,0,177,220,250,219,176,220,0,0,169,220,251,219,0,0,
173,220,0,0,174,220,0,0,0,0,0,0,0,0,0,0,
191,220,0,0,0,0,0,0,206,198,0,0,164,220,0,0,
0,0,187,220,0,0,0,0,0,0,189,220,0,0,216,196,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,204,205,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,246,201,184,220,202,194,0,0,0,0,
0,0,190,220,191,193,0,0,181,220,194,220,193,220,0,0,
239,198,192,220,234,198,0,0,0,0,0,0,0,0,0,0,
76,196,0,0,196,220,183,220,0,0,200,182,186,220,221,189,
0,0,0,0,0,0,224,199,188,220,203,182,0,0,180,220,
182,220,179,220,0,0,0,0,176,207,218,179,185,220,0,0,
0,0,195,220,181,179,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,231,186,0,0,0,0,0,0,221,177,0,0,
0,0,212,220,0,0,0,0,177,207,215,220,0,0,0,0,
89,196,0,0,0,0,186,191,214,220,0,0,0,0,0,0,
213,220,0,0,0,0,0,0,0,0,0,0,0,0,210,220,
0,0,0,0,0,0,0,0,0,0,0,0,198,220,0,0,
0,0,227,220,197,220,0,0,216,220,0,0,0,0,0,0,
0,0,0,0,0,0,208,220,0,0,0,0,203,220,200,220,
0,0,201,220,0,0,209,220,0,0,0,0,0,0,162,244,
0,0,0,0,206,220,189,185,200,196,228,193,204,220,0,0,
199,220,0,0,0,0,202,220,0,0,0,0,0,0,0,0,
205,205,234,203,0,0,0,0,0,0,207,220,217,220,0,0,
0,0,0,0,106,196,0,0,0,0,0,0,0,0,225,220,
218,220,0,0,0,0,231,220,0,0,229,220,0,0,0,0,
0,0,0,0,224,220,0,0,0,0,0,0,0,0,0,0,
0,0,223,220,0,0,208,196,0,0,229,193,0,0,221,220,
0,0,0,0,219,220,0,0,0,0,226,220,0,0,0,0,
0,0,0,0,232,220,245,200,238,220,0,0,0,0,0,0,
0,0,0,0,233,220,236,220,230,220,0,0,0,0,244,195,
0,0,184,201,0,0,220,220,0,0,0,0,228,220,192,190,
0,0,207,204,248,220,235,220,0,0,0,0,0,0,0,0,
0,0,162,184,163,178,223,179,0,0,0,0,211,220,0,0,
125,196,0,0,0,0,0,0,0,0,193,190,240,220,0,0,
247,220,249,188,242,179,0,0,0,0,174,195,0,0,0,0,
0,0,0,0,0,0,0,0,237,220,0,0,39,197,242,220,
246,220,0,0,0,0,182,182,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
204,181,244,220,0,0,0,0,0,0,0,0,0,0,161,181,
0,0,203,198,243,220,0,0,0,0,0,0,245,220,0,0,
0,0,0,0,0,0,61,244,0,0,0,0,0,0,0,0,
0,0,0,0,239,220,53,197,0,0,0,0,0,0,0,0,
241,220,0,0,0,0,0,0,0,0,0,0,54,197,224,179,
201,195,0,0,0,0,0,0,252,220,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,250,220,233,184,0,0,
249,220,0,0,0,0,0,0,0,0,0,0,0,0,161,221,
0,0,0,0,0,0,0,0,216,219,0,0,0,0,0,0,
251,220,0,0,253,220,254,220,0,0,0,0,0,0,0,0,
0,0,0,0,172,221,0,0,168,221,0,0,237,219,0,0,
0,0,0,0,0,0,167,221,0,0,0,0,0,0,0,0,
166,221,0,0,0,0,163,221,0,0,0,0,0,0,0,0,
0,0,234,220,165,221,164,221,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,170,221,0,0,166,207,0,0,0,0,0,0,0,0,
0,0,0,0,173,221,251,182,0,0,0,0,169,221,171,221,
0,0,0,0,62,244,0,0,85,197,0,0,0,0,0,0,
167,200,0,0,174,221,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,178,221,175,221,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,243,205,176,221,0,0,0,0,
0,0,0,0,222,220,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,179,221,0,0,0,0,0,0,180,221,0,0,
0,0,0,0,0,0,0,0,0,0,181,177,0,0,182,221,
231,183,161,188,0,0,213,182,0,0,0,0,0,0,164,178,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,223,205,0,0,0,0,0,0,0,0,184,221,
183,221,186,221,189,181,0,0,0,0,214,182,190,180,0,0,
0,0,0,0,0,0,189,221,0,0,0,0,0,0,188,221,
0,0,190,221,0,0,0,0,206,178,0,0,183,195,0,0,
191,221,0,0,0,0,191,180,193,221,0,0,0,0,0,0,
0,0,192,221,0,0,194,221,0,0,0,0,0,0,195,221,
0,0,196,221,223,187,181,192,161,186,0,0,240,201,0,0,
0,0,226,202,196,207,0,0,0,0,0,0,0,0,245,187,
0,0,0,0,0,0,208,186,242,206,0,0,0,0,0,0,
197,221,198,221,0,0,224,187,0,0,0,0,0,0,199,221,
200,221,0,0,0,0,202,221,201,221,0,0,216,203,0,0,
0,0,222,189,236,188,196,187,0,0,203,221,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,205,221,163,191,0,0,
204,221,0,0,0,0,0,0,0,0,0,0,206,221,0,0,
0,0,0,0,0,0,0,0,207,221,0,0,0,0,0,0,
0,0,0,0,208,221,209,221,0,0,0,0,0,0,210,221,
0,0,212,221,211,221,213,221,165,178,202,195,0,0,214,221,
0,0,0,0,166,187,204,179,215,221,0,0,0,0,194,197,
204,212,0,0,0,0,0,0,0,0,163,181,216,221,0,0,
0,0,0,0,0,0,217,221,0,0,236,202,232,203,0,0,
0,0,0,0,199,198,218,221,230,200,0,0,56,198,0,0,
251,200,0,0,0,0,211,204,0,0,0,0,0,0,219,221,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,221,221,220,221,0,0,0,0,223,221,
0,0,0,0,0,0,222,221,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
225,221,0,0,0,0,0,0,0,0,0,0,0,0,225,187,
0,0,177,204,0,0,226,221,227,221,0,0,0,0,164,181,
0,0,0,0,0,0,228,221,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,230,221,229,221,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,229,191,0,0,0,0,185,201,
202,177,0,0,0,0,0,0,0,0,0,0,197,200,87,198,
245,196,193,189,225,181,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,198,200,0,0,
174,188,0,0,0,0,0,0,0,0,232,221,0,0,192,180,
0,0,0,0,248,177,0,0,96,198,242,198,231,221,190,185,
211,195,0,0,233,221,0,0,0,0,0,0,0,0,0,0,
241,221,0,0,234,221,0,0,0,0,0,0,0,0,99,198,
193,194,0,0,226,181,242,221,0,0,0,0,0,0,0,0,
0,0,0,0,232,183,0,0,0,0,165,181,240,221,0,0,
0,0,238,221,235,221,224,205,0,0,0,0,106,198,0,0,
192,196,0,0,0,0,0,0,217,198,236,221,0,0,0,0,
244,221,0,0,243,221,163,183,0,0,0,0,173,178,0,0,
0,0,187,186,237,221,239,221,0,0,0,0,0,0,0,0,
0,0,215,203,244,194,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,247,203,0,0,0,0,252,221,0,0,
0,0,253,221,0,0,207,178,0,0,0,0,0,0,0,0,
168,202,253,204,161,222,163,188,194,190,248,221,254,221,232,177,
0,0,183,182,0,0,0,0,245,221,250,221,0,0,0,0,
0,0,244,192,241,199,0,0,231,200,0,0,0,0,0,0,
0,0,0,0,0,0,247,221,0,0,161,203,0,0,249,221,
0,0,164,222,33,199,162,222,0,0,251,221,0,0,0,0,
0,0,162,203,200,199,227,181,0,0,165,197,0,0,0,0,
237,195,0,0,165,222,0,0,0,0,0,0,0,0,163,222,
217,194,246,221,0,0,203,177,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,43,199,0,0,0,0,0,0,
0,0,0,0,0,0,206,205,176,222,0,0,0,0,0,0,
0,0,0,0,175,222,0,0,0,0,0,0,0,0,246,192,
0,0,172,222,0,0,236,205,0,0,0,0,182,198,166,222,
0,0,0,0,0,0,0,0,0,0,197,196,0,0,0,0,
0,0,204,177,191,185,169,222,0,0,0,0,0,0,0,0,
0,0,0,0,167,189,174,222,0,0,173,222,168,222,0,0,
171,222,0,0,0,0,232,179,0,0,170,222,201,199,0,0,
0,0,174,206,0,0,0,0,244,190,245,192,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,182,222,180,222,0,0,205,201,0,0,0,0,0,0,
0,0,0,0,0,0,177,222,179,222,0,0,186,177,0,0,
0,0,192,185,178,207,0,0,189,179,0,0,226,201,67,199,
0,0,0,0,0,0,0,0,225,205,0,0,0,0,164,179,
187,191,181,222,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,186,222,0,0,71,199,
195,190,0,0,0,0,0,0,176,205,0,0,183,222,0,0,
0,0,0,0,0,0,178,222,0,0,184,222,75,199,0,0,
0,0,222,206,0,0,243,197,194,198,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,79,199,0,0,0,0,182,179,
0,0,0,0,213,177,0,0,0,0,190,222,0,0,0,0,
193,222,0,0,0,0,0,0,195,206,0,0,0,0,0,0,
228,205,0,0,0,0,0,0,0,0,200,222,194,222,191,222,
0,0,0,0,0,0,212,206,197,222,0,0,0,0,89,199,
0,0,202,189,199,222,0,0,0,0,204,222,0,0,0,0,
241,197,202,222,0,0,0,0,0,0,0,0,196,222,0,0,
0,0,184,195,0,0,0,0,203,222,0,0,192,222,0,0,
198,222,0,0,205,222,252,176,195,222,0,0,206,222,0,0,
0,0,188,191,64,244,223,189,0,0,165,202,0,0,174,186,
63,244,187,222,201,222,186,197,102,199,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,182,192,0,0,233,179,
209,186,196,190,189,222,194,189,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,204,183,0,0,188,222,0,0,0,0,
0,0,210,222,237,189,186,184,0,0,225,222,0,0,219,222,
244,181,207,197,0,0,214,222,223,222,175,176,178,177,107,199,
0,0,185,178,0,0,216,222,172,194,207,222,209,222,193,185,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
226,222,110,199,221,222,0,0,112,199,0,0,213,222,0,0,
0,0,0,0,0,0,220,222,0,0,0,0,0,0,0,0,
0,0,0,0,171,204,0,0,0,0,218,222,222,222,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,208,184,0,0,
197,190,0,0,0,0,185,195,124,199,0,0,0,0,212,222,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,205,
0,0,0,0,0,0,215,222,0,0,0,0,208,222,242,197,
0,0,0,0,211,222,0,0,0,0,0,0,217,222,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,209,207,190,188,
254,203,0,0,227,222,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,174,200,0,0,0,0,239,222,
187,184,0,0,0,0,0,0,0,0,0,0,224,189,0,0,
229,222,0,0,0,0,0,0,175,206,194,185,0,0,242,222,
0,0,0,0,238,176,0,0,0,0,240,222,0,0,0,0,
0,0,0,0,228,222,0,0,0,0,0,0,0,0,234,222,
0,0,0,0,236,222,0,0,0,0,0,0,207,205,231,222,
0,0,0,0,174,197,0,0,0,0,233,222,0,0,49,200,
0,0,0,0,241,222,0,0,235,222,199,204,0,0,0,0,
0,0,230,222,0,0,162,188,254,222,0,0,0,0,0,0,
0,0,234,179,0,0,232,222,237,222,238,222,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,236,194,218,194,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,246,222,0,0,0,0,252,222,
0,0,0,0,250,222,0,0,169,197,0,0,0,0,163,223,
247,222,0,0,0,0,0,0,0,0,0,0,248,222,224,222,
0,0,249,181,186,201,0,0,0,0,0,0,191,188,0,0,
0,0,247,185,0,0,0,0,0,0,0,0,0,0,179,207,
0,0,244,222,0,0,162,223,233,177,230,193,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
249,199,0,0,193,180,250,206,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,161,204,210,196,0,0,0,0,0,0,
0,0,251,222,253,222,0,0,0,0,0,0,0,0,0,0,
178,193,0,0,0,0,0,0,0,0,0,0,161,223,249,222,
0,0,243,222,0,0,0,0,0,0,195,180,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,233,183,0,0,0,0,0,0,
175,223,0,0,0,0,170,223,248,192,0,0,0,0,227,179,
0,0,0,0,0,0,0,0,225,189,0,0,179,223,0,0,
0,0,0,0,0,0,0,0,0,0,172,223,172,196,169,223,
217,196,0,0,0,0,0,0,204,223,0,0,0,0,0,0,
166,223,0,0,165,223,0,0,174,223,0,0,0,0,0,0,
168,223,167,223,173,223,0,0,161,192,0,0,164,223,0,0,
101,200,0,0,0,0,0,0,0,0,0,0,176,223,0,0,
0,0,177,223,0,0,0,0,0,0,0,0,0,0,194,180,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,182,223,0,0,181,223,183,223,0,0,0,0,0,0,
0,0,0,0,186,223,0,0,0,0,0,0,0,0,0,0,
0,0,195,197,0,0,180,223,0,0,120,200,0,0,0,0,
0,0,184,223,0,0,0,0,0,0,0,0,0,0,0,0,
227,183,249,194,178,223,187,199,0,0,0,0,185,223,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,190,223,188,223,0,0,0,0,
191,223,0,0,0,0,194,223,0,0,0,0,0,0,187,223,
234,185,168,199,0,0,0,0,185,222,0,0,0,0,0,0,
0,0,0,0,0,0,244,205,189,223,0,0,193,223,245,194,
0,0,192,223,0,0,171,223,0,0,38,201,233,239,0,0,
0,0,0,0,197,223,0,0,0,0,0,0,201,223,0,0,
0,0,199,223,0,0,0,0,0,0,43,201,0,0,45,201,
0,0,195,223,0,0,196,223,0,0,0,0,0,0,200,223,
0,0,198,223,0,0,0,0,0,0,206,201,0,0,0,0,
206,223,0,0,203,223,202,223,0,0,205,223,212,198,207,223,
0,0,0,0,0,0,0,0,0,0,0,0,245,195,237,194,
66,244,0,0,0,0,0,0,165,192,0,0,0,0,0,0,
208,223,0,0,210,223,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,209,223,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,245,222,0,0,0,0,0,0,
0,0,211,223,0,0,0,0,0,0,0,0,0,0,0,0,
231,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,212,223,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,208,178,0,0,0,0,0,0,244,197,
165,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
228,181,0,0,0,0,0,0,222,188,210,186,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,74,201,0,0,0,0,
0,0,167,207,230,191,0,0,0,0,0,0,234,177,0,0,
0,0,0,0,214,223,0,0,0,0,0,0,0,0,0,0,
0,0,213,223,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,83,201,217,223,186,195,220,223,215,223,
0,0,0,0,0,0,219,223,0,0,0,0,0,0,0,0,
218,223,192,197,217,176,33,244,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
245,206,0,0,0,0,222,223,0,0,0,0,0,0,168,177,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,224,223,0,0,0,0,0,0,223,223,0,0,221,223,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,216,223,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,163,203,0,0,0,0,0,0,226,223,0,0,0,0,
0,0,0,0,0,0,0,0,99,201,0,0,0,0,0,0,
0,0,225,223,0,0,0,0,0,0,0,0,0,0,105,201,
0,0,0,0,0,0,0,0,235,177,0,0,0,0,0,0,
0,0,228,223,178,202,0,0,227,223,0,0,0,0,0,0,
0,0,181,204,0,0,0,0,0,0,0,0,199,190,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,179,193,0,0,
0,0,0,0,0,0,0,0,198,190,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,116,201,117,201,
0,0,251,206,0,0,0,0,234,223,0,0,249,192,0,0,
0,0,0,0,0,0,0,0,0,0,230,223,235,223,0,0,
0,0,236,177,0,0,0,0,124,201,0,0,0,0,0,0,
0,0,0,0,233,223,0,0,225,199,229,223,232,223,200,190,
0,0,209,200,0,0,0,0,236,223,0,0,209,188,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,250,192,0,0,0,0,
0,0,0,0,0,0,0,0,239,223,0,0,0,0,0,0,
231,223,0,0,167,183,0,0,0,0,0,0,0,0,237,223,
0,0,0,0,0,0,0,0,208,205,240,223,0,0,0,0,
0,0,166,244,0,0,0,0,0,0,0,0,0,0,207,189,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
241,223,0,0,0,0,0,0,242,223,0,0,0,0,0,0,
0,0,174,199,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,244,223,0,0,0,0,0,0,0,0,245,223,0,0,
0,0,51,202,0,0,179,199,0,0,0,0,0,0,0,0,
245,197,247,223,0,0,0,0,0,0,0,0,249,223,0,0,
213,206,0,0,246,223,0,0,248,223,237,177,0,0,243,223,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,211,
250,223,0,0,0,0,0,0,0,0,231,193,184,187,252,223,
0,0,0,0,0,0,0,0,251,223,164,191,217,210,0,0,
0,0,0,0,0,0,0,0,0,0,253,223,0,0,0,0,
0,0,161,224,0,0,238,223,254,223,0,0,61,202,162,224,
0,0,0,0,0,0,0,0,0,0,0,0,250,199,0,0,
0,0,0,0,0,0,0,0,0,0,163,224,0,0,0,0,
164,224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,165,224,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
166,224,0,0,222,196,0,0,168,224,167,224,0,0,0,0,
169,224,0,0,170,224,0,0,0,0,223,188,227,201,0,0,
0,0,0,0,236,204,171,224,172,224,214,193,164,188,173,224,
174,224,0,0,0,0,0,0,0,0,0,0,175,224,210,202,
199,200,0,0,0,0,176,224,215,199,0,0,0,0,0,0,
0,0,0,0,173,196,0,0,0,0,0,0,0,0,0,0,
177,224,231,178,0,0,237,181,0,0,198,204,0,0,182,204,
0,0,180,178,180,207,0,0,0,0,0,0,0,0,210,203,
0,0,170,202,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,183,192,0,0,178,224,0,0,0,0,0,0,
0,0,195,198,0,0,0,0,0,0,163,184,179,224,0,0,
212,186,181,224,180,224,0,0,0,0,0,0,0,0,182,224,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,183,224,0,0,0,0,0,0,184,224,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
190,181,0,0,185,224,0,0,0,0,0,0,0,0,186,224,
0,0,0,0,0,0,0,0,164,184,0,0,0,0,200,200,
0,0,111,202,188,224,0,0,0,0,0,0,245,190,0,0,
0,0,187,224,0,0,0,0,0,0,0,0,113,202,0,0,
0,0,0,0,184,182,189,224,191,224,0,0,190,224,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,192,224,0,0,
209,184,0,0,193,224,0,0,0,0,0,0,0,0,233,182,
0,0,192,193,0,0,253,185,0,0,0,0,0,0,0,0,
195,224,196,224,194,224,0,0,0,0,0,0,0,0,0,0,
0,0,237,188,0,0,0,0,200,198,185,182,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,198,224,
172,195,197,224,0,0,0,0,181,207,226,199,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,201,224,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,203,224,200,224,
0,0,0,0,0,0,212,204,202,224,204,224,0,0,196,206,
0,0,0,0,0,0,0,0,46,203,208,224,0,0,0,0,
0,0,207,224,246,195,173,199,0,0,0,0,165,184,206,224,
0,0,0,0,0,0,0,0,205,224,0,0,177,205,178,205,
0,0,0,0,0,0,0,0,0,0,0,0,209,224,238,177,
0,0,0,0,0,0,0,0,246,185,226,187,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,210,224,211,224,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,213,224,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,195,189,0,0,0,0,0,0,0,0,
215,224,0,0,214,224,0,0,0,0,0,0,0,0,0,0,
216,224,0,0,205,179,0,0,0,0,218,224,0,0,74,203,
217,224,0,0,220,224,219,224,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,188,184,0,0,0,0,168,206,
0,0,204,182,0,0,166,178,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,234,182,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,225,180,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,232,206,222,224,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,224,224,0,0,102,203,0,0,0,0,
225,224,0,0,209,178,0,0,0,0,0,0,0,0,0,0,
221,224,106,203,185,187,0,0,0,0,193,196,223,224,0,0,
0,0,0,0,110,203,0,0,0,0,0,0,112,203,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,228,224,0,0,
238,188,0,0,0,0,116,203,0,0,226,224,0,0,0,0,
0,0,0,0,190,183,0,0,0,0,201,200,227,224,0,0,
0,0,254,224,0,0,0,0,0,0,121,203,0,0,0,0,
233,224,0,0,0,0,0,0,0,0,0,0,189,184,0,0,
0,0,0,0,0,0,229,181,0,0,230,224,253,205,37,204,
0,0,176,206,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,246,194,0,0,0,0,232,224,43,204,0,0,
0,0,45,204,46,204,0,0,0,0,0,0,50,204,0,0,
0,0,0,0,234,224,214,206,215,182,252,200,202,199,0,0,
0,0,0,0,235,224,0,0,0,0,0,0,0,0,237,224,
0,0,240,224,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,236,224,0,0,0,0,
0,0,239,224,234,184,205,177,241,224,0,0,240,191,238,224,
220,206,0,0,66,204,244,224,164,244,0,0,0,0,0,0,
0,0,242,224,245,224,0,0,0,0,0,0,0,0,231,224,
243,224,0,0,0,0,188,186,0,0,0,0,246,224,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,247,224,0,0,
0,0,0,0,0,0,254,205,0,0,0,0,0,0,0,0,
0,0,80,204,0,0,248,224,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,249,224,89,204,
0,0,0,0,229,224,0,0,0,0,0,0,0,0,250,224,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
196,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,165,188,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,251,224,0,0,0,0,0,0,0,0,252,224,
0,0,0,0,0,0,0,0,253,224,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,187,177,0,0,0,0,0,0,
161,225,0,0,187,201,162,225,0,0,0,0,164,180,163,225,
0,0,164,225,0,0,0,0,0,0,0,0,165,225,0,0,
167,225,168,225,166,225,0,0,0,0,0,0,211,201,170,225,
169,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,70,244,0,0,172,225,171,225,173,225,0,0,0,0,
0,0,0,0,0,0,0,0,174,225,176,225,175,225,0,0,
0,0,249,185,0,0,178,225,0,0,177,225,0,0,0,0,
197,180,0,0,211,191,0,0,188,197,0,0,179,225,184,192,
0,0,0,0,0,0,186,187,0,0,249,177,180,225,0,0,
209,205,0,0,0,0,227,202,181,225,0,0,0,0,42,205,
196,197,179,205,195,185,189,191,0,0,0,0,0,0,203,195,
180,210,0,0,174,196,232,178,182,225,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,183,225,0,0,188,225,0,0,
0,0,186,225,185,225,194,218,166,179,184,225,0,0,218,176,
0,0,170,200,0,0,0,0,202,200,0,0,0,0,0,0,
0,0,177,206,189,225,187,225,220,195,166,192,0,0,0,0,
171,200,0,0,173,201,0,0,191,225,172,206,205,183,192,225,
0,0,190,225,214,200,193,225,0,0,194,225,0,0,59,205,
219,176,0,0,0,0,246,190,199,225,0,0,196,225,237,198,
195,225,0,0,0,0,0,0,0,0,0,0,0,0,166,181,
0,0,0,0,202,225,0,0,0,0,0,0,197,225,198,225,
0,0,201,225,200,225,165,201,0,0,0,0,194,193,193,193,
0,0,191,181,0,0,0,0,203,225,0,0,0,0,0,0,
0,0,0,0,204,225,0,0,0,0,205,225,0,0,0,0,
0,0,0,0,0,0,207,225,0,0,206,225,0,0,0,0,
0,0,0,0,0,0,214,177,0,0,0,0,0,0,0,0,
0,0,215,225,232,200,209,225,0,0,211,225,0,0,0,0,
213,225,190,191,0,0,0,0,214,225,212,225,192,188,0,0,
0,0,0,0,208,225,210,225,0,0,194,201,0,0,201,190,
0,0,0,0,217,225,0,0,0,0,216,225,0,0,0,0,
0,0,0,0,218,225,0,0,166,188,175,186,0,0,0,0,
247,197,219,225,0,0,203,196,0,0,0,0,221,225,0,0,
0,0,0,0,161,206,220,225,0,0,0,0,0,0,0,0,
0,0,233,193,0,0,0,0,0,0,0,0,0,0,0,0,
226,225,0,0,228,225,229,225,212,195,0,0,0,0,0,0,
0,0,0,0,227,225,0,0,224,225,0,0,222,225,223,225,
0,0,225,225,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,232,225,0,0,230,225,0,0,231,225,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,225,
235,225,236,225,237,225,0,0,238,225,0,0,0,0,234,225,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
240,225,0,0,0,0,0,0,239,225,0,0,0,0,0,0,
0,0,0,0,0,0,241,225,0,0,0,0,0,0,0,0,
0,0,0,0,197,206,0,0,0,0,0,0,244,225,242,225,
243,225,0,0,0,0,0,0,226,180,0,0,0,0,0,0,
0,0,0,0,254,204,0,0,0,0,0,0,202,202,0,0,
246,225,0,0,0,0,0,0,245,225,0,0,0,0,0,0,
0,0,247,225,248,225,0,0,0,0,0,0,0,0,252,225,
249,225,250,225,251,225,0,0,253,225,0,0,0,0,0,0,
254,225,0,0,161,226,0,0,0,0,0,0,162,226,0,0,
163,226,0,0,175,200,208,197,164,226,242,199,180,201,0,0,
165,226,0,0,71,244,166,226,170,197,0,0,167,179,196,185,
167,226,0,0,0,0,168,226,0,0,0,0,169,226,0,0,
169,187,0,0,0,0,171,226,0,0,0,0,170,226,0,0,
0,0,172,226,173,226,58,206,59,206,0,0,72,244,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,67,206,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,233,200,0,0,
174,226,0,0,0,0,0,0,175,226,0,0,0,0,233,243,
176,226,177,226,178,226,0,0,0,0,0,0,0,0,174,187,
0,0,0,0,179,226,214,199,0,0,0,0,223,203,0,0,
206,177,0,0,215,177,0,0,0,0,180,226,0,0,0,0,
0,0,0,0,182,226,0,0,0,0,0,0,181,226,240,197,
0,0,0,0,0,0,185,192,185,221,0,0,183,226,193,204,
0,0,184,226,0,0,198,180,215,200,185,226,0,0,186,226,
0,0,0,0,187,226,0,0,0,0,0,0,220,204,0,0,
0,0,0,0,213,204,0,0,190,196,0,0,0,0,0,0,
234,193,0,0,0,0,189,226,0,0,0,0,226,189,0,0,
0,0,202,190,0,0,0,0,192,226,0,0,0,0,191,226,
190,226,253,200,0,0,199,180,169,184,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,198,226,0,0,0,0,195,226,191,191,
178,204,0,0,0,0,0,0,194,226,196,226,197,226,0,0,
0,0,193,226,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,226,
200,226,0,0,175,196,0,0,227,180,0,0,0,0,0,0,
229,195,0,0,0,0,0,0,0,0,0,0,114,206,201,226,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,202,226,205,226,0,0,0,0,0,0,0,0,
0,0,231,191,0,0,196,198,0,0,206,226,211,203,0,0,
203,226,0,0,0,0,204,226,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,209,226,0,0,0,0,0,0,0,0,208,226,207,226,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,211,226,0,0,0,0,210,226,0,0,
0,0,212,226,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,214,226,0,0,
213,226,0,0,0,0,0,0,0,0,205,202,0,0,0,0,
0,0,0,0,0,0,0,0,214,189,198,206,0,0,0,0,
215,226,0,0,0,0,183,198,0,0,0,0,216,226,0,0,
0,0,217,226,0,0,221,226,219,226,220,226,0,0,218,226,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,226,
0,0,0,0,0,0,0,0,0,0,223,226,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,226,
0,0,0,0,225,226,183,204,226,226,0,0,0,0,0,0,
0,0,0,0,240,204,227,226,0,0,206,195,0,0,234,199,
0,0,235,182,0,0,0,0,0,0,187,195,228,226,186,182,
0,0,0,0,0,0,208,192,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,229,226,0,0,0,0,0,0,
0,0,0,0,189,186,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,230,226,0,0,0,0,0,0,
0,0,0,0,231,226,0,0,166,184,213,186,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
233,226,85,207,0,0,0,0,0,0,214,197,214,186,206,181,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,164,203,0,0,203,199,0,0,0,0,0,0,
0,0,0,0,215,197,0,0,0,0,0,0,0,0,220,185,
0,0,0,0,0,0,0,0,0,0,235,226,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,98,207,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,203,190,0,0,0,0,
0,0,0,0,0,0,0,0,105,207,0,0,0,0,0,0,
0,0,0,0,0,0,178,206,197,185,0,0,0,0,167,184,
0,0,0,0,163,200,0,0,237,226,0,0,0,0,0,0,
0,0,0,0,109,207,0,0,239,226,0,0,0,0,0,0,
0,0,235,184,0,0,0,0,0,0,0,0,238,226,246,196,
0,0,0,0,0,0,0,0,241,226,183,179,236,226,0,0,
0,0,234,200,0,0,176,177,0,0,236,186,0,0,210,207,
0,0,0,0,240,226,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,242,226,0,0,0,0,0,0,203,202,
0,0,217,192,244,226,0,0,0,0,0,0,0,0,245,226,
0,0,0,0,0,0,0,0,0,0,243,226,0,0,0,0,
0,0,0,0,206,179,0,0,251,226,0,0,250,226,0,0,
0,0,167,188,0,0,0,0,0,0,252,226,247,226,0,0,
0,0,0,0,253,226,248,226,0,0,0,0,0,0,0,0,
216,200,246,226,0,0,0,0,249,226,0,0,0,0,0,0,
0,0,0,0,162,227,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,227,
225,203,0,0,0,0,0,0,254,226,0,0,0,0,235,176,
0,0,0,0,0,0,0,0,164,227,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,163,227,0,0,0,0,
0,0,204,190,0,0,0,0,0,0,0,0,0,0,165,227,
0,0,0,0,0,0,0,0,0,0,0,0,195,193,0,0,
0,0,167,227,166,227,0,0,0,0,0,0,0,0,0,0,
0,0,168,227,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,232,226,0,0,
0,0,0,0,234,226,170,227,169,227,0,0,0,0,0,0,
75,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,168,188,0,0,233,206,0,0,210,188,0,0,
171,227,183,183,0,0,0,0,0,0,0,0,0,0,192,181,
167,181,227,187,0,0,0,0,0,0,0,0,0,0,0,0,
180,205,0,0,0,0,177,227,0,0,176,227,196,193,173,227,
0,0,0,0,175,227,0,0,0,0,203,189,192,191,174,227,
172,227,0,0,170,199,0,0,0,0,205,190,0,0,0,0,
188,201,0,0,0,0,0,0,0,0,215,186,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,197,
0,0,0,0,178,227,0,0,0,0,0,0,0,0,179,227,
201,227,216,182,0,0,0,0,189,207,181,193,0,0,0,0,
0,0,0,0,180,227,0,0,0,0,210,178,247,196,161,202,
0,0,0,0,0,0,0,0,101,208,0,0,0,0,0,0,
0,0,0,0,0,0,105,208,0,0,181,227,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,250,181,182,227,
0,0,0,0,184,227,0,0,0,0,0,0,185,227,0,0,
169,199,0,0,0,0,186,227,0,0,0,0,0,0,0,0,
0,0,187,227,188,227,0,0,0,0,217,182,211,178,197,198,
168,189,228,187,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,189,227,0,0,169,189,0,0,0,0,0,0,0,0,
0,0,202,178,195,201,0,0,0,0,190,227,0,0,0,0,
235,200,0,0,0,0,0,0,0,0,0,0,0,0,197,193,
0,0,193,227,0,0,194,227,233,199,0,0,193,191,191,227,
0,0,225,195,0,0,0,0,192,227,0,0,0,0,0,0,
206,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,220,176,0,0,0,0,0,0,0,0,
169,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
195,227,0,0,0,0,248,196,0,0,196,227,199,192,0,0,
0,0,0,0,0,0,0,0,173,204,0,0,0,0,163,201,
197,227,198,227,213,195,0,0,199,206,0,0,0,0,200,227,
199,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,239,188,0,0,
0,0,202,227,240,176,0,0,0,0,0,0,0,0,205,227,
0,0,0,0,0,0,203,227,212,178,206,183,204,227,198,185,
242,185,0,0,230,202,206,227,0,0,0,0,212,203,0,0,
0,0,208,227,0,0,0,0,0,0,209,192,207,177,186,178,
172,176,0,0,0,0,0,0,0,0,0,0,0,0,207,227,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,209,227,210,227,247,190,0,0,0,0,0,0,0,0,
0,0,211,227,0,0,207,179,0,0,0,0,0,0,0,0,
213,227,0,0,0,0,0,0,234,183,0,0,230,181,0,0,
0,0,214,227,245,182,0,0,0,0,215,227,0,0,252,192,
0,0,205,198,0,0,224,192,245,186,0,0,0,0,0,0,
216,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,226,195,235,193,0,0,218,227,220,227,217,227,
219,227,0,0,0,0,0,0,0,0,0,0,0,0,162,183,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,221,227,166,183,0,0,0,0,0,0,231,181,210,205,
223,227,0,0,0,0,0,0,0,0,0,0,224,227,0,0,
0,0,0,0,174,177,0,0,0,0,0,0,0,0,227,227,
0,0,0,0,0,0,246,179,226,227,225,227,0,0,229,227,
222,227,0,0,230,227,169,206,0,0,231,227,0,0,232,227,
0,0,104,209,244,212,234,227,0,0,233,227,0,0,0,0,
0,0,235,227,236,227,0,0,181,206,237,227,0,0,239,240,
207,190,238,227,239,227,215,189,0,0,184,198,240,227,80,244,
0,0,0,0,168,195,108,209,0,0,241,227,0,0,188,195,
242,227,0,0,0,0,0,0,0,0,0,0,165,182,0,0,
191,209,221,195,179,188,0,0,0,0,0,0,0,0,200,180,
0,0,0,0,243,227,0,0,162,228,0,0,246,227,0,0,
232,181,0,0,245,227,164,228,0,0,0,0,0,0,244,227,
0,0,208,190,0,0,0,0,0,0,0,0,0,0,0,0,
248,227,249,227,0,0,171,197,0,0,0,0,250,227,0,0,
222,179,0,0,0,0,0,0,0,0,218,191,228,201,0,0,
252,227,0,0,0,0,0,0,232,194,0,0,0,0,0,0,
0,0,0,0,0,0,247,227,0,0,251,227,253,227,0,0,
0,0,251,186,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,166,228,174,201,0,0,
166,200,249,197,0,0,218,182,165,228,163,228,0,0,181,200,
254,227,222,195,251,197,0,0,250,197,0,0,246,186,0,0,
0,0,0,0,0,0,0,0,0,0,184,228,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,168,228,0,0,170,228,
0,0,0,0,0,0,0,0,173,228,0,0,174,228,0,0,
171,228,172,228,0,0,0,0,169,228,167,228,0,0,0,0,
0,0,0,0,161,228,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,207,202,213,178,
0,0,0,0,0,0,181,228,0,0,178,228,0,0,183,228,
0,0,0,0,182,228,0,0,243,199,167,204,0,0,187,187,
176,228,185,228,180,228,0,0,179,228,175,228,59,210,177,228,
0,0,201,180,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,189,195,0,0,0,0,253,192,0,0,0,0,
0,0,162,200,0,0,0,0,190,228,0,0,0,0,0,0,
164,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
225,192,187,228,0,0,0,0,207,200,0,0,191,228,211,202,
0,0,219,195,0,0,186,228,188,228,0,0,0,0,189,228,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,192,228,0,0,0,0,
196,188,0,0,0,0,0,0,198,198,197,228,196,228,0,0,
0,0,193,228,0,0,0,0,0,0,182,207,0,0,0,0,
0,0,0,0,0,0,202,228,0,0,0,0,206,228,203,228,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
199,228,0,0,0,0,0,0,0,0,0,0,0,0,200,228,
0,0,0,0,0,0,0,0,0,0,205,228,0,0,0,0,
0,0,194,228,213,210,201,228,195,228,0,0,0,0,204,228,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,228,
0,0,202,180,0,0,207,228,0,0,0,0,0,0,208,228,
0,0,0,0,209,228,212,228,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,228,
246,200,0,0,0,0,0,0,0,0,213,228,252,206,237,202,
218,228,0,0,0,0,215,228,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,214,228,210,192,0,0,217,228,
219,228,0,0,0,0,0,0,216,228,0,0,223,228,0,0,
220,228,0,0,0,0,0,0,0,0,0,0,0,0,221,228,
198,228,0,0,0,0,0,0,222,228,224,228,0,0,0,0,
0,0,0,0,0,0,0,0,225,228,0,0,0,0,0,0,
0,0,0,0,0,0,198,202,0,0,226,228,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,226,204,0,0,
0,0,206,182,169,183,227,228,0,0,0,0,0,0,0,0,
0,0,180,202,0,0,232,191,0,0,176,204,0,0,0,0,
228,228,0,0,179,206,0,0,0,0,244,199,0,0,198,193,
180,199,0,0,0,0,205,189,0,0,0,0,0,0,192,176,
0,0,233,228,231,228,0,0,229,228,161,180,0,0,209,190,
234,228,0,0,0,0,232,228,0,0,230,228,238,228,0,0,
0,0,237,228,236,228,235,228,0,0,0,0,0,0,0,0,
0,0,239,228,0,0,0,0,0,0,240,228,186,192,0,0,
241,228,0,0,243,228,0,0,0,0,242,228,0,0,0,0,
0,0,0,0,210,184,0,0,0,0,0,0,184,193,0,0,
0,0,0,0,245,228,0,0,0,0,0,0,252,197,0,0,
244,228,0,0,0,0,0,0,246,228,0,0,181,202,236,193,
199,185,0,0,247,228,0,0,0,0,0,0,0,0,200,206,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,228,
0,0,0,0,250,228,0,0,251,228,0,0,252,228,0,0,
229,187,0,0,253,228,207,183,0,0,0,0,234,181,0,0,
170,181,0,0,161,229,0,0,243,204,200,185,254,228,0,0,
0,0,0,0,164,229,230,204,0,0,188,199,0,0,0,0,
179,201,0,0,0,0,0,0,227,189,163,229,0,0,211,188,
201,185,230,187,233,181,182,202,162,229,0,0,0,0,0,0,
199,193,194,203,247,186,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,231,187,221,196,0,0,167,229,223,206,
217,186,0,0,168,229,194,191,0,0,170,229,0,0,0,0,
0,0,210,190,176,186,0,0,0,0,0,0,0,0,169,229,
0,0,0,0,170,189,190,184,200,193,165,229,171,229,0,0,
97,211,0,0,0,0,166,229,208,183,0,0,174,229,178,229,
235,183,0,0,0,0,0,0,0,0,0,0,173,229,0,0,
0,0,0,0,0,0,182,229,104,211,0,0,202,185,0,0,
0,0,237,205,188,176,179,229,0,0,0,0,235,181,0,0,
176,229,0,0,0,0,0,0,0,0,0,0,177,229,0,0,
0,0,253,197,175,229,172,229,0,0,168,179,228,192,0,0,
0,0,168,184,0,0,0,0,0,0,184,229,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,181,229,0,0,0,0,0,0,0,0,0,0,183,229,
0,0,0,0,0,0,180,229,0,0,0,0,0,0,0,0,
0,0,209,183,179,194,185,229,238,193,0,0,0,0,198,229,
84,244,0,0,194,229,188,229,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,192,229,250,188,221,176,187,229,195,229,
199,229,203,185,214,204,0,0,214,196,189,229,0,0,39,212,
197,229,0,0,186,229,190,195,0,0,191,229,189,176,202,204,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,229,
0,0,0,0,219,182,236,200,0,0,0,0,0,0,237,193,
0,0,208,206,239,189,0,0,0,0,238,229,85,244,0,0,
200,229,0,0,254,192,0,0,196,229,201,229,203,229,0,0,
249,196,206,229,0,0,0,0,202,229,0,0,0,0,0,0,
212,202,203,180,0,0,0,0,203,204,0,0,0,0,222,176,
0,0,0,0,205,229,0,0,253,206,0,0,0,0,0,0,
0,0,0,0,0,0,204,229,0,0,0,0,0,0,0,0,
0,0,239,177,0,0,0,0,236,198,207,229,0,0,0,0,
0,0,214,229,208,229,215,229,0,0,0,0,0,0,0,0,
0,0,0,0,211,229,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,251,199,0,0,0,0,202,188,213,229,
0,0,210,229,216,229,209,229,0,0,0,0,196,189,0,0,
0,0,0,0,0,0,165,203,0,0,0,0,204,189,0,0,
0,0,212,229,224,229,0,0,0,0,220,229,0,0,223,229,
0,0,221,229,225,229,219,229,0,0,193,229,211,192,0,0,
0,0,203,200,0,0,222,229,0,0,0,0,217,229,0,0,
0,0,0,0,161,193,210,183,0,0,171,189,0,0,0,0,
0,0,0,0,84,212,0,0,165,191,182,193,228,229,0,0,
0,0,230,229,231,229,0,0,0,0,227,229,229,229,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,218,229,226,229,
0,0,234,229,233,229,0,0,0,0,250,203,0,0,0,0,
171,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,232,229,0,0,236,229,235,229,239,229,0,0,241,229,
0,0,0,0,188,187,237,229,0,0,0,0,0,0,0,0,
242,229,243,229,99,212,0,0,244,229,0,0,250,229,187,197,
246,229,0,0,245,229,247,229,248,229,0,0,249,229,0,0,
0,0,0,0,0,0,251,229,252,229,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,204,180,0,0,
253,229,0,0,254,229,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,161,230,0,0,114,212,
0,0,0,0,0,0,0,0,162,230,163,230,164,230,0,0,
165,230,166,230,0,0,0,0,168,230,167,230,0,0,0,0,
169,230,0,0,0,0,0,0,0,0,0,0,0,0,170,230,
171,230,0,0,0,0,0,0,0,0,0,0,0,0,174,230,
172,230,173,230,225,186,211,183,0,0,0,0,214,195,0,0,
179,200,0,0,240,189,0,0,0,0,205,199,0,0,237,200,
175,230,237,216,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,176,230,178,230,0,0,229,205,177,230,180,230,
179,230,0,0,211,205,0,0,181,230,0,0,254,200,0,0,
0,0,0,0,0,0,0,0,182,230,0,0,0,0,0,0,
0,0,0,0,185,230,0,0,0,0,184,230,183,230,0,0,
0,0,46,213,0,0,186,230,178,183,0,0,0,0,0,0,
162,193,193,181,0,0,0,0,0,0,0,0,190,230,187,230,
0,0,0,0,188,230,0,0,0,0,0,0,191,230,0,0,
192,230,189,230,0,0,0,0,0,0,169,177,0,0,0,0,
0,0,167,178,0,0,0,0,0,0,194,230,195,230,0,0,
0,0,0,0,196,230,0,0,226,205,0,0,0,0,0,0,
0,0,0,0,172,189,0,0,198,230,197,230,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
233,191,199,230,0,0,0,0,0,0,0,0,200,230,0,0,
0,0,201,230,0,0,229,180,0,0,0,0,0,0,0,0,
205,180,0,0,0,0,202,230,0,0,0,0,0,0,0,0,
0,0,203,230,0,0,221,203,227,205,0,0,0,0,0,0,
212,205,183,207,0,0,205,185,206,230,212,188,205,230,0,0,
0,0,0,0,0,0,207,230,169,188,0,0,0,0,0,0,
209,194,0,0,208,230,0,0,0,0,204,185,0,0,215,204,
209,230,210,230,0,0,0,0,211,230,0,0,0,0,0,0,
0,0,212,230,0,0,0,0,0,0,0,0,0,0,0,0,
213,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,170,188,0,0,0,0,237,204,0,0,
0,0,0,0,0,0,215,230,0,0,191,195,0,0,214,230,
0,0,0,0,0,0,0,0,0,0,0,0,217,230,0,0,
0,0,0,0,216,230,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,218,230,0,0,0,0,0,0,187,192,0,0,
219,230,0,0,220,230,0,0,0,0,0,0,185,202,221,230,
0,0,239,193,222,230,0,0,0,0,0,0,0,0,0,0,
223,230,0,0,0,0,0,0,0,0,0,0,0,0,254,206,
226,230,0,0,225,230,224,230,176,196,0,0,227,230,166,191,
0,0,228,230,0,0,0,0,0,0,229,230,184,207,230,230,
0,0,0,0,0,0,0,0,231,230,233,230,232,230,165,200,
0,0,249,198,0,0,190,207,169,200,0,0,0,0,0,0,
0,0,0,0,0,0,235,230,0,0,0,0,211,190,0,0,
170,201,0,0,236,230,234,230,0,0,206,180,0,0,0,0,
0,0,212,184,232,187,0,0,0,0,238,200,0,0,0,0,
0,0,170,184,195,203,0,0,239,230,237,230,0,0,206,185,
0,0,207,185,233,176,0,0,232,186,0,0,0,0,0,0,
0,0,0,0,217,199,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,223,176,244,230,0,0,192,195,0,0,
0,0,0,0,0,0,0,0,216,199,0,0,219,194,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,246,230,0,0,
0,0,242,230,245,230,240,230,0,0,243,230,166,203,0,0,
0,0,213,184,0,0,0,0,253,176,241,230,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,230,
0,0,249,230,0,0,0,0,185,198,0,0,0,0,0,0,
187,182,0,0,0,0,0,0,166,231,189,199,0,0,0,0,
0,0,0,0,233,187,0,0,0,0,188,182,200,192,198,207,
174,204,247,230,212,192,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,211,181,250,230,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,252,230,0,0,0,0,0,0,0,0,
0,0,251,230,0,0,0,0,0,0,0,0,0,0,253,230,
0,0,166,195,0,0,190,199,0,0,0,0,0,0,0,0,
0,0,177,196,0,0,0,0,0,0,0,0,163,231,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,162,231,0,0,
0,0,0,0,0,0,254,230,0,0,0,0,213,191,0,0,
229,201,165,231,0,0,164,231,208,185,211,207,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,231,
0,0,0,0,0,0,0,0,0,0,169,231,170,231,0,0,
0,0,0,0,0,0,240,188,0,0,0,0,168,231,0,0,
248,185,167,231,0,0,0,0,171,231,0,0,0,0,0,0,
178,196,162,202,163,193,0,0,0,0,0,0,0,0,220,194,
175,231,0,0,176,231,172,231,0,0,0,0,0,0,0,0,
173,231,0,0,174,231,0,0,0,0,0,0,0,0,209,185,
0,0,0,0,0,0,182,231,0,0,178,231,0,0,0,0,
0,0,0,0,230,201,0,0,236,203,168,201,0,0,0,0,
177,231,0,0,0,0,180,231,179,231,0,0,0,0,0,0,
196,203,183,231,0,0,0,0,0,0,0,0,0,0,0,0,
184,231,0,0,0,0,183,193,0,0,185,231,0,0,0,0,
187,231,0,0,191,231,0,0,0,0,188,231,186,231,191,199,
189,231,0,0,190,231,0,0,0,0,0,0,178,178,0,0,
197,231,192,231,0,0,0,0,0,0,193,231,0,0,0,0,
0,0,194,231,0,0,161,194,0,0,0,0,0,0,0,0,
196,231,195,231,198,231,0,0,0,0,0,0,0,0,199,231,
200,231,0,0,0,0,195,191,0,0,233,178,0,0,201,231,
215,206,0,0,171,188,0,0,0,0,173,189,0,0,0,0,
0,0,0,0,0,0,234,187,215,195,0,0,0,0,0,0,
0,0,0,0,202,231,203,231,177,177,0,0,204,231,0,0,
0,0,205,231,206,231,0,0,0,0,207,231,0,0,208,231,
189,182,170,218,209,231,0,0,229,192,210,231,203,188,0,0,
211,231,0,0,176,208,0,0,0,0,0,0,212,231,222,202,
220,180,0,0,0,0,164,193,216,189,0,0,241,201,174,189,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,213,231,210,185,214,231,204,200,0,0,228,231,0,0,
0,0,0,0,0,0,216,231,0,0,201,194,245,199,191,184,
215,231,165,193,0,0,0,0,0,0,0,0,0,0,0,0,
217,231,0,0,0,0,0,0,0,0,0,0,0,0,250,196,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
219,231,218,231,221,231,0,0,0,0,220,231,0,0,222,231,
0,0,0,0,224,231,0,0,223,231,0,0,207,180,0,0,
225,231,0,0,226,231,227,231,0,0,0,0,177,186,201,206,
0,0,229,231,167,191,0,0,0,0,0,0,240,177,230,231,
231,231,0,0,0,0,0,0,0,0,0,0,232,231,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,242,176,0,0,233,231,0,0,0,0,
0,0,0,0,234,231,0,0,0,0,0,0,0,0,0,0,
0,0,231,201,0,0,0,0,0,0,199,188,0,0,236,231,
0,0,0,0,0,0,0,0,0,0,169,179,178,176,0,0,
0,0,0,0,0,0,235,231,238,231,206,199,0,0,196,191,
0,0,214,178,0,0,167,203,0,0,0,0,0,0,0,0,
221,183,220,182,0,0,237,231,0,0,234,178,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,163,180,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,241,177,242,231,234,206,221,194,0,0,0,0,196,201,
0,0,254,231,0,0,215,178,252,231,0,0,250,231,241,231,
0,0,239,231,0,0,240,231,0,0,227,188,236,182,247,195,
0,0,0,0,0,0,209,198,0,0,0,0,0,0,0,0,
0,0,209,177,0,0,244,231,243,231,0,0,0,0,0,0,
0,0,249,231,245,231,248,231,0,0,0,0,0,0,0,0,
0,0,94,215,208,204,247,231,216,178,253,179,251,231,0,0,
0,0,253,231,0,0,0,0,0,0,0,0,212,183,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,163,232,172,232,
173,232,0,0,0,0,0,0,171,176,0,0,0,0,0,0,
0,0,0,0,0,0,180,232,0,0,0,0,0,0,0,0,
241,176,0,0,0,0,171,232,0,0,0,0,0,0,170,232,
0,0,165,232,164,232,0,0,162,232,161,232,227,195,0,0,
251,194,167,232,0,0,0,0,0,0,0,0,0,0,0,0,
166,232,0,0,0,0,0,0,0,0,169,232,0,0,0,0,
0,0,240,193,213,183,0,0,0,0,0,0,0,0,193,177,
168,232,0,0,211,185,0,0,0,0,0,0,0,0,0,0,
241,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,87,244,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,186,232,0,0,187,232,0,0,217,178,
0,0,0,0,0,0,174,178,184,232,0,0,0,0,34,216,
0,0,0,0,0,0,0,0,0,0,174,232,0,0,182,232,
0,0,189,232,183,232,0,0,0,0,0,0,181,232,0,0,
0,0,0,0,0,0,246,231,0,0,0,0,179,232,0,0,
0,0,0,0,175,232,0,0,0,0,0,0,208,180,177,232,
188,232,0,0,178,232,0,0,0,0,0,0,0,0,0,0,
190,232,0,0,176,232,252,199,0,0,0,0,0,0,0,0,
0,0,233,205,0,0,0,0,0,0,185,232,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,207,232,0,0,0,0,
0,0,199,232,0,0,0,0,0,0,251,191,0,0,55,216,
0,0,0,0,198,181,0,0,221,182,0,0,194,232,0,0,
0,0,0,0,0,0,219,178,0,0,0,0,212,190,0,0,
197,232,0,0,0,0,0,0,218,186,0,0,0,0,209,197,
202,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,238,202,0,0,193,232,0,0,0,0,0,0,218,178,
214,184,169,201,203,232,0,0,191,232,0,0,65,216,200,232,
0,0,0,0,0,0,210,232,0,0,195,232,0,0,0,0,
0,0,0,0,0,0,196,232,186,198,0,0,0,0,201,232,
0,0,0,0,0,0,198,232,168,203,204,232,224,176,0,0,
0,0,0,0,0,0,192,232,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
206,232,0,0,205,232,0,0,0,0,0,0,0,0,0,0,
0,0,235,199,212,232,0,0,223,232,0,0,0,0,0,0,
0,0,254,179,0,0,0,0,0,0,226,232,0,0,0,0,
208,232,0,0,0,0,0,0,213,232,238,205,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,222,232,0,0,
81,216,213,205,0,0,0,0,0,0,0,0,170,206,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,195,
0,0,0,0,0,0,235,179,0,0,0,0,0,0,0,0,
0,0,242,201,228,232,161,198,0,0,0,0,177,176,0,0,
0,0,221,232,0,0,217,232,242,193,211,232,219,232,224,232,
0,0,172,199,0,0,0,0,0,0,170,176,0,0,216,232,
0,0,225,232,248,201,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,220,232,0,0,215,232,0,0,0,0,0,0,
0,0,0,0,0,0,213,190,0,0,0,0,0,0,0,0,
175,189,0,0,0,0,0,0,172,188,0,0,0,0,0,0,
0,0,216,204,0,0,0,0,199,201,0,0,0,0,231,232,
0,0,240,232,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,218,232,0,0,0,0,
0,0,0,0,247,179,0,0,116,216,0,0,0,0,0,0,
248,190,229,232,0,0,234,232,243,193,0,0,0,0,230,232,
0,0,237,232,0,0,0,0,223,195,0,0,238,232,0,0,
0,0,214,205,227,232,184,179,0,0,233,232,0,0,0,0,
236,232,172,204,0,0,0,0,0,0,0,0,239,232,0,0,
0,0,232,232,235,232,0,0,33,217,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,169,203,0,0,161,207,0,0,
0,0,0,0,0,0,0,0,243,232,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,250,232,0,0,0,0,242,232,
195,188,0,0,0,0,0,0,0,0,0,0,209,232,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,206,202,0,0,162,204,249,232,248,232,0,0,244,232,
245,232,0,0,182,177,0,0,0,0,0,0,0,0,247,232,
0,0,241,232,0,0,0,0,0,0,0,0,213,196,0,0,
0,0,0,0,0,0,0,0,246,232,254,176,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,162,194,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,195,202,0,0,0,0,
251,232,161,233,0,0,217,200,0,0,0,0,0,0,0,0,
254,232,214,190,201,188,163,233,0,0,0,0,190,182,0,0,
0,0,0,0,0,0,70,217,0,0,164,233,0,0,249,201,
253,232,72,217,214,232,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,252,232,0,0,0,0,0,0,0,0,
207,207,162,198,243,201,81,217,0,0,171,233,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,233,
0,0,0,0,0,0,0,0,0,0,0,0,178,233,0,0,
165,233,0,0,0,0,0,0,246,199,0,0,0,0,175,233,
167,233,0,0,169,233,0,0,0,0,0,0,0,0,0,0,
179,233,168,233,0,0,0,0,172,233,0,0,0,0,242,177,
0,0,229,198,0,0,173,233,176,233,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,166,233,0,0,166,193,0,0,
170,233,167,187,197,191,176,183,244,204,0,0,249,204,242,189,
89,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,183,233,181,233,0,0,0,0,0,0,0,0,0,0,
0,0,206,207,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,180,233,0,0,0,0,0,0,245,205,0,0,182,233,
184,233,0,0,0,0,0,0,0,0,185,233,0,0,0,0,
0,0,0,0,0,0,0,0,188,233,186,233,0,0,0,0,
0,0,0,0,0,0,0,0,163,198,187,233,0,0,0,0,
0,0,205,200,174,233,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,189,
0,0,189,233,194,233,244,193,0,0,0,0,193,233,0,0,
0,0,0,0,162,233,0,0,0,0,0,0,195,233,201,193,
0,0,0,0,190,233,192,233,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,191,233,0,0,0,0,177,221,162,221,
0,0,0,0,197,233,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,196,233,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,246,205,0,0,188,226,
198,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,233,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,200,233,215,184,0,0,
212,181,0,0,0,0,0,0,202,233,221,209,0,0,0,0,
0,0,0,0,245,181,0,0,186,206,0,0,243,182,203,233,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,233,
0,0,0,0,0,0,238,195,0,0,0,0,0,0,0,0,
0,0,205,233,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,250,198,0,0,186,176,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,227,178,210,233,211,233,0,0,0,0,0,0,
0,0,0,0,0,0,206,233,0,0,189,187,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,207,233,194,199,0,0,0,0,0,0,
0,0,208,233,209,233,219,233,0,0,0,0,0,0,213,233,
216,233,0,0,0,0,0,0,0,0,0,0,212,233,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,214,233,0,0,215,233,216,188,
0,0,217,233,0,0,193,195,0,0,214,183,194,179,0,0,
0,0,0,0,0,0,0,0,220,233,0,0,0,0,0,0,
0,0,191,179,0,0,225,233,0,0,0,0,221,233,224,233,
0,0,0,0,0,0,0,0,186,200,0,0,0,0,0,0,
0,0,222,233,0,0,0,0,223,233,200,201,218,200,226,233,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
253,194,236,233,0,0,232,233,0,0,0,0,235,178,0,0,
230,233,0,0,170,203,231,233,0,0,0,0,228,233,0,0,
229,233,234,233,237,233,0,0,0,0,235,233,0,0,0,0,
0,0,233,233,227,233,0,0,0,0,0,0,0,0,0,0,
216,195,0,0,244,233,0,0,170,204,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,242,233,0,0,0,0,
0,0,243,233,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,238,233,0,0,0,0,240,233,
0,0,0,0,0,0,241,233,0,0,0,0,0,0,239,233,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,230,192,0,0,185,207,248,233,0,0,249,233,0,0,
0,0,0,0,0,0,161,234,0,0,170,191,0,0,251,233,
0,0,254,233,0,0,0,0,0,0,0,0,0,0,246,233,
245,233,0,0,0,0,162,234,0,0,0,0,220,178,0,0,
252,233,0,0,163,234,0,0,0,0,0,0,253,233,0,0,
0,0,0,0,0,0,0,0,250,233,0,0,179,196,0,0,
247,233,0,0,0,0,0,0,0,0,0,0,0,0,232,199,
0,0,0,0,167,234,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,187,205,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,234,
0,0,0,0,165,234,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,174,234,0,0,0,0,0,0,168,234,
0,0,0,0,0,0,176,234,0,0,0,0,0,0,0,0,
0,0,0,0,230,205,179,234,0,0,170,234,0,0,0,0,
171,234,0,0,0,0,0,0,175,234,0,0,178,234,177,234,
0,0,0,0,0,0,169,234,0,0,0,0,0,0,0,0,
172,234,0,0,189,234,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
182,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,234,
0,0,0,0,181,234,0,0,0,0,0,0,186,234,187,234,
0,0,170,179,0,0,194,181,0,0,0,0,185,234,0,0,
0,0,0,0,0,0,0,0,0,0,164,234,0,0,92,244,
0,0,0,0,0,0,0,0,0,0,184,234,188,234,183,234,
0,0,190,234,0,0,0,0,0,0,192,234,191,234,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,194,234,193,234,218,233,0,0,0,0,0,0,198,234,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,195,234,0,0,0,0,0,0,0,0,196,234,0,0,
0,0,197,234,0,0,199,234,0,0,0,0,0,0,0,0,
236,183,0,0,201,234,0,0,200,234,0,0,176,189,0,0,
0,0,0,0,0,0,0,0,212,185,167,222,0,0,0,0,
0,0,0,0,202,234,209,189,0,0,0,0,0,0,185,179,
0,0,203,234,0,0,210,177,0,0,215,190,204,234,0,0,
0,0,213,185,205,234,225,176,0,0,0,0,0,0,0,0,
189,201,0,0,0,0,206,234,0,0,0,0,0,0,0,0,
234,191,0,0,213,234,0,0,0,0,210,234,0,0,239,195,
0,0,0,0,0,0,0,0,0,0,211,234,208,234,222,182,
0,0,207,234,214,234,0,0,0,0,0,0,0,0,0,0,
182,183,0,0,0,0,222,194,0,0,220,234,0,0,0,0,
0,0,0,0,216,234,0,0,0,0,0,0,181,194,215,234,
0,0,218,234,0,0,0,0,0,0,0,0,209,234,0,0,
0,0,0,0,219,234,0,0,221,234,0,0,0,0,0,0,
0,0,0,0,0,0,239,200,0,0,0,0,217,234,0,0,
222,234,224,234,0,0,0,0,211,184,212,234,0,0,193,176,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,234,
0,0,219,186,246,206,225,234,226,234,245,193,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,206,
0,0,0,0,0,0,0,0,227,234,181,205,0,0,0,0,
228,234,229,234,0,0,0,0,228,202,230,234,0,0,192,186,
0,0,163,206,0,0,0,0,0,0,0,0,0,0,0,0,
235,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,236,234,216,190,234,234,83,220,0,0,0,0,
231,205,231,234,0,0,0,0,233,234,189,192,254,191,0,0,
0,0,0,0,232,234,0,0,237,234,0,0,0,0,163,202,
0,0,0,0,239,234,0,0,238,234,0,0,0,0,0,0,
236,179,0,0,171,203,240,234,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,95,220,252,234,242,234,0,0,
0,0,0,0,0,0,0,0,0,0,243,234,0,0,0,0,
0,0,0,0,244,234,245,234,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,249,234,0,0,
250,234,0,0,0,0,248,234,0,0,0,0,0,0,0,0,
0,0,246,234,0,0,241,234,247,234,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,251,234,183,240,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,168,178,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,254,234,223,182,
253,234,0,0,0,0,0,0,162,235,0,0,161,235,0,0,
0,0,0,0,164,235,0,0,0,0,163,235,0,0,165,235,
0,0,0,0,177,189,0,0,166,235,0,0,0,0,167,235,
0,0,0,0,0,0,0,0,0,0,0,0,168,235,190,192,
0,0,215,205,0,0,169,235,0,0,0,0,164,202,198,199,
170,235,0,0,171,235,171,184,0,0,0,0,0,0,172,181,
0,0,0,0,0,0,172,235,0,0,0,0,235,187,193,199,
173,235,0,0,208,179,0,0,0,0,0,0,0,0,0,0,
0,0,174,235,0,0,0,0,0,0,0,0,176,235,247,205,
0,0,175,235,198,191,0,0,177,235,0,0,0,0,178,235,
0,0,0,0,179,235,209,180,0,0,0,0,0,0,0,0,
0,0,0,0,180,235,0,0,0,0,181,235,0,0,182,235,
183,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,209,179,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,184,235,0,0,185,235,186,235,0,0,0,0,
0,0,0,0,0,0,242,178,0,0,0,0,168,191,187,235,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,188,235,0,0,0,0,0,0,
189,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
192,184,0,0,251,196,190,235,0,0,0,0,0,0,0,0,
215,183,0,0,214,191,0,0,193,235,0,0,164,198,0,0,
192,235,0,0,72,221,177,183,0,0,0,0,191,235,247,194,
173,181,0,0,0,0,194,235,0,0,195,235,0,0,217,190,
0,0,0,0,0,0,237,183,0,0,196,235,0,0,0,0,
0,0,0,0,172,203,0,0,0,0,223,192,0,0,0,0,
0,0,246,181,0,0,245,204,202,193,0,0,197,235,84,221,
0,0,0,0,199,191,240,195,218,190,0,0,0,0,0,0,
0,0,198,235,0,0,0,0,0,0,0,0,201,235,0,0,
202,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
190,186,194,194,200,235,0,0,219,190,190,201,0,0,0,0,
0,0,0,0,0,0,199,235,0,0,0,0,236,187,0,0,
211,177,0,0,206,235,216,183,0,0,0,0,238,187,0,0,
0,0,237,187,0,0,205,207,205,235,204,235,167,193,0,0,
205,181,195,207,186,179,220,190,0,0,0,0,0,0,0,0,
0,0,106,221,0,0,0,0,203,235,0,0,0,0,0,0,
0,0,0,0,208,235,0,0,209,235,207,235,0,0,216,184,
0,0,192,205,0,0,0,0,239,187,167,199,0,0,0,0,
0,0,212,235,0,0,192,192,0,0,194,195,0,0,0,0,
182,205,0,0,215,235,0,0,0,0,0,0,236,184,0,0,
191,192,211,235,0,0,216,235,237,184,213,235,214,235,122,221,
210,235,0,0,0,0,0,0,226,192,201,198,0,0,0,0,
175,195,0,0,221,178,0,0,0,0,0,0,0,0,0,0,
0,0,240,200,0,0,0,0,195,181,0,0,36,222,180,196,
0,0,0,0,219,235,0,0,217,235,0,0,0,0,204,195,
0,0,0,0,0,0,193,192,210,180,218,235,0,0,219,191,
0,0,0,0,202,206,0,0,0,0,0,0,192,207,0,0,
0,0,0,0,220,235,231,235,181,196,0,0,230,235,48,222,
227,235,235,235,228,235,0,0,224,235,0,0,252,196,223,235,
0,0,0,0,0,0,221,235,0,0,161,205,240,187,0,0,
0,0,225,235,0,0,222,235,0,0,0,0,53,222,229,235,
244,189,0,0,193,184,0,0,0,0,0,0,250,194,0,0,
197,203,218,177,226,176,0,0,165,198,0,0,0,0,233,235,
0,0,0,0,0,0,0,0,232,235,0,0,230,198,0,0,
237,235,0,0,0,0,0,0,226,235,0,0,236,235,238,235,
0,0,172,184,234,235,214,185,0,0,213,188,0,0,0,0,
239,235,216,205,0,0,0,0,0,0,0,0,242,235,0,0,
245,235,0,0,0,0,243,235,181,201,0,0,0,0,0,0,
0,0,0,0,0,0,240,235,0,0,0,0,0,0,0,0,
0,0,224,182,0,0,0,0,0,0,0,0,244,235,0,0,
0,0,246,235,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,250,235,0,0,0,0,247,235,0,0,249,235,248,235,
0,0,0,0,0,0,75,222,0,0,0,0,251,235,0,0,
177,188,0,0,253,235,252,235,232,201,0,0,0,0,161,236,
0,0,0,0,0,0,0,0,0,0,0,0,217,183,0,0,
0,0,0,0,0,0,254,235,162,236,0,0,0,0,163,236,
196,181,193,230,249,190,0,0,164,236,0,0,0,0,238,184,
0,0,0,0,0,0,0,0,0,0,165,236,0,0,95,244,
166,236,0,0,0,0,190,187,0,0,0,0,0,0,0,0,
0,0,0,0,206,218,0,0,167,236,0,0,168,236,0,0,
178,189,0,0,169,236,170,236,0,0,0,0,171,236,0,0,
0,0,172,236,173,236,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,171,195,
0,0,0,0,174,236,0,0,0,0,0,0,0,0,176,236,
0,0,175,236,0,0,0,0,0,0,0,0,166,198,0,0,
177,236,0,0,173,203,0,0,178,236,0,0,179,236,0,0,
180,236,0,0,0,0,0,0,0,0,181,236,0,0,0,0,
0,0,0,0,218,198,0,0,0,0,0,0,0,0,0,0,
0,0,221,190,182,236,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,235,185,174,208,183,236,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
184,236,191,201,185,236,0,0,193,236,0,0,0,0,0,0,
0,0,0,0,186,236,0,0,0,0,188,236,0,0,0,0,
0,0,187,236,189,236,0,0,198,203,190,236,191,236,0,0,
0,0,0,0,0,0,0,0,192,236,0,0,0,0,0,0,
194,236,0,0,0,0,0,0,0,0,173,179,231,196,0,0,
233,201,226,186,215,185,0,0,0,0,0,0,0,0,207,201,
223,178,206,200,197,236,211,180,213,192,196,236,201,236,249,195,
227,204,0,0,199,236,200,236,174,181,0,0,202,236,227,199,
223,194,0,0,0,0,241,200,189,197,198,236,0,0,199,203,
236,178,204,236,168,207,194,196,197,207,0,0,0,0,241,187,
203,236,0,0,177,194,0,0,0,0,220,236,168,193,0,0,
0,0,248,198,0,0,208,201,0,0,0,0,0,0,0,0,
0,0,0,0,207,236,191,187,242,187,0,0,222,190,0,0,
229,199,0,0,173,184,206,236,205,236,0,0,234,201,0,0,
0,0,0,0,193,188,0,0,0,0,210,197,0,0,0,0,
57,223,0,0,0,0,0,0,96,244,0,0,0,0,0,0,
0,0,0,0,209,236,210,236,216,185,208,236,0,0,0,0,
0,0,0,0,0,0,0,0,211,236,212,236,0,0,214,236,
163,194,0,0,213,236,230,180,0,0,216,236,0,0,215,236,
217,236,0,0,67,223,219,236,221,236,0,0,222,236,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,214,192,0,0,207,188,223,236,
0,0,0,0,0,0,210,179,0,0,224,236,0,0,0,0,
246,193,225,236,0,0,226,236,235,201,0,0,97,244,175,181,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,227,236,0,0,0,0,0,0,182,196,0,0,0,0,
0,0,0,0,219,177,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,228,236,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,241,188,0,0,0,0,0,0,0,0,
246,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,173,194,0,0,0,0,0,0,0,0,
0,0,0,0,231,236,0,0,0,0,0,0,230,236,0,0,
0,0,0,0,229,236,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,237,236,235,236,0,0,0,0,232,236,
0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,
0,0,0,0,233,236,236,236,0,0,247,181,0,0,240,236,
0,0,215,192,0,0,241,236,0,0,0,0,0,0,0,0,
217,184,0,0,238,236,239,236,0,0,0,0,0,0,169,207,
0,0,0,0,0,0,183,196,0,0,169,193,0,0,0,0,
0,0,0,0,0,0,0,0,242,236,0,0,0,0,245,236,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
243,236,244,236,217,205,0,0,0,0,0,0,0,0,167,198,
248,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,246,236,247,236,249,236,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,169,237,0,0,0,0,0,0,0,0,0,0,
252,236,0,0,0,0,0,0,253,236,251,236,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,250,236,0,0,253,196,0,0,0,0,161,237,
165,237,162,237,254,236,0,0,163,237,0,0,0,0,0,0,
164,237,0,0,0,0,0,0,0,0,171,237,0,0,0,0,
0,0,166,237,0,0,0,0,0,0,0,0,0,0,216,192,
168,237,0,0,0,0,170,237,167,237,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,173,237,0,0,179,189,0,0,172,237,0,0,
0,0,0,0,0,0,0,0,174,237,0,0,0,0,0,0,
0,0,175,237,0,0,0,0,178,237,177,237,0,0,176,237,
0,0,0,0,180,237,179,237,0,0,246,204,0,0,0,0,
0,0,182,237,0,0,181,237,183,237,0,0,0,0,0,0,
0,0,184,237,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,186,237,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,185,237,200,191,187,237,0,0,0,0,237,182,
188,237,190,237,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,191,237,0,0,
0,0,0,0,0,0,0,0,0,0,192,237,189,237,0,0,
193,237,0,0,214,188,194,237,176,181,179,183,0,0,89,224,
0,0,0,0,174,184,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,195,237,0,0,0,0,0,0,240,198,
0,0,0,0,190,197,196,237,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,199,237,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
180,188,0,0,0,0,198,237,197,237,218,183,200,237,0,0,
0,0,0,0,0,0,211,179,0,0,202,237,0,0,0,0,
0,0,220,186,201,237,0,0,210,237,0,0,0,0,0,0,
0,0,0,0,204,237,206,237,229,202,203,237,0,0,0,0,
0,0,205,237,0,0,209,237,207,237,177,181,0,0,208,237,
0,0,0,0,0,0,0,0,0,0,0,0,211,237,0,0,
0,0,218,199,216,206,0,0,0,0,0,0,0,0,180,189,
0,0,0,0,0,0,212,237,0,0,0,0,0,0,0,0,
162,205,214,237,0,0,213,237,0,0,0,0,217,237,193,205,
0,0,0,0,216,237,0,0,237,179,215,237,220,237,0,0,
0,0,219,237,0,0,0,0,218,237,178,197,221,237,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,237,
0,0,0,0,0,0,0,0,223,237,0,0,0,0,236,185,
0,0,165,183,224,237,225,237,226,237,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,201,191,227,237,0,0,173,188,228,237,
0,0,0,0,0,0,229,237,0,0,0,0,0,0,161,210,
254,209,0,0,0,0,0,0,0,0,230,237,240,229,231,237,
164,195,171,191,192,199,0,0,0,0,0,0,0,0,232,237,
0,0,0,0,213,202,212,196,254,185,0,0,0,0,169,195,
0,0,0,0,170,177,0,0,248,203,215,191,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,222,183,0,0,
0,0,225,182,0,0,0,0,214,202,0,0,0,0,0,0,
0,0,0,0,233,237,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,235,237,0,0,0,0,234,237,224,178,0,0,
0,0,246,198,236,237,247,199,0,0,179,197,0,0,237,237,
210,189,0,0,0,0,0,0,239,237,0,0,0,0,194,204,
254,237,241,237,242,237,0,0,0,0,201,196,0,0,0,0,
224,194,247,193,0,0,168,198,0,0,240,237,213,181,0,0,
0,0,0,0,0,0,249,237,0,0,246,237,165,238,169,198,
224,195,243,237,0,0,254,196,211,197,244,237,248,237,224,191,
0,0,231,199,204,196,0,0,0,0,194,192,247,237,174,194,
164,194,245,237,169,176,162,207,0,0,0,0,0,0,250,237,
0,0,0,0,0,0,0,0,0,0,0,0,225,194,0,0,
0,0,181,189,202,191,0,0,0,0,252,237,251,237,0,0,
239,176,253,237,0,0,0,0,175,201,0,0,167,238,0,0,
0,0,219,198,235,191,0,0,0,0,217,195,0,0,248,182,
0,0,166,238,183,205,191,177,0,0,215,202,225,178,161,238,
162,238,163,238,164,238,187,198,163,195,227,176,168,238,0,0,
169,238,163,244,0,0,0,0,189,194,0,0,170,238,0,0,
243,177,204,193,0,0,175,184,0,0,218,205,0,0,98,225,
171,238,172,197,0,0,0,0,0,0,248,193,215,188,172,238,
0,0,0,0,175,238,0,0,0,0,229,189,173,238,171,193,
170,193,0,0,228,176,0,0,203,206,177,238,0,0,242,200,
179,238,178,238,176,238,228,227,212,180,0,0,0,0,238,237,
0,0,181,238,180,238,0,0,0,0,0,0,0,0,182,238,
0,0,184,205,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,225,198,0,0,0,0,174,203,0,0,
183,238,0,0,217,188,0,0,0,0,0,0,0,0,184,238,
0,0,185,238,0,0,0,0,0,0,186,238,0,0,0,0,
161,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,234,176,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,217,185,0,0,0,0,0,0,186,207,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,190,238,0,0,0,0,101,244,0,0,
0,0,180,183,187,238,0,0,188,238,0,0,0,0,0,0,
244,201,0,0,0,0,0,0,0,0,212,179,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,185,205,0,0,191,182,
0,0,0,0,0,0,0,0,0,0,212,197,0,0,0,0,
0,0,0,0,191,238,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,192,238,0,0,0,0,103,244,0,0,0,0,
0,0,193,238,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,226,
0,0,0,0,0,0,0,0,0,0,162,197,0,0,0,0,
195,238,0,0,194,238,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,211,198,196,238,182,189,224,188,219,199,241,195,0,0,
0,0,0,0,242,188,0,0,236,191,0,0,197,238,0,0,
198,238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,221,191,199,238,0,0,200,238,0,0,0,0,
0,0,201,238,239,205,0,0,183,189,0,0,0,0,0,0,
0,0,0,0,203,238,202,238,0,0,218,185,0,0,243,185,
192,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,206,238,0,0,0,0,0,0,0,0,230,189,
0,0,205,238,0,0,204,238,0,0,233,194,0,0,0,0,
239,184,0,0,195,192,0,0,0,0,0,0,0,0,176,200,
0,0,0,0,0,0,0,0,185,189,0,0,0,0,0,0,
0,0,0,0,207,238,0,0,223,190,0,0,0,0,0,0,
0,0,0,0,210,238,208,238,0,0,0,0,0,0,209,238,
0,0,0,0,0,0,0,0,212,238,211,238,0,0,0,0,
250,190,0,0,213,238,0,0,0,0,0,0,0,0,0,0,
214,238,215,238,0,0,0,0,0,0,0,0,208,200,211,186,
225,188,216,238,0,0,217,238,164,206,197,189,238,204,204,206,
218,238,226,182,0,0,0,0,0,0,0,0,219,238,38,227,
163,197,0,0,40,227,222,238,248,179,203,191,41,227,220,238,
0,0,221,238,0,0,224,196,42,227,43,227,213,203,252,182,
0,0,0,0,0,0,0,0,0,0,47,227,48,227,0,0,
0,0,0,0,0,0,0,0,0,0,224,238,225,238,0,0,
0,0,0,0,0,0,0,0,223,238,0,0,0,0,227,238,
0,0,0,0,0,0,0,0,0,0,0,0,60,227,0,0,
0,0,0,0,63,227,0,0,0,0,223,198,195,179,0,0,
65,227,231,238,0,0,0,0,228,238,230,238,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,226,238,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,207,239,0,0,0,0,229,238,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,235,206,0,0,0,0,218,184,
0,0,84,227,85,227,0,0,86,227,0,0,0,0,239,238,
88,227,0,0,0,0,0,0,180,197,234,238,0,0,0,0,
237,238,235,238,0,0,240,238,0,0,0,0,95,227,0,0,
241,238,97,227,0,0,0,0,0,0,0,0,0,0,233,238,
0,0,99,227,246,238,244,177,0,0,0,0,232,238,0,0,
0,0,0,0,173,200,0,0,236,238,0,0,224,190,105,227,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,219,185,0,0,0,0,0,0,0,0,0,0,113,227,
114,227,0,0,0,0,0,0,0,0,0,0,200,203,0,0,
228,182,0,0,0,0,198,189,0,0,188,198,0,0,0,0,
120,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,173,193,0,0,244,238,0,0,238,238,243,238,0,0,
195,204,0,0,184,196,245,238,242,238,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,228,
0,0,0,0,0,0,0,0,0,0,172,193,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,238,
0,0,248,238,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,238,
62,228,0,0,175,203,63,228,0,0,64,228,0,0,65,228,
0,0,67,228,0,0,0,0,0,0,0,0,0,0,0,0,
71,228,0,0,0,0,0,0,251,189,0,0,0,0,75,228,
0,0,250,238,223,202,0,0,0,0,212,177,0,0,0,0,
0,0,0,0,198,201,242,195,0,0,0,0,0,0,0,0,
248,181,80,228,252,238,81,228,221,185,0,0,0,0,82,228,
0,0,0,0,84,228,0,0,0,0,0,0,172,187,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,251,238,
237,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
238,191,161,239,163,239,0,0,0,0,91,228,92,228,0,0,
251,190,94,228,162,239,164,239,0,0,96,228,211,182,0,0,
197,201,0,0,0,0,226,188,163,207,0,0,254,238,248,186,
0,0,0,0,191,207,0,0,0,0,166,239,0,0,0,0,
0,0,0,0,165,239,167,239,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,253,238,0,0,0,0,0,0,
105,228,0,0,0,0,233,198,0,0,213,197,0,0,0,0,
0,0,0,0,0,0,0,0,215,196,0,0,172,239,111,228,
0,0,0,0,0,0,195,195,168,239,0,0,0,0,0,0,
169,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,173,183,0,0,171,239,0,0,
122,228,0,0,0,0,0,0,0,0,176,184,0,0,0,0,
0,0,0,0,0,0,0,0,170,239,0,0,225,190,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,249,179,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,176,239,0,0,191,186,249,193,
0,0,0,0,202,196,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,51,229,0,0,0,0,187,179,
0,0,0,0,0,0,0,0,174,239,175,239,195,196,0,0,
173,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,177,239,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,183,239,0,0,0,0,63,229,0,0,
186,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
185,239,173,197,0,0,0,0,0,0,0,0,178,239,179,239,
182,239,0,0,0,0,0,0,0,0,184,239,73,229,0,0,
0,0,192,182,0,0,0,0,187,239,181,239,0,0,0,0,
180,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
80,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,191,239,0,0,0,0,0,0,192,239,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
193,239,0,0,0,0,190,239,189,239,0,0,0,0,0,0,
226,190,170,198,188,239,0,0,0,0,0,0,0,0,0,0,
0,0,197,239,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,195,239,0,0,0,0,0,0,0,0,
0,0,98,229,0,0,0,0,0,0,196,239,194,239,0,0,
248,194,0,0,198,239,0,0,0,0,0,0,0,0,0,0,
0,0,199,239,0,0,0,0,201,239,106,229,0,0,0,0,
107,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,213,180,200,239,250,204,0,0,0,0,0,0,0,0,
0,0,0,0,212,239,202,239,0,0,0,0,205,239,0,0,
203,239,0,0,204,239,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,206,239,0,0,0,0,0,0,0,0,0,0,
208,239,0,0,0,0,0,0,0,0,209,239,0,0,210,239,
0,0,0,0,0,0,0,0,213,239,211,239,214,239,216,239,
0,0,215,239,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,185,196,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
231,204,0,0,217,239,174,193,0,0,0,0,0,0,218,239,
0,0,196,202,219,239,171,179,0,0,0,0,0,0,188,177,
0,0,215,180,106,244,214,180,220,239,0,0,221,239,0,0,
222,239,223,239,0,0,0,0,0,0,0,0,0,0,0,0,
224,239,0,0,216,180,213,179,222,185,182,200,0,0,226,239,
225,239,0,0,0,0,0,0,0,0,227,239,0,0,0,0,
0,0,0,0,220,177,0,0,0,0,0,0,0,0,0,0,
0,0,230,239,0,0,229,239,228,239,0,0,231,239,0,0,
0,0,0,0,0,0,234,239,0,0,0,0,0,0,199,176,
0,0,0,0,232,239,0,0,236,239,235,239,0,0,0,0,
0,0,0,0,0,0,0,0,238,239,237,239,239,239,0,0,
174,198,0,0,0,0,0,0,240,239,0,0,0,0,0,0,
0,0,241,239,243,239,0,0,0,0,242,239,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,236,201,0,0,0,0,0,0,
0,0,244,239,0,0,0,0,0,0,0,0,0,0,0,0,
245,239,0,0,229,186,0,0,0,0,0,0,246,239,247,239,
0,0,0,0,201,203,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,203,193,0,0,0,0,0,0,164,176,
203,194,0,0,248,239,0,0,237,201,0,0,0,0,0,0,
0,0,0,0,0,0,251,239,249,239,223,185,0,0,250,239,
194,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,197,202,253,239,161,240,254,239,162,240,
0,0,0,0,161,177,216,191,252,189,217,180,163,240,0,0,
0,0,0,0,230,199,0,0,165,240,0,0,0,0,0,0,
162,177,0,0,164,240,196,196,0,0,205,206,171,198,252,239,
166,206,0,0,177,184,0,0,0,0,219,205,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,249,182,180,206,0,0,
168,183,0,0,226,194,161,231,0,0,166,240,172,179,239,191,
0,0,0,0,0,0,0,0,214,179,168,240,0,0,169,240,
167,240,228,183,0,0,221,186,227,190,104,230,0,0,0,0,
163,177,0,0,0,0,217,206,0,0,0,0,0,0,171,240,
174,238,0,0,170,240,0,0,0,0,0,0,0,0,111,230,
174,240,172,240,173,240,0,0,175,240,0,0,176,240,236,206,
177,240,178,240,0,0,201,192,187,200,0,0,0,0,0,0,
253,191,231,180,0,0,0,0,186,205,237,178,184,189,219,184,
0,0,181,240,0,0,180,240,243,187,182,240,179,240,0,0,
0,0,168,187,0,0,0,0,0,0,186,240,173,234,0,0,
0,0,214,210,0,0,247,191,184,240,0,0,0,0,0,0,
0,0,0,0,165,206,241,198,0,0,0,0,0,0,0,0,
171,177,0,0,227,192,182,188,0,0,0,0,0,0,0,0,
183,202,0,0,192,177,0,0,0,0,0,0,237,206,235,205,
0,0,187,240,0,0,197,197,0,0,0,0,0,0,0,0,
251,188,0,0,0,0,0,0,188,240,0,0,189,240,204,191,
190,240,0,0,238,206,0,0,0,0,185,240,192,240,194,240,
0,0,193,240,0,0,191,240,0,0,0,0,195,240,0,0,
0,0,196,240,0,0,0,0,250,193,0,0,226,178,0,0,
0,0,0,0,0,0,0,0,197,240,0,0,0,0,184,204,
0,0,0,0,198,240,0,0,0,0,0,0,0,0,0,0,
199,240,0,0,170,207,44,231,0,0,0,0,0,0,0,0,
177,219,200,240,0,0,109,244,0,0,201,240,202,240,0,0,
0,0,0,0,206,240,46,231,203,240,0,0,204,240,0,0,
205,240,207,240,0,0,0,0,0,0,110,244,0,0,49,231,
0,0,111,244,196,192,0,0,0,0,50,231,247,204,0,0,
0,0,197,192,0,0,0,0,208,240,0,0,243,200,0,0,
209,240,211,243,204,204,0,0,210,240,0,0,211,240,0,0,
212,240,215,179,0,0,214,240,0,0,217,191,0,0,0,0,
0,0,215,240,0,0,0,0,164,183,0,0,0,0,0,0,
0,0,216,240,220,240,0,0,218,240,0,0,0,0,0,0,
0,0,219,240,0,0,0,0,243,179,217,240,221,240,0,0,
0,0,0,0,0,0,222,240,0,0,200,176,0,0,223,240,
224,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
228,190,0,0,0,0,0,0,225,240,0,0,0,0,0,0,
199,181,0,0,0,0,228,240,0,0,0,0,227,240,0,0,
226,240,0,0,0,0,241,235,0,0,220,202,0,0,0,0,
0,0,0,0,0,0,229,240,230,240,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,231,240,0,0,0,0,232,240,0,0,
233,240,0,0,0,0,234,240,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,218,180,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,235,240,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,236,240,163,199,0,0,
0,0,0,0,238,240,187,178,0,0,241,240,240,240,0,0,
0,0,0,0,0,0,164,177,0,0,0,0,0,0,193,182,
0,0,199,202,186,196,162,186,0,0,224,185,231,189,0,0,
220,191,0,0,0,0,0,0,243,240,0,0,0,0,242,240,
194,205,232,180,210,200,220,198,0,0,0,0,0,0,252,191,
206,206,0,0,219,183,0,0,0,0,0,0,0,0,0,0,
0,0,246,240,0,0,0,0,245,240,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,203,203,172,198,0,0,0,0,
0,0,0,0,0,0,0,0,208,177,0,0,0,0,247,240,
244,240,0,0,0,0,209,201,234,205,248,240,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,249,240,0,0,
0,0,0,0,0,0,251,240,234,194,219,179,220,179,250,240,
0,0,0,0,0,0,0,0,233,180,178,184,0,0,49,232,
234,180,0,0,0,0,191,197,0,0,0,0,224,206,0,0,
0,0,0,0,0,0,0,0,0,0,54,232,0,0,220,184,
0,0,0,0,0,0,252,240,0,0,0,0,0,0,253,240,
254,240,161,241,0,0,163,241,162,241,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
247,201,0,0,164,241,0,0,0,0,0,0,0,0,165,241,
0,0,166,241,0,0,0,0,0,0,0,0,167,241,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,169,241,168,241,0,0,170,241,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,244,200,204,230,0,0,0,0,169,191,
0,0,0,0,178,181,0,0,0,0,0,0,0,0,0,0,
0,0,171,241,0,0,172,241,0,0,172,210,187,221,211,200,
0,0,0,0,251,176,0,0,187,176,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,244,187,176,203,254,190,0,0,
0,0,0,0,0,0,173,241,0,0,223,204,0,0,0,0,
0,0,174,241,220,205,0,0,194,177,0,0,0,0,0,0,
193,187,0,0,175,241,238,178,176,241,0,0,0,0,0,0,
177,241,0,0,0,0,0,0,0,0,179,241,180,241,0,0,
182,241,178,241,0,0,0,0,181,241,0,0,0,0,93,232,
219,180,0,0,0,0,0,0,183,241,0,0,184,241,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,185,241,186,241,0,0,
0,0,0,0,187,241,0,0,0,0,189,241,0,0,0,0,
0,0,188,241,0,0,191,241,194,241,0,0,0,0,0,0,
190,241,192,241,193,241,0,0,0,0,195,241,0,0,194,182,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,243,188,196,241,
197,241,225,185,0,0,0,0,0,0,0,0,116,244,0,0,
0,0,0,0,0,0,0,0,0,0,198,241,0,0,0,0,
190,179,0,0,0,0,0,0,207,199,199,241,200,241,0,0,
0,0,0,0,0,0,218,195,235,198,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,201,241,0,0,0,0,0,0,
0,0,253,199,0,0,0,0,204,194,216,177,238,182,0,0,
239,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
243,195,206,241,240,182,0,0,0,0,239,178,0,0,0,0,
205,241,0,0,0,0,203,241,0,0,204,241,0,0,202,241,
0,0,0,0,216,241,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,207,241,208,241,0,0,
0,0,209,241,210,241,0,0,0,0,0,0,0,0,0,0,
212,241,0,0,0,0,211,241,0,0,0,0,0,0,217,189,
0,0,213,241,0,0,0,0,0,0,215,241,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,179,181,214,241,
0,0,0,0,251,193,179,184,0,0,0,0,0,0,0,0,
0,0,217,241,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
205,194,0,0,0,0,218,241,0,0,0,0,0,0,0,0,
173,198,0,0,0,0,0,0,0,0,0,0,0,0,219,241,
0,0,0,0,0,0,0,0,0,0,0,0,224,241,0,0,
222,241,0,0,221,241,223,241,0,0,220,241,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,226,241,81,233,0,0,
0,0,0,0,0,0,0,0,0,0,225,241,0,0,228,241,
0,0,0,0,195,182,227,241,0,0,0,0,0,0,229,241,
0,0,0,0,230,241,0,0,232,241,231,241,0,0,0,0,
0,0,233,241,235,241,234,241,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
252,185,0,0,0,0,0,0,0,0,236,241,0,0,0,0,
237,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
188,179,0,0,0,0,0,0,238,241,0,0,0,0,0,0,
239,241,0,0,0,0,0,0,241,191,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,241,
0,0,241,241,0,0,242,241,243,241,0,0,0,0,0,0,
226,185,117,244,0,0,0,0,109,233,0,0,244,241,245,241,
0,0,0,0,246,241,247,241,0,0,0,0,248,241,0,0,
0,0,0,0,177,200,250,241,0,0,166,201,251,241,249,241,
0,0,253,241,0,0,0,0,252,241,0,0,0,0,254,241,
0,0,0,0,0,0,161,242,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,162,242,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
163,242,0,0,164,242,0,0,0,0,0,0,0,0,165,242,
0,0,0,0,166,242,167,242,0,0,168,242,0,0,169,242,
170,242,171,242,172,242,0,0,0,0,0,0,173,242,174,242,
0,0,181,221,175,242,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,248,228,180,181,0,0,0,0,0,0,
0,0,161,179,178,186,177,242,176,242,165,204,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,179,242,180,242,178,242,
0,0,181,242,0,0,0,0,226,203,0,0,0,0,0,0,
182,242,0,0,251,181,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,207,
0,0,0,0,118,244,0,0,183,242,77,234,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,185,242,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,190,176,91,234,
0,0,186,242,171,202,184,242,0,0,0,0,187,242,188,242,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,189,242,
190,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
191,242,0,0,238,203,173,187,0,0,250,186,175,193,0,0,
0,0,102,234,0,0,0,0,192,242,0,0,0,0,0,0,
0,0,195,242,0,0,106,234,0,0,0,0,0,0,0,0,
193,242,0,0,0,0,0,0,0,0,0,0,196,242,0,0,
0,0,241,184,194,242,0,0,0,0,0,0,0,0,197,242,
0,0,198,242,199,242,0,0,203,242,0,0,170,187,0,0,
0,0,0,0,0,0,228,194,0,0,0,0,0,0,0,0,
0,0,204,242,201,242,200,242,202,242,0,0,0,0,0,0,
223,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
208,242,207,242,206,242,0,0,0,0,179,176,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
37,235,0,0,0,0,0,0,218,242,0,0,214,242,0,0,
215,242,211,242,217,242,0,0,213,242,226,179,0,0,0,0,
204,207,0,0,216,242,212,242,210,242,209,242,0,0,0,0,
0,0,0,0,0,0,220,242,0,0,0,0,0,0,0,0,
0,0,223,242,0,0,0,0,222,242,221,242,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,201,201,219,242,243,176,
224,242,0,0,226,242,0,0,0,0,0,0,0,0,0,0,
0,0,239,179,205,242,183,177,0,0,0,0,228,242,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,227,242,225,242,
173,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,240,203,0,0,0,0,0,0,0,0,218,206,
0,0,0,0,229,242,0,0,0,0,0,0,0,0,0,0,
230,242,0,0,0,0,0,0,0,0,0,0,0,0,231,242,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,232,242,0,0,
233,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,187,196,0,0,234,242,
0,0,183,200,0,0,239,242,235,242,0,0,0,0,0,0,
236,242,0,0,0,0,177,203,196,204,0,0,208,198,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,240,242,0,0,0,0,241,242,190,198,
238,242,237,242,0,0,0,0,0,0,0,0,170,178,0,0,
0,0,0,0,249,242,0,0,0,0,248,242,0,0,0,0,
0,0,0,0,0,0,245,177,0,0,0,0,0,0,246,242,
0,0,0,0,0,0,245,242,0,0,0,0,243,242,0,0,
251,179,0,0,242,242,178,188,169,178,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,227,185,0,0,0,0,252,242,251,242,
0,0,250,242,0,0,0,0,247,242,0,0,253,242,0,0,
254,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
165,243,164,243,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,166,243,0,0,0,0,173,177,161,243,162,243,0,0,
244,185,185,204,0,0,0,0,163,243,0,0,0,0,0,0,
0,0,0,0,0,0,122,235,178,203,0,0,0,0,171,243,
123,235,0,0,167,243,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,172,243,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,169,243,
0,0,168,243,0,0,0,0,0,0,0,0,0,0,220,183,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,173,243,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,174,243,0,0,0,0,0,0,
0,0,175,243,0,0,170,243,0,0,0,0,0,0,244,242,
0,0,0,0,176,243,0,0,225,196,0,0,0,0,0,0,
180,243,0,0,181,243,179,243,0,0,0,0,0,0,0,0,
0,0,178,243,184,243,0,0,177,243,0,0,182,243,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,243,
0,0,0,0,0,0,186,243,0,0,0,0,0,0,0,0,
0,0,185,243,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,188,243,0,0,
0,0,0,0,0,0,0,0,0,0,189,243,0,0,190,243,
0,0,0,0,201,207,0,0,0,0,0,0,0,0,0,0,
187,243,235,194,237,186,0,0,0,0,191,243,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,86,236,192,243,193,243,0,0,0,0,194,243,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,195,243,0,0,0,0,
180,184,196,243,0,0,0,0,0,0,197,243,0,0,175,188,
0,0,198,243,0,0,0,0,0,0,0,0,0,0,0,0,
199,243,0,0,0,0,200,243,201,243,0,0,0,0,0,0,
0,0,204,243,202,243,188,207,0,0,203,243,0,0,239,206,
0,0,0,0,0,0,0,0,0,0,205,243,0,0,219,206,
0,0,0,0,0,0,0,0,0,0,206,243,254,199,0,0,
0,0,207,243,209,243,0,0,0,0,210,243,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
208,243,237,185,205,204,227,203,247,214,0,0,224,221,251,203,
0,0,0,0,0,0,0,0,171,178,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,212,243,208,181,213,243,214,243,
215,243,120,244,245,185,0,0,216,243,0,0,0,0,0,0,
212,224,219,204,0,0,227,194,217,243,219,243,218,243,0,0,
220,243,0,0,0,0,0,0,0,0,221,243,0,0,0,0,
222,243,0,0,0,0,0,0,0,0,0,0,0,0,223,243,
0,0,0,0,0,0,0,0,224,243,0,0,225,243,226,243,
0,0,227,243,0,0,228,243,229,243,230,243,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,243,
232,243,0,0,0,0,0,0,0,0,0,0,164,197,0,0,
0,0,0,0,0,0,221,184,0,0,234,243,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
205,193,235,243,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,236,243,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,161,201,0,0,0,0,237,243,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,238,243,183,227,0,0,0,0,218,236,237,240,
0,0,0,0,239,243,0,0,240,243,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,243,
243,243,244,243,240,206,241,243,0,0,0,0,245,243,246,243,
0,0,0,0,248,243,0,0,247,243,0,0,0,0,0,0,
0,0,0,0,250,243,0,0,0,0,0,0,251,243,249,243,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,182,206,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,252,243,0,0,0,0,
0,0,0,0,0,0,0,0,253,243,212,227,0,0,0,0,
254,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
161,245,162,245,163,245,164,245,165,245,166,245,167,245,168,245,
169,245,170,245,171,245,172,245,173,245,174,245,175,245,176,245,
177,245,178,245,179,245,180,245,181,245,182,245,183,245,184,245,
185,245,186,245,187,245,188,245,189,245,190,245,191,245,192,245,
193,245,194,245,195,245,196,245,197,245,198,245,199,245,200,245,
201,245,202,245,203,245,204,245,205,245,206,245,207,245,208,245,
209,245,210,245,211,245,212,245,213,245,214,245,215,245,216,245,
217,245,218,245,219,245,220,245,221,245,222,245,223,245,224,245,
225,245,226,245,227,245,228,245,229,245,230,245,231,245,232,245,
233,245,234,245,235,245,236,245,237,245,238,245,239,245,240,245,
241,245,242,245,243,245,244,245,245,245,246,245,247,245,248,245,
249,245,250,245,251,245,252,245,253,245,254,245,161,246,162,246,
163,246,164,246,165,246,166,246,167,246,168,246,169,246,170,246,
171,246,172,246,173,246,174,246,175,246,176,246,177,246,178,246,
179,246,180,246,181,246,182,246,183,246,184,246,185,246,186,246,
187,246,188,246,189,246,190,246,191,246,192,246,193,246,194,246,
195,246,196,246,197,246,198,246,199,246,200,246,201,246,202,246,
203,246,204,246,205,246,206,246,207,246,208,246,209,246,210,246,
211,246,212,246,213,246,214,246,215,246,216,246,217,246,218,246,
219,246,220,246,221,246,222,246,223,246,224,246,225,246,226,246,
227,246,228,246,229,246,230,246,231,246,232,246,233,246,234,246,
235,246,236,246,237,246,238,246,239,246,240,246,241,246,242,246,
243,246,244,246,245,246,246,246,247,246,248,246,249,246,250,246,
251,246,252,246,253,246,254,246,161,247,162,247,163,247,164,247,
165,247,166,247,167,247,168,247,169,247,170,247,171,247,172,247,
173,247,174,247,175,247,176,247,177,247,178,247,179,247,180,247,
181,247,182,247,183,247,184,247,185,247,186,247,187,247,188,247,
189,247,190,247,191,247,192,247,193,247,194,247,195,247,196,247,
197,247,198,247,199,247,200,247,201,247,202,247,203,247,204,247,
205,247,206,247,207,247,208,247,209,247,210,247,211,247,212,247,
213,247,214,247,215,247,216,247,217,247,218,247,219,247,220,247,
221,247,222,247,223,247,224,247,225,247,226,247,227,247,228,247,
229,247,230,247,231,247,232,247,233,247,234,247,235,247,236,247,
237,247,238,247,239,247,240,247,241,247,242,247,243,247,244,247,
245,247,246,247,247,247,248,247,249,247,250,247,251,247,252,247,
253,247,254,247,161,248,162,248,163,248,164,248,165,248,166,248,
167,248,168,248,169,248,170,248,171,248,172,248,173,248,174,248,
175,248,176,248,177,248,178,248,179,248,180,248,181,248,182,248,
183,248,184,248,185,248,186,248,187,248,188,248,189,248,190,248,
191,248,192,248,193,248,194,248,195,248,196,248,197,248,198,248,
199,248,200,248,201,248,202,248,203,248,204,248,205,248,206,248,
207,248,208,248,209,248,210,248,211,248,212,248,213,248,214,248,
215,248,216,248,217,248,218,248,219,248,220,248,221,248,222,248,
223,248,224,248,225,248,226,248,227,248,228,248,229,248,230,248,
231,248,232,248,233,248,234,248,235,248,236,248,237,248,238,248,
239,248,240,248,241,248,242,248,243,248,244,248,245,248,246,248,
247,248,248,248,249,248,250,248,251,248,252,248,253,248,254,248,
161,249,162,249,163,249,164,249,165,249,166,249,167,249,168,249,
169,249,170,249,171,249,172,249,173,249,174,249,175,249,176,249,
177,249,178,249,179,249,180,249,181,249,182,249,183,249,184,249,
185,249,186,249,187,249,188,249,189,249,190,249,191,249,192,249,
193,249,194,249,195,249,196,249,197,249,198,249,199,249,200,249,
201,249,202,249,203,249,204,249,205,249,206,249,207,249,208,249,
209,249,210,249,211,249,212,249,213,249,214,249,215,249,216,249,
217,249,218,249,219,249,220,249,221,249,222,249,223,249,224,249,
225,249,226,249,227,249,228,249,229,249,230,249,231,249,232,249,
233,249,234,249,235,249,236,249,237,249,238,249,239,249,240,249,
241,249,242,249,243,249,244,249,245,249,246,249,247,249,248,249,
249,249,250,249,251,249,252,249,253,249,254,249,161,250,162,250,
163,250,164,250,165,250,166,250,167,250,168,250,169,250,170,250,
171,250,172,250,173,250,174,250,175,250,176,250,177,250,178,250,
179,250,180,250,181,250,182,250,183,250,184,250,185,250,186,250,
187,250,188,250,189,250,190,250,191,250,192,250,193,250,194,250,
195,250,196,250,197,250,198,250,199,250,200,250,201,250,202,250,
203,250,204,250,205,250,206,250,207,250,208,250,209,250,210,250,
211,250,212,250,213,250,214,250,215,250,216,250,217,250,218,250,
219,250,220,250,221,250,222,250,223,250,224,250,225,250,226,250,
227,250,228,250,229,250,230,250,231,250,232,250,233,250,234,250,
235,250,236,250,237,250,238,250,239,250,240,250,241,250,242,250,
243,250,244,250,245,250,246,250,247,250,248,250,249,250,250,250,
251,250,252,250,253,250,254,250,161,251,162,251,163,251,164,251,
165,251,166,251,167,251,168,251,169,251,170,251,171,251,172,251,
173,251,174,251,175,251,176,251,177,251,178,251,179,251,180,251,
181,251,182,251,183,251,184,251,185,251,186,251,187,251,188,251,
189,251,190,251,191,251,192,251,193,251,194,251,195,251,196,251,
197,251,198,251,199,251,200,251,201,251,202,251,203,251,204,251,
205,251,206,251,207,251,208,251,209,251,210,251,211,251,212,251,
213,251,214,251,215,251,216,251,217,251,218,251,219,251,220,251,
221,251,222,251,223,251,224,251,225,251,226,251,227,251,228,251,
229,251,230,251,231,251,232,251,233,251,234,251,235,251,236,251,
237,251,238,251,239,251,240,251,241,251,242,251,243,251,244,251,
245,251,246,251,247,251,248,251,249,251,250,251,251,251,252,251,
253,251,254,251,161,252,162,252,163,252,164,252,165,252,166,252,
167,252,168,252,169,252,170,252,171,252,172,252,173,252,174,252,
175,252,176,252,177,252,178,252,179,252,180,252,181,252,182,252,
183,252,184,252,185,252,186,252,187,252,188,252,189,252,190,252,
191,252,192,252,193,252,194,252,195,252,196,252,197,252,198,252,
199,252,200,252,201,252,202,252,203,252,204,252,205,252,206,252,
207,252,208,252,209,252,210,252,211,252,212,252,213,252,214,252,
215,252,216,252,217,252,218,252,219,252,220,252,221,252,222,252,
223,252,224,252,225,252,226,252,227,252,228,252,229,252,230,252,
231,252,232,252,233,252,234,252,235,252,236,252,237,252,238,252,
239,252,240,252,241,252,242,252,243,252,244,252,245,252,246,252,
247,252,248,252,249,252,250,252,251,252,252,252,253,252,254,252,
161,253,162,253,163,253,164,253,165,253,166,253,167,253,168,253,
169,253,170,253,171,253,172,253,173,253,174,253,175,253,176,253,
177,253,178,253,179,253,180,253,181,253,182,253,183,253,184,253,
185,253,186,253,187,253,188,253,189,253,190,253,191,253,192,253,
193,253,194,253,195,253,196,253,197,253,198,253,199,253,200,253,
201,253,202,253,203,253,204,253,205,253,206,253,207,253,208,253,
209,253,210,253,211,253,212,253,213,253,214,253,215,253,216,253,
217,253,218,253,219,253,220,253,221,253,222,253,223,253,224,253,
225,253,226,253,227,253,228,253,229,253,230,253,231,253,232,253,
233,253,234,253,235,253,236,253,237,253,238,253,239,253,240,253,
241,253,242,253,243,253,244,253,245,253,246,253,247,253,248,253,
249,253,250,253,251,253,252,253,253,253,254,253,161,254,162,254,
163,254,164,254,165,254,166,254,167,254,168,254,169,254,170,254,
171,254,172,254,173,254,174,254,175,254,176,254,177,254,178,254,
179,254,180,254,181,254,182,254,183,254,184,254,185,254,186,254,
187,254,188,254,189,254,190,254,191,254,192,254,193,254,194,254,
195,254,196,254,197,254,198,254,199,254,200,254,201,254,202,254,
203,254,204,254,205,254,206,254,207,254,208,254,209,254,210,254,
211,254,212,254,213,254,214,254,215,254,216,254,217,254,218,254,
219,254,220,254,221,254,222,254,223,254,224,254,225,254,226,254,
227,254,228,254,229,254,230,254,231,254,232,254,233,254,234,254,
235,254,236,254,237,254,238,254,239,254,240,254,241,254,242,254,
243,254,244,254,245,254,246,254,247,254,248,254,249,254,250,254,
251,254,252,254,253,254,254,254,33,245,34,245,35,245,36,245,
37,245,38,245,39,245,40,245,41,245,42,245,43,245,44,245,
45,245,46,245,47,245,48,245,49,245,50,245,51,245,52,245,
53,245,54,245,55,245,56,245,57,245,58,245,59,245,60,245,
61,245,62,245,63,245,64,245,65,245,66,245,67,245,68,245,
69,245,70,245,71,245,72,245,73,245,74,245,75,245,76,245,
77,245,78,245,79,245,80,245,81,245,82,245,83,245,84,245,
85,245,86,245,87,245,88,245,89,245,90,245,91,245,92,245,
93,245,94,245,95,245,96,245,97,245,98,245,99,245,100,245,
101,245,102,245,103,245,104,245,105,245,106,245,107,245,108,245,
109,245,110,245,111,245,112,245,113,245,114,245,115,245,116,245,
117,245,118,245,119,245,120,245,121,245,122,245,123,245,124,245,
125,245,126,245,33,246,34,246,35,246,36,246,37,246,38,246,
39,246,40,246,41,246,42,246,43,246,44,246,45,246,46,246,
47,246,48,246,49,246,50,246,51,246,52,246,53,246,54,246,
55,246,56,246,57,246,58,246,59,246,60,246,61,246,62,246,
63,246,64,246,65,246,66,246,67,246,68,246,69,246,70,246,
71,246,72,246,73,246,74,246,75,246,76,246,77,246,78,246,
79,246,80,246,81,246,82,246,83,246,84,246,85,246,86,246,
87,246,88,246,89,246,90,246,91,246,92,246,93,246,94,246,
95,246,96,246,97,246,98,246,99,246,100,246,101,246,102,246,
103,246,104,246,105,246,106,246,107,246,108,246,109,246,110,246,
111,246,112,246,113,246,114,246,115,246,116,246,117,246,118,246,
119,246,120,246,121,246,122,246,123,246,124,246,125,246,126,246,
33,247,34,247,35,247,36,247,37,247,38,247,39,247,40,247,
41,247,42,247,43,247,44,247,45,247,46,247,47,247,48,247,
49,247,50,247,51,247,52,247,53,247,54,247,55,247,56,247,
57,247,58,247,59,247,60,247,61,247,62,247,63,247,64,247,
65,247,66,247,67,247,68,247,69,247,70,247,71,247,72,247,
73,247,74,247,75,247,76,247,77,247,78,247,79,247,80,247,
81,247,82,247,83,247,84,247,85,247,86,247,87,247,88,247,
89,247,90,247,91,247,92,247,93,247,94,247,95,247,96,247,
97,247,98,247,99,247,100,247,101,247,102,247,103,247,104,247,
105,247,106,247,107,247,108,247,109,247,110,247,111,247,112,247,
113,247,114,247,115,247,116,247,117,247,118,247,119,247,120,247,
121,247,122,247,123,247,124,247,125,247,126,247,33,248,34,248,
35,248,36,248,37,248,38,248,39,248,40,248,41,248,42,248,
43,248,44,248,45,248,46,248,47,248,48,248,49,248,50,248,
51,248,52,248,53,248,54,248,55,248,56,248,57,248,58,248,
59,248,60,248,61,248,62,248,63,248,64,248,65,248,66,248,
67,248,68,248,69,248,70,248,71,248,72,248,73,248,74,248,
75,248,76,248,77,248,78,248,79,248,80,248,81,248,82,248,
83,248,84,248,85,248,86,248,87,248,88,248,89,248,90,248,
91,248,92,248,93,248,94,248,95,248,96,248,97,248,98,248,
99,248,100,248,101,248,102,248,103,248,104,248,105,248,106,248,
107,248,108,248,109,248,110,248,111,248,112,248,113,248,114,248,
115,248,116,248,117,248,118,248,119,248,120,248,121,248,122,248,
123,248,124,248,125,248,126,248,33,249,34,249,35,249,36,249,
37,249,38,249,39,249,40,249,41,249,42,249,43,249,44,249,
45,249,46,249,47,249,48,249,49,249,50,249,51,249,52,249,
53,249,54,249,55,249,56,249,57,249,58,249,59,249,60,249,
61,249,62,249,63,249,64,249,65,249,66,249,67,249,68,249,
69,249,70,249,71,249,72,249,73,249,74,249,75,249,76,249,
77,249,78,249,79,249,80,249,81,249,82,249,83,249,84,249,
85,249,86,249,87,249,88,249,89,249,90,249,91,249,92,249,
93,249,94,249,95,249,96,249,97,249,98,249,99,249,100,249,
101,249,102,249,103,249,104,249,105,249,106,249,107,249,108,249,
109,249,110,249,111,249,112,249,113,249,114,249,115,249,116,249,
117,249,118,249,119,249,120,249,121,249,122,249,123,249,124,249,
125,249,126,249,33,250,34,250,35,250,36,250,37,250,38,250,
39,250,40,250,41,250,42,250,43,250,44,250,45,250,46,250,
47,250,48,250,49,250,50,250,51,250,52,250,53,250,54,250,
55,250,56,250,57,250,58,250,59,250,60,250,61,250,62,250,
63,250,64,250,65,250,66,250,67,250,68,250,69,250,70,250,
71,250,72,250,73,250,74,250,75,250,76,250,77,250,78,250,
79,250,80,250,81,250,82,250,83,250,84,250,85,250,86,250,
87,250,88,250,89,250,90,250,91,250,92,250,93,250,94,250,
95,250,96,250,97,250,98,250,99,250,100,250,101,250,102,250,
103,250,104,250,105,250,106,250,107,250,108,250,109,250,110,250,
111,250,112,250,113,250,114,250,115,250,116,250,117,250,118,250,
119,250,120,250,121,250,122,250,123,250,124,250,125,250,126,250,
33,251,34,251,35,251,36,251,37,251,38,251,39,251,40,251,
41,251,42,251,43,251,44,251,45,251,46,251,47,251,48,251,
49,251,50,251,51,251,52,251,53,251,54,251,55,251,56,251,
57,251,58,251,59,251,60,251,61,251,62,251,63,251,64,251,
65,251,66,251,67,251,68,251,69,251,70,251,71,251,72,251,
73,251,74,251,75,251,76,251,77,251,78,251,79,251,80,251,
81,251,82,251,83,251,84,251,85,251,86,251,87,251,88,251,
89,251,90,251,91,251,92,251,93,251,94,251,95,251,96,251,
97,251,98,251,99,251,100,251,101,251,102,251,103,251,104,251,
105,251,106,251,107,251,108,251,109,251,110,251,111,251,112,251,
113,251,114,251,115,251,116,251,117,251,118,251,119,251,120,251,
121,251,122,251,123,251,124,251,125,251,126,251,33,252,34,252,
35,252,36,252,37,252,38,252,39,252,40,252,41,252,42,252,
43,252,44,252,45,252,46,252,47,252,48,252,49,252,50,252,
51,252,52,252,53,252,54,252,55,252,56,252,57,252,58,252,
59,252,60,252,61,252,62,252,63,252,64,252,65,252,66,252,
67,252,68,252,69,252,70,252,71,252,72,252,73,252,74,252,
75,252,76,252,77,252,78,252,79,252,80,252,81,252,82,252,
83,252,84,252,85,252,86,252,87,252,88,252,89,252,90,252,
91,252,92,252,93,252,94,252,95,252,96,252,97,252,98,252,
99,252,100,252,101,252,102,252,103,252,104,252,105,252,106,252,
107,252,108,252,109,252,110,252,111,252,112,252,113,252,114,252,
115,252,116,252,117,252,118,252,119,252,120,252,121,252,122,252,
123,252,124,252,125,252,126,252,33,253,34,253,35,253,36,253,
37,253,38,253,39,253,40,253,41,253,42,253,43,253,44,253,
45,253,46,253,47,253,48,253,49,253,50,253,51,253,52,253,
53,253,54,253,55,253,56,253,57,253,58,253,59,253,60,253,
61,253,62,253,63,253,64,253,65,253,66,253,67,253,68,253,
69,253,70,253,71,253,72,253,73,253,74,253,75,253,76,253,
77,253,78,253,79,253,80,253,81,253,82,253,83,253,84,253,
85,253,86,253,87,253,88,253,89,253,90,253,91,253,92,253,
93,253,94,253,95,253,96,253,97,253,98,253,99,253,100,253,
101,253,102,253,103,253,104,253,105,253,106,253,107,253,108,253,
109,253,110,253,111,253,112,253,113,253,114,253,115,253,116,253,
117,253,118,253,119,253,120,253,121,253,122,253,123,253,124,253,
125,253,126,253,33,254,34,254,35,254,36,254,37,254,38,254,
39,254,40,254,41,254,42,254,43,254,44,254,45,254,46,254,
47,254,48,254,49,254,50,254,51,254,52,254,53,254,54,254,
55,254,56,254,57,254,58,254,59,254,60,254,61,254,62,254,
63,254,64,254,65,254,66,254,67,254,68,254,69,254,70,254,
71,254,72,254,73,254,74,254,75,254,76,254,77,254,78,254,
79,254,80,254,81,254,82,254,83,254,84,254,85,254,86,254,
87,254,88,254,89,254,90,254,91,254,92,254,93,254,94,254,
95,254,96,254,97,254,98,254,99,254,100,254,101,254,102,254,
103,254,104,254,105,254,106,254,107,254,108,254,109,254,110,254,
111,254,112,254,113,254,114,254,115,254,116,254,117,254,118,254,
119,254,120,254,121,254,122,254,123,254,124,254,125,254,126,254,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,243,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,57,244,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,107,244,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,39,244,42,244,
43,244,49,244,56,244,59,244,60,244,68,244,69,244,73,244,
76,244,77,244,78,244,79,244,81,244,83,244,86,244,88,244,
90,244,91,244,94,244,98,244,99,244,100,244,102,244,104,244,
105,244,108,244,113,244,114,244,115,244,119,244,0,0,0,0,
0,0,170,161,54,243,244,161,240,161,243,161,245,161,53,243,
202,161,203,161,246,161,220,161,164,161,0,0,165,161,191,161,
176,163,177,163,178,163,179,163,180,163,181,163,182,163,183,163,
184,163,185,163,167,161,168,161,227,161,225,161,228,161,169,161,
247,161,193,163,194,163,195,163,196,163,197,163,198,163,199,163,
200,163,201,163,202,163,203,163,204,163,205,163,206,163,207,163,
208,163,209,163,210,163,211,163,212,163,213,163,214,163,215,163,
216,163,217,163,218,163,206,161,192,161,207,161,176,161,178,161,
174,161,225,163,226,163,227,163,228,163,229,163,230,163,231,163,
232,163,233,163,234,163,235,163,236,163,237,163,238,163,239,163,
240,163,241,163,242,163,243,163,244,163,245,163,246,163,247,163,
248,163,249,163,250,163,208,161,195,161,209,161,0,0,0,0,
0,0,161,142,162,142,163,142,164,142,165,142,166,142,167,142,
168,142,169,142,170,142,171,142,172,142,173,142,174,142,175,142,
176,142,177,142,178,142,179,142,180,142,181,142,182,142,183,142,
184,142,185,142,186,142,187,142,188,142,189,142,190,142,191,142,
192,142,193,142,194,142,195,142,196,142,197,142,198,142,199,142,
200,142,201,142,202,142,203,142,204,142,205,142,206,142,207,142,
208,142,209,142,210,142,211,142,212,142,213,142,214,142,215,142,
216,142,217,142,218,142,219,142,220,142,221,142,222,142,223,142,
241,161,242,161,204,162,177,161,0,0,239,161,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
64,0,128,0,192,0,0,1,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,64,1,128,1,
192,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
48,2,0,0,0,0,0,0,112,2,160,2,224,2,16,3,
80,3,144,3,208,3,0,0,0,4,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,64,4,128,4,160,4,224,4,
32,5,96,5,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
160,5,224,5,32,6,96,6,0,0,0,0,0,0,0,0,
160,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
224,6,32,7,96,7,160,7,224,7,32,8,96,8,160,8,
224,8,32,9,96,9,160,9,224,9,32,10,96,10,160,10,
224,10,32,11,96,11,160,11,224,11,32,12,96,12,160,12,
224,12,32,13,96,13,160,13,224,13,32,14,96,14,160,14,
224,14,32,15,96,15,160,15,224,15,32,16,96,16,160,16,
224,16,32,17,96,17,160,17,224,17,32,18,96,18,160,18,
224,18,32,19,96,19,160,19,224,19,32,20,96,20,160,20,
224,20,32,21,96,21,160,21,224,21,32,22,96,22,160,22,
224,22,32,23,96,23,160,23,224,23,32,24,96,24,160,24,
224,24,32,25,96,25,160,25,224,25,32,26,96,26,160,26,
224,26,32,27,96,27,160,27,224,27,32,28,96,28,160,28,
224,28,32,29,96,29,160,29,224,29,32,30,96,30,160,30,
224,30,32,31,96,31,160,31,224,31,32,32,96,32,160,32,
224,32,32,33,96,33,160,33,224,33,32,34,96,34,160,34,
224,34,32,35,96,35,160,35,224,35,32,36,96,36,160,36,
224,36,32,37,96,37,160,37,224,37,32,38,96,38,160,38,
224,38,32,39,96,39,160,39,224,39,32,40,96,40,160,40,
224,40,32,41,96,41,160,41,224,41,32,42,96,42,160,42,
224,42,32,43,96,43,160,43,224,43,32,44,96,44,160,44,
224,44,32,45,96,45,160,45,224,45,32,46,96,46,160,46,
224,46,32,47,96,47,160,47,224,47,32,48,96,48,160,48,
224,48,32,49,96,49,160,49,224,49,32,50,96,50,160,50,
224,50,32,51,96,51,160,51,224,51,32,52,96,52,160,52,
224,52,32,53,96,53,160,53,224,53,32,54,96,54,160,54,
224,54,32,55,96,55,0,0,128,55,192,55,0,56,64,56,
128,56,192,56,0,57,64,57,128,57,192,57,0,58,64,58,
128,58,192,58,0,59,64,59,128,59,192,59,0,60,64,60,
128,60,192,60,0,61,64,61,128,61,192,61,0,62,64,62,
128,62,192,62,0,63,64,63,128,63,192,63,0,64,64,64,
128,64,192,64,0,65,64,65,128,65,192,65,0,66,64,66,
128,66,192,66,0,67,64,67,128,67,192,67,0,68,0,0,
32,68,96,68,160,68,224,68,32,69,64,69,128,69,192,69,
0,70,64,70,128,70,192,70,0,71,64,71,112,71,176,71,
240,71,48,72,112,72,176,72,240,72,48,73,112,73,176,73,
240,73,48,74,112,74,176,74,240,74,48,75,112,75,176,75,
240,75,48,76,112,76,0,0,0,0,128,76,192,76,0,77,
48,77,112,77,176,77,240,77,48,78,112,78,176,78,240,78,
48,79,112,79,176,79,240,79,48,80,112,80,160,80,224,80,
32,81,96,81,144,81,208,81,16,82,80,82,144,82,208,82,
16,83,80,83,0,0,144,83,208,83,16,84,80,84,144,84,
208,84,240,84,48,85,112,85,176,85,240,85,48,86,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
32,0,0,0,128,0,0,0,83,0,0,0,204,1,0,0,
0,0,0,0,204,1,0,0,208,1,0,0,2,0,0,0,
216,1,0,0,0,0,0,0,216,1,0,0,64,0,0,0,
19,5,0,0,254,11,0,0,49,3,0,0,96,18,0,0,
56,0,0,0,3,3,3,0,1,1,1,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,64,19,0,0,
0,0,0,70,92,0,159,92,0,0,0,93,0,0,0,94,
0,0,0,95,0,0,0,96,0,0,0,97,0,0,0,98,
0,0,0,99,0,0,0,100,0,0,0,101,0,0,0,102,
0,0,0,103,0,0,0,104,0,0,0,105,0,0,0,106,
0,0,0,107,0,0,0,108,0,0,0,109,0,0,0,110,
0,0,0,111,0,0,0,112,0,0,0,113,0,0,0,114,
0,0,0,115,0,0,0,116,0,0,0,117,0,0,0,118,
0,0,0,119,0,0,0,120,0,0,0,121,0,0,0,122,
0,0,0,123,0,0,0,124,0,0,0,125,126,0,159,126,
0,0,0,127,0,0,0,128,0,0,0,129,0,0,0,130,
0,0,0,131,0,0,0,132,0,0,0,133,0,0,0,134,
0,0,0,135,0,0,0,136,0,0,0,137,0,0,0,138,
0,0,0,139,0,0,0,140,0,0,0,141,71,0,0,142,
74,0,0,143,0,0,0,144,0,0,0,145,0,0,0,146,
0,0,0,147,0,0,0,148,0,0,0,149,0,0,0,150,
0,0,0,151,0,0,0,152,0,0,0,153,0,0,0,154,
0,0,0,155,0,0,0,156,0,0,0,157,0,0,0,158,
0,0,0,159,0,0,0,160,78,0,0,161,0,0,0,2,
92,0,31,227,126,0,31,228,0,0,0,1,76,0,0,162,
0,0,0,1,228,255,159,195,0,0,0,4,21,32,159,189,
94,255,159,193,37,34,159,194,13,255,159,221,0,0,0,0,
0,0,0,0,0,0,0,0,128,0,64,0,64,0,64,0,
64,0,64,0,64,0,64,0,191,0,234,0,64,0,64,0,
41,1,64,0,64,0,64,0,64,0,64,0,64,0,45,1,
108,1,151,1,209,1,12,2,64,0,75,2,139,2,150,2,
214,2,244,2,25,3,88,3,132,3,196,3,3,4,23,4,
68,4,64,0,129,4,167,4,64,0,64,0,64,0,64,0,
64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,
64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0,
64,0,64,0,64,0,211,4,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,
0,0,5,0,0,0,9,0,13,0,0,0,17,0,21,0,
25,0,29,0,25,0,33,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,37,0,0,0,39,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,43,0,0,0,46,0,0,0,
0,0,0,0,0,0,0,0,50,0,53,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,57,0,61,0,0,0,0,0,65,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,70,0,0,0,
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,87,0,0,0,0,0,90,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,96,0,100,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
103,0,0,0,0,0,0,0,107,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
139,0,0,0,143,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,147,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,150,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,156,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,157,0,0,0,
161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,166,0,170,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
174,0,0,0,177,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,181,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,186,0,0,0,0,0,0,0,190,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,192,0,
0,0,0,0,0,0,0,0,196,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,200,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,4,0,0,0,0,0,0,0,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,0,1,0,1,0,1,0,0,0,0,0,1,0,
5,0,6,0,0,0,0,0,1,0,1,0,1,0,0,0,
1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,0,
1,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,
1,0,1,0,1,0,0,0,0,0,0,0,0,0,7,0,
8,0,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,
1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,
0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,
1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,
0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,
0,0,0,0,0,0,0,0,1,0,0,0,1,0,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,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,
0,0,0,0,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,0,14,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,
19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,
0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,26,0,0,0,0,0,
27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,
0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,41,0,42,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,
44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,51,0,52,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,
0,0,0,0,0,0,55,0,0,0,0,0,0,0,1,0,
1,0,1,0,1,0,1,0,1,0,1,0,0,0,0,0,
0,0,0,0,1,0,0,128,0,0,0,129,92,0,0,129,
126,0,0,129,92,0,0,1,195,162,143,3,189,161,0,2,
189,161,0,130,194,161,0,2,126,0,0,1,221,161,0,2,
194,161,0,130,193,161,0,2,162,182,0,2,237,199,0,2,
162,176,0,2,250,179,0,2,185,199,0,2,182,197,0,2,
162,214,0,2,200,188,0,2,223,193,0,2,207,196,0,2,
185,218,0,2,244,186,0,2,244,219,0,2,174,200,0,2,
194,198,0,2,235,177,0,2,233,193,0,2,248,197,0,2,
189,195,0,2,218,229,0,2,171,189,0,2,210,183,0,2,
166,231,0,2,213,183,0,2,233,205,0,2,213,190,0,2,
230,192,0,2,185,207,0,2,237,182,0,2,223,190,0,2,
176,200,0,2,203,203,0,2,248,240,0,2,191,197,0,2,
205,194,0,2,170,178,0,2,180,184,0,2,237,185,0,2,
205,204,0,2,221,161,0,130,193,161,0,130,195,162,143,131
}
};
U_CDECL_END
|
the_stack_data/1092573.c | #include<stdio.h>
#include<string.h>
#define MAXN 1010
struct Record{
char name[25];
int time;
int d,h,m;
int status;
}rec[MAXN];
int Sort[MAXN];
int Fee[24];
int Fee_Date,Fee_Hour[24];
int N,mo,minute;
void Swap(int i,int j){
int t;
t=Sort[i];
Sort[i]=Sort[j];
Sort[j]=t;
return;
}
void Init(){
int i;
for(i=0;i<24;i++){
scanf("%d",&Fee[i]);
Fee_Hour[i]=60*Fee[i];
Fee_Date+=Fee_Hour[i];
}//初始化费用数组
scanf("%d",&N);//读入N
getchar();
for(i=0;i<N;i++){
rec[i].status=-1;
Sort[i]=-1;
}//数组准备
return;
}
void Get_Record(){
int i,j;
char temp[10];
int d,h,m;
int c;
for(i=0;i<N;i++){
scanf("%s %d:%d:%d:%d %s",&rec[i].name,&mo,&d,&h,&m,&temp);
getchar();
rec[i].d=d;
rec[i].h=h;
rec[i].m=m;
rec[i].time=(d*24+h)*60+m;//标化分钟数
if(temp[1]=='n'){
rec[i].status=1;
}else{
rec[i].status=0;
}
Sort[i]=i;
//读入数据
for(j=i;j>0;j--){
c=strcmp(rec[Sort[j]].name,rec[Sort[j-1]].name);
if(c<0){
Swap(j,j-1);
}else if(c==0){
if(rec[Sort[j]].time<rec[Sort[j-1]].time){
Swap(j,j-1);
}else{
break;
}
}else{
break;
}
}//冒泡排序
}
}
double Get_Mon(int begin,int end){
int d,h,m;
int i;
double money=0.0;
minute=0;
minute+=(rec[end].d-rec[begin].d-1)*1440;
money+=(rec[end].d-rec[begin].d-1)*Fee_Date;
for(i=rec[begin].h+1;i<24;i++){
minute+=60;
money+=Fee_Hour[i];
}//按小时 (开始)
for(i=0;i<rec[end].h;i++){
minute+=60;
money+=Fee_Hour[i];
}//按小时 (结束)
for(i=rec[begin].m;i<60;i++){
minute++;
money+=Fee[rec[begin].h];
}//按分钟 (开始)
for(i=0;i<rec[end].m;i++){
minute++;
money+=Fee[rec[end].h];
}//按小时 (结束)
return money/100.0;
}
void Print(){
int i=0;
int begin=-1,end=-1;
int flag,P;
double sum,mon;
while(i<N){
flag=0;
P=0;
sum=0.0;
while(1){
if(flag==0){//需要begin,end扔掉
if(rec[Sort[i]].status==1){
begin=Sort[i];
flag=1;//需要end
}//
}else{//需要end,但拿到begin更新
if(rec[Sort[i]].status==0){
end=Sort[i];
flag=0;//需要begin
}else{
begin=Sort[i];
}
}
if(begin!=-1&&end!=-1){
if(P==0){
printf("%s %02d\n",rec[Sort[i]].name,mo);
P++;
}
mon=Get_Mon(begin,end);
sum+=mon;
printf("%02d:%02d:%02d %02d:%02d:%02d %d $%.2lf\n",rec[begin].d,rec[begin].h,rec[begin].m,rec[end].d,rec[end].h,rec[end].m,minute,mon);
begin=-1;
end=-1;
}
i++;
if(strcmp(rec[Sort[i]].name,rec[Sort[i-1]].name)!=0||i>=N){//不一样了
if(P==1){
printf("Total amount: $%.2lf\n",sum);
}
break;
}
}
}
return;
}
int main(){
Init();
Get_Record();
Print();
return 0;
}
|
the_stack_data/57949884.c | #include <stdio.h>
int smaller(int a, int b)
{
int temp;
if (a < b){
temp = a;
}
else if (b < a){
temp = b;
}
else {
temp = 0;
}
return temp;
}
int main()
{
int a, b, small;
printf("Please enter two numbers: ");
scanf("%d%d", &a, &b);
small = smaller(a, b);
printf("The smaller number is %d!\n", small);
return 0;
}
|
the_stack_data/231392181.c | #include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#define N 500
#define MAX_SWEEPS 250
#define FREQ 1
#define T 2.2691
int grid[N][N];
// initialize the board state to random 1s and 0s
void initialize_grid();
// decide whether or not to flip a single cell
void flip_cell(int x, int y);
// Sweep the grid NxN times
void full_sweep();
// output grid as a PPM "image"
void output_grid();
// Calculate the change in energy if grid[x][y] is flipped
float deltaU(int x, int y);
int main()
{
srand(time(NULL));
initialize_grid();
for(int i = 0; i < MAX_SWEEPS; i++){
full_sweep();
if(i % FREQ == 0){
output_grid();
}
//fprintf(stderr, "iteration %d\n", i);
}
return 0;
}
void initialize_grid(){
for(int i = 0; i < N; i++){
for(int j = 0; j < N; j++){
grid[i][j] = rand() % 2 ? 1 : -1;
}
}
}
void full_sweep(){
for(int step = 0; step < N*N; step++){
int i = rand()%N;
int j = rand()%N;
flip_cell(i,j);
}
}
void flip_cell(int i, int j){
double random = (double)rand() / (double)RAND_MAX;
double delta_energy = deltaU(i,j);
if(delta_energy <= 0 || random < exp(-delta_energy/T)){
grid[i][j] *= -1;
}
}
void output_grid(){
fprintf(stdout, "P6\n%zu %zu\n255\n", (size_t)N, (size_t)N);
char num;
for (int i = 0; i < N; ++i) {
for (int j = 0; j < N; ++j) {
num = grid[i][j] < 0 ? 255 : 0;
fwrite(&num, 1,1, stdout);
fwrite(&num, 1,1, stdout);
fwrite(&num, 1,1, stdout);
}
}
fflush(stdout);
}
float deltaU(int x, int y){
double accum = grid[(x+(N-1)) % N][y] + grid[(x+1) % N][y] +
grid[x][(y+(N-1))%N] + grid[x][(y+1)%N];
return 2.0 * grid[x][y] * accum;
}
|
the_stack_data/85924.c | const char net_e1000_igb_pmd_info[] __attribute__((used)) = "PMD_INFO_STRING= {\"name\" : \"net_e1000_igb\", \"pci_ids\" : [[32902, 4297, 65535, 65535],[32902, 4326, 65535, 65535],[32902, 4327, 65535, 65535],[32902, 4328, 65535, 65535],[32902, 5414, 65535, 65535],[32902, 5386, 65535, 65535],[32902, 5400, 65535, 65535],[32902, 5389, 65535, 65535],[32902, 4263, 65535, 65535],[32902, 4265, 65535, 65535],[32902, 4310, 65535, 65535],[32902, 5390, 65535, 65535],[32902, 5391, 65535, 65535],[32902, 5392, 65535, 65535],[32902, 5393, 65535, 65535],[32902, 5398, 65535, 65535],[32902, 5415, 65535, 65535],[32902, 5409, 65535, 65535],[32902, 5410, 65535, 65535],[32902, 5411, 65535, 65535],[32902, 5412, 65535, 65535],[32902, 5446, 65535, 65535],[32902, 5427, 65535, 65535],[32902, 5428, 65535, 65535],[32902, 5429, 65535, 65535],[32902, 5430, 65535, 65535],[32902, 5431, 65535, 65535],[32902, 5432, 65535, 65535],[32902, 5433, 65535, 65535],[32902, 8000, 65535, 65535],[32902, 8001, 65535, 65535],[32902, 8005, 65535, 65535],[32902, 1080, 65535, 65535],[32902, 1082, 65535, 65535],[32902, 1084, 65535, 65535],[32902, 1088, 65535, 65535] ]}";
const char net_e1000_igb_vf_pmd_info[] __attribute__((used)) = "PMD_INFO_STRING= {\"name\" : \"net_e1000_igb_vf\", \"pci_ids\" : [[32902, 4298, 65535, 65535],[32902, 5421, 65535, 65535],[32902, 5408, 65535, 65535],[32902, 5423, 65535, 65535] ]}";
|
the_stack_data/105391.c | /*
Measure throughput of IPC using udp sockets
Copyright (c) 2016 Erik Rigtorp <[email protected]>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#include <netdb.h>
#include <netinet/tcp.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#define UNUSED(x) (void)(x)
#if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0) && \
defined(_POSIX_MONOTONIC_CLOCK)
#define HAS_CLOCK_GETTIME_MONOTONIC
#endif
#ifdef HAS_CLOCK_GETTIME_MONOTONIC
struct timespec start, stop;
#else
struct timeval start, stop;
#endif
ssize_t size;
int64_t count;
void child_terminated(int signum)
{
int64_t delta;
UNUSED(signum);
wait(NULL);
#ifdef HAS_CLOCK_GETTIME_MONOTONIC
if (clock_gettime(CLOCK_MONOTONIC, &stop) == -1) {
perror("clock_gettime");
exit(1);
}
delta = ((stop.tv_sec - start.tv_sec) * 1000000 +
(stop.tv_nsec - start.tv_nsec) / 1000);
#else
if (gettimeofday(&stop, NULL) == -1) {
perror("gettimeofday");
return 1;
}
delta =
(stop.tv_sec - start.tv_sec) * 1000000 + (stop.tv_usec - start.tv_usec);
#endif
printf("average throughput: %li msg/s\n", (count * 1000000) / delta);
printf("average throughput: %li Mb/s\n",
(((count * 1000000) / delta) * size * 8) / 1000000);
exit(0);
}
int main(int argc, char *argv[]) {
char *buf;
int64_t i;
ssize_t len;
ssize_t sofar;
int yes = 1;
int ret;
struct addrinfo hints;
struct addrinfo *resChild;
struct addrinfo *resParent;
int sockfd;
if (argc != 3) {
printf("usage: tcp_thr <message-size> <message-count>\n");
return 1;
}
size = atoi(argv[1]);
count = atol(argv[2]);
buf = malloc(size);
if (buf == NULL) {
perror("malloc");
return 1;
}
memset(&hints, 0, sizeof hints);
hints.ai_family = AF_UNSPEC; // use IPv4 or IPv6, whichever
hints.ai_socktype = SOCK_DGRAM;
hints.ai_flags = AI_PASSIVE; // fill in my IP for me
if ((ret = getaddrinfo("127.0.0.1", "3491", &hints, &resParent)) != 0) {
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(ret));
return 1;
}
if ((ret = getaddrinfo("127.0.0.1", "3492", &hints, &resChild)) != 0) {
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(ret));
return 1;
}
printf("message size: %li octets\n", size);
printf("message count: %li\n", count);
signal(SIGCHLD, child_terminated);
if (!fork()) {
/* child */
if ((sockfd = socket(resChild->ai_family, resChild->ai_socktype, resChild->ai_protocol)) ==
-1) {
perror("socket");
return 1;
}
if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int)) == -1) {
perror("setsockopt");
return 1;
}
if (bind(sockfd, resChild->ai_addr, resChild->ai_addrlen) == -1) {
perror("bind");
return 1;
}
for (i = 0; i < count; i++) {
for (sofar = 0; sofar < size;) {
len = recvfrom(sockfd, buf, size - sofar, 0, resParent->ai_addr, &resParent->ai_addrlen);
if (len == -1) {
perror("recvfrom");
return 1;
}
sofar += len;
}
}
} else {
/* parent */
sleep(1);
if ((sockfd = socket(resParent->ai_family, resParent->ai_socktype, resParent->ai_protocol)) ==
-1) {
perror("socket");
return 1;
}
if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int)) == -1) {
perror("setsockopt");
return 1;
}
if (bind(sockfd, resParent->ai_addr, resParent->ai_addrlen) == -1) {
perror("bind");
return 1;
}
#ifdef HAS_CLOCK_GETTIME_MONOTONIC
if (clock_gettime(CLOCK_MONOTONIC, &start) == -1) {
perror("clock_gettime");
return 1;
}
#else
if (gettimeofday(&start, NULL) == -1) {
perror("gettimeofday");
return 1;
}
#endif
for (;;) {
for (sofar = 0; sofar < size;) {
size_t chunk = size - sofar;
chunk = (chunk > 65000) ? 65000 : chunk;
len = sendto(sockfd, buf, chunk, 0, resChild->ai_addr, resChild->ai_addrlen);
if (len == -1) {
perror("sendto");
return 1;
}
sofar += len;
}
}
}
return 0;
}
|
the_stack_data/25170.c | /*-
* Copyright (c) 2005-2014 Rich Felker, et al.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <string.h>
char *
strtok(char *restrict s, const char *restrict sep)
{
static char *p;
if (!s && !(s = p)) {
return NULL;
}
s += strspn(s, sep);
if (!*s) {
return p = 0;
}
p = s + strcspn(s, sep);
if (*p) {
*p++ = 0;
} else {
p = 0;
}
return s;
}
|
the_stack_data/86076078.c | #include <stdio.h>
int main(void) {
int i, j, n, a, l;
while (scanf("%d",&n), n) {
for (i = 1; i <= n; i++) {
for (j = 1; j <= n ; j++) {
if (j < i) a = j;
else a = i;
if (l = n - i + 1, l < a) a = l;
if (l = n - j + 1, l < a) a = l;
printf("%3d", a);
if (j < n) printf(" ");
else printf("\n");
}
}
printf("\n");
}
return 0;
}
|
the_stack_data/45450726.c | /*numPass=0, numTotal=5
Verdict:WRONG_ANSWER, Visibility:1, Input:"4
34 13 42 14
2", ExpOutput:"47
55
56
", Output:""
Verdict:WRONG_ANSWER, Visibility:1, Input:"4
11 2 18 2
2", ExpOutput:"13
20
20
", Output:""
Verdict:WRONG_ANSWER, Visibility:1, Input:"6
1 2 3 4 5 6
4", ExpOutput:"10
14
18
", Output:""
Verdict:WRONG_ANSWER, Visibility:0, Input:"8
2 4 6 8 10 11 12 14
6", ExpOutput:"41
51
61
", Output:""
Verdict:WRONG_ANSWER, Visibility:0, Input:"7
2 4 -1 -5 2 5 6
4", ExpOutput:"0
0
1
8
", Output:""
*/
#include <stdio.h>
int main() {
int s;
scanf("%d",&s);
int arr[20],j,i,k,p,sum=0;
for(i=0;i<s;j++){
scanf("%d",&arr[i]);
}
scanf("%d",&k);
for(j=0;j<=s-k;j++){
sum=0;
for(p=j;p<j+k;p++)
sum=sum + arr[j];
printf("%d\n",sum);
}
return 0;
} |
the_stack_data/67325967.c | // RUN: clang %loadLLOV %s -o /dev/null 2>&1 | FileCheck %s
// Taken from ompVerify, Fig. 1
#include <omp.h>
#define N 20
int main() {
int x[N], b[N], L[N][N];
#pragma omp parallel for
for (int i = 0; i < N; i++) {
x[i] = b[i];
for (int j = 0; j < i; j++)
x[i] = x[i] - L[i][j] * x[j];
x[i] = x[i] / L[i][i];
}
}
// CHECK: Data Race detected
// END
|
the_stack_data/178264355.c | struct a {
int b
};
struct c {
long d;
int e
} * f;
long g;
h() {
struct a *i;
struct c j;
i = k();
if (i->b > 1)
if (l())
m();
if (i->b) {
long n = g ? f : g;
l(n);
}
memset(&j, 0, sizeof j);
j.d = sizeof(int);
o(&j);
}
|
the_stack_data/623042.c | void swap(char ***a, char ***b) {
char **a1, **b1;
char *c;
a1 = *a;
b1 = *b;
c = *a1;
*a1 = *b1;
*b1 = c;
}
int main (){
char b[20];
char a[20];
char * p1, *p2, *t1, *t2;
char ** pa, ** pb;
p1 = a;
p2 = b;
pa = & p1;
pb = & p2;
swap (&pa, &pb);
t1 = *pa;
*t1 = 1;
t2= *pb;
*t2 = 0;
}
|
the_stack_data/11.c | #include <stdio.h>
static struct sss{
short f;
float a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of float in struct starting with short:\n");
printf ("size=%d,align=%d\n",
sizeof (sss), __alignof__ (sss));
printf ("offset-short=%d,offset-arrayof-float=%d,\nalign-short=%d,align-arrayof-float=%d\n",
_offsetof (struct sss, f), _offsetof (struct sss, a),
__alignof__ (sss.f), __alignof__ (sss.a));
printf ("offset-float-a[5]=%d,align-float-a[5]=%d\n",
_offsetof (struct sss, a[5]),
__alignof__ (sss.a[5]));
return 0;
}
|
the_stack_data/800217.c | //C code to implement maximum sum rectangle in a 2D matrix
#include <stdio.h>
#include<stdbool.h>
#include<string.h>
#include <limits.h>
int main() {
// R & C are the number of rows and columns
int R, C;
printf("Input-->\n");
printf("Enter the row-sze: \n");
scanf("%d", & R);
printf("Enter the column-sze: \n");
scanf("%d", & C);
int matrix[R][C], temp[R], top, bottom;
printf("Enter the elements of 2-D matrix :\n");
for (int ol = 0; ol < R; ol++) {
for (int inloop= 0; inloop < C; inloop++) {
scanf("%d", & matrix[ol][inloop]);
}
}
int maxSum = INT_MIN, finalTop, finalBottom, finalRight, finalLeft;
for (int Left= 0; Left < C; Left++) {
// Initialize the all elements of temp as 0
memset(temp, 0, sizeof(temp));
for (int Right = Left; Right < C; Right++) {
for (int i = 0; i < R; i++) temp[i] += matrix[i][Right];
int max = INT_MIN, S = 0, localTop = 0, sum;
bool flag = false;
for (int index = 0; index < R; index++) {
if (temp[index] >= 0) flag = true;
S = S + temp[index];
if (S < 0) {
S = 0;
localTop = index+ 1;
} else if (S > max) {
max = S;
top = localTop;
bottom = index;
}
}
if (flag) {
sum = max;
} else {
max = INT_MIN;
//To find the maximum element in array
for (int index = 0; index < R; index++) {
if (max < temp[index]) {
max = temp[index];
top = bottom = index;
}
}
sum = max;;
}
// Comparison of sum with maximum sum
if (sum > maxSum) {
maxSum = sum;
finalTop = top;
finalBottom = bottom;
finalLeft = Left;
finalRight = Right;
}
}
}
printf("\nOutput-->\n");
printf("Maximum sumRectangle is : %d\n", maxSum);
return 0;
}
/*
Input-->
Enter the row-sze: 4
Enter the column-sze: 5
Enter the elements of 2-D matrix :
1 2 -1 -4 -20
-8 -3 4 2 1
3 8 10 1 3
-4 -1 1 7 -6
Output-->
Maximum sumRectangle is : 29
Time Complexity: O(cols^2 * rows)
Space Complexity: O(rows)
*/
|
the_stack_data/23576436.c | #include <stdio.h>
void printMonome(int unsigned decalage){
if(decalage == 0){
printf("1");
}else{
printf("X^%u",decalage);
}
}
void printBinary(long unsigned x){
unsigned int decalage = 0;
while((x>>decalage) != 0){
printf("%lu",(x>>decalage)&1);
decalage++;
}
}
void printPol(long unsigned x,short newline){
unsigned int decalage = 0;
short first = 1;
while((x>>decalage) != 0){
if((x>>decalage) & 1){
if(!first){
printf("+");
}else{
first = 0;
}
printMonome(decalage);
}
decalage++;
}
if(newline){
printf("\n");
}else{
printf(" ");
}
}
int Degree(long unsigned x){
if(x == 0){
return -1;
}
unsigned int decalage = 0;
short first = 1;
while((x>>decalage) != 0){
decalage++;
}
return (decalage>0)?decalage-1:decalage;
}
long unsigned polAdd(long unsigned a, long unsigned b){
return a^b;
}
long unsigned PolMul(long unsigned a, long unsigned b){
if(b>a){
long unsigned tmp = a;
a = b;
b = tmp;
}
// ici deg a >= deg b
int decalage = 0;
long unsigned resultat = 0;
while((b>>decalage) != 0){
if((b>>decalage) & 1){
resultat = resultat ^ (a<<decalage);
}
decalage++;
}
return resultat;
}
long unsigned PolSqr(long unsigned a){
long unsigned resultat = 0;
unsigned int decalage = 0;
while((a>>decalage) != 0){
if((a>>decalage) & 1){
resultat = resultat ^ (1<<(decalage<<1));
}
decalage++;
}
return resultat;
}
long unsigned PolModDiv(long unsigned* r, long unsigned a, long unsigned b){
if(a==b){
*r=0;
return 1;
}
if(b>a){
*r = a;
return 0;
}
long unsigned tmp = a;
long unsigned resultat = 0;
while(tmp > b){
long unsigned decalage = Degree(tmp) - Degree(b);
tmp = tmp ^ (b<<decalage);
resultat = resultat ^ (1<<decalage);
}
*r = tmp;
return resultat;
}
long unsigned PowerSerial(long unsigned a, long unsigned b){
long unsigned tmp = a;
long unsigned res = 0;
while(1){
unsigned int decalage = 0;
while(!((tmp>>decalage) & 1)){
decalage++;
if(decalage>(32-Degree(b))){
return res;
}
}
tmp = tmp ^ (b<<decalage);
res = res ^ (1<<decalage);
}
return res;
}
long unsigned PolPowerMod(long unsigned a, long unsigned n, long unsigned p){
long unsigned r = 0;
if(n==1){
PolModDiv(&r,a,p);
return r;
}
if(n % 2 == 0){
PolModDiv(&r,PolMul(PolPowerMod(a,n-1,p),a),p);
}else{
PolModDiv(&r,PolPowerMod(PolSqr(a),n/2,p),p);
}
return r;
}
int main(){
printPol(0xa2,0);
printf("* ");
printPol(0x144,0);
printf("= ");
printPol(PolMul(0xa2,0x144),1);
printf("\n");
printPol(0x1a,0);
printf("^ 2 = ");
printPol(PolSqr(0x1a),1);
printf("\ndivision euclidienne de ");
printPol(0x33a,0);
printf("par ");
printPol(0xb,1);
printf("quotient: ");
long unsigned r = 0;
printPol(PolModDiv(&r,0x33a,0xb),1);
printf("reste: ");
printPol(r,1);
printf("\n32 termes:");
printPol(PowerSerial(0x1252,0x19),1);
printf("\nX^255 mod ");
printPol(0x11b,0);
printf("= ");
printPol(PolPowerMod(0x2,255,0x11b),1);
}
|
the_stack_data/909262.c |
#include <stdio.h>
int main() {
// 190214
printf("Hello C \n");
// 181224
int a;
for(a = 1; a < 10; a++){
printf("3 * %d = %d \n", a, a * 3);
}
// 181227
int b;
int c;
int d;
b = 3;
c = 9;
d = b + c;
printf("%d", d);
return 0;
}
|
the_stack_data/150141516.c | #include <stdio.h>
#include <math.h>
typedef struct cell{
float x;
float y;
float z;
float Ex;
float Ey;
float Ez;
} cell;
typedef struct particle{
float x;
float y;
float z;
float vx;
float vy;
float vz;
} particle;
int main(int argc, char* argv[]){
// Create electric field grid
int max_coordinate = 5;
int cells_per_unit = 5;
int grid_size = max_coordinate * 2 * cells_per_unit + 1;
float field_constant = 1.;
float charge = 1.;
cell grid[grid_size][grid_size][grid_size];
int i, j, k;
for(i=0; i<grid_size; i++){
for(j=0; j<grid_size; j++){
for(k=0; k<grid_size; k++){
grid[i][j][k].x = -1*max_coordinate + i*(1./((float) cells_per_unit));
grid[i][j][k].y = -1*max_coordinate + j*(1./((float) cells_per_unit));
grid[i][j][k].z = -1*max_coordinate + k*(1./((float) cells_per_unit));
float r_squared = pow(grid[i][j][k].x, 2) + pow(grid[i][j][k].y, 2) + pow(grid[i][j][k].z, 2);
grid[i][j][k].Ex = field_constant * charge * grid[i][j][k].x / r_squared;
grid[i][j][k].Ey = field_constant * charge * grid[i][j][k].y / r_squared;
grid[i][j][k].Ez = field_constant * charge * grid[i][j][k].z / r_squared;
}
}
}
// Initialize particle
particle p;
p.x = 1;
p.y = 0;
p.z = 0.;
p.vx = 0;
p.vy = -.5;
p.vz = 0.;
// Move particle over time
FILE* particle_fp = fopen("particle.dat", "w+");
float num_timesteps = 2001;
float timestep = 0.05;
float test_charge = -.1;
float test_mass = 1.;
printf("Time : Position\n");
for(i=0; i < num_timesteps; i++){
float current_timestep = i*timestep;
printf("%f : (%f, %f, %f)\n", current_timestep, p.x, p.y, p.z);
fprintf(particle_fp, "%f %f %f %f %f %f %f\n", current_timestep, p.x, p.y, p.z, p.vx, p.vy, p.vz);
int x_index = (p.x + max_coordinate) * cells_per_unit;
int y_index = (p.y + max_coordinate) * cells_per_unit;
int z_index = (p.z + max_coordinate) * cells_per_unit;
if(x_index >= grid_size || z_index >= grid_size || y_index >= grid_size || x_index < 0 || z_index < 0 || y_index < 0){
break;
}
float Fx = test_charge * grid[x_index][y_index][z_index].Ex;
float Fy = test_charge * grid[x_index][y_index][z_index].Ey;
float Fz = test_charge * grid[x_index][y_index][z_index].Ez;
float ax = Fx/test_mass;
float ay = Fy/test_mass;
float az = Fz/test_mass;
p.x += p.vx * timestep + 0.5 * ax * pow(timestep, 2);
p.y += p.vy * timestep + 0.5 * ay * pow(timestep, 2);
p.z += p.vz * timestep + 0.5 * az * pow(timestep, 2);
p.vx += ax * timestep;
p.vy += ay * timestep;
p.vz += az * timestep;
}
fclose(particle_fp);
// Save field data
FILE* field_fp = fopen("field.dat", "w+");
for(i=0; i<grid_size; i++){
j = k = (1 + max_coordinate) * cells_per_unit;
fprintf(field_fp, "%f %f %f %f %f %f\n", grid[i][j][k].x, grid[i][j][k].y, grid[i][j][k].z, grid[i][j][k].Ex, grid[i][j][k].Ey, grid[i][j][k].Ez);
}
fclose(field_fp);
//Return
return 0;
}
|
the_stack_data/6388629.c | // Exercicio 38
#include <stdio.h>
int main() {
float antigo, novo;
printf("Entre com o salario antigo do funcionario para saber o seu novo com um aumento de 25 por cento: ");
scanf("%f", &antigo);
novo = 1.25 * antigo;
printf("O novo salario do funcionario e de %.3f", novo);
return 0;
}
|
the_stack_data/114143.c | /*
* Copyright (c) 1991 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
char Version[] = " in.xfingerd v%VERSION% (%WHEN%)\n\t%WHOANDWHERE%\n";
|
the_stack_data/87637459.c | #include <stdio.h>
#include <string.h>
char largebuff[] =
"1234512345123451234512345===ABCD";
int main (void)
{
char smallbuff[16];
strcpy (smallbuff, largebuff);
}
|
the_stack_data/133605.c |
//{{BLOCK(AdjustmentScreenVUEngineBG)
//======================================================================
//
// AdjustmentScreenVUEngineBG, 384x224@2,
// + 322 tiles (t|f reduced) not compressed
// + regular map (flat), not compressed, 48x28
// Total size: 5152 + 2688 = 7840
//
// Exported by Cearn's GBA Image Transmogrifier, v0.8.6
// ( http://www.coranac.com/projects/#grit )
//
//======================================================================
const unsigned int AdjustmentScreenVUEngineBGTiles[1288] __attribute__((aligned(4)))=
{
0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x50004000,0x55005400,
0x05500000,0x55551554,0x55555555,0x55555555,0x01004040,0x10000400,0x00054001,0x00550015,
0x01014040,0x10100404,0x01014040,0x10100404,0x01014040,0x10100404,0x41014040,0x41044104,
0x01014040,0x04100404,0x04100410,0x04100410,0x10411040,0x40411041,0x00410041,0x44415441,
0x55500000,0x00010004,0x00105540,0x55010004,0x55550000,0x00000000,0x00005555,0x55550000,
0x05551000,0x00000000,0x04000155,0x40551000,0x04001000,0x40510115,0x04001015,0x40400100,
0x00045550,0x55400001,0x00040010,0x00405501,0x40400101,0x04051010,0x40400100,0x04001015,
0x00400101,0x00040010,0x00000001,0x10004000,0x01000400,0x10104040,0x01010404,0x10104040,
0x00010004,0x00000000,0x40000000,0x54005000,0x55405500,0x05541550,0x00550155,0x50054015,
0x55005401,0x15505540,0x01550554,0x00150055,0x40014005,0x04001000,0x40400100,0x04041010,
0x04100410,0x04040410,0x40400101,0x04041010,0x00010001,0x44414541,0x40404541,0x04041010,
0x00000000,0x44444545,0x40404545,0x04041010,0x40004000,0x40044005,0x40004005,0x04001000,
0x40404040,0x40404040,0x40404040,0x40104040,0x40404040,0x40404040,0x40404040,0x40404040,
0x04000400,0x11001500,0x00001500,0x40000000,0x04001000,0x40400100,0x04041010,0x40400101,
0x04041010,0x40400101,0x04041010,0x00400101,0x40040010,0x04001001,0x40400100,0x10401040,
0x55505540,0x55545554,0x55545554,0x55405550,0x55555555,0x55555555,0x55555555,0x55555555,
0x10401040,0x10401040,0x10401040,0x10401040,0x41044104,0x41044104,0x41044104,0x41044104,
0x04100410,0x04100410,0x04100410,0x40401010,0x00415441,0x01010041,0x00105404,0x01000040,
0x00100040,0x01015404,0x00100040,0x00010004,0x00000000,0x00005555,0x00000000,0x00001111,
0x04001015,0x40400100,0x04001015,0x40400100,0x54040010,0x00400101,0x40040010,0x54005001,
0x55550000,0x00000000,0x55550000,0x55555555,0x41154150,0x00004150,0x55550000,0x55555555,
0x55540005,0x00000005,0x55550000,0x55555555,0x00550100,0x00000000,0x55550000,0x55555555,
0x11001500,0x00001500,0x55550000,0x55555555,0x11111515,0x00001515,0x55550000,0x55555555,
0x00110015,0x00000015,0x55550000,0x55555555,0x40010005,0x05501000,0x41500110,0x05001000,
0x00400101,0x00040010,0x40000001,0x04001000,0x00400100,0x10044010,0x01000401,0x40100040,
0x04011004,0x00400100,0x10044010,0x01000401,0x40104040,0x04011004,0x00400100,0x40040010,
0x00040010,0x00000001,0x00000000,0x00000000,0x00550055,0x05550155,0x55401550,0x54005500,
0x10401040,0x40401040,0x04000100,0x40051001,0x04040104,0x40401010,0x04040101,0x40401010,
0x04040101,0x40401010,0x04040101,0x40401010,0x00045401,0x00400010,0x04040101,0x40401010,
0x40004000,0x40004000,0x40004000,0x40004000,0x00005555,0x00000114,0x00000000,0x55550000,
0x40005555,0x40004000,0x40004000,0x55554000,0x00000000,0x00000000,0x00000000,0x40000000,
0x04001015,0x40400100,0x04041010,0x40400101,0x04041010,0x00400101,0x40040010,0x54005001,
0x00000001,0x55505540,0x01555554,0x00150055,0x00000000,0x55555555,0x00005555,0x50540000,
0x00000000,0x55555555,0x00005555,0x00010000,0x00000000,0x55555555,0x00005555,0x00000000,
0x00000000,0x55555555,0x00005555,0x15000000,0x00000000,0x55555555,0x00005555,0x15150000,
0x00000000,0x55555555,0x00005555,0x00150000,0x55005400,0x15555555,0x00000555,0x00000000,
0x00010005,0x00000000,0x14004000,0x00400100,0x10104040,0x01010404,0x40100040,0x04011004,
0x00400101,0x00040010,0x05400001,0x05400440,0x00400100,0x40404040,0x40404040,0x40404040,
0x04011004,0x00400100,0x40404040,0x40404040,0x40100040,0x04011004,0x00400100,0x00400040,
0x04001001,0x40400100,0x10041010,0x10041004,0x04041010,0x01000101,0x01000100,0x01000100,
0x04041010,0x01010101,0x01010101,0x01010101,0x00040010,0x00010001,0x00010001,0x00010001,
0x00000000,0x40000000,0x04001000,0x40400100,0x01040104,0x00400101,0x00040010,0x50004001,
0x00000000,0x55550000,0x00000000,0x00005555,0x40005000,0x00150000,0x01000040,0x10100405,
0x00550015,0x05540155,0x55401550,0x54005500,0x04040101,0x40401010,0x04000100,0x40051001,
0x00040001,0x00400010,0x54040101,0x50400010,0x11110000,0x00000000,0x55550000,0x05410000,
0x11110000,0x00000000,0x44115415,0x00005415,0x04001000,0x40400100,0x04051010,0x40400100,
0x00010005,0x51001500,0x00001500,0x00015554,0x50541044,0x55550000,0x00000000,0x00005555,
0x00015555,0x55550000,0x00000000,0x00005555,0x00005555,0x05550000,0x40001000,0x00040001,
0x00400015,0x11001500,0x00001500,0x00110015,0x15001100,0x04000400,0x01000400,0x10104040,
0x15151111,0x04040404,0x01010404,0x10104040,0x00150011,0x10044004,0x01010404,0x10104040,
0x00000000,0x00005555,0x55550000,0x54000000,0x44045410,0x00005401,0x40450054,0x04001054,
0x40400101,0x40044010,0x04001001,0x00400100,0x01050100,0x01050104,0x00400100,0x00040010,
0x00400040,0x00400040,0x00400040,0x00400040,0x54151004,0x54154411,0x00000000,0x55550000,
0x01010101,0x41010101,0x41014101,0x05410101,0x00010001,0x00050001,0x00050004,0x40000000,
0x04041010,0x41040104,0x41044104,0x40404101,0x04041010,0x00400101,0x00100010,0x40104010,
0x00010005,0x54000000,0x00400100,0x10044010,0x50100404,0x01010040,0x00105404,0x55000040,
0x55550000,0x00000000,0x00005555,0x15550000,0x40015000,0x00100004,0x01010040,0x10100404,
0x50041501,0x55400010,0x00040001,0x00005550,0x05415455,0x55550000,0x54150000,0x54154551,
0x00005555,0x41154150,0x00004150,0x00005555,0x04001015,0x40540105,0x04001005,0x40000155,
0x55550000,0x00000000,0x40001555,0x05550000,0x54000000,0x54044401,0x40401010,0x04040101,
0x54540000,0x54544444,0x40401010,0x04040101,0x00540000,0x00540044,0x00400010,0x00040101,
0x00400010,0x11001500,0x00001500,0x00000000,0x00000015,0x10004000,0x01000400,0x10004040,
0x01010404,0x10104040,0x01010404,0x10104040,0x54014554,0x55500000,0x00010004,0x00105540,
0x40400100,0x04051010,0x40400100,0x04001015,0x00400101,0x10045010,0x40005001,0x41104150,
0x40400040,0x40414041,0x40404041,0x40404040,0x10005001,0x40005000,0x40004000,0x40004000,
0x40414041,0x40404041,0x40404040,0x40404040,0x40114001,0x40014001,0x40014001,0x00005555,
0x01000100,0x41000100,0x41004100,0x05400100,0x05410441,0x00050001,0x00050004,0x40000000,
0x40044010,0x40004001,0x40004000,0x41154150,0x40050005,0x04051005,0x04050405,0x11051505,
0x01000401,0x40100040,0x04041004,0x01040104,0x55540000,0x00000001,0x00105540,0x00010004,
0x04051010,0x00400100,0x00000015,0x40000000,0x00000000,0x00000000,0x55550000,0x00000000,
0x00004000,0x00000000,0x00110015,0x15000015,0x55540001,0x00000000,0x00005555,0x55550000,
0x55550000,0x41500000,0x41505515,0x55550000,0x11551500,0x00051500,0x00055554,0x15555000,
0x05441054,0x40000054,0x00001555,0x54410541,0x00100040,0x01015404,0x50100040,0x01010404,
0x00000000,0x00005555,0x55550000,0x00540000,0x00000000,0x00005555,0x55550000,0x00000000,
0x40001000,0x04000155,0x40551000,0x04000100,0x40401010,0x04040101,0x00401010,0x00040101,
0x40001010,0x04000101,0x00401010,0x10044101,0x01005400,0x00100041,0x80010004,0xA800A000,
0x00400015,0x04004100,0x40011000,0x00150005,0x55010004,0x00100040,0x01015404,0x50100040,
0x00400101,0x10045010,0x04005001,0x00400100,0x40404150,0x40414041,0x40104041,0x04011004,
0x40004000,0x40004000,0x40004000,0x10005000,0x40404040,0x40404040,0x40404040,0x11115151,
0x00400040,0x00400040,0x00400040,0x01110151,0x55550000,0x40114001,0x40014001,0x40014001,
0x05400440,0x00000000,0x00000000,0x40000000,0x40004150,0x41154150,0x40004150,0x41154150,
0x00051505,0x51051505,0x00051505,0x51051505,0x41044104,0x41014104,0x10104040,0x01010404,
0x00005555,0x00000000,0x00004400,0x01005500,0x15001155,0x00000000,0x00004444,0x00005555,
0x00004000,0x00000000,0x00000044,0x01000155,0x00550015,0x55540155,0x55405550,0x00000000,
0x00005000,0x55550000,0x55555555,0x00000000,0x00000541,0x55550000,0x55555555,0x00000000,
0x55405500,0x05551550,0x00550155,0x50004000,0x00100040,0x00010004,0x55000000,0x11000100,
0x00545544,0x10005000,0x00555000,0x00400040,0x00005555,0x55550001,0x05400001,0x05405440,
0x40401015,0x04050100,0x40401010,0x04040101,0x01000410,0x00100041,0x80010004,0xA800A000,
0x5A806A00,0x55A856A0,0x555A556A,0x55555556,0x01550055,0x15550555,0x55555555,0x55555555,
0x00400410,0x04004100,0x40011000,0x00150005,0x41010404,0x50104040,0x41010404,0x50104040,
0x05450000,0x05450444,0x01050100,0x41054104,0x10044010,0x04010401,0x01010401,0x10104040,
0x00400100,0x10104010,0x01010404,0x10104040,0x04011004,0x00100140,0x55010004,0x00100040,
0x00005000,0x00000000,0x55550000,0x00000000,0x00005151,0x00000000,0x55550000,0x00000000,
0x00005151,0x00000000,0x55550000,0x51500000,0x00000151,0x00000000,0x55550000,0x00010000,
0x00005555,0x00000000,0x55550000,0x00000000,0x40004150,0x41154150,0x40004150,0x40004000,
0x00051505,0x51051505,0x00051505,0x00050005,0x00100040,0x00010004,0x00000000,0x40000000,
0x01005100,0x01000100,0x55000100,0x44000000,0x00000004,0x00000000,0x55550000,0x44440000,
0x01000100,0x01000100,0x01550100,0x00440000,0x55550000,0x00000000,0x55550000,0x00000000,
0x55550000,0x00000000,0x15555000,0x00005000,0x01150150,0x00000150,0x10014001,0x01000401,
0x11111515,0x01011515,0x10104040,0x01010404,0x11111515,0x01011515,0x00100040,0x50014004,
0x00100040,0x50010004,0x51501000,0x15500110,0x01000100,0x01010100,0x00015501,0x00100004,
0x10405040,0x00405040,0x00000055,0x10005000,0x55550001,0x05400001,0x45401440,0x05550001,
0x04151040,0x10404100,0x01010414,0x10104040,0x51501115,0x55550000,0x00000000,0x00005555,
0x04001015,0x40550100,0x04001000,0x40000155,0x00040010,0x00000001,0x00000000,0x11001500,
0x41504000,0x41504110,0x40404040,0x40404040,0x15050005,0x15055105,0x00050005,0x00050005,
0x04001000,0x40000155,0x04001000,0x40400100,0x54000000,0x54004555,0x55550000,0x00000000,
0x00004000,0x00000000,0x00450054,0x54000054,0x00100040,0x15010004,0x55001100,0x54000000,
0x00154000,0x10150551,0x01554000,0x00005400,0x00015540,0x00005554,0x40001555,0x04000155,
0x00405015,0x00045501,0x00005550,0x00005555,0x40001001,0x04000155,0x00401015,0x00040101,
0x55550000,0x15150000,0x15155111,0x55550000,0x05551000,0x40000000,0x00001555,0x55550000,
0x00040010,0x50000001,0x50001000,0x40004000,0x04001500,0x44010400,0x44014401,0x04000400,
0x40404040,0x40454040,0x40454044,0x40414041,0x00050005,0x40050005,0x11051505,0x00051505,
0x04041010,0x40400101,0x04041010,0x41040104,0x04041010,0x00400101,0x00040010,0x00000001,
0x00005555,0x55550000,0x00000000,0x00000000,0x54004555,0x55550000,0x00000000,0x00000000,
0x00004000,0x00450054,0x00000054,0x00000000,0x01150150,0x00000150,0x10004000,0x01000400,
0x00100040,0x00010004,0x00000000,0x44005400,0x54004400,0x55440054,0x00000054,0x55550000,
0x00400015,0x04050100,0x40401010,0x04050100,0x01515015,0x00005415,0x40554000,0x04544100,
0x40001555,0x04000155,0x00441005,0x00040105,0x50010004,0x50101540,0x00010004,0x00000000,
0x01510000,0x01515511,0x00000000,0x00000000,0x00000000,0x00005555,0x00000000,0x05400000,
0x00040010,0x00000001,0x01500000,0x01500110,0x40114015,0x40044015,0x45444004,0x45444444,
0x04440454,0x04100454,0x04100410,0x04100410,0x40414041,0x40414041,0x40414041,0x40414041,
0x00050005,0x00050005,0x00050005,0x00050005,0x04101010,0x04100410,0x04100410,0x04100410,
0x55000000,0x00100040,0x04015004,0x40400100,0x10154040,0x01000400,0x10004055,0x01550400,
0x00100040,0x00010004,0x44005400,0x00545400,0x00545400,0x00545544,0x55550000,0x00000000,
0x40541044,0x04040101,0x00401010,0x00040101,0x01010404,0x00100040,0x00010004,0x15505000,
0x04005000,0x01100150,0x00000150,0x10014001,0x00005555,0x50150000,0x50151011,0x00000000,
0x00005555,0x00010000,0x00015555,0x50000000,0x00005555,0x00000000,0x00005555,0x00010000,
0x00005555,0x00000000,0x00005555,0x00000000,0x05400455,0x05400000,0x05400455,0x05400000,
0x00400040,0x44405440,0x10405440,0x10401040,0x04100410,0x04100410,0x04100410,0x04100410,
0x15050005,0x15051105,0x04050405,0x04050405,0x00000000,0x00005555,0x00000000,0x00045550,
0x00000000,0x00005555,0x54150000,0x54154411,0x00000000,0x00005555,0x50000000,0x50001555,
0x10004000,0x00000555,0x00010000,0x50014001,0x01100040,0x55010004,0x00100040,0x01015404,
0x00545544,0x55550000,0x00000000,0x00005555,0x40001555,0x05550000,0x40001000,0x04000155,
0x00015004,0x55500000,0x00010004,0x00105540,0x01000401,0x50150040,0x01000400,0x00000055,
0x00000000,0x01150150,0x00000150,0x00000000,0x50001000,0x01000400,0x00150040,0x40150011,
0x04015001,0x00400100,0x04045010,0x00400101,0x00005555,0x40000000,0x40005555,0x05400000,
0x05400455,0x00050000,0x00050004,0x00000000,0x10401040,0x10401040,0x10101040,0x01010404,
0x41044104,0x41044104,0x41044104,0x41014104,0x40040010,0x04001001,0x40400100,0x04041010,
0x00000001,0x00045550,0x00000001,0x40000000,0x54150000,0x54154411,0x00000000,0x00005555,
0x01500000,0x01500115,0x00010000,0x50014001,0x50100040,0x01010404,0x00100040,0x00010004,
0x55550000,0x00000000,0x00000000,0x01140150,0x55550000,0x00000000,0x55540000,0x00440004,
0x40551000,0x04000100,0x00011000,0x00010001,0x55010004,0x00100040,0x00000004,0x44005400,
0x55550000,0x00000000,0x00000000,0x55550000,0x01150150,0x00000150,0x00000000,0x55550000,
0x04045010,0x40400101,0x44045010,0x40400101,0x05400455,0x00050000,0x00050004,0x00050000,
0x10004000,0x01000400,0x10104040,0x01010404,0x04100410,0x01010404,0x10104040,0x01010404,
0x40414041,0x40414041,0x40104040,0x50014004,0x00050005,0x15054005,0x15051105,0x00050005,
0x41014104,0x41004100,0x40404100,0x04041010,0x00400101,0x00040010,0x00000001,0x40000000,
0x04001000,0x40400100,0x04041010,0x00400101,0x00000000,0x00005555,0x00000000,0x15150000,
0x01500000,0x01500115,0x00000000,0x50004000,0x00000151,0x01140150,0x00000151,0x00000000,
0x00040004,0x00040004,0x00005554,0x00000000,0x00010001,0x00010001,0x00000001,0x00000000,
0x01000410,0x00100040,0x80010004,0xA801A001,0x00400410,0x04000100,0x40011000,0x40154005,
0x00005400,0x15000000,0x15001100,0x00004000,0x00000000,0x55440054,0x00000054,0x55550000,
0x44045010,0x00400101,0x00040010,0x00000001,0x10054004,0x01000400,0x10104040,0x01010404,
0x40010005,0x04001000,0x40400100,0x44445454,0x40400101,0x04041010,0x40400101,0x44445454,
0x04100410,0x04040410,0x00400101,0x00040010,0x00000000,0x15550000,0x10041000,0x10001000,
0x10001000,0x00001555,0x00000000,0x00005555,0x10154040,0x01000400,0x10004055,0x01000400,
0x00050004,0x55000000,0x11050100,0x01050104,0x00000000,0x00105550,0x00100110,0x00100010,
0x00000000,0x01045505,0x01041104,0x01040104,0x00000000,0x00400055,0x00400040,0x00400040,
0x00400040,0x00000055,0x10004000,0x01000400,0x55500010,0x00000000,0x00000000,0x00010000,
0x55050104,0x00000000,0x00000000,0x55440054,0x00550040,0x00000000,0x00000000,0x55550000,
0x00015555,0x00010451,0x00010001,0x55550001,0x00005555,0x00000000,0x00000000,0x55550000,
};
const unsigned short AdjustmentScreenVUEngineBGMap[1344] __attribute__((aligned(4)))=
{
0x0001,0x0002,0x0003,0x0004,0x0005,0x0006,0x0007,0x0008,
0x0009,0x0009,0x000A,0x000B,0x1004,0x1004,0x1004,0x000C,
0x3009,0x3009,0x3009,0x3009,0x3009,0x3009,0x3009,0x3009,
0x3009,0x000D,0x000E,0x000F,0x300F,0x0010,0x0011,0x0012,
0x0013,0x0014,0x0015,0x0016,0x0017,0x0018,0x0019,0x001A,
0x001B,0x1004,0x001C,0x001D,0x2004,0x2003,0x0002,0x2001,
0x001E,0x001F,0x201E,0x0020,0x0021,0x0022,0x0023,0x0024,
0x0025,0x0025,0x2024,0x0026,0x1004,0x1004,0x1004,0x0027,
0x0028,0x0028,0x0028,0x0028,0x0028,0x0028,0x0029,0x002A,
0x0028,0x002B,0x002C,0x002D,0x002E,0x0011,0x0012,0x002F,
0x2004,0x2004,0x2004,0x0030,0x0031,0x0032,0x0033,0x001B,
0x1004,0x001C,0x0034,0x0020,0x2020,0x001E,0x001F,0x201E,
0x3003,0x3002,0x0035,0x0036,0x0037,0x0038,0x0039,0x003A,
0x003B,0x003C,0x003D,0x003E,0x1004,0x1004,0x003F,0x0011,
0x0040,0x0041,0x0042,0x0043,0x0043,0x0043,0x0043,0x0043,
0x0043,0x0043,0x0044,0x0045,0x0046,0x0047,0x0048,0x0049,
0x2004,0x2004,0x004A,0x004B,0x004C,0x004D,0x004E,0x004F,
0x0050,0x0051,0x0052,0x1004,0x0053,0x2035,0x3002,0x1003,
0x3004,0x0054,0x0055,0x0056,0x0057,0x0038,0x0038,0x0058,
0x0059,0x005A,0x005B,0x1004,0x1004,0x003F,0x0011,0x0012,
0x005C,0x005D,0x005E,0x3009,0x3009,0x3009,0x3009,0x3009,
0x005F,0x0060,0x0061,0x0062,0x0063,0x0064,0x0065,0x301C,
0x2004,0x0066,0x0067,0x0019,0x0019,0x0068,0x0069,0x2068,
0x006A,0x006B,0x006C,0x006D,0x2056,0x006E,0x0054,0x1004,
0x006F,0x0070,0x0004,0x0071,0x0056,0x0057,0x0038,0x0072,
0x0073,0x0074,0x0075,0x1004,0x003F,0x0011,0x0012,0x1057,
0x0008,0x0009,0x0009,0x0076,0x0077,0x0078,0x0079,0x0000,
0x007A,0x007B,0x007C,0x007C,0x007C,0x007D,0x007E,0x2004,
0x007F,0x0080,0x0081,0x0082,0x0019,0x0068,0x0083,0x0084,
0x0085,0x001B,0x1004,0x0086,0x0087,0x0088,0x0089,0x008A,
0x008B,0x008C,0x101B,0x0004,0x0071,0x0056,0x0057,0x008D,
0x008E,0x008F,0x0090,0x003F,0x0011,0x0012,0x1057,0x2038,
0x0091,0x0092,0x0093,0x0094,0x207C,0x0095,0x0096,0x0097,
0x0098,0x2096,0x2095,0x007C,0x007C,0x0099,0x300C,0x009A,
0x009B,0x0018,0x009C,0x009D,0x009D,0x009E,0x009F,0x00A0,
0x001B,0x1004,0x1004,0x00A1,0x00A2,0x00A3,0x003D,0x001B,
0x00A4,0x00A5,0x00A6,0x101B,0x0004,0x0071,0x00A7,0x3043,
0x3043,0x00A8,0x00A9,0x00AA,0x0012,0x1057,0x2038,0x2038,
0x00AB,0x00AC,0x00AD,0x00AE,0x0095,0x0096,0x00AF,0x00B0,
0x00B1,0x00B2,0x2096,0x2095,0x007C,0x00B3,0x00B4,0x00B5,
0x00B6,0x00B7,0x00B8,0x00B9,0x00BA,0x00BB,0x00BC,0x005B,
0x1004,0x1004,0x001C,0x00BD,0x00BE,0x00BF,0x001B,0x1004,
0x00C0,0x00C1,0x00C2,0x103D,0x101B,0x0004,0x00C3,0x00C4,
0x00C5,0x00C6,0x00C7,0x2056,0x1057,0x2038,0x2038,0x00C8,
0x00C9,0x00CA,0x00CB,0x0095,0x0096,0x00AF,0x00B0,0x001F,
0x001F,0x00B1,0x00B2,0x2096,0x2095,0x007C,0x00CC,0x007C,
0x007C,0x20AE,0x3009,0x3009,0x00CD,0x005E,0x3009,0x00CE,
0x1004,0x001C,0x00CF,0x00D0,0x00D1,0x00D2,0x1004,0x1004,
0x0093,0x0093,0x0093,0x00D3,0x00D4,0x101B,0x00C4,0x00C5,
0x2038,0x2057,0x2056,0x1057,0x2038,0x2038,0x00D5,0x00D6,
0x00D7,0x00D8,0x00D9,0x0096,0x00AF,0x00B0,0x001F,0x001F,
0x001F,0x001F,0x00B1,0x00B2,0x2096,0x2095,0x007C,0x007C,
0x007C,0x007C,0x2076,0x0009,0x0009,0x0009,0x00DA,0x00DB,
0x001C,0x00DC,0x00DD,0x00DE,0x00DF,0x00E0,0x1004,0x00E1,
0x00E2,0x00E2,0x00E2,0x00E2,0x00E3,0x00E4,0x00E5,0x2038,
0x2057,0x2056,0x1057,0x2038,0x2038,0x00E6,0x00E7,0x00E8,
0x00E9,0x00EA,0x0096,0x00AF,0x00B0,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x00B1,0x00B2,0x2096,0x2095,0x007C,
0x007C,0x007C,0x00EB,0x00EC,0x308B,0x308B,0x308B,0x00ED,
0x00EE,0x00EF,0x00F0,0x00F1,0x00F2,0x0021,0x00F3,0x0052,
0x00F4,0x0009,0x0009,0x0009,0x0009,0x0009,0x00F5,0x2057,
0x2056,0x1057,0x2038,0x2038,0x00F6,0x00F7,0x0093,0x207C,
0x00F8,0x0096,0x00AF,0x00B0,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x00B1,0x00B2,0x2096,0x2095,
0x007C,0x00F9,0x00FA,0x00FB,0x00FC,0x00FD,0x00FE,0x00FF,
0x0100,0x0021,0x0101,0x00F1,0x0102,0x0021,0x0101,0x00F3,
0x001C,0x0103,0x0104,0x30C3,0x30C3,0x0105,0x0106,0x2056,
0x1057,0x2038,0x2038,0x0107,0x0108,0x3009,0x0109,0x0095,
0x0096,0x00AF,0x00B0,0x001F,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x001F,0x00B1,0x00B2,0x2096,
0x2095,0x010A,0x010B,0x010C,0x010D,0x010E,0x010F,0x0110,
0x0111,0x0112,0x0101,0x00F1,0x1102,0x0021,0x0101,0x0101,
0x0113,0x0114,0x0115,0x30C3,0x0105,0x0116,0x2056,0x1057,
0x2038,0x2038,0x2038,0x0117,0x0118,0x0119,0x011A,0x0096,
0x00AF,0x00B0,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x00B1,0x00B2,
0x2096,0x011B,0x011C,0x011D,0x001B,0x011E,0x011F,0x0120,
0x2038,0x2038,0x0121,0x0122,0x0123,0x0124,0x30F3,0x0101,
0x0125,0x0126,0x0127,0x0127,0x0128,0x2056,0x1057,0x2038,
0x2038,0x2038,0x3120,0x30E1,0x0129,0x012A,0x012B,0x012C,
0x00B0,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x00B1,
0x012D,0x012E,0x012F,0x30FE,0x1004,0x0130,0x0131,0x2038,
0x2038,0x2038,0x2057,0x2056,0x0132,0x0133,0x0030,0x0134,
0x3134,0x3030,0x3133,0x3132,0x2056,0x1057,0x2038,0x2038,
0x2038,0x3131,0x3130,0x2004,0x00FE,0x312F,0x312E,0x312D,
0x30B1,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x10B1,
0x112D,0x312B,0x0135,0x3129,0x00E1,0x0120,0x2038,0x2038,
0x2038,0x2057,0x2056,0x3128,0x3127,0x3127,0x3126,0x3125,
0x0101,0x00F3,0x3124,0x3123,0x3122,0x3121,0x2038,0x2038,
0x3120,0x311F,0x311E,0x301B,0x311D,0x311C,0x311B,0x1096,
0x30B2,0x30B1,0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x001F,0x001F,0x10B1,0x10B2,
0x3096,0x311A,0x0136,0x3118,0x3117,0x2038,0x2038,0x2038,
0x2057,0x2056,0x3116,0x3105,0x00C3,0x3115,0x3114,0x3113,
0x0101,0x0101,0x2021,0x2102,0x20F1,0x0101,0x3112,0x3111,
0x3110,0x310F,0x310E,0x310D,0x310C,0x310B,0x310A,0x1095,
0x1096,0x30B2,0x30B1,0x001F,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x001F,0x10B1,0x10B2,0x3096,
0x3095,0x3109,0x0009,0x3108,0x0137,0x2038,0x2038,0x2057,
0x2056,0x3106,0x3105,0x00C3,0x00C3,0x3104,0x3103,0x301C,
0x30F3,0x0101,0x2021,0x3102,0x20F1,0x0101,0x2021,0x3100,
0x30FF,0x30FE,0x30FD,0x30FC,0x30FB,0x30FA,0x30F9,0x007C,
0x1095,0x1096,0x30B2,0x30B1,0x001F,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x001F,0x10B1,0x10B2,0x3096,0x30F8,
0x207C,0x0093,0x30F7,0x30F6,0x2038,0x2038,0x2057,0x2056,
0x1057,0x30F5,0x3009,0x3009,0x3009,0x3009,0x3009,0x30F4,
0x3052,0x30F3,0x2021,0x20F2,0x20F1,0x30F0,0x30EF,0x30EE,
0x30ED,0x008B,0x008B,0x008B,0x30EC,0x30EB,0x007C,0x007C,
0x007C,0x1095,0x1096,0x30B2,0x30B1,0x001F,0x001F,0x001F,
0x001F,0x001F,0x001F,0x10B1,0x10B2,0x3096,0x30EA,0x30E9,
0x30E8,0x30E7,0x30E6,0x2038,0x2038,0x2057,0x2056,0x1057,
0x2038,0x30E5,0x30E4,0x30E3,0x30E2,0x30E2,0x30E2,0x30E2,
0x30E1,0x2004,0x30E0,0x30DF,0x30DE,0x30DD,0x30DC,0x301C,
0x30DB,0x30DA,0x3009,0x3009,0x3009,0x1076,0x007C,0x007C,
0x007C,0x007C,0x1095,0x1096,0x30B2,0x30B1,0x001F,0x001F,
0x001F,0x001F,0x10B1,0x10B2,0x3096,0x30D9,0x30D8,0x30D7,
0x30D6,0x30D5,0x2038,0x2038,0x2057,0x2056,0x1057,0x2038,
0x30C5,0x30C4,0x201B,0x30D4,0x30D3,0x0093,0x0093,0x0093,
0x2004,0x2004,0x30D2,0x30D1,0x30D0,0x30CF,0x301C,0x2004,
0x30CE,0x0009,0x305E,0x30CD,0x0009,0x0009,0x10AE,0x007C,
0x007C,0x30CC,0x007C,0x1095,0x1096,0x30B2,0x30B1,0x001F,
0x001F,0x10B1,0x10B2,0x3096,0x3095,0x30CB,0x0138,0x30C9,
0x30C8,0x2038,0x2038,0x2057,0x2056,0x30C7,0x30C6,0x30C5,
0x30C4,0x30C3,0x3004,0x201B,0x203D,0x0139,0x013A,0x013B,
0x2004,0x301B,0x30BF,0x30BE,0x30BD,0x301C,0x2004,0x2004,
0x305B,0x30BC,0x30BB,0x30BA,0x30B9,0x30B8,0x30B7,0x30B6,
0x30B5,0x30B4,0x30B3,0x007C,0x1095,0x1096,0x30B2,0x30B1,
0x10B1,0x10B2,0x3096,0x3095,0x30AE,0x30AD,0x30AC,0x013C,
0x2038,0x2038,0x2057,0x3012,0x30AA,0x30A9,0x30A8,0x0043,
0x0043,0x30A7,0x3071,0x3004,0x201B,0x013D,0x013E,0x013F,
0x301B,0x303D,0x30A3,0x30A2,0x30A1,0x2004,0x2004,0x301B,
0x30A0,0x0083,0x309E,0x309D,0x309D,0x309C,0x3018,0x309B,
0x309A,0x000C,0x3099,0x007C,0x007C,0x1095,0x1096,0x3098,
0x1098,0x3096,0x3095,0x207C,0x3094,0x0093,0x3092,0x3091,
0x2038,0x2057,0x3012,0x3011,0x303F,0x3090,0x308F,0x308E,
0x308D,0x3057,0x0056,0x3071,0x3004,0x201B,0x308C,0x308B,
0x308A,0x3089,0x3088,0x3087,0x3086,0x2004,0x301B,0x3085,
0x3084,0x009F,0x2068,0x2019,0x3082,0x3081,0x3080,0x307F,
0x1004,0x307E,0x307D,0x007C,0x007C,0x007C,0x307B,0x307A,
0x0000,0x3079,0x3078,0x3077,0x3076,0x3009,0x3009,0x3008,
0x2057,0x3012,0x3011,0x303F,0x2004,0x3075,0x3074,0x3073,
0x3072,0x0038,0x3057,0x0056,0x3071,0x3004,0x3070,0x306F,
0x2004,0x3054,0x306E,0x2056,0x306D,0x306C,0x306B,0x306A,
0x0068,0x3069,0x2068,0x2019,0x2019,0x3067,0x3066,0x1004,
0x001C,0x3065,0x3064,0x3063,0x3062,0x3061,0x3060,0x305F,
0x0009,0x0009,0x0009,0x0009,0x0009,0x305E,0x305D,0x305C,
0x3012,0x3011,0x303F,0x2004,0x2004,0x305B,0x305A,0x3059,
0x3058,0x0038,0x0038,0x3057,0x0056,0x3055,0x3054,0x0004,
0x2003,0x0002,0x1035,0x3053,0x2004,0x3052,0x3051,0x3050,
0x304F,0x304E,0x304D,0x304C,0x304B,0x304A,0x1004,0x1004,
0x3049,0x3048,0x3047,0x3046,0x3045,0x3044,0x3043,0x3043,
0x3043,0x3043,0x3043,0x3043,0x3043,0x3042,0x3041,0x3040,
0x3011,0x303F,0x2004,0x2004,0x303E,0x303D,0x0140,0x0141,
0x203A,0x3039,0x0038,0x3037,0x3036,0x3035,0x0002,0x0003,
0x001E,0x001F,0x201E,0x0020,0x2020,0x3034,0x301C,0x2004,
0x301B,0x3033,0x3032,0x3031,0x3030,0x1004,0x1004,0x1004,
0x302F,0x3012,0x3011,0x302E,0x302D,0x302C,0x302B,0x3028,
0x302A,0x3029,0x3028,0x3028,0x3028,0x3028,0x3028,0x3028,
0x3027,0x2004,0x2004,0x2004,0x3026,0x1024,0x3025,0x3025,
0x3024,0x3023,0x3022,0x2021,0x2020,0x001E,0x001F,0x201E,
0x1001,0x3002,0x1003,0x1004,0x301D,0x301C,0x2004,0x301B,
0x301A,0x2019,0x3018,0x3017,0x3016,0x3015,0x3014,0x3013,
0x3012,0x3011,0x3010,0x000F,0x300F,0x300E,0x300D,0x0009,
0x0009,0x0009,0x0009,0x0009,0x0009,0x0009,0x0009,0x0009,
0x300C,0x2004,0x2004,0x2004,0x300B,0x300A,0x3009,0x3009,
0x3008,0x3007,0x3006,0x3005,0x3004,0x3003,0x3002,0x3001,
};
//}}BLOCK(AdjustmentScreenVUEngineBG)
|
the_stack_data/170452340.c | #include <pthread.h>
#include <stdio.h>
/* this function is run by the second thread */
void *inc_x(void *x_void_ptr)
{
/* increment x to 100 */
int *x_ptr = (int *)x_void_ptr;
/* @assume \is_valid_ptr(x_ptr) */
while(++(*x_ptr) < 100);
printf("x increment finished\n");
/* the function must return something - NULL will do */
return NULL;
}
int main()
{
int x = 0, y = 0;
/* show the initial values of x and y */
printf("x: %d, y: %d\n", x, y);
/* this variable is our reference to the second thread */
pthread_t inc_x_thread;
/* create a second thread which executes inc_x(&x) */
if(pthread_create(&inc_x_thread, NULL, inc_x, &x)) {
fprintf(stderr, "Error creating thread\n");
return 1;
}
/* increment y to 100 in the first thread */
while(++y < 100);
printf("y increment finished\n");
/* wait for the second thread to finish */
if(pthread_join(inc_x_thread, NULL)) {
fprintf(stderr, "Error joining thread\n");
return 2;
}
pthread_detach(inc_x_thread);
/* show the results - x is now 100 thanks to the second thread */
printf("x: %d, y: %d\n", x, y);
return 0;
}
|
the_stack_data/7949992.c | /* { dg-do compile } */
/* { dg-options "-O -mcpu=ultrasparc -mvis" } */
typedef unsigned char vec8 __attribute__((vector_size(8)));
typedef short vec16 __attribute__((vector_size(8)));
typedef int vec32 __attribute__((vector_size(8)));
extern vec8 foo1_8(void);
extern void foo2_8(vec8);
vec8 fun8(void)
{
return ~foo1_8 ();
}
#ifndef __LP64__
/* Test the 32-bit splitter. */
vec8 fun8_2(vec8 a)
{
foo2_8 (~a);
}
#endif
extern vec16 foo1_16(void);
extern void foo2_16(vec16);
vec16 fun16(void)
{
return ~foo1_16 ();
}
#ifndef __LP64__
/* Test the 32-bit splitter. */
vec16 fun16_2(vec16 a)
{
foo2_16 (~a);
}
#endif
extern vec32 foo1_32(void);
extern void foo2_32(vec32);
vec32 fun32(void)
{
return ~foo1_32 ();
}
#ifndef __LP64__
/* Test the 32-bit splitter. */
vec32 fun32_2(vec32 a)
{
foo2_32 (~a);
}
#endif
/* { dg-final { scan-assembler-times "fnot1\t%" 3 } } */
|
the_stack_data/210333.c | /* Test for warning about old-style function definition. */
/* Origin: Andreas Jaeger <[email protected]> */
/* { dg-do compile } */
/* { dg-options "-Wold-style-definition" } */
void
bar (a) int a; { } /* { dg-warning "old-style function definition" } */
void bar1 () {} /* { dg-warning "old-style function definition" } */
extern void bar2 (void);
void bar2 () {} /* { dg-warning "old-style function definition" } */
extern void bar3 (int);
void bar3 (a) {} /* { dg-warning "old-style function definition" } */
void bar4 (a) {} /* { dg-warning "old-style function definition" } */
void bar5 (int a) {}
void bar6 (void) {}
|
the_stack_data/23574965.c |
int multiply(int first, int second)
{
return first * second;
}
|
the_stack_data/220456084.c | #include<stdio.h>
int main(){
float total_precio,descuento,precio;
printf("Digite el total de la compra: "); scanf("%f",&total_precio);
descuento=total_precio *0.15;
precio=total_precio-descuento;
printf("El precio es: $%.2f",precio);
return 0;
}
|
the_stack_data/62637056.c | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
char* A;
// A PROGRAM THAT SAYS YOU'RE AWESOME
label_10:
printf("%s\n", "What's your name?");
label_20:
A = malloc(sizeof(char) * 50);
fgets(A, 50, stdin);
if (A[strlen(A) - 1] == '\n') {
A[strlen(A) - 1] = '\0';
}
label_30:
printf("%s %s\n", A, "is awesome!");
label_40:
free(A);
return 0;
}
|
the_stack_data/459949.c | /*
Up to 20% marks will be allotted for good programming practice. These include
- Comments: for nontrivial code
- Indentation: align your code properly
- Function use and modular programming
- Do not include anything in the header other than what is already given in the template. --------------------------------------------------------------------------------------------------------------
We say that a matrix is good if it has got a sub-matrix which is a symmetric matrix. If a matrix is not good, then we say its goodness is 0. However, if it is good, we define goodness to be the dimension of largest symmetric sub-matrix of the given matrix (i.e. if the largest symmetric sub-matrix is n x n, then the goodness is n). For example,
0 1 1 0
1 0 0 1
1 0 2 3
This matrix is good since
1 0
0 1
is its sub-matrix and is symmetric.
0 1 1
1 0 0
1 0 2
is also a symmetric sub-matrix of the given matrix.
Since the dimension of the largest sub-matrix of the given matrix is 3, the goodness is 3.
Your task:
Given a matrix, print its goodness value and the location of the top left corner of the largest symetric sub-matrix. For the example given above, goodness value is 3 and location of the top left corner of the symmetric sub-matrix is (1,1) i.e. first row first column. If goodness is 0, then top left corner location may be taken as (-1,-1) since it is actually not defined.
Assume all numbers to be integer. If their are two or more largest symmetric sub-matrix with the location of top-left corner at (i1,j1) and (i2,j2), then output (i1,j1) if (i1 < i2) or (i1 == i2 and j1 < j2) , otherwise output (i2,j2).
Input:
m,n //denoting the number of rows and columns of the input matrix
followed by m x n matrix with m rows (each in a new line) and n columns
e.g.
3 4
0 1 1 0
1 0 0 1
1 0 2 3
Output:
g i j // if g is your goodness value and (i,j) is the location of the top left corner of the symmetric sub-matrix.
e.g. answer for the above input will be
3 1 1
*/
#include <stdio.h>
int min(int a, int b)
{
return (a<b) ? a : b;
}
int main()
{
int m,n,i,j,k,l,ans_i=-1,ans_j=-1,flag;
int max_goodness = 0,curr_goodness, max_gp;
scanf("%d%d",&m,&n);
int M[m][n];
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
scanf("%d",&M[i][j]);
}
}
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
//checking whether an symmetric sub matrix begin at (i,j) i.e. at i+1th row and j+1th column
curr_goodness = 0;
flag = 0;
max_gp = min(m-i,n-j);
for(k=0;k<max_gp;k++)
{
for(l=k;l>=0;l--)
{
if(l==0)
{
continue;
}
else
{
if(M[i+k][j+k-l] != M[i+k-l][j+k])
{
curr_goodness = k;
flag = 1;
break;
}
}
}
if(flag == 1)
break;
}
if (k == max_gp)
curr_goodness = max_gp;
if(curr_goodness > max_goodness)
{
max_goodness = curr_goodness;
ans_i = i+1;
ans_j = j+1;
// printf("%d %d %d\n",ans_i,ans_j,max_goodness );
}
}
}
printf("%d %d %d\n", max_goodness, ans_i,ans_j );
} |
the_stack_data/212643842.c |
#include <stdio.h>
#include <math.h>
int sumOfDigits(int sum)
{
if (sum==0)
return 0;
else if(sum>0&&sum<10)
return sum;
else
return sumOfDigits(sum%10+sumOfDigits(sum/10));
}
int main()
{
int p,q,num=0,sum=0;
scanf("%d %d",&p,&q);
for(int i=0;i<q;i++)
{
num=num*pow(10,q)+p;
}
printf("%d\n",sumOfDigits(num));
}
|
the_stack_data/150143845.c | #include <math.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <complex.h>
#ifdef complex
#undef complex
#endif
#ifdef I
#undef I
#endif
#if defined(_WIN64)
typedef long long BLASLONG;
typedef unsigned long long BLASULONG;
#else
typedef long BLASLONG;
typedef unsigned long BLASULONG;
#endif
#ifdef LAPACK_ILP64
typedef BLASLONG blasint;
#if defined(_WIN64)
#define blasabs(x) llabs(x)
#else
#define blasabs(x) labs(x)
#endif
#else
typedef int blasint;
#define blasabs(x) abs(x)
#endif
typedef blasint integer;
typedef unsigned int uinteger;
typedef char *address;
typedef short int shortint;
typedef float real;
typedef double doublereal;
typedef struct { real r, i; } complex;
typedef struct { doublereal r, i; } doublecomplex;
#ifdef _MSC_VER
static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;}
static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;}
static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;}
static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;}
#else
static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;}
static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;}
static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;}
#endif
#define pCf(z) (*_pCf(z))
#define pCd(z) (*_pCd(z))
typedef int logical;
typedef short int shortlogical;
typedef char logical1;
typedef char integer1;
#define TRUE_ (1)
#define FALSE_ (0)
/* Extern is for use with -E */
#ifndef Extern
#define Extern extern
#endif
/* I/O stuff */
typedef int flag;
typedef int ftnlen;
typedef int ftnint;
/*external read, write*/
typedef struct
{ flag cierr;
ftnint ciunit;
flag ciend;
char *cifmt;
ftnint cirec;
} cilist;
/*internal read, write*/
typedef struct
{ flag icierr;
char *iciunit;
flag iciend;
char *icifmt;
ftnint icirlen;
ftnint icirnum;
} icilist;
/*open*/
typedef struct
{ flag oerr;
ftnint ounit;
char *ofnm;
ftnlen ofnmlen;
char *osta;
char *oacc;
char *ofm;
ftnint orl;
char *oblnk;
} olist;
/*close*/
typedef struct
{ flag cerr;
ftnint cunit;
char *csta;
} cllist;
/*rewind, backspace, endfile*/
typedef struct
{ flag aerr;
ftnint aunit;
} alist;
/* inquire */
typedef struct
{ flag inerr;
ftnint inunit;
char *infile;
ftnlen infilen;
ftnint *inex; /*parameters in standard's order*/
ftnint *inopen;
ftnint *innum;
ftnint *innamed;
char *inname;
ftnlen innamlen;
char *inacc;
ftnlen inacclen;
char *inseq;
ftnlen inseqlen;
char *indir;
ftnlen indirlen;
char *infmt;
ftnlen infmtlen;
char *inform;
ftnint informlen;
char *inunf;
ftnlen inunflen;
ftnint *inrecl;
ftnint *innrec;
char *inblank;
ftnlen inblanklen;
} inlist;
#define VOID void
union Multitype { /* for multiple entry points */
integer1 g;
shortint h;
integer i;
/* longint j; */
real r;
doublereal d;
complex c;
doublecomplex z;
};
typedef union Multitype Multitype;
struct Vardesc { /* for Namelist */
char *name;
char *addr;
ftnlen *dims;
int type;
};
typedef struct Vardesc Vardesc;
struct Namelist {
char *name;
Vardesc **vars;
int nvars;
};
typedef struct Namelist Namelist;
#define abs(x) ((x) >= 0 ? (x) : -(x))
#define dabs(x) (fabs(x))
#define f2cmin(a,b) ((a) <= (b) ? (a) : (b))
#define f2cmax(a,b) ((a) >= (b) ? (a) : (b))
#define dmin(a,b) (f2cmin(a,b))
#define dmax(a,b) (f2cmax(a,b))
#define bit_test(a,b) ((a) >> (b) & 1)
#define bit_clear(a,b) ((a) & ~((uinteger)1 << (b)))
#define bit_set(a,b) ((a) | ((uinteger)1 << (b)))
#define abort_() { sig_die("Fortran abort routine called", 1); }
#define c_abs(z) (cabsf(Cf(z)))
#define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); }
#ifdef _MSC_VER
#define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);}
#define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);}
#else
#define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);}
#define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);}
#endif
#define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));}
#define c_log(R, Z) {pCf(R) = clogf(Cf(Z));}
#define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));}
//#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));}
#define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));}
#define d_abs(x) (fabs(*(x)))
#define d_acos(x) (acos(*(x)))
#define d_asin(x) (asin(*(x)))
#define d_atan(x) (atan(*(x)))
#define d_atn2(x, y) (atan2(*(x),*(y)))
#define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); }
#define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); }
#define d_cos(x) (cos(*(x)))
#define d_cosh(x) (cosh(*(x)))
#define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 )
#define d_exp(x) (exp(*(x)))
#define d_imag(z) (cimag(Cd(z)))
#define r_imag(z) (cimagf(Cf(z)))
#define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x)))
#define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) )
#define d_log(x) (log(*(x)))
#define d_mod(x, y) (fmod(*(x), *(y)))
#define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x)))
#define d_nint(x) u_nint(*(x))
#define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a)))
#define d_sign(a,b) u_sign(*(a),*(b))
#define r_sign(a,b) u_sign(*(a),*(b))
#define d_sin(x) (sin(*(x)))
#define d_sinh(x) (sinh(*(x)))
#define d_sqrt(x) (sqrt(*(x)))
#define d_tan(x) (tan(*(x)))
#define d_tanh(x) (tanh(*(x)))
#define i_abs(x) abs(*(x))
#define i_dnnt(x) ((integer)u_nint(*(x)))
#define i_len(s, n) (n)
#define i_nint(x) ((integer)u_nint(*(x)))
#define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b)))
#define pow_dd(ap, bp) ( pow(*(ap), *(bp)))
#define pow_si(B,E) spow_ui(*(B),*(E))
#define pow_ri(B,E) spow_ui(*(B),*(E))
#define pow_di(B,E) dpow_ui(*(B),*(E))
#define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));}
#define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));}
#define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));}
#define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; }
#define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d))))
#define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; }
#define sig_die(s, kill) { exit(1); }
#define s_stop(s, n) {exit(0);}
static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n";
#define z_abs(z) (cabs(Cd(z)))
#define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));}
#define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));}
#define myexit_() break;
#define mycycle() continue;
#define myceiling(w) {ceil(w)}
#define myhuge(w) {HUGE_VAL}
//#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);}
#define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)}
/* procedure parameter types for -A and -C++ */
#define F2C_proc_par_types 1
#ifdef __cplusplus
typedef logical (*L_fp)(...);
#else
typedef logical (*L_fp)();
#endif
static float spow_ui(float x, integer n) {
float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static double dpow_ui(double x, integer n) {
double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
#ifdef _MSC_VER
static _Fcomplex cpow_ui(complex x, integer n) {
complex pow={1.0,0.0}; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i;
for(u = n; ; ) {
if(u & 01) pow.r *= x.r, pow.i *= x.i;
if(u >>= 1) x.r *= x.r, x.i *= x.i;
else break;
}
}
_Fcomplex p={pow.r, pow.i};
return p;
}
#else
static _Complex float cpow_ui(_Complex float x, integer n) {
_Complex float pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
#endif
#ifdef _MSC_VER
static _Dcomplex zpow_ui(_Dcomplex x, integer n) {
_Dcomplex pow={1.0,0.0}; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1];
for(u = n; ; ) {
if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1];
if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1];
else break;
}
}
_Dcomplex p = {pow._Val[0], pow._Val[1]};
return p;
}
#else
static _Complex double zpow_ui(_Complex double x, integer n) {
_Complex double pow=1.0; unsigned long int u;
if(n != 0) {
if(n < 0) n = -n, x = 1/x;
for(u = n; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
#endif
static integer pow_ii(integer x, integer n) {
integer pow; unsigned long int u;
if (n <= 0) {
if (n == 0 || x == 1) pow = 1;
else if (x != -1) pow = x == 0 ? 1/x : 0;
else n = -n;
}
if ((n > 0) || !(n == 0 || x == 1 || x != -1)) {
u = n;
for(pow = 1; ; ) {
if(u & 01) pow *= x;
if(u >>= 1) x *= x;
else break;
}
}
return pow;
}
static integer dmaxloc_(double *w, integer s, integer e, integer *n)
{
double m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static integer smaxloc_(float *w, integer s, integer e, integer *n)
{
float m; integer i, mi;
for(m=w[s-1], mi=s, i=s+1; i<=e; i++)
if (w[i-1]>m) mi=i ,m=w[i-1];
return mi-s+1;
}
static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Fcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0];
zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0];
zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1];
}
}
pCf(z) = zdotc;
}
#else
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i])) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
#endif
static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Dcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0];
zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0];
zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1];
}
}
pCd(z) = zdotc;
}
#else
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i])) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
#endif
static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Fcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0];
zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0];
zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1];
}
}
pCf(z) = zdotc;
}
#else
_Complex float zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i]) * Cf(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]);
}
}
pCf(z) = zdotc;
}
#endif
static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) {
integer n = *n_, incx = *incx_, incy = *incy_, i;
#ifdef _MSC_VER
_Dcomplex zdotc = {0.0, 0.0};
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0];
zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1];
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0];
zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1];
}
}
pCd(z) = zdotc;
}
#else
_Complex double zdotc = 0.0;
if (incx == 1 && incy == 1) {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i]) * Cd(&y[i]);
}
} else {
for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */
zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]);
}
}
pCd(z) = zdotc;
}
#endif
/* -- translated by f2c (version 20000121).
You must link the resulting object file with the libraries:
-lf2c -lm (in that order)
*/
/* Table of constant values */
static integer c__2 = 2;
static integer c_n1 = -1;
static integer c__3 = 3;
static integer c__4 = 4;
static real c_b21 = 1.f;
static real c_b29 = 0.f;
static integer c__1 = 1;
/* > \brief <b> SSBEVD_2STAGE computes the eigenvalues and, optionally, the left and/or right eigenvectors for
OTHER matrices</b> */
/* @generated from dsbevd_2stage.f, fortran d -> s, Sat Nov 5 23:58:03 2016 */
/* =========== DOCUMENTATION =========== */
/* Online html documentation available at */
/* http://www.netlib.org/lapack/explore-html/ */
/* > \htmlonly */
/* > Download SSBEVD_2STAGE + dependencies */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/ssbevd_
2stage.f"> */
/* > [TGZ]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/ssbevd_
2stage.f"> */
/* > [ZIP]</a> */
/* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/ssbevd_
2stage.f"> */
/* > [TXT]</a> */
/* > \endhtmlonly */
/* Definition: */
/* =========== */
/* SUBROUTINE SSBEVD_2STAGE( JOBZ, UPLO, N, KD, AB, LDAB, W, Z, LDZ, */
/* WORK, LWORK, IWORK, LIWORK, INFO ) */
/* IMPLICIT NONE */
/* CHARACTER JOBZ, UPLO */
/* INTEGER INFO, KD, LDAB, LDZ, LIWORK, LWORK, N */
/* INTEGER IWORK( * ) */
/* REAL AB( LDAB, * ), W( * ), WORK( * ), Z( LDZ, * ) */
/* > \par Purpose: */
/* ============= */
/* > */
/* > \verbatim */
/* > */
/* > SSBEVD_2STAGE computes all the eigenvalues and, optionally, eigenvectors of */
/* > a real symmetric band matrix A using the 2stage technique for */
/* > the reduction to tridiagonal. If eigenvectors are desired, it uses */
/* > a divide and conquer algorithm. */
/* > */
/* > The divide and conquer algorithm makes very mild assumptions about */
/* > floating point arithmetic. It will work on machines with a guard */
/* > digit in add/subtract, or on those binary machines without guard */
/* > digits which subtract like the Cray X-MP, Cray Y-MP, Cray C-90, or */
/* > Cray-2. It could conceivably fail on hexadecimal or decimal machines */
/* > without guard digits, but we know of none. */
/* > \endverbatim */
/* Arguments: */
/* ========== */
/* > \param[in] JOBZ */
/* > \verbatim */
/* > JOBZ is CHARACTER*1 */
/* > = 'N': Compute eigenvalues only; */
/* > = 'V': Compute eigenvalues and eigenvectors. */
/* > Not available in this release. */
/* > \endverbatim */
/* > */
/* > \param[in] UPLO */
/* > \verbatim */
/* > UPLO is CHARACTER*1 */
/* > = 'U': Upper triangle of A is stored; */
/* > = 'L': Lower triangle of A is stored. */
/* > \endverbatim */
/* > */
/* > \param[in] N */
/* > \verbatim */
/* > N is INTEGER */
/* > The order of the matrix A. N >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in] KD */
/* > \verbatim */
/* > KD is INTEGER */
/* > The number of superdiagonals of the matrix A if UPLO = 'U', */
/* > or the number of subdiagonals if UPLO = 'L'. KD >= 0. */
/* > \endverbatim */
/* > */
/* > \param[in,out] AB */
/* > \verbatim */
/* > AB is REAL array, dimension (LDAB, N) */
/* > On entry, the upper or lower triangle of the symmetric band */
/* > matrix A, stored in the first KD+1 rows of the array. The */
/* > j-th column of A is stored in the j-th column of the array AB */
/* > as follows: */
/* > if UPLO = 'U', AB(kd+1+i-j,j) = A(i,j) for f2cmax(1,j-kd)<=i<=j; */
/* > if UPLO = 'L', AB(1+i-j,j) = A(i,j) for j<=i<=f2cmin(n,j+kd). */
/* > */
/* > On exit, AB is overwritten by values generated during the */
/* > reduction to tridiagonal form. If UPLO = 'U', the first */
/* > superdiagonal and the diagonal of the tridiagonal matrix T */
/* > are returned in rows KD and KD+1 of AB, and if UPLO = 'L', */
/* > the diagonal and first subdiagonal of T are returned in the */
/* > first two rows of AB. */
/* > \endverbatim */
/* > */
/* > \param[in] LDAB */
/* > \verbatim */
/* > LDAB is INTEGER */
/* > The leading dimension of the array AB. LDAB >= KD + 1. */
/* > \endverbatim */
/* > */
/* > \param[out] W */
/* > \verbatim */
/* > W is REAL array, dimension (N) */
/* > If INFO = 0, the eigenvalues in ascending order. */
/* > \endverbatim */
/* > */
/* > \param[out] Z */
/* > \verbatim */
/* > Z is REAL array, dimension (LDZ, N) */
/* > If JOBZ = 'V', then if INFO = 0, Z contains the orthonormal */
/* > eigenvectors of the matrix A, with the i-th column of Z */
/* > holding the eigenvector associated with W(i). */
/* > If JOBZ = 'N', then Z is not referenced. */
/* > \endverbatim */
/* > */
/* > \param[in] LDZ */
/* > \verbatim */
/* > LDZ is INTEGER */
/* > The leading dimension of the array Z. LDZ >= 1, and if */
/* > JOBZ = 'V', LDZ >= f2cmax(1,N). */
/* > \endverbatim */
/* > */
/* > \param[out] WORK */
/* > \verbatim */
/* > WORK is REAL array, dimension LWORK */
/* > On exit, if INFO = 0, WORK(1) returns the optimal LWORK. */
/* > \endverbatim */
/* > */
/* > \param[in] LWORK */
/* > \verbatim */
/* > LWORK is INTEGER */
/* > The length of the array WORK. LWORK >= 1, when N <= 1; */
/* > otherwise */
/* > If JOBZ = 'N' and N > 1, LWORK must be queried. */
/* > LWORK = MAX(1, dimension) where */
/* > dimension = (2KD+1)*N + KD*NTHREADS + N */
/* > where KD is the size of the band. */
/* > NTHREADS is the number of threads used when */
/* > openMP compilation is enabled, otherwise =1. */
/* > If JOBZ = 'V' and N > 1, LWORK must be queried. Not yet available. */
/* > */
/* > If LWORK = -1, then a workspace query is assumed; the routine */
/* > only calculates the optimal sizes of the WORK and IWORK */
/* > arrays, returns these values as the first entries of the WORK */
/* > and IWORK arrays, and no error message related to LWORK or */
/* > LIWORK is issued by XERBLA. */
/* > \endverbatim */
/* > */
/* > \param[out] IWORK */
/* > \verbatim */
/* > IWORK is INTEGER array, dimension (MAX(1,LIWORK)) */
/* > On exit, if INFO = 0, IWORK(1) returns the optimal LIWORK. */
/* > \endverbatim */
/* > */
/* > \param[in] LIWORK */
/* > \verbatim */
/* > LIWORK is INTEGER */
/* > The dimension of the array IWORK. */
/* > If JOBZ = 'N' or N <= 1, LIWORK must be at least 1. */
/* > If JOBZ = 'V' and N > 2, LIWORK must be at least 3 + 5*N. */
/* > */
/* > If LIWORK = -1, then a workspace query is assumed; the */
/* > routine only calculates the optimal sizes of the WORK and */
/* > IWORK arrays, returns these values as the first entries of */
/* > the WORK and IWORK arrays, and no error message related to */
/* > LWORK or LIWORK is issued by XERBLA. */
/* > \endverbatim */
/* > */
/* > \param[out] INFO */
/* > \verbatim */
/* > INFO is INTEGER */
/* > = 0: successful exit */
/* > < 0: if INFO = -i, the i-th argument had an illegal value */
/* > > 0: if INFO = i, the algorithm failed to converge; i */
/* > off-diagonal elements of an intermediate tridiagonal */
/* > form did not converge to zero. */
/* > \endverbatim */
/* Authors: */
/* ======== */
/* > \author Univ. of Tennessee */
/* > \author Univ. of California Berkeley */
/* > \author Univ. of Colorado Denver */
/* > \author NAG Ltd. */
/* > \date November 2017 */
/* > \ingroup realOTHEReigen */
/* > \par Further Details: */
/* ===================== */
/* > */
/* > \verbatim */
/* > */
/* > All details about the 2stage techniques are available in: */
/* > */
/* > Azzam Haidar, Hatem Ltaief, and Jack Dongarra. */
/* > Parallel reduction to condensed forms for symmetric eigenvalue problems */
/* > using aggregated fine-grained and memory-aware kernels. In Proceedings */
/* > of 2011 International Conference for High Performance Computing, */
/* > Networking, Storage and Analysis (SC '11), New York, NY, USA, */
/* > Article 8 , 11 pages. */
/* > http://doi.acm.org/10.1145/2063384.2063394 */
/* > */
/* > A. Haidar, J. Kurzak, P. Luszczek, 2013. */
/* > An improved parallel singular value algorithm and its implementation */
/* > for multicore hardware, In Proceedings of 2013 International Conference */
/* > for High Performance Computing, Networking, Storage and Analysis (SC '13). */
/* > Denver, Colorado, USA, 2013. */
/* > Article 90, 12 pages. */
/* > http://doi.acm.org/10.1145/2503210.2503292 */
/* > */
/* > A. Haidar, R. Solca, S. Tomov, T. Schulthess and J. Dongarra. */
/* > A novel hybrid CPU-GPU generalized eigensolver for electronic structure */
/* > calculations based on fine-grained memory aware tasks. */
/* > International Journal of High Performance Computing Applications. */
/* > Volume 28 Issue 2, Pages 196-209, May 2014. */
/* > http://hpc.sagepub.com/content/28/2/196 */
/* > */
/* > \endverbatim */
/* ===================================================================== */
/* Subroutine */ int ssbevd_2stage_(char *jobz, char *uplo, integer *n,
integer *kd, real *ab, integer *ldab, real *w, real *z__, integer *
ldz, real *work, integer *lwork, integer *iwork, integer *liwork,
integer *info)
{
/* System generated locals */
integer ab_dim1, ab_offset, z_dim1, z_offset, i__1, i__2;
real r__1;
/* Local variables */
integer inde;
extern integer ilaenv2stage_(integer *, char *, char *, integer *,
integer *, integer *, integer *);
real anrm, rmin, rmax;
extern /* Subroutine */ int ssytrd_sb2st_(char *, char *, char *,
integer *, integer *, real *, integer *, real *, real *, real *,
integer *, real *, integer *, integer *);
real sigma;
extern logical lsame_(char *, char *);
integer iinfo;
extern /* Subroutine */ int sscal_(integer *, real *, real *, integer *),
sgemm_(char *, char *, integer *, integer *, integer *, real *,
real *, integer *, real *, integer *, real *, real *, integer *);
integer lhtrd, lwmin;
logical lower;
integer lwtrd;
logical wantz;
integer indwk2, ib, llwrk2, iscale;
extern real slamch_(char *);
real safmin;
extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen);
real bignum;
extern real slansb_(char *, char *, integer *, integer *, real *, integer
*, real *);
extern /* Subroutine */ int slascl_(char *, integer *, integer *, real *,
real *, integer *, integer *, real *, integer *, integer *), sstedc_(char *, integer *, real *, real *, real *,
integer *, real *, integer *, integer *, integer *, integer *), slacpy_(char *, integer *, integer *, real *, integer *,
real *, integer *);
integer indwrk, liwmin;
extern /* Subroutine */ int ssterf_(integer *, real *, real *, integer *);
integer llwork;
real smlnum;
logical lquery;
real eps;
integer indhous;
/* -- LAPACK driver routine (version 3.8.0) -- */
/* -- LAPACK is a software package provided by Univ. of Tennessee, -- */
/* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */
/* November 2017 */
/* ===================================================================== */
/* Test the input parameters. */
/* Parameter adjustments */
ab_dim1 = *ldab;
ab_offset = 1 + ab_dim1 * 1;
ab -= ab_offset;
--w;
z_dim1 = *ldz;
z_offset = 1 + z_dim1 * 1;
z__ -= z_offset;
--work;
--iwork;
/* Function Body */
wantz = lsame_(jobz, "V");
lower = lsame_(uplo, "L");
lquery = *lwork == -1 || *liwork == -1;
*info = 0;
if (*n <= 1) {
liwmin = 1;
lwmin = 1;
} else {
ib = ilaenv2stage_(&c__2, "SSYTRD_SB2ST", jobz, n, kd, &c_n1, &c_n1);
lhtrd = ilaenv2stage_(&c__3, "SSYTRD_SB2ST", jobz, n, kd, &ib, &c_n1);
lwtrd = ilaenv2stage_(&c__4, "SSYTRD_SB2ST", jobz, n, kd, &ib, &c_n1);
if (wantz) {
liwmin = *n * 5 + 3;
/* Computing 2nd power */
i__1 = *n;
lwmin = *n * 5 + 1 + (i__1 * i__1 << 1);
} else {
liwmin = 1;
/* Computing MAX */
i__1 = *n << 1, i__2 = *n + lhtrd + lwtrd;
lwmin = f2cmax(i__1,i__2);
}
}
if (! lsame_(jobz, "N")) {
*info = -1;
} else if (! (lower || lsame_(uplo, "U"))) {
*info = -2;
} else if (*n < 0) {
*info = -3;
} else if (*kd < 0) {
*info = -4;
} else if (*ldab < *kd + 1) {
*info = -6;
} else if (*ldz < 1 || wantz && *ldz < *n) {
*info = -9;
}
if (*info == 0) {
work[1] = (real) lwmin;
iwork[1] = liwmin;
if (*lwork < lwmin && ! lquery) {
*info = -11;
} else if (*liwork < liwmin && ! lquery) {
*info = -13;
}
}
if (*info != 0) {
i__1 = -(*info);
xerbla_("SSBEVD_2STAGE", &i__1, (ftnlen)13);
return 0;
} else if (lquery) {
return 0;
}
/* Quick return if possible */
if (*n == 0) {
return 0;
}
if (*n == 1) {
w[1] = ab[ab_dim1 + 1];
if (wantz) {
z__[z_dim1 + 1] = 1.f;
}
return 0;
}
/* Get machine constants. */
safmin = slamch_("Safe minimum");
eps = slamch_("Precision");
smlnum = safmin / eps;
bignum = 1.f / smlnum;
rmin = sqrt(smlnum);
rmax = sqrt(bignum);
/* Scale matrix to allowable range, if necessary. */
anrm = slansb_("M", uplo, n, kd, &ab[ab_offset], ldab, &work[1]);
iscale = 0;
if (anrm > 0.f && anrm < rmin) {
iscale = 1;
sigma = rmin / anrm;
} else if (anrm > rmax) {
iscale = 1;
sigma = rmax / anrm;
}
if (iscale == 1) {
if (lower) {
slascl_("B", kd, kd, &c_b21, &sigma, n, n, &ab[ab_offset], ldab,
info);
} else {
slascl_("Q", kd, kd, &c_b21, &sigma, n, n, &ab[ab_offset], ldab,
info);
}
}
/* Call SSYTRD_SB2ST to reduce band symmetric matrix to tridiagonal form. */
inde = 1;
indhous = inde + *n;
indwrk = indhous + lhtrd;
llwork = *lwork - indwrk + 1;
indwk2 = indwrk + *n * *n;
llwrk2 = *lwork - indwk2 + 1;
ssytrd_sb2st_("N", jobz, uplo, n, kd, &ab[ab_offset], ldab, &w[1], &work[
inde], &work[indhous], &lhtrd, &work[indwrk], &llwork, &iinfo);
/* For eigenvalues only, call SSTERF. For eigenvectors, call SSTEDC. */
if (! wantz) {
ssterf_(n, &w[1], &work[inde], info);
} else {
sstedc_("I", n, &w[1], &work[inde], &work[indwrk], n, &work[indwk2], &
llwrk2, &iwork[1], liwork, info);
sgemm_("N", "N", n, n, n, &c_b21, &z__[z_offset], ldz, &work[indwrk],
n, &c_b29, &work[indwk2], n);
slacpy_("A", n, n, &work[indwk2], n, &z__[z_offset], ldz);
}
/* If matrix was scaled, then rescale eigenvalues appropriately. */
if (iscale == 1) {
r__1 = 1.f / sigma;
sscal_(n, &r__1, &w[1], &c__1);
}
work[1] = (real) lwmin;
iwork[1] = liwmin;
return 0;
/* End of SSBEVD_2STAGE */
} /* ssbevd_2stage__ */
|
the_stack_data/154827337.c | #include <stdio.h>
#define L 100
typedef struct {
int g;
int m;
int a;
} Data;
int main() {
Data date[L];
Data d;
int index = 0;
printf("Inserisci le date\n");
for (; index < L - 2; index++) {
scanf("%d/%d/%d", &d.g, &d.m, &d.a);
if (d.a == 0 && d.m == 0 && d.g == 0) {
break;
}
if (d.a < 0 || (d.m > 12 || d.m < 0) || (d.g > 31 || d.g < 0)) {
printf("Errore inserimento dati\n");
return 0;
}
date[index] = d;
}
printf("Inserisci data per confronto:\n");
scanf("%d/%d/%d", &d.g, &d.m, &d.a);
printf("date precedenti all'ultima data inserita:\n");
for (int i = 0; i < index; i++) {
if ((date[i].a < d.a) && (date[i].m < d.m) && (date[i].g < d.g))
printf("%02d/%02d/%04d\n", date[i].g, date[i].m, date[i].a);
}
}
|
the_stack_data/146058.c | //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ____ ___ __ _
// / __// o |,'_/ .' \
// / _/ / _,'/ /_n / o / _ __ _ ___ _ _ __
// /_/ /_/ |__,'/_n_/ / \,' /.' \ ,' _/,' \ / |/ /
// / \,' // o /_\ `./ o // || /
// /_/ /_//_n_//___,'|_,'/_/|_/
//
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Author : Wesley Taylor-Rendal (WTR)
// Design history : Review git logs.
// Description : Revised version of program_8.9
// Concepts : Unconstrained dimension for array however generic length
// : info still supplied for the loop.
// : Does c have a 'length feature?
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#include <stdio.h>
int minimum (int values[], int numOfElements)
{
int minVal, i;
minVal = values[0];
for (i=0; i<numOfElements; ++i)
if (values[i] < minVal)
minVal = values[i];
return minVal;
}
int main(void)
{
int array1[5] = {157, -28, -37, 26, 10 };
int array2[7] = { 12, 45, 1, 10, 5, 3, 22};
int min(int values[10]); // Example of prototype declaration/think vhdl component black boxing
printf("array1 min : %i\n", minimum(array1, 5));
printf("array2 min : %i\n", minimum(array2, 7));
return 0;
}
|
the_stack_data/61075427.c | const char RESOURCE_flags_html[] = {
0x3c, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x68, 0x65,
0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x69, 0x74,
0x6c, 0x65, 0x3e, 0x46, 0x6c, 0x61, 0x67, 0x73, 0x20, 0x69, 0x6e, 0x66,
0x6f, 0x3c, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20,
0x3c, 0x2f, 0x68, 0x65, 0x61, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x62,
0x6f, 0x64, 0x79, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x7b, 0x7b, 0x23,
0x46, 0x49, 0x4c, 0x45, 0x5f, 0x52, 0x4f, 0x57, 0x7d, 0x7d, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x3c, 0x68, 0x34, 0x3e, 0x7b, 0x7b, 0x46, 0x49, 0x4c,
0x45, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x7d, 0x7d, 0x3c, 0x2f, 0x68, 0x34,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x61, 0x62,
0x6c, 0x65, 0x20, 0x62, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x3d, 0x32, 0x3e,
0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x72,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x74, 0x64, 0x3e, 0x3c, 0x62, 0x3e, 0x4e, 0x61, 0x6d, 0x65, 0x3c,
0x2f, 0x62, 0x3e, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x3c,
0x62, 0x3e, 0x54, 0x79, 0x70, 0x65, 0x3c, 0x2f, 0x62, 0x3e, 0x3c, 0x2f,
0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x3c, 0x62, 0x3e, 0x43, 0x75, 0x72,
0x72, 0x65, 0x6e, 0x74, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3c, 0x2f,
0x62, 0x3e, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x3c, 0x62,
0x3e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x3c, 0x2f, 0x62, 0x3e, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
0x64, 0x3e, 0x3c, 0x62, 0x3e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x3c, 0x2f, 0x62, 0x3e, 0x3c, 0x2f, 0x74, 0x64,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x74, 0x64, 0x3e, 0x3c, 0x62, 0x3e, 0x4d, 0x6f, 0x64, 0x69, 0x66,
0x79, 0x20, 0x66, 0x6c, 0x61, 0x67, 0x3c, 0x2f, 0x62, 0x3e, 0x3c, 0x2f,
0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x3c, 0x62, 0x3e, 0x4e, 0x65, 0x77,
0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3c, 0x2f, 0x62, 0x3e, 0x3c, 0x2f,
0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x7b, 0x7b, 0x23, 0x46, 0x4c, 0x41, 0x47, 0x5f, 0x52, 0x4f,
0x57, 0x7d, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x74, 0x72, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3d, 0x22, 0x7b,
0x7b, 0x46, 0x4c, 0x41, 0x47, 0x5f, 0x53, 0x54, 0x59, 0x4c, 0x45, 0x7d,
0x7d, 0x22, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
0x22, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x7b, 0x7b, 0x46, 0x4c, 0x41,
0x47, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x7d, 0x7d, 0x3c, 0x2f, 0x74, 0x64,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x74, 0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74,
0x79, 0x70, 0x65, 0x22, 0x3e, 0x7b, 0x7b, 0x46, 0x4c, 0x41, 0x47, 0x5f,
0x54, 0x59, 0x50, 0x45, 0x7d, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74,
0x64, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x63, 0x75, 0x72,
0x72, 0x65, 0x6e, 0x74, 0x22, 0x3e, 0x7b, 0x7b, 0x46, 0x4c, 0x41, 0x47,
0x5f, 0x43, 0x55, 0x52, 0x52, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41, 0x4c,
0x55, 0x45, 0x7d, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e,
0x7b, 0x7b, 0x46, 0x4c, 0x41, 0x47, 0x5f, 0x44, 0x45, 0x46, 0x41, 0x55,
0x4c, 0x54, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x7d, 0x7d, 0x3c, 0x2f,
0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x7b, 0x7b, 0x46, 0x4c, 0x41, 0x47,
0x5f, 0x44, 0x45, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e,
0x7d, 0x7d, 0x3c, 0x2f, 0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x74, 0x64, 0x20, 0x69, 0x64,
0x3d, 0x22, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x5f, 0x66, 0x6c, 0x61,
0x67, 0x22, 0x3e, 0x3c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x74, 0x79,
0x70, 0x65, 0x3d, 0x22, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x62, 0x6f, 0x78,
0x22, 0x20, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3d, 0x22, 0x48, 0x69, 0x6e,
0x74, 0x3a, 0x20, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x20, 0x74, 0x68, 0x69,
0x73, 0x20, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x62, 0x6f, 0x78, 0x20, 0x74,
0x6f, 0x20, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x20, 0x74, 0x68, 0x69,
0x73, 0x20, 0x66, 0x6c, 0x61, 0x67, 0x2e, 0x22, 0x2f, 0x3e, 0x3c, 0x2f,
0x74, 0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x3c, 0x74, 0x64, 0x3e, 0x3c, 0x64, 0x69, 0x76, 0x3e, 0x3c,
0x69, 0x6e, 0x70, 0x75, 0x74, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
0x22, 0x6e, 0x65, 0x77, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x20, 0x74,
0x79, 0x70, 0x65, 0x3d, 0x22, 0x74, 0x65, 0x78, 0x74, 0x22, 0x20, 0x74,
0x69, 0x74, 0x6c, 0x65, 0x3d, 0x22, 0x48, 0x69, 0x6e, 0x74, 0x3a, 0x20,
0x79, 0x6f, 0x75, 0x20, 0x63, 0x61, 0x6e, 0x20, 0x73, 0x65, 0x74, 0x20,
0x6e, 0x65, 0x77, 0x20, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x20, 0x66, 0x6f,
0x72, 0x20, 0x74, 0x68, 0x69, 0x73, 0x20, 0x66, 0x6c, 0x61, 0x67, 0x2e,
0x22, 0x2f, 0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x3c, 0x2f, 0x74,
0x64, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c,
0x2f, 0x74, 0x72, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x7b, 0x7b, 0x2f, 0x46, 0x4c, 0x41, 0x47, 0x5f, 0x52, 0x4f, 0x57,
0x7d, 0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x2f, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x7b, 0x7b, 0x2f, 0x46, 0x49, 0x4c, 0x45, 0x5f, 0x52, 0x4f, 0x57, 0x7d,
0x7d, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x72, 0x2f,
0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74,
0x74, 0x6f, 0x6e, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d,
0x22, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66,
0x79, 0x28, 0x29, 0x22, 0x3e, 0x20, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79,
0x20, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0x0a, 0x20,
0x20, 0x20, 0x20, 0x3c, 0x62, 0x72, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x20,
0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d,
0x22, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61,
0x67, 0x65, 0x73, 0x22, 0x20, 0x69, 0x64, 0x3d, 0x22, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x22,
0x3e, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0x0a, 0x20, 0x20, 0x20, 0x20,
0x3c, 0x62, 0x72, 0x2f, 0x3e, 0x0a, 0x20, 0x20, 0x3c, 0x2f, 0x62, 0x6f,
0x64, 0x79, 0x3e, 0x0a, 0x3c, 0x2f, 0x68, 0x74, 0x6d, 0x6c, 0x3e, 0x0a,
0x0a
};
unsigned int flags_html_len = 1177;
|
the_stack_data/88461.c | /*Program : MaxSepuluhData.c
* Deskripsi : menentukan nilai terbesar dari dua buah array yang masing masing berisi 10 buah bilangan
* Nama : Muhammad Azhar Alauddin
* tanggal/ versi : 31 Januari 2020
*/
#include <stdio.h>
int maxValueNumbers(int numbers[], int N){
int i;
int maks=-100;
int result;
for(i=0;i<N;i++){
if(numbers[i]>maks){
maks=numbers[i];
}
}
return maks;
}
void inputValue (int numbers[], int N){
int i;
for(i=0;i<N;i++){
scanf("%d",&numbers[i]);
}
}
int main ()
{
const int MAX_DATA = 10;
int numbers1[MAX_DATA], numbers2[MAX_DATA];
inputValue(numbers1, MAX_DATA);
inputValue(numbers2, MAX_DATA);
printf("%d %d",maxValueNumbers(numbers1, MAX_DATA),maxValueNumbers(numbers2, MAX_DATA));
return 0;
}
|
the_stack_data/237642725.c | /*
5 - Faça uma função para remover elementos repetidos de uma lista encadeada (apenas uma varredura).
*/
#include <stdio.h>
struct Ex05
{
int value;
struct celula *next;
}typedef celula;
void eliminarepeticao(celula *cel){
if(cel == NULL) return ;
celula *next = cel->next;
if (cel->value == next->value){
cel->next = next->next;
free(next);
eliminarepeticao(cel->next);
}
}
/* Teste de Mesa
| |1| ----> | |1| ------> | |2| -----> | |2| -----> | |3|
1º inst eliminarepeticao()
NEXT ||
| |1| -> | |1| == | |1| (?)
-> free(| |1|)
2º inst eliminarepeticao()
NEXT ||
| |2| -> | |2| == | |2| (?)
-> free(| |2|)
3º inst eliminarepeticao()
NEXT ||
| |3| -> | |2| == | |3| (?)
-> pass
3º inst eliminarepeticao()
NEXT ||
NULL -> | |3| == NULL (?)
-> pass
4º inst eliminarepeticao()
cel ||
NULL
-> CEL == NULL (?)
-> return;
*/ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.